blob: 4ba0534fb54b546516fe31f3429b9f65b9a3b7d9 [file] [log] [blame]
Sebastian Redl904c9c82010-08-18 23:57:11 +00001//===--- ASTReader.cpp - AST File Reader ------------------------*- C++ -*-===//
Douglas Gregor2cf26342009-04-09 22:27:44 +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//
Sebastian Redlc43b54c2010-08-18 23:56:43 +000010// This file defines the ASTReader class, which reads AST files.
Douglas Gregor2cf26342009-04-09 22:27:44 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner4c6f9522009-04-27 05:14:47 +000013
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000014#include "clang/Serialization/ASTReader.h"
15#include "clang/Serialization/ASTDeserializationListener.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000016#include "clang/Serialization/ModuleManager.h"
Chandler Carrutha2398d72011-12-09 00:02:23 +000017#include "clang/Serialization/SerializationDiagnostic.h"
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +000018#include "ASTCommon.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000019#include "ASTReaderInternals.h"
Douglas Gregore737f502010-08-12 20:07:10 +000020#include "clang/Sema/Sema.h"
John McCall5f1e0942010-08-24 08:50:51 +000021#include "clang/Sema/Scope.h"
Douglas Gregorfdd01722009-04-14 00:24:19 +000022#include "clang/AST/ASTConsumer.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000023#include "clang/AST/ASTContext.h"
John McCall2a7fb272010-08-25 05:32:35 +000024#include "clang/AST/DeclTemplate.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000025#include "clang/AST/Expr.h"
John McCall7a1fad32010-08-24 07:32:53 +000026#include "clang/AST/ExprCXX.h"
Douglas Gregor5f791bb2011-02-28 23:58:31 +000027#include "clang/AST/NestedNameSpecifier.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000028#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000029#include "clang/AST/TypeLocVisitor.h"
Chris Lattner42d42b52009-04-10 21:41:48 +000030#include "clang/Lex/MacroInfo.h"
Douglas Gregor6a5a23f2010-03-19 21:51:54 +000031#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000032#include "clang/Lex/Preprocessor.h"
Douglas Gregora71a7d82012-10-24 20:05:57 +000033#include "clang/Lex/PreprocessorOptions.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000034#include "clang/Lex/HeaderSearch.h"
Douglas Gregorbbf38312012-10-24 16:50:34 +000035#include "clang/Lex/HeaderSearchOptions.h"
Douglas Gregor668c1a42009-04-21 22:25:48 +000036#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000037#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000038#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000039#include "clang/Basic/FileManager.h"
Chris Lattner10e286a2010-11-23 19:19:34 +000040#include "clang/Basic/FileSystemStatCache.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000041#include "clang/Basic/TargetInfo.h"
Douglas Gregor57016dd2012-10-16 23:40:58 +000042#include "clang/Basic/TargetOptions.h"
Douglas Gregor445e23e2009-10-05 21:07:28 +000043#include "clang/Basic/Version.h"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000044#include "clang/Basic/VersionTuple.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000045#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000046#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000047#include "llvm/Support/MemoryBuffer.h"
John McCall833ca992009-10-29 08:12:44 +000048#include "llvm/Support/ErrorHandling.h"
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000049#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000050#include "llvm/Support/Path.h"
Nick Lewyckyb346d2f2012-04-16 02:51:46 +000051#include "llvm/Support/SaveAndRestore.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000052#include "llvm/Support/system_error.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000053#include <algorithm>
Douglas Gregore721f952009-04-28 18:58:38 +000054#include <iterator>
Douglas Gregor2cf26342009-04-09 22:27:44 +000055#include <cstdio>
Douglas Gregor4fed3f42009-04-27 18:38:38 +000056#include <sys/stat.h>
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000057
Douglas Gregor2cf26342009-04-09 22:27:44 +000058using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000059using namespace clang::serialization;
Douglas Gregor98339b92011-08-25 20:47:51 +000060using namespace clang::serialization::reader;
Douglas Gregor2cf26342009-04-09 22:27:44 +000061
62//===----------------------------------------------------------------------===//
Sebastian Redl3c7f4132010-08-18 23:57:06 +000063// PCH validator implementation
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000064//===----------------------------------------------------------------------===//
65
Sebastian Redl571db7f2010-08-18 23:56:56 +000066ASTReaderListener::~ASTReaderListener() {}
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000067
Douglas Gregor27ffa6c2012-10-23 06:18:24 +000068/// \brief Compare the given set of language options against an existing set of
69/// language options.
70///
71/// \param Diags If non-NULL, diagnostics will be emitted via this engine.
72///
73/// \returns true if the languagae options mis-match, false otherwise.
74static bool checkLanguageOptions(const LangOptions &LangOpts,
75 const LangOptions &ExistingLangOpts,
76 DiagnosticsEngine *Diags) {
77#define LANGOPT(Name, Bits, Default, Description) \
78 if (ExistingLangOpts.Name != LangOpts.Name) { \
79 if (Diags) \
80 Diags->Report(diag::err_pch_langopt_mismatch) \
81 << Description << LangOpts.Name << ExistingLangOpts.Name; \
82 return true; \
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000083 }
84
Douglas Gregor27ffa6c2012-10-23 06:18:24 +000085#define VALUE_LANGOPT(Name, Bits, Default, Description) \
86 if (ExistingLangOpts.Name != LangOpts.Name) { \
87 if (Diags) \
88 Diags->Report(diag::err_pch_langopt_value_mismatch) \
89 << Description; \
90 return true; \
Douglas Gregor38295be2012-10-22 23:51:00 +000091 }
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000092
Douglas Gregor27ffa6c2012-10-23 06:18:24 +000093#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
94 if (ExistingLangOpts.get##Name() != LangOpts.get##Name()) { \
95 if (Diags) \
96 Diags->Report(diag::err_pch_langopt_value_mismatch) \
97 << Description; \
98 return true; \
Douglas Gregor7d5e81b2011-09-13 18:26:39 +000099 }
100
101#define BENIGN_LANGOPT(Name, Bits, Default, Description)
102#define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
103#include "clang/Basic/LangOptions.def"
John McCall260611a2012-06-20 06:18:46 +0000104
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000105 if (ExistingLangOpts.ObjCRuntime != LangOpts.ObjCRuntime) {
106 if (Diags)
107 Diags->Report(diag::err_pch_langopt_value_mismatch)
108 << "target Objective-C runtime";
John McCall260611a2012-06-20 06:18:46 +0000109 return true;
110 }
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000111
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000112 return false;
113}
114
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000115/// \brief Compare the given set of target options against an existing set of
116/// target options.
117///
118/// \param Diags If non-NULL, diagnostics will be emitted via this engine.
119///
120/// \returns true if the target options mis-match, false otherwise.
121static bool checkTargetOptions(const TargetOptions &TargetOpts,
122 const TargetOptions &ExistingTargetOpts,
123 DiagnosticsEngine *Diags) {
Douglas Gregor38295be2012-10-22 23:51:00 +0000124#define CHECK_TARGET_OPT(Field, Name) \
125 if (TargetOpts.Field != ExistingTargetOpts.Field) { \
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000126 if (Diags) \
127 Diags->Report(diag::err_pch_targetopt_mismatch) \
Douglas Gregor38295be2012-10-22 23:51:00 +0000128 << Name << TargetOpts.Field << ExistingTargetOpts.Field; \
129 return true; \
Douglas Gregor57016dd2012-10-16 23:40:58 +0000130 }
131
132 CHECK_TARGET_OPT(Triple, "target");
133 CHECK_TARGET_OPT(CPU, "target CPU");
134 CHECK_TARGET_OPT(ABI, "target ABI");
135 CHECK_TARGET_OPT(CXXABI, "target C++ ABI");
136 CHECK_TARGET_OPT(LinkerVersion, "target linker version");
137#undef CHECK_TARGET_OPT
138
139 // Compare feature sets.
140 SmallVector<StringRef, 4> ExistingFeatures(
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000141 ExistingTargetOpts.FeaturesAsWritten.begin(),
142 ExistingTargetOpts.FeaturesAsWritten.end());
Douglas Gregor57016dd2012-10-16 23:40:58 +0000143 SmallVector<StringRef, 4> ReadFeatures(TargetOpts.FeaturesAsWritten.begin(),
144 TargetOpts.FeaturesAsWritten.end());
145 std::sort(ExistingFeatures.begin(), ExistingFeatures.end());
146 std::sort(ReadFeatures.begin(), ReadFeatures.end());
147
148 unsigned ExistingIdx = 0, ExistingN = ExistingFeatures.size();
149 unsigned ReadIdx = 0, ReadN = ReadFeatures.size();
150 while (ExistingIdx < ExistingN && ReadIdx < ReadN) {
151 if (ExistingFeatures[ExistingIdx] == ReadFeatures[ReadIdx]) {
152 ++ExistingIdx;
153 ++ReadIdx;
154 continue;
155 }
156
157 if (ReadFeatures[ReadIdx] < ExistingFeatures[ExistingIdx]) {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000158 if (Diags)
159 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
Douglas Gregor38295be2012-10-22 23:51:00 +0000160 << false << ReadFeatures[ReadIdx];
Douglas Gregor57016dd2012-10-16 23:40:58 +0000161 return true;
162 }
163
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000164 if (Diags)
165 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
Douglas Gregor38295be2012-10-22 23:51:00 +0000166 << true << ExistingFeatures[ExistingIdx];
Douglas Gregor57016dd2012-10-16 23:40:58 +0000167 return true;
168 }
169
170 if (ExistingIdx < ExistingN) {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000171 if (Diags)
172 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
Douglas Gregor38295be2012-10-22 23:51:00 +0000173 << true << ExistingFeatures[ExistingIdx];
Douglas Gregor57016dd2012-10-16 23:40:58 +0000174 return true;
175 }
176
177 if (ReadIdx < ReadN) {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000178 if (Diags)
179 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
Douglas Gregor38295be2012-10-22 23:51:00 +0000180 << false << ReadFeatures[ReadIdx];
Douglas Gregor57016dd2012-10-16 23:40:58 +0000181 return true;
182 }
183
184 return false;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000185}
186
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000187bool
188PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts,
189 bool Complain) {
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000190 const LangOptions &ExistingLangOpts = PP.getLangOpts();
191 return checkLanguageOptions(LangOpts, ExistingLangOpts,
Douglas Gregor27ffa6c2012-10-23 06:18:24 +0000192 Complain? &Reader.Diags : 0);
193}
194
195bool PCHValidator::ReadTargetOptions(const TargetOptions &TargetOpts,
196 bool Complain) {
197 const TargetOptions &ExistingTargetOpts = PP.getTargetInfo().getTargetOpts();
198 return checkTargetOptions(TargetOpts, ExistingTargetOpts,
199 Complain? &Reader.Diags : 0);
200}
201
Benjamin Kramer54353f42010-11-25 18:29:30 +0000202namespace {
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000203 typedef llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/> >
204 MacroDefinitionsMap;
205}
206
207/// \brief Collect the macro definitions provided by the given preprocessor
208/// options.
209static void collectMacroDefinitions(const PreprocessorOptions &PPOpts,
210 MacroDefinitionsMap &Macros,
211 SmallVectorImpl<StringRef> *MacroNames = 0){
212 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
213 StringRef Macro = PPOpts.Macros[I].first;
214 bool IsUndef = PPOpts.Macros[I].second;
215
216 std::pair<StringRef, StringRef> MacroPair = Macro.split('=');
217 StringRef MacroName = MacroPair.first;
218 StringRef MacroBody = MacroPair.second;
219
220 // For an #undef'd macro, we only care about the name.
221 if (IsUndef) {
222 if (MacroNames && !Macros.count(MacroName))
223 MacroNames->push_back(MacroName);
224
225 Macros[MacroName] = std::make_pair("", true);
226 continue;
227 }
228
229 // For a #define'd macro, figure out the actual definition.
230 if (MacroName.size() == Macro.size())
231 MacroBody = "1";
232 else {
233 // Note: GCC drops anything following an end-of-line character.
234 StringRef::size_type End = MacroBody.find_first_of("\n\r");
235 MacroBody = MacroBody.substr(0, End);
236 }
237
238 if (MacroNames && !Macros.count(MacroName))
239 MacroNames->push_back(MacroName);
240 Macros[MacroName] = std::make_pair(MacroBody, false);
241 }
242}
243
244/// \brief Check the preprocessor options deserialized from the control block
245/// against the preprocessor options in an existing preprocessor.
246///
247/// \param Diags If non-null, produce diagnostics for any mismatches incurred.
248static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
249 const PreprocessorOptions &ExistingPPOpts,
Douglas Gregor87699242012-10-25 00:07:54 +0000250 DiagnosticsEngine *Diags,
251 FileManager &FileMgr,
252 std::string &SuggestedPredefines) {
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000253 // Check macro definitions.
254 MacroDefinitionsMap ASTFileMacros;
255 collectMacroDefinitions(PPOpts, ASTFileMacros);
256 MacroDefinitionsMap ExistingMacros;
257 SmallVector<StringRef, 4> ExistingMacroNames;
258 collectMacroDefinitions(ExistingPPOpts, ExistingMacros, &ExistingMacroNames);
259
260 for (unsigned I = 0, N = ExistingMacroNames.size(); I != N; ++I) {
261 // Dig out the macro definition in the existing preprocessor options.
262 StringRef MacroName = ExistingMacroNames[I];
263 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
264
265 // Check whether we know anything about this macro name or not.
266 llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/> >::iterator Known
267 = ASTFileMacros.find(MacroName);
268 if (Known == ASTFileMacros.end()) {
269 // FIXME: Check whether this identifier was referenced anywhere in the
270 // AST file. If so, we should reject the AST file. Unfortunately, this
271 // information isn't in the control block. What shall we do about it?
Douglas Gregor87699242012-10-25 00:07:54 +0000272
273 if (Existing.second) {
274 SuggestedPredefines += "#undef ";
275 SuggestedPredefines += MacroName.str();
276 SuggestedPredefines += '\n';
277 } else {
278 SuggestedPredefines += "#define ";
279 SuggestedPredefines += MacroName.str();
Douglas Gregora9b8da42012-10-25 00:25:27 +0000280 SuggestedPredefines += ' ';
Douglas Gregor87699242012-10-25 00:07:54 +0000281 SuggestedPredefines += Existing.first.str();
282 SuggestedPredefines += '\n';
283 }
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000284 continue;
285 }
286
287 // If the macro was defined in one but undef'd in the other, we have a
288 // conflict.
289 if (Existing.second != Known->second.second) {
290 if (Diags) {
291 Diags->Report(diag::err_pch_macro_def_undef)
292 << MacroName << Known->second.second;
293 }
294 return true;
295 }
296
297 // If the macro was #undef'd in both, or if the macro bodies are identical,
298 // it's fine.
299 if (Existing.second || Existing.first == Known->second.first)
300 continue;
301
302 // The macro bodies differ; complain.
303 if (Diags) {
304 Diags->Report(diag::err_pch_macro_def_conflict)
305 << MacroName << Known->second.first << Existing.first;
306 }
307 return true;
308 }
309
310 // Check whether we're using predefines.
311 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines) {
312 if (Diags) {
313 Diags->Report(diag::err_pch_undef) << ExistingPPOpts.UsePredefines;
314 }
315 return true;
316 }
317
Douglas Gregor87699242012-10-25 00:07:54 +0000318 // Compute the #include and #include_macros lines we need.
319 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) {
320 StringRef File = ExistingPPOpts.Includes[I];
321 if (File == ExistingPPOpts.ImplicitPCHInclude)
322 continue;
323
324 if (std::find(PPOpts.Includes.begin(), PPOpts.Includes.end(), File)
325 != PPOpts.Includes.end())
326 continue;
327
328 SuggestedPredefines += "#include \"";
329 SuggestedPredefines +=
330 HeaderSearch::NormalizeDashIncludePath(File, FileMgr);
331 SuggestedPredefines += "\"\n";
332 }
333
334 for (unsigned I = 0, N = ExistingPPOpts.MacroIncludes.size(); I != N; ++I) {
335 StringRef File = ExistingPPOpts.MacroIncludes[I];
336 if (std::find(PPOpts.MacroIncludes.begin(), PPOpts.MacroIncludes.end(),
337 File)
338 != PPOpts.MacroIncludes.end())
339 continue;
340
341 SuggestedPredefines += "#__include_macros \"";
342 SuggestedPredefines +=
343 HeaderSearch::NormalizeDashIncludePath(File, FileMgr);
344 SuggestedPredefines += "\"\n##\n";
345 }
346
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000347 return false;
348}
349
350bool PCHValidator::ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
Douglas Gregor87699242012-10-25 00:07:54 +0000351 bool Complain,
352 std::string &SuggestedPredefines) {
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000353 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts();
354
355 return checkPreprocessorOptions(PPOpts, ExistingPPOpts,
Douglas Gregor87699242012-10-25 00:07:54 +0000356 Complain? &Reader.Diags : 0,
357 PP.getFileManager(),
358 SuggestedPredefines);
Douglas Gregor4c0c7e82012-10-24 23:41:50 +0000359}
360
Douglas Gregor12fab312010-03-16 16:35:32 +0000361void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
362 unsigned ID) {
363 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
364 ++NumHeaderInfos;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000365}
366
Argyrios Kyrtzidis62288ed2012-10-10 02:12:47 +0000367void PCHValidator::ReadCounter(const ModuleFile &M, unsigned Value) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000368 PP.setCounterValue(Value);
369}
370
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000371//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000372// AST reader implementation
Douglas Gregor668c1a42009-04-21 22:25:48 +0000373//===----------------------------------------------------------------------===//
374
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000375void
Sebastian Redl571db7f2010-08-18 23:56:56 +0000376ASTReader::setDeserializationListener(ASTDeserializationListener *Listener) {
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000377 DeserializationListener = Listener;
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000378}
379
Chris Lattner4c6f9522009-04-27 05:14:47 +0000380
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000381
Douglas Gregor98339b92011-08-25 20:47:51 +0000382unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
383 return serialization::ComputeHash(Sel);
384}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000385
Mike Stump1eb44332009-09-09 15:08:12 +0000386
Douglas Gregor98339b92011-08-25 20:47:51 +0000387std::pair<unsigned, unsigned>
388ASTSelectorLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
389 using namespace clang::io;
390 unsigned KeyLen = ReadUnalignedLE16(d);
391 unsigned DataLen = ReadUnalignedLE16(d);
392 return std::make_pair(KeyLen, DataLen);
393}
394
395ASTSelectorLookupTrait::internal_key_type
396ASTSelectorLookupTrait::ReadKey(const unsigned char* d, unsigned) {
397 using namespace clang::io;
Douglas Gregor35942772011-09-09 21:34:22 +0000398 SelectorTable &SelTable = Reader.getContext().Selectors;
Douglas Gregor98339b92011-08-25 20:47:51 +0000399 unsigned N = ReadUnalignedLE16(d);
400 IdentifierInfo *FirstII
401 = Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
402 if (N == 0)
403 return SelTable.getNullarySelector(FirstII);
404 else if (N == 1)
405 return SelTable.getUnarySelector(FirstII);
406
407 SmallVector<IdentifierInfo *, 16> Args;
408 Args.push_back(FirstII);
409 for (unsigned I = 1; I != N; ++I)
410 Args.push_back(Reader.getLocalIdentifier(F, ReadUnalignedLE32(d)));
411
412 return SelTable.getSelector(N, Args.data());
413}
414
415ASTSelectorLookupTrait::data_type
416ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
417 unsigned DataLen) {
418 using namespace clang::io;
419
420 data_type Result;
421
422 Result.ID = Reader.getGlobalSelectorID(F, ReadUnalignedLE32(d));
423 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
424 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
425
426 // Load instance methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000427 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
428 if (ObjCMethodDecl *Method
429 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
430 Result.Instance.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000431 }
Mike Stump1eb44332009-09-09 15:08:12 +0000432
Douglas Gregor98339b92011-08-25 20:47:51 +0000433 // Load factory methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000434 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
435 if (ObjCMethodDecl *Method
436 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
437 Result.Factory.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000438 }
Mike Stump1eb44332009-09-09 15:08:12 +0000439
Douglas Gregor98339b92011-08-25 20:47:51 +0000440 return Result;
441}
Mike Stump1eb44332009-09-09 15:08:12 +0000442
Douglas Gregor98339b92011-08-25 20:47:51 +0000443unsigned ASTIdentifierLookupTrait::ComputeHash(const internal_key_type& a) {
444 return llvm::HashString(StringRef(a.first, a.second));
445}
Mike Stump1eb44332009-09-09 15:08:12 +0000446
Douglas Gregor98339b92011-08-25 20:47:51 +0000447std::pair<unsigned, unsigned>
448ASTIdentifierLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
449 using namespace clang::io;
450 unsigned DataLen = ReadUnalignedLE16(d);
451 unsigned KeyLen = ReadUnalignedLE16(d);
452 return std::make_pair(KeyLen, DataLen);
453}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000454
Douglas Gregor98339b92011-08-25 20:47:51 +0000455std::pair<const char*, unsigned>
456ASTIdentifierLookupTrait::ReadKey(const unsigned char* d, unsigned n) {
457 assert(n >= 2 && d[n-1] == '\0');
458 return std::make_pair((const char*) d, n-1);
459}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000460
Douglas Gregor98339b92011-08-25 20:47:51 +0000461IdentifierInfo *ASTIdentifierLookupTrait::ReadData(const internal_key_type& k,
462 const unsigned char* d,
463 unsigned DataLen) {
464 using namespace clang::io;
465 unsigned RawID = ReadUnalignedLE32(d);
466 bool IsInteresting = RawID & 0x01;
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Douglas Gregor98339b92011-08-25 20:47:51 +0000468 // Wipe out the "is interesting" bit.
469 RawID = RawID >> 1;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000470
Douglas Gregor98339b92011-08-25 20:47:51 +0000471 IdentID ID = Reader.getGlobalIdentifierID(F, RawID);
472 if (!IsInteresting) {
473 // For uninteresting identifiers, just build the IdentifierInfo
474 // and associate it with the persistent ID.
Douglas Gregor668c1a42009-04-21 22:25:48 +0000475 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000476 if (!II) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +0000477 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000478 KnownII = II;
479 }
Douglas Gregor668c1a42009-04-21 22:25:48 +0000480 Reader.SetIdentifierInfo(ID, II);
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000481 II->setIsFromAST();
Douglas Gregor057df202012-01-18 20:56:22 +0000482 Reader.markIdentifierUpToDate(II);
Douglas Gregor668c1a42009-04-21 22:25:48 +0000483 return II;
484 }
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000486 unsigned ObjCOrBuiltinID = ReadUnalignedLE16(d);
Douglas Gregor98339b92011-08-25 20:47:51 +0000487 unsigned Bits = ReadUnalignedLE16(d);
488 bool CPlusPlusOperatorKeyword = Bits & 0x01;
489 Bits >>= 1;
490 bool HasRevertedTokenIDToIdentifier = Bits & 0x01;
491 Bits >>= 1;
492 bool Poisoned = Bits & 0x01;
493 Bits >>= 1;
494 bool ExtensionToken = Bits & 0x01;
495 Bits >>= 1;
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000496 bool hadMacroDefinition = Bits & 0x01;
497 Bits >>= 1;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000498
Douglas Gregor98339b92011-08-25 20:47:51 +0000499 assert(Bits == 0 && "Extra bits in the identifier?");
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000500 DataLen -= 8;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000501
Douglas Gregor98339b92011-08-25 20:47:51 +0000502 // Build the IdentifierInfo itself and link the identifier ID with
503 // the new IdentifierInfo.
504 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000505 if (!II) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000506 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000507 KnownII = II;
508 }
Douglas Gregor057df202012-01-18 20:56:22 +0000509 Reader.markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +0000510 II->setIsFromAST();
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000511
Douglas Gregor98339b92011-08-25 20:47:51 +0000512 // Set or check the various bits in the IdentifierInfo structure.
513 // Token IDs are read-only.
514 if (HasRevertedTokenIDToIdentifier)
515 II->RevertTokenIDToIdentifier();
516 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
517 assert(II->isExtensionToken() == ExtensionToken &&
518 "Incorrect extension token flag");
519 (void)ExtensionToken;
520 if (Poisoned)
521 II->setIsPoisoned(true);
522 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
523 "Incorrect C++ operator keyword flag");
524 (void)CPlusPlusOperatorKeyword;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000525
Douglas Gregor98339b92011-08-25 20:47:51 +0000526 // If this identifier is a macro, deserialize the macro
527 // definition.
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000528 if (hadMacroDefinition) {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000529 SmallVector<MacroID, 4> MacroIDs;
530 while (uint32_t LocalID = ReadUnalignedLE32(d)) {
531 MacroIDs.push_back(Reader.getGlobalMacroID(F, LocalID));
532 DataLen -= 4;
Douglas Gregor13292642011-12-02 15:45:10 +0000533 }
Douglas Gregor6c6c54a2012-10-11 00:46:49 +0000534 DataLen -= 4;
535 Reader.setIdentifierIsMacro(II, MacroIDs);
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000536 }
537
Douglas Gregoreee242f2011-10-27 09:33:13 +0000538 Reader.SetIdentifierInfo(ID, II);
539
Douglas Gregor98339b92011-08-25 20:47:51 +0000540 // Read all of the declarations visible at global scope with this
541 // name.
Douglas Gregor98339b92011-08-25 20:47:51 +0000542 if (DataLen > 0) {
543 SmallVector<uint32_t, 4> DeclIDs;
544 for (; DataLen > 0; DataLen -= 4)
545 DeclIDs.push_back(Reader.getGlobalDeclID(F, ReadUnalignedLE32(d)));
546 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000547 }
548
Douglas Gregor98339b92011-08-25 20:47:51 +0000549 return II;
550}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000551
Douglas Gregor98339b92011-08-25 20:47:51 +0000552unsigned
553ASTDeclContextNameLookupTrait::ComputeHash(const DeclNameKey &Key) const {
554 llvm::FoldingSetNodeID ID;
555 ID.AddInteger(Key.Kind);
556
557 switch (Key.Kind) {
558 case DeclarationName::Identifier:
559 case DeclarationName::CXXLiteralOperatorName:
560 ID.AddString(((IdentifierInfo*)Key.Data)->getName());
561 break;
562 case DeclarationName::ObjCZeroArgSelector:
563 case DeclarationName::ObjCOneArgSelector:
564 case DeclarationName::ObjCMultiArgSelector:
565 ID.AddInteger(serialization::ComputeHash(Selector(Key.Data)));
566 break;
567 case DeclarationName::CXXOperatorName:
568 ID.AddInteger((OverloadedOperatorKind)Key.Data);
569 break;
570 case DeclarationName::CXXConstructorName:
571 case DeclarationName::CXXDestructorName:
572 case DeclarationName::CXXConversionFunctionName:
573 case DeclarationName::CXXUsingDirective:
574 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000575 }
576
Douglas Gregor98339b92011-08-25 20:47:51 +0000577 return ID.ComputeHash();
578}
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000579
Douglas Gregor98339b92011-08-25 20:47:51 +0000580ASTDeclContextNameLookupTrait::internal_key_type
581ASTDeclContextNameLookupTrait::GetInternalKey(
582 const external_key_type& Name) const {
583 DeclNameKey Key;
584 Key.Kind = Name.getNameKind();
585 switch (Name.getNameKind()) {
586 case DeclarationName::Identifier:
587 Key.Data = (uint64_t)Name.getAsIdentifierInfo();
588 break;
589 case DeclarationName::ObjCZeroArgSelector:
590 case DeclarationName::ObjCOneArgSelector:
591 case DeclarationName::ObjCMultiArgSelector:
592 Key.Data = (uint64_t)Name.getObjCSelector().getAsOpaquePtr();
593 break;
594 case DeclarationName::CXXOperatorName:
595 Key.Data = Name.getCXXOverloadedOperator();
596 break;
597 case DeclarationName::CXXLiteralOperatorName:
598 Key.Data = (uint64_t)Name.getCXXLiteralIdentifier();
599 break;
600 case DeclarationName::CXXConstructorName:
601 case DeclarationName::CXXDestructorName:
602 case DeclarationName::CXXConversionFunctionName:
603 case DeclarationName::CXXUsingDirective:
604 Key.Data = 0;
605 break;
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000606 }
607
Douglas Gregor98339b92011-08-25 20:47:51 +0000608 return Key;
609}
610
Douglas Gregor98339b92011-08-25 20:47:51 +0000611std::pair<unsigned, unsigned>
612ASTDeclContextNameLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
613 using namespace clang::io;
614 unsigned KeyLen = ReadUnalignedLE16(d);
615 unsigned DataLen = ReadUnalignedLE16(d);
616 return std::make_pair(KeyLen, DataLen);
617}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000618
Douglas Gregor98339b92011-08-25 20:47:51 +0000619ASTDeclContextNameLookupTrait::internal_key_type
620ASTDeclContextNameLookupTrait::ReadKey(const unsigned char* d, unsigned) {
621 using namespace clang::io;
622
623 DeclNameKey Key;
624 Key.Kind = (DeclarationName::NameKind)*d++;
625 switch (Key.Kind) {
626 case DeclarationName::Identifier:
627 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
628 break;
629 case DeclarationName::ObjCZeroArgSelector:
630 case DeclarationName::ObjCOneArgSelector:
631 case DeclarationName::ObjCMultiArgSelector:
632 Key.Data =
633 (uint64_t)Reader.getLocalSelector(F, ReadUnalignedLE32(d))
634 .getAsOpaquePtr();
635 break;
636 case DeclarationName::CXXOperatorName:
637 Key.Data = *d++; // OverloadedOperatorKind
638 break;
639 case DeclarationName::CXXLiteralOperatorName:
640 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
641 break;
642 case DeclarationName::CXXConstructorName:
643 case DeclarationName::CXXDestructorName:
644 case DeclarationName::CXXConversionFunctionName:
645 case DeclarationName::CXXUsingDirective:
646 Key.Data = 0;
647 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000648 }
649
Douglas Gregor98339b92011-08-25 20:47:51 +0000650 return Key;
651}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000652
Douglas Gregor98339b92011-08-25 20:47:51 +0000653ASTDeclContextNameLookupTrait::data_type
654ASTDeclContextNameLookupTrait::ReadData(internal_key_type,
655 const unsigned char* d,
Nick Lewyckyb346d2f2012-04-16 02:51:46 +0000656 unsigned DataLen) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000657 using namespace clang::io;
658 unsigned NumDecls = ReadUnalignedLE16(d);
Douglas Gregor9b8b20f2012-01-06 16:09:53 +0000659 LE32DeclID *Start = (LE32DeclID *)d;
Douglas Gregor98339b92011-08-25 20:47:51 +0000660 return std::make_pair(Start, Start + NumDecls);
661}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000662
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000663bool ASTReader::ReadDeclContextStorage(ModuleFile &M,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000664 llvm::BitstreamCursor &Cursor,
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000665 const std::pair<uint64_t, uint64_t> &Offsets,
666 DeclContextInfo &Info) {
667 SavedStreamPosition SavedPosition(Cursor);
668 // First the lexical decls.
669 if (Offsets.first != 0) {
670 Cursor.JumpToBit(Offsets.first);
671
672 RecordData Record;
673 const char *Blob;
674 unsigned BlobLen;
675 unsigned Code = Cursor.ReadCode();
676 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
677 if (RecCode != DECL_CONTEXT_LEXICAL) {
678 Error("Expected lexical block");
679 return true;
680 }
681
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000682 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob);
683 Info.NumLexicalDecls = BlobLen / sizeof(KindDeclIDPair);
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000684 }
685
686 // Now the lookup table.
687 if (Offsets.second != 0) {
688 Cursor.JumpToBit(Offsets.second);
689
690 RecordData Record;
691 const char *Blob;
692 unsigned BlobLen;
693 unsigned Code = Cursor.ReadCode();
694 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
695 if (RecCode != DECL_CONTEXT_VISIBLE) {
696 Error("Expected visible lookup table block");
697 return true;
698 }
699 Info.NameLookupTableData
700 = ASTDeclContextNameLookupTable::Create(
701 (const unsigned char *)Blob + Record[0],
702 (const unsigned char *)Blob,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000703 ASTDeclContextNameLookupTrait(*this, M));
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000704 }
705
706 return false;
707}
708
Chris Lattner5f9e2722011-07-23 10:55:15 +0000709void ASTReader::Error(StringRef Msg) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000710 Error(diag::err_fe_pch_malformed, Msg);
711}
712
713void ASTReader::Error(unsigned DiagID,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000714 StringRef Arg1, StringRef Arg2) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000715 if (Diags.isDiagnosticInFlight())
716 Diags.SetDelayedDiagnostic(DiagID, Arg1, Arg2);
717 else
718 Diag(DiagID) << Arg1 << Arg2;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000719}
720
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000721//===----------------------------------------------------------------------===//
722// Source Manager Deserialization
723//===----------------------------------------------------------------------===//
724
Douglas Gregorbd945002009-04-13 16:31:14 +0000725/// \brief Read the line table in the source manager block.
Sebastian Redlc3632732010-10-05 15:59:54 +0000726/// \returns true if there was an error.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000727bool ASTReader::ParseLineTable(ModuleFile &F,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000728 SmallVectorImpl<uint64_t> &Record) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000729 unsigned Idx = 0;
730 LineTableInfo &LineTable = SourceMgr.getLineTable();
731
732 // Parse the file names
Douglas Gregorff0a9872009-04-13 17:12:42 +0000733 std::map<int, int> FileIDs;
734 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000735 // Extract the file name
736 unsigned FilenameLen = Record[Idx++];
737 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
738 Idx += FilenameLen;
Douglas Gregorcaed0602012-10-18 21:31:35 +0000739 MaybeAddSystemRootToFilename(F, Filename);
Jay Foad65aa6882011-06-21 15:13:30 +0000740 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
Douglas Gregorbd945002009-04-13 16:31:14 +0000741 }
742
743 // Parse the line entries
744 std::vector<LineEntry> Entries;
745 while (Idx < Record.size()) {
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000746 int FID = Record[Idx++];
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000747 assert(FID >= 0 && "Serialized line entries for non-local file.");
748 // Remap FileID from 1-based old view.
749 FID += F.SLocEntryBaseID - 1;
Douglas Gregorbd945002009-04-13 16:31:14 +0000750
751 // Extract the line entries
752 unsigned NumEntries = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000753 assert(NumEntries && "Numentries is 00000");
Douglas Gregorbd945002009-04-13 16:31:14 +0000754 Entries.clear();
755 Entries.reserve(NumEntries);
756 for (unsigned I = 0; I != NumEntries; ++I) {
757 unsigned FileOffset = Record[Idx++];
758 unsigned LineNo = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000759 int FilenameID = FileIDs[Record[Idx++]];
Mike Stump1eb44332009-09-09 15:08:12 +0000760 SrcMgr::CharacteristicKind FileKind
Douglas Gregorbd945002009-04-13 16:31:14 +0000761 = (SrcMgr::CharacteristicKind)Record[Idx++];
762 unsigned IncludeOffset = Record[Idx++];
763 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
764 FileKind, IncludeOffset));
765 }
Douglas Gregor47d9de62012-06-08 16:40:28 +0000766 LineTable.AddEntry(FileID::get(FID), Entries);
Douglas Gregorbd945002009-04-13 16:31:14 +0000767 }
768
769 return false;
770}
771
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000772namespace {
773
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000774class ASTStatData {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000775public:
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000776 const ino_t ino;
777 const dev_t dev;
778 const mode_t mode;
779 const time_t mtime;
780 const off_t size;
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000782 ASTStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Chris Lattner74e976b2010-11-23 19:28:12 +0000783 : ino(i), dev(d), mode(mo), mtime(m), size(s) {}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000784};
785
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000786class ASTStatLookupTrait {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000787 public:
788 typedef const char *external_key_type;
789 typedef const char *internal_key_type;
790
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000791 typedef ASTStatData data_type;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000792
793 static unsigned ComputeHash(const char *path) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000794 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000795 }
796
797 static internal_key_type GetInternalKey(const char *path) { return path; }
798
799 static bool EqualKey(internal_key_type a, internal_key_type b) {
800 return strcmp(a, b) == 0;
801 }
802
803 static std::pair<unsigned, unsigned>
804 ReadKeyDataLength(const unsigned char*& d) {
805 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
806 unsigned DataLen = (unsigned) *d++;
807 return std::make_pair(KeyLen + 1, DataLen);
808 }
809
810 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
811 return (const char *)d;
812 }
813
814 static data_type ReadData(const internal_key_type, const unsigned char *d,
815 unsigned /*DataLen*/) {
816 using namespace clang::io;
817
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000818 ino_t ino = (ino_t) ReadUnalignedLE32(d);
819 dev_t dev = (dev_t) ReadUnalignedLE32(d);
820 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump1eb44332009-09-09 15:08:12 +0000821 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000822 off_t size = (off_t) ReadUnalignedLE64(d);
823 return data_type(ino, dev, mode, mtime, size);
824 }
825};
826
827/// \brief stat() cache for precompiled headers.
828///
829/// This cache is very similar to the stat cache used by pretokenized
830/// headers.
Chris Lattner10e286a2010-11-23 19:19:34 +0000831class ASTStatCache : public FileSystemStatCache {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000832 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000833 CacheTy *Cache;
834
835 unsigned &NumStatHits, &NumStatMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000836public:
Chris Lattner74e976b2010-11-23 19:28:12 +0000837 ASTStatCache(const unsigned char *Buckets, const unsigned char *Base,
838 unsigned &NumStatHits, unsigned &NumStatMisses)
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000839 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
840 Cache = CacheTy::Create(Buckets, Base);
841 }
842
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000843 ~ASTStatCache() { delete Cache; }
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Chris Lattner898a0612010-11-23 21:17:56 +0000845 LookupResult getStat(const char *Path, struct stat &StatBuf,
846 int *FileDescriptor) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000847 // Do the lookup for the file's data in the AST file.
Chris Lattner10e286a2010-11-23 19:19:34 +0000848 CacheTy::iterator I = Cache->find(Path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000849
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000850 // If we don't get a hit in the AST file just forward to 'stat'.
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000851 if (I == Cache->end()) {
852 ++NumStatMisses;
Chris Lattner898a0612010-11-23 21:17:56 +0000853 return statChained(Path, StatBuf, FileDescriptor);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000854 }
Mike Stump1eb44332009-09-09 15:08:12 +0000855
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000856 ++NumStatHits;
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000857 ASTStatData Data = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000858
Chris Lattner10e286a2010-11-23 19:19:34 +0000859 StatBuf.st_ino = Data.ino;
860 StatBuf.st_dev = Data.dev;
861 StatBuf.st_mtime = Data.mtime;
862 StatBuf.st_mode = Data.mode;
863 StatBuf.st_size = Data.size;
Chris Lattnerd6f61112010-11-23 20:05:15 +0000864 return CacheExists;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000865 }
866};
867} // end anonymous namespace
868
869
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000870/// \brief Read a source manager block
Douglas Gregor4825fd72012-10-22 22:50:17 +0000871bool ASTReader::ReadSourceManagerBlock(ModuleFile &F) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000872 using namespace SrcMgr;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000873
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000874 llvm::BitstreamCursor &SLocEntryCursor = F.SLocEntryCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +0000875
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000876 // Set the source-location entry cursor to the current position in
877 // the stream. This cursor will be used to read the contents of the
878 // source manager block initially, and then lazily read
879 // source-location entries as needed.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000880 SLocEntryCursor = F.Stream;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000881
882 // The stream itself is going to skip over the source manager block.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000883 if (F.Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000884 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000885 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000886 }
887
888 // Enter the source manager block.
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000889 if (SLocEntryCursor.EnterSubBlock(SOURCE_MANAGER_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000890 Error("malformed source manager block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000891 return true;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000892 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000893
Douglas Gregor14f79002009-04-10 03:52:48 +0000894 RecordData Record;
895 while (true) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000896 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregor14f79002009-04-10 03:52:48 +0000897 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000898 if (SLocEntryCursor.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000899 Error("error at end of Source Manager block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000900 return true;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000901 }
Douglas Gregor4825fd72012-10-22 22:50:17 +0000902 return false;
Douglas Gregor14f79002009-04-10 03:52:48 +0000903 }
Mike Stump1eb44332009-09-09 15:08:12 +0000904
Douglas Gregor14f79002009-04-10 03:52:48 +0000905 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
906 // No known subblocks, always skip them.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000907 SLocEntryCursor.ReadSubBlockID();
908 if (SLocEntryCursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000909 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000910 return true;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000911 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000912 continue;
913 }
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Douglas Gregor14f79002009-04-10 03:52:48 +0000915 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000916 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregor14f79002009-04-10 03:52:48 +0000917 continue;
918 }
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Douglas Gregor14f79002009-04-10 03:52:48 +0000920 // Read a record.
921 const char *BlobStart;
922 unsigned BlobLen;
923 Record.clear();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000924 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000925 default: // Default behavior: ignore.
926 break;
927
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000928 case SM_SLOC_FILE_ENTRY:
929 case SM_SLOC_BUFFER_ENTRY:
Chandler Carruthf70d12d2011-07-15 07:25:21 +0000930 case SM_SLOC_EXPANSION_ENTRY:
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000931 // Once we hit one of the source location entries, we're done.
Douglas Gregor4825fd72012-10-22 22:50:17 +0000932 return false;
Douglas Gregor14f79002009-04-10 03:52:48 +0000933 }
934 }
935}
936
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000937/// \brief If a header file is not found at the path that we expect it to be
938/// and the PCH file was moved from its original location, try to resolve the
939/// file by assuming that header+PCH were moved together and the header is in
940/// the same place relative to the PCH.
941static std::string
942resolveFileRelativeToOriginalDir(const std::string &Filename,
943 const std::string &OriginalDir,
944 const std::string &CurrDir) {
945 assert(OriginalDir != CurrDir &&
946 "No point trying to resolve the file if the PCH dir didn't change");
947 using namespace llvm::sys;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000948 SmallString<128> filePath(Filename);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000949 fs::make_absolute(filePath);
950 assert(path::is_absolute(OriginalDir));
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000951 SmallString<128> currPCHPath(CurrDir);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +0000952
953 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
954 fileDirE = path::end(path::parent_path(filePath));
955 path::const_iterator origDirI = path::begin(OriginalDir),
956 origDirE = path::end(OriginalDir);
957 // Skip the common path components from filePath and OriginalDir.
958 while (fileDirI != fileDirE && origDirI != origDirE &&
959 *fileDirI == *origDirI) {
960 ++fileDirI;
961 ++origDirI;
962 }
963 for (; origDirI != origDirE; ++origDirI)
964 path::append(currPCHPath, "..");
965 path::append(currPCHPath, fileDirI, fileDirE);
966 path::append(currPCHPath, path::filename(Filename));
967 return currPCHPath.str();
968}
969
Douglas Gregor8b53d142012-10-22 22:53:10 +0000970bool ASTReader::ReadSLocEntry(int ID) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000971 if (ID == 0)
Douglas Gregor4825fd72012-10-22 22:50:17 +0000972 return false;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000973
Douglas Gregor0cdd7982011-07-21 18:46:38 +0000974 if (unsigned(-ID) - 2 >= getTotalNumSLocs() || ID > 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000975 Error("source location entry ID out-of-range for AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000976 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000977 }
978
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000979 ModuleFile *F = GlobalSLocEntryMap.find(-ID)->second;
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000980 F->SLocEntryCursor.JumpToBit(F->SLocEntryOffsets[ID - F->SLocEntryBaseID]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000981 llvm::BitstreamCursor &SLocEntryCursor = F->SLocEntryCursor;
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000982 unsigned BaseOffset = F->SLocEntryBaseOffset;
Sebastian Redl9137a522010-07-16 17:50:48 +0000983
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000984 ++NumSLocEntriesRead;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000985 unsigned Code = SLocEntryCursor.ReadCode();
986 if (Code == llvm::bitc::END_BLOCK ||
987 Code == llvm::bitc::ENTER_SUBBLOCK ||
988 Code == llvm::bitc::DEFINE_ABBREV) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000989 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000990 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000991 }
992
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000993 RecordData Record;
994 const char *BlobStart;
995 unsigned BlobLen;
996 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
997 default:
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000998 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +0000999 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001000
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001001 case SM_SLOC_FILE_ENTRY: {
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001002 // We will detect whether a file changed and return 'Failure' for it, but
1003 // we will also try to fail gracefully by setting up the SLocEntry.
Douglas Gregora930dc92012-10-22 18:42:04 +00001004 unsigned InputID = Record[4];
1005 InputFile IF = getInputFile(*F, InputID);
1006 const FileEntry *File = IF.getPointer();
1007 bool OverriddenBuffer = IF.getInt();
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001008
Douglas Gregora930dc92012-10-22 18:42:04 +00001009 if (!IF.getPointer())
Douglas Gregor4825fd72012-10-22 22:50:17 +00001010 return true;
Douglas Gregor2d52be52010-03-21 22:49:54 +00001011
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001012 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
Douglas Gregor72a9ae12011-07-22 16:00:58 +00001013 if (IncludeLoc.isInvalid() && F->Kind != MK_MainFile) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001014 // This is the module's main file.
1015 IncludeLoc = getImportLocation(F);
1016 }
Argyrios Kyrtzidisff398962012-07-11 20:59:04 +00001017 SrcMgr::CharacteristicKind
1018 FileCharacter = (SrcMgr::CharacteristicKind)Record[2];
1019 FileID FID = SourceMgr.createFileID(File, IncludeLoc, FileCharacter,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001020 ID, BaseOffset + Record[0]);
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001021 SrcMgr::FileInfo &FileInfo =
1022 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile());
Douglas Gregora930dc92012-10-22 18:42:04 +00001023 FileInfo.NumCreatedFIDs = Record[5];
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001024 if (Record[3])
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001025 FileInfo.setHasLineDirectives();
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001026
Douglas Gregora930dc92012-10-22 18:42:04 +00001027 const DeclID *FirstDecl = F->FileSortedDecls + Record[6];
1028 unsigned NumFileDecls = Record[7];
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001029 if (NumFileDecls) {
1030 assert(F->FileSortedDecls && "FILE_SORTED_DECLS not encountered yet ?");
Argyrios Kyrtzidis9d128d02011-10-31 07:20:08 +00001031 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
1032 NumFileDecls));
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001033 }
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001034
Douglas Gregor35f9ae62011-11-17 01:44:33 +00001035 const SrcMgr::ContentCache *ContentCache
Argyrios Kyrtzidisff398962012-07-11 20:59:04 +00001036 = SourceMgr.getOrCreateContentCache(File,
1037 /*isSystemFile=*/FileCharacter != SrcMgr::C_User);
Douglas Gregor35f9ae62011-11-17 01:44:33 +00001038 if (OverriddenBuffer && !ContentCache->BufferOverridden &&
1039 ContentCache->ContentsEntry == ContentCache->OrigEntry) {
Douglas Gregora081da52011-11-16 20:05:18 +00001040 unsigned Code = SLocEntryCursor.ReadCode();
1041 Record.clear();
1042 unsigned RecCode
1043 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
1044
1045 if (RecCode != SM_SLOC_BUFFER_BLOB) {
1046 Error("AST record has invalid code");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001047 return true;
Douglas Gregora081da52011-11-16 20:05:18 +00001048 }
1049
1050 llvm::MemoryBuffer *Buffer
1051 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
Douglas Gregora930dc92012-10-22 18:42:04 +00001052 File->getName());
Douglas Gregora081da52011-11-16 20:05:18 +00001053 SourceMgr.overrideFileContents(File, Buffer);
1054 }
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001055
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001056 break;
1057 }
1058
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001059 case SM_SLOC_BUFFER_ENTRY: {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001060 const char *Name = BlobStart;
1061 unsigned Offset = Record[0];
1062 unsigned Code = SLocEntryCursor.ReadCode();
1063 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001064 unsigned RecCode
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001065 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001066
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001067 if (RecCode != SM_SLOC_BUFFER_BLOB) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001068 Error("AST record has invalid code");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001069 return true;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001070 }
1071
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001072 llvm::MemoryBuffer *Buffer
Douglas Gregora081da52011-11-16 20:05:18 +00001073 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
1074 Name);
Douglas Gregor0ca6e272012-10-25 00:30:23 +00001075 SourceMgr.createFileIDForMemBuffer(Buffer, ID, BaseOffset + Offset);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001076 break;
1077 }
1078
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001079 case SM_SLOC_EXPANSION_ENTRY: {
Sebastian Redlc3632732010-10-05 15:59:54 +00001080 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
Chandler Carruthbf340e42011-07-26 03:03:05 +00001081 SourceMgr.createExpansionLoc(SpellingLoc,
Sebastian Redlc3632732010-10-05 15:59:54 +00001082 ReadSourceLocation(*F, Record[2]),
1083 ReadSourceLocation(*F, Record[3]),
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001084 Record[4],
1085 ID,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001086 BaseOffset + Record[0]);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001087 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001088 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001089 }
1090
Douglas Gregor4825fd72012-10-22 22:50:17 +00001091 return false;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001092}
1093
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001094/// \brief Find the location where the module F is imported.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001095SourceLocation ASTReader::getImportLocation(ModuleFile *F) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001096 if (F->ImportLoc.isValid())
1097 return F->ImportLoc;
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001098
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001099 // Otherwise we have a PCH. It's considered to be "imported" at the first
1100 // location of its includer.
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001101 if (F->ImportedBy.empty() || !F->ImportedBy[0]) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001102 // Main file is the importer. We assume that it is the first entry in the
1103 // entry table. We can't ask the manager, because at the time of PCH loading
1104 // the main file entry doesn't exist yet.
1105 // The very first entry is the invalid instantiation loc, which takes up
1106 // offsets 0 and 1.
1107 return SourceLocation::getFromRawEncoding(2U);
1108 }
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001109 //return F->Loaders[0]->FirstLoc;
1110 return F->ImportedBy[0]->FirstLoc;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001111}
1112
Chris Lattner6367f6d2009-04-27 01:05:14 +00001113/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1114/// specified cursor. Read the abbreviations that are at the top of the block
1115/// and then leave the cursor pointing into the block.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001116bool ASTReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
Chris Lattner6367f6d2009-04-27 01:05:14 +00001117 unsigned BlockID) {
1118 if (Cursor.EnterSubBlock(BlockID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001119 Error("malformed block record in AST file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001120 return Failure;
1121 }
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Chris Lattner6367f6d2009-04-27 01:05:14 +00001123 while (true) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001124 uint64_t Offset = Cursor.GetCurrentBitNo();
Chris Lattner6367f6d2009-04-27 01:05:14 +00001125 unsigned Code = Cursor.ReadCode();
Michael J. Spencer20249a12010-10-21 03:16:25 +00001126
Chris Lattner6367f6d2009-04-27 01:05:14 +00001127 // We expect all abbrevs to be at the start of the block.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001128 if (Code != llvm::bitc::DEFINE_ABBREV) {
1129 Cursor.JumpToBit(Offset);
Chris Lattner6367f6d2009-04-27 01:05:14 +00001130 return false;
Douglas Gregorecdcb882010-10-20 22:00:55 +00001131 }
Chris Lattner6367f6d2009-04-27 01:05:14 +00001132 Cursor.ReadAbbrevRecord();
1133 }
1134}
1135
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00001136void ASTReader::ReadMacroRecord(ModuleFile &F, uint64_t Offset,
1137 MacroInfo *Hint) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001138 llvm::BitstreamCursor &Stream = F.MacroCursor;
Mike Stump1eb44332009-09-09 15:08:12 +00001139
Douglas Gregor37e26842009-04-21 23:56:24 +00001140 // Keep track of where we are in the stream, then jump back there
1141 // after reading this macro.
1142 SavedStreamPosition SavedPosition(Stream);
1143
1144 Stream.JumpToBit(Offset);
1145 RecordData Record;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001146 SmallVector<IdentifierInfo*, 16> MacroArgs;
Douglas Gregor37e26842009-04-21 23:56:24 +00001147 MacroInfo *Macro = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001148
Douglas Gregore8219a62012-10-11 21:07:39 +00001149 // RAII object to add the loaded macro information once we're done
1150 // adding tokens.
1151 struct AddLoadedMacroInfoRAII {
1152 Preprocessor &PP;
1153 MacroInfo *Hint;
1154 MacroInfo *MI;
1155 IdentifierInfo *II;
1156
1157 AddLoadedMacroInfoRAII(Preprocessor &PP, MacroInfo *Hint)
1158 : PP(PP), Hint(Hint), MI(), II() { }
1159 ~AddLoadedMacroInfoRAII( ) {
1160 if (MI) {
1161 // Finally, install the macro.
1162 PP.addLoadedMacroInfo(II, MI, Hint);
1163 }
1164 }
1165 } AddLoadedMacroInfo(PP, Hint);
1166
Douglas Gregor37e26842009-04-21 23:56:24 +00001167 while (true) {
1168 unsigned Code = Stream.ReadCode();
1169 switch (Code) {
1170 case llvm::bitc::END_BLOCK:
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001171 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001172
1173 case llvm::bitc::ENTER_SUBBLOCK:
1174 // No known subblocks, always skip them.
1175 Stream.ReadSubBlockID();
1176 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001177 Error("malformed block record in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001178 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001179 }
1180 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001181
Douglas Gregor37e26842009-04-21 23:56:24 +00001182 case llvm::bitc::DEFINE_ABBREV:
1183 Stream.ReadAbbrevRecord();
1184 continue;
1185 default: break;
1186 }
1187
1188 // Read a record.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001189 const char *BlobStart = 0;
1190 unsigned BlobLen = 0;
Douglas Gregor37e26842009-04-21 23:56:24 +00001191 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001192 PreprocessorRecordTypes RecType =
Michael J. Spencer20249a12010-10-21 03:16:25 +00001193 (PreprocessorRecordTypes)Stream.ReadRecord(Code, Record, BlobStart,
Douglas Gregorecdcb882010-10-20 22:00:55 +00001194 BlobLen);
Douglas Gregor37e26842009-04-21 23:56:24 +00001195 switch (RecType) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001196 case PP_MACRO_OBJECT_LIKE:
1197 case PP_MACRO_FUNCTION_LIKE: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001198 // If we already have a macro, that means that we've hit the end
1199 // of the definition of the macro we were looking for. We're
1200 // done.
1201 if (Macro)
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001202 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001203
Douglas Gregor95eab172011-07-28 20:55:49 +00001204 IdentifierInfo *II = getLocalIdentifier(F, Record[0]);
Douglas Gregor37e26842009-04-21 23:56:24 +00001205 if (II == 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001206 Error("macro must have a name in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001207 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001208 }
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Douglas Gregora8235d62012-10-09 23:05:51 +00001210 unsigned GlobalID = getGlobalMacroID(F, Record[1]);
1211
1212 // If this macro has already been loaded, don't do so again.
1213 if (MacrosLoaded[GlobalID - NUM_PREDEF_MACRO_IDS])
1214 return;
1215
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001216 SubmoduleID GlobalSubmoduleID = getGlobalSubmoduleID(F, Record[2]);
1217 unsigned NextIndex = 3;
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001218 SourceLocation Loc = ReadSourceLocation(F, Record, NextIndex);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001219 MacroInfo *MI = PP.AllocateMacroInfo(Loc);
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001220
Douglas Gregora8235d62012-10-09 23:05:51 +00001221 // Record this macro.
1222 MacrosLoaded[GlobalID - NUM_PREDEF_MACRO_IDS] = MI;
1223
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001224 SourceLocation UndefLoc = ReadSourceLocation(F, Record, NextIndex);
1225 if (UndefLoc.isValid())
1226 MI->setUndefLoc(UndefLoc);
1227
1228 MI->setIsUsed(Record[NextIndex++]);
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001229 MI->setIsFromAST();
Mike Stump1eb44332009-09-09 15:08:12 +00001230
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001231 bool IsPublic = Record[NextIndex++];
Douglas Gregoraa93a872011-10-17 15:32:29 +00001232 MI->setVisibility(IsPublic, ReadSourceLocation(F, Record, NextIndex));
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001233
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001234 if (RecType == PP_MACRO_FUNCTION_LIKE) {
Douglas Gregor37e26842009-04-21 23:56:24 +00001235 // Decode function-like macro info.
Douglas Gregor7143aab2011-09-01 17:04:32 +00001236 bool isC99VarArgs = Record[NextIndex++];
1237 bool isGNUVarArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001238 MacroArgs.clear();
Douglas Gregor7143aab2011-09-01 17:04:32 +00001239 unsigned NumArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001240 for (unsigned i = 0; i != NumArgs; ++i)
Douglas Gregor7143aab2011-09-01 17:04:32 +00001241 MacroArgs.push_back(getLocalIdentifier(F, Record[NextIndex++]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001242
1243 // Install function-like macro info.
1244 MI->setIsFunctionLike();
1245 if (isC99VarArgs) MI->setIsC99Varargs();
1246 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor75fdb232009-05-22 22:45:36 +00001247 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001248 PP.getPreprocessorAllocator());
Douglas Gregor37e26842009-04-21 23:56:24 +00001249 }
1250
Douglas Gregora8235d62012-10-09 23:05:51 +00001251 if (DeserializationListener)
1252 DeserializationListener->MacroRead(GlobalID, MI);
1253
1254 // If an update record marked this as undefined, do so now.
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001255 // FIXME: Only if the submodule this update came from is visible?
Douglas Gregora8235d62012-10-09 23:05:51 +00001256 MacroUpdatesMap::iterator Update = MacroUpdates.find(GlobalID);
1257 if (Update != MacroUpdates.end()) {
1258 if (MI->getUndefLoc().isInvalid()) {
Douglas Gregor54c8a402012-10-12 00:16:50 +00001259 for (unsigned I = 0, N = Update->second.size(); I != N; ++I) {
1260 bool Hidden = false;
1261 if (unsigned SubmoduleID = Update->second[I].first) {
1262 if (Module *Owner = getSubmodule(SubmoduleID)) {
1263 if (Owner->NameVisibility == Module::Hidden) {
1264 // Note that this #undef is hidden.
1265 Hidden = true;
1266
1267 // Record this hiding for later.
1268 HiddenNamesMap[Owner].push_back(
1269 HiddenName(II, MI, Update->second[I].second.UndefLoc));
1270 }
1271 }
1272 }
1273
1274 if (!Hidden) {
1275 MI->setUndefLoc(Update->second[I].second.UndefLoc);
1276 if (PPMutationListener *Listener = PP.getPPMutationListener())
1277 Listener->UndefinedMacro(MI);
1278 break;
1279 }
1280 }
Douglas Gregora8235d62012-10-09 23:05:51 +00001281 }
1282 MacroUpdates.erase(Update);
1283 }
1284
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001285 // Determine whether this macro definition is visible.
1286 bool Hidden = !MI->isPublic();
1287 if (!Hidden && GlobalSubmoduleID) {
1288 if (Module *Owner = getSubmodule(GlobalSubmoduleID)) {
1289 if (Owner->NameVisibility == Module::Hidden) {
1290 // The owning module is not visible, and this macro definition
1291 // should not be, either.
1292 Hidden = true;
1293
1294 // Note that this macro definition was hidden because its owning
1295 // module is not yet visible.
1296 HiddenNamesMap[Owner].push_back(HiddenName(II, MI));
1297 }
1298 }
1299 }
1300 MI->setHidden(Hidden);
1301
Douglas Gregore8219a62012-10-11 21:07:39 +00001302 // Make sure we install the macro once we're done.
1303 AddLoadedMacroInfo.MI = MI;
1304 AddLoadedMacroInfo.II = II;
Douglas Gregor37e26842009-04-21 23:56:24 +00001305
1306 // Remember that we saw this macro last so that we add the tokens that
1307 // form its body to it.
1308 Macro = MI;
Michael J. Spencer20249a12010-10-21 03:16:25 +00001309
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00001310 if (NextIndex + 1 == Record.size() && PP.getPreprocessingRecord() &&
1311 Record[NextIndex]) {
1312 // We have a macro definition. Register the association
1313 PreprocessedEntityID
1314 GlobalID = getGlobalPreprocessedEntityID(F, Record[NextIndex]);
1315 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
1316 PPRec.RegisterMacroDefinition(Macro,
1317 PPRec.getPPEntityID(GlobalID-1, /*isLoaded=*/true));
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001318 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001319
Douglas Gregor37e26842009-04-21 23:56:24 +00001320 ++NumMacrosRead;
1321 break;
1322 }
Mike Stump1eb44332009-09-09 15:08:12 +00001323
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001324 case PP_TOKEN: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001325 // If we see a TOKEN before a PP_MACRO_*, then the file is
1326 // erroneous, just pretend we didn't see this.
1327 if (Macro == 0) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001328
Douglas Gregor37e26842009-04-21 23:56:24 +00001329 Token Tok;
1330 Tok.startToken();
Sebastian Redlc3632732010-10-05 15:59:54 +00001331 Tok.setLocation(ReadSourceLocation(F, Record[0]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001332 Tok.setLength(Record[1]);
Douglas Gregor95eab172011-07-28 20:55:49 +00001333 if (IdentifierInfo *II = getLocalIdentifier(F, Record[2]))
Douglas Gregor37e26842009-04-21 23:56:24 +00001334 Tok.setIdentifierInfo(II);
1335 Tok.setKind((tok::TokenKind)Record[3]);
1336 Tok.setFlag((Token::TokenFlags)Record[4]);
1337 Macro->AddTokenToBody(Tok);
1338 break;
1339 }
David Blaikie7530c032012-01-17 06:56:22 +00001340 }
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001341 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001342}
1343
Douglas Gregor86c67d82011-07-28 22:39:26 +00001344PreprocessedEntityID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001345ASTReader::getGlobalPreprocessedEntityID(ModuleFile &M, unsigned LocalID) const {
Argyrios Kyrtzidis1f6d2252011-09-19 20:40:02 +00001346 ContinuousRangeMap<uint32_t, int, 2>::const_iterator
Douglas Gregor272b6bc2011-08-04 18:56:47 +00001347 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS);
1348 assert(I != M.PreprocessedEntityRemap.end()
1349 && "Invalid index into preprocessed entity index remap");
1350
1351 return LocalID + I->second;
Douglas Gregor86c67d82011-07-28 22:39:26 +00001352}
1353
Douglas Gregor98339b92011-08-25 20:47:51 +00001354unsigned HeaderFileInfoTrait::ComputeHash(const char *path) {
1355 return llvm::HashString(llvm::sys::path::filename(path));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001356}
Douglas Gregor98339b92011-08-25 20:47:51 +00001357
1358HeaderFileInfoTrait::internal_key_type
1359HeaderFileInfoTrait::GetInternalKey(const char *path) { return path; }
1360
1361bool HeaderFileInfoTrait::EqualKey(internal_key_type a, internal_key_type b) {
1362 if (strcmp(a, b) == 0)
1363 return true;
1364
1365 if (llvm::sys::path::filename(a) != llvm::sys::path::filename(b))
1366 return false;
Douglas Gregor99a922b2011-12-09 16:22:07 +00001367
1368 // Determine whether the actual files are equivalent.
1369 bool Result = false;
1370 if (llvm::sys::fs::equivalent(a, b, Result))
Douglas Gregor98339b92011-08-25 20:47:51 +00001371 return false;
1372
Douglas Gregor99a922b2011-12-09 16:22:07 +00001373 return Result;
Douglas Gregor98339b92011-08-25 20:47:51 +00001374}
1375
1376std::pair<unsigned, unsigned>
1377HeaderFileInfoTrait::ReadKeyDataLength(const unsigned char*& d) {
1378 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
1379 unsigned DataLen = (unsigned) *d++;
1380 return std::make_pair(KeyLen + 1, DataLen);
1381}
1382
1383HeaderFileInfoTrait::data_type
1384HeaderFileInfoTrait::ReadData(const internal_key_type, const unsigned char *d,
1385 unsigned DataLen) {
1386 const unsigned char *End = d + DataLen;
1387 using namespace clang::io;
1388 HeaderFileInfo HFI;
1389 unsigned Flags = *d++;
1390 HFI.isImport = (Flags >> 5) & 0x01;
1391 HFI.isPragmaOnce = (Flags >> 4) & 0x01;
1392 HFI.DirInfo = (Flags >> 2) & 0x03;
1393 HFI.Resolved = (Flags >> 1) & 0x01;
1394 HFI.IndexHeaderMapHeader = Flags & 0x01;
1395 HFI.NumIncludes = ReadUnalignedLE16(d);
Douglas Gregor541ba162011-10-17 18:53:12 +00001396 HFI.ControllingMacroID = Reader.getGlobalIdentifierID(M,
1397 ReadUnalignedLE32(d));
Douglas Gregor98339b92011-08-25 20:47:51 +00001398 if (unsigned FrameworkOffset = ReadUnalignedLE32(d)) {
1399 // The framework offset is 1 greater than the actual offset,
1400 // since 0 is used as an indicator for "no framework name".
1401 StringRef FrameworkName(FrameworkStrings + FrameworkOffset - 1);
1402 HFI.Framework = HS->getUniqueFrameworkName(FrameworkName);
1403 }
1404
1405 assert(End == d && "Wrong data length in HeaderFileInfo deserialization");
1406 (void)End;
1407
1408 // This HeaderFileInfo was externally loaded.
1409 HFI.External = true;
1410 return HFI;
1411}
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001412
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001413void ASTReader::setIdentifierIsMacro(IdentifierInfo *II, ArrayRef<MacroID> IDs){
1414 II->setHadMacroDefinition(true);
1415 assert(NumCurrentElementsDeserializing > 0 &&"Missing deserialization guard");
1416 PendingMacroIDs[II].append(IDs.begin(), IDs.end());
Douglas Gregor295a2a62010-10-30 00:23:06 +00001417}
1418
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001419void ASTReader::ReadDefinedMacros() {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001420 // Note that we are loading defined macros.
1421 Deserializing Macros(this);
1422
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001423 for (ModuleReverseIterator I = ModuleMgr.rbegin(),
1424 E = ModuleMgr.rend(); I != E; ++I) {
1425 llvm::BitstreamCursor &MacroCursor = (*I)->MacroCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00001426
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001427 // If there was no preprocessor block, skip this file.
1428 if (!MacroCursor.getBitStreamReader())
1429 continue;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001430
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001431 llvm::BitstreamCursor Cursor = MacroCursor;
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001432 Cursor.JumpToBit((*I)->MacroStartOffset);
Michael J. Spencer20249a12010-10-21 03:16:25 +00001433
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001434 RecordData Record;
1435 while (true) {
1436 unsigned Code = Cursor.ReadCode();
Douglas Gregorecdcb882010-10-20 22:00:55 +00001437 if (Code == llvm::bitc::END_BLOCK)
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001438 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001439
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001440 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1441 // No known subblocks, always skip them.
1442 Cursor.ReadSubBlockID();
1443 if (Cursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001444 Error("malformed block record in AST file");
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001445 return;
1446 }
1447 continue;
1448 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001449
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001450 if (Code == llvm::bitc::DEFINE_ABBREV) {
1451 Cursor.ReadAbbrevRecord();
1452 continue;
1453 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001454
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001455 // Read a record.
1456 const char *BlobStart;
1457 unsigned BlobLen;
1458 Record.clear();
1459 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1460 default: // Default behavior: ignore.
1461 break;
Douglas Gregor88a35862010-01-04 19:18:44 +00001462
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001463 case PP_MACRO_OBJECT_LIKE:
1464 case PP_MACRO_FUNCTION_LIKE:
Douglas Gregor95eab172011-07-28 20:55:49 +00001465 getLocalIdentifier(**I, Record[0]);
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001466 break;
1467
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001468 case PP_TOKEN:
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001469 // Ignore tokens.
1470 break;
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001471 }
Douglas Gregor88a35862010-01-04 19:18:44 +00001472 }
1473 }
Douglas Gregor295a2a62010-10-30 00:23:06 +00001474}
1475
Douglas Gregoreee242f2011-10-27 09:33:13 +00001476namespace {
1477 /// \brief Visitor class used to look up identifirs in an AST file.
1478 class IdentifierLookupVisitor {
1479 StringRef Name;
Douglas Gregor057df202012-01-18 20:56:22 +00001480 unsigned PriorGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001481 IdentifierInfo *Found;
1482 public:
Douglas Gregor057df202012-01-18 20:56:22 +00001483 IdentifierLookupVisitor(StringRef Name, unsigned PriorGeneration)
1484 : Name(Name), PriorGeneration(PriorGeneration), Found() { }
Douglas Gregoreee242f2011-10-27 09:33:13 +00001485
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001486 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00001487 IdentifierLookupVisitor *This
1488 = static_cast<IdentifierLookupVisitor *>(UserData);
1489
Douglas Gregor057df202012-01-18 20:56:22 +00001490 // If we've already searched this module file, skip it now.
1491 if (M.Generation <= This->PriorGeneration)
1492 return true;
1493
Douglas Gregoreee242f2011-10-27 09:33:13 +00001494 ASTIdentifierLookupTable *IdTable
1495 = (ASTIdentifierLookupTable *)M.IdentifierLookupTable;
1496 if (!IdTable)
1497 return false;
1498
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001499 ASTIdentifierLookupTrait Trait(IdTable->getInfoObj().getReader(),
1500 M, This->Found);
1501
Douglas Gregoreee242f2011-10-27 09:33:13 +00001502 std::pair<const char*, unsigned> Key(This->Name.begin(),
1503 This->Name.size());
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001504 ASTIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Trait);
Douglas Gregoreee242f2011-10-27 09:33:13 +00001505 if (Pos == IdTable->end())
1506 return false;
1507
1508 // Dereferencing the iterator has the effect of building the
1509 // IdentifierInfo node and populating it with the various
1510 // declarations it needs.
1511 This->Found = *Pos;
1512 return true;
1513 }
1514
1515 // \brief Retrieve the identifier info found within the module
1516 // files.
1517 IdentifierInfo *getIdentifierInfo() const { return Found; }
1518 };
1519}
1520
1521void ASTReader::updateOutOfDateIdentifier(IdentifierInfo &II) {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00001522 // Note that we are loading an identifier.
1523 Deserializing AnIdentifier(this);
1524
Douglas Gregor057df202012-01-18 20:56:22 +00001525 unsigned PriorGeneration = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001526 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001527 PriorGeneration = IdentifierGeneration[&II];
1528
1529 IdentifierLookupVisitor Visitor(II.getName(), PriorGeneration);
1530 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
1531 markIdentifierUpToDate(&II);
1532}
1533
1534void ASTReader::markIdentifierUpToDate(IdentifierInfo *II) {
1535 if (!II)
1536 return;
1537
1538 II->setOutOfDate(false);
1539
1540 // Update the generation for this identifier.
David Blaikie4e4d0842012-03-11 07:00:24 +00001541 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001542 IdentifierGeneration[II] = CurrentGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001543}
1544
Douglas Gregora930dc92012-10-22 18:42:04 +00001545llvm::PointerIntPair<const FileEntry *, 1, bool>
Douglas Gregor38295be2012-10-22 23:51:00 +00001546ASTReader::getInputFile(ModuleFile &F, unsigned ID, bool Complain) {
Douglas Gregora930dc92012-10-22 18:42:04 +00001547 // If this ID is bogus, just return an empty input file.
1548 if (ID == 0 || ID > F.InputFilesLoaded.size())
1549 return InputFile();
1550
1551 // If we've already loaded this input file, return it.
1552 if (F.InputFilesLoaded[ID-1].getPointer())
1553 return F.InputFilesLoaded[ID-1];
1554
1555 // Go find this input file.
1556 llvm::BitstreamCursor &Cursor = F.InputFilesCursor;
1557 SavedStreamPosition SavedPosition(Cursor);
1558 Cursor.JumpToBit(F.InputFileOffsets[ID-1]);
1559
1560 unsigned Code = Cursor.ReadCode();
1561 RecordData Record;
1562 const char *BlobStart = 0;
1563 unsigned BlobLen = 0;
1564 switch ((InputFileRecordTypes)Cursor.ReadRecord(Code, Record,
1565 &BlobStart, &BlobLen)) {
1566 case INPUT_FILE: {
1567 unsigned StoredID = Record[0];
1568 assert(ID == StoredID && "Bogus stored ID or offset");
NAKAMURA Takumi6b8194e2012-10-22 21:50:39 +00001569 (void)StoredID;
Douglas Gregora930dc92012-10-22 18:42:04 +00001570 off_t StoredSize = (off_t)Record[1];
1571 time_t StoredTime = (time_t)Record[2];
1572 bool Overridden = (bool)Record[3];
1573
1574 // Get the file entry for this input file.
1575 StringRef OrigFilename(BlobStart, BlobLen);
1576 std::string Filename = OrigFilename;
1577 MaybeAddSystemRootToFilename(F, Filename);
1578 const FileEntry *File
1579 = Overridden? FileMgr.getVirtualFile(Filename, StoredSize, StoredTime)
1580 : FileMgr.getFile(Filename, /*OpenFile=*/false);
1581
1582 // If we didn't find the file, resolve it relative to the
1583 // original directory from which this AST file was created.
1584 if (File == 0 && !F.OriginalDir.empty() && !CurrentDir.empty() &&
1585 F.OriginalDir != CurrentDir) {
1586 std::string Resolved = resolveFileRelativeToOriginalDir(Filename,
1587 F.OriginalDir,
1588 CurrentDir);
1589 if (!Resolved.empty())
1590 File = FileMgr.getFile(Resolved);
1591 }
1592
1593 // For an overridden file, create a virtual file with the stored
1594 // size/timestamp.
1595 if (Overridden && File == 0) {
1596 File = FileMgr.getVirtualFile(Filename, StoredSize, StoredTime);
1597 }
1598
1599 if (File == 0) {
Douglas Gregor38295be2012-10-22 23:51:00 +00001600 if (Complain) {
1601 std::string ErrorStr = "could not find file '";
1602 ErrorStr += Filename;
1603 ErrorStr += "' referenced by AST file";
1604 Error(ErrorStr.c_str());
1605 }
Douglas Gregora930dc92012-10-22 18:42:04 +00001606 return InputFile();
1607 }
1608
1609 // Note that we've loaded this input file.
1610 F.InputFilesLoaded[ID-1] = InputFile(File, Overridden);
1611
1612 // Check if there was a request to override the contents of the file
1613 // that was part of the precompiled header. Overridding such a file
1614 // can lead to problems when lexing using the source locations from the
1615 // PCH.
1616 SourceManager &SM = getSourceManager();
1617 if (!Overridden && SM.isFileOverridden(File)) {
1618 Error(diag::err_fe_pch_file_overridden, Filename);
1619 // After emitting the diagnostic, recover by disabling the override so
1620 // that the original file will be used.
1621 SM.disableFileContentsOverride(File);
1622 // The FileEntry is a virtual file entry with the size of the contents
1623 // that would override the original contents. Set it to the original's
1624 // size/time.
1625 FileMgr.modifyFileEntry(const_cast<FileEntry*>(File),
1626 StoredSize, StoredTime);
1627 }
1628
1629 // For an overridden file, there is nothing to validate.
1630 if (Overridden)
1631 return InputFile(File, Overridden);
1632
1633 // The stat info from the FileEntry came from the cached stat
1634 // info of the PCH, so we cannot trust it.
1635 struct stat StatBuf;
1636 if (::stat(File->getName(), &StatBuf) != 0) {
1637 StatBuf.st_size = File->getSize();
1638 StatBuf.st_mtime = File->getModificationTime();
1639 }
1640
1641 if ((StoredSize != StatBuf.st_size
1642#if !defined(LLVM_ON_WIN32)
1643 // In our regression testing, the Windows file system seems to
1644 // have inconsistent modification times that sometimes
1645 // erroneously trigger this error-handling path.
1646 || StoredTime != StatBuf.st_mtime
1647#endif
1648 )) {
Douglas Gregor38295be2012-10-22 23:51:00 +00001649 if (Complain)
1650 Error(diag::err_fe_pch_file_modified, Filename);
1651
Douglas Gregora930dc92012-10-22 18:42:04 +00001652 return InputFile();
1653 }
1654
1655 return InputFile(File, Overridden);
1656 }
1657 }
1658
1659 return InputFile();
1660}
1661
Chris Lattner5f9e2722011-07-23 10:55:15 +00001662const FileEntry *ASTReader::getFileEntry(StringRef filenameStrRef) {
Douglas Gregor69e16082012-10-18 21:47:16 +00001663 ModuleFile &M = ModuleMgr.getPrimaryModule();
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001664 std::string Filename = filenameStrRef;
Douglas Gregor69e16082012-10-18 21:47:16 +00001665 MaybeAddSystemRootToFilename(M, Filename);
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001666 const FileEntry *File = FileMgr.getFile(Filename);
Douglas Gregor69e16082012-10-18 21:47:16 +00001667 if (File == 0 && !M.OriginalDir.empty() && !CurrentDir.empty() &&
1668 M.OriginalDir != CurrentDir) {
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001669 std::string resolved = resolveFileRelativeToOriginalDir(Filename,
Douglas Gregor69e16082012-10-18 21:47:16 +00001670 M.OriginalDir,
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001671 CurrentDir);
1672 if (!resolved.empty())
1673 File = FileMgr.getFile(resolved);
1674 }
1675
1676 return File;
1677}
1678
Douglas Gregore650c8c2009-07-07 00:12:59 +00001679/// \brief If we are loading a relocatable PCH file, and the filename is
1680/// not an absolute path, add the system root to the beginning of the file
1681/// name.
Douglas Gregora930dc92012-10-22 18:42:04 +00001682StringRef ASTReader::MaybeAddSystemRootToFilename(ModuleFile &M,
1683 std::string &Filename) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001684 // If this is not a relocatable PCH file, there's nothing to do.
Douglas Gregorcaed0602012-10-18 21:31:35 +00001685 if (!M.RelocatablePCH)
Douglas Gregora930dc92012-10-22 18:42:04 +00001686 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +00001687
Michael J. Spencer256053b2010-12-17 21:22:22 +00001688 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
Douglas Gregora930dc92012-10-22 18:42:04 +00001689 return Filename;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001690
Douglas Gregor832d6202011-07-22 16:35:34 +00001691 if (isysroot.empty()) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001692 // If no system root was given, default to '/'
1693 Filename.insert(Filename.begin(), '/');
Douglas Gregora930dc92012-10-22 18:42:04 +00001694 return Filename;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001695 }
Mike Stump1eb44332009-09-09 15:08:12 +00001696
Douglas Gregor832d6202011-07-22 16:35:34 +00001697 unsigned Length = isysroot.size();
Douglas Gregore650c8c2009-07-07 00:12:59 +00001698 if (isysroot[Length - 1] != '/')
1699 Filename.insert(Filename.begin(), '/');
Mike Stump1eb44332009-09-09 15:08:12 +00001700
Douglas Gregor832d6202011-07-22 16:35:34 +00001701 Filename.insert(Filename.begin(), isysroot.begin(), isysroot.end());
Douglas Gregora930dc92012-10-22 18:42:04 +00001702 return Filename;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001703}
1704
Douglas Gregor38295be2012-10-22 23:51:00 +00001705ASTReader::ASTReadResult
1706ASTReader::ReadControlBlock(ModuleFile &F,
1707 llvm::SmallVectorImpl<ModuleFile *> &Loaded,
1708 unsigned ClientLoadCapabilities) {
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001709 llvm::BitstreamCursor &Stream = F.Stream;
1710
1711 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
1712 Error("malformed block record in AST file");
1713 return Failure;
1714 }
1715
1716 // Read all of the records and blocks in the control block.
1717 RecordData Record;
1718 while (!Stream.AtEndOfStream()) {
1719 unsigned Code = Stream.ReadCode();
1720 if (Code == llvm::bitc::END_BLOCK) {
1721 if (Stream.ReadBlockEnd()) {
1722 Error("error at end of control block in AST file");
1723 return Failure;
1724 }
1725
Douglas Gregora930dc92012-10-22 18:42:04 +00001726 // Validate all of the input files.
1727 if (!DisableValidation) {
Douglas Gregor38295be2012-10-22 23:51:00 +00001728 bool Complain = (ClientLoadCapabilities & ARR_OutOfDate) == 0;
Douglas Gregora930dc92012-10-22 18:42:04 +00001729 for (unsigned I = 0, N = Record[0]; I < N; ++I)
Douglas Gregor38295be2012-10-22 23:51:00 +00001730 if (!getInputFile(F, I+1, Complain).getPointer())
Douglas Gregor4825fd72012-10-22 22:50:17 +00001731 return OutOfDate;
Douglas Gregora930dc92012-10-22 18:42:04 +00001732 }
1733
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001734 return Success;
1735 }
1736
1737 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
Douglas Gregor745e6f12012-10-19 00:38:02 +00001738 switch (Stream.ReadSubBlockID()) {
1739 case INPUT_FILES_BLOCK_ID:
Douglas Gregora930dc92012-10-22 18:42:04 +00001740 F.InputFilesCursor = Stream;
1741 if (Stream.SkipBlock() || // Skip with the main cursor
1742 // Read the abbreviations
1743 ReadBlockAbbrevs(F.InputFilesCursor, INPUT_FILES_BLOCK_ID)) {
1744 Error("malformed block record in AST file");
Douglas Gregor745e6f12012-10-19 00:38:02 +00001745 return Failure;
Douglas Gregor745e6f12012-10-19 00:38:02 +00001746 }
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001747 continue;
Douglas Gregor745e6f12012-10-19 00:38:02 +00001748
1749 default:
1750 if (!Stream.SkipBlock())
1751 continue;
1752 break;
1753 }
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001754
1755 Error("malformed block record in AST file");
1756 return Failure;
1757 }
1758
1759 if (Code == llvm::bitc::DEFINE_ABBREV) {
1760 Stream.ReadAbbrevRecord();
1761 continue;
1762 }
1763
1764 // Read and process a record.
1765 Record.clear();
1766 const char *BlobStart = 0;
1767 unsigned BlobLen = 0;
1768 switch ((ControlRecordTypes)Stream.ReadRecord(Code, Record,
1769 &BlobStart, &BlobLen)) {
1770 case METADATA: {
1771 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
Douglas Gregor38295be2012-10-22 23:51:00 +00001772 if ((ClientLoadCapabilities & ARR_VersionMismatch) == 0)
1773 Diag(Record[0] < VERSION_MAJOR? diag::warn_pch_version_too_old
1774 : diag::warn_pch_version_too_new);
Douglas Gregor4825fd72012-10-22 22:50:17 +00001775 return VersionMismatch;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001776 }
1777
1778 bool hasErrors = Record[5];
1779 if (hasErrors && !DisableValidation && !AllowASTWithCompilerErrors) {
1780 Diag(diag::err_pch_with_compiler_errors);
Douglas Gregor4825fd72012-10-22 22:50:17 +00001781 return HadErrors;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001782 }
1783
Douglas Gregorcaed0602012-10-18 21:31:35 +00001784 F.RelocatablePCH = Record[4];
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001785
1786 const std::string &CurBranch = getClangFullRepositoryVersion();
1787 StringRef ASTBranch(BlobStart, BlobLen);
1788 if (StringRef(CurBranch) != ASTBranch && !DisableValidation) {
Douglas Gregor38295be2012-10-22 23:51:00 +00001789 if ((ClientLoadCapabilities & ARR_VersionMismatch) == 0)
1790 Diag(diag::warn_pch_different_branch) << ASTBranch << CurBranch;
Douglas Gregor4825fd72012-10-22 22:50:17 +00001791 return VersionMismatch;
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001792 }
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001793 break;
1794 }
1795
1796 case IMPORTS: {
1797 // Load each of the imported PCH files.
1798 unsigned Idx = 0, N = Record.size();
1799 while (Idx < N) {
1800 // Read information about the AST file.
1801 ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
1802 unsigned Length = Record[Idx++];
1803 SmallString<128> ImportedFile(Record.begin() + Idx,
1804 Record.begin() + Idx + Length);
1805 Idx += Length;
1806
1807 // Load the AST file.
Douglas Gregor38295be2012-10-22 23:51:00 +00001808 switch(ReadASTCore(ImportedFile, ImportedKind, &F, Loaded,
1809 ClientLoadCapabilities)) {
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001810 case Failure: return Failure;
1811 // If we have to ignore the dependency, we'll have to ignore this too.
Douglas Gregor4825fd72012-10-22 22:50:17 +00001812 case OutOfDate: return OutOfDate;
1813 case VersionMismatch: return VersionMismatch;
1814 case ConfigurationMismatch: return ConfigurationMismatch;
1815 case HadErrors: return HadErrors;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001816 case Success: break;
1817 }
1818 }
1819 break;
1820 }
1821
Douglas Gregor38295be2012-10-22 23:51:00 +00001822 case LANGUAGE_OPTIONS: {
1823 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
1824 if (Listener && &F == *ModuleMgr.begin() &&
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00001825 ParseLanguageOptions(Record, Complain, *Listener) &&
1826 !DisableValidation)
Douglas Gregor4825fd72012-10-22 22:50:17 +00001827 return ConfigurationMismatch;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001828 break;
Douglas Gregor38295be2012-10-22 23:51:00 +00001829 }
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001830
Douglas Gregoree097c12012-10-18 17:58:09 +00001831 case TARGET_OPTIONS: {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00001832 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch)==0;
1833 if (Listener && &F == *ModuleMgr.begin() &&
1834 ParseTargetOptions(Record, Complain, *Listener) &&
1835 !DisableValidation)
1836 return ConfigurationMismatch;
Douglas Gregoree097c12012-10-18 17:58:09 +00001837 break;
1838 }
1839
Douglas Gregor5f3d8222012-10-24 15:17:15 +00001840 case DIAGNOSTIC_OPTIONS: {
1841 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch)==0;
1842 if (Listener && &F == *ModuleMgr.begin() &&
1843 ParseDiagnosticOptions(Record, Complain, *Listener) &&
1844 !DisableValidation)
1845 return ConfigurationMismatch;
1846 break;
1847 }
Douglas Gregor1b2c3c02012-10-24 15:49:58 +00001848
1849 case FILE_SYSTEM_OPTIONS: {
1850 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch)==0;
1851 if (Listener && &F == *ModuleMgr.begin() &&
1852 ParseFileSystemOptions(Record, Complain, *Listener) &&
1853 !DisableValidation)
1854 return ConfigurationMismatch;
1855 break;
1856 }
1857
Douglas Gregorbbf38312012-10-24 16:50:34 +00001858 case HEADER_SEARCH_OPTIONS: {
1859 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch)==0;
1860 if (Listener && &F == *ModuleMgr.begin() &&
1861 ParseHeaderSearchOptions(Record, Complain, *Listener) &&
1862 !DisableValidation)
1863 return ConfigurationMismatch;
1864 break;
1865 }
1866
Douglas Gregora71a7d82012-10-24 20:05:57 +00001867 case PREPROCESSOR_OPTIONS: {
1868 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch)==0;
1869 if (Listener && &F == *ModuleMgr.begin() &&
Douglas Gregor87699242012-10-25 00:07:54 +00001870 ParsePreprocessorOptions(Record, Complain, *Listener,
1871 SuggestedPredefines) &&
Douglas Gregora71a7d82012-10-24 20:05:57 +00001872 !DisableValidation)
1873 return ConfigurationMismatch;
1874 break;
1875 }
1876
Douglas Gregor39c497b2012-10-18 18:36:53 +00001877 case ORIGINAL_FILE:
Douglas Gregor69e16082012-10-18 21:47:16 +00001878 F.OriginalSourceFileID = FileID::get(Record[0]);
1879 F.ActualOriginalSourceFileName.assign(BlobStart, BlobLen);
1880 F.OriginalSourceFileName = F.ActualOriginalSourceFileName;
1881 MaybeAddSystemRootToFilename(F, F.OriginalSourceFileName);
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001882 break;
1883
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001884 case ORIGINAL_PCH_DIR:
Douglas Gregor69e16082012-10-18 21:47:16 +00001885 F.OriginalDir.assign(BlobStart, BlobLen);
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001886 break;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001887
Douglas Gregora930dc92012-10-22 18:42:04 +00001888 case INPUT_FILE_OFFSETS:
1889 F.InputFileOffsets = (const uint32_t *)BlobStart;
1890 F.InputFilesLoaded.resize(Record[0]);
Douglas Gregor745e6f12012-10-19 00:38:02 +00001891 break;
1892 }
Douglas Gregor745e6f12012-10-19 00:38:02 +00001893 }
1894
1895 Error("premature end of bitstream in AST file");
1896 return Failure;
1897}
1898
Douglas Gregor4825fd72012-10-22 22:50:17 +00001899bool ASTReader::ReadASTBlock(ModuleFile &F) {
Sebastian Redl9137a522010-07-16 17:50:48 +00001900 llvm::BitstreamCursor &Stream = F.Stream;
1901
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001902 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001903 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001904 return true;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001905 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001906
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001907 // Read all of the records and blocks for the AST file.
Douglas Gregor8038d512009-04-10 17:25:41 +00001908 RecordData Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001909 while (!Stream.AtEndOfStream()) {
1910 unsigned Code = Stream.ReadCode();
1911 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001912 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001913 Error("error at end of module block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001914 return true;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001915 }
Chris Lattner7356a312009-04-11 21:15:38 +00001916
Argyrios Kyrtzidis1f941242012-09-21 01:30:00 +00001917 DeclContext *DC = Context.getTranslationUnitDecl();
1918 if (!DC->hasExternalVisibleStorage() && DC->hasExternalLexicalStorage())
1919 DC->setMustBuildLookupTable();
1920
Douglas Gregor4825fd72012-10-22 22:50:17 +00001921 return false;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001922 }
1923
1924 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1925 switch (Stream.ReadSubBlockID()) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001926 case DECLTYPES_BLOCK_ID:
Chris Lattner6367f6d2009-04-27 01:05:14 +00001927 // We lazily load the decls block, but we want to set up the
1928 // DeclsCursor cursor to point into it. Clone our current bitcode
1929 // cursor to it, enter the block and read the abbrevs in that block.
1930 // With the main cursor, we just skip over it.
Sebastian Redl9137a522010-07-16 17:50:48 +00001931 F.DeclsCursor = Stream;
Chris Lattner6367f6d2009-04-27 01:05:14 +00001932 if (Stream.SkipBlock() || // Skip with the main cursor.
1933 // Read the abbrevs.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001934 ReadBlockAbbrevs(F.DeclsCursor, DECLTYPES_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001935 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001936 return true;
Chris Lattner6367f6d2009-04-27 01:05:14 +00001937 }
1938 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001939
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00001940 case DECL_UPDATES_BLOCK_ID:
1941 if (Stream.SkipBlock()) {
1942 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001943 return true;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00001944 }
1945 break;
1946
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001947 case PREPROCESSOR_BLOCK_ID:
Sebastian Redl9137a522010-07-16 17:50:48 +00001948 F.MacroCursor = Stream;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001949 if (!PP.getExternalSource())
1950 PP.setExternalSource(this);
Douglas Gregor88a35862010-01-04 19:18:44 +00001951
Douglas Gregorecdcb882010-10-20 22:00:55 +00001952 if (Stream.SkipBlock() ||
1953 ReadBlockAbbrevs(F.MacroCursor, PREPROCESSOR_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001954 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001955 return true;
Chris Lattner7356a312009-04-11 21:15:38 +00001956 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00001957 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo();
Chris Lattner7356a312009-04-11 21:15:38 +00001958 break;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001959
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001960 case PREPROCESSOR_DETAIL_BLOCK_ID:
1961 F.PreprocessorDetailCursor = Stream;
1962 if (Stream.SkipBlock() ||
1963 ReadBlockAbbrevs(F.PreprocessorDetailCursor,
1964 PREPROCESSOR_DETAIL_BLOCK_ID)) {
1965 Error("malformed preprocessor detail record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001966 return true;
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001967 }
1968 F.PreprocessorDetailStartOffset
1969 = F.PreprocessorDetailCursor.GetCurrentBitNo();
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001970
1971 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00001972 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001973 if (!PP.getPreprocessingRecord()->getExternalSource())
1974 PP.getPreprocessingRecord()->SetExternalSource(*this);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001975 break;
1976
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001977 case SOURCE_MANAGER_BLOCK_ID:
Douglas Gregor4825fd72012-10-22 22:50:17 +00001978 if (ReadSourceManagerBlock(F))
1979 return true;
Douglas Gregor14f79002009-04-10 03:52:48 +00001980 break;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001981
1982 case SUBMODULE_BLOCK_ID:
Douglas Gregor4825fd72012-10-22 22:50:17 +00001983 if (ReadSubmoduleBlock(F))
1984 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001985 break;
1986
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00001987 case COMMENTS_BLOCK_ID: {
1988 llvm::BitstreamCursor C = Stream;
1989 if (Stream.SkipBlock() ||
1990 ReadBlockAbbrevs(C, COMMENTS_BLOCK_ID)) {
1991 Error("malformed comments block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00001992 return true;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00001993 }
1994 CommentsCursors.push_back(std::make_pair(C, &F));
1995 break;
1996 }
1997
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001998 default:
1999 if (!Stream.SkipBlock())
2000 break;
2001 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002002 return true;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002003 }
Douglas Gregor8038d512009-04-10 17:25:41 +00002004 continue;
2005 }
2006
2007 if (Code == llvm::bitc::DEFINE_ABBREV) {
2008 Stream.ReadAbbrevRecord();
2009 continue;
2010 }
2011
2012 // Read and process a record.
2013 Record.clear();
Douglas Gregor2bec0412009-04-10 21:16:55 +00002014 const char *BlobStart = 0;
2015 unsigned BlobLen = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002016 switch ((ASTRecordTypes)Stream.ReadRecord(Code, Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00002017 &BlobStart, &BlobLen)) {
Douglas Gregor8038d512009-04-10 17:25:41 +00002018 default: // Default behavior: ignore.
2019 break;
2020
Douglas Gregora119da02011-08-02 16:26:37 +00002021 case TYPE_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00002022 if (F.LocalNumTypes != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002023 Error("duplicate TYPE_OFFSET record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002024 return true;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002025 }
Sebastian Redl12d6da02010-07-19 22:06:55 +00002026 F.TypeOffsets = (const uint32_t *)BlobStart;
2027 F.LocalNumTypes = Record[0];
Douglas Gregore3605012011-08-02 18:32:54 +00002028 unsigned LocalBaseTypeIndex = Record[1];
2029 F.BaseTypeIndex = getTotalNumTypes();
Douglas Gregor1e849b62011-07-29 00:21:44 +00002030
Douglas Gregora119da02011-08-02 16:26:37 +00002031 if (F.LocalNumTypes > 0) {
2032 // Introduce the global -> local mapping for types within this module.
2033 GlobalTypeMap.insert(std::make_pair(getTotalNumTypes(), &F));
2034
2035 // Introduce the local -> global mapping for types within this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002036 F.TypeRemap.insertOrReplace(
2037 std::make_pair(LocalBaseTypeIndex,
2038 F.BaseTypeIndex - LocalBaseTypeIndex));
Douglas Gregora119da02011-08-02 16:26:37 +00002039
2040 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes);
2041 }
Douglas Gregor8038d512009-04-10 17:25:41 +00002042 break;
Douglas Gregora119da02011-08-02 16:26:37 +00002043 }
2044
Douglas Gregor496c7092011-08-03 15:48:04 +00002045 case DECL_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00002046 if (F.LocalNumDecls != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002047 Error("duplicate DECL_OFFSET record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002048 return true;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002049 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00002050 F.DeclOffsets = (const DeclOffset *)BlobStart;
Sebastian Redl12d6da02010-07-19 22:06:55 +00002051 F.LocalNumDecls = Record[0];
Douglas Gregor496c7092011-08-03 15:48:04 +00002052 unsigned LocalBaseDeclID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00002053 F.BaseDeclID = getTotalNumDecls();
Douglas Gregor96e973f2011-07-20 00:27:43 +00002054
Douglas Gregor496c7092011-08-03 15:48:04 +00002055 if (F.LocalNumDecls > 0) {
2056 // Introduce the global -> local mapping for declarations within this
2057 // module.
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002058 GlobalDeclMap.insert(
2059 std::make_pair(getTotalNumDecls() + NUM_PREDEF_DECL_IDS, &F));
Douglas Gregor496c7092011-08-03 15:48:04 +00002060
2061 // Introduce the local -> global mapping for declarations within this
2062 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002063 F.DeclRemap.insertOrReplace(
2064 std::make_pair(LocalBaseDeclID, F.BaseDeclID - LocalBaseDeclID));
Douglas Gregor496c7092011-08-03 15:48:04 +00002065
Douglas Gregora1be2782011-12-17 23:38:30 +00002066 // Introduce the global -> local mapping for declarations within this
2067 // module.
2068 F.GlobalToLocalDeclIDs[&F] = LocalBaseDeclID;
2069
Douglas Gregor496c7092011-08-03 15:48:04 +00002070 DeclsLoaded.resize(DeclsLoaded.size() + F.LocalNumDecls);
2071 }
Douglas Gregor8038d512009-04-10 17:25:41 +00002072 break;
Douglas Gregor496c7092011-08-03 15:48:04 +00002073 }
2074
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002075 case TU_UPDATE_LEXICAL: {
Douglas Gregor35942772011-09-09 21:34:22 +00002076 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00002077 DeclContextInfo &Info = F.DeclContextInfos[TU];
2078 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair *>(BlobStart);
2079 Info.NumLexicalDecls
2080 = static_cast<unsigned int>(BlobLen / sizeof(KindDeclIDPair));
Douglas Gregor35942772011-09-09 21:34:22 +00002081 TU->setHasExternalLexicalStorage(true);
Sebastian Redld692af72010-07-27 18:24:41 +00002082 break;
2083 }
2084
Sebastian Redle1dde812010-08-24 00:50:04 +00002085 case UPDATE_VISIBLE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00002086 unsigned Idx = 0;
2087 serialization::DeclID ID = ReadDeclID(F, Record, Idx);
Benjamin Kramerb1758c62012-04-15 12:36:49 +00002088 ASTDeclContextNameLookupTable *Table =
2089 ASTDeclContextNameLookupTable::Create(
Douglas Gregor496c7092011-08-03 15:48:04 +00002090 (const unsigned char *)BlobStart + Record[Idx++],
Sebastian Redle1dde812010-08-24 00:50:04 +00002091 (const unsigned char *)BlobStart,
Douglas Gregor393f2492011-07-22 00:38:23 +00002092 ASTDeclContextNameLookupTrait(*this, F));
Douglas Gregor35942772011-09-09 21:34:22 +00002093 if (ID == PREDEF_DECL_TRANSLATION_UNIT_ID) { // Is it the TU?
2094 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00002095 F.DeclContextInfos[TU].NameLookupTableData = Table;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002096 TU->setHasExternalVisibleStorage(true);
Sebastian Redle1dde812010-08-24 00:50:04 +00002097 } else
Douglas Gregor496c7092011-08-03 15:48:04 +00002098 PendingVisibleUpdates[ID].push_back(std::make_pair(Table, &F));
Sebastian Redle1dde812010-08-24 00:50:04 +00002099 break;
2100 }
2101
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002102 case IDENTIFIER_TABLE:
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00002103 F.IdentifierTableData = BlobStart;
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002104 if (Record[0]) {
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00002105 F.IdentifierLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002106 = ASTIdentifierLookupTable::Create(
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00002107 (const unsigned char *)F.IdentifierTableData + Record[0],
2108 (const unsigned char *)F.IdentifierTableData,
Sebastian Redlc3632732010-10-05 15:59:54 +00002109 ASTIdentifierLookupTrait(*this, F));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002110
2111 PP.getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002112 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002113 break;
2114
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002115 case IDENTIFIER_OFFSET: {
Sebastian Redl2da08f92010-07-19 22:28:42 +00002116 if (F.LocalNumIdentifiers != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002117 Error("duplicate IDENTIFIER_OFFSET record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002118 return true;
Douglas Gregorafaf3082009-04-11 00:14:32 +00002119 }
Sebastian Redl2da08f92010-07-19 22:28:42 +00002120 F.IdentifierOffsets = (const uint32_t *)BlobStart;
2121 F.LocalNumIdentifiers = Record[0];
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002122 unsigned LocalBaseIdentifierID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00002123 F.BaseIdentifierID = getTotalNumIdentifiers();
Douglas Gregor67268d02011-07-20 00:59:32 +00002124
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002125 if (F.LocalNumIdentifiers > 0) {
2126 // Introduce the global -> local mapping for identifiers within this
2127 // module.
2128 GlobalIdentifierMap.insert(std::make_pair(getTotalNumIdentifiers() + 1,
2129 &F));
2130
2131 // Introduce the local -> global mapping for identifiers within this
2132 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002133 F.IdentifierRemap.insertOrReplace(
2134 std::make_pair(LocalBaseIdentifierID,
2135 F.BaseIdentifierID - LocalBaseIdentifierID));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002136
2137 IdentifiersLoaded.resize(IdentifiersLoaded.size()
2138 + F.LocalNumIdentifiers);
2139 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002140 break;
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002141 }
Douglas Gregora8235d62012-10-09 23:05:51 +00002142
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002143 case EXTERNAL_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002144 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2145 ExternalDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorfdd01722009-04-14 00:24:19 +00002146 break;
Douglas Gregor3e1af842009-04-17 22:13:46 +00002147
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002148 case SPECIAL_TYPES:
Douglas Gregor393f2492011-07-22 00:38:23 +00002149 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2150 SpecialTypes.push_back(getGlobalTypeID(F, Record[I]));
Douglas Gregorad1de002009-04-18 05:55:16 +00002151 break;
2152
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002153 case STATISTICS:
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002154 TotalNumStatements += Record[0];
2155 TotalNumMacros += Record[1];
2156 TotalLexicalDeclContexts += Record[2];
2157 TotalVisibleDeclContexts += Record[3];
Douglas Gregor3e1af842009-04-17 22:13:46 +00002158 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002159
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002160 case UNUSED_FILESCOPED_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002161 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2162 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
Tanya Lattnere6bbc012010-02-12 00:07:30 +00002163 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002164
Sean Huntebcbe1d2011-05-04 23:29:54 +00002165 case DELEGATING_CTORS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002166 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2167 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00002168 break;
2169
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002170 case WEAK_UNDECLARED_IDENTIFIERS:
Douglas Gregor31e37b22011-07-28 18:09:57 +00002171 if (Record.size() % 4 != 0) {
2172 Error("invalid weak identifiers record");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002173 return true;
Douglas Gregor31e37b22011-07-28 18:09:57 +00002174 }
2175
2176 // FIXME: Ignore weak undeclared identifiers from non-original PCH
2177 // files. This isn't the way to do it :)
2178 WeakUndeclaredIdentifiers.clear();
2179
2180 // Translate the weak, undeclared identifiers into global IDs.
2181 for (unsigned I = 0, N = Record.size(); I < N; /* in loop */) {
2182 WeakUndeclaredIdentifiers.push_back(
2183 getGlobalIdentifierID(F, Record[I++]));
2184 WeakUndeclaredIdentifiers.push_back(
2185 getGlobalIdentifierID(F, Record[I++]));
2186 WeakUndeclaredIdentifiers.push_back(
2187 ReadSourceLocation(F, Record, I).getRawEncoding());
2188 WeakUndeclaredIdentifiers.push_back(Record[I++]);
2189 }
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002190 break;
2191
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002192 case LOCALLY_SCOPED_EXTERNAL_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002193 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2194 LocallyScopedExternalDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregor14c22f22009-04-22 22:18:58 +00002195 break;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002196
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002197 case SELECTOR_OFFSETS: {
Sebastian Redl059612d2010-08-03 21:58:15 +00002198 F.SelectorOffsets = (const uint32_t *)BlobStart;
Sebastian Redl725cd962010-08-04 20:40:17 +00002199 F.LocalNumSelectors = Record[0];
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002200 unsigned LocalBaseSelectorID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00002201 F.BaseSelectorID = getTotalNumSelectors();
Douglas Gregor96958cb2011-07-20 01:10:58 +00002202
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002203 if (F.LocalNumSelectors > 0) {
2204 // Introduce the global -> local mapping for selectors within this
2205 // module.
2206 GlobalSelectorMap.insert(std::make_pair(getTotalNumSelectors()+1, &F));
2207
2208 // Introduce the local -> global mapping for selectors within this
2209 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002210 F.SelectorRemap.insertOrReplace(
2211 std::make_pair(LocalBaseSelectorID,
2212 F.BaseSelectorID - LocalBaseSelectorID));
Douglas Gregor83941df2009-04-25 17:48:32 +00002213
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002214 SelectorsLoaded.resize(SelectorsLoaded.size() + F.LocalNumSelectors);
2215 }
2216 break;
2217 }
2218
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002219 case METHOD_POOL:
Sebastian Redl725cd962010-08-04 20:40:17 +00002220 F.SelectorLookupTableData = (const unsigned char *)BlobStart;
Douglas Gregor83941df2009-04-25 17:48:32 +00002221 if (Record[0])
Sebastian Redl725cd962010-08-04 20:40:17 +00002222 F.SelectorLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002223 = ASTSelectorLookupTable::Create(
Sebastian Redl725cd962010-08-04 20:40:17 +00002224 F.SelectorLookupTableData + Record[0],
2225 F.SelectorLookupTableData,
Douglas Gregor409448c2011-07-21 22:35:25 +00002226 ASTSelectorLookupTrait(*this, F));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00002227 TotalNumMethodPoolEntries += Record[1];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002228 break;
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002229
Sebastian Redl4ee5a6f2010-09-22 00:42:30 +00002230 case REFERENCED_SELECTOR_POOL:
Douglas Gregor8451ec72011-07-28 14:41:43 +00002231 if (!Record.empty()) {
2232 for (unsigned Idx = 0, N = Record.size() - 1; Idx < N; /* in loop */) {
2233 ReferencedSelectorsData.push_back(getGlobalSelectorID(F,
2234 Record[Idx++]));
2235 ReferencedSelectorsData.push_back(ReadSourceLocation(F, Record, Idx).
2236 getRawEncoding());
2237 }
2238 }
Fariborz Jahanian32019832010-07-23 19:11:11 +00002239 break;
2240
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002241 case PP_COUNTER_VALUE:
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002242 if (!Record.empty() && Listener)
Argyrios Kyrtzidis62288ed2012-10-10 02:12:47 +00002243 Listener->ReadCounter(F, Record[0]);
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002244 break;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002245
2246 case FILE_SORTED_DECLS:
2247 F.FileSortedDecls = (const DeclID *)BlobStart;
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00002248 F.NumFileSortedDecls = Record[0];
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002249 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002250
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002251 case SOURCE_LOCATION_OFFSETS: {
2252 F.SLocEntryOffsets = (const uint32_t *)BlobStart;
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002253 F.LocalNumSLocEntries = Record[0];
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002254 unsigned SLocSpaceSize = Record[1];
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002255 llvm::tie(F.SLocEntryBaseID, F.SLocEntryBaseOffset) =
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002256 SourceMgr.AllocateLoadedSLocEntries(F.LocalNumSLocEntries,
2257 SLocSpaceSize);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002258 // Make our entry in the range map. BaseID is negative and growing, so
2259 // we invert it. Because we invert it, though, we need the other end of
2260 // the range.
2261 unsigned RangeStart =
2262 unsigned(-F.SLocEntryBaseID) - F.LocalNumSLocEntries + 1;
2263 GlobalSLocEntryMap.insert(std::make_pair(RangeStart, &F));
2264 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset);
2265
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002266 // SLocEntryBaseOffset is lower than MaxLoadedOffset and decreasing.
2267 assert((F.SLocEntryBaseOffset & (1U << 31U)) == 0);
2268 GlobalSLocOffsetMap.insert(
2269 std::make_pair(SourceManager::MaxLoadedOffset - F.SLocEntryBaseOffset
2270 - SLocSpaceSize,&F));
2271
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002272 // Initialize the remapping table.
2273 // Invalid stays invalid.
2274 F.SLocRemap.insert(std::make_pair(0U, 0));
2275 // This module. Base was 2 when being compiled.
2276 F.SLocRemap.insert(std::make_pair(2U,
2277 static_cast<int>(F.SLocEntryBaseOffset - 2)));
Douglas Gregor0cdd7982011-07-21 18:46:38 +00002278
2279 TotalNumSLocEntries += F.LocalNumSLocEntries;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002280 break;
2281 }
2282
Douglas Gregor5d51a1d2011-08-01 16:01:55 +00002283 case MODULE_OFFSET_MAP: {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002284 // Additional remapping information.
2285 const unsigned char *Data = (const unsigned char*)BlobStart;
2286 const unsigned char *DataEnd = Data + BlobLen;
Douglas Gregorf33740e2011-08-02 10:56:51 +00002287
2288 // Continuous range maps we may be updating in our module.
2289 ContinuousRangeMap<uint32_t, int, 2>::Builder SLocRemap(F.SLocRemap);
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002290 ContinuousRangeMap<uint32_t, int, 2>::Builder
2291 IdentifierRemap(F.IdentifierRemap);
Douglas Gregora8235d62012-10-09 23:05:51 +00002292 ContinuousRangeMap<uint32_t, int, 2>::Builder
2293 MacroRemap(F.MacroRemap);
2294 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002295 PreprocessedEntityRemap(F.PreprocessedEntityRemap);
2296 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor26ced122011-12-01 00:59:36 +00002297 SubmoduleRemap(F.SubmoduleRemap);
2298 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002299 SelectorRemap(F.SelectorRemap);
Douglas Gregor496c7092011-08-03 15:48:04 +00002300 ContinuousRangeMap<uint32_t, int, 2>::Builder DeclRemap(F.DeclRemap);
Douglas Gregora119da02011-08-02 16:26:37 +00002301 ContinuousRangeMap<uint32_t, int, 2>::Builder TypeRemap(F.TypeRemap);
2302
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002303 while(Data < DataEnd) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002304 uint16_t Len = io::ReadUnalignedLE16(Data);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002305 StringRef Name = StringRef((const char*)Data, Len);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002306 Data += Len;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002307 ModuleFile *OM = ModuleMgr.lookup(Name);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002308 if (!OM) {
2309 Error("SourceLocation remap refers to unknown module");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002310 return true;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002311 }
Douglas Gregorf33740e2011-08-02 10:56:51 +00002312
2313 uint32_t SLocOffset = io::ReadUnalignedLE32(Data);
2314 uint32_t IdentifierIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregora8235d62012-10-09 23:05:51 +00002315 uint32_t MacroIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002316 uint32_t PreprocessedEntityIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregor26ced122011-12-01 00:59:36 +00002317 uint32_t SubmoduleIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002318 uint32_t SelectorIDOffset = io::ReadUnalignedLE32(Data);
2319 uint32_t DeclIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregora119da02011-08-02 16:26:37 +00002320 uint32_t TypeIndexOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002321
2322 // Source location offset is mapped to OM->SLocEntryBaseOffset.
2323 SLocRemap.insert(std::make_pair(SLocOffset,
2324 static_cast<int>(OM->SLocEntryBaseOffset - SLocOffset)));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002325 IdentifierRemap.insert(
2326 std::make_pair(IdentifierIDOffset,
2327 OM->BaseIdentifierID - IdentifierIDOffset));
Douglas Gregora8235d62012-10-09 23:05:51 +00002328 MacroRemap.insert(std::make_pair(MacroIDOffset,
2329 OM->BaseMacroID - MacroIDOffset));
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002330 PreprocessedEntityRemap.insert(
2331 std::make_pair(PreprocessedEntityIDOffset,
2332 OM->BasePreprocessedEntityID - PreprocessedEntityIDOffset));
Douglas Gregor26ced122011-12-01 00:59:36 +00002333 SubmoduleRemap.insert(std::make_pair(SubmoduleIDOffset,
2334 OM->BaseSubmoduleID - SubmoduleIDOffset));
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002335 SelectorRemap.insert(std::make_pair(SelectorIDOffset,
2336 OM->BaseSelectorID - SelectorIDOffset));
Douglas Gregor496c7092011-08-03 15:48:04 +00002337 DeclRemap.insert(std::make_pair(DeclIDOffset,
2338 OM->BaseDeclID - DeclIDOffset));
2339
Douglas Gregora119da02011-08-02 16:26:37 +00002340 TypeRemap.insert(std::make_pair(TypeIndexOffset,
Douglas Gregore3605012011-08-02 18:32:54 +00002341 OM->BaseTypeIndex - TypeIndexOffset));
Douglas Gregora1be2782011-12-17 23:38:30 +00002342
2343 // Global -> local mappings.
2344 F.GlobalToLocalDeclIDs[OM] = DeclIDOffset;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002345 }
2346 break;
2347 }
2348
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002349 case SOURCE_MANAGER_LINE_TABLE:
2350 if (ParseLineTable(F, Record))
Douglas Gregor4825fd72012-10-22 22:50:17 +00002351 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002352 break;
2353
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002354 case SOURCE_LOCATION_PRELOADS: {
2355 // Need to transform from the local view (1-based IDs) to the global view,
2356 // which is based off F.SLocEntryBaseID.
Douglas Gregorf249bf32011-08-25 21:09:44 +00002357 if (!F.PreloadSLocEntries.empty()) {
2358 Error("Multiple SOURCE_LOCATION_PRELOADS records in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002359 return true;
Douglas Gregorf249bf32011-08-25 21:09:44 +00002360 }
2361
2362 F.PreloadSLocEntries.swap(Record);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002363 break;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002364 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002365
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002366 case STAT_CACHE: {
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00002367 if (!DisableStatCache) {
2368 ASTStatCache *MyStatCache =
2369 new ASTStatCache((const unsigned char *)BlobStart + Record[0],
2370 (const unsigned char *)BlobStart,
2371 NumStatHits, NumStatMisses);
2372 FileMgr.addStatCache(MyStatCache);
2373 F.StatCache = MyStatCache;
2374 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002375 break;
Douglas Gregor52e71082009-10-16 18:18:30 +00002376 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002377
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002378 case EXT_VECTOR_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002379 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2380 ExtVectorDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorb81c1702009-04-27 20:06:05 +00002381 break;
2382
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002383 case VTABLE_USES:
Douglas Gregordfe65432011-07-28 19:11:31 +00002384 if (Record.size() % 3 != 0) {
2385 Error("Invalid VTABLE_USES record");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002386 return true;
Douglas Gregordfe65432011-07-28 19:11:31 +00002387 }
2388
Sebastian Redl40566802010-08-05 18:21:25 +00002389 // Later tables overwrite earlier ones.
Douglas Gregordfe65432011-07-28 19:11:31 +00002390 // FIXME: Modules will have some trouble with this. This is clearly not
2391 // the right way to do this.
Douglas Gregor409448c2011-07-21 22:35:25 +00002392 VTableUses.clear();
Douglas Gregordfe65432011-07-28 19:11:31 +00002393
2394 for (unsigned Idx = 0, N = Record.size(); Idx != N; /* In loop */) {
2395 VTableUses.push_back(getGlobalDeclID(F, Record[Idx++]));
2396 VTableUses.push_back(
2397 ReadSourceLocation(F, Record, Idx).getRawEncoding());
2398 VTableUses.push_back(Record[Idx++]);
2399 }
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002400 break;
2401
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002402 case DYNAMIC_CLASSES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002403 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2404 DynamicClasses.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002405 break;
2406
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002407 case PENDING_IMPLICIT_INSTANTIATIONS:
Douglas Gregorf2abb522011-07-28 19:26:52 +00002408 if (PendingInstantiations.size() % 2 != 0) {
Axel Naumann39d26c32012-10-02 09:09:43 +00002409 Error("Invalid existing PendingInstantiations");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002410 return true;
Axel Naumann39d26c32012-10-02 09:09:43 +00002411 }
2412
2413 if (Record.size() % 2 != 0) {
Douglas Gregorf2abb522011-07-28 19:26:52 +00002414 Error("Invalid PENDING_IMPLICIT_INSTANTIATIONS block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002415 return true;
Douglas Gregorf2abb522011-07-28 19:26:52 +00002416 }
Axel Naumann39d26c32012-10-02 09:09:43 +00002417
Douglas Gregorf2abb522011-07-28 19:26:52 +00002418 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
2419 PendingInstantiations.push_back(getGlobalDeclID(F, Record[I++]));
2420 PendingInstantiations.push_back(
2421 ReadSourceLocation(F, Record, I).getRawEncoding());
2422 }
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002423 break;
2424
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002425 case SEMA_DECL_REFS:
Sebastian Redl40566802010-08-05 18:21:25 +00002426 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002427 // FIXME: Modules will have some trouble with this.
2428 SemaDeclRefs.clear();
2429 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2430 SemaDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002431 break;
2432
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002433 case PPD_ENTITIES_OFFSETS: {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002434 F.PreprocessedEntityOffsets = (const PPEntityOffset *)BlobStart;
2435 assert(BlobLen % sizeof(PPEntityOffset) == 0);
2436 F.NumPreprocessedEntities = BlobLen / sizeof(PPEntityOffset);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002437
2438 unsigned LocalBasePreprocessedEntityID = Record[0];
Douglas Gregorfb2d9e02011-08-04 16:36:56 +00002439
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002440 unsigned StartingID;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002441 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00002442 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002443 if (!PP.getPreprocessingRecord()->getExternalSource())
2444 PP.getPreprocessingRecord()->SetExternalSource(*this);
2445 StartingID
2446 = PP.getPreprocessingRecord()
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002447 ->allocateLoadedEntities(F.NumPreprocessedEntities);
Douglas Gregor9827a802011-07-29 00:56:45 +00002448 F.BasePreprocessedEntityID = StartingID;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002449
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002450 if (F.NumPreprocessedEntities > 0) {
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002451 // Introduce the global -> local mapping for preprocessed entities in
2452 // this module.
2453 GlobalPreprocessedEntityMap.insert(std::make_pair(StartingID, &F));
2454
2455 // Introduce the local -> global mapping for preprocessed entities in
2456 // this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002457 F.PreprocessedEntityRemap.insertOrReplace(
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002458 std::make_pair(LocalBasePreprocessedEntityID,
2459 F.BasePreprocessedEntityID - LocalBasePreprocessedEntityID));
2460 }
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002461
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002462 break;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002463 }
2464
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002465 case DECL_UPDATE_OFFSETS: {
2466 if (Record.size() % 2 != 0) {
2467 Error("invalid DECL_UPDATE_OFFSETS block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002468 return true;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002469 }
2470 for (unsigned I = 0, N = Record.size(); I != N; I += 2)
Douglas Gregor496c7092011-08-03 15:48:04 +00002471 DeclUpdateOffsets[getGlobalDeclID(F, Record[I])]
2472 .push_back(std::make_pair(&F, Record[I+1]));
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002473 break;
2474 }
2475
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002476 case DECL_REPLACEMENTS: {
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002477 if (Record.size() % 3 != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002478 Error("invalid DECL_REPLACEMENTS block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002479 return true;
Sebastian Redl0b17c612010-08-13 00:28:03 +00002480 }
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002481 for (unsigned I = 0, N = Record.size(); I != N; I += 3)
Douglas Gregor496c7092011-08-03 15:48:04 +00002482 ReplacedDecls[getGlobalDeclID(F, Record[I])]
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002483 = ReplacedDeclInfo(&F, Record[I+1], Record[I+2]);
Sebastian Redl0b17c612010-08-13 00:28:03 +00002484 break;
2485 }
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002486
Douglas Gregorcff9f262012-01-27 01:47:08 +00002487 case OBJC_CATEGORIES_MAP: {
2488 if (F.LocalNumObjCCategoriesInMap != 0) {
2489 Error("duplicate OBJC_CATEGORIES_MAP record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002490 return true;
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002491 }
Douglas Gregorcff9f262012-01-27 01:47:08 +00002492
2493 F.LocalNumObjCCategoriesInMap = Record[0];
2494 F.ObjCCategoriesMap = (const ObjCCategoriesInfo *)BlobStart;
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002495 break;
2496 }
Douglas Gregor7c789c12010-10-29 22:39:52 +00002497
Douglas Gregorcff9f262012-01-27 01:47:08 +00002498 case OBJC_CATEGORIES:
2499 F.ObjCCategories.swap(Record);
2500 break;
2501
Douglas Gregor7c789c12010-10-29 22:39:52 +00002502 case CXX_BASE_SPECIFIER_OFFSETS: {
2503 if (F.LocalNumCXXBaseSpecifiers != 0) {
2504 Error("duplicate CXX_BASE_SPECIFIER_OFFSETS record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002505 return true;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002506 }
2507
2508 F.LocalNumCXXBaseSpecifiers = Record[0];
2509 F.CXXBaseSpecifiersOffsets = (const uint32_t *)BlobStart;
Jonathan D. Turner1da90142011-07-21 21:15:19 +00002510 NumCXXBaseSpecifiersLoaded += F.LocalNumCXXBaseSpecifiers;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002511 break;
2512 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002513
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002514 case DIAG_PRAGMA_MAPPINGS:
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002515 if (Record.size() % 2 != 0) {
2516 Error("invalid DIAG_USER_MAPPINGS block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002517 return true;
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002518 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002519
2520 if (F.PragmaDiagMappings.empty())
2521 F.PragmaDiagMappings.swap(Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002522 else
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002523 F.PragmaDiagMappings.insert(F.PragmaDiagMappings.end(),
2524 Record.begin(), Record.end());
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002525 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002526
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002527 case CUDA_SPECIAL_DECL_REFS:
2528 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002529 // FIXME: Modules will have trouble with this.
2530 CUDASpecialDeclRefs.clear();
2531 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2532 CUDASpecialDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002533 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002534
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002535 case HEADER_SEARCH_TABLE: {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002536 F.HeaderFileInfoTableData = BlobStart;
2537 F.LocalNumHeaderFileInfos = Record[1];
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002538 F.HeaderFileFrameworkStrings = BlobStart + Record[2];
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002539 if (Record[0]) {
2540 F.HeaderFileInfoTable
2541 = HeaderFileInfoLookupTable::Create(
2542 (const unsigned char *)F.HeaderFileInfoTableData + Record[0],
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002543 (const unsigned char *)F.HeaderFileInfoTableData,
Douglas Gregor95eab172011-07-28 20:55:49 +00002544 HeaderFileInfoTrait(*this, F,
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002545 &PP.getHeaderSearchInfo(),
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002546 BlobStart + Record[2]));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002547
2548 PP.getHeaderSearchInfo().SetExternalSource(this);
2549 if (!PP.getHeaderSearchInfo().getExternalLookup())
2550 PP.getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002551 }
2552 break;
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002553 }
2554
Peter Collingbourne84bccea2011-02-15 19:46:30 +00002555 case FP_PRAGMA_OPTIONS:
2556 // Later tables overwrite earlier ones.
2557 FPPragmaOptions.swap(Record);
2558 break;
2559
2560 case OPENCL_EXTENSIONS:
2561 // Later tables overwrite earlier ones.
2562 OpenCLExtensions.swap(Record);
2563 break;
Sean Huntebcbe1d2011-05-04 23:29:54 +00002564
2565 case TENTATIVE_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002566 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2567 TentativeDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00002568 break;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002569
2570 case KNOWN_NAMESPACES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002571 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2572 KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002573 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002574
2575 case IMPORTED_MODULES: {
2576 if (F.Kind != MK_Module) {
2577 // If we aren't loading a module (which has its own exports), make
2578 // all of the imported modules visible.
2579 // FIXME: Deal with macros-only imports.
2580 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
2581 if (unsigned GlobalID = getGlobalSubmoduleID(F, Record[I]))
2582 ImportedModules.push_back(GlobalID);
2583 }
2584 }
2585 break;
Douglas Gregora1be2782011-12-17 23:38:30 +00002586 }
Douglas Gregor2171bf12012-01-15 16:58:34 +00002587
Douglas Gregora1be2782011-12-17 23:38:30 +00002588 case LOCAL_REDECLARATIONS: {
Douglas Gregor2171bf12012-01-15 16:58:34 +00002589 F.RedeclarationChains.swap(Record);
2590 break;
2591 }
2592
2593 case LOCAL_REDECLARATIONS_MAP: {
2594 if (F.LocalNumRedeclarationsInMap != 0) {
2595 Error("duplicate LOCAL_REDECLARATIONS_MAP record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002596 return true;
Douglas Gregora1be2782011-12-17 23:38:30 +00002597 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002598
Douglas Gregor2171bf12012-01-15 16:58:34 +00002599 F.LocalNumRedeclarationsInMap = Record[0];
2600 F.RedeclarationsMap = (const LocalRedeclarationsInfo *)BlobStart;
Douglas Gregora1be2782011-12-17 23:38:30 +00002601 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002602 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002603
2604 case MERGED_DECLARATIONS: {
2605 for (unsigned Idx = 0; Idx < Record.size(); /* increment in loop */) {
2606 GlobalDeclID CanonID = getGlobalDeclID(F, Record[Idx++]);
2607 SmallVectorImpl<GlobalDeclID> &Decls = StoredMergedDecls[CanonID];
2608 for (unsigned N = Record[Idx++]; N > 0; --N)
2609 Decls.push_back(getGlobalDeclID(F, Record[Idx++]));
2610 }
2611 break;
2612 }
Douglas Gregora8235d62012-10-09 23:05:51 +00002613
2614 case MACRO_OFFSET: {
2615 if (F.LocalNumMacros != 0) {
2616 Error("duplicate MACRO_OFFSET record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002617 return true;
Douglas Gregora8235d62012-10-09 23:05:51 +00002618 }
2619 F.MacroOffsets = (const uint32_t *)BlobStart;
2620 F.LocalNumMacros = Record[0];
2621 unsigned LocalBaseMacroID = Record[1];
2622 F.BaseMacroID = getTotalNumMacros();
2623
2624 if (F.LocalNumMacros > 0) {
2625 // Introduce the global -> local mapping for macros within this module.
2626 GlobalMacroMap.insert(std::make_pair(getTotalNumMacros() + 1, &F));
2627
2628 // Introduce the local -> global mapping for macros within this module.
2629 F.MacroRemap.insertOrReplace(
2630 std::make_pair(LocalBaseMacroID,
2631 F.BaseMacroID - LocalBaseMacroID));
2632
2633 MacrosLoaded.resize(MacrosLoaded.size() + F.LocalNumMacros);
2634 }
2635 break;
2636 }
2637
2638 case MACRO_UPDATES: {
2639 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
2640 MacroID ID = getGlobalMacroID(F, Record[I++]);
2641 if (I == N)
2642 break;
2643
Douglas Gregor54c8a402012-10-12 00:16:50 +00002644 SourceLocation UndefLoc = ReadSourceLocation(F, Record, I);
2645 SubmoduleID SubmoduleID = getGlobalSubmoduleID(F, Record[I++]);;
2646 MacroUpdate Update;
2647 Update.UndefLoc = UndefLoc;
2648 MacroUpdates[ID].push_back(std::make_pair(SubmoduleID, Update));
Douglas Gregora8235d62012-10-09 23:05:51 +00002649 }
2650 break;
2651 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002652 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002653 }
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002654 Error("premature end of bitstream in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002655 return true;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002656}
2657
Douglas Gregorecc2c092011-12-01 22:20:10 +00002658void ASTReader::makeNamesVisible(const HiddenNames &Names) {
Douglas Gregor13292642011-12-02 15:45:10 +00002659 for (unsigned I = 0, N = Names.size(); I != N; ++I) {
Douglas Gregor54c8a402012-10-12 00:16:50 +00002660 switch (Names[I].getKind()) {
2661 case HiddenName::Declaration:
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00002662 Names[I].getDecl()->Hidden = false;
Douglas Gregor54c8a402012-10-12 00:16:50 +00002663 break;
2664
2665 case HiddenName::MacroVisibility: {
2666 std::pair<IdentifierInfo *, MacroInfo *> Macro = Names[I].getMacro();
2667 Macro.second->setHidden(!Macro.second->isPublic());
2668 if (Macro.second->isDefined()) {
2669 PP.makeLoadedMacroInfoVisible(Macro.first, Macro.second);
2670 }
2671 break;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00002672 }
2673
Douglas Gregor54c8a402012-10-12 00:16:50 +00002674 case HiddenName::MacroUndef: {
2675 std::pair<IdentifierInfo *, MacroInfo *> Macro = Names[I].getMacro();
2676 if (Macro.second->isDefined()) {
2677 Macro.second->setUndefLoc(Names[I].getMacroUndefLoc());
2678 if (PPMutationListener *Listener = PP.getPPMutationListener())
2679 Listener->UndefinedMacro(Macro.second);
2680 PP.makeLoadedMacroInfoVisible(Macro.first, Macro.second);
2681 }
2682 break;
2683 }
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002684 }
Douglas Gregor13292642011-12-02 15:45:10 +00002685 }
Douglas Gregorecc2c092011-12-01 22:20:10 +00002686}
2687
Douglas Gregor5e356932011-12-01 17:11:21 +00002688void ASTReader::makeModuleVisible(Module *Mod,
2689 Module::NameVisibilityKind NameVisibility) {
2690 llvm::SmallPtrSet<Module *, 4> Visited;
2691 llvm::SmallVector<Module *, 4> Stack;
2692 Stack.push_back(Mod);
2693 while (!Stack.empty()) {
2694 Mod = Stack.back();
2695 Stack.pop_back();
2696
2697 if (NameVisibility <= Mod->NameVisibility) {
2698 // This module already has this level of visibility (or greater), so
2699 // there is nothing more to do.
2700 continue;
2701 }
2702
Douglas Gregor51f564f2011-12-31 04:05:44 +00002703 if (!Mod->isAvailable()) {
2704 // Modules that aren't available cannot be made visible.
2705 continue;
2706 }
2707
Douglas Gregor5e356932011-12-01 17:11:21 +00002708 // Update the module's name visibility.
2709 Mod->NameVisibility = NameVisibility;
2710
Douglas Gregorecc2c092011-12-01 22:20:10 +00002711 // If we've already deserialized any names from this module,
Douglas Gregor5e356932011-12-01 17:11:21 +00002712 // mark them as visible.
Douglas Gregorecc2c092011-12-01 22:20:10 +00002713 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
2714 if (Hidden != HiddenNamesMap.end()) {
2715 makeNamesVisible(Hidden->second);
2716 HiddenNamesMap.erase(Hidden);
2717 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002718
2719 // Push any non-explicit submodules onto the stack to be marked as
2720 // visible.
Douglas Gregorb7a78192012-01-04 23:32:19 +00002721 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2722 SubEnd = Mod->submodule_end();
Douglas Gregor5e356932011-12-01 17:11:21 +00002723 Sub != SubEnd; ++Sub) {
Douglas Gregorb7a78192012-01-04 23:32:19 +00002724 if (!(*Sub)->IsExplicit && Visited.insert(*Sub))
2725 Stack.push_back(*Sub);
Douglas Gregor5e356932011-12-01 17:11:21 +00002726 }
Douglas Gregor07165b92011-12-02 19:11:09 +00002727
2728 // Push any exported modules onto the stack to be marked as visible.
Douglas Gregor0adaa882011-12-05 17:28:06 +00002729 bool AnyWildcard = false;
2730 bool UnrestrictedWildcard = false;
2731 llvm::SmallVector<Module *, 4> WildcardRestrictions;
Douglas Gregor07165b92011-12-02 19:11:09 +00002732 for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) {
2733 Module *Exported = Mod->Exports[I].getPointer();
Douglas Gregor0adaa882011-12-05 17:28:06 +00002734 if (!Mod->Exports[I].getInt()) {
2735 // Export a named module directly; no wildcards involved.
2736 if (Visited.insert(Exported))
Douglas Gregor07165b92011-12-02 19:11:09 +00002737 Stack.push_back(Exported);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002738
2739 continue;
Douglas Gregor07165b92011-12-02 19:11:09 +00002740 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002741
2742 // Wildcard export: export all of the imported modules that match
2743 // the given pattern.
2744 AnyWildcard = true;
2745 if (UnrestrictedWildcard)
2746 continue;
2747
2748 if (Module *Restriction = Mod->Exports[I].getPointer())
2749 WildcardRestrictions.push_back(Restriction);
2750 else {
2751 WildcardRestrictions.clear();
2752 UnrestrictedWildcard = true;
2753 }
2754 }
2755
2756 // If there were any wildcards, push any imported modules that were
2757 // re-exported by the wildcard restriction.
2758 if (!AnyWildcard)
2759 continue;
2760
2761 for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) {
2762 Module *Imported = Mod->Imports[I];
Benjamin Kramerd48bcb22012-08-22 15:37:55 +00002763 if (!Visited.insert(Imported))
Douglas Gregor0adaa882011-12-05 17:28:06 +00002764 continue;
2765
2766 bool Acceptable = UnrestrictedWildcard;
2767 if (!Acceptable) {
2768 // Check whether this module meets one of the restrictions.
2769 for (unsigned R = 0, NR = WildcardRestrictions.size(); R != NR; ++R) {
2770 Module *Restriction = WildcardRestrictions[R];
2771 if (Imported == Restriction || Imported->isSubModuleOf(Restriction)) {
2772 Acceptable = true;
2773 break;
2774 }
2775 }
2776 }
2777
2778 if (!Acceptable)
2779 continue;
2780
Douglas Gregor0adaa882011-12-05 17:28:06 +00002781 Stack.push_back(Imported);
Douglas Gregor07165b92011-12-02 19:11:09 +00002782 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002783 }
2784}
2785
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00002786ASTReader::ASTReadResult ASTReader::ReadAST(const std::string &FileName,
Douglas Gregor38295be2012-10-22 23:51:00 +00002787 ModuleKind Type,
2788 unsigned ClientLoadCapabilities) {
Douglas Gregor057df202012-01-18 20:56:22 +00002789 // Bump the generation number.
Douglas Gregorcff9f262012-01-27 01:47:08 +00002790 unsigned PreviousGeneration = CurrentGeneration++;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002791
2792 // Load the core of the AST files.
2793 llvm::SmallVector<ModuleFile *, 4> Loaded;
Douglas Gregor38295be2012-10-22 23:51:00 +00002794 switch(ReadASTCore(FileName, Type, /*ImportedBy=*/0, Loaded,
2795 ClientLoadCapabilities)) {
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002796 case Failure: return Failure;
Douglas Gregor4825fd72012-10-22 22:50:17 +00002797 case OutOfDate: return OutOfDate;
2798 case VersionMismatch: return VersionMismatch;
2799 case ConfigurationMismatch: return ConfigurationMismatch;
2800 case HadErrors: return HadErrors;
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002801 case Success: break;
2802 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002803
2804 // Here comes stuff that we only do once the entire chain is loaded.
Douglas Gregor057df202012-01-18 20:56:22 +00002805
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002806 // Load the AST blocks of all of the modules that we loaded.
2807 for (llvm::SmallVectorImpl<ModuleFile *>::iterator M = Loaded.begin(),
2808 MEnd = Loaded.end();
2809 M != MEnd; ++M) {
2810 ModuleFile &F = **M;
2811
2812 // Read the AST block.
Douglas Gregor4825fd72012-10-22 22:50:17 +00002813 if (ReadASTBlock(F))
2814 return Failure;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002815
2816 // Once read, set the ModuleFile bit base offset and update the size in
2817 // bits of all files we've seen.
2818 F.GlobalBitOffset = TotalModulesSizeInBits;
2819 TotalModulesSizeInBits += F.SizeInBits;
2820 GlobalBitOffsetsMap.insert(std::make_pair(F.GlobalBitOffset, &F));
2821
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002822 // Preload SLocEntries.
2823 for (unsigned I = 0, N = F.PreloadSLocEntries.size(); I != N; ++I) {
2824 int Index = int(F.PreloadSLocEntries[I] - 1) + F.SLocEntryBaseID;
Douglas Gregor8b53d142012-10-22 22:53:10 +00002825 // Load it through the SourceManager and don't call ReadSLocEntry()
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002826 // directly because the entry may have already been loaded in which case
Douglas Gregor8b53d142012-10-22 22:53:10 +00002827 // calling ReadSLocEntry() directly would trigger an assertion in
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002828 // SourceManager.
2829 SourceMgr.getLoadedSLocEntryByID(Index);
2830 }
2831 }
2832
Douglas Gregoreee242f2011-10-27 09:33:13 +00002833 // Mark all of the identifiers in the identifier table as being out of date,
2834 // so that various accessors know to check the loaded modules when the
2835 // identifier is used.
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002836 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
2837 IdEnd = PP.getIdentifierTable().end();
2838 Id != IdEnd; ++Id)
Douglas Gregoreee242f2011-10-27 09:33:13 +00002839 Id->second->setOutOfDate(true);
Douglas Gregor057df202012-01-18 20:56:22 +00002840
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002841 // Resolve any unresolved module exports.
Douglas Gregor55988682011-12-05 16:33:54 +00002842 for (unsigned I = 0, N = UnresolvedModuleImportExports.size(); I != N; ++I) {
2843 UnresolvedModuleImportExport &Unresolved = UnresolvedModuleImportExports[I];
2844 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002845 Module *ResolvedMod = getSubmodule(GlobalID);
2846
2847 if (Unresolved.IsImport) {
2848 if (ResolvedMod)
Douglas Gregor55988682011-12-05 16:33:54 +00002849 Unresolved.Mod->Imports.push_back(ResolvedMod);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002850 continue;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002851 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002852
2853 if (ResolvedMod || Unresolved.IsWildcard)
2854 Unresolved.Mod->Exports.push_back(
2855 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard));
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002856 }
Douglas Gregor55988682011-12-05 16:33:54 +00002857 UnresolvedModuleImportExports.clear();
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002858
Douglas Gregor35942772011-09-09 21:34:22 +00002859 InitializeContext();
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002860
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002861 if (DeserializationListener)
2862 DeserializationListener->ReaderInitialized(this);
2863
Douglas Gregor11407b82012-10-18 21:18:25 +00002864 ModuleFile &PrimaryModule = ModuleMgr.getPrimaryModule();
2865 if (!PrimaryModule.OriginalSourceFileID.isInvalid()) {
2866 PrimaryModule.OriginalSourceFileID
2867 = FileID::get(PrimaryModule.SLocEntryBaseID
2868 + PrimaryModule.OriginalSourceFileID.getOpaqueValue() - 1);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002869
Douglas Gregor11407b82012-10-18 21:18:25 +00002870 // If this AST file is a precompiled preamble, then set the
2871 // preamble file ID of the source manager to the file source file
2872 // from which the preamble was built.
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002873 if (Type == MK_Preamble) {
Douglas Gregor11407b82012-10-18 21:18:25 +00002874 SourceMgr.setPreambleFileID(PrimaryModule.OriginalSourceFileID);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002875 } else if (Type == MK_MainFile) {
Douglas Gregor11407b82012-10-18 21:18:25 +00002876 SourceMgr.setMainFileID(PrimaryModule.OriginalSourceFileID);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002877 }
Douglas Gregor414cb642010-11-30 05:23:00 +00002878 }
2879
Douglas Gregorcff9f262012-01-27 01:47:08 +00002880 // For any Objective-C class definitions we have already loaded, make sure
2881 // that we load any additional categories.
2882 for (unsigned I = 0, N = ObjCClassesLoaded.size(); I != N; ++I) {
2883 loadObjCCategories(ObjCClassesLoaded[I]->getGlobalID(),
2884 ObjCClassesLoaded[I],
2885 PreviousGeneration);
2886 }
2887
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002888 return Success;
2889}
2890
Douglas Gregor38295be2012-10-22 23:51:00 +00002891ASTReader::ASTReadResult
2892ASTReader::ReadASTCore(StringRef FileName,
2893 ModuleKind Type,
2894 ModuleFile *ImportedBy,
2895 llvm::SmallVectorImpl<ModuleFile *> &Loaded,
2896 unsigned ClientLoadCapabilities) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002897 ModuleFile *M;
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002898 bool NewModule;
2899 std::string ErrorStr;
2900 llvm::tie(M, NewModule) = ModuleMgr.addModule(FileName, Type, ImportedBy,
Douglas Gregor057df202012-01-18 20:56:22 +00002901 CurrentGeneration, ErrorStr);
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002902
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002903 if (!M) {
2904 // We couldn't load the module.
2905 std::string Msg = "Unable to load module \"" + FileName.str() + "\": "
2906 + ErrorStr;
2907 Error(Msg);
2908 return Failure;
2909 }
2910
2911 if (!NewModule) {
2912 // We've already loaded this module.
2913 return Success;
2914 }
2915
2916 // FIXME: This seems rather a hack. Should CurrentDir be part of the
2917 // module?
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002918 if (FileName != "-") {
2919 CurrentDir = llvm::sys::path::parent_path(FileName);
2920 if (CurrentDir.empty()) CurrentDir = ".";
2921 }
2922
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002923 ModuleFile &F = *M;
Sebastian Redl9137a522010-07-16 17:50:48 +00002924 llvm::BitstreamCursor &Stream = F.Stream;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002925 Stream.init(F.StreamFile);
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002926 F.SizeInBits = F.Buffer->getBufferSize() * 8;
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002927
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002928 // Sniff for the signature.
2929 if (Stream.Read(8) != 'C' ||
2930 Stream.Read(8) != 'P' ||
2931 Stream.Read(8) != 'C' ||
2932 Stream.Read(8) != 'H') {
2933 Diag(diag::err_not_a_pch_file) << FileName;
2934 return Failure;
2935 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002936
Douglas Gregor2cf26342009-04-09 22:27:44 +00002937 while (!Stream.AtEndOfStream()) {
2938 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00002939
Douglas Gregore1d918e2009-04-10 23:10:45 +00002940 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002941 Error("invalid record at top-level of AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002942 return Failure;
2943 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002944
2945 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00002946
Douglas Gregor7ae467f2012-10-18 18:27:37 +00002947 // We only know the control subblock ID.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002948 switch (BlockID) {
2949 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002950 if (Stream.ReadBlockInfoBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002951 Error("malformed BlockInfoBlock in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002952 return Failure;
2953 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002954 break;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002955 case CONTROL_BLOCK_ID:
Douglas Gregor38295be2012-10-22 23:51:00 +00002956 switch (ReadControlBlock(F, Loaded, ClientLoadCapabilities)) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002957 case Success:
2958 break;
2959
Douglas Gregor4825fd72012-10-22 22:50:17 +00002960 case Failure: return Failure;
2961 case OutOfDate: return OutOfDate;
2962 case VersionMismatch: return VersionMismatch;
2963 case ConfigurationMismatch: return ConfigurationMismatch;
2964 case HadErrors: return HadErrors;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002965 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002966 break;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002967 case AST_BLOCK_ID:
2968 // Record that we've loaded this module.
2969 Loaded.push_back(M);
2970 return Success;
2971
Douglas Gregor2cf26342009-04-09 22:27:44 +00002972 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002973 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002974 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002975 return Failure;
2976 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002977 break;
2978 }
Mike Stump1eb44332009-09-09 15:08:12 +00002979 }
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002980
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002981 return Success;
2982}
2983
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002984void ASTReader::InitializeContext() {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002985 // If there's a listener, notify them that we "read" the translation unit.
2986 if (DeserializationListener)
Douglas Gregor35942772011-09-09 21:34:22 +00002987 DeserializationListener->DeclRead(PREDEF_DECL_TRANSLATION_UNIT_ID,
2988 Context.getTranslationUnitDecl());
Douglas Gregor3747ee72010-10-01 01:18:02 +00002989
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002990 // Make sure we load the declaration update records for the translation unit,
2991 // if there are any.
Douglas Gregor35942772011-09-09 21:34:22 +00002992 loadDeclUpdateRecords(PREDEF_DECL_TRANSLATION_UNIT_ID,
2993 Context.getTranslationUnitDecl());
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002994
Douglas Gregor5f957282011-08-11 22:18:49 +00002995 // FIXME: Find a better way to deal with collisions between these
2996 // built-in types. Right now, we just ignore the problem.
2997
2998 // Load the special types.
Douglas Gregora6ea10e2012-01-17 18:09:05 +00002999 if (SpecialTypes.size() >= NumSpecialTypeIDs) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00003000 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) {
3001 if (!Context.CFConstantStringTypeDecl)
3002 Context.setCFConstantStringType(GetType(String));
3003 }
3004
3005 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
3006 QualType FileType = GetType(File);
3007 if (FileType.isNull()) {
3008 Error("FILE type is NULL");
3009 return;
3010 }
3011
3012 if (!Context.FILEDecl) {
3013 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
3014 Context.setFILEDecl(Typedef->getDecl());
3015 else {
3016 const TagType *Tag = FileType->getAs<TagType>();
3017 if (!Tag) {
3018 Error("Invalid FILE type in AST file");
3019 return;
3020 }
3021 Context.setFILEDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003022 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003023 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00003024 }
Douglas Gregor5f957282011-08-11 22:18:49 +00003025
Douglas Gregor72cd7a02011-11-11 19:13:12 +00003026 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00003027 QualType Jmp_bufType = GetType(Jmp_buf);
3028 if (Jmp_bufType.isNull()) {
3029 Error("jmp_buf type is NULL");
3030 return;
3031 }
3032
3033 if (!Context.jmp_bufDecl) {
3034 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
3035 Context.setjmp_bufDecl(Typedef->getDecl());
3036 else {
3037 const TagType *Tag = Jmp_bufType->getAs<TagType>();
3038 if (!Tag) {
3039 Error("Invalid jmp_buf type in AST file");
3040 return;
3041 }
3042 Context.setjmp_bufDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003043 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003044 }
Mike Stump782fa302009-07-28 02:25:19 +00003045 }
Douglas Gregor02a5e872011-09-10 00:30:18 +00003046
Douglas Gregor72cd7a02011-11-11 19:13:12 +00003047 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00003048 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
3049 if (Sigjmp_bufType.isNull()) {
3050 Error("sigjmp_buf type is NULL");
3051 return;
3052 }
3053
3054 if (!Context.sigjmp_bufDecl) {
3055 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
3056 Context.setsigjmp_bufDecl(Typedef->getDecl());
3057 else {
3058 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
3059 assert(Tag && "Invalid sigjmp_buf type in AST file");
3060 Context.setsigjmp_bufDecl(Tag->getDecl());
3061 }
3062 }
3063 }
3064
3065 if (unsigned ObjCIdRedef
3066 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) {
3067 if (Context.ObjCIdRedefinitionType.isNull())
3068 Context.ObjCIdRedefinitionType = GetType(ObjCIdRedef);
3069 }
3070
3071 if (unsigned ObjCClassRedef
3072 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) {
3073 if (Context.ObjCClassRedefinitionType.isNull())
3074 Context.ObjCClassRedefinitionType = GetType(ObjCClassRedef);
3075 }
3076
3077 if (unsigned ObjCSelRedef
3078 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) {
3079 if (Context.ObjCSelRedefinitionType.isNull())
3080 Context.ObjCSelRedefinitionType = GetType(ObjCSelRedef);
3081 }
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00003082
3083 if (unsigned Ucontext_t = SpecialTypes[SPECIAL_TYPE_UCONTEXT_T]) {
3084 QualType Ucontext_tType = GetType(Ucontext_t);
3085 if (Ucontext_tType.isNull()) {
3086 Error("ucontext_t type is NULL");
3087 return;
3088 }
3089
3090 if (!Context.ucontext_tDecl) {
3091 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
3092 Context.setucontext_tDecl(Typedef->getDecl());
3093 else {
3094 const TagType *Tag = Ucontext_tType->getAs<TagType>();
3095 assert(Tag && "Invalid ucontext_t type in AST file");
3096 Context.setucontext_tDecl(Tag->getDecl());
3097 }
3098 }
3099 }
Douglas Gregor5f957282011-08-11 22:18:49 +00003100 }
3101
Douglas Gregor35942772011-09-09 21:34:22 +00003102 ReadPragmaDiagnosticMappings(Context.getDiagnostics());
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00003103
3104 // If there were any CUDA special declarations, deserialize them.
3105 if (!CUDASpecialDeclRefs.empty()) {
3106 assert(CUDASpecialDeclRefs.size() == 1 && "More decl refs than expected!");
Douglas Gregor35942772011-09-09 21:34:22 +00003107 Context.setcudaConfigureCallDecl(
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00003108 cast<FunctionDecl>(GetDecl(CUDASpecialDeclRefs[0])));
3109 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00003110
3111 // Re-export any modules that were imported by a non-module AST file.
3112 for (unsigned I = 0, N = ImportedModules.size(); I != N; ++I) {
3113 if (Module *Imported = getSubmodule(ImportedModules[I]))
3114 makeModuleVisible(Imported, Module::AllVisible);
3115 }
3116 ImportedModules.clear();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003117}
3118
Douglas Gregorecc2c092011-12-01 22:20:10 +00003119void ASTReader::finalizeForWriting() {
3120 for (HiddenNamesMapType::iterator Hidden = HiddenNamesMap.begin(),
3121 HiddenEnd = HiddenNamesMap.end();
3122 Hidden != HiddenEnd; ++Hidden) {
3123 makeNamesVisible(Hidden->second);
3124 }
3125 HiddenNamesMap.clear();
3126}
3127
Douglas Gregorb64c1932009-05-12 01:31:05 +00003128/// \brief Retrieve the name of the original source file name
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003129/// directly from the AST file, without actually loading the AST
Douglas Gregorb64c1932009-05-12 01:31:05 +00003130/// file.
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003131std::string ASTReader::getOriginalSourceFile(const std::string &ASTFileName,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00003132 FileManager &FileMgr,
David Blaikied6471f72011-09-25 23:23:43 +00003133 DiagnosticsEngine &Diags) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003134 // Open the AST file.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003135 std::string ErrStr;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00003136 OwningPtr<llvm::MemoryBuffer> Buffer;
Chris Lattner39b49bc2010-11-23 08:35:12 +00003137 Buffer.reset(FileMgr.getBufferForFile(ASTFileName, &ErrStr));
Douglas Gregorb64c1932009-05-12 01:31:05 +00003138 if (!Buffer) {
Kaelyn Uhrainda01f622012-06-20 00:36:03 +00003139 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ASTFileName << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003140 return std::string();
3141 }
3142
3143 // Initialize the stream
3144 llvm::BitstreamReader StreamFile;
3145 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00003146 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00003147 (const unsigned char *)Buffer->getBufferEnd());
3148 Stream.init(StreamFile);
3149
3150 // Sniff for the signature.
3151 if (Stream.Read(8) != 'C' ||
3152 Stream.Read(8) != 'P' ||
3153 Stream.Read(8) != 'C' ||
3154 Stream.Read(8) != 'H') {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003155 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003156 return std::string();
3157 }
3158
3159 RecordData Record;
3160 while (!Stream.AtEndOfStream()) {
3161 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00003162
Douglas Gregorb64c1932009-05-12 01:31:05 +00003163 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3164 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00003165
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003166 // We only know the AST subblock ID.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003167 switch (BlockID) {
Douglas Gregor1d9d9892012-10-18 05:31:06 +00003168 case CONTROL_BLOCK_ID:
3169 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003170 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003171 return std::string();
3172 }
3173 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003174
Douglas Gregorb64c1932009-05-12 01:31:05 +00003175 default:
3176 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003177 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003178 return std::string();
3179 }
3180 break;
3181 }
3182 continue;
3183 }
3184
3185 if (Code == llvm::bitc::END_BLOCK) {
3186 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003187 Diags.Report(diag::err_fe_pch_error_at_end_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003188 return std::string();
3189 }
3190 continue;
3191 }
3192
3193 if (Code == llvm::bitc::DEFINE_ABBREV) {
3194 Stream.ReadAbbrevRecord();
3195 continue;
3196 }
3197
3198 Record.clear();
3199 const char *BlobStart = 0;
3200 unsigned BlobLen = 0;
Douglas Gregor39c497b2012-10-18 18:36:53 +00003201 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen) == ORIGINAL_FILE)
Douglas Gregorb64c1932009-05-12 01:31:05 +00003202 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00003203 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00003204
3205 return std::string();
3206}
3207
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003208namespace {
3209 class SimplePCHValidator : public ASTReaderListener {
3210 const LangOptions &ExistingLangOpts;
3211 const TargetOptions &ExistingTargetOpts;
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003212 const PreprocessorOptions &ExistingPPOpts;
Douglas Gregor87699242012-10-25 00:07:54 +00003213 FileManager &FileMgr;
3214
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003215 public:
3216 SimplePCHValidator(const LangOptions &ExistingLangOpts,
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003217 const TargetOptions &ExistingTargetOpts,
Douglas Gregor87699242012-10-25 00:07:54 +00003218 const PreprocessorOptions &ExistingPPOpts,
3219 FileManager &FileMgr)
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003220 : ExistingLangOpts(ExistingLangOpts),
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003221 ExistingTargetOpts(ExistingTargetOpts),
Douglas Gregor87699242012-10-25 00:07:54 +00003222 ExistingPPOpts(ExistingPPOpts),
3223 FileMgr(FileMgr)
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003224 {
3225 }
3226
3227 virtual bool ReadLanguageOptions(const LangOptions &LangOpts,
3228 bool Complain) {
3229 return checkLanguageOptions(ExistingLangOpts, LangOpts, 0);
3230 }
3231 virtual bool ReadTargetOptions(const TargetOptions &TargetOpts,
3232 bool Complain) {
3233 return checkTargetOptions(ExistingTargetOpts, TargetOpts, 0);
3234 }
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003235 virtual bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
Douglas Gregor87699242012-10-25 00:07:54 +00003236 bool Complain,
3237 std::string &SuggestedPredefines) {
3238 return checkPreprocessorOptions(ExistingPPOpts, PPOpts, 0, FileMgr,
3239 SuggestedPredefines);
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003240 }
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003241 };
3242}
3243
3244bool ASTReader::isAcceptableASTFile(StringRef Filename,
3245 FileManager &FileMgr,
3246 const LangOptions &LangOpts,
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003247 const TargetOptions &TargetOpts,
3248 const PreprocessorOptions &PPOpts) {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003249 // Open the AST file.
3250 std::string ErrStr;
3251 OwningPtr<llvm::MemoryBuffer> Buffer;
3252 Buffer.reset(FileMgr.getBufferForFile(Filename, &ErrStr));
3253 if (!Buffer) {
3254 return false;
3255 }
3256
3257 // Initialize the stream
3258 llvm::BitstreamReader StreamFile;
3259 llvm::BitstreamCursor Stream;
3260 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
3261 (const unsigned char *)Buffer->getBufferEnd());
3262 Stream.init(StreamFile);
3263
3264 // Sniff for the signature.
3265 if (Stream.Read(8) != 'C' ||
3266 Stream.Read(8) != 'P' ||
3267 Stream.Read(8) != 'C' ||
3268 Stream.Read(8) != 'H') {
3269 return false;
3270 }
3271
Douglas Gregor87699242012-10-25 00:07:54 +00003272 SimplePCHValidator Validator(LangOpts, TargetOpts, PPOpts, FileMgr);
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003273 RecordData Record;
3274 bool InControlBlock = false;
3275 while (!Stream.AtEndOfStream()) {
3276 unsigned Code = Stream.ReadCode();
3277
3278 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3279 unsigned BlockID = Stream.ReadSubBlockID();
3280
3281 // We only know the control subblock ID.
3282 switch (BlockID) {
3283 case CONTROL_BLOCK_ID:
3284 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
3285 return false;
3286 } else {
3287 InControlBlock = true;
3288 }
3289 break;
3290
3291 default:
3292 if (Stream.SkipBlock())
3293 return false;
3294 break;
3295 }
3296 continue;
3297 }
3298
3299 if (Code == llvm::bitc::END_BLOCK) {
3300 if (Stream.ReadBlockEnd()) {
3301 return false;
3302 }
3303 InControlBlock = false;
3304 continue;
3305 }
3306
3307 if (Code == llvm::bitc::DEFINE_ABBREV) {
3308 Stream.ReadAbbrevRecord();
3309 continue;
3310 }
3311
3312 Record.clear();
3313 const char *BlobStart = 0;
3314 unsigned BlobLen = 0;
3315 unsigned RecCode = Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen);
3316 if (InControlBlock) {
3317 switch ((ControlRecordTypes)RecCode) {
3318 case METADATA: {
3319 if (Record[0] != VERSION_MAJOR) {
3320 return false;
3321 }
3322
3323 const std::string &CurBranch = getClangFullRepositoryVersion();
3324 StringRef ASTBranch(BlobStart, BlobLen);
3325 if (StringRef(CurBranch) != ASTBranch)
3326 return false;
3327
3328 break;
3329 }
3330 case LANGUAGE_OPTIONS:
3331 if (ParseLanguageOptions(Record, false, Validator))
3332 return false;
3333 break;
3334
3335 case TARGET_OPTIONS:
3336 if (ParseTargetOptions(Record, false, Validator))
3337 return false;
3338 break;
3339
Douglas Gregor5f3d8222012-10-24 15:17:15 +00003340 case DIAGNOSTIC_OPTIONS:
3341 if (ParseDiagnosticOptions(Record, false, Validator))
3342 return false;
3343 break;
3344
Douglas Gregorbbf38312012-10-24 16:50:34 +00003345 case FILE_SYSTEM_OPTIONS:
3346 if (ParseFileSystemOptions(Record, false, Validator))
3347 return false;
3348 break;
3349
3350 case HEADER_SEARCH_OPTIONS:
3351 if (ParseHeaderSearchOptions(Record, false, Validator))
3352 return false;
3353 break;
3354
Douglas Gregor87699242012-10-25 00:07:54 +00003355 case PREPROCESSOR_OPTIONS: {
3356 std::string IgnoredSuggestedPredefines;
3357 if (ParsePreprocessorOptions(Record, false, Validator,
3358 IgnoredSuggestedPredefines))
Douglas Gregora71a7d82012-10-24 20:05:57 +00003359 return false;
3360 break;
Douglas Gregor87699242012-10-25 00:07:54 +00003361 }
Douglas Gregora71a7d82012-10-24 20:05:57 +00003362
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003363 default:
3364 // No other validation to perform.
3365 break;
3366 }
3367 }
3368 }
3369
3370 return true;
3371}
3372
Douglas Gregor4825fd72012-10-22 22:50:17 +00003373bool ASTReader::ReadSubmoduleBlock(ModuleFile &F) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003374 // Enter the submodule block.
3375 if (F.Stream.EnterSubBlock(SUBMODULE_BLOCK_ID)) {
3376 Error("malformed submodule block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003377 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003378 }
3379
3380 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
Douglas Gregor26ced122011-12-01 00:59:36 +00003381 bool First = true;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003382 Module *CurrentModule = 0;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003383 RecordData Record;
3384 while (true) {
3385 unsigned Code = F.Stream.ReadCode();
3386 if (Code == llvm::bitc::END_BLOCK) {
3387 if (F.Stream.ReadBlockEnd()) {
3388 Error("error at end of submodule block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003389 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003390 }
Douglas Gregor4825fd72012-10-22 22:50:17 +00003391 return false;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003392 }
3393
3394 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3395 // No known subblocks, always skip them.
3396 F.Stream.ReadSubBlockID();
3397 if (F.Stream.SkipBlock()) {
3398 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003399 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003400 }
3401 continue;
3402 }
3403
3404 if (Code == llvm::bitc::DEFINE_ABBREV) {
3405 F.Stream.ReadAbbrevRecord();
3406 continue;
3407 }
3408
3409 // Read a record.
3410 const char *BlobStart;
3411 unsigned BlobLen;
3412 Record.clear();
3413 switch (F.Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
3414 default: // Default behavior: ignore.
3415 break;
3416
3417 case SUBMODULE_DEFINITION: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003418 if (First) {
3419 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003420 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003421 }
3422
Douglas Gregore209e502011-12-06 01:10:29 +00003423 if (Record.size() < 7) {
Douglas Gregor1e123682011-12-05 22:27:44 +00003424 Error("malformed module definition");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003425 return true;
Douglas Gregor1e123682011-12-05 22:27:44 +00003426 }
3427
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003428 StringRef Name(BlobStart, BlobLen);
Douglas Gregore209e502011-12-06 01:10:29 +00003429 SubmoduleID GlobalID = getGlobalSubmoduleID(F, Record[0]);
3430 SubmoduleID Parent = getGlobalSubmoduleID(F, Record[1]);
3431 bool IsFramework = Record[2];
3432 bool IsExplicit = Record[3];
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003433 bool IsSystem = Record[4];
3434 bool InferSubmodules = Record[5];
3435 bool InferExplicitSubmodules = Record[6];
3436 bool InferExportWildcard = Record[7];
Douglas Gregor1e123682011-12-05 22:27:44 +00003437
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003438 Module *ParentModule = 0;
Douglas Gregor26ced122011-12-01 00:59:36 +00003439 if (Parent)
3440 ParentModule = getSubmodule(Parent);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003441
3442 // Retrieve this (sub)module from the module map, creating it if
3443 // necessary.
3444 CurrentModule = ModMap.findOrCreateModule(Name, ParentModule,
3445 IsFramework,
3446 IsExplicit).first;
Douglas Gregore209e502011-12-06 01:10:29 +00003447 SubmoduleID GlobalIndex = GlobalID - NUM_PREDEF_SUBMODULE_IDS;
3448 if (GlobalIndex >= SubmodulesLoaded.size() ||
3449 SubmodulesLoaded[GlobalIndex]) {
Douglas Gregor26ced122011-12-01 00:59:36 +00003450 Error("too many submodules");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003451 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003452 }
Douglas Gregora015cab2011-12-02 17:30:13 +00003453
Argyrios Kyrtzidisd64c26f2012-10-03 01:58:42 +00003454 CurrentModule->setASTFile(F.File);
Douglas Gregor305dc3e2011-12-20 00:28:52 +00003455 CurrentModule->IsFromModuleFile = true;
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003456 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
Douglas Gregor1e123682011-12-05 22:27:44 +00003457 CurrentModule->InferSubmodules = InferSubmodules;
3458 CurrentModule->InferExplicitSubmodules = InferExplicitSubmodules;
3459 CurrentModule->InferExportWildcard = InferExportWildcard;
Douglas Gregora015cab2011-12-02 17:30:13 +00003460 if (DeserializationListener)
Douglas Gregore209e502011-12-06 01:10:29 +00003461 DeserializationListener->ModuleRead(GlobalID, CurrentModule);
Douglas Gregora015cab2011-12-02 17:30:13 +00003462
Douglas Gregore209e502011-12-06 01:10:29 +00003463 SubmodulesLoaded[GlobalIndex] = CurrentModule;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003464 break;
3465 }
3466
Douglas Gregor77d029f2011-12-08 19:11:24 +00003467 case SUBMODULE_UMBRELLA_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003468 if (First) {
3469 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003470 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003471 }
3472
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003473 if (!CurrentModule)
3474 break;
3475
3476 StringRef FileName(BlobStart, BlobLen);
3477 if (const FileEntry *Umbrella = PP.getFileManager().getFile(FileName)) {
Douglas Gregor10694ce2011-12-08 17:39:04 +00003478 if (!CurrentModule->getUmbrellaHeader())
Douglas Gregore209e502011-12-06 01:10:29 +00003479 ModMap.setUmbrellaHeader(CurrentModule, Umbrella);
Douglas Gregor10694ce2011-12-08 17:39:04 +00003480 else if (CurrentModule->getUmbrellaHeader() != Umbrella) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003481 Error("mismatched umbrella headers in submodule");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003482 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003483 }
3484 }
3485 break;
3486 }
3487
3488 case SUBMODULE_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003489 if (First) {
3490 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003491 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003492 }
3493
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003494 if (!CurrentModule)
3495 break;
3496
3497 // FIXME: Be more lazy about this!
3498 StringRef FileName(BlobStart, BlobLen);
3499 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3500 if (std::find(CurrentModule->Headers.begin(),
3501 CurrentModule->Headers.end(),
3502 File) == CurrentModule->Headers.end())
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00003503 ModMap.addHeader(CurrentModule, File, false);
3504 }
3505 break;
3506 }
3507
3508 case SUBMODULE_EXCLUDED_HEADER: {
3509 if (First) {
3510 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003511 return true;
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00003512 }
3513
3514 if (!CurrentModule)
3515 break;
3516
3517 // FIXME: Be more lazy about this!
3518 StringRef FileName(BlobStart, BlobLen);
3519 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3520 if (std::find(CurrentModule->Headers.begin(),
3521 CurrentModule->Headers.end(),
3522 File) == CurrentModule->Headers.end())
3523 ModMap.addHeader(CurrentModule, File, true);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003524 }
3525 break;
3526 }
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00003527
3528 case SUBMODULE_TOPHEADER: {
3529 if (First) {
3530 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003531 return true;
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00003532 }
3533
3534 if (!CurrentModule)
3535 break;
3536
3537 // FIXME: Be more lazy about this!
3538 StringRef FileName(BlobStart, BlobLen);
3539 if (const FileEntry *File = PP.getFileManager().getFile(FileName))
3540 CurrentModule->TopHeaders.insert(File);
3541 break;
3542 }
3543
Douglas Gregor77d029f2011-12-08 19:11:24 +00003544 case SUBMODULE_UMBRELLA_DIR: {
3545 if (First) {
3546 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003547 return true;
Douglas Gregor77d029f2011-12-08 19:11:24 +00003548 }
3549
3550 if (!CurrentModule)
3551 break;
3552
3553 StringRef DirName(BlobStart, BlobLen);
3554 if (const DirectoryEntry *Umbrella
3555 = PP.getFileManager().getDirectory(DirName)) {
3556 if (!CurrentModule->getUmbrellaDir())
3557 ModMap.setUmbrellaDir(CurrentModule, Umbrella);
3558 else if (CurrentModule->getUmbrellaDir() != Umbrella) {
3559 Error("mismatched umbrella directories in submodule");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003560 return true;
Douglas Gregor77d029f2011-12-08 19:11:24 +00003561 }
3562 }
3563 break;
3564 }
3565
Douglas Gregor26ced122011-12-01 00:59:36 +00003566 case SUBMODULE_METADATA: {
3567 if (!First) {
3568 Error("submodule metadata record not at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003569 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003570 }
3571 First = false;
3572
3573 F.BaseSubmoduleID = getTotalNumSubmodules();
Douglas Gregor26ced122011-12-01 00:59:36 +00003574 F.LocalNumSubmodules = Record[0];
3575 unsigned LocalBaseSubmoduleID = Record[1];
3576 if (F.LocalNumSubmodules > 0) {
3577 // Introduce the global -> local mapping for submodules within this
3578 // module.
3579 GlobalSubmoduleMap.insert(std::make_pair(getTotalNumSubmodules()+1,&F));
3580
3581 // Introduce the local -> global mapping for submodules within this
3582 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00003583 F.SubmoduleRemap.insertOrReplace(
Douglas Gregor26ced122011-12-01 00:59:36 +00003584 std::make_pair(LocalBaseSubmoduleID,
3585 F.BaseSubmoduleID - LocalBaseSubmoduleID));
3586
3587 SubmodulesLoaded.resize(SubmodulesLoaded.size() + F.LocalNumSubmodules);
3588 }
3589 break;
3590 }
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003591
Douglas Gregor55988682011-12-05 16:33:54 +00003592 case SUBMODULE_IMPORTS: {
3593 if (First) {
3594 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003595 return true;
Douglas Gregor55988682011-12-05 16:33:54 +00003596 }
3597
3598 if (!CurrentModule)
3599 break;
3600
3601 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) {
3602 UnresolvedModuleImportExport Unresolved;
3603 Unresolved.File = &F;
3604 Unresolved.Mod = CurrentModule;
3605 Unresolved.ID = Record[Idx];
3606 Unresolved.IsImport = true;
3607 Unresolved.IsWildcard = false;
3608 UnresolvedModuleImportExports.push_back(Unresolved);
3609 }
3610 break;
3611 }
3612
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003613 case SUBMODULE_EXPORTS: {
3614 if (First) {
3615 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003616 return true;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003617 }
3618
3619 if (!CurrentModule)
3620 break;
3621
3622 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) {
Douglas Gregor55988682011-12-05 16:33:54 +00003623 UnresolvedModuleImportExport Unresolved;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003624 Unresolved.File = &F;
Douglas Gregor55988682011-12-05 16:33:54 +00003625 Unresolved.Mod = CurrentModule;
3626 Unresolved.ID = Record[Idx];
3627 Unresolved.IsImport = false;
3628 Unresolved.IsWildcard = Record[Idx + 1];
3629 UnresolvedModuleImportExports.push_back(Unresolved);
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003630 }
3631
3632 // Once we've loaded the set of exports, there's no reason to keep
3633 // the parsed, unresolved exports around.
3634 CurrentModule->UnresolvedExports.clear();
3635 break;
3636 }
Douglas Gregor51f564f2011-12-31 04:05:44 +00003637 case SUBMODULE_REQUIRES: {
3638 if (First) {
3639 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003640 return true;
Douglas Gregor51f564f2011-12-31 04:05:44 +00003641 }
3642
3643 if (!CurrentModule)
3644 break;
3645
3646 CurrentModule->addRequirement(StringRef(BlobStart, BlobLen),
David Blaikie4e4d0842012-03-11 07:00:24 +00003647 Context.getLangOpts(),
Douglas Gregordc58aa72012-01-30 06:01:29 +00003648 Context.getTargetInfo());
Douglas Gregor51f564f2011-12-31 04:05:44 +00003649 break;
3650 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003651 }
3652 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003653}
3654
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003655/// \brief Parse the record that corresponds to a LangOptions data
3656/// structure.
3657///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003658/// This routine parses the language options from the AST file and then gives
3659/// them to the AST listener if one is set.
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003660///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003661/// \returns true if the listener deems the file unacceptable, false otherwise.
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003662bool ASTReader::ParseLanguageOptions(const RecordData &Record,
3663 bool Complain,
3664 ASTReaderListener &Listener) {
3665 LangOptions LangOpts;
3666 unsigned Idx = 0;
Douglas Gregor7d5e81b2011-09-13 18:26:39 +00003667#define LANGOPT(Name, Bits, Default, Description) \
3668 LangOpts.Name = Record[Idx++];
3669#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
3670 LangOpts.set##Name(static_cast<LangOptions::Type>(Record[Idx++]));
3671#include "clang/Basic/LangOptions.def"
John McCall260611a2012-06-20 06:18:46 +00003672
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003673 ObjCRuntime::Kind runtimeKind = (ObjCRuntime::Kind) Record[Idx++];
3674 VersionTuple runtimeVersion = ReadVersionTuple(Record, Idx);
3675 LangOpts.ObjCRuntime = ObjCRuntime(runtimeKind, runtimeVersion);
3676
3677 unsigned Length = Record[Idx++];
3678 LangOpts.CurrentModule.assign(Record.begin() + Idx,
3679 Record.begin() + Idx + Length);
3680 return Listener.ReadLanguageOptions(LangOpts, Complain);
3681}
3682
3683bool ASTReader::ParseTargetOptions(const RecordData &Record,
3684 bool Complain,
3685 ASTReaderListener &Listener) {
3686 unsigned Idx = 0;
3687 TargetOptions TargetOpts;
3688 TargetOpts.Triple = ReadString(Record, Idx);
3689 TargetOpts.CPU = ReadString(Record, Idx);
3690 TargetOpts.ABI = ReadString(Record, Idx);
3691 TargetOpts.CXXABI = ReadString(Record, Idx);
3692 TargetOpts.LinkerVersion = ReadString(Record, Idx);
3693 for (unsigned N = Record[Idx++]; N; --N) {
3694 TargetOpts.FeaturesAsWritten.push_back(ReadString(Record, Idx));
3695 }
3696 for (unsigned N = Record[Idx++]; N; --N) {
3697 TargetOpts.Features.push_back(ReadString(Record, Idx));
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003698 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003699
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003700 return Listener.ReadTargetOptions(TargetOpts, Complain);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003701}
3702
Douglas Gregor5f3d8222012-10-24 15:17:15 +00003703bool ASTReader::ParseDiagnosticOptions(const RecordData &Record, bool Complain,
3704 ASTReaderListener &Listener) {
3705 DiagnosticOptions DiagOpts;
3706 unsigned Idx = 0;
3707#define DIAGOPT(Name, Bits, Default) DiagOpts.Name = Record[Idx++];
3708#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
3709 DiagOpts.set##Name(static_cast<Type>(Record[Idx++]));
3710#include "clang/Basic/DiagnosticOptions.def"
3711
3712 for (unsigned N = Record[Idx++]; N; --N) {
3713 DiagOpts.Warnings.push_back(ReadString(Record, Idx));
3714 }
3715
3716 return Listener.ReadDiagnosticOptions(DiagOpts, Complain);
3717}
3718
Douglas Gregor1b2c3c02012-10-24 15:49:58 +00003719bool ASTReader::ParseFileSystemOptions(const RecordData &Record, bool Complain,
3720 ASTReaderListener &Listener) {
3721 FileSystemOptions FSOpts;
3722 unsigned Idx = 0;
3723 FSOpts.WorkingDir = ReadString(Record, Idx);
3724 return Listener.ReadFileSystemOptions(FSOpts, Complain);
3725}
3726
Douglas Gregorbbf38312012-10-24 16:50:34 +00003727bool ASTReader::ParseHeaderSearchOptions(const RecordData &Record,
3728 bool Complain,
3729 ASTReaderListener &Listener) {
3730 HeaderSearchOptions HSOpts;
3731 unsigned Idx = 0;
3732 HSOpts.Sysroot = ReadString(Record, Idx);
3733
3734 // Include entries.
3735 for (unsigned N = Record[Idx++]; N; --N) {
3736 std::string Path = ReadString(Record, Idx);
3737 frontend::IncludeDirGroup Group
3738 = static_cast<frontend::IncludeDirGroup>(Record[Idx++]);
3739 bool IsUserSupplied = Record[Idx++];
3740 bool IsFramework = Record[Idx++];
3741 bool IgnoreSysRoot = Record[Idx++];
3742 bool IsInternal = Record[Idx++];
3743 bool ImplicitExternC = Record[Idx++];
3744 HSOpts.UserEntries.push_back(
3745 HeaderSearchOptions::Entry(Path, Group, IsUserSupplied, IsFramework,
3746 IgnoreSysRoot, IsInternal, ImplicitExternC));
3747 }
3748
3749 // System header prefixes.
3750 for (unsigned N = Record[Idx++]; N; --N) {
3751 std::string Prefix = ReadString(Record, Idx);
3752 bool IsSystemHeader = Record[Idx++];
3753 HSOpts.SystemHeaderPrefixes.push_back(
3754 HeaderSearchOptions::SystemHeaderPrefix(Prefix, IsSystemHeader));
3755 }
3756
3757 HSOpts.ResourceDir = ReadString(Record, Idx);
3758 HSOpts.ModuleCachePath = ReadString(Record, Idx);
3759 HSOpts.DisableModuleHash = Record[Idx++];
3760 HSOpts.UseBuiltinIncludes = Record[Idx++];
3761 HSOpts.UseStandardSystemIncludes = Record[Idx++];
3762 HSOpts.UseStandardCXXIncludes = Record[Idx++];
3763 HSOpts.UseLibcxx = Record[Idx++];
3764
3765 return Listener.ReadHeaderSearchOptions(HSOpts, Complain);
3766}
3767
Douglas Gregora71a7d82012-10-24 20:05:57 +00003768bool ASTReader::ParsePreprocessorOptions(const RecordData &Record,
3769 bool Complain,
Douglas Gregor87699242012-10-25 00:07:54 +00003770 ASTReaderListener &Listener,
3771 std::string &SuggestedPredefines) {
Douglas Gregora71a7d82012-10-24 20:05:57 +00003772 PreprocessorOptions PPOpts;
3773 unsigned Idx = 0;
3774
3775 // Macro definitions/undefs
3776 for (unsigned N = Record[Idx++]; N; --N) {
3777 std::string Macro = ReadString(Record, Idx);
3778 bool IsUndef = Record[Idx++];
3779 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef));
3780 }
3781
3782 // Includes
3783 for (unsigned N = Record[Idx++]; N; --N) {
3784 PPOpts.Includes.push_back(ReadString(Record, Idx));
3785 }
3786
3787 // Macro Includes
3788 for (unsigned N = Record[Idx++]; N; --N) {
3789 PPOpts.MacroIncludes.push_back(ReadString(Record, Idx));
3790 }
3791
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003792 PPOpts.UsePredefines = Record[Idx++];
Douglas Gregora71a7d82012-10-24 20:05:57 +00003793 PPOpts.ImplicitPCHInclude = ReadString(Record, Idx);
3794 PPOpts.ImplicitPTHInclude = ReadString(Record, Idx);
3795 PPOpts.ObjCXXARCStandardLibrary =
3796 static_cast<ObjCXXARCStandardLibraryKind>(Record[Idx++]);
Douglas Gregor87699242012-10-25 00:07:54 +00003797 SuggestedPredefines.clear();
3798 return Listener.ReadPreprocessorOptions(PPOpts, Complain,
3799 SuggestedPredefines);
Douglas Gregora71a7d82012-10-24 20:05:57 +00003800}
3801
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003802std::pair<ModuleFile *, unsigned>
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003803ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003804 GlobalPreprocessedEntityMapType::iterator
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003805 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003806 assert(I != GlobalPreprocessedEntityMap.end() &&
3807 "Corrupted global preprocessed entity map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003808 ModuleFile *M = I->second;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003809 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
3810 return std::make_pair(M, LocalIndex);
3811}
3812
Argyrios Kyrtzidis632dcc92012-10-02 16:10:51 +00003813std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
3814ASTReader::getModulePreprocessedEntities(ModuleFile &Mod) const {
3815 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
3816 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
3817 Mod.NumPreprocessedEntities);
3818
3819 return std::make_pair(PreprocessingRecord::iterator(),
3820 PreprocessingRecord::iterator());
3821}
3822
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00003823std::pair<ASTReader::ModuleDeclIterator, ASTReader::ModuleDeclIterator>
3824ASTReader::getModuleFileLevelDecls(ModuleFile &Mod) {
3825 return std::make_pair(ModuleDeclIterator(this, &Mod, Mod.FileSortedDecls),
3826 ModuleDeclIterator(this, &Mod,
3827 Mod.FileSortedDecls + Mod.NumFileSortedDecls));
3828}
3829
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003830PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
3831 PreprocessedEntityID PPID = Index+1;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003832 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3833 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003834 unsigned LocalIndex = PPInfo.second;
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003835 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
Douglas Gregor4800a5c2011-02-08 21:58:10 +00003836
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003837 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003838 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003839
3840 unsigned Code = M.PreprocessorDetailCursor.ReadCode();
3841 switch (Code) {
3842 case llvm::bitc::END_BLOCK:
3843 return 0;
3844
3845 case llvm::bitc::ENTER_SUBBLOCK:
3846 Error("unexpected subblock record in preprocessor detail block");
3847 return 0;
3848
3849 case llvm::bitc::DEFINE_ABBREV:
3850 Error("unexpected abbrevation record in preprocessor detail block");
3851 return 0;
3852
3853 default:
3854 break;
3855 }
3856
3857 if (!PP.getPreprocessingRecord()) {
3858 Error("no preprocessing record");
3859 return 0;
3860 }
3861
3862 // Read the record.
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003863 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
3864 ReadSourceLocation(M, PPOffs.End));
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003865 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
3866 const char *BlobStart = 0;
3867 unsigned BlobLen = 0;
3868 RecordData Record;
3869 PreprocessorDetailRecordTypes RecType =
3870 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.ReadRecord(
3871 Code, Record, BlobStart, BlobLen);
3872 switch (RecType) {
3873 case PPD_MACRO_EXPANSION: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003874 bool isBuiltin = Record[0];
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003875 IdentifierInfo *Name = 0;
3876 MacroDefinition *Def = 0;
3877 if (isBuiltin)
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003878 Name = getLocalIdentifier(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003879 else {
3880 PreprocessedEntityID
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003881 GlobalID = getGlobalPreprocessedEntityID(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003882 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
3883 }
3884
3885 MacroExpansion *ME;
3886 if (isBuiltin)
3887 ME = new (PPRec) MacroExpansion(Name, Range);
3888 else
3889 ME = new (PPRec) MacroExpansion(Def, Range);
3890
3891 return ME;
3892 }
3893
3894 case PPD_MACRO_DEFINITION: {
3895 // Decode the identifier info and then check again; if the macro is
3896 // still defined and associated with the identifier,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003897 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003898 MacroDefinition *MD
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003899 = new (PPRec) MacroDefinition(II, Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003900
3901 if (DeserializationListener)
3902 DeserializationListener->MacroDefinitionRead(PPID, MD);
3903
3904 return MD;
3905 }
3906
3907 case PPD_INCLUSION_DIRECTIVE: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003908 const char *FullFileNameStart = BlobStart + Record[0];
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00003909 StringRef FullFileName(FullFileNameStart, BlobLen - Record[0]);
3910 const FileEntry *File = 0;
3911 if (!FullFileName.empty())
3912 File = PP.getFileManager().getFile(FullFileName);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003913
3914 // FIXME: Stable encoding
3915 InclusionDirective::InclusionKind Kind
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003916 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003917 InclusionDirective *ID
3918 = new (PPRec) InclusionDirective(PPRec, Kind,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003919 StringRef(BlobStart, Record[0]),
Argyrios Kyrtzidis8dd927c2012-10-02 16:10:46 +00003920 Record[1], Record[3],
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003921 File,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003922 Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003923 return ID;
3924 }
3925 }
David Blaikie7530c032012-01-17 06:56:22 +00003926
3927 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00003928}
3929
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003930/// \brief \arg SLocMapI points at a chunk of a module that contains no
3931/// preprocessed entities or the entities it contains are not the ones we are
3932/// looking for. Find the next module that contains entities and return the ID
3933/// of the first entry.
3934PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
3935 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
3936 ++SLocMapI;
3937 for (GlobalSLocOffsetMapType::const_iterator
3938 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003939 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003940 if (M.NumPreprocessedEntities)
3941 return getGlobalPreprocessedEntityID(M, M.BasePreprocessedEntityID);
3942 }
3943
3944 return getTotalNumPreprocessedEntities();
3945}
3946
3947namespace {
3948
3949template <unsigned PPEntityOffset::*PPLoc>
3950struct PPEntityComp {
3951 const ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003952 ModuleFile &M;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003953
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003954 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) { }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003955
Benjamin Kramer88df1252011-09-21 06:42:26 +00003956 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
3957 SourceLocation LHS = getLoc(L);
3958 SourceLocation RHS = getLoc(R);
3959 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3960 }
3961
3962 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003963 SourceLocation LHS = getLoc(L);
3964 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3965 }
3966
Benjamin Kramer88df1252011-09-21 06:42:26 +00003967 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003968 SourceLocation RHS = getLoc(R);
3969 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3970 }
3971
3972 SourceLocation getLoc(const PPEntityOffset &PPE) const {
3973 return Reader.ReadSourceLocation(M, PPE.*PPLoc);
3974 }
3975};
3976
3977}
3978
3979/// \brief Returns the first preprocessed entity ID that ends after \arg BLoc.
3980PreprocessedEntityID
3981ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const {
3982 if (SourceMgr.isLocalSourceLocation(BLoc))
3983 return getTotalNumPreprocessedEntities();
3984
3985 GlobalSLocOffsetMapType::const_iterator
3986 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3987 BLoc.getOffset());
3988 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3989 "Corrupted global sloc offset map");
3990
3991 if (SLocMapI->second->NumPreprocessedEntities == 0)
3992 return findNextPreprocessedEntity(SLocMapI);
3993
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003994 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003995 typedef const PPEntityOffset *pp_iterator;
3996 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3997 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
Argyrios Kyrtzidis4cd06342011-09-22 21:17:02 +00003998
3999 size_t Count = M.NumPreprocessedEntities;
4000 size_t Half;
4001 pp_iterator First = pp_begin;
4002 pp_iterator PPI;
4003
4004 // Do a binary search manually instead of using std::lower_bound because
4005 // The end locations of entities may be unordered (when a macro expansion
4006 // is inside another macro argument), but for this case it is not important
4007 // whether we get the first macro expansion or its containing macro.
4008 while (Count > 0) {
4009 Half = Count/2;
4010 PPI = First;
4011 std::advance(PPI, Half);
4012 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
4013 BLoc)){
4014 First = PPI;
4015 ++First;
4016 Count = Count - Half - 1;
4017 } else
4018 Count = Half;
4019 }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00004020
4021 if (PPI == pp_end)
4022 return findNextPreprocessedEntity(SLocMapI);
4023
4024 return getGlobalPreprocessedEntityID(M,
4025 M.BasePreprocessedEntityID + (PPI - pp_begin));
4026}
4027
4028/// \brief Returns the first preprocessed entity ID that begins after \arg ELoc.
4029PreprocessedEntityID
4030ASTReader::findEndPreprocessedEntity(SourceLocation ELoc) const {
4031 if (SourceMgr.isLocalSourceLocation(ELoc))
4032 return getTotalNumPreprocessedEntities();
4033
4034 GlobalSLocOffsetMapType::const_iterator
4035 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
4036 ELoc.getOffset());
4037 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
4038 "Corrupted global sloc offset map");
4039
4040 if (SLocMapI->second->NumPreprocessedEntities == 0)
4041 return findNextPreprocessedEntity(SLocMapI);
4042
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004043 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00004044 typedef const PPEntityOffset *pp_iterator;
4045 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
4046 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
4047 pp_iterator PPI =
4048 std::upper_bound(pp_begin, pp_end, ELoc,
4049 PPEntityComp<&PPEntityOffset::Begin>(*this, M));
4050
4051 if (PPI == pp_end)
4052 return findNextPreprocessedEntity(SLocMapI);
4053
4054 return getGlobalPreprocessedEntityID(M,
4055 M.BasePreprocessedEntityID + (PPI - pp_begin));
4056}
4057
4058/// \brief Returns a pair of [Begin, End) indices of preallocated
4059/// preprocessed entities that \arg Range encompasses.
4060std::pair<unsigned, unsigned>
4061 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
4062 if (Range.isInvalid())
4063 return std::make_pair(0,0);
4064 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
4065
4066 PreprocessedEntityID BeginID = findBeginPreprocessedEntity(Range.getBegin());
4067 PreprocessedEntityID EndID = findEndPreprocessedEntity(Range.getEnd());
4068 return std::make_pair(BeginID, EndID);
4069}
4070
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004071/// \brief Optionally returns true or false if the preallocated preprocessed
4072/// entity with index \arg Index came from file \arg FID.
4073llvm::Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
4074 FileID FID) {
4075 if (FID.isInvalid())
4076 return false;
4077
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004078 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
4079 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004080 unsigned LocalIndex = PPInfo.second;
4081 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
4082
4083 SourceLocation Loc = ReadSourceLocation(M, PPOffs.Begin);
4084 if (Loc.isInvalid())
4085 return false;
4086
4087 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
4088 return true;
4089 else
4090 return false;
4091}
4092
Douglas Gregord10a3812011-08-25 18:14:34 +00004093namespace {
4094 /// \brief Visitor used to search for information about a header file.
4095 class HeaderFileInfoVisitor {
4096 ASTReader &Reader;
4097 const FileEntry *FE;
4098
4099 llvm::Optional<HeaderFileInfo> HFI;
4100
4101 public:
4102 HeaderFileInfoVisitor(ASTReader &Reader, const FileEntry *FE)
4103 : Reader(Reader), FE(FE) { }
4104
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004105 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregord10a3812011-08-25 18:14:34 +00004106 HeaderFileInfoVisitor *This
4107 = static_cast<HeaderFileInfoVisitor *>(UserData);
4108
4109 HeaderFileInfoTrait Trait(This->Reader, M,
4110 &This->Reader.getPreprocessor().getHeaderSearchInfo(),
4111 M.HeaderFileFrameworkStrings,
4112 This->FE->getName());
4113
4114 HeaderFileInfoLookupTable *Table
4115 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
4116 if (!Table)
4117 return false;
4118
4119 // Look in the on-disk hash table for an entry for this file name.
4120 HeaderFileInfoLookupTable::iterator Pos = Table->find(This->FE->getName(),
4121 &Trait);
4122 if (Pos == Table->end())
4123 return false;
4124
4125 This->HFI = *Pos;
4126 return true;
4127 }
4128
4129 llvm::Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
4130 };
4131}
4132
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004133HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Douglas Gregord10a3812011-08-25 18:14:34 +00004134 HeaderFileInfoVisitor Visitor(*this, FE);
4135 ModuleMgr.visit(&HeaderFileInfoVisitor::visit, &Visitor);
4136 if (llvm::Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo()) {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004137 if (Listener)
Douglas Gregord10a3812011-08-25 18:14:34 +00004138 Listener->ReadHeaderFileInfo(*HFI, FE->getUID());
4139 return *HFI;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004140 }
4141
4142 return HeaderFileInfo();
4143}
4144
David Blaikied6471f72011-09-25 23:23:43 +00004145void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00004146 for (ModuleIterator I = ModuleMgr.begin(), E = ModuleMgr.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004147 ModuleFile &F = *(*I);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004148 unsigned Idx = 0;
4149 while (Idx < F.PragmaDiagMappings.size()) {
4150 SourceLocation Loc = ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004151 Diag.DiagStates.push_back(*Diag.GetCurDiagState());
4152 Diag.DiagStatePoints.push_back(
4153 DiagnosticsEngine::DiagStatePoint(&Diag.DiagStates.back(),
4154 FullSourceLoc(Loc, SourceMgr)));
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004155 while (1) {
4156 assert(Idx < F.PragmaDiagMappings.size() &&
4157 "Invalid data, didn't find '-1' marking end of diag/map pairs");
4158 if (Idx >= F.PragmaDiagMappings.size()) {
4159 break; // Something is messed up but at least avoid infinite loop in
4160 // release build.
4161 }
4162 unsigned DiagID = F.PragmaDiagMappings[Idx++];
4163 if (DiagID == (unsigned)-1) {
4164 break; // no more diag/map pairs for this location.
4165 }
4166 diag::Mapping Map = (diag::Mapping)F.PragmaDiagMappings[Idx++];
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004167 DiagnosticMappingInfo MappingInfo = Diag.makeMappingInfo(Map, Loc);
4168 Diag.GetCurDiagState()->setMappingInfo(DiagID, MappingInfo);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004169 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00004170 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00004171 }
4172}
4173
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004174/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004175ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Douglas Gregora119da02011-08-02 16:26:37 +00004176 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
Jonathan D. Turnere9b76c12011-07-20 21:31:32 +00004177 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004178 ModuleFile *M = I->second;
Douglas Gregore3605012011-08-02 18:32:54 +00004179 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004180}
4181
4182/// \brief Read and return the type with the given index..
Douglas Gregor2cf26342009-04-09 22:27:44 +00004183///
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004184/// The index is the type ID, shifted and minus the number of predefs. This
4185/// routine actually reads the record corresponding to the type at the given
4186/// location. It is a helper routine for GetType, which deals with reading type
4187/// IDs.
Douglas Gregor393f2492011-07-22 00:38:23 +00004188QualType ASTReader::readTypeRecord(unsigned Index) {
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004189 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004190 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00004191
Douglas Gregor0b748912009-04-14 21:18:50 +00004192 // Keep track of where we are in the stream, then jump back there
4193 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004194 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00004195
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004196 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redl27372b42010-08-11 18:52:41 +00004197
Douglas Gregord89275b2009-07-06 18:54:52 +00004198 // Note that we are loading a type record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00004199 Deserializing AType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00004200
Douglas Gregor393f2492011-07-22 00:38:23 +00004201 unsigned Idx = 0;
Sebastian Redlc3632732010-10-05 15:59:54 +00004202 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004203 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004204 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004205 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
4206 case TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004207 if (Record.size() != 2) {
4208 Error("Incorrect encoding of extended qualifier type");
4209 return QualType();
4210 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004211 QualType Base = readType(*Loc.F, Record, Idx);
4212 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
Douglas Gregor35942772011-09-09 21:34:22 +00004213 return Context.getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00004214 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004215
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004216 case TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004217 if (Record.size() != 1) {
4218 Error("Incorrect encoding of complex type");
4219 return QualType();
4220 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004221 QualType ElemType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004222 return Context.getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004223 }
4224
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004225 case TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004226 if (Record.size() != 1) {
4227 Error("Incorrect encoding of pointer type");
4228 return QualType();
4229 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004230 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004231 return Context.getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004232 }
4233
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004234 case TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004235 if (Record.size() != 1) {
4236 Error("Incorrect encoding of block pointer type");
4237 return QualType();
4238 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004239 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004240 return Context.getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004241 }
4242
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004243 case TYPE_LVALUE_REFERENCE: {
Richard Smithdf1550f2011-04-12 10:38:03 +00004244 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004245 Error("Incorrect encoding of lvalue reference type");
4246 return QualType();
4247 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004248 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004249 return Context.getLValueReferenceType(PointeeType, Record[1]);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004250 }
4251
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004252 case TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004253 if (Record.size() != 1) {
4254 Error("Incorrect encoding of rvalue reference type");
4255 return QualType();
4256 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004257 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004258 return Context.getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004259 }
4260
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004261 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00004262 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004263 Error("Incorrect encoding of member pointer type");
4264 return QualType();
4265 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004266 QualType PointeeType = readType(*Loc.F, Record, Idx);
4267 QualType ClassType = readType(*Loc.F, Record, Idx);
Douglas Gregor1ab55e92010-12-10 17:03:06 +00004268 if (PointeeType.isNull() || ClassType.isNull())
4269 return QualType();
4270
Douglas Gregor35942772011-09-09 21:34:22 +00004271 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00004272 }
4273
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004274 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004275 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004276 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4277 unsigned IndexTypeQuals = Record[2];
4278 unsigned Idx = 3;
4279 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004280 return Context.getConstantArrayType(ElementType, Size,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004281 ASM, IndexTypeQuals);
4282 }
4283
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004284 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004285 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004286 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4287 unsigned IndexTypeQuals = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004288 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004289 }
4290
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004291 case TYPE_VARIABLE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004292 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregor0b748912009-04-14 21:18:50 +00004293 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4294 unsigned IndexTypeQuals = Record[2];
Sebastian Redlc3632732010-10-05 15:59:54 +00004295 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
4296 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
Douglas Gregor35942772011-09-09 21:34:22 +00004297 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004298 ASM, IndexTypeQuals,
4299 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004300 }
4301
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004302 case TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00004303 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004304 Error("incorrect encoding of vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004305 return QualType();
4306 }
4307
Douglas Gregor393f2492011-07-22 00:38:23 +00004308 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004309 unsigned NumElements = Record[1];
Bob Wilsone86d78c2010-11-10 21:56:12 +00004310 unsigned VecKind = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004311 return Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00004312 (VectorType::VectorKind)VecKind);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004313 }
4314
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004315 case TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00004316 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004317 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004318 return QualType();
4319 }
4320
Douglas Gregor393f2492011-07-22 00:38:23 +00004321 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004322 unsigned NumElements = Record[1];
Douglas Gregor35942772011-09-09 21:34:22 +00004323 return Context.getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004324 }
4325
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004326 case TYPE_FUNCTION_NO_PROTO: {
John McCallf85e1932011-06-15 23:02:42 +00004327 if (Record.size() != 6) {
Douglas Gregora02b1472009-04-28 21:53:25 +00004328 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004329 return QualType();
4330 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004331 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCallf85e1932011-06-15 23:02:42 +00004332 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
4333 (CallingConv)Record[4], Record[5]);
Douglas Gregor35942772011-09-09 21:34:22 +00004334 return Context.getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004335 }
4336
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004337 case TYPE_FUNCTION_PROTO: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004338 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCalle23cf432010-12-14 08:05:40 +00004339
4340 FunctionProtoType::ExtProtoInfo EPI;
4341 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
Eli Friedmana49218e2011-04-09 08:18:08 +00004342 /*hasregparm*/ Record[2],
4343 /*regparm*/ Record[3],
John McCallf85e1932011-06-15 23:02:42 +00004344 static_cast<CallingConv>(Record[4]),
4345 /*produces*/ Record[5]);
John McCalle23cf432010-12-14 08:05:40 +00004346
John McCallf85e1932011-06-15 23:02:42 +00004347 unsigned Idx = 6;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004348 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004349 SmallVector<QualType, 16> ParamTypes;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004350 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00004351 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
John McCalle23cf432010-12-14 08:05:40 +00004352
4353 EPI.Variadic = Record[Idx++];
Richard Smitheefb3d52012-02-10 09:58:53 +00004354 EPI.HasTrailingReturn = Record[Idx++];
John McCalle23cf432010-12-14 08:05:40 +00004355 EPI.TypeQuals = Record[Idx++];
Douglas Gregorc938c162011-01-26 05:01:58 +00004356 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Sebastian Redl60618fa2011-03-12 11:50:43 +00004357 ExceptionSpecificationType EST =
4358 static_cast<ExceptionSpecificationType>(Record[Idx++]);
4359 EPI.ExceptionSpecType = EST;
Douglas Gregorb0d06e22012-04-04 00:34:49 +00004360 SmallVector<QualType, 2> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00004361 if (EST == EST_Dynamic) {
4362 EPI.NumExceptions = Record[Idx++];
Sebastian Redl60618fa2011-03-12 11:50:43 +00004363 for (unsigned I = 0; I != EPI.NumExceptions; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00004364 Exceptions.push_back(readType(*Loc.F, Record, Idx));
Sebastian Redl60618fa2011-03-12 11:50:43 +00004365 EPI.Exceptions = Exceptions.data();
4366 } else if (EST == EST_ComputedNoexcept) {
4367 EPI.NoexceptExpr = ReadExpr(*Loc.F);
Richard Smith7bb698a2012-04-21 17:47:47 +00004368 } else if (EST == EST_Uninstantiated) {
4369 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
4370 EPI.ExceptionSpecTemplate = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Richard Smithb9d0b762012-07-27 04:22:15 +00004371 } else if (EST == EST_Unevaluated) {
4372 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Sebastian Redl60618fa2011-03-12 11:50:43 +00004373 }
Douglas Gregor35942772011-09-09 21:34:22 +00004374 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams,
John McCalle23cf432010-12-14 08:05:40 +00004375 EPI);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004376 }
4377
Douglas Gregor409448c2011-07-21 22:35:25 +00004378 case TYPE_UNRESOLVED_USING: {
4379 unsigned Idx = 0;
Douglas Gregor35942772011-09-09 21:34:22 +00004380 return Context.getTypeDeclType(
Douglas Gregor409448c2011-07-21 22:35:25 +00004381 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
4382 }
4383
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004384 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004385 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004386 Error("incorrect encoding of typedef type");
4387 return QualType();
4388 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004389 unsigned Idx = 0;
4390 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004391 QualType Canonical = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004392 if (!Canonical.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004393 Canonical = Context.getCanonicalType(Canonical);
4394 return Context.getTypedefType(Decl, Canonical);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004395 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004396
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004397 case TYPE_TYPEOF_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00004398 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004399
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004400 case TYPE_TYPEOF: {
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004401 if (Record.size() != 1) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004402 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004403 return QualType();
4404 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004405 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004406 return Context.getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004407 }
Mike Stump1eb44332009-09-09 15:08:12 +00004408
Douglas Gregorf8af9822012-02-12 18:42:33 +00004409 case TYPE_DECLTYPE: {
4410 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
4411 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
4412 }
Anders Carlsson395b4752009-06-24 19:06:50 +00004413
Sean Huntca63c202011-05-24 22:41:36 +00004414 case TYPE_UNARY_TRANSFORM: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004415 QualType BaseType = readType(*Loc.F, Record, Idx);
4416 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Sean Huntca63c202011-05-24 22:41:36 +00004417 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004418 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
Sean Huntca63c202011-05-24 22:41:36 +00004419 }
4420
Richard Smith34b41d92011-02-20 03:19:35 +00004421 case TYPE_AUTO:
Douglas Gregor35942772011-09-09 21:34:22 +00004422 return Context.getAutoType(readType(*Loc.F, Record, Idx));
Richard Smith34b41d92011-02-20 03:19:35 +00004423
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004424 case TYPE_RECORD: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004425 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004426 Error("incorrect encoding of record type");
4427 return QualType();
4428 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004429 unsigned Idx = 0;
4430 bool IsDependent = Record[Idx++];
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004431 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
4432 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
4433 QualType T = Context.getRecordType(RD);
John McCallf4c73712011-01-19 06:33:43 +00004434 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004435 return T;
4436 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004437
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004438 case TYPE_ENUM: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004439 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004440 Error("incorrect encoding of enum type");
4441 return QualType();
4442 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004443 unsigned Idx = 0;
4444 bool IsDependent = Record[Idx++];
4445 QualType T
Douglas Gregor35942772011-09-09 21:34:22 +00004446 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
John McCallf4c73712011-01-19 06:33:43 +00004447 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004448 return T;
4449 }
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00004450
John McCall9d156a72011-01-06 01:58:22 +00004451 case TYPE_ATTRIBUTED: {
4452 if (Record.size() != 3) {
4453 Error("incorrect encoding of attributed type");
4454 return QualType();
4455 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004456 QualType modifiedType = readType(*Loc.F, Record, Idx);
4457 QualType equivalentType = readType(*Loc.F, Record, Idx);
John McCall9d156a72011-01-06 01:58:22 +00004458 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
Douglas Gregor35942772011-09-09 21:34:22 +00004459 return Context.getAttributedType(kind, modifiedType, equivalentType);
John McCall9d156a72011-01-06 01:58:22 +00004460 }
4461
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004462 case TYPE_PAREN: {
4463 if (Record.size() != 1) {
4464 Error("incorrect encoding of paren type");
4465 return QualType();
4466 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004467 QualType InnerType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004468 return Context.getParenType(InnerType);
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004469 }
4470
Douglas Gregor7536dd52010-12-20 02:24:11 +00004471 case TYPE_PACK_EXPANSION: {
Douglas Gregorf9997a02011-02-01 15:24:58 +00004472 if (Record.size() != 2) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00004473 Error("incorrect encoding of pack expansion type");
4474 return QualType();
4475 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004476 QualType Pattern = readType(*Loc.F, Record, Idx);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004477 if (Pattern.isNull())
4478 return QualType();
Douglas Gregorcded4f62011-01-14 17:04:44 +00004479 llvm::Optional<unsigned> NumExpansions;
4480 if (Record[1])
4481 NumExpansions = Record[1] - 1;
Douglas Gregor35942772011-09-09 21:34:22 +00004482 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004483 }
4484
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004485 case TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004486 unsigned Idx = 0;
4487 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004488 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004489 QualType NamedType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004490 return Context.getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00004491 }
4492
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004493 case TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004494 unsigned Idx = 0;
Douglas Gregor409448c2011-07-21 22:35:25 +00004495 ObjCInterfaceDecl *ItfD
4496 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004497 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
John McCallc12c5bb2010-05-15 11:32:37 +00004498 }
4499
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004500 case TYPE_OBJC_OBJECT: {
John McCallc12c5bb2010-05-15 11:32:37 +00004501 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004502 QualType Base = readType(*Loc.F, Record, Idx);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004503 unsigned NumProtos = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004504 SmallVector<ObjCProtocolDecl*, 4> Protos;
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004505 for (unsigned I = 0; I != NumProtos; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +00004506 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004507 return Context.getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004508 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004509
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004510 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004511 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004512 QualType Pointee = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004513 return Context.getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004514 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00004515
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004516 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCall49a832b2009-10-18 09:09:24 +00004517 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004518 QualType Parm = readType(*Loc.F, Record, Idx);
4519 QualType Replacement = readType(*Loc.F, Record, Idx);
John McCall49a832b2009-10-18 09:09:24 +00004520 return
Douglas Gregor35942772011-09-09 21:34:22 +00004521 Context.getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
John McCall49a832b2009-10-18 09:09:24 +00004522 Replacement);
4523 }
John McCall3cb0ebd2010-03-10 03:28:59 +00004524
Douglas Gregorc3069d62011-01-14 02:55:32 +00004525 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
4526 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004527 QualType Parm = readType(*Loc.F, Record, Idx);
Douglas Gregorc3069d62011-01-14 02:55:32 +00004528 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004529 return Context.getSubstTemplateTypeParmPackType(
Douglas Gregorc3069d62011-01-14 02:55:32 +00004530 cast<TemplateTypeParmType>(Parm),
4531 ArgPack);
4532 }
4533
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004534 case TYPE_INJECTED_CLASS_NAME: {
Douglas Gregor409448c2011-07-21 22:35:25 +00004535 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004536 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004537 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004538 // for AST reading, too much interdependencies.
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004539 return
Douglas Gregor35942772011-09-09 21:34:22 +00004540 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00004541 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004542
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004543 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004544 unsigned Idx = 0;
4545 unsigned Depth = Record[Idx++];
4546 unsigned Index = Record[Idx++];
4547 bool Pack = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004548 TemplateTypeParmDecl *D
4549 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004550 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004551 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004552
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004553 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004554 unsigned Idx = 0;
4555 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004556 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004557 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004558 QualType Canon = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004559 if (!Canon.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004560 Canon = Context.getCanonicalType(Canon);
4561 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004562 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004563
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004564 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004565 unsigned Idx = 0;
4566 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004567 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004568 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004569 unsigned NumArgs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004570 SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004571 Args.reserve(NumArgs);
4572 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00004573 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004574 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004575 Args.size(), Args.data());
4576 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004577
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004578 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004579 unsigned Idx = 0;
4580
4581 // ArrayType
Douglas Gregor393f2492011-07-22 00:38:23 +00004582 QualType ElementType = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004583 ArrayType::ArraySizeModifier ASM
4584 = (ArrayType::ArraySizeModifier)Record[Idx++];
4585 unsigned IndexTypeQuals = Record[Idx++];
4586
4587 // DependentSizedArrayType
Sebastian Redlc3632732010-10-05 15:59:54 +00004588 Expr *NumElts = ReadExpr(*Loc.F);
4589 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004590
Douglas Gregor35942772011-09-09 21:34:22 +00004591 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004592 IndexTypeQuals, Brackets);
4593 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004594
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004595 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004596 unsigned Idx = 0;
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004597 bool IsDependent = Record[Idx++];
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004598 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004599 SmallVector<TemplateArgument, 8> Args;
Sebastian Redlc3632732010-10-05 15:59:54 +00004600 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004601 QualType Underlying = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004602 QualType T;
Richard Smith3e4c6c42011-05-05 21:57:07 +00004603 if (Underlying.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004604 T = Context.getCanonicalTemplateSpecializationType(Name, Args.data(),
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004605 Args.size());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004606 else
Douglas Gregor35942772011-09-09 21:34:22 +00004607 T = Context.getTemplateSpecializationType(Name, Args.data(),
Richard Smith3e4c6c42011-05-05 21:57:07 +00004608 Args.size(), Underlying);
John McCallf4c73712011-01-19 06:33:43 +00004609 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004610 return T;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004611 }
Eli Friedmanb001de72011-10-06 23:00:33 +00004612
4613 case TYPE_ATOMIC: {
4614 if (Record.size() != 1) {
4615 Error("Incorrect encoding of atomic type");
4616 return QualType();
4617 }
4618 QualType ValueType = readType(*Loc.F, Record, Idx);
4619 return Context.getAtomicType(ValueType);
4620 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00004621 }
David Blaikie7530c032012-01-17 06:56:22 +00004622 llvm_unreachable("Invalid TypeCode!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00004623}
4624
Sebastian Redlc3632732010-10-05 15:59:54 +00004625class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004626 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004627 ModuleFile &F;
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004628 const ASTReader::RecordData &Record;
John McCalla1ee0c52009-10-16 21:56:05 +00004629 unsigned &Idx;
4630
Sebastian Redlc3632732010-10-05 15:59:54 +00004631 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
4632 unsigned &I) {
4633 return Reader.ReadSourceLocation(F, R, I);
4634 }
4635
Douglas Gregor409448c2011-07-21 22:35:25 +00004636 template<typename T>
4637 T *ReadDeclAs(const ASTReader::RecordData &Record, unsigned &Idx) {
4638 return Reader.ReadDeclAs<T>(F, Record, Idx);
4639 }
4640
John McCalla1ee0c52009-10-16 21:56:05 +00004641public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004642 TypeLocReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004643 const ASTReader::RecordData &Record, unsigned &Idx)
Benjamin Kramerfacde172012-06-06 17:32:50 +00004644 : Reader(Reader), F(F), Record(Record), Idx(Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +00004645 { }
John McCalla1ee0c52009-10-16 21:56:05 +00004646
John McCall51bd8032009-10-18 01:05:36 +00004647 // We want compile-time assurance that we've enumerated all of
4648 // these, so unfortunately we have to declare them first, then
4649 // define them out-of-line.
4650#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00004651#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00004652 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004653#include "clang/AST/TypeLocNodes.def"
4654
John McCall51bd8032009-10-18 01:05:36 +00004655 void VisitFunctionTypeLoc(FunctionTypeLoc);
4656 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004657};
4658
John McCall51bd8032009-10-18 01:05:36 +00004659void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00004660 // nothing to do
4661}
John McCall51bd8032009-10-18 01:05:36 +00004662void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004663 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorddf889a2010-01-18 18:04:31 +00004664 if (TL.needsExtraLocalData()) {
4665 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
4666 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
4667 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
4668 TL.setModeAttr(Record[Idx++]);
4669 }
John McCalla1ee0c52009-10-16 21:56:05 +00004670}
John McCall51bd8032009-10-18 01:05:36 +00004671void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004672 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004673}
John McCall51bd8032009-10-18 01:05:36 +00004674void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004675 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004676}
John McCall51bd8032009-10-18 01:05:36 +00004677void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004678 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004679}
John McCall51bd8032009-10-18 01:05:36 +00004680void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004681 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004682}
John McCall51bd8032009-10-18 01:05:36 +00004683void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004684 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004685}
John McCall51bd8032009-10-18 01:05:36 +00004686void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004687 TL.setStarLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +00004688 TL.setClassTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004689}
John McCall51bd8032009-10-18 01:05:36 +00004690void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004691 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
4692 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004693 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00004694 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004695 else
John McCall51bd8032009-10-18 01:05:36 +00004696 TL.setSizeExpr(0);
4697}
4698void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
4699 VisitArrayTypeLoc(TL);
4700}
4701void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
4702 VisitArrayTypeLoc(TL);
4703}
4704void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
4705 VisitArrayTypeLoc(TL);
4706}
4707void TypeLocReader::VisitDependentSizedArrayTypeLoc(
4708 DependentSizedArrayTypeLoc TL) {
4709 VisitArrayTypeLoc(TL);
4710}
4711void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
4712 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004713 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004714}
4715void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004716 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004717}
4718void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004719 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004720}
4721void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00004722 TL.setLocalRangeBegin(ReadSourceLocation(Record, Idx));
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004723 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4724 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara796aa442011-03-12 11:17:06 +00004725 TL.setLocalRangeEnd(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004726 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00004727 TL.setArg(i, ReadDeclAs<ParmVarDecl>(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004728 }
4729}
4730void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
4731 VisitFunctionTypeLoc(TL);
4732}
4733void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
4734 VisitFunctionTypeLoc(TL);
4735}
John McCalled976492009-12-04 22:46:56 +00004736void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004737 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalled976492009-12-04 22:46:56 +00004738}
John McCall51bd8032009-10-18 01:05:36 +00004739void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004740 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004741}
4742void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004743 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4744 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4745 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004746}
4747void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004748 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4749 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4750 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4751 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004752}
4753void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004754 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004755}
Sean Huntca63c202011-05-24 22:41:36 +00004756void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
4757 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4758 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4759 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4760 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
4761}
Richard Smith34b41d92011-02-20 03:19:35 +00004762void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
4763 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4764}
John McCall51bd8032009-10-18 01:05:36 +00004765void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004766 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004767}
4768void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004769 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004770}
John McCall9d156a72011-01-06 01:58:22 +00004771void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
4772 TL.setAttrNameLoc(ReadSourceLocation(Record, Idx));
4773 if (TL.hasAttrOperand()) {
4774 SourceRange range;
4775 range.setBegin(ReadSourceLocation(Record, Idx));
4776 range.setEnd(ReadSourceLocation(Record, Idx));
4777 TL.setAttrOperandParensRange(range);
4778 }
4779 if (TL.hasAttrExprOperand()) {
4780 if (Record[Idx++])
4781 TL.setAttrExprOperand(Reader.ReadExpr(F));
4782 else
4783 TL.setAttrExprOperand(0);
4784 } else if (TL.hasAttrEnumOperand())
4785 TL.setAttrEnumOperandLoc(ReadSourceLocation(Record, Idx));
4786}
John McCall51bd8032009-10-18 01:05:36 +00004787void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004788 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004789}
John McCall49a832b2009-10-18 09:09:24 +00004790void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
4791 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004792 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall49a832b2009-10-18 09:09:24 +00004793}
Douglas Gregorc3069d62011-01-14 02:55:32 +00004794void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
4795 SubstTemplateTypeParmPackTypeLoc TL) {
4796 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4797}
John McCall51bd8032009-10-18 01:05:36 +00004798void TypeLocReader::VisitTemplateSpecializationTypeLoc(
4799 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004800 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004801 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
4802 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4803 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall833ca992009-10-29 08:12:44 +00004804 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4805 TL.setArgLocInfo(i,
Sebastian Redlc3632732010-10-05 15:59:54 +00004806 Reader.GetTemplateArgumentLocInfo(F,
4807 TL.getTypePtr()->getArg(i).getKind(),
4808 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004809}
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004810void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
4811 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4812 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4813}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004814void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004815 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor9e876872011-03-01 18:12:44 +00004816 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004817}
John McCall3cb0ebd2010-03-10 03:28:59 +00004818void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004819 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall3cb0ebd2010-03-10 03:28:59 +00004820}
Douglas Gregor4714c122010-03-31 17:34:00 +00004821void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004822 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor2494dd02011-03-01 01:34:45 +00004823 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004824 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004825}
John McCall33500952010-06-11 00:33:02 +00004826void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
4827 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004828 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor94fdffa2011-03-01 20:11:18 +00004829 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Abramo Bagnara66581d42012-02-06 22:45:07 +00004830 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004831 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004832 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4833 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004834 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
4835 TL.setArgLocInfo(I,
Sebastian Redlc3632732010-10-05 15:59:54 +00004836 Reader.GetTemplateArgumentLocInfo(F,
4837 TL.getTypePtr()->getArg(I).getKind(),
4838 Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004839}
Douglas Gregor7536dd52010-12-20 02:24:11 +00004840void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
4841 TL.setEllipsisLoc(ReadSourceLocation(Record, Idx));
4842}
John McCall51bd8032009-10-18 01:05:36 +00004843void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004844 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallc12c5bb2010-05-15 11:32:37 +00004845}
4846void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
4847 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00004848 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4849 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004850 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00004851 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004852}
John McCall54e14c42009-10-22 22:37:11 +00004853void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004854 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall54e14c42009-10-22 22:37:11 +00004855}
Eli Friedmanb001de72011-10-06 23:00:33 +00004856void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
4857 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4858 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4859 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4860}
John McCalla1ee0c52009-10-16 21:56:05 +00004861
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004862TypeSourceInfo *ASTReader::GetTypeSourceInfo(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004863 const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00004864 unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004865 QualType InfoTy = readType(F, Record, Idx);
John McCalla1ee0c52009-10-16 21:56:05 +00004866 if (InfoTy.isNull())
4867 return 0;
4868
Douglas Gregor35942772011-09-09 21:34:22 +00004869 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
Sebastian Redlc3632732010-10-05 15:59:54 +00004870 TypeLocReader TLR(*this, F, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00004871 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00004872 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00004873 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00004874}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004875
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004876QualType ASTReader::GetType(TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00004877 unsigned FastQuals = ID & Qualifiers::FastMask;
4878 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004879
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004880 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004881 QualType T;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004882 switch ((PredefinedTypeIDs)Index) {
4883 case PREDEF_TYPE_NULL_ID: return QualType();
Douglas Gregor35942772011-09-09 21:34:22 +00004884 case PREDEF_TYPE_VOID_ID: T = Context.VoidTy; break;
4885 case PREDEF_TYPE_BOOL_ID: T = Context.BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004886
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004887 case PREDEF_TYPE_CHAR_U_ID:
4888 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregor2cf26342009-04-09 22:27:44 +00004889 // FIXME: Check that the signedness of CharTy is correct!
Douglas Gregor35942772011-09-09 21:34:22 +00004890 T = Context.CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004891 break;
4892
Douglas Gregor35942772011-09-09 21:34:22 +00004893 case PREDEF_TYPE_UCHAR_ID: T = Context.UnsignedCharTy; break;
4894 case PREDEF_TYPE_USHORT_ID: T = Context.UnsignedShortTy; break;
4895 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break;
4896 case PREDEF_TYPE_ULONG_ID: T = Context.UnsignedLongTy; break;
4897 case PREDEF_TYPE_ULONGLONG_ID: T = Context.UnsignedLongLongTy; break;
4898 case PREDEF_TYPE_UINT128_ID: T = Context.UnsignedInt128Ty; break;
4899 case PREDEF_TYPE_SCHAR_ID: T = Context.SignedCharTy; break;
4900 case PREDEF_TYPE_WCHAR_ID: T = Context.WCharTy; break;
4901 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break;
4902 case PREDEF_TYPE_INT_ID: T = Context.IntTy; break;
4903 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break;
4904 case PREDEF_TYPE_LONGLONG_ID: T = Context.LongLongTy; break;
4905 case PREDEF_TYPE_INT128_ID: T = Context.Int128Ty; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004906 case PREDEF_TYPE_HALF_ID: T = Context.HalfTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004907 case PREDEF_TYPE_FLOAT_ID: T = Context.FloatTy; break;
4908 case PREDEF_TYPE_DOUBLE_ID: T = Context.DoubleTy; break;
4909 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context.LongDoubleTy; break;
4910 case PREDEF_TYPE_OVERLOAD_ID: T = Context.OverloadTy; break;
4911 case PREDEF_TYPE_BOUND_MEMBER: T = Context.BoundMemberTy; break;
John McCall3c3b7f92011-10-25 17:37:35 +00004912 case PREDEF_TYPE_PSEUDO_OBJECT: T = Context.PseudoObjectTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004913 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break;
4914 case PREDEF_TYPE_UNKNOWN_ANY: T = Context.UnknownAnyTy; break;
4915 case PREDEF_TYPE_NULLPTR_ID: T = Context.NullPtrTy; break;
4916 case PREDEF_TYPE_CHAR16_ID: T = Context.Char16Ty; break;
4917 case PREDEF_TYPE_CHAR32_ID: T = Context.Char32Ty; break;
4918 case PREDEF_TYPE_OBJC_ID: T = Context.ObjCBuiltinIdTy; break;
4919 case PREDEF_TYPE_OBJC_CLASS: T = Context.ObjCBuiltinClassTy; break;
4920 case PREDEF_TYPE_OBJC_SEL: T = Context.ObjCBuiltinSelTy; break;
4921 case PREDEF_TYPE_AUTO_DEDUCT: T = Context.getAutoDeductType(); break;
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004922
4923 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00004924 T = Context.getAutoRRefDeductType();
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004925 break;
John McCall0ddaeb92011-10-17 18:09:15 +00004926
4927 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
4928 T = Context.ARCUnbridgedCastTy;
4929 break;
4930
Meador Ingefb40e3f2012-07-01 15:57:25 +00004931 case PREDEF_TYPE_VA_LIST_TAG:
4932 T = Context.getVaListTagType();
4933 break;
Eli Friedmana6c66ce2012-08-31 00:14:07 +00004934
4935 case PREDEF_TYPE_BUILTIN_FN:
4936 T = Context.BuiltinFnTy;
4937 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004938 }
4939
4940 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00004941 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004942 }
4943
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004944 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004945 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl07a353c2010-07-14 20:26:45 +00004946 if (TypesLoaded[Index].isNull()) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004947 TypesLoaded[Index] = readTypeRecord(Index);
Douglas Gregor97475832010-10-05 18:37:06 +00004948 if (TypesLoaded[Index].isNull())
4949 return QualType();
4950
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004951 TypesLoaded[Index]->setFromAST();
Sebastian Redl30c514c2010-07-14 23:45:08 +00004952 if (DeserializationListener)
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004953 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1476ed42010-07-16 16:36:56 +00004954 TypesLoaded[Index]);
Sebastian Redl07a353c2010-07-14 20:26:45 +00004955 }
Mike Stump1eb44332009-09-09 15:08:12 +00004956
John McCall0953e762009-09-24 19:53:00 +00004957 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004958}
4959
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004960QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004961 return GetType(getGlobalTypeID(F, LocalID));
4962}
4963
4964serialization::TypeID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004965ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregora119da02011-08-02 16:26:37 +00004966 unsigned FastQuals = LocalID & Qualifiers::FastMask;
4967 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
4968
4969 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
4970 return LocalID;
4971
4972 ContinuousRangeMap<uint32_t, int, 2>::iterator I
4973 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
4974 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
4975
4976 unsigned GlobalIndex = LocalIndex + I->second;
4977 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
4978}
4979
John McCall833ca992009-10-29 08:12:44 +00004980TemplateArgumentLocInfo
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004981ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00004982 TemplateArgument::ArgKind Kind,
John McCall833ca992009-10-29 08:12:44 +00004983 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004984 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00004985 switch (Kind) {
4986 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00004987 return ReadExpr(F);
John McCall833ca992009-10-29 08:12:44 +00004988 case TemplateArgument::Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00004989 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00004990 case TemplateArgument::Template: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004991 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4992 Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004993 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004994 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregora7fc9012011-01-05 18:58:31 +00004995 SourceLocation());
4996 }
4997 case TemplateArgument::TemplateExpansion: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004998 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4999 Index);
Douglas Gregora7fc9012011-01-05 18:58:31 +00005000 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorba68eca2011-01-05 17:40:24 +00005001 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00005002 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregorba68eca2011-01-05 17:40:24 +00005003 EllipsisLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00005004 }
John McCall833ca992009-10-29 08:12:44 +00005005 case TemplateArgument::Null:
5006 case TemplateArgument::Integral:
5007 case TemplateArgument::Declaration:
Eli Friedmand7a6b162012-09-26 02:36:12 +00005008 case TemplateArgument::NullPtr:
John McCall833ca992009-10-29 08:12:44 +00005009 case TemplateArgument::Pack:
Eli Friedmand7a6b162012-09-26 02:36:12 +00005010 // FIXME: Is this right?
John McCall833ca992009-10-29 08:12:44 +00005011 return TemplateArgumentLocInfo();
5012 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00005013 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00005014}
5015
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005016TemplateArgumentLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005017ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00005018 const RecordData &Record, unsigned &Index) {
Sebastian Redlc3632732010-10-05 15:59:54 +00005019 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005020
5021 if (Arg.getKind() == TemplateArgument::Expression) {
5022 if (Record[Index++]) // bool InfoHasSameExpr.
5023 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
5024 }
Sebastian Redlc3632732010-10-05 15:59:54 +00005025 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00005026 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00005027}
5028
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005029Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall76bd1f32010-06-01 09:23:16 +00005030 return GetDecl(ID);
5031}
5032
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005033uint64_t ASTReader::readCXXBaseSpecifiers(ModuleFile &M, const RecordData &Record,
Douglas Gregore92b8a12011-08-04 00:01:48 +00005034 unsigned &Idx){
5035 if (Idx >= Record.size())
Douglas Gregor7c789c12010-10-29 22:39:52 +00005036 return 0;
Douglas Gregor7c789c12010-10-29 22:39:52 +00005037
Douglas Gregore92b8a12011-08-04 00:01:48 +00005038 unsigned LocalID = Record[Idx++];
5039 return getGlobalBitOffset(M, M.CXXBaseSpecifiersOffsets[LocalID - 1]);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005040}
5041
5042CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005043 RecordLocation Loc = getLocalBitOffset(Offset);
5044 llvm::BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Douglas Gregor7c789c12010-10-29 22:39:52 +00005045 SavedStreamPosition SavedPosition(Cursor);
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005046 Cursor.JumpToBit(Loc.Offset);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005047 ReadingKindTracker ReadingKind(Read_Decl, *this);
5048 RecordData Record;
5049 unsigned Code = Cursor.ReadCode();
5050 unsigned RecCode = Cursor.ReadRecord(Code, Record);
5051 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
5052 Error("Malformed AST file: missing C++ base specifiers");
5053 return 0;
5054 }
5055
5056 unsigned Idx = 0;
5057 unsigned NumBases = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00005058 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005059 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
5060 for (unsigned I = 0; I != NumBases; ++I)
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005061 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005062 return Bases;
5063}
5064
Douglas Gregor409448c2011-07-21 22:35:25 +00005065serialization::DeclID
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00005066ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005067 if (LocalID < NUM_PREDEF_DECL_IDS)
Douglas Gregor496c7092011-08-03 15:48:04 +00005068 return LocalID;
5069
5070 ContinuousRangeMap<uint32_t, int, 2>::iterator I
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005071 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
Douglas Gregor496c7092011-08-03 15:48:04 +00005072 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
5073
5074 return LocalID + I->second;
Douglas Gregor409448c2011-07-21 22:35:25 +00005075}
5076
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005077bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005078 ModuleFile &M) const {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005079 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(ID);
5080 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5081 return &M == I->second;
5082}
5083
Douglas Gregorcff9f262012-01-27 01:47:08 +00005084ModuleFile *ASTReader::getOwningModuleFile(Decl *D) {
5085 if (!D->isFromASTFile())
5086 return 0;
5087 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
5088 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5089 return I->second;
5090}
5091
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005092SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
5093 if (ID < NUM_PREDEF_DECL_IDS)
5094 return SourceLocation();
5095
5096 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
5097
5098 if (Index > DeclsLoaded.size()) {
5099 Error("declaration ID out-of-range for AST file");
5100 return SourceLocation();
5101 }
5102
5103 if (Decl *D = DeclsLoaded[Index])
5104 return D->getLocation();
5105
5106 unsigned RawLocation = 0;
5107 RecordLocation Rec = DeclCursorForID(ID, RawLocation);
5108 return ReadSourceLocation(*Rec.F, RawLocation);
5109}
5110
Sebastian Redl8538e8d2010-08-18 23:57:32 +00005111Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005112 if (ID < NUM_PREDEF_DECL_IDS) {
5113 switch ((PredefinedDeclIDs)ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005114 case PREDEF_DECL_NULL_ID:
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005115 return 0;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005116
5117 case PREDEF_DECL_TRANSLATION_UNIT_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005118 return Context.getTranslationUnitDecl();
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00005119
5120 case PREDEF_DECL_OBJC_ID_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005121 return Context.getObjCIdDecl();
Douglas Gregor79d67262011-08-12 05:59:41 +00005122
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005123 case PREDEF_DECL_OBJC_SEL_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005124 return Context.getObjCSelDecl();
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005125
Douglas Gregor79d67262011-08-12 05:59:41 +00005126 case PREDEF_DECL_OBJC_CLASS_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005127 return Context.getObjCClassDecl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00005128
Douglas Gregora6ea10e2012-01-17 18:09:05 +00005129 case PREDEF_DECL_OBJC_PROTOCOL_ID:
5130 return Context.getObjCProtocolDecl();
5131
Douglas Gregor772eeae2011-08-12 06:49:56 +00005132 case PREDEF_DECL_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005133 return Context.getInt128Decl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00005134
5135 case PREDEF_DECL_UNSIGNED_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005136 return Context.getUInt128Decl();
Douglas Gregore97179c2011-09-08 01:46:34 +00005137
5138 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005139 return Context.getObjCInstanceTypeDecl();
Meador Ingec5613b22012-06-16 03:34:49 +00005140
5141 case PREDEF_DECL_BUILTIN_VA_LIST_ID:
5142 return Context.getBuiltinVaListDecl();
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005143 }
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005144 }
5145
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005146 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
5147
Richard Smith2fbf3732011-12-20 04:39:57 +00005148 if (Index >= DeclsLoaded.size()) {
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00005149 assert(0 && "declaration ID out-of-range for AST file");
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005150 Error("declaration ID out-of-range for AST file");
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00005151 return 0;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005152 }
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005153
Douglas Gregorfd002a72011-12-16 22:37:11 +00005154 if (!DeclsLoaded[Index]) {
Douglas Gregor496c7092011-08-03 15:48:04 +00005155 ReadDeclRecord(ID);
Sebastian Redl30c514c2010-07-14 23:45:08 +00005156 if (DeserializationListener)
5157 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
5158 }
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005159
5160 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00005161}
5162
Douglas Gregora1be2782011-12-17 23:38:30 +00005163DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
5164 DeclID GlobalID) {
5165 if (GlobalID < NUM_PREDEF_DECL_IDS)
5166 return GlobalID;
5167
5168 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
5169 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5170 ModuleFile *Owner = I->second;
5171
5172 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
5173 = M.GlobalToLocalDeclIDs.find(Owner);
5174 if (Pos == M.GlobalToLocalDeclIDs.end())
5175 return 0;
5176
5177 return GlobalID - Owner->BaseDeclID + Pos->second;
5178}
5179
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005180serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00005181 const RecordData &Record,
5182 unsigned &Idx) {
5183 if (Idx >= Record.size()) {
5184 Error("Corrupted AST file");
5185 return 0;
5186 }
5187
5188 return getGlobalDeclID(F, Record[Idx++]);
5189}
5190
Chris Lattner887e2b32009-04-27 05:46:25 +00005191/// \brief Resolve the offset of a statement into a statement.
5192///
5193/// This operation will read a new statement from the external
5194/// source each time it is called, and is meant to be used via a
5195/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005196Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00005197 // Switch case IDs are per Decl.
5198 ClearSwitchCaseIDs();
5199
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00005200 // Offset here is a global offset across the entire chain.
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005201 RecordLocation Loc = getLocalBitOffset(Offset);
5202 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
5203 return ReadStmtFromStream(*Loc.F);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00005204}
5205
Douglas Gregor851c75a2011-08-24 21:27:34 +00005206namespace {
5207 class FindExternalLexicalDeclsVisitor {
5208 ASTReader &Reader;
5209 const DeclContext *DC;
5210 bool (*isKindWeWant)(Decl::Kind);
Douglas Gregor2ea054f2011-08-26 22:04:51 +00005211
Douglas Gregor851c75a2011-08-24 21:27:34 +00005212 SmallVectorImpl<Decl*> &Decls;
5213 bool PredefsVisited[NUM_PREDEF_DECL_IDS];
5214
5215 public:
5216 FindExternalLexicalDeclsVisitor(ASTReader &Reader, const DeclContext *DC,
5217 bool (*isKindWeWant)(Decl::Kind),
5218 SmallVectorImpl<Decl*> &Decls)
5219 : Reader(Reader), DC(DC), isKindWeWant(isKindWeWant), Decls(Decls)
5220 {
5221 for (unsigned I = 0; I != NUM_PREDEF_DECL_IDS; ++I)
5222 PredefsVisited[I] = false;
5223 }
5224
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005225 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
Douglas Gregor851c75a2011-08-24 21:27:34 +00005226 if (Preorder)
5227 return false;
5228
5229 FindExternalLexicalDeclsVisitor *This
5230 = static_cast<FindExternalLexicalDeclsVisitor *>(UserData);
5231
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005232 ModuleFile::DeclContextInfosMap::iterator Info
Douglas Gregor851c75a2011-08-24 21:27:34 +00005233 = M.DeclContextInfos.find(This->DC);
5234 if (Info == M.DeclContextInfos.end() || !Info->second.LexicalDecls)
5235 return false;
5236
5237 // Load all of the declaration IDs
5238 for (const KindDeclIDPair *ID = Info->second.LexicalDecls,
5239 *IDE = ID + Info->second.NumLexicalDecls;
5240 ID != IDE; ++ID) {
5241 if (This->isKindWeWant && !This->isKindWeWant((Decl::Kind)ID->first))
5242 continue;
5243
5244 // Don't add predefined declarations to the lexical context more
5245 // than once.
5246 if (ID->second < NUM_PREDEF_DECL_IDS) {
5247 if (This->PredefsVisited[ID->second])
5248 continue;
5249
5250 This->PredefsVisited[ID->second] = true;
5251 }
5252
Douglas Gregor2ea054f2011-08-26 22:04:51 +00005253 if (Decl *D = This->Reader.GetLocalDecl(M, ID->second)) {
5254 if (!This->DC->isDeclInLexicalTraversal(D))
5255 This->Decls.push_back(D);
5256 }
Douglas Gregor851c75a2011-08-24 21:27:34 +00005257 }
5258
5259 return false;
5260 }
5261 };
5262}
5263
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00005264ExternalLoadResult ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00005265 bool (*isKindWeWant)(Decl::Kind),
Chris Lattner5f9e2722011-07-23 10:55:15 +00005266 SmallVectorImpl<Decl*> &Decls) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00005267 // There might be lexical decls in multiple modules, for the TU at
Douglas Gregor851c75a2011-08-24 21:27:34 +00005268 // least. Walk all of the modules in the order they were loaded.
5269 FindExternalLexicalDeclsVisitor Visitor(*this, DC, isKindWeWant, Decls);
5270 ModuleMgr.visitDepthFirst(&FindExternalLexicalDeclsVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00005271 ++NumLexicalDeclContextsRead;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00005272 return ELR_Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00005273}
5274
Douglas Gregor0d95f772011-08-24 19:03:07 +00005275namespace {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005276
5277class DeclIDComp {
5278 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005279 ModuleFile &Mod;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005280
5281public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005282 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005283
5284 bool operator()(LocalDeclID L, LocalDeclID R) const {
5285 SourceLocation LHS = getLocation(L);
5286 SourceLocation RHS = getLocation(R);
5287 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5288 }
5289
5290 bool operator()(SourceLocation LHS, LocalDeclID R) const {
5291 SourceLocation RHS = getLocation(R);
5292 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5293 }
5294
5295 bool operator()(LocalDeclID L, SourceLocation RHS) const {
5296 SourceLocation LHS = getLocation(L);
5297 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5298 }
5299
5300 SourceLocation getLocation(LocalDeclID ID) const {
5301 return Reader.getSourceManager().getFileLoc(
5302 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
5303 }
5304};
5305
5306}
5307
5308void ASTReader::FindFileRegionDecls(FileID File,
5309 unsigned Offset, unsigned Length,
5310 SmallVectorImpl<Decl *> &Decls) {
5311 SourceManager &SM = getSourceManager();
5312
5313 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
5314 if (I == FileDeclIDs.end())
5315 return;
5316
5317 FileDeclsInfo &DInfo = I->second;
5318 if (DInfo.Decls.empty())
5319 return;
5320
5321 SourceLocation
5322 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
5323 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
5324
5325 DeclIDComp DIDComp(*this, *DInfo.Mod);
5326 ArrayRef<serialization::LocalDeclID>::iterator
5327 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
5328 BeginLoc, DIDComp);
5329 if (BeginIt != DInfo.Decls.begin())
5330 --BeginIt;
5331
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00005332 // If we are pointing at a top-level decl inside an objc container, we need
5333 // to backtrack until we find it otherwise we will fail to report that the
5334 // region overlaps with an objc container.
5335 while (BeginIt != DInfo.Decls.begin() &&
5336 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
5337 ->isTopLevelDeclInObjCContainer())
5338 --BeginIt;
5339
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005340 ArrayRef<serialization::LocalDeclID>::iterator
5341 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
5342 EndLoc, DIDComp);
5343 if (EndIt != DInfo.Decls.end())
5344 ++EndIt;
5345
5346 for (ArrayRef<serialization::LocalDeclID>::iterator
5347 DIt = BeginIt; DIt != EndIt; ++DIt)
5348 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
5349}
5350
5351namespace {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005352 /// \brief ModuleFile visitor used to perform name lookup into a
Douglas Gregor0d95f772011-08-24 19:03:07 +00005353 /// declaration context.
5354 class DeclContextNameLookupVisitor {
5355 ASTReader &Reader;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005356 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Douglas Gregor0d95f772011-08-24 19:03:07 +00005357 DeclarationName Name;
5358 SmallVectorImpl<NamedDecl *> &Decls;
5359
5360 public:
5361 DeclContextNameLookupVisitor(ASTReader &Reader,
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005362 SmallVectorImpl<const DeclContext *> &Contexts,
5363 DeclarationName Name,
Douglas Gregor0d95f772011-08-24 19:03:07 +00005364 SmallVectorImpl<NamedDecl *> &Decls)
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005365 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls) { }
Douglas Gregor0d95f772011-08-24 19:03:07 +00005366
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005367 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00005368 DeclContextNameLookupVisitor *This
5369 = static_cast<DeclContextNameLookupVisitor *>(UserData);
5370
5371 // Check whether we have any visible declaration information for
5372 // this context in this module.
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005373 ModuleFile::DeclContextInfosMap::iterator Info;
5374 bool FoundInfo = false;
5375 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
5376 Info = M.DeclContextInfos.find(This->Contexts[I]);
5377 if (Info != M.DeclContextInfos.end() &&
5378 Info->second.NameLookupTableData) {
5379 FoundInfo = true;
5380 break;
5381 }
5382 }
Douglas Gregor0d95f772011-08-24 19:03:07 +00005383
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005384 if (!FoundInfo)
5385 return false;
5386
Douglas Gregor0d95f772011-08-24 19:03:07 +00005387 // Look for this name within this module.
5388 ASTDeclContextNameLookupTable *LookupTable =
Benjamin Kramerb1758c62012-04-15 12:36:49 +00005389 Info->second.NameLookupTableData;
Douglas Gregor0d95f772011-08-24 19:03:07 +00005390 ASTDeclContextNameLookupTable::iterator Pos
5391 = LookupTable->find(This->Name);
5392 if (Pos == LookupTable->end())
5393 return false;
5394
5395 bool FoundAnything = false;
5396 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
5397 for (; Data.first != Data.second; ++Data.first) {
5398 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M, *Data.first);
5399 if (!ND)
5400 continue;
5401
5402 if (ND->getDeclName() != This->Name) {
Axel Naumann3dd82f72012-10-01 09:51:27 +00005403 // A name might be null because the decl's redeclarable part is
5404 // currently read before reading its name. The lookup is triggered by
5405 // building that decl (likely indirectly), and so it is later in the
5406 // sense of "already existing" and can be ignored here.
Douglas Gregor0d95f772011-08-24 19:03:07 +00005407 continue;
5408 }
5409
5410 // Record this declaration.
5411 FoundAnything = true;
5412 This->Decls.push_back(ND);
5413 }
5414
5415 return FoundAnything;
5416 }
5417 };
5418}
5419
John McCall76bd1f32010-06-01 09:23:16 +00005420DeclContext::lookup_result
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005421ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +00005422 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00005423 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00005424 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00005425 if (!Name)
5426 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
5427 DeclContext::lookup_iterator(0));
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00005428
Chris Lattner5f9e2722011-07-23 10:55:15 +00005429 SmallVector<NamedDecl *, 64> Decls;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005430
5431 // Compute the declaration contexts we need to look into. Multiple such
5432 // declaration contexts occur when two declaration contexts from disjoint
5433 // modules get merged, e.g., when two namespaces with the same name are
5434 // independently defined in separate modules.
5435 SmallVector<const DeclContext *, 2> Contexts;
5436 Contexts.push_back(DC);
5437
5438 if (DC->isNamespace()) {
5439 MergedDeclsMap::iterator Merged
5440 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5441 if (Merged != MergedDecls.end()) {
5442 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5443 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5444 }
5445 }
5446
5447 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls);
Douglas Gregor0d95f772011-08-24 19:03:07 +00005448 ModuleMgr.visit(&DeclContextNameLookupVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00005449 ++NumVisibleDeclContextsRead;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00005450 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall76bd1f32010-06-01 09:23:16 +00005451 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00005452}
5453
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005454namespace {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005455 /// \brief ModuleFile visitor used to retrieve all visible names in a
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005456 /// declaration context.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005457 class DeclContextAllNamesVisitor {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005458 ASTReader &Reader;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005459 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005460 llvm::DenseMap<DeclarationName, SmallVector<NamedDecl *, 8> > &Decls;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005461
5462 public:
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005463 DeclContextAllNamesVisitor(ASTReader &Reader,
5464 SmallVectorImpl<const DeclContext *> &Contexts,
5465 llvm::DenseMap<DeclarationName,
5466 SmallVector<NamedDecl *, 8> > &Decls)
5467 : Reader(Reader), Contexts(Contexts), Decls(Decls) { }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005468
5469 static bool visit(ModuleFile &M, void *UserData) {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005470 DeclContextAllNamesVisitor *This
5471 = static_cast<DeclContextAllNamesVisitor *>(UserData);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005472
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005473 // Check whether we have any visible declaration information for
5474 // this context in this module.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005475 ModuleFile::DeclContextInfosMap::iterator Info;
5476 bool FoundInfo = false;
5477 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
5478 Info = M.DeclContextInfos.find(This->Contexts[I]);
5479 if (Info != M.DeclContextInfos.end() &&
5480 Info->second.NameLookupTableData) {
5481 FoundInfo = true;
5482 break;
5483 }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005484 }
5485
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005486 if (!FoundInfo)
5487 return false;
5488
5489 ASTDeclContextNameLookupTable *LookupTable =
5490 Info->second.NameLookupTableData;
5491 bool FoundAnything = false;
5492 for (ASTDeclContextNameLookupTable::data_iterator
5493 I = LookupTable->data_begin(), E = LookupTable->data_end();
5494 I != E; ++I) {
5495 ASTDeclContextNameLookupTrait::data_type Data = *I;
5496 for (; Data.first != Data.second; ++Data.first) {
5497 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M,
5498 *Data.first);
5499 if (!ND)
5500 continue;
5501
5502 // Record this declaration.
5503 FoundAnything = true;
5504 This->Decls[ND->getDeclName()].push_back(ND);
5505 }
5506 }
5507
5508 return FoundAnything;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005509 }
5510 };
5511}
5512
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005513void ASTReader::completeVisibleDeclsMap(const DeclContext *DC) {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005514 if (!DC->hasExternalVisibleStorage())
5515 return;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005516 llvm::DenseMap<DeclarationName, llvm::SmallVector<NamedDecl*, 8> > Decls;
5517
5518 // Compute the declaration contexts we need to look into. Multiple such
5519 // declaration contexts occur when two declaration contexts from disjoint
5520 // modules get merged, e.g., when two namespaces with the same name are
5521 // independently defined in separate modules.
5522 SmallVector<const DeclContext *, 2> Contexts;
5523 Contexts.push_back(DC);
5524
5525 if (DC->isNamespace()) {
5526 MergedDeclsMap::iterator Merged
5527 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5528 if (Merged != MergedDecls.end()) {
5529 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5530 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5531 }
5532 }
5533
5534 DeclContextAllNamesVisitor Visitor(*this, Contexts, Decls);
5535 ModuleMgr.visit(&DeclContextAllNamesVisitor::visit, &Visitor);
5536 ++NumVisibleDeclContextsRead;
5537
5538 for (llvm::DenseMap<DeclarationName,
5539 llvm::SmallVector<NamedDecl*, 8> >::iterator
5540 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
5541 SetExternalVisibleDeclsForName(DC, I->first, I->second);
5542 }
Argyrios Kyrtzidis394e5392012-04-26 18:34:14 +00005543 const_cast<DeclContext *>(DC)->setHasExternalVisibleStorage(false);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005544}
5545
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005546/// \brief Under non-PCH compilation the consumer receives the objc methods
5547/// before receiving the implementation, and codegen depends on this.
5548/// We simulate this by deserializing and passing to consumer the methods of the
5549/// implementation before passing the deserialized implementation decl.
5550static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
5551 ASTConsumer *Consumer) {
5552 assert(ImplD && Consumer);
5553
5554 for (ObjCImplDecl::method_iterator
5555 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00005556 Consumer->HandleInterestingDecl(DeclGroupRef(*I));
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005557
5558 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
5559}
5560
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005561void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005562 assert(Consumer);
5563 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005564 Decl *D = InterestingDecls.front();
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005565 InterestingDecls.pop_front();
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005566
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005567 PassInterestingDeclToConsumer(D);
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005568 }
5569}
5570
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005571void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
5572 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5573 PassObjCImplDeclToConsumer(ImplD, Consumer);
5574 else
5575 Consumer->HandleInterestingDecl(DeclGroupRef(D));
5576}
5577
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005578void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00005579 this->Consumer = Consumer;
5580
Douglas Gregorfdd01722009-04-14 00:24:19 +00005581 if (!Consumer)
5582 return;
5583
5584 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005585 // Force deserialization of this decl, which will cause it to be queued for
5586 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00005587 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00005588 }
Douglas Gregor1a995dd2011-09-15 18:47:32 +00005589 ExternalDefinitions.clear();
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00005590
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005591 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00005592}
5593
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005594void ASTReader::PrintStats() {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005595 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005596
Mike Stump1eb44332009-09-09 15:08:12 +00005597 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005598 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00005599 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005600 unsigned NumDeclsLoaded
5601 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
5602 (Decl *)0);
5603 unsigned NumIdentifiersLoaded
5604 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
5605 IdentifiersLoaded.end(),
5606 (IdentifierInfo *)0);
Douglas Gregora8235d62012-10-09 23:05:51 +00005607 unsigned NumMacrosLoaded
5608 = MacrosLoaded.size() - std::count(MacrosLoaded.begin(),
5609 MacrosLoaded.end(),
5610 (MacroInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00005611 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005612 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
5613 SelectorsLoaded.end(),
5614 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00005615
Douglas Gregor4fed3f42009-04-27 18:38:38 +00005616 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
5617 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor0cdd7982011-07-21 18:46:38 +00005618 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005619 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
5620 NumSLocEntriesRead, TotalNumSLocEntries,
5621 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005622 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005623 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005624 NumTypesLoaded, (unsigned)TypesLoaded.size(),
5625 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
5626 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005627 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005628 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
5629 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005630 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005631 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005632 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
5633 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregora8235d62012-10-09 23:05:51 +00005634 if (!MacrosLoaded.empty())
5635 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5636 NumMacrosLoaded, (unsigned)MacrosLoaded.size(),
5637 ((float)NumMacrosLoaded/MacrosLoaded.size() * 100));
Sebastian Redl725cd962010-08-04 20:40:17 +00005638 if (!SelectorsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005639 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redl725cd962010-08-04 20:40:17 +00005640 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
5641 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00005642 if (TotalNumStatements)
5643 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
5644 NumStatementsRead, TotalNumStatements,
5645 ((float)NumStatementsRead/TotalNumStatements * 100));
5646 if (TotalNumMacros)
5647 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5648 NumMacrosRead, TotalNumMacros,
5649 ((float)NumMacrosRead/TotalNumMacros * 100));
5650 if (TotalLexicalDeclContexts)
5651 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
5652 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
5653 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
5654 * 100));
5655 if (TotalVisibleDeclContexts)
5656 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
5657 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
5658 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
5659 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005660 if (TotalNumMethodPoolEntries) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005661 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005662 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
5663 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor83941df2009-04-25 17:48:32 +00005664 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005665 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor83941df2009-04-25 17:48:32 +00005666 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00005667 std::fprintf(stderr, "\n");
Douglas Gregor23d7df52011-07-21 19:50:14 +00005668 dump();
5669 std::fprintf(stderr, "\n");
5670}
5671
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005672template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Douglas Gregor23d7df52011-07-21 19:50:14 +00005673static void
Chris Lattner5f9e2722011-07-23 10:55:15 +00005674dumpModuleIDMap(StringRef Name,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005675 const ContinuousRangeMap<Key, ModuleFile *,
Douglas Gregor23d7df52011-07-21 19:50:14 +00005676 InitialCapacity> &Map) {
5677 if (Map.begin() == Map.end())
5678 return;
5679
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005680 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType;
Douglas Gregor23d7df52011-07-21 19:50:14 +00005681 llvm::errs() << Name << ":\n";
5682 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
5683 I != IEnd; ++I) {
5684 llvm::errs() << " " << I->first << " -> " << I->second->FileName
5685 << "\n";
5686 }
5687}
5688
Douglas Gregor23d7df52011-07-21 19:50:14 +00005689void ASTReader::dump() {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005690 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005691 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
Douglas Gregor23d7df52011-07-21 19:50:14 +00005692 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
Douglas Gregor1e849b62011-07-29 00:21:44 +00005693 dumpModuleIDMap("Global type map", GlobalTypeMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005694 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005695 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
Douglas Gregora8235d62012-10-09 23:05:51 +00005696 dumpModuleIDMap("Global macro map", GlobalMacroMap);
Douglas Gregor26ced122011-12-01 00:59:36 +00005697 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005698 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005699 dumpModuleIDMap("Global preprocessed entity map",
5700 GlobalPreprocessedEntityMap);
Douglas Gregor8df5c9b2011-08-02 11:12:41 +00005701
5702 llvm::errs() << "\n*** PCH/Modules Loaded:";
5703 for (ModuleManager::ModuleConstIterator M = ModuleMgr.begin(),
5704 MEnd = ModuleMgr.end();
5705 M != MEnd; ++M)
5706 (*M)->dump();
Douglas Gregor2cf26342009-04-09 22:27:44 +00005707}
5708
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005709/// Return the amount of memory used by memory buffers, breaking down
5710/// by heap-backed versus mmap'ed memory.
5711void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005712 for (ModuleConstIterator I = ModuleMgr.begin(),
5713 E = ModuleMgr.end(); I != E; ++I) {
5714 if (llvm::MemoryBuffer *buf = (*I)->Buffer.get()) {
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005715 size_t bytes = buf->getBufferSize();
5716 switch (buf->getBufferKind()) {
5717 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
5718 sizes.malloc_bytes += bytes;
5719 break;
5720 case llvm::MemoryBuffer::MemoryBuffer_MMap:
5721 sizes.mmap_bytes += bytes;
5722 break;
5723 }
5724 }
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005725 }
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005726}
5727
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005728void ASTReader::InitializeSema(Sema &S) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005729 SemaObj = &S;
Axel Naumann0ec56b72012-10-18 19:05:02 +00005730 S.addExternalSource(this);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005731
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005732 // Makes sure any declarations that were deserialized "too early"
5733 // still get added to the identifier's declaration chains.
Douglas Gregor76dc8892010-09-24 23:29:12 +00005734 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005735 SemaObj->pushExternalDeclIntoScope(PreloadedDecls[I],
5736 PreloadedDecls[I]->getDeclName());
Douglas Gregor668c1a42009-04-21 22:25:48 +00005737 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005738 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00005739
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005740 // Load the offsets of the declarations that Sema references.
5741 // They will be lazily deserialized when needed.
5742 if (!SemaDeclRefs.empty()) {
5743 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
Douglas Gregor1e5b6f62011-07-28 00:57:24 +00005744 if (!SemaObj->StdNamespace)
5745 SemaObj->StdNamespace = SemaDeclRefs[0];
5746 if (!SemaObj->StdBadAlloc)
5747 SemaObj->StdBadAlloc = SemaDeclRefs[1];
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005748 }
5749
Peter Collingbourne84bccea2011-02-15 19:46:30 +00005750 if (!FPPragmaOptions.empty()) {
5751 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
5752 SemaObj->FPFeatures.fp_contract = FPPragmaOptions[0];
5753 }
5754
5755 if (!OpenCLExtensions.empty()) {
5756 unsigned I = 0;
5757#define OPENCLEXT(nm) SemaObj->OpenCLFeatures.nm = OpenCLExtensions[I++];
5758#include "clang/Basic/OpenCLExtensions.def"
5759
5760 assert(OpenCLExtensions.size() == I && "Wrong number of OPENCL_EXTENSIONS");
5761 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00005762}
5763
Douglas Gregor211f6e82011-08-20 04:39:52 +00005764IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00005765 // Note that we are loading an identifier.
5766 Deserializing AnIdentifier(this);
5767
Douglas Gregor057df202012-01-18 20:56:22 +00005768 IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart),
5769 /*PriorGeneration=*/0);
Douglas Gregor211f6e82011-08-20 04:39:52 +00005770 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005771 IdentifierInfo *II = Visitor.getIdentifierInfo();
Douglas Gregor057df202012-01-18 20:56:22 +00005772 markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005773 return II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00005774}
5775
Douglas Gregor95f42922010-10-14 22:11:03 +00005776namespace clang {
5777 /// \brief An identifier-lookup iterator that enumerates all of the
5778 /// identifiers stored within a set of AST files.
5779 class ASTIdentifierIterator : public IdentifierIterator {
5780 /// \brief The AST reader whose identifiers are being enumerated.
5781 const ASTReader &Reader;
5782
5783 /// \brief The current index into the chain of AST files stored in
5784 /// the AST reader.
5785 unsigned Index;
5786
5787 /// \brief The current position within the identifier lookup table
5788 /// of the current AST file.
5789 ASTIdentifierLookupTable::key_iterator Current;
5790
5791 /// \brief The end position within the identifier lookup table of
5792 /// the current AST file.
5793 ASTIdentifierLookupTable::key_iterator End;
5794
5795 public:
5796 explicit ASTIdentifierIterator(const ASTReader &Reader);
5797
Chris Lattner5f9e2722011-07-23 10:55:15 +00005798 virtual StringRef Next();
Douglas Gregor95f42922010-10-14 22:11:03 +00005799 };
5800}
5801
5802ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005803 : Reader(Reader), Index(Reader.ModuleMgr.size() - 1) {
Douglas Gregor95f42922010-10-14 22:11:03 +00005804 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005805 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005806 Current = IdTable->key_begin();
5807 End = IdTable->key_end();
5808}
5809
Chris Lattner5f9e2722011-07-23 10:55:15 +00005810StringRef ASTIdentifierIterator::Next() {
Douglas Gregor95f42922010-10-14 22:11:03 +00005811 while (Current == End) {
5812 // If we have exhausted all of our AST files, we're done.
5813 if (Index == 0)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005814 return StringRef();
Douglas Gregor95f42922010-10-14 22:11:03 +00005815
5816 --Index;
5817 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005818 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].
5819 IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005820 Current = IdTable->key_begin();
5821 End = IdTable->key_end();
5822 }
5823
5824 // We have any identifiers remaining in the current AST file; return
5825 // the next one.
5826 std::pair<const char*, unsigned> Key = *Current;
5827 ++Current;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005828 return StringRef(Key.first, Key.second);
Douglas Gregor95f42922010-10-14 22:11:03 +00005829}
5830
5831IdentifierIterator *ASTReader::getIdentifiers() const {
5832 return new ASTIdentifierIterator(*this);
5833}
5834
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005835namespace clang { namespace serialization {
5836 class ReadMethodPoolVisitor {
5837 ASTReader &Reader;
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005838 Selector Sel;
5839 unsigned PriorGeneration;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005840 llvm::SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
5841 llvm::SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005842
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005843 public:
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005844 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
5845 unsigned PriorGeneration)
5846 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) { }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005847
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005848 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005849 ReadMethodPoolVisitor *This
5850 = static_cast<ReadMethodPoolVisitor *>(UserData);
5851
5852 if (!M.SelectorLookupTable)
5853 return false;
5854
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005855 // If we've already searched this module file, skip it now.
5856 if (M.Generation <= This->PriorGeneration)
5857 return true;
5858
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005859 ASTSelectorLookupTable *PoolTable
5860 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
5861 ASTSelectorLookupTable::iterator Pos = PoolTable->find(This->Sel);
5862 if (Pos == PoolTable->end())
5863 return false;
5864
5865 ++This->Reader.NumSelectorsRead;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005866 // FIXME: Not quite happy with the statistics here. We probably should
5867 // disable this tracking when called via LoadSelector.
5868 // Also, should entries without methods count as misses?
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005869 ++This->Reader.NumMethodPoolEntriesRead;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005870 ASTSelectorLookupTrait::data_type Data = *Pos;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005871 if (This->Reader.DeserializationListener)
5872 This->Reader.DeserializationListener->SelectorRead(Data.ID,
5873 This->Sel);
5874
5875 This->InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
5876 This->FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
5877 return true;
Sebastian Redl725cd962010-08-04 20:40:17 +00005878 }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005879
5880 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005881 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
5882 return InstanceMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005883 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005884
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005885 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005886 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
5887 return FactoryMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005888 }
5889 };
5890} } // end namespace clang::serialization
5891
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005892/// \brief Add the given set of methods to the method list.
5893static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
5894 ObjCMethodList &List) {
5895 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
5896 S.addMethodToGlobalList(&List, Methods[I]);
5897 }
5898}
5899
5900void ASTReader::ReadMethodPool(Selector Sel) {
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005901 // Get the selector generation and update it to the current generation.
5902 unsigned &Generation = SelectorGeneration[Sel];
5903 unsigned PriorGeneration = Generation;
5904 Generation = CurrentGeneration;
5905
5906 // Search for methods defined with this selector.
5907 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005908 ModuleMgr.visit(&ReadMethodPoolVisitor::visit, &Visitor);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005909
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005910 if (Visitor.getInstanceMethods().empty() &&
5911 Visitor.getFactoryMethods().empty()) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005912 ++NumMethodPoolMisses;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005913 return;
5914 }
5915
5916 if (!getSema())
5917 return;
5918
5919 Sema &S = *getSema();
5920 Sema::GlobalMethodPool::iterator Pos
5921 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
5922
5923 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
5924 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005925}
5926
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005927void ASTReader::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00005928 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005929 Namespaces.clear();
5930
5931 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
5932 if (NamespaceDecl *Namespace
5933 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
5934 Namespaces.push_back(Namespace);
5935 }
5936}
5937
Douglas Gregora8623202011-07-27 20:58:46 +00005938void ASTReader::ReadTentativeDefinitions(
5939 SmallVectorImpl<VarDecl *> &TentativeDefs) {
5940 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
5941 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
5942 if (Var)
5943 TentativeDefs.push_back(Var);
5944 }
5945 TentativeDefinitions.clear();
5946}
5947
Douglas Gregora2ee20a2011-07-27 21:45:57 +00005948void ASTReader::ReadUnusedFileScopedDecls(
5949 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
5950 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
5951 DeclaratorDecl *D
5952 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
5953 if (D)
5954 Decls.push_back(D);
5955 }
5956 UnusedFileScopedDecls.clear();
5957}
5958
Douglas Gregor0129b562011-07-27 21:57:17 +00005959void ASTReader::ReadDelegatingConstructors(
5960 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
5961 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
5962 CXXConstructorDecl *D
5963 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
5964 if (D)
5965 Decls.push_back(D);
5966 }
5967 DelegatingCtorDecls.clear();
5968}
5969
Douglas Gregord58a0a52011-07-28 00:39:29 +00005970void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
5971 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
5972 TypedefNameDecl *D
5973 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
5974 if (D)
5975 Decls.push_back(D);
5976 }
5977 ExtVectorDecls.clear();
5978}
5979
Douglas Gregora126f172011-07-28 00:53:40 +00005980void ASTReader::ReadDynamicClasses(SmallVectorImpl<CXXRecordDecl *> &Decls) {
5981 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
5982 CXXRecordDecl *D
5983 = dyn_cast_or_null<CXXRecordDecl>(GetDecl(DynamicClasses[I]));
5984 if (D)
5985 Decls.push_back(D);
5986 }
5987 DynamicClasses.clear();
5988}
5989
Douglas Gregorec12ce22011-07-28 14:20:37 +00005990void
5991ASTReader::ReadLocallyScopedExternalDecls(SmallVectorImpl<NamedDecl *> &Decls) {
5992 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
5993 NamedDecl *D
5994 = dyn_cast_or_null<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
5995 if (D)
5996 Decls.push_back(D);
5997 }
5998 LocallyScopedExternalDecls.clear();
5999}
6000
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00006001void ASTReader::ReadReferencedSelectors(
6002 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {
6003 if (ReferencedSelectorsData.empty())
6004 return;
6005
6006 // If there are @selector references added them to its pool. This is for
6007 // implementation of -Wselector.
6008 unsigned int DataSize = ReferencedSelectorsData.size()-1;
6009 unsigned I = 0;
6010 while (I < DataSize) {
6011 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
6012 SourceLocation SelLoc
6013 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
6014 Sels.push_back(std::make_pair(Sel, SelLoc));
6015 }
6016 ReferencedSelectorsData.clear();
6017}
6018
Douglas Gregor31e37b22011-07-28 18:09:57 +00006019void ASTReader::ReadWeakUndeclaredIdentifiers(
6020 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WeakIDs) {
6021 if (WeakUndeclaredIdentifiers.empty())
6022 return;
6023
6024 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
6025 IdentifierInfo *WeakId
6026 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
6027 IdentifierInfo *AliasId
6028 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
6029 SourceLocation Loc
6030 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
6031 bool Used = WeakUndeclaredIdentifiers[I++];
6032 WeakInfo WI(AliasId, Loc);
6033 WI.setUsed(Used);
6034 WeakIDs.push_back(std::make_pair(WeakId, WI));
6035 }
6036 WeakUndeclaredIdentifiers.clear();
6037}
6038
Douglas Gregordfe65432011-07-28 19:11:31 +00006039void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
6040 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
6041 ExternalVTableUse VT;
6042 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
6043 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
6044 VT.DefinitionRequired = VTableUses[Idx++];
6045 VTables.push_back(VT);
6046 }
6047
6048 VTableUses.clear();
6049}
6050
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00006051void ASTReader::ReadPendingInstantiations(
6052 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation> > &Pending) {
6053 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
6054 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
6055 SourceLocation Loc
6056 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
Axel Naumann39d26c32012-10-02 09:09:43 +00006057
Douglas Gregore5fa3c22012-10-03 18:34:48 +00006058 Pending.push_back(std::make_pair(D, Loc));
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00006059 }
6060 PendingInstantiations.clear();
6061}
6062
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006063void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redle58aa892010-08-04 18:21:41 +00006064 // It would be complicated to avoid reading the methods anyway. So don't.
6065 ReadMethodPool(Sel);
6066}
6067
Douglas Gregor95eab172011-07-28 20:55:49 +00006068void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00006069 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00006070 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00006071 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00006072 if (DeserializationListener)
6073 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregor668c1a42009-04-21 22:25:48 +00006074}
6075
Douglas Gregord89275b2009-07-06 18:54:52 +00006076/// \brief Set the globally-visible declarations associated with the given
6077/// identifier.
6078///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006079/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00006080/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00006081/// them.
6082///
6083/// \param II an IdentifierInfo that refers to one or more globally-visible
6084/// declarations.
6085///
6086/// \param DeclIDs the set of declaration IDs with the name @p II that are
6087/// visible at global scope.
6088///
6089/// \param Nonrecursive should be true to indicate that the caller knows that
6090/// this call is non-recursive, and therefore the globally-visible declarations
6091/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00006092void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006093ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Chris Lattner5f9e2722011-07-23 10:55:15 +00006094 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregord89275b2009-07-06 18:54:52 +00006095 bool Nonrecursive) {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006096 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregord89275b2009-07-06 18:54:52 +00006097 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
6098 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
6099 PII.II = II;
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00006100 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregord89275b2009-07-06 18:54:52 +00006101 return;
6102 }
Mike Stump1eb44332009-09-09 15:08:12 +00006103
Douglas Gregord89275b2009-07-06 18:54:52 +00006104 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
6105 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
6106 if (SemaObj) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00006107 // Introduce this declaration into the translation-unit scope
6108 // and add it to the declaration chain for this identifier, so
6109 // that (unqualified) name lookup will find it.
6110 SemaObj->pushExternalDeclIntoScope(D, II);
Douglas Gregord89275b2009-07-06 18:54:52 +00006111 } else {
6112 // Queue this declaration so that it will be added to the
6113 // translation unit scope and identifier's declaration chain
6114 // once a Sema object is known.
6115 PreloadedDecls.push_back(D);
6116 }
6117 }
6118}
6119
Douglas Gregor95eab172011-07-28 20:55:49 +00006120IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00006121 if (ID == 0)
6122 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006123
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006124 if (IdentifiersLoaded.empty()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006125 Error("no identifier table in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00006126 return 0;
6127 }
Mike Stump1eb44332009-09-09 15:08:12 +00006128
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006129 ID -= 1;
6130 if (!IdentifiersLoaded[ID]) {
Douglas Gregor67268d02011-07-20 00:59:32 +00006131 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
6132 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006133 ModuleFile *M = I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00006134 unsigned Index = ID - M->BaseIdentifierID;
6135 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
Douglas Gregord6595a42009-04-25 21:04:17 +00006136
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006137 // All of the strings in the AST file are preceded by a 16-bit length.
6138 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00006139 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
6140 // unsigned integers. This is important to avoid integer overflow when
6141 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00006142 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00006143 unsigned StrLen = (((unsigned) StrLenPtr[0])
6144 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006145 IdentifiersLoaded[ID]
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006146 = &PP.getIdentifierTable().get(StringRef(Str, StrLen));
Sebastian Redlf2f0f032010-07-23 23:49:55 +00006147 if (DeserializationListener)
6148 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregorafaf3082009-04-11 00:14:32 +00006149 }
Mike Stump1eb44332009-09-09 15:08:12 +00006150
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006151 return IdentifiersLoaded[ID];
Douglas Gregor2cf26342009-04-09 22:27:44 +00006152}
6153
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006154IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
Douglas Gregor95eab172011-07-28 20:55:49 +00006155 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
6156}
6157
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006158IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +00006159 if (LocalID < NUM_PREDEF_IDENT_IDS)
6160 return LocalID;
6161
6162 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6163 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
6164 assert(I != M.IdentifierRemap.end()
6165 && "Invalid index into identifier index remap");
6166
6167 return LocalID + I->second;
Douglas Gregor95eab172011-07-28 20:55:49 +00006168}
6169
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006170MacroInfo *ASTReader::getMacro(MacroID ID, MacroInfo *Hint) {
Douglas Gregora8235d62012-10-09 23:05:51 +00006171 if (ID == 0)
6172 return 0;
6173
6174 if (MacrosLoaded.empty()) {
6175 Error("no macro table in AST file");
6176 return 0;
6177 }
6178
6179 ID -= NUM_PREDEF_MACRO_IDS;
6180 if (!MacrosLoaded[ID]) {
6181 GlobalMacroMapType::iterator I
6182 = GlobalMacroMap.find(ID + NUM_PREDEF_MACRO_IDS);
6183 assert(I != GlobalMacroMap.end() && "Corrupted global macro map");
6184 ModuleFile *M = I->second;
6185 unsigned Index = ID - M->BaseMacroID;
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006186 ReadMacroRecord(*M, M->MacroOffsets[Index], Hint);
Douglas Gregora8235d62012-10-09 23:05:51 +00006187 }
6188
6189 return MacrosLoaded[ID];
6190}
6191
6192MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) {
6193 if (LocalID < NUM_PREDEF_MACRO_IDS)
6194 return LocalID;
6195
6196 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6197 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS);
6198 assert(I != M.MacroRemap.end() && "Invalid index into macro index remap");
6199
6200 return LocalID + I->second;
6201}
6202
Douglas Gregor26ced122011-12-01 00:59:36 +00006203serialization::SubmoduleID
6204ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
6205 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
6206 return LocalID;
6207
6208 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6209 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
6210 assert(I != M.SubmoduleRemap.end()
Douglas Gregora8235d62012-10-09 23:05:51 +00006211 && "Invalid index into submodule index remap");
Douglas Gregor26ced122011-12-01 00:59:36 +00006212
6213 return LocalID + I->second;
6214}
6215
6216Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
6217 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
6218 assert(GlobalID == 0 && "Unhandled global submodule ID");
6219 return 0;
6220 }
6221
6222 if (GlobalID > SubmodulesLoaded.size()) {
6223 Error("submodule ID out of range in AST file");
6224 return 0;
6225 }
6226
6227 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
6228}
6229
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006230Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
Douglas Gregor2d2689a2011-07-28 21:16:51 +00006231 return DecodeSelector(getGlobalSelectorID(M, LocalID));
6232}
6233
6234Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006235 if (ID == 0)
6236 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00006237
Sebastian Redl725cd962010-08-04 20:40:17 +00006238 if (ID > SelectorsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006239 Error("selector ID out of range in AST file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006240 return Selector();
6241 }
Douglas Gregor83941df2009-04-25 17:48:32 +00006242
Sebastian Redl725cd962010-08-04 20:40:17 +00006243 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor83941df2009-04-25 17:48:32 +00006244 // Load this selector from the selector table.
Douglas Gregor96958cb2011-07-20 01:10:58 +00006245 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
6246 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006247 ModuleFile &M = *I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00006248 ASTSelectorLookupTrait Trait(*this, M);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006249 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
Douglas Gregor96958cb2011-07-20 01:10:58 +00006250 SelectorsLoaded[ID - 1] =
Douglas Gregor9827a802011-07-29 00:56:45 +00006251 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
Douglas Gregor96958cb2011-07-20 01:10:58 +00006252 if (DeserializationListener)
6253 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
Douglas Gregor83941df2009-04-25 17:48:32 +00006254 }
6255
Sebastian Redl725cd962010-08-04 20:40:17 +00006256 return SelectorsLoaded[ID - 1];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006257}
6258
Douglas Gregor8451ec72011-07-28 14:41:43 +00006259Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00006260 return DecodeSelector(ID);
6261}
6262
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006263uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redl725cd962010-08-04 20:40:17 +00006264 // ID 0 (the null selector) is considered an external selector.
6265 return getTotalNumSelectors() + 1;
Douglas Gregor719770d2010-04-06 17:30:22 +00006266}
6267
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006268serialization::SelectorID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006269ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006270 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
6271 return LocalID;
6272
6273 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6274 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
6275 assert(I != M.SelectorRemap.end()
Douglas Gregora8235d62012-10-09 23:05:51 +00006276 && "Invalid index into selector index remap");
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006277
6278 return LocalID + I->second;
Douglas Gregor8451ec72011-07-28 14:41:43 +00006279}
6280
Mike Stump1eb44332009-09-09 15:08:12 +00006281DeclarationName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006282ASTReader::ReadDeclarationName(ModuleFile &F,
Douglas Gregor393f2492011-07-22 00:38:23 +00006283 const RecordData &Record, unsigned &Idx) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00006284 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
6285 switch (Kind) {
6286 case DeclarationName::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +00006287 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006288
6289 case DeclarationName::ObjCZeroArgSelector:
6290 case DeclarationName::ObjCOneArgSelector:
6291 case DeclarationName::ObjCMultiArgSelector:
Douglas Gregor2d2689a2011-07-28 21:16:51 +00006292 return DeclarationName(ReadSelector(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006293
6294 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006295 return Context.DeclarationNames.getCXXConstructorName(
6296 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006297
6298 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006299 return Context.DeclarationNames.getCXXDestructorName(
6300 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006301
6302 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +00006303 return Context.DeclarationNames.getCXXConversionFunctionName(
6304 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006305
6306 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006307 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00006308 (OverloadedOperatorKind)Record[Idx++]);
6309
Sean Hunt3e518bd2009-11-29 07:34:05 +00006310 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006311 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor95eab172011-07-28 20:55:49 +00006312 GetIdentifierInfo(F, Record, Idx));
Sean Hunt3e518bd2009-11-29 07:34:05 +00006313
Douglas Gregor2cf26342009-04-09 22:27:44 +00006314 case DeclarationName::CXXUsingDirective:
6315 return DeclarationName::getUsingDirectiveName();
6316 }
6317
David Blaikie7530c032012-01-17 06:56:22 +00006318 llvm_unreachable("Invalid NameKind!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00006319}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006320
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006321void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006322 DeclarationNameLoc &DNLoc,
6323 DeclarationName Name,
6324 const RecordData &Record, unsigned &Idx) {
6325 switch (Name.getNameKind()) {
6326 case DeclarationName::CXXConstructorName:
6327 case DeclarationName::CXXDestructorName:
6328 case DeclarationName::CXXConversionFunctionName:
6329 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
6330 break;
6331
6332 case DeclarationName::CXXOperatorName:
6333 DNLoc.CXXOperatorName.BeginOpNameLoc
6334 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6335 DNLoc.CXXOperatorName.EndOpNameLoc
6336 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6337 break;
6338
6339 case DeclarationName::CXXLiteralOperatorName:
6340 DNLoc.CXXLiteralOperatorName.OpNameLoc
6341 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6342 break;
6343
6344 case DeclarationName::Identifier:
6345 case DeclarationName::ObjCZeroArgSelector:
6346 case DeclarationName::ObjCOneArgSelector:
6347 case DeclarationName::ObjCMultiArgSelector:
6348 case DeclarationName::CXXUsingDirective:
6349 break;
6350 }
6351}
6352
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006353void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006354 DeclarationNameInfo &NameInfo,
6355 const RecordData &Record, unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00006356 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006357 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
6358 DeclarationNameLoc DNLoc;
6359 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
6360 NameInfo.setInfo(DNLoc);
6361}
6362
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006363void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006364 const RecordData &Record, unsigned &Idx) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00006365 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006366 unsigned NumTPLists = Record[Idx++];
6367 Info.NumTemplParamLists = NumTPLists;
6368 if (NumTPLists) {
Douglas Gregor35942772011-09-09 21:34:22 +00006369 Info.TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006370 for (unsigned i=0; i != NumTPLists; ++i)
6371 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
6372 }
6373}
6374
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006375TemplateName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006376ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006377 unsigned &Idx) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00006378 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006379 switch (Kind) {
6380 case TemplateName::Template:
Douglas Gregor409448c2011-07-21 22:35:25 +00006381 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006382
6383 case TemplateName::OverloadedTemplate: {
6384 unsigned size = Record[Idx++];
6385 UnresolvedSet<8> Decls;
6386 while (size--)
Douglas Gregor409448c2011-07-21 22:35:25 +00006387 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006388
Douglas Gregor35942772011-09-09 21:34:22 +00006389 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006390 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006391
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006392 case TemplateName::QualifiedTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006393 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006394 bool hasTemplKeyword = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00006395 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006396 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006397 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006398
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006399 case TemplateName::DependentTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006400 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006401 if (Record[Idx++]) // isIdentifier
Douglas Gregor35942772011-09-09 21:34:22 +00006402 return Context.getDependentTemplateName(NNS,
Douglas Gregor95eab172011-07-28 20:55:49 +00006403 GetIdentifierInfo(F, Record,
6404 Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00006405 return Context.getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00006406 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006407 }
John McCall14606042011-06-30 08:33:18 +00006408
6409 case TemplateName::SubstTemplateTemplateParm: {
6410 TemplateTemplateParmDecl *param
Douglas Gregor409448c2011-07-21 22:35:25 +00006411 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
John McCall14606042011-06-30 08:33:18 +00006412 if (!param) return TemplateName();
6413 TemplateName replacement = ReadTemplateName(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006414 return Context.getSubstTemplateTemplateParm(param, replacement);
John McCall14606042011-06-30 08:33:18 +00006415 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006416
6417 case TemplateName::SubstTemplateTemplateParmPack: {
6418 TemplateTemplateParmDecl *Param
Douglas Gregor409448c2011-07-21 22:35:25 +00006419 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006420 if (!Param)
6421 return TemplateName();
6422
6423 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
6424 if (ArgPack.getKind() != TemplateArgument::Pack)
6425 return TemplateName();
6426
Douglas Gregor35942772011-09-09 21:34:22 +00006427 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006428 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006429 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006430
David Blaikieb219cfc2011-09-23 05:06:16 +00006431 llvm_unreachable("Unhandled template name kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006432}
6433
6434TemplateArgument
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006435ASTReader::ReadTemplateArgument(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00006436 const RecordData &Record, unsigned &Idx) {
Douglas Gregora7fc9012011-01-05 18:58:31 +00006437 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
6438 switch (Kind) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006439 case TemplateArgument::Null:
6440 return TemplateArgument();
6441 case TemplateArgument::Type:
Douglas Gregor393f2492011-07-22 00:38:23 +00006442 return TemplateArgument(readType(F, Record, Idx));
Eli Friedmand7a6b162012-09-26 02:36:12 +00006443 case TemplateArgument::Declaration: {
6444 ValueDecl *D = ReadDeclAs<ValueDecl>(F, Record, Idx);
6445 bool ForReferenceParam = Record[Idx++];
6446 return TemplateArgument(D, ForReferenceParam);
6447 }
6448 case TemplateArgument::NullPtr:
6449 return TemplateArgument(readType(F, Record, Idx), /*isNullPtr*/true);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00006450 case TemplateArgument::Integral: {
6451 llvm::APSInt Value = ReadAPSInt(Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00006452 QualType T = readType(F, Record, Idx);
Benjamin Kramer85524372012-06-07 15:09:51 +00006453 return TemplateArgument(Context, Value, T);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00006454 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00006455 case TemplateArgument::Template:
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006456 return TemplateArgument(ReadTemplateName(F, Record, Idx));
Douglas Gregora7fc9012011-01-05 18:58:31 +00006457 case TemplateArgument::TemplateExpansion: {
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006458 TemplateName Name = ReadTemplateName(F, Record, Idx);
Douglas Gregor2be29f42011-01-14 23:41:42 +00006459 llvm::Optional<unsigned> NumTemplateExpansions;
6460 if (unsigned NumExpansions = Record[Idx++])
6461 NumTemplateExpansions = NumExpansions - 1;
6462 return TemplateArgument(Name, NumTemplateExpansions);
Douglas Gregorba68eca2011-01-05 17:40:24 +00006463 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006464 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00006465 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006466 case TemplateArgument::Pack: {
6467 unsigned NumArgs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006468 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
Douglas Gregor910f8002010-11-07 23:05:16 +00006469 for (unsigned I = 0; I != NumArgs; ++I)
6470 Args[I] = ReadTemplateArgument(F, Record, Idx);
6471 return TemplateArgument(Args, NumArgs);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006472 }
6473 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006474
David Blaikieb219cfc2011-09-23 05:06:16 +00006475 llvm_unreachable("Unhandled template argument kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006476}
6477
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006478TemplateParameterList *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006479ASTReader::ReadTemplateParameterList(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00006480 const RecordData &Record, unsigned &Idx) {
6481 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
6482 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
6483 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006484
6485 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00006486 SmallVector<NamedDecl *, 16> Params;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006487 Params.reserve(NumParams);
6488 while (NumParams--)
Douglas Gregor409448c2011-07-21 22:35:25 +00006489 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
Michael J. Spencer20249a12010-10-21 03:16:25 +00006490
6491 TemplateParameterList* TemplateParams =
Douglas Gregor35942772011-09-09 21:34:22 +00006492 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006493 Params.data(), Params.size(), RAngleLoc);
6494 return TemplateParams;
6495}
6496
6497void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006498ASTReader::
Chris Lattner5f9e2722011-07-23 10:55:15 +00006499ReadTemplateArgumentList(SmallVector<TemplateArgument, 8> &TemplArgs,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006500 ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006501 unsigned &Idx) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006502 unsigned NumTemplateArgs = Record[Idx++];
6503 TemplArgs.reserve(NumTemplateArgs);
6504 while (NumTemplateArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00006505 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006506}
6507
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006508/// \brief Read a UnresolvedSet structure.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006509void ASTReader::ReadUnresolvedSet(ModuleFile &F, UnresolvedSetImpl &Set,
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006510 const RecordData &Record, unsigned &Idx) {
6511 unsigned NumDecls = Record[Idx++];
6512 while (NumDecls--) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006513 NamedDecl *D = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006514 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
6515 Set.addDecl(D, AS);
6516 }
6517}
6518
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006519CXXBaseSpecifier
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006520ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
Nick Lewycky56062202010-07-26 16:56:01 +00006521 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006522 bool isVirtual = static_cast<bool>(Record[Idx++]);
6523 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
6524 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006525 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00006526 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
6527 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006528 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006529 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006530 EllipsisLoc);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006531 Result.setInheritConstructors(inheritConstructors);
6532 return Result;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006533}
6534
Sean Huntcbb67482011-01-08 20:30:50 +00006535std::pair<CXXCtorInitializer **, unsigned>
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006536ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
Sean Huntcbb67482011-01-08 20:30:50 +00006537 unsigned &Idx) {
6538 CXXCtorInitializer **CtorInitializers = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006539 unsigned NumInitializers = Record[Idx++];
6540 if (NumInitializers) {
Sean Huntcbb67482011-01-08 20:30:50 +00006541 CtorInitializers
Douglas Gregor35942772011-09-09 21:34:22 +00006542 = new (Context) CXXCtorInitializer*[NumInitializers];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006543 for (unsigned i=0; i != NumInitializers; ++i) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006544 TypeSourceInfo *TInfo = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006545 bool IsBaseVirtual = false;
6546 FieldDecl *Member = 0;
Francois Pichet00eb3f92010-12-04 09:14:42 +00006547 IndirectFieldDecl *IndirectMember = 0;
Michael J. Spencer20249a12010-10-21 03:16:25 +00006548
Sean Hunt156b6402011-05-04 01:19:08 +00006549 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
6550 switch (Type) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006551 case CTOR_INITIALIZER_BASE:
6552 TInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006553 IsBaseVirtual = Record[Idx++];
Sean Hunt156b6402011-05-04 01:19:08 +00006554 break;
Douglas Gregor76852c22011-11-01 01:16:03 +00006555
6556 case CTOR_INITIALIZER_DELEGATING:
6557 TInfo = GetTypeSourceInfo(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006558 break;
6559
6560 case CTOR_INITIALIZER_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006561 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006562 break;
6563
6564 case CTOR_INITIALIZER_INDIRECT_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006565 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006566 break;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006567 }
Sean Hunt156b6402011-05-04 01:19:08 +00006568
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00006569 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00006570 Expr *Init = ReadExpr(F);
Sebastian Redlc3632732010-10-05 15:59:54 +00006571 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
6572 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006573 bool IsWritten = Record[Idx++];
6574 unsigned SourceOrderOrNumArrayIndices;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006575 SmallVector<VarDecl *, 8> Indices;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006576 if (IsWritten) {
6577 SourceOrderOrNumArrayIndices = Record[Idx++];
6578 } else {
6579 SourceOrderOrNumArrayIndices = Record[Idx++];
6580 Indices.reserve(SourceOrderOrNumArrayIndices);
6581 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
Douglas Gregor409448c2011-07-21 22:35:25 +00006582 Indices.push_back(ReadDeclAs<VarDecl>(F, Record, Idx));
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006583 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006584
Sean Huntcbb67482011-01-08 20:30:50 +00006585 CXXCtorInitializer *BOMInit;
Sean Hunt156b6402011-05-04 01:19:08 +00006586 if (Type == CTOR_INITIALIZER_BASE) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006587 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, IsBaseVirtual,
Sean Huntcbb67482011-01-08 20:30:50 +00006588 LParenLoc, Init, RParenLoc,
6589 MemberOrEllipsisLoc);
Sean Hunt156b6402011-05-04 01:19:08 +00006590 } else if (Type == CTOR_INITIALIZER_DELEGATING) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006591 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, LParenLoc,
6592 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006593 } else if (IsWritten) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00006594 if (Member)
Douglas Gregor35942772011-09-09 21:34:22 +00006595 BOMInit = new (Context) CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006596 LParenLoc, Init, RParenLoc);
Francois Pichet00eb3f92010-12-04 09:14:42 +00006597 else
Douglas Gregor35942772011-09-09 21:34:22 +00006598 BOMInit = new (Context) CXXCtorInitializer(Context, IndirectMember,
Sean Huntcbb67482011-01-08 20:30:50 +00006599 MemberOrEllipsisLoc, LParenLoc,
6600 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006601 } else {
Douglas Gregor35942772011-09-09 21:34:22 +00006602 BOMInit = CXXCtorInitializer::Create(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006603 LParenLoc, Init, RParenLoc,
6604 Indices.data(), Indices.size());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006605 }
6606
Argyrios Kyrtzidisf84cde12010-09-06 19:04:27 +00006607 if (IsWritten)
6608 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Sean Huntcbb67482011-01-08 20:30:50 +00006609 CtorInitializers[i] = BOMInit;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006610 }
6611 }
6612
Sean Huntcbb67482011-01-08 20:30:50 +00006613 return std::make_pair(CtorInitializers, NumInitializers);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006614}
6615
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006616NestedNameSpecifier *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006617ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006618 const RecordData &Record, unsigned &Idx) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006619 unsigned N = Record[Idx++];
6620 NestedNameSpecifier *NNS = 0, *Prev = 0;
6621 for (unsigned I = 0; I != N; ++I) {
6622 NestedNameSpecifier::SpecifierKind Kind
6623 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6624 switch (Kind) {
6625 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006626 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006627 NNS = NestedNameSpecifier::Create(Context, Prev, II);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006628 break;
6629 }
6630
6631 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006632 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006633 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006634 break;
6635 }
6636
Douglas Gregor14aba762011-02-24 02:36:08 +00006637 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006638 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006639 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
Douglas Gregor14aba762011-02-24 02:36:08 +00006640 break;
6641 }
6642
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006643 case NestedNameSpecifier::TypeSpec:
6644 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregor393f2492011-07-22 00:38:23 +00006645 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
Douglas Gregor1ab55e92010-12-10 17:03:06 +00006646 if (!T)
6647 return 0;
6648
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006649 bool Template = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006650 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006651 break;
6652 }
6653
6654 case NestedNameSpecifier::Global: {
Douglas Gregor35942772011-09-09 21:34:22 +00006655 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006656 // No associated value, and there can't be a prefix.
6657 break;
6658 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006659 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00006660 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006661 }
6662 return NNS;
6663}
6664
Douglas Gregordc355712011-02-25 00:36:19 +00006665NestedNameSpecifierLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006666ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Douglas Gregordc355712011-02-25 00:36:19 +00006667 unsigned &Idx) {
6668 unsigned N = Record[Idx++];
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006669 NestedNameSpecifierLocBuilder Builder;
Douglas Gregordc355712011-02-25 00:36:19 +00006670 for (unsigned I = 0; I != N; ++I) {
6671 NestedNameSpecifier::SpecifierKind Kind
6672 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6673 switch (Kind) {
6674 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006675 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006676 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006677 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006678 break;
6679 }
6680
6681 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006682 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006683 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006684 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006685 break;
6686 }
6687
6688 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006689 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006690 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006691 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006692 break;
6693 }
6694
6695 case NestedNameSpecifier::TypeSpec:
6696 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregordc355712011-02-25 00:36:19 +00006697 bool Template = Record[Idx++];
6698 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
6699 if (!T)
6700 return NestedNameSpecifierLoc();
Douglas Gregordc355712011-02-25 00:36:19 +00006701 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006702
6703 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
Douglas Gregor35942772011-09-09 21:34:22 +00006704 Builder.Extend(Context,
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006705 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
6706 T->getTypeLoc(), ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006707 break;
6708 }
6709
6710 case NestedNameSpecifier::Global: {
Douglas Gregordc355712011-02-25 00:36:19 +00006711 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006712 Builder.MakeGlobal(Context, ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006713 break;
6714 }
6715 }
Douglas Gregordc355712011-02-25 00:36:19 +00006716 }
6717
Douglas Gregor35942772011-09-09 21:34:22 +00006718 return Builder.getWithLocInContext(Context);
Douglas Gregordc355712011-02-25 00:36:19 +00006719}
6720
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006721SourceRange
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006722ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006723 unsigned &Idx) {
6724 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
6725 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar8ee59392010-06-02 15:47:10 +00006726 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006727}
6728
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006729/// \brief Read an integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006730llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006731 unsigned BitWidth = Record[Idx++];
6732 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6733 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6734 Idx += NumWords;
6735 return Result;
6736}
6737
6738/// \brief Read a signed integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006739llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006740 bool isUnsigned = Record[Idx++];
6741 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
6742}
6743
Douglas Gregor17fc2232009-04-14 21:55:33 +00006744/// \brief Read a floating-point value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006745llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00006746 return llvm::APFloat(ReadAPInt(Record, Idx));
6747}
6748
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006749// \brief Read a string
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006750std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006751 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00006752 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006753 Idx += Len;
6754 return Result;
6755}
6756
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006757VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
6758 unsigned &Idx) {
6759 unsigned Major = Record[Idx++];
6760 unsigned Minor = Record[Idx++];
6761 unsigned Subminor = Record[Idx++];
6762 if (Minor == 0)
6763 return VersionTuple(Major);
6764 if (Subminor == 0)
6765 return VersionTuple(Major, Minor - 1);
6766 return VersionTuple(Major, Minor - 1, Subminor - 1);
6767}
6768
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006769CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006770 const RecordData &Record,
Chris Lattnerd2598362010-05-10 00:25:06 +00006771 unsigned &Idx) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006772 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006773 return CXXTemporary::Create(Context, Decl);
Chris Lattnerd2598362010-05-10 00:25:06 +00006774}
6775
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006776DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00006777 return Diag(SourceLocation(), DiagID);
6778}
6779
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006780DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00006781 return Diags.Report(Loc, DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006782}
Douglas Gregor025452f2009-04-17 00:04:06 +00006783
Douglas Gregor668c1a42009-04-21 22:25:48 +00006784/// \brief Retrieve the identifier table associated with the
6785/// preprocessor.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006786IdentifierTable &ASTReader::getIdentifierTable() {
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006787 return PP.getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00006788}
6789
Douglas Gregor025452f2009-04-17 00:04:06 +00006790/// \brief Record that the given ID maps to the given switch-case
6791/// statement.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006792void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006793 assert((*CurrSwitchCaseStmts)[ID] == 0 &&
6794 "Already have a SwitchCase with this ID");
6795 (*CurrSwitchCaseStmts)[ID] = SC;
Douglas Gregor025452f2009-04-17 00:04:06 +00006796}
6797
6798/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006799SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006800 assert((*CurrSwitchCaseStmts)[ID] != 0 && "No SwitchCase with this ID");
6801 return (*CurrSwitchCaseStmts)[ID];
Douglas Gregor025452f2009-04-17 00:04:06 +00006802}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00006803
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006804void ASTReader::ClearSwitchCaseIDs() {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006805 CurrSwitchCaseStmts->clear();
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006806}
6807
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006808void ASTReader::ReadComments() {
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006809 std::vector<RawComment *> Comments;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006810 for (SmallVectorImpl<std::pair<llvm::BitstreamCursor,
6811 serialization::ModuleFile *> >::iterator
6812 I = CommentsCursors.begin(),
6813 E = CommentsCursors.end();
6814 I != E; ++I) {
6815 llvm::BitstreamCursor &Cursor = I->first;
6816 serialization::ModuleFile &F = *I->second;
6817 SavedStreamPosition SavedPosition(Cursor);
6818
6819 RecordData Record;
6820 while (true) {
6821 unsigned Code = Cursor.ReadCode();
6822 if (Code == llvm::bitc::END_BLOCK)
6823 break;
6824
6825 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
6826 // No known subblocks, always skip them.
6827 Cursor.ReadSubBlockID();
6828 if (Cursor.SkipBlock()) {
6829 Error("malformed block record in AST file");
6830 return;
6831 }
6832 continue;
6833 }
6834
6835 if (Code == llvm::bitc::DEFINE_ABBREV) {
6836 Cursor.ReadAbbrevRecord();
6837 continue;
6838 }
6839
6840 // Read a record.
6841 Record.clear();
6842 switch ((CommentRecordTypes) Cursor.ReadRecord(Code, Record)) {
Chandler Carruth13691bb2012-06-20 06:47:54 +00006843 case COMMENTS_RAW_COMMENT: {
6844 unsigned Idx = 0;
6845 SourceRange SR = ReadSourceRange(F, Record, Idx);
6846 RawComment::CommentKind Kind =
6847 (RawComment::CommentKind) Record[Idx++];
6848 bool IsTrailingComment = Record[Idx++];
6849 bool IsAlmostTrailingComment = Record[Idx++];
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006850 Comments.push_back(new (Context) RawComment(SR, Kind,
6851 IsTrailingComment,
6852 IsAlmostTrailingComment));
Chandler Carruth13691bb2012-06-20 06:47:54 +00006853 break;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006854 }
6855 }
6856 }
6857 }
6858 Context.Comments.addCommentsToFront(Comments);
6859}
6860
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006861void ASTReader::finishPendingActions() {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00006862 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty() ||
6863 !PendingMacroIDs.empty()) {
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006864 // If any identifiers with corresponding top-level declarations have
6865 // been loaded, load those declarations now.
6866 while (!PendingIdentifierInfos.empty()) {
6867 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
6868 PendingIdentifierInfos.front().DeclIDs, true);
6869 PendingIdentifierInfos.pop_front();
6870 }
6871
Douglas Gregora1be2782011-12-17 23:38:30 +00006872 // Load pending declaration chains.
6873 for (unsigned I = 0; I != PendingDeclChains.size(); ++I) {
6874 loadPendingDeclChain(PendingDeclChains[I]);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006875 PendingDeclChainsKnown.erase(PendingDeclChains[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00006876 }
6877 PendingDeclChains.clear();
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00006878
6879 // Load any pending macro definitions.
Douglas Gregore9652bf2012-10-11 17:31:34 +00006880 for (unsigned I = 0; I != PendingMacroIDs.size(); ++I) {
6881 // FIXME: std::move here
6882 SmallVector<MacroID, 2> GlobalIDs = PendingMacroIDs.begin()[I].second;
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006883 MacroInfo *Hint = 0;
Douglas Gregore9652bf2012-10-11 17:31:34 +00006884 for (unsigned IDIdx = 0, NumIDs = GlobalIDs.size(); IDIdx != NumIDs;
6885 ++IDIdx) {
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006886 Hint = getMacro(GlobalIDs[IDIdx], Hint);
Douglas Gregore9652bf2012-10-11 17:31:34 +00006887 }
6888 }
6889 PendingMacroIDs.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006890 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006891
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006892 // If we deserialized any C++ or Objective-C class definitions, any
6893 // Objective-C protocol definitions, or any redeclarable templates, make sure
6894 // that all redeclarations point to the definitions. Note that this can only
6895 // happen now, after the redeclaration chains have been fully wired.
Douglas Gregorfc529f72011-12-19 19:00:47 +00006896 for (llvm::SmallPtrSet<Decl *, 4>::iterator D = PendingDefinitions.begin(),
6897 DEnd = PendingDefinitions.end();
6898 D != DEnd; ++D) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006899 if (TagDecl *TD = dyn_cast<TagDecl>(*D)) {
6900 if (const TagType *TagT = dyn_cast<TagType>(TD->TypeForDecl)) {
6901 // Make sure that the TagType points at the definition.
6902 const_cast<TagType*>(TagT)->decl = TD;
6903 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006904
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006905 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(*D)) {
6906 for (CXXRecordDecl::redecl_iterator R = RD->redecls_begin(),
6907 REnd = RD->redecls_end();
6908 R != REnd; ++R)
6909 cast<CXXRecordDecl>(*R)->DefinitionData = RD->DefinitionData;
6910
6911 }
6912
Douglas Gregorfc529f72011-12-19 19:00:47 +00006913 continue;
6914 }
6915
Douglas Gregor1d784b22012-01-01 19:51:50 +00006916 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(*D)) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006917 // Make sure that the ObjCInterfaceType points at the definition.
6918 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
6919 ->Decl = ID;
6920
Douglas Gregor1d784b22012-01-01 19:51:50 +00006921 for (ObjCInterfaceDecl::redecl_iterator R = ID->redecls_begin(),
6922 REnd = ID->redecls_end();
6923 R != REnd; ++R)
6924 R->Data = ID->Data;
6925
6926 continue;
6927 }
6928
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006929 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(*D)) {
6930 for (ObjCProtocolDecl::redecl_iterator R = PD->redecls_begin(),
6931 REnd = PD->redecls_end();
6932 R != REnd; ++R)
6933 R->Data = PD->Data;
6934
6935 continue;
6936 }
6937
6938 RedeclarableTemplateDecl *RTD
6939 = cast<RedeclarableTemplateDecl>(*D)->getCanonicalDecl();
6940 for (RedeclarableTemplateDecl::redecl_iterator R = RTD->redecls_begin(),
6941 REnd = RTD->redecls_end();
Douglas Gregorfc529f72011-12-19 19:00:47 +00006942 R != REnd; ++R)
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006943 R->Common = RTD->Common;
Douglas Gregorfc529f72011-12-19 19:00:47 +00006944 }
6945 PendingDefinitions.clear();
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006946
6947 // Load the bodies of any functions or methods we've encountered. We do
6948 // this now (delayed) so that we can be sure that the declaration chains
6949 // have been fully wired up.
Douglas Gregorce12d2f2012-10-09 17:50:23 +00006950 for (PendingBodiesMap::iterator PB = PendingBodies.begin(),
6951 PBEnd = PendingBodies.end();
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006952 PB != PBEnd; ++PB) {
6953 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(PB->first)) {
6954 // FIXME: Check for =delete/=default?
6955 // FIXME: Complain about ODR violations here?
6956 if (!getContext().getLangOpts().Modules || !FD->hasBody())
6957 FD->setLazyBody(PB->second);
6958 continue;
6959 }
6960
6961 ObjCMethodDecl *MD = cast<ObjCMethodDecl>(PB->first);
6962 if (!getContext().getLangOpts().Modules || !MD->hasBody())
6963 MD->setLazyBody(PB->second);
6964 }
6965 PendingBodies.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006966}
6967
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006968void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006969 assert(NumCurrentElementsDeserializing &&
6970 "FinishedDeserializing not paired with StartedDeserializing");
6971 if (NumCurrentElementsDeserializing == 1) {
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006972 // We decrease NumCurrentElementsDeserializing only after pending actions
6973 // are finished, to avoid recursively re-calling finishPendingActions().
6974 finishPendingActions();
6975 }
6976 --NumCurrentElementsDeserializing;
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006977
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006978 if (NumCurrentElementsDeserializing == 0 &&
6979 Consumer && !PassingDeclsToConsumer) {
6980 // Guard variable to avoid recursively redoing the process of passing
6981 // decls to consumer.
6982 SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
6983 true);
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006984
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006985 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00006986 // We are not in recursive loading, so it's safe to pass the "interesting"
6987 // decls to the consumer.
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006988 Decl *D = InterestingDecls.front();
6989 InterestingDecls.pop_front();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006990 PassInterestingDeclToConsumer(D);
6991 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006992 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006993}
Douglas Gregor501c1032010-08-19 00:28:17 +00006994
Douglas Gregorf8a1e512011-09-02 00:26:20 +00006995ASTReader::ASTReader(Preprocessor &PP, ASTContext &Context,
Douglas Gregor832d6202011-07-22 16:35:34 +00006996 StringRef isysroot, bool DisableValidation,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006997 bool DisableStatCache, bool AllowASTWithCompilerErrors)
Sebastian Redle1dde812010-08-24 00:50:04 +00006998 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
6999 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00007000 Diags(PP.getDiagnostics()), SemaObj(0), PP(PP), Context(Context),
Argyrios Kyrtzidisd64c26f2012-10-03 01:58:42 +00007001 Consumer(0), ModuleMgr(PP.getFileManager()),
Douglas Gregorcaed0602012-10-18 21:31:35 +00007002 isysroot(isysroot), DisableValidation(DisableValidation),
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00007003 DisableStatCache(DisableStatCache),
7004 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00007005 CurrentGeneration(0), CurrSwitchCaseStmts(&SwitchCaseStmts),
7006 NumStatHits(0), NumStatMisses(0),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00007007 NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00007008 NumStatementsRead(0), TotalNumStatements(0), NumMacrosRead(0),
7009 TotalNumMacros(0), NumSelectorsRead(0), NumMethodPoolEntriesRead(0),
7010 NumMethodPoolMisses(0), TotalNumMethodPoolEntries(0),
7011 NumLexicalDeclContextsRead(0), TotalLexicalDeclContexts(0),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00007012 NumVisibleDeclContextsRead(0), TotalVisibleDeclContexts(0),
7013 TotalModulesSizeInBits(0), NumCurrentElementsDeserializing(0),
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00007014 PassingDeclsToConsumer(false),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00007015 NumCXXBaseSpecifiersLoaded(0)
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00007016{
Douglas Gregorf62d43d2011-07-19 16:10:42 +00007017 SourceMgr.setExternalSLocEntrySource(this);
Sebastian Redle1dde812010-08-24 00:50:04 +00007018}
7019
Sebastian Redle1dde812010-08-24 00:50:04 +00007020ASTReader::~ASTReader() {
Sebastian Redle1dde812010-08-24 00:50:04 +00007021 for (DeclContextVisibleUpdatesPending::iterator
7022 I = PendingVisibleUpdates.begin(),
7023 E = PendingVisibleUpdates.end();
7024 I != E; ++I) {
7025 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
7026 F = I->second.end();
7027 J != F; ++J)
Benjamin Kramerb1758c62012-04-15 12:36:49 +00007028 delete J->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00007029 }
7030}