blob: 48578569d56af1bc3e2dfccb2e45ea54aa11c85b [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:
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002515 if (F.PragmaDiagMappings.empty())
2516 F.PragmaDiagMappings.swap(Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002517 else
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002518 F.PragmaDiagMappings.insert(F.PragmaDiagMappings.end(),
2519 Record.begin(), Record.end());
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002520 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002521
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002522 case CUDA_SPECIAL_DECL_REFS:
2523 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002524 // FIXME: Modules will have trouble with this.
2525 CUDASpecialDeclRefs.clear();
2526 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2527 CUDASpecialDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002528 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002529
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002530 case HEADER_SEARCH_TABLE: {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002531 F.HeaderFileInfoTableData = BlobStart;
2532 F.LocalNumHeaderFileInfos = Record[1];
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002533 F.HeaderFileFrameworkStrings = BlobStart + Record[2];
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002534 if (Record[0]) {
2535 F.HeaderFileInfoTable
2536 = HeaderFileInfoLookupTable::Create(
2537 (const unsigned char *)F.HeaderFileInfoTableData + Record[0],
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002538 (const unsigned char *)F.HeaderFileInfoTableData,
Douglas Gregor95eab172011-07-28 20:55:49 +00002539 HeaderFileInfoTrait(*this, F,
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002540 &PP.getHeaderSearchInfo(),
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002541 BlobStart + Record[2]));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002542
2543 PP.getHeaderSearchInfo().SetExternalSource(this);
2544 if (!PP.getHeaderSearchInfo().getExternalLookup())
2545 PP.getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002546 }
2547 break;
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002548 }
2549
Peter Collingbourne84bccea2011-02-15 19:46:30 +00002550 case FP_PRAGMA_OPTIONS:
2551 // Later tables overwrite earlier ones.
2552 FPPragmaOptions.swap(Record);
2553 break;
2554
2555 case OPENCL_EXTENSIONS:
2556 // Later tables overwrite earlier ones.
2557 OpenCLExtensions.swap(Record);
2558 break;
Sean Huntebcbe1d2011-05-04 23:29:54 +00002559
2560 case TENTATIVE_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002561 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2562 TentativeDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00002563 break;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002564
2565 case KNOWN_NAMESPACES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002566 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2567 KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002568 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002569
2570 case IMPORTED_MODULES: {
2571 if (F.Kind != MK_Module) {
2572 // If we aren't loading a module (which has its own exports), make
2573 // all of the imported modules visible.
2574 // FIXME: Deal with macros-only imports.
2575 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
2576 if (unsigned GlobalID = getGlobalSubmoduleID(F, Record[I]))
2577 ImportedModules.push_back(GlobalID);
2578 }
2579 }
2580 break;
Douglas Gregora1be2782011-12-17 23:38:30 +00002581 }
Douglas Gregor2171bf12012-01-15 16:58:34 +00002582
Douglas Gregora1be2782011-12-17 23:38:30 +00002583 case LOCAL_REDECLARATIONS: {
Douglas Gregor2171bf12012-01-15 16:58:34 +00002584 F.RedeclarationChains.swap(Record);
2585 break;
2586 }
2587
2588 case LOCAL_REDECLARATIONS_MAP: {
2589 if (F.LocalNumRedeclarationsInMap != 0) {
2590 Error("duplicate LOCAL_REDECLARATIONS_MAP record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002591 return true;
Douglas Gregora1be2782011-12-17 23:38:30 +00002592 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002593
Douglas Gregor2171bf12012-01-15 16:58:34 +00002594 F.LocalNumRedeclarationsInMap = Record[0];
2595 F.RedeclarationsMap = (const LocalRedeclarationsInfo *)BlobStart;
Douglas Gregora1be2782011-12-17 23:38:30 +00002596 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002597 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002598
2599 case MERGED_DECLARATIONS: {
2600 for (unsigned Idx = 0; Idx < Record.size(); /* increment in loop */) {
2601 GlobalDeclID CanonID = getGlobalDeclID(F, Record[Idx++]);
2602 SmallVectorImpl<GlobalDeclID> &Decls = StoredMergedDecls[CanonID];
2603 for (unsigned N = Record[Idx++]; N > 0; --N)
2604 Decls.push_back(getGlobalDeclID(F, Record[Idx++]));
2605 }
2606 break;
2607 }
Douglas Gregora8235d62012-10-09 23:05:51 +00002608
2609 case MACRO_OFFSET: {
2610 if (F.LocalNumMacros != 0) {
2611 Error("duplicate MACRO_OFFSET record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002612 return true;
Douglas Gregora8235d62012-10-09 23:05:51 +00002613 }
2614 F.MacroOffsets = (const uint32_t *)BlobStart;
2615 F.LocalNumMacros = Record[0];
2616 unsigned LocalBaseMacroID = Record[1];
2617 F.BaseMacroID = getTotalNumMacros();
2618
2619 if (F.LocalNumMacros > 0) {
2620 // Introduce the global -> local mapping for macros within this module.
2621 GlobalMacroMap.insert(std::make_pair(getTotalNumMacros() + 1, &F));
2622
2623 // Introduce the local -> global mapping for macros within this module.
2624 F.MacroRemap.insertOrReplace(
2625 std::make_pair(LocalBaseMacroID,
2626 F.BaseMacroID - LocalBaseMacroID));
2627
2628 MacrosLoaded.resize(MacrosLoaded.size() + F.LocalNumMacros);
2629 }
2630 break;
2631 }
2632
2633 case MACRO_UPDATES: {
2634 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
2635 MacroID ID = getGlobalMacroID(F, Record[I++]);
2636 if (I == N)
2637 break;
2638
Douglas Gregor54c8a402012-10-12 00:16:50 +00002639 SourceLocation UndefLoc = ReadSourceLocation(F, Record, I);
2640 SubmoduleID SubmoduleID = getGlobalSubmoduleID(F, Record[I++]);;
2641 MacroUpdate Update;
2642 Update.UndefLoc = UndefLoc;
2643 MacroUpdates[ID].push_back(std::make_pair(SubmoduleID, Update));
Douglas Gregora8235d62012-10-09 23:05:51 +00002644 }
2645 break;
2646 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002647 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002648 }
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002649 Error("premature end of bitstream in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00002650 return true;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002651}
2652
Douglas Gregorecc2c092011-12-01 22:20:10 +00002653void ASTReader::makeNamesVisible(const HiddenNames &Names) {
Douglas Gregor13292642011-12-02 15:45:10 +00002654 for (unsigned I = 0, N = Names.size(); I != N; ++I) {
Douglas Gregor54c8a402012-10-12 00:16:50 +00002655 switch (Names[I].getKind()) {
2656 case HiddenName::Declaration:
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00002657 Names[I].getDecl()->Hidden = false;
Douglas Gregor54c8a402012-10-12 00:16:50 +00002658 break;
2659
2660 case HiddenName::MacroVisibility: {
2661 std::pair<IdentifierInfo *, MacroInfo *> Macro = Names[I].getMacro();
2662 Macro.second->setHidden(!Macro.second->isPublic());
2663 if (Macro.second->isDefined()) {
2664 PP.makeLoadedMacroInfoVisible(Macro.first, Macro.second);
2665 }
2666 break;
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00002667 }
2668
Douglas Gregor54c8a402012-10-12 00:16:50 +00002669 case HiddenName::MacroUndef: {
2670 std::pair<IdentifierInfo *, MacroInfo *> Macro = Names[I].getMacro();
2671 if (Macro.second->isDefined()) {
2672 Macro.second->setUndefLoc(Names[I].getMacroUndefLoc());
2673 if (PPMutationListener *Listener = PP.getPPMutationListener())
2674 Listener->UndefinedMacro(Macro.second);
2675 PP.makeLoadedMacroInfoVisible(Macro.first, Macro.second);
2676 }
2677 break;
2678 }
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002679 }
Douglas Gregor13292642011-12-02 15:45:10 +00002680 }
Douglas Gregorecc2c092011-12-01 22:20:10 +00002681}
2682
Douglas Gregor5e356932011-12-01 17:11:21 +00002683void ASTReader::makeModuleVisible(Module *Mod,
2684 Module::NameVisibilityKind NameVisibility) {
2685 llvm::SmallPtrSet<Module *, 4> Visited;
2686 llvm::SmallVector<Module *, 4> Stack;
2687 Stack.push_back(Mod);
2688 while (!Stack.empty()) {
2689 Mod = Stack.back();
2690 Stack.pop_back();
2691
2692 if (NameVisibility <= Mod->NameVisibility) {
2693 // This module already has this level of visibility (or greater), so
2694 // there is nothing more to do.
2695 continue;
2696 }
2697
Douglas Gregor51f564f2011-12-31 04:05:44 +00002698 if (!Mod->isAvailable()) {
2699 // Modules that aren't available cannot be made visible.
2700 continue;
2701 }
2702
Douglas Gregor5e356932011-12-01 17:11:21 +00002703 // Update the module's name visibility.
2704 Mod->NameVisibility = NameVisibility;
2705
Douglas Gregorecc2c092011-12-01 22:20:10 +00002706 // If we've already deserialized any names from this module,
Douglas Gregor5e356932011-12-01 17:11:21 +00002707 // mark them as visible.
Douglas Gregorecc2c092011-12-01 22:20:10 +00002708 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
2709 if (Hidden != HiddenNamesMap.end()) {
2710 makeNamesVisible(Hidden->second);
2711 HiddenNamesMap.erase(Hidden);
2712 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002713
2714 // Push any non-explicit submodules onto the stack to be marked as
2715 // visible.
Douglas Gregorb7a78192012-01-04 23:32:19 +00002716 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2717 SubEnd = Mod->submodule_end();
Douglas Gregor5e356932011-12-01 17:11:21 +00002718 Sub != SubEnd; ++Sub) {
Douglas Gregorb7a78192012-01-04 23:32:19 +00002719 if (!(*Sub)->IsExplicit && Visited.insert(*Sub))
2720 Stack.push_back(*Sub);
Douglas Gregor5e356932011-12-01 17:11:21 +00002721 }
Douglas Gregor07165b92011-12-02 19:11:09 +00002722
2723 // Push any exported modules onto the stack to be marked as visible.
Douglas Gregor0adaa882011-12-05 17:28:06 +00002724 bool AnyWildcard = false;
2725 bool UnrestrictedWildcard = false;
2726 llvm::SmallVector<Module *, 4> WildcardRestrictions;
Douglas Gregor07165b92011-12-02 19:11:09 +00002727 for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) {
2728 Module *Exported = Mod->Exports[I].getPointer();
Douglas Gregor0adaa882011-12-05 17:28:06 +00002729 if (!Mod->Exports[I].getInt()) {
2730 // Export a named module directly; no wildcards involved.
2731 if (Visited.insert(Exported))
Douglas Gregor07165b92011-12-02 19:11:09 +00002732 Stack.push_back(Exported);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002733
2734 continue;
Douglas Gregor07165b92011-12-02 19:11:09 +00002735 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002736
2737 // Wildcard export: export all of the imported modules that match
2738 // the given pattern.
2739 AnyWildcard = true;
2740 if (UnrestrictedWildcard)
2741 continue;
2742
2743 if (Module *Restriction = Mod->Exports[I].getPointer())
2744 WildcardRestrictions.push_back(Restriction);
2745 else {
2746 WildcardRestrictions.clear();
2747 UnrestrictedWildcard = true;
2748 }
2749 }
2750
2751 // If there were any wildcards, push any imported modules that were
2752 // re-exported by the wildcard restriction.
2753 if (!AnyWildcard)
2754 continue;
2755
2756 for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) {
2757 Module *Imported = Mod->Imports[I];
Benjamin Kramerd48bcb22012-08-22 15:37:55 +00002758 if (!Visited.insert(Imported))
Douglas Gregor0adaa882011-12-05 17:28:06 +00002759 continue;
2760
2761 bool Acceptable = UnrestrictedWildcard;
2762 if (!Acceptable) {
2763 // Check whether this module meets one of the restrictions.
2764 for (unsigned R = 0, NR = WildcardRestrictions.size(); R != NR; ++R) {
2765 Module *Restriction = WildcardRestrictions[R];
2766 if (Imported == Restriction || Imported->isSubModuleOf(Restriction)) {
2767 Acceptable = true;
2768 break;
2769 }
2770 }
2771 }
2772
2773 if (!Acceptable)
2774 continue;
2775
Douglas Gregor0adaa882011-12-05 17:28:06 +00002776 Stack.push_back(Imported);
Douglas Gregor07165b92011-12-02 19:11:09 +00002777 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002778 }
2779}
2780
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00002781ASTReader::ASTReadResult ASTReader::ReadAST(const std::string &FileName,
Douglas Gregor38295be2012-10-22 23:51:00 +00002782 ModuleKind Type,
2783 unsigned ClientLoadCapabilities) {
Douglas Gregor057df202012-01-18 20:56:22 +00002784 // Bump the generation number.
Douglas Gregorcff9f262012-01-27 01:47:08 +00002785 unsigned PreviousGeneration = CurrentGeneration++;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002786
2787 // Load the core of the AST files.
2788 llvm::SmallVector<ModuleFile *, 4> Loaded;
Douglas Gregor38295be2012-10-22 23:51:00 +00002789 switch(ReadASTCore(FileName, Type, /*ImportedBy=*/0, Loaded,
2790 ClientLoadCapabilities)) {
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002791 case Failure: return Failure;
Douglas Gregor4825fd72012-10-22 22:50:17 +00002792 case OutOfDate: return OutOfDate;
2793 case VersionMismatch: return VersionMismatch;
2794 case ConfigurationMismatch: return ConfigurationMismatch;
2795 case HadErrors: return HadErrors;
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002796 case Success: break;
2797 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002798
2799 // Here comes stuff that we only do once the entire chain is loaded.
Douglas Gregor057df202012-01-18 20:56:22 +00002800
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002801 // Load the AST blocks of all of the modules that we loaded.
2802 for (llvm::SmallVectorImpl<ModuleFile *>::iterator M = Loaded.begin(),
2803 MEnd = Loaded.end();
2804 M != MEnd; ++M) {
2805 ModuleFile &F = **M;
2806
2807 // Read the AST block.
Douglas Gregor4825fd72012-10-22 22:50:17 +00002808 if (ReadASTBlock(F))
2809 return Failure;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002810
2811 // Once read, set the ModuleFile bit base offset and update the size in
2812 // bits of all files we've seen.
2813 F.GlobalBitOffset = TotalModulesSizeInBits;
2814 TotalModulesSizeInBits += F.SizeInBits;
2815 GlobalBitOffsetsMap.insert(std::make_pair(F.GlobalBitOffset, &F));
2816
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002817 // Preload SLocEntries.
2818 for (unsigned I = 0, N = F.PreloadSLocEntries.size(); I != N; ++I) {
2819 int Index = int(F.PreloadSLocEntries[I] - 1) + F.SLocEntryBaseID;
Douglas Gregor8b53d142012-10-22 22:53:10 +00002820 // Load it through the SourceManager and don't call ReadSLocEntry()
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002821 // directly because the entry may have already been loaded in which case
Douglas Gregor8b53d142012-10-22 22:53:10 +00002822 // calling ReadSLocEntry() directly would trigger an assertion in
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002823 // SourceManager.
2824 SourceMgr.getLoadedSLocEntryByID(Index);
2825 }
2826 }
2827
Douglas Gregoreee242f2011-10-27 09:33:13 +00002828 // Mark all of the identifiers in the identifier table as being out of date,
2829 // so that various accessors know to check the loaded modules when the
2830 // identifier is used.
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002831 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
2832 IdEnd = PP.getIdentifierTable().end();
2833 Id != IdEnd; ++Id)
Douglas Gregoreee242f2011-10-27 09:33:13 +00002834 Id->second->setOutOfDate(true);
Douglas Gregor057df202012-01-18 20:56:22 +00002835
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002836 // Resolve any unresolved module exports.
Douglas Gregor55988682011-12-05 16:33:54 +00002837 for (unsigned I = 0, N = UnresolvedModuleImportExports.size(); I != N; ++I) {
2838 UnresolvedModuleImportExport &Unresolved = UnresolvedModuleImportExports[I];
2839 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002840 Module *ResolvedMod = getSubmodule(GlobalID);
2841
2842 if (Unresolved.IsImport) {
2843 if (ResolvedMod)
Douglas Gregor55988682011-12-05 16:33:54 +00002844 Unresolved.Mod->Imports.push_back(ResolvedMod);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002845 continue;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002846 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002847
2848 if (ResolvedMod || Unresolved.IsWildcard)
2849 Unresolved.Mod->Exports.push_back(
2850 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard));
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002851 }
Douglas Gregor55988682011-12-05 16:33:54 +00002852 UnresolvedModuleImportExports.clear();
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002853
Douglas Gregor35942772011-09-09 21:34:22 +00002854 InitializeContext();
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002855
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002856 if (DeserializationListener)
2857 DeserializationListener->ReaderInitialized(this);
2858
Douglas Gregor11407b82012-10-18 21:18:25 +00002859 ModuleFile &PrimaryModule = ModuleMgr.getPrimaryModule();
2860 if (!PrimaryModule.OriginalSourceFileID.isInvalid()) {
2861 PrimaryModule.OriginalSourceFileID
2862 = FileID::get(PrimaryModule.SLocEntryBaseID
2863 + PrimaryModule.OriginalSourceFileID.getOpaqueValue() - 1);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002864
Douglas Gregor11407b82012-10-18 21:18:25 +00002865 // If this AST file is a precompiled preamble, then set the
2866 // preamble file ID of the source manager to the file source file
2867 // from which the preamble was built.
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002868 if (Type == MK_Preamble) {
Douglas Gregor11407b82012-10-18 21:18:25 +00002869 SourceMgr.setPreambleFileID(PrimaryModule.OriginalSourceFileID);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002870 } else if (Type == MK_MainFile) {
Douglas Gregor11407b82012-10-18 21:18:25 +00002871 SourceMgr.setMainFileID(PrimaryModule.OriginalSourceFileID);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002872 }
Douglas Gregor414cb642010-11-30 05:23:00 +00002873 }
2874
Douglas Gregorcff9f262012-01-27 01:47:08 +00002875 // For any Objective-C class definitions we have already loaded, make sure
2876 // that we load any additional categories.
2877 for (unsigned I = 0, N = ObjCClassesLoaded.size(); I != N; ++I) {
2878 loadObjCCategories(ObjCClassesLoaded[I]->getGlobalID(),
2879 ObjCClassesLoaded[I],
2880 PreviousGeneration);
2881 }
2882
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002883 return Success;
2884}
2885
Douglas Gregor38295be2012-10-22 23:51:00 +00002886ASTReader::ASTReadResult
2887ASTReader::ReadASTCore(StringRef FileName,
2888 ModuleKind Type,
2889 ModuleFile *ImportedBy,
2890 llvm::SmallVectorImpl<ModuleFile *> &Loaded,
2891 unsigned ClientLoadCapabilities) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002892 ModuleFile *M;
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002893 bool NewModule;
2894 std::string ErrorStr;
2895 llvm::tie(M, NewModule) = ModuleMgr.addModule(FileName, Type, ImportedBy,
Douglas Gregor057df202012-01-18 20:56:22 +00002896 CurrentGeneration, ErrorStr);
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002897
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002898 if (!M) {
2899 // We couldn't load the module.
2900 std::string Msg = "Unable to load module \"" + FileName.str() + "\": "
2901 + ErrorStr;
2902 Error(Msg);
2903 return Failure;
2904 }
2905
2906 if (!NewModule) {
2907 // We've already loaded this module.
2908 return Success;
2909 }
2910
2911 // FIXME: This seems rather a hack. Should CurrentDir be part of the
2912 // module?
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002913 if (FileName != "-") {
2914 CurrentDir = llvm::sys::path::parent_path(FileName);
2915 if (CurrentDir.empty()) CurrentDir = ".";
2916 }
2917
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002918 ModuleFile &F = *M;
Sebastian Redl9137a522010-07-16 17:50:48 +00002919 llvm::BitstreamCursor &Stream = F.Stream;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002920 Stream.init(F.StreamFile);
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002921 F.SizeInBits = F.Buffer->getBufferSize() * 8;
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002922
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002923 // Sniff for the signature.
2924 if (Stream.Read(8) != 'C' ||
2925 Stream.Read(8) != 'P' ||
2926 Stream.Read(8) != 'C' ||
2927 Stream.Read(8) != 'H') {
2928 Diag(diag::err_not_a_pch_file) << FileName;
2929 return Failure;
2930 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002931
Douglas Gregor2cf26342009-04-09 22:27:44 +00002932 while (!Stream.AtEndOfStream()) {
2933 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00002934
Douglas Gregore1d918e2009-04-10 23:10:45 +00002935 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002936 Error("invalid record at top-level of AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002937 return Failure;
2938 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002939
2940 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00002941
Douglas Gregor7ae467f2012-10-18 18:27:37 +00002942 // We only know the control subblock ID.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002943 switch (BlockID) {
2944 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002945 if (Stream.ReadBlockInfoBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002946 Error("malformed BlockInfoBlock in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002947 return Failure;
2948 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002949 break;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002950 case CONTROL_BLOCK_ID:
Douglas Gregor38295be2012-10-22 23:51:00 +00002951 switch (ReadControlBlock(F, Loaded, ClientLoadCapabilities)) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002952 case Success:
2953 break;
2954
Douglas Gregor4825fd72012-10-22 22:50:17 +00002955 case Failure: return Failure;
2956 case OutOfDate: return OutOfDate;
2957 case VersionMismatch: return VersionMismatch;
2958 case ConfigurationMismatch: return ConfigurationMismatch;
2959 case HadErrors: return HadErrors;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002960 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002961 break;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00002962 case AST_BLOCK_ID:
2963 // Record that we've loaded this module.
2964 Loaded.push_back(M);
2965 return Success;
2966
Douglas Gregor2cf26342009-04-09 22:27:44 +00002967 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002968 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002969 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002970 return Failure;
2971 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002972 break;
2973 }
Mike Stump1eb44332009-09-09 15:08:12 +00002974 }
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002975
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002976 return Success;
2977}
2978
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002979void ASTReader::InitializeContext() {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002980 // If there's a listener, notify them that we "read" the translation unit.
2981 if (DeserializationListener)
Douglas Gregor35942772011-09-09 21:34:22 +00002982 DeserializationListener->DeclRead(PREDEF_DECL_TRANSLATION_UNIT_ID,
2983 Context.getTranslationUnitDecl());
Douglas Gregor3747ee72010-10-01 01:18:02 +00002984
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002985 // Make sure we load the declaration update records for the translation unit,
2986 // if there are any.
Douglas Gregor35942772011-09-09 21:34:22 +00002987 loadDeclUpdateRecords(PREDEF_DECL_TRANSLATION_UNIT_ID,
2988 Context.getTranslationUnitDecl());
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002989
Douglas Gregor5f957282011-08-11 22:18:49 +00002990 // FIXME: Find a better way to deal with collisions between these
2991 // built-in types. Right now, we just ignore the problem.
2992
2993 // Load the special types.
Douglas Gregora6ea10e2012-01-17 18:09:05 +00002994 if (SpecialTypes.size() >= NumSpecialTypeIDs) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002995 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) {
2996 if (!Context.CFConstantStringTypeDecl)
2997 Context.setCFConstantStringType(GetType(String));
2998 }
2999
3000 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
3001 QualType FileType = GetType(File);
3002 if (FileType.isNull()) {
3003 Error("FILE type is NULL");
3004 return;
3005 }
3006
3007 if (!Context.FILEDecl) {
3008 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
3009 Context.setFILEDecl(Typedef->getDecl());
3010 else {
3011 const TagType *Tag = FileType->getAs<TagType>();
3012 if (!Tag) {
3013 Error("Invalid FILE type in AST file");
3014 return;
3015 }
3016 Context.setFILEDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003017 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003018 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00003019 }
Douglas Gregor5f957282011-08-11 22:18:49 +00003020
Douglas Gregor72cd7a02011-11-11 19:13:12 +00003021 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00003022 QualType Jmp_bufType = GetType(Jmp_buf);
3023 if (Jmp_bufType.isNull()) {
3024 Error("jmp_buf type is NULL");
3025 return;
3026 }
3027
3028 if (!Context.jmp_bufDecl) {
3029 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
3030 Context.setjmp_bufDecl(Typedef->getDecl());
3031 else {
3032 const TagType *Tag = Jmp_bufType->getAs<TagType>();
3033 if (!Tag) {
3034 Error("Invalid jmp_buf type in AST file");
3035 return;
3036 }
3037 Context.setjmp_bufDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003038 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00003039 }
Mike Stump782fa302009-07-28 02:25:19 +00003040 }
Douglas Gregor02a5e872011-09-10 00:30:18 +00003041
Douglas Gregor72cd7a02011-11-11 19:13:12 +00003042 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00003043 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
3044 if (Sigjmp_bufType.isNull()) {
3045 Error("sigjmp_buf type is NULL");
3046 return;
3047 }
3048
3049 if (!Context.sigjmp_bufDecl) {
3050 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
3051 Context.setsigjmp_bufDecl(Typedef->getDecl());
3052 else {
3053 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
3054 assert(Tag && "Invalid sigjmp_buf type in AST file");
3055 Context.setsigjmp_bufDecl(Tag->getDecl());
3056 }
3057 }
3058 }
3059
3060 if (unsigned ObjCIdRedef
3061 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) {
3062 if (Context.ObjCIdRedefinitionType.isNull())
3063 Context.ObjCIdRedefinitionType = GetType(ObjCIdRedef);
3064 }
3065
3066 if (unsigned ObjCClassRedef
3067 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) {
3068 if (Context.ObjCClassRedefinitionType.isNull())
3069 Context.ObjCClassRedefinitionType = GetType(ObjCClassRedef);
3070 }
3071
3072 if (unsigned ObjCSelRedef
3073 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) {
3074 if (Context.ObjCSelRedefinitionType.isNull())
3075 Context.ObjCSelRedefinitionType = GetType(ObjCSelRedef);
3076 }
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00003077
3078 if (unsigned Ucontext_t = SpecialTypes[SPECIAL_TYPE_UCONTEXT_T]) {
3079 QualType Ucontext_tType = GetType(Ucontext_t);
3080 if (Ucontext_tType.isNull()) {
3081 Error("ucontext_t type is NULL");
3082 return;
3083 }
3084
3085 if (!Context.ucontext_tDecl) {
3086 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
3087 Context.setucontext_tDecl(Typedef->getDecl());
3088 else {
3089 const TagType *Tag = Ucontext_tType->getAs<TagType>();
3090 assert(Tag && "Invalid ucontext_t type in AST file");
3091 Context.setucontext_tDecl(Tag->getDecl());
3092 }
3093 }
3094 }
Douglas Gregor5f957282011-08-11 22:18:49 +00003095 }
3096
Douglas Gregor35942772011-09-09 21:34:22 +00003097 ReadPragmaDiagnosticMappings(Context.getDiagnostics());
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00003098
3099 // If there were any CUDA special declarations, deserialize them.
3100 if (!CUDASpecialDeclRefs.empty()) {
3101 assert(CUDASpecialDeclRefs.size() == 1 && "More decl refs than expected!");
Douglas Gregor35942772011-09-09 21:34:22 +00003102 Context.setcudaConfigureCallDecl(
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00003103 cast<FunctionDecl>(GetDecl(CUDASpecialDeclRefs[0])));
3104 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00003105
3106 // Re-export any modules that were imported by a non-module AST file.
3107 for (unsigned I = 0, N = ImportedModules.size(); I != N; ++I) {
3108 if (Module *Imported = getSubmodule(ImportedModules[I]))
3109 makeModuleVisible(Imported, Module::AllVisible);
3110 }
3111 ImportedModules.clear();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003112}
3113
Douglas Gregorecc2c092011-12-01 22:20:10 +00003114void ASTReader::finalizeForWriting() {
3115 for (HiddenNamesMapType::iterator Hidden = HiddenNamesMap.begin(),
3116 HiddenEnd = HiddenNamesMap.end();
3117 Hidden != HiddenEnd; ++Hidden) {
3118 makeNamesVisible(Hidden->second);
3119 }
3120 HiddenNamesMap.clear();
3121}
3122
Douglas Gregorb64c1932009-05-12 01:31:05 +00003123/// \brief Retrieve the name of the original source file name
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003124/// directly from the AST file, without actually loading the AST
Douglas Gregorb64c1932009-05-12 01:31:05 +00003125/// file.
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003126std::string ASTReader::getOriginalSourceFile(const std::string &ASTFileName,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00003127 FileManager &FileMgr,
David Blaikied6471f72011-09-25 23:23:43 +00003128 DiagnosticsEngine &Diags) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003129 // Open the AST file.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003130 std::string ErrStr;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00003131 OwningPtr<llvm::MemoryBuffer> Buffer;
Chris Lattner39b49bc2010-11-23 08:35:12 +00003132 Buffer.reset(FileMgr.getBufferForFile(ASTFileName, &ErrStr));
Douglas Gregorb64c1932009-05-12 01:31:05 +00003133 if (!Buffer) {
Kaelyn Uhrainda01f622012-06-20 00:36:03 +00003134 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ASTFileName << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003135 return std::string();
3136 }
3137
3138 // Initialize the stream
3139 llvm::BitstreamReader StreamFile;
3140 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00003141 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00003142 (const unsigned char *)Buffer->getBufferEnd());
3143 Stream.init(StreamFile);
3144
3145 // Sniff for the signature.
3146 if (Stream.Read(8) != 'C' ||
3147 Stream.Read(8) != 'P' ||
3148 Stream.Read(8) != 'C' ||
3149 Stream.Read(8) != 'H') {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003150 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003151 return std::string();
3152 }
3153
3154 RecordData Record;
3155 while (!Stream.AtEndOfStream()) {
3156 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00003157
Douglas Gregorb64c1932009-05-12 01:31:05 +00003158 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3159 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00003160
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003161 // We only know the AST subblock ID.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003162 switch (BlockID) {
Douglas Gregor1d9d9892012-10-18 05:31:06 +00003163 case CONTROL_BLOCK_ID:
3164 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003165 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003166 return std::string();
3167 }
3168 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003169
Douglas Gregorb64c1932009-05-12 01:31:05 +00003170 default:
3171 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003172 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003173 return std::string();
3174 }
3175 break;
3176 }
3177 continue;
3178 }
3179
3180 if (Code == llvm::bitc::END_BLOCK) {
3181 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003182 Diags.Report(diag::err_fe_pch_error_at_end_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003183 return std::string();
3184 }
3185 continue;
3186 }
3187
3188 if (Code == llvm::bitc::DEFINE_ABBREV) {
3189 Stream.ReadAbbrevRecord();
3190 continue;
3191 }
3192
3193 Record.clear();
3194 const char *BlobStart = 0;
3195 unsigned BlobLen = 0;
Douglas Gregor39c497b2012-10-18 18:36:53 +00003196 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen) == ORIGINAL_FILE)
Douglas Gregorb64c1932009-05-12 01:31:05 +00003197 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00003198 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00003199
3200 return std::string();
3201}
3202
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003203namespace {
3204 class SimplePCHValidator : public ASTReaderListener {
3205 const LangOptions &ExistingLangOpts;
3206 const TargetOptions &ExistingTargetOpts;
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003207 const PreprocessorOptions &ExistingPPOpts;
Douglas Gregor87699242012-10-25 00:07:54 +00003208 FileManager &FileMgr;
3209
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003210 public:
3211 SimplePCHValidator(const LangOptions &ExistingLangOpts,
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003212 const TargetOptions &ExistingTargetOpts,
Douglas Gregor87699242012-10-25 00:07:54 +00003213 const PreprocessorOptions &ExistingPPOpts,
3214 FileManager &FileMgr)
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003215 : ExistingLangOpts(ExistingLangOpts),
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003216 ExistingTargetOpts(ExistingTargetOpts),
Douglas Gregor87699242012-10-25 00:07:54 +00003217 ExistingPPOpts(ExistingPPOpts),
3218 FileMgr(FileMgr)
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003219 {
3220 }
3221
3222 virtual bool ReadLanguageOptions(const LangOptions &LangOpts,
3223 bool Complain) {
3224 return checkLanguageOptions(ExistingLangOpts, LangOpts, 0);
3225 }
3226 virtual bool ReadTargetOptions(const TargetOptions &TargetOpts,
3227 bool Complain) {
3228 return checkTargetOptions(ExistingTargetOpts, TargetOpts, 0);
3229 }
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003230 virtual bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
Douglas Gregor87699242012-10-25 00:07:54 +00003231 bool Complain,
3232 std::string &SuggestedPredefines) {
3233 return checkPreprocessorOptions(ExistingPPOpts, PPOpts, 0, FileMgr,
3234 SuggestedPredefines);
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003235 }
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003236 };
3237}
3238
3239bool ASTReader::isAcceptableASTFile(StringRef Filename,
3240 FileManager &FileMgr,
3241 const LangOptions &LangOpts,
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003242 const TargetOptions &TargetOpts,
3243 const PreprocessorOptions &PPOpts) {
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003244 // Open the AST file.
3245 std::string ErrStr;
3246 OwningPtr<llvm::MemoryBuffer> Buffer;
3247 Buffer.reset(FileMgr.getBufferForFile(Filename, &ErrStr));
3248 if (!Buffer) {
3249 return false;
3250 }
3251
3252 // Initialize the stream
3253 llvm::BitstreamReader StreamFile;
3254 llvm::BitstreamCursor Stream;
3255 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
3256 (const unsigned char *)Buffer->getBufferEnd());
3257 Stream.init(StreamFile);
3258
3259 // Sniff for the signature.
3260 if (Stream.Read(8) != 'C' ||
3261 Stream.Read(8) != 'P' ||
3262 Stream.Read(8) != 'C' ||
3263 Stream.Read(8) != 'H') {
3264 return false;
3265 }
3266
Douglas Gregor87699242012-10-25 00:07:54 +00003267 SimplePCHValidator Validator(LangOpts, TargetOpts, PPOpts, FileMgr);
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003268 RecordData Record;
3269 bool InControlBlock = false;
3270 while (!Stream.AtEndOfStream()) {
3271 unsigned Code = Stream.ReadCode();
3272
3273 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3274 unsigned BlockID = Stream.ReadSubBlockID();
3275
3276 // We only know the control subblock ID.
3277 switch (BlockID) {
3278 case CONTROL_BLOCK_ID:
3279 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
3280 return false;
3281 } else {
3282 InControlBlock = true;
3283 }
3284 break;
3285
3286 default:
3287 if (Stream.SkipBlock())
3288 return false;
3289 break;
3290 }
3291 continue;
3292 }
3293
3294 if (Code == llvm::bitc::END_BLOCK) {
3295 if (Stream.ReadBlockEnd()) {
3296 return false;
3297 }
3298 InControlBlock = false;
3299 continue;
3300 }
3301
3302 if (Code == llvm::bitc::DEFINE_ABBREV) {
3303 Stream.ReadAbbrevRecord();
3304 continue;
3305 }
3306
3307 Record.clear();
3308 const char *BlobStart = 0;
3309 unsigned BlobLen = 0;
3310 unsigned RecCode = Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen);
3311 if (InControlBlock) {
3312 switch ((ControlRecordTypes)RecCode) {
3313 case METADATA: {
3314 if (Record[0] != VERSION_MAJOR) {
3315 return false;
3316 }
3317
3318 const std::string &CurBranch = getClangFullRepositoryVersion();
3319 StringRef ASTBranch(BlobStart, BlobLen);
3320 if (StringRef(CurBranch) != ASTBranch)
3321 return false;
3322
3323 break;
3324 }
3325 case LANGUAGE_OPTIONS:
3326 if (ParseLanguageOptions(Record, false, Validator))
3327 return false;
3328 break;
3329
3330 case TARGET_OPTIONS:
3331 if (ParseTargetOptions(Record, false, Validator))
3332 return false;
3333 break;
3334
Douglas Gregor5f3d8222012-10-24 15:17:15 +00003335 case DIAGNOSTIC_OPTIONS:
3336 if (ParseDiagnosticOptions(Record, false, Validator))
3337 return false;
3338 break;
3339
Douglas Gregorbbf38312012-10-24 16:50:34 +00003340 case FILE_SYSTEM_OPTIONS:
3341 if (ParseFileSystemOptions(Record, false, Validator))
3342 return false;
3343 break;
3344
3345 case HEADER_SEARCH_OPTIONS:
3346 if (ParseHeaderSearchOptions(Record, false, Validator))
3347 return false;
3348 break;
3349
Douglas Gregor87699242012-10-25 00:07:54 +00003350 case PREPROCESSOR_OPTIONS: {
3351 std::string IgnoredSuggestedPredefines;
3352 if (ParsePreprocessorOptions(Record, false, Validator,
3353 IgnoredSuggestedPredefines))
Douglas Gregora71a7d82012-10-24 20:05:57 +00003354 return false;
3355 break;
Douglas Gregor87699242012-10-25 00:07:54 +00003356 }
Douglas Gregora71a7d82012-10-24 20:05:57 +00003357
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003358 default:
3359 // No other validation to perform.
3360 break;
3361 }
3362 }
3363 }
3364
3365 return true;
3366}
3367
Douglas Gregor4825fd72012-10-22 22:50:17 +00003368bool ASTReader::ReadSubmoduleBlock(ModuleFile &F) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003369 // Enter the submodule block.
3370 if (F.Stream.EnterSubBlock(SUBMODULE_BLOCK_ID)) {
3371 Error("malformed submodule block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003372 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003373 }
3374
3375 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
Douglas Gregor26ced122011-12-01 00:59:36 +00003376 bool First = true;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003377 Module *CurrentModule = 0;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003378 RecordData Record;
3379 while (true) {
3380 unsigned Code = F.Stream.ReadCode();
3381 if (Code == llvm::bitc::END_BLOCK) {
3382 if (F.Stream.ReadBlockEnd()) {
3383 Error("error at end of submodule block in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003384 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003385 }
Douglas Gregor4825fd72012-10-22 22:50:17 +00003386 return false;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003387 }
3388
3389 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3390 // No known subblocks, always skip them.
3391 F.Stream.ReadSubBlockID();
3392 if (F.Stream.SkipBlock()) {
3393 Error("malformed block record in AST file");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003394 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003395 }
3396 continue;
3397 }
3398
3399 if (Code == llvm::bitc::DEFINE_ABBREV) {
3400 F.Stream.ReadAbbrevRecord();
3401 continue;
3402 }
3403
3404 // Read a record.
3405 const char *BlobStart;
3406 unsigned BlobLen;
3407 Record.clear();
3408 switch (F.Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
3409 default: // Default behavior: ignore.
3410 break;
3411
3412 case SUBMODULE_DEFINITION: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003413 if (First) {
3414 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003415 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003416 }
3417
Douglas Gregore209e502011-12-06 01:10:29 +00003418 if (Record.size() < 7) {
Douglas Gregor1e123682011-12-05 22:27:44 +00003419 Error("malformed module definition");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003420 return true;
Douglas Gregor1e123682011-12-05 22:27:44 +00003421 }
3422
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003423 StringRef Name(BlobStart, BlobLen);
Douglas Gregore209e502011-12-06 01:10:29 +00003424 SubmoduleID GlobalID = getGlobalSubmoduleID(F, Record[0]);
3425 SubmoduleID Parent = getGlobalSubmoduleID(F, Record[1]);
3426 bool IsFramework = Record[2];
3427 bool IsExplicit = Record[3];
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003428 bool IsSystem = Record[4];
3429 bool InferSubmodules = Record[5];
3430 bool InferExplicitSubmodules = Record[6];
3431 bool InferExportWildcard = Record[7];
Douglas Gregor1e123682011-12-05 22:27:44 +00003432
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003433 Module *ParentModule = 0;
Douglas Gregor26ced122011-12-01 00:59:36 +00003434 if (Parent)
3435 ParentModule = getSubmodule(Parent);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003436
3437 // Retrieve this (sub)module from the module map, creating it if
3438 // necessary.
3439 CurrentModule = ModMap.findOrCreateModule(Name, ParentModule,
3440 IsFramework,
3441 IsExplicit).first;
Douglas Gregore209e502011-12-06 01:10:29 +00003442 SubmoduleID GlobalIndex = GlobalID - NUM_PREDEF_SUBMODULE_IDS;
3443 if (GlobalIndex >= SubmodulesLoaded.size() ||
3444 SubmodulesLoaded[GlobalIndex]) {
Douglas Gregor26ced122011-12-01 00:59:36 +00003445 Error("too many submodules");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003446 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003447 }
Douglas Gregora015cab2011-12-02 17:30:13 +00003448
Argyrios Kyrtzidisd64c26f2012-10-03 01:58:42 +00003449 CurrentModule->setASTFile(F.File);
Douglas Gregor305dc3e2011-12-20 00:28:52 +00003450 CurrentModule->IsFromModuleFile = true;
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003451 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
Douglas Gregor1e123682011-12-05 22:27:44 +00003452 CurrentModule->InferSubmodules = InferSubmodules;
3453 CurrentModule->InferExplicitSubmodules = InferExplicitSubmodules;
3454 CurrentModule->InferExportWildcard = InferExportWildcard;
Douglas Gregora015cab2011-12-02 17:30:13 +00003455 if (DeserializationListener)
Douglas Gregore209e502011-12-06 01:10:29 +00003456 DeserializationListener->ModuleRead(GlobalID, CurrentModule);
Douglas Gregora015cab2011-12-02 17:30:13 +00003457
Douglas Gregore209e502011-12-06 01:10:29 +00003458 SubmodulesLoaded[GlobalIndex] = CurrentModule;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003459 break;
3460 }
3461
Douglas Gregor77d029f2011-12-08 19:11:24 +00003462 case SUBMODULE_UMBRELLA_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003463 if (First) {
3464 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003465 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003466 }
3467
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003468 if (!CurrentModule)
3469 break;
3470
3471 StringRef FileName(BlobStart, BlobLen);
3472 if (const FileEntry *Umbrella = PP.getFileManager().getFile(FileName)) {
Douglas Gregor10694ce2011-12-08 17:39:04 +00003473 if (!CurrentModule->getUmbrellaHeader())
Douglas Gregore209e502011-12-06 01:10:29 +00003474 ModMap.setUmbrellaHeader(CurrentModule, Umbrella);
Douglas Gregor10694ce2011-12-08 17:39:04 +00003475 else if (CurrentModule->getUmbrellaHeader() != Umbrella) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003476 Error("mismatched umbrella headers in submodule");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003477 return true;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003478 }
3479 }
3480 break;
3481 }
3482
3483 case SUBMODULE_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003484 if (First) {
3485 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003486 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003487 }
3488
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003489 if (!CurrentModule)
3490 break;
3491
3492 // FIXME: Be more lazy about this!
3493 StringRef FileName(BlobStart, BlobLen);
3494 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3495 if (std::find(CurrentModule->Headers.begin(),
3496 CurrentModule->Headers.end(),
3497 File) == CurrentModule->Headers.end())
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00003498 ModMap.addHeader(CurrentModule, File, false);
3499 }
3500 break;
3501 }
3502
3503 case SUBMODULE_EXCLUDED_HEADER: {
3504 if (First) {
3505 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003506 return true;
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00003507 }
3508
3509 if (!CurrentModule)
3510 break;
3511
3512 // FIXME: Be more lazy about this!
3513 StringRef FileName(BlobStart, BlobLen);
3514 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3515 if (std::find(CurrentModule->Headers.begin(),
3516 CurrentModule->Headers.end(),
3517 File) == CurrentModule->Headers.end())
3518 ModMap.addHeader(CurrentModule, File, true);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003519 }
3520 break;
3521 }
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00003522
3523 case SUBMODULE_TOPHEADER: {
3524 if (First) {
3525 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003526 return true;
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00003527 }
3528
3529 if (!CurrentModule)
3530 break;
3531
3532 // FIXME: Be more lazy about this!
3533 StringRef FileName(BlobStart, BlobLen);
3534 if (const FileEntry *File = PP.getFileManager().getFile(FileName))
3535 CurrentModule->TopHeaders.insert(File);
3536 break;
3537 }
3538
Douglas Gregor77d029f2011-12-08 19:11:24 +00003539 case SUBMODULE_UMBRELLA_DIR: {
3540 if (First) {
3541 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003542 return true;
Douglas Gregor77d029f2011-12-08 19:11:24 +00003543 }
3544
3545 if (!CurrentModule)
3546 break;
3547
3548 StringRef DirName(BlobStart, BlobLen);
3549 if (const DirectoryEntry *Umbrella
3550 = PP.getFileManager().getDirectory(DirName)) {
3551 if (!CurrentModule->getUmbrellaDir())
3552 ModMap.setUmbrellaDir(CurrentModule, Umbrella);
3553 else if (CurrentModule->getUmbrellaDir() != Umbrella) {
3554 Error("mismatched umbrella directories in submodule");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003555 return true;
Douglas Gregor77d029f2011-12-08 19:11:24 +00003556 }
3557 }
3558 break;
3559 }
3560
Douglas Gregor26ced122011-12-01 00:59:36 +00003561 case SUBMODULE_METADATA: {
3562 if (!First) {
3563 Error("submodule metadata record not at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003564 return true;
Douglas Gregor26ced122011-12-01 00:59:36 +00003565 }
3566 First = false;
3567
3568 F.BaseSubmoduleID = getTotalNumSubmodules();
Douglas Gregor26ced122011-12-01 00:59:36 +00003569 F.LocalNumSubmodules = Record[0];
3570 unsigned LocalBaseSubmoduleID = Record[1];
3571 if (F.LocalNumSubmodules > 0) {
3572 // Introduce the global -> local mapping for submodules within this
3573 // module.
3574 GlobalSubmoduleMap.insert(std::make_pair(getTotalNumSubmodules()+1,&F));
3575
3576 // Introduce the local -> global mapping for submodules within this
3577 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00003578 F.SubmoduleRemap.insertOrReplace(
Douglas Gregor26ced122011-12-01 00:59:36 +00003579 std::make_pair(LocalBaseSubmoduleID,
3580 F.BaseSubmoduleID - LocalBaseSubmoduleID));
3581
3582 SubmodulesLoaded.resize(SubmodulesLoaded.size() + F.LocalNumSubmodules);
3583 }
3584 break;
3585 }
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003586
Douglas Gregor55988682011-12-05 16:33:54 +00003587 case SUBMODULE_IMPORTS: {
3588 if (First) {
3589 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003590 return true;
Douglas Gregor55988682011-12-05 16:33:54 +00003591 }
3592
3593 if (!CurrentModule)
3594 break;
3595
3596 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) {
3597 UnresolvedModuleImportExport Unresolved;
3598 Unresolved.File = &F;
3599 Unresolved.Mod = CurrentModule;
3600 Unresolved.ID = Record[Idx];
3601 Unresolved.IsImport = true;
3602 Unresolved.IsWildcard = false;
3603 UnresolvedModuleImportExports.push_back(Unresolved);
3604 }
3605 break;
3606 }
3607
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003608 case SUBMODULE_EXPORTS: {
3609 if (First) {
3610 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003611 return true;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003612 }
3613
3614 if (!CurrentModule)
3615 break;
3616
3617 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) {
Douglas Gregor55988682011-12-05 16:33:54 +00003618 UnresolvedModuleImportExport Unresolved;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003619 Unresolved.File = &F;
Douglas Gregor55988682011-12-05 16:33:54 +00003620 Unresolved.Mod = CurrentModule;
3621 Unresolved.ID = Record[Idx];
3622 Unresolved.IsImport = false;
3623 Unresolved.IsWildcard = Record[Idx + 1];
3624 UnresolvedModuleImportExports.push_back(Unresolved);
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003625 }
3626
3627 // Once we've loaded the set of exports, there's no reason to keep
3628 // the parsed, unresolved exports around.
3629 CurrentModule->UnresolvedExports.clear();
3630 break;
3631 }
Douglas Gregor51f564f2011-12-31 04:05:44 +00003632 case SUBMODULE_REQUIRES: {
3633 if (First) {
3634 Error("missing submodule metadata record at beginning of block");
Douglas Gregor4825fd72012-10-22 22:50:17 +00003635 return true;
Douglas Gregor51f564f2011-12-31 04:05:44 +00003636 }
3637
3638 if (!CurrentModule)
3639 break;
3640
3641 CurrentModule->addRequirement(StringRef(BlobStart, BlobLen),
David Blaikie4e4d0842012-03-11 07:00:24 +00003642 Context.getLangOpts(),
Douglas Gregordc58aa72012-01-30 06:01:29 +00003643 Context.getTargetInfo());
Douglas Gregor51f564f2011-12-31 04:05:44 +00003644 break;
3645 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003646 }
3647 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003648}
3649
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003650/// \brief Parse the record that corresponds to a LangOptions data
3651/// structure.
3652///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003653/// This routine parses the language options from the AST file and then gives
3654/// them to the AST listener if one is set.
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003655///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003656/// \returns true if the listener deems the file unacceptable, false otherwise.
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003657bool ASTReader::ParseLanguageOptions(const RecordData &Record,
3658 bool Complain,
3659 ASTReaderListener &Listener) {
3660 LangOptions LangOpts;
3661 unsigned Idx = 0;
Douglas Gregor7d5e81b2011-09-13 18:26:39 +00003662#define LANGOPT(Name, Bits, Default, Description) \
3663 LangOpts.Name = Record[Idx++];
3664#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
3665 LangOpts.set##Name(static_cast<LangOptions::Type>(Record[Idx++]));
3666#include "clang/Basic/LangOptions.def"
John McCall260611a2012-06-20 06:18:46 +00003667
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003668 ObjCRuntime::Kind runtimeKind = (ObjCRuntime::Kind) Record[Idx++];
3669 VersionTuple runtimeVersion = ReadVersionTuple(Record, Idx);
3670 LangOpts.ObjCRuntime = ObjCRuntime(runtimeKind, runtimeVersion);
3671
3672 unsigned Length = Record[Idx++];
3673 LangOpts.CurrentModule.assign(Record.begin() + Idx,
3674 Record.begin() + Idx + Length);
3675 return Listener.ReadLanguageOptions(LangOpts, Complain);
3676}
3677
3678bool ASTReader::ParseTargetOptions(const RecordData &Record,
3679 bool Complain,
3680 ASTReaderListener &Listener) {
3681 unsigned Idx = 0;
3682 TargetOptions TargetOpts;
3683 TargetOpts.Triple = ReadString(Record, Idx);
3684 TargetOpts.CPU = ReadString(Record, Idx);
3685 TargetOpts.ABI = ReadString(Record, Idx);
3686 TargetOpts.CXXABI = ReadString(Record, Idx);
3687 TargetOpts.LinkerVersion = ReadString(Record, Idx);
3688 for (unsigned N = Record[Idx++]; N; --N) {
3689 TargetOpts.FeaturesAsWritten.push_back(ReadString(Record, Idx));
3690 }
3691 for (unsigned N = Record[Idx++]; N; --N) {
3692 TargetOpts.Features.push_back(ReadString(Record, Idx));
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003693 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003694
Douglas Gregor27ffa6c2012-10-23 06:18:24 +00003695 return Listener.ReadTargetOptions(TargetOpts, Complain);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003696}
3697
Douglas Gregor5f3d8222012-10-24 15:17:15 +00003698bool ASTReader::ParseDiagnosticOptions(const RecordData &Record, bool Complain,
3699 ASTReaderListener &Listener) {
3700 DiagnosticOptions DiagOpts;
3701 unsigned Idx = 0;
3702#define DIAGOPT(Name, Bits, Default) DiagOpts.Name = Record[Idx++];
3703#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
3704 DiagOpts.set##Name(static_cast<Type>(Record[Idx++]));
3705#include "clang/Basic/DiagnosticOptions.def"
3706
3707 for (unsigned N = Record[Idx++]; N; --N) {
3708 DiagOpts.Warnings.push_back(ReadString(Record, Idx));
3709 }
3710
3711 return Listener.ReadDiagnosticOptions(DiagOpts, Complain);
3712}
3713
Douglas Gregor1b2c3c02012-10-24 15:49:58 +00003714bool ASTReader::ParseFileSystemOptions(const RecordData &Record, bool Complain,
3715 ASTReaderListener &Listener) {
3716 FileSystemOptions FSOpts;
3717 unsigned Idx = 0;
3718 FSOpts.WorkingDir = ReadString(Record, Idx);
3719 return Listener.ReadFileSystemOptions(FSOpts, Complain);
3720}
3721
Douglas Gregorbbf38312012-10-24 16:50:34 +00003722bool ASTReader::ParseHeaderSearchOptions(const RecordData &Record,
3723 bool Complain,
3724 ASTReaderListener &Listener) {
3725 HeaderSearchOptions HSOpts;
3726 unsigned Idx = 0;
3727 HSOpts.Sysroot = ReadString(Record, Idx);
3728
3729 // Include entries.
3730 for (unsigned N = Record[Idx++]; N; --N) {
3731 std::string Path = ReadString(Record, Idx);
3732 frontend::IncludeDirGroup Group
3733 = static_cast<frontend::IncludeDirGroup>(Record[Idx++]);
3734 bool IsUserSupplied = Record[Idx++];
3735 bool IsFramework = Record[Idx++];
3736 bool IgnoreSysRoot = Record[Idx++];
3737 bool IsInternal = Record[Idx++];
3738 bool ImplicitExternC = Record[Idx++];
3739 HSOpts.UserEntries.push_back(
3740 HeaderSearchOptions::Entry(Path, Group, IsUserSupplied, IsFramework,
3741 IgnoreSysRoot, IsInternal, ImplicitExternC));
3742 }
3743
3744 // System header prefixes.
3745 for (unsigned N = Record[Idx++]; N; --N) {
3746 std::string Prefix = ReadString(Record, Idx);
3747 bool IsSystemHeader = Record[Idx++];
3748 HSOpts.SystemHeaderPrefixes.push_back(
3749 HeaderSearchOptions::SystemHeaderPrefix(Prefix, IsSystemHeader));
3750 }
3751
3752 HSOpts.ResourceDir = ReadString(Record, Idx);
3753 HSOpts.ModuleCachePath = ReadString(Record, Idx);
3754 HSOpts.DisableModuleHash = Record[Idx++];
3755 HSOpts.UseBuiltinIncludes = Record[Idx++];
3756 HSOpts.UseStandardSystemIncludes = Record[Idx++];
3757 HSOpts.UseStandardCXXIncludes = Record[Idx++];
3758 HSOpts.UseLibcxx = Record[Idx++];
3759
3760 return Listener.ReadHeaderSearchOptions(HSOpts, Complain);
3761}
3762
Douglas Gregora71a7d82012-10-24 20:05:57 +00003763bool ASTReader::ParsePreprocessorOptions(const RecordData &Record,
3764 bool Complain,
Douglas Gregor87699242012-10-25 00:07:54 +00003765 ASTReaderListener &Listener,
3766 std::string &SuggestedPredefines) {
Douglas Gregora71a7d82012-10-24 20:05:57 +00003767 PreprocessorOptions PPOpts;
3768 unsigned Idx = 0;
3769
3770 // Macro definitions/undefs
3771 for (unsigned N = Record[Idx++]; N; --N) {
3772 std::string Macro = ReadString(Record, Idx);
3773 bool IsUndef = Record[Idx++];
3774 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef));
3775 }
3776
3777 // Includes
3778 for (unsigned N = Record[Idx++]; N; --N) {
3779 PPOpts.Includes.push_back(ReadString(Record, Idx));
3780 }
3781
3782 // Macro Includes
3783 for (unsigned N = Record[Idx++]; N; --N) {
3784 PPOpts.MacroIncludes.push_back(ReadString(Record, Idx));
3785 }
3786
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00003787 PPOpts.UsePredefines = Record[Idx++];
Douglas Gregora71a7d82012-10-24 20:05:57 +00003788 PPOpts.ImplicitPCHInclude = ReadString(Record, Idx);
3789 PPOpts.ImplicitPTHInclude = ReadString(Record, Idx);
3790 PPOpts.ObjCXXARCStandardLibrary =
3791 static_cast<ObjCXXARCStandardLibraryKind>(Record[Idx++]);
Douglas Gregor87699242012-10-25 00:07:54 +00003792 SuggestedPredefines.clear();
3793 return Listener.ReadPreprocessorOptions(PPOpts, Complain,
3794 SuggestedPredefines);
Douglas Gregora71a7d82012-10-24 20:05:57 +00003795}
3796
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003797std::pair<ModuleFile *, unsigned>
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003798ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003799 GlobalPreprocessedEntityMapType::iterator
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003800 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003801 assert(I != GlobalPreprocessedEntityMap.end() &&
3802 "Corrupted global preprocessed entity map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003803 ModuleFile *M = I->second;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003804 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
3805 return std::make_pair(M, LocalIndex);
3806}
3807
Argyrios Kyrtzidis632dcc92012-10-02 16:10:51 +00003808std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
3809ASTReader::getModulePreprocessedEntities(ModuleFile &Mod) const {
3810 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
3811 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
3812 Mod.NumPreprocessedEntities);
3813
3814 return std::make_pair(PreprocessingRecord::iterator(),
3815 PreprocessingRecord::iterator());
3816}
3817
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00003818std::pair<ASTReader::ModuleDeclIterator, ASTReader::ModuleDeclIterator>
3819ASTReader::getModuleFileLevelDecls(ModuleFile &Mod) {
3820 return std::make_pair(ModuleDeclIterator(this, &Mod, Mod.FileSortedDecls),
3821 ModuleDeclIterator(this, &Mod,
3822 Mod.FileSortedDecls + Mod.NumFileSortedDecls));
3823}
3824
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003825PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
3826 PreprocessedEntityID PPID = Index+1;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003827 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3828 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003829 unsigned LocalIndex = PPInfo.second;
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003830 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
Douglas Gregor4800a5c2011-02-08 21:58:10 +00003831
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003832 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003833 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003834
3835 unsigned Code = M.PreprocessorDetailCursor.ReadCode();
3836 switch (Code) {
3837 case llvm::bitc::END_BLOCK:
3838 return 0;
3839
3840 case llvm::bitc::ENTER_SUBBLOCK:
3841 Error("unexpected subblock record in preprocessor detail block");
3842 return 0;
3843
3844 case llvm::bitc::DEFINE_ABBREV:
3845 Error("unexpected abbrevation record in preprocessor detail block");
3846 return 0;
3847
3848 default:
3849 break;
3850 }
3851
3852 if (!PP.getPreprocessingRecord()) {
3853 Error("no preprocessing record");
3854 return 0;
3855 }
3856
3857 // Read the record.
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003858 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
3859 ReadSourceLocation(M, PPOffs.End));
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003860 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
3861 const char *BlobStart = 0;
3862 unsigned BlobLen = 0;
3863 RecordData Record;
3864 PreprocessorDetailRecordTypes RecType =
3865 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.ReadRecord(
3866 Code, Record, BlobStart, BlobLen);
3867 switch (RecType) {
3868 case PPD_MACRO_EXPANSION: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003869 bool isBuiltin = Record[0];
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003870 IdentifierInfo *Name = 0;
3871 MacroDefinition *Def = 0;
3872 if (isBuiltin)
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003873 Name = getLocalIdentifier(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003874 else {
3875 PreprocessedEntityID
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003876 GlobalID = getGlobalPreprocessedEntityID(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003877 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
3878 }
3879
3880 MacroExpansion *ME;
3881 if (isBuiltin)
3882 ME = new (PPRec) MacroExpansion(Name, Range);
3883 else
3884 ME = new (PPRec) MacroExpansion(Def, Range);
3885
3886 return ME;
3887 }
3888
3889 case PPD_MACRO_DEFINITION: {
3890 // Decode the identifier info and then check again; if the macro is
3891 // still defined and associated with the identifier,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003892 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003893 MacroDefinition *MD
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003894 = new (PPRec) MacroDefinition(II, Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003895
3896 if (DeserializationListener)
3897 DeserializationListener->MacroDefinitionRead(PPID, MD);
3898
3899 return MD;
3900 }
3901
3902 case PPD_INCLUSION_DIRECTIVE: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003903 const char *FullFileNameStart = BlobStart + Record[0];
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00003904 StringRef FullFileName(FullFileNameStart, BlobLen - Record[0]);
3905 const FileEntry *File = 0;
3906 if (!FullFileName.empty())
3907 File = PP.getFileManager().getFile(FullFileName);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003908
3909 // FIXME: Stable encoding
3910 InclusionDirective::InclusionKind Kind
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003911 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003912 InclusionDirective *ID
3913 = new (PPRec) InclusionDirective(PPRec, Kind,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003914 StringRef(BlobStart, Record[0]),
Argyrios Kyrtzidis8dd927c2012-10-02 16:10:46 +00003915 Record[1], Record[3],
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003916 File,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003917 Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003918 return ID;
3919 }
3920 }
David Blaikie7530c032012-01-17 06:56:22 +00003921
3922 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00003923}
3924
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003925/// \brief \arg SLocMapI points at a chunk of a module that contains no
3926/// preprocessed entities or the entities it contains are not the ones we are
3927/// looking for. Find the next module that contains entities and return the ID
3928/// of the first entry.
3929PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
3930 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
3931 ++SLocMapI;
3932 for (GlobalSLocOffsetMapType::const_iterator
3933 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003934 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003935 if (M.NumPreprocessedEntities)
3936 return getGlobalPreprocessedEntityID(M, M.BasePreprocessedEntityID);
3937 }
3938
3939 return getTotalNumPreprocessedEntities();
3940}
3941
3942namespace {
3943
3944template <unsigned PPEntityOffset::*PPLoc>
3945struct PPEntityComp {
3946 const ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003947 ModuleFile &M;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003948
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003949 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) { }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003950
Benjamin Kramer88df1252011-09-21 06:42:26 +00003951 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
3952 SourceLocation LHS = getLoc(L);
3953 SourceLocation RHS = getLoc(R);
3954 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3955 }
3956
3957 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003958 SourceLocation LHS = getLoc(L);
3959 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3960 }
3961
Benjamin Kramer88df1252011-09-21 06:42:26 +00003962 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003963 SourceLocation RHS = getLoc(R);
3964 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3965 }
3966
3967 SourceLocation getLoc(const PPEntityOffset &PPE) const {
3968 return Reader.ReadSourceLocation(M, PPE.*PPLoc);
3969 }
3970};
3971
3972}
3973
3974/// \brief Returns the first preprocessed entity ID that ends after \arg BLoc.
3975PreprocessedEntityID
3976ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const {
3977 if (SourceMgr.isLocalSourceLocation(BLoc))
3978 return getTotalNumPreprocessedEntities();
3979
3980 GlobalSLocOffsetMapType::const_iterator
3981 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3982 BLoc.getOffset());
3983 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3984 "Corrupted global sloc offset map");
3985
3986 if (SLocMapI->second->NumPreprocessedEntities == 0)
3987 return findNextPreprocessedEntity(SLocMapI);
3988
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003989 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003990 typedef const PPEntityOffset *pp_iterator;
3991 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3992 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
Argyrios Kyrtzidis4cd06342011-09-22 21:17:02 +00003993
3994 size_t Count = M.NumPreprocessedEntities;
3995 size_t Half;
3996 pp_iterator First = pp_begin;
3997 pp_iterator PPI;
3998
3999 // Do a binary search manually instead of using std::lower_bound because
4000 // The end locations of entities may be unordered (when a macro expansion
4001 // is inside another macro argument), but for this case it is not important
4002 // whether we get the first macro expansion or its containing macro.
4003 while (Count > 0) {
4004 Half = Count/2;
4005 PPI = First;
4006 std::advance(PPI, Half);
4007 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
4008 BLoc)){
4009 First = PPI;
4010 ++First;
4011 Count = Count - Half - 1;
4012 } else
4013 Count = Half;
4014 }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00004015
4016 if (PPI == pp_end)
4017 return findNextPreprocessedEntity(SLocMapI);
4018
4019 return getGlobalPreprocessedEntityID(M,
4020 M.BasePreprocessedEntityID + (PPI - pp_begin));
4021}
4022
4023/// \brief Returns the first preprocessed entity ID that begins after \arg ELoc.
4024PreprocessedEntityID
4025ASTReader::findEndPreprocessedEntity(SourceLocation ELoc) const {
4026 if (SourceMgr.isLocalSourceLocation(ELoc))
4027 return getTotalNumPreprocessedEntities();
4028
4029 GlobalSLocOffsetMapType::const_iterator
4030 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
4031 ELoc.getOffset());
4032 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
4033 "Corrupted global sloc offset map");
4034
4035 if (SLocMapI->second->NumPreprocessedEntities == 0)
4036 return findNextPreprocessedEntity(SLocMapI);
4037
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004038 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00004039 typedef const PPEntityOffset *pp_iterator;
4040 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
4041 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
4042 pp_iterator PPI =
4043 std::upper_bound(pp_begin, pp_end, ELoc,
4044 PPEntityComp<&PPEntityOffset::Begin>(*this, M));
4045
4046 if (PPI == pp_end)
4047 return findNextPreprocessedEntity(SLocMapI);
4048
4049 return getGlobalPreprocessedEntityID(M,
4050 M.BasePreprocessedEntityID + (PPI - pp_begin));
4051}
4052
4053/// \brief Returns a pair of [Begin, End) indices of preallocated
4054/// preprocessed entities that \arg Range encompasses.
4055std::pair<unsigned, unsigned>
4056 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
4057 if (Range.isInvalid())
4058 return std::make_pair(0,0);
4059 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
4060
4061 PreprocessedEntityID BeginID = findBeginPreprocessedEntity(Range.getBegin());
4062 PreprocessedEntityID EndID = findEndPreprocessedEntity(Range.getEnd());
4063 return std::make_pair(BeginID, EndID);
4064}
4065
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004066/// \brief Optionally returns true or false if the preallocated preprocessed
4067/// entity with index \arg Index came from file \arg FID.
4068llvm::Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
4069 FileID FID) {
4070 if (FID.isInvalid())
4071 return false;
4072
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004073 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
4074 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00004075 unsigned LocalIndex = PPInfo.second;
4076 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
4077
4078 SourceLocation Loc = ReadSourceLocation(M, PPOffs.Begin);
4079 if (Loc.isInvalid())
4080 return false;
4081
4082 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
4083 return true;
4084 else
4085 return false;
4086}
4087
Douglas Gregord10a3812011-08-25 18:14:34 +00004088namespace {
4089 /// \brief Visitor used to search for information about a header file.
4090 class HeaderFileInfoVisitor {
4091 ASTReader &Reader;
4092 const FileEntry *FE;
4093
4094 llvm::Optional<HeaderFileInfo> HFI;
4095
4096 public:
4097 HeaderFileInfoVisitor(ASTReader &Reader, const FileEntry *FE)
4098 : Reader(Reader), FE(FE) { }
4099
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004100 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregord10a3812011-08-25 18:14:34 +00004101 HeaderFileInfoVisitor *This
4102 = static_cast<HeaderFileInfoVisitor *>(UserData);
4103
4104 HeaderFileInfoTrait Trait(This->Reader, M,
4105 &This->Reader.getPreprocessor().getHeaderSearchInfo(),
4106 M.HeaderFileFrameworkStrings,
4107 This->FE->getName());
4108
4109 HeaderFileInfoLookupTable *Table
4110 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
4111 if (!Table)
4112 return false;
4113
4114 // Look in the on-disk hash table for an entry for this file name.
4115 HeaderFileInfoLookupTable::iterator Pos = Table->find(This->FE->getName(),
4116 &Trait);
4117 if (Pos == Table->end())
4118 return false;
4119
4120 This->HFI = *Pos;
4121 return true;
4122 }
4123
4124 llvm::Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
4125 };
4126}
4127
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004128HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Douglas Gregord10a3812011-08-25 18:14:34 +00004129 HeaderFileInfoVisitor Visitor(*this, FE);
4130 ModuleMgr.visit(&HeaderFileInfoVisitor::visit, &Visitor);
4131 if (llvm::Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo()) {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004132 if (Listener)
Douglas Gregord10a3812011-08-25 18:14:34 +00004133 Listener->ReadHeaderFileInfo(*HFI, FE->getUID());
4134 return *HFI;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004135 }
4136
4137 return HeaderFileInfo();
4138}
4139
David Blaikied6471f72011-09-25 23:23:43 +00004140void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00004141 // FIXME: Make it work properly with modules.
4142 llvm::SmallVector<DiagnosticsEngine::DiagState *, 32> DiagStates;
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00004143 for (ModuleIterator I = ModuleMgr.begin(), E = ModuleMgr.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004144 ModuleFile &F = *(*I);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004145 unsigned Idx = 0;
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00004146 DiagStates.clear();
4147 assert(!Diag.DiagStates.empty());
4148 DiagStates.push_back(&Diag.DiagStates.front()); // the command-line one.
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004149 while (Idx < F.PragmaDiagMappings.size()) {
4150 SourceLocation Loc = ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00004151 unsigned DiagStateID = F.PragmaDiagMappings[Idx++];
4152 if (DiagStateID != 0) {
4153 Diag.DiagStatePoints.push_back(
4154 DiagnosticsEngine::DiagStatePoint(DiagStates[DiagStateID-1],
4155 FullSourceLoc(Loc, SourceMgr)));
4156 continue;
4157 }
4158
4159 assert(DiagStateID == 0);
4160 // A new DiagState was created here.
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004161 Diag.DiagStates.push_back(*Diag.GetCurDiagState());
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00004162 DiagnosticsEngine::DiagState *NewState = &Diag.DiagStates.back();
4163 DiagStates.push_back(NewState);
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004164 Diag.DiagStatePoints.push_back(
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00004165 DiagnosticsEngine::DiagStatePoint(NewState,
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004166 FullSourceLoc(Loc, SourceMgr)));
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004167 while (1) {
4168 assert(Idx < F.PragmaDiagMappings.size() &&
4169 "Invalid data, didn't find '-1' marking end of diag/map pairs");
4170 if (Idx >= F.PragmaDiagMappings.size()) {
4171 break; // Something is messed up but at least avoid infinite loop in
4172 // release build.
4173 }
4174 unsigned DiagID = F.PragmaDiagMappings[Idx++];
4175 if (DiagID == (unsigned)-1) {
4176 break; // no more diag/map pairs for this location.
4177 }
4178 diag::Mapping Map = (diag::Mapping)F.PragmaDiagMappings[Idx++];
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00004179 DiagnosticMappingInfo MappingInfo = Diag.makeMappingInfo(Map, Loc);
4180 Diag.GetCurDiagState()->setMappingInfo(DiagID, MappingInfo);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00004181 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00004182 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00004183 }
4184}
4185
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004186/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004187ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Douglas Gregora119da02011-08-02 16:26:37 +00004188 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
Jonathan D. Turnere9b76c12011-07-20 21:31:32 +00004189 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004190 ModuleFile *M = I->second;
Douglas Gregore3605012011-08-02 18:32:54 +00004191 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004192}
4193
4194/// \brief Read and return the type with the given index..
Douglas Gregor2cf26342009-04-09 22:27:44 +00004195///
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004196/// The index is the type ID, shifted and minus the number of predefs. This
4197/// routine actually reads the record corresponding to the type at the given
4198/// location. It is a helper routine for GetType, which deals with reading type
4199/// IDs.
Douglas Gregor393f2492011-07-22 00:38:23 +00004200QualType ASTReader::readTypeRecord(unsigned Index) {
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004201 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004202 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00004203
Douglas Gregor0b748912009-04-14 21:18:50 +00004204 // Keep track of where we are in the stream, then jump back there
4205 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004206 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00004207
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004208 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redl27372b42010-08-11 18:52:41 +00004209
Douglas Gregord89275b2009-07-06 18:54:52 +00004210 // Note that we are loading a type record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00004211 Deserializing AType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00004212
Douglas Gregor393f2492011-07-22 00:38:23 +00004213 unsigned Idx = 0;
Sebastian Redlc3632732010-10-05 15:59:54 +00004214 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004215 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004216 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004217 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
4218 case TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004219 if (Record.size() != 2) {
4220 Error("Incorrect encoding of extended qualifier type");
4221 return QualType();
4222 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004223 QualType Base = readType(*Loc.F, Record, Idx);
4224 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
Douglas Gregor35942772011-09-09 21:34:22 +00004225 return Context.getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00004226 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004227
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004228 case TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004229 if (Record.size() != 1) {
4230 Error("Incorrect encoding of complex type");
4231 return QualType();
4232 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004233 QualType ElemType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004234 return Context.getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004235 }
4236
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004237 case TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004238 if (Record.size() != 1) {
4239 Error("Incorrect encoding of pointer type");
4240 return QualType();
4241 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004242 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004243 return Context.getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004244 }
4245
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004246 case TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004247 if (Record.size() != 1) {
4248 Error("Incorrect encoding of block pointer type");
4249 return QualType();
4250 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004251 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004252 return Context.getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004253 }
4254
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004255 case TYPE_LVALUE_REFERENCE: {
Richard Smithdf1550f2011-04-12 10:38:03 +00004256 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004257 Error("Incorrect encoding of lvalue reference type");
4258 return QualType();
4259 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004260 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004261 return Context.getLValueReferenceType(PointeeType, Record[1]);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004262 }
4263
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004264 case TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004265 if (Record.size() != 1) {
4266 Error("Incorrect encoding of rvalue reference type");
4267 return QualType();
4268 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004269 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004270 return Context.getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004271 }
4272
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004273 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00004274 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004275 Error("Incorrect encoding of member pointer type");
4276 return QualType();
4277 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004278 QualType PointeeType = readType(*Loc.F, Record, Idx);
4279 QualType ClassType = readType(*Loc.F, Record, Idx);
Douglas Gregor1ab55e92010-12-10 17:03:06 +00004280 if (PointeeType.isNull() || ClassType.isNull())
4281 return QualType();
4282
Douglas Gregor35942772011-09-09 21:34:22 +00004283 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00004284 }
4285
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004286 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004287 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004288 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4289 unsigned IndexTypeQuals = Record[2];
4290 unsigned Idx = 3;
4291 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004292 return Context.getConstantArrayType(ElementType, Size,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004293 ASM, IndexTypeQuals);
4294 }
4295
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004296 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004297 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004298 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4299 unsigned IndexTypeQuals = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004300 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004301 }
4302
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004303 case TYPE_VARIABLE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004304 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregor0b748912009-04-14 21:18:50 +00004305 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
4306 unsigned IndexTypeQuals = Record[2];
Sebastian Redlc3632732010-10-05 15:59:54 +00004307 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
4308 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
Douglas Gregor35942772011-09-09 21:34:22 +00004309 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00004310 ASM, IndexTypeQuals,
4311 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004312 }
4313
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004314 case TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00004315 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004316 Error("incorrect encoding of vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004317 return QualType();
4318 }
4319
Douglas Gregor393f2492011-07-22 00:38:23 +00004320 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004321 unsigned NumElements = Record[1];
Bob Wilsone86d78c2010-11-10 21:56:12 +00004322 unsigned VecKind = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004323 return Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00004324 (VectorType::VectorKind)VecKind);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004325 }
4326
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004327 case TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00004328 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004329 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004330 return QualType();
4331 }
4332
Douglas Gregor393f2492011-07-22 00:38:23 +00004333 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004334 unsigned NumElements = Record[1];
Douglas Gregor35942772011-09-09 21:34:22 +00004335 return Context.getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004336 }
4337
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004338 case TYPE_FUNCTION_NO_PROTO: {
John McCallf85e1932011-06-15 23:02:42 +00004339 if (Record.size() != 6) {
Douglas Gregora02b1472009-04-28 21:53:25 +00004340 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004341 return QualType();
4342 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004343 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCallf85e1932011-06-15 23:02:42 +00004344 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
4345 (CallingConv)Record[4], Record[5]);
Douglas Gregor35942772011-09-09 21:34:22 +00004346 return Context.getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004347 }
4348
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004349 case TYPE_FUNCTION_PROTO: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004350 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCalle23cf432010-12-14 08:05:40 +00004351
4352 FunctionProtoType::ExtProtoInfo EPI;
4353 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
Eli Friedmana49218e2011-04-09 08:18:08 +00004354 /*hasregparm*/ Record[2],
4355 /*regparm*/ Record[3],
John McCallf85e1932011-06-15 23:02:42 +00004356 static_cast<CallingConv>(Record[4]),
4357 /*produces*/ Record[5]);
John McCalle23cf432010-12-14 08:05:40 +00004358
John McCallf85e1932011-06-15 23:02:42 +00004359 unsigned Idx = 6;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004360 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004361 SmallVector<QualType, 16> ParamTypes;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004362 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00004363 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
John McCalle23cf432010-12-14 08:05:40 +00004364
4365 EPI.Variadic = Record[Idx++];
Richard Smitheefb3d52012-02-10 09:58:53 +00004366 EPI.HasTrailingReturn = Record[Idx++];
John McCalle23cf432010-12-14 08:05:40 +00004367 EPI.TypeQuals = Record[Idx++];
Douglas Gregorc938c162011-01-26 05:01:58 +00004368 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Sebastian Redl60618fa2011-03-12 11:50:43 +00004369 ExceptionSpecificationType EST =
4370 static_cast<ExceptionSpecificationType>(Record[Idx++]);
4371 EPI.ExceptionSpecType = EST;
Douglas Gregorb0d06e22012-04-04 00:34:49 +00004372 SmallVector<QualType, 2> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00004373 if (EST == EST_Dynamic) {
4374 EPI.NumExceptions = Record[Idx++];
Sebastian Redl60618fa2011-03-12 11:50:43 +00004375 for (unsigned I = 0; I != EPI.NumExceptions; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00004376 Exceptions.push_back(readType(*Loc.F, Record, Idx));
Sebastian Redl60618fa2011-03-12 11:50:43 +00004377 EPI.Exceptions = Exceptions.data();
4378 } else if (EST == EST_ComputedNoexcept) {
4379 EPI.NoexceptExpr = ReadExpr(*Loc.F);
Richard Smith7bb698a2012-04-21 17:47:47 +00004380 } else if (EST == EST_Uninstantiated) {
4381 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
4382 EPI.ExceptionSpecTemplate = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Richard Smithb9d0b762012-07-27 04:22:15 +00004383 } else if (EST == EST_Unevaluated) {
4384 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Sebastian Redl60618fa2011-03-12 11:50:43 +00004385 }
Douglas Gregor35942772011-09-09 21:34:22 +00004386 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams,
John McCalle23cf432010-12-14 08:05:40 +00004387 EPI);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004388 }
4389
Douglas Gregor409448c2011-07-21 22:35:25 +00004390 case TYPE_UNRESOLVED_USING: {
4391 unsigned Idx = 0;
Douglas Gregor35942772011-09-09 21:34:22 +00004392 return Context.getTypeDeclType(
Douglas Gregor409448c2011-07-21 22:35:25 +00004393 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
4394 }
4395
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004396 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004397 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004398 Error("incorrect encoding of typedef type");
4399 return QualType();
4400 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004401 unsigned Idx = 0;
4402 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004403 QualType Canonical = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004404 if (!Canonical.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004405 Canonical = Context.getCanonicalType(Canonical);
4406 return Context.getTypedefType(Decl, Canonical);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004407 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004408
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004409 case TYPE_TYPEOF_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00004410 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004411
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004412 case TYPE_TYPEOF: {
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004413 if (Record.size() != 1) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004414 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004415 return QualType();
4416 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004417 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004418 return Context.getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004419 }
Mike Stump1eb44332009-09-09 15:08:12 +00004420
Douglas Gregorf8af9822012-02-12 18:42:33 +00004421 case TYPE_DECLTYPE: {
4422 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
4423 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
4424 }
Anders Carlsson395b4752009-06-24 19:06:50 +00004425
Sean Huntca63c202011-05-24 22:41:36 +00004426 case TYPE_UNARY_TRANSFORM: {
Douglas Gregor393f2492011-07-22 00:38:23 +00004427 QualType BaseType = readType(*Loc.F, Record, Idx);
4428 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Sean Huntca63c202011-05-24 22:41:36 +00004429 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00004430 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
Sean Huntca63c202011-05-24 22:41:36 +00004431 }
4432
Richard Smith34b41d92011-02-20 03:19:35 +00004433 case TYPE_AUTO:
Douglas Gregor35942772011-09-09 21:34:22 +00004434 return Context.getAutoType(readType(*Loc.F, Record, Idx));
Richard Smith34b41d92011-02-20 03:19:35 +00004435
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004436 case TYPE_RECORD: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004437 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004438 Error("incorrect encoding of record type");
4439 return QualType();
4440 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004441 unsigned Idx = 0;
4442 bool IsDependent = Record[Idx++];
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004443 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
4444 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
4445 QualType T = Context.getRecordType(RD);
John McCallf4c73712011-01-19 06:33:43 +00004446 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004447 return T;
4448 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004449
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004450 case TYPE_ENUM: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004451 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004452 Error("incorrect encoding of enum type");
4453 return QualType();
4454 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004455 unsigned Idx = 0;
4456 bool IsDependent = Record[Idx++];
4457 QualType T
Douglas Gregor35942772011-09-09 21:34:22 +00004458 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
John McCallf4c73712011-01-19 06:33:43 +00004459 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004460 return T;
4461 }
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00004462
John McCall9d156a72011-01-06 01:58:22 +00004463 case TYPE_ATTRIBUTED: {
4464 if (Record.size() != 3) {
4465 Error("incorrect encoding of attributed type");
4466 return QualType();
4467 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004468 QualType modifiedType = readType(*Loc.F, Record, Idx);
4469 QualType equivalentType = readType(*Loc.F, Record, Idx);
John McCall9d156a72011-01-06 01:58:22 +00004470 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
Douglas Gregor35942772011-09-09 21:34:22 +00004471 return Context.getAttributedType(kind, modifiedType, equivalentType);
John McCall9d156a72011-01-06 01:58:22 +00004472 }
4473
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004474 case TYPE_PAREN: {
4475 if (Record.size() != 1) {
4476 Error("incorrect encoding of paren type");
4477 return QualType();
4478 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004479 QualType InnerType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004480 return Context.getParenType(InnerType);
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004481 }
4482
Douglas Gregor7536dd52010-12-20 02:24:11 +00004483 case TYPE_PACK_EXPANSION: {
Douglas Gregorf9997a02011-02-01 15:24:58 +00004484 if (Record.size() != 2) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00004485 Error("incorrect encoding of pack expansion type");
4486 return QualType();
4487 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004488 QualType Pattern = readType(*Loc.F, Record, Idx);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004489 if (Pattern.isNull())
4490 return QualType();
Douglas Gregorcded4f62011-01-14 17:04:44 +00004491 llvm::Optional<unsigned> NumExpansions;
4492 if (Record[1])
4493 NumExpansions = Record[1] - 1;
Douglas Gregor35942772011-09-09 21:34:22 +00004494 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004495 }
4496
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004497 case TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004498 unsigned Idx = 0;
4499 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004500 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004501 QualType NamedType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004502 return Context.getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00004503 }
4504
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004505 case TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004506 unsigned Idx = 0;
Douglas Gregor409448c2011-07-21 22:35:25 +00004507 ObjCInterfaceDecl *ItfD
4508 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004509 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
John McCallc12c5bb2010-05-15 11:32:37 +00004510 }
4511
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004512 case TYPE_OBJC_OBJECT: {
John McCallc12c5bb2010-05-15 11:32:37 +00004513 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004514 QualType Base = readType(*Loc.F, Record, Idx);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004515 unsigned NumProtos = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004516 SmallVector<ObjCProtocolDecl*, 4> Protos;
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004517 for (unsigned I = 0; I != NumProtos; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +00004518 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004519 return Context.getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004520 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004521
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004522 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004523 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004524 QualType Pointee = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004525 return Context.getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004526 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00004527
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004528 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCall49a832b2009-10-18 09:09:24 +00004529 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004530 QualType Parm = readType(*Loc.F, Record, Idx);
4531 QualType Replacement = readType(*Loc.F, Record, Idx);
John McCall49a832b2009-10-18 09:09:24 +00004532 return
Douglas Gregor35942772011-09-09 21:34:22 +00004533 Context.getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
John McCall49a832b2009-10-18 09:09:24 +00004534 Replacement);
4535 }
John McCall3cb0ebd2010-03-10 03:28:59 +00004536
Douglas Gregorc3069d62011-01-14 02:55:32 +00004537 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
4538 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004539 QualType Parm = readType(*Loc.F, Record, Idx);
Douglas Gregorc3069d62011-01-14 02:55:32 +00004540 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004541 return Context.getSubstTemplateTypeParmPackType(
Douglas Gregorc3069d62011-01-14 02:55:32 +00004542 cast<TemplateTypeParmType>(Parm),
4543 ArgPack);
4544 }
4545
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004546 case TYPE_INJECTED_CLASS_NAME: {
Douglas Gregor409448c2011-07-21 22:35:25 +00004547 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004548 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004549 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004550 // for AST reading, too much interdependencies.
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004551 return
Douglas Gregor35942772011-09-09 21:34:22 +00004552 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00004553 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004554
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004555 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004556 unsigned Idx = 0;
4557 unsigned Depth = Record[Idx++];
4558 unsigned Index = Record[Idx++];
4559 bool Pack = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004560 TemplateTypeParmDecl *D
4561 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004562 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004563 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004564
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004565 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004566 unsigned Idx = 0;
4567 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004568 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004569 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004570 QualType Canon = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004571 if (!Canon.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004572 Canon = Context.getCanonicalType(Canon);
4573 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004574 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004575
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004576 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004577 unsigned Idx = 0;
4578 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004579 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004580 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004581 unsigned NumArgs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004582 SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004583 Args.reserve(NumArgs);
4584 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00004585 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004586 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004587 Args.size(), Args.data());
4588 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004589
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004590 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004591 unsigned Idx = 0;
4592
4593 // ArrayType
Douglas Gregor393f2492011-07-22 00:38:23 +00004594 QualType ElementType = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004595 ArrayType::ArraySizeModifier ASM
4596 = (ArrayType::ArraySizeModifier)Record[Idx++];
4597 unsigned IndexTypeQuals = Record[Idx++];
4598
4599 // DependentSizedArrayType
Sebastian Redlc3632732010-10-05 15:59:54 +00004600 Expr *NumElts = ReadExpr(*Loc.F);
4601 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004602
Douglas Gregor35942772011-09-09 21:34:22 +00004603 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004604 IndexTypeQuals, Brackets);
4605 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004606
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004607 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004608 unsigned Idx = 0;
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004609 bool IsDependent = Record[Idx++];
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004610 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004611 SmallVector<TemplateArgument, 8> Args;
Sebastian Redlc3632732010-10-05 15:59:54 +00004612 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004613 QualType Underlying = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004614 QualType T;
Richard Smith3e4c6c42011-05-05 21:57:07 +00004615 if (Underlying.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004616 T = Context.getCanonicalTemplateSpecializationType(Name, Args.data(),
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004617 Args.size());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004618 else
Douglas Gregor35942772011-09-09 21:34:22 +00004619 T = Context.getTemplateSpecializationType(Name, Args.data(),
Richard Smith3e4c6c42011-05-05 21:57:07 +00004620 Args.size(), Underlying);
John McCallf4c73712011-01-19 06:33:43 +00004621 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004622 return T;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004623 }
Eli Friedmanb001de72011-10-06 23:00:33 +00004624
4625 case TYPE_ATOMIC: {
4626 if (Record.size() != 1) {
4627 Error("Incorrect encoding of atomic type");
4628 return QualType();
4629 }
4630 QualType ValueType = readType(*Loc.F, Record, Idx);
4631 return Context.getAtomicType(ValueType);
4632 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00004633 }
David Blaikie7530c032012-01-17 06:56:22 +00004634 llvm_unreachable("Invalid TypeCode!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00004635}
4636
Sebastian Redlc3632732010-10-05 15:59:54 +00004637class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004638 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004639 ModuleFile &F;
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004640 const ASTReader::RecordData &Record;
John McCalla1ee0c52009-10-16 21:56:05 +00004641 unsigned &Idx;
4642
Sebastian Redlc3632732010-10-05 15:59:54 +00004643 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
4644 unsigned &I) {
4645 return Reader.ReadSourceLocation(F, R, I);
4646 }
4647
Douglas Gregor409448c2011-07-21 22:35:25 +00004648 template<typename T>
4649 T *ReadDeclAs(const ASTReader::RecordData &Record, unsigned &Idx) {
4650 return Reader.ReadDeclAs<T>(F, Record, Idx);
4651 }
4652
John McCalla1ee0c52009-10-16 21:56:05 +00004653public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004654 TypeLocReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004655 const ASTReader::RecordData &Record, unsigned &Idx)
Benjamin Kramerfacde172012-06-06 17:32:50 +00004656 : Reader(Reader), F(F), Record(Record), Idx(Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +00004657 { }
John McCalla1ee0c52009-10-16 21:56:05 +00004658
John McCall51bd8032009-10-18 01:05:36 +00004659 // We want compile-time assurance that we've enumerated all of
4660 // these, so unfortunately we have to declare them first, then
4661 // define them out-of-line.
4662#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00004663#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00004664 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004665#include "clang/AST/TypeLocNodes.def"
4666
John McCall51bd8032009-10-18 01:05:36 +00004667 void VisitFunctionTypeLoc(FunctionTypeLoc);
4668 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004669};
4670
John McCall51bd8032009-10-18 01:05:36 +00004671void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00004672 // nothing to do
4673}
John McCall51bd8032009-10-18 01:05:36 +00004674void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004675 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorddf889a2010-01-18 18:04:31 +00004676 if (TL.needsExtraLocalData()) {
4677 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
4678 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
4679 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
4680 TL.setModeAttr(Record[Idx++]);
4681 }
John McCalla1ee0c52009-10-16 21:56:05 +00004682}
John McCall51bd8032009-10-18 01:05:36 +00004683void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004684 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004685}
John McCall51bd8032009-10-18 01:05:36 +00004686void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004687 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004688}
John McCall51bd8032009-10-18 01:05:36 +00004689void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004690 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004691}
John McCall51bd8032009-10-18 01:05:36 +00004692void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004693 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004694}
John McCall51bd8032009-10-18 01:05:36 +00004695void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004696 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004697}
John McCall51bd8032009-10-18 01:05:36 +00004698void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004699 TL.setStarLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +00004700 TL.setClassTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004701}
John McCall51bd8032009-10-18 01:05:36 +00004702void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004703 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
4704 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004705 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00004706 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004707 else
John McCall51bd8032009-10-18 01:05:36 +00004708 TL.setSizeExpr(0);
4709}
4710void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
4711 VisitArrayTypeLoc(TL);
4712}
4713void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
4714 VisitArrayTypeLoc(TL);
4715}
4716void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
4717 VisitArrayTypeLoc(TL);
4718}
4719void TypeLocReader::VisitDependentSizedArrayTypeLoc(
4720 DependentSizedArrayTypeLoc TL) {
4721 VisitArrayTypeLoc(TL);
4722}
4723void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
4724 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004725 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004726}
4727void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004728 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004729}
4730void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004731 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004732}
4733void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00004734 TL.setLocalRangeBegin(ReadSourceLocation(Record, Idx));
Abramo Bagnara59c0a812012-10-04 21:42:10 +00004735 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4736 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara796aa442011-03-12 11:17:06 +00004737 TL.setLocalRangeEnd(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004738 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00004739 TL.setArg(i, ReadDeclAs<ParmVarDecl>(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004740 }
4741}
4742void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
4743 VisitFunctionTypeLoc(TL);
4744}
4745void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
4746 VisitFunctionTypeLoc(TL);
4747}
John McCalled976492009-12-04 22:46:56 +00004748void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004749 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalled976492009-12-04 22:46:56 +00004750}
John McCall51bd8032009-10-18 01:05:36 +00004751void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004752 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004753}
4754void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004755 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4756 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4757 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004758}
4759void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004760 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4761 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4762 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4763 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004764}
4765void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004766 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004767}
Sean Huntca63c202011-05-24 22:41:36 +00004768void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
4769 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4770 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4771 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4772 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
4773}
Richard Smith34b41d92011-02-20 03:19:35 +00004774void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
4775 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4776}
John McCall51bd8032009-10-18 01:05:36 +00004777void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004778 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004779}
4780void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004781 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004782}
John McCall9d156a72011-01-06 01:58:22 +00004783void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
4784 TL.setAttrNameLoc(ReadSourceLocation(Record, Idx));
4785 if (TL.hasAttrOperand()) {
4786 SourceRange range;
4787 range.setBegin(ReadSourceLocation(Record, Idx));
4788 range.setEnd(ReadSourceLocation(Record, Idx));
4789 TL.setAttrOperandParensRange(range);
4790 }
4791 if (TL.hasAttrExprOperand()) {
4792 if (Record[Idx++])
4793 TL.setAttrExprOperand(Reader.ReadExpr(F));
4794 else
4795 TL.setAttrExprOperand(0);
4796 } else if (TL.hasAttrEnumOperand())
4797 TL.setAttrEnumOperandLoc(ReadSourceLocation(Record, Idx));
4798}
John McCall51bd8032009-10-18 01:05:36 +00004799void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004800 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004801}
John McCall49a832b2009-10-18 09:09:24 +00004802void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
4803 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004804 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall49a832b2009-10-18 09:09:24 +00004805}
Douglas Gregorc3069d62011-01-14 02:55:32 +00004806void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
4807 SubstTemplateTypeParmPackTypeLoc TL) {
4808 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4809}
John McCall51bd8032009-10-18 01:05:36 +00004810void TypeLocReader::VisitTemplateSpecializationTypeLoc(
4811 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004812 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004813 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
4814 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4815 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall833ca992009-10-29 08:12:44 +00004816 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4817 TL.setArgLocInfo(i,
Sebastian Redlc3632732010-10-05 15:59:54 +00004818 Reader.GetTemplateArgumentLocInfo(F,
4819 TL.getTypePtr()->getArg(i).getKind(),
4820 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004821}
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004822void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
4823 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4824 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4825}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004826void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004827 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor9e876872011-03-01 18:12:44 +00004828 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004829}
John McCall3cb0ebd2010-03-10 03:28:59 +00004830void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004831 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall3cb0ebd2010-03-10 03:28:59 +00004832}
Douglas Gregor4714c122010-03-31 17:34:00 +00004833void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004834 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor2494dd02011-03-01 01:34:45 +00004835 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004836 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004837}
John McCall33500952010-06-11 00:33:02 +00004838void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
4839 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004840 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor94fdffa2011-03-01 20:11:18 +00004841 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Abramo Bagnara66581d42012-02-06 22:45:07 +00004842 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004843 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004844 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4845 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004846 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
4847 TL.setArgLocInfo(I,
Sebastian Redlc3632732010-10-05 15:59:54 +00004848 Reader.GetTemplateArgumentLocInfo(F,
4849 TL.getTypePtr()->getArg(I).getKind(),
4850 Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004851}
Douglas Gregor7536dd52010-12-20 02:24:11 +00004852void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
4853 TL.setEllipsisLoc(ReadSourceLocation(Record, Idx));
4854}
John McCall51bd8032009-10-18 01:05:36 +00004855void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004856 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallc12c5bb2010-05-15 11:32:37 +00004857}
4858void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
4859 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00004860 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4861 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004862 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00004863 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004864}
John McCall54e14c42009-10-22 22:37:11 +00004865void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004866 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall54e14c42009-10-22 22:37:11 +00004867}
Eli Friedmanb001de72011-10-06 23:00:33 +00004868void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
4869 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4870 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4871 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4872}
John McCalla1ee0c52009-10-16 21:56:05 +00004873
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004874TypeSourceInfo *ASTReader::GetTypeSourceInfo(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004875 const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00004876 unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004877 QualType InfoTy = readType(F, Record, Idx);
John McCalla1ee0c52009-10-16 21:56:05 +00004878 if (InfoTy.isNull())
4879 return 0;
4880
Douglas Gregor35942772011-09-09 21:34:22 +00004881 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
Sebastian Redlc3632732010-10-05 15:59:54 +00004882 TypeLocReader TLR(*this, F, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00004883 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00004884 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00004885 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00004886}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004887
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004888QualType ASTReader::GetType(TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00004889 unsigned FastQuals = ID & Qualifiers::FastMask;
4890 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004891
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004892 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004893 QualType T;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004894 switch ((PredefinedTypeIDs)Index) {
4895 case PREDEF_TYPE_NULL_ID: return QualType();
Douglas Gregor35942772011-09-09 21:34:22 +00004896 case PREDEF_TYPE_VOID_ID: T = Context.VoidTy; break;
4897 case PREDEF_TYPE_BOOL_ID: T = Context.BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004898
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004899 case PREDEF_TYPE_CHAR_U_ID:
4900 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregor2cf26342009-04-09 22:27:44 +00004901 // FIXME: Check that the signedness of CharTy is correct!
Douglas Gregor35942772011-09-09 21:34:22 +00004902 T = Context.CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004903 break;
4904
Douglas Gregor35942772011-09-09 21:34:22 +00004905 case PREDEF_TYPE_UCHAR_ID: T = Context.UnsignedCharTy; break;
4906 case PREDEF_TYPE_USHORT_ID: T = Context.UnsignedShortTy; break;
4907 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break;
4908 case PREDEF_TYPE_ULONG_ID: T = Context.UnsignedLongTy; break;
4909 case PREDEF_TYPE_ULONGLONG_ID: T = Context.UnsignedLongLongTy; break;
4910 case PREDEF_TYPE_UINT128_ID: T = Context.UnsignedInt128Ty; break;
4911 case PREDEF_TYPE_SCHAR_ID: T = Context.SignedCharTy; break;
4912 case PREDEF_TYPE_WCHAR_ID: T = Context.WCharTy; break;
4913 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break;
4914 case PREDEF_TYPE_INT_ID: T = Context.IntTy; break;
4915 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break;
4916 case PREDEF_TYPE_LONGLONG_ID: T = Context.LongLongTy; break;
4917 case PREDEF_TYPE_INT128_ID: T = Context.Int128Ty; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004918 case PREDEF_TYPE_HALF_ID: T = Context.HalfTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004919 case PREDEF_TYPE_FLOAT_ID: T = Context.FloatTy; break;
4920 case PREDEF_TYPE_DOUBLE_ID: T = Context.DoubleTy; break;
4921 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context.LongDoubleTy; break;
4922 case PREDEF_TYPE_OVERLOAD_ID: T = Context.OverloadTy; break;
4923 case PREDEF_TYPE_BOUND_MEMBER: T = Context.BoundMemberTy; break;
John McCall3c3b7f92011-10-25 17:37:35 +00004924 case PREDEF_TYPE_PSEUDO_OBJECT: T = Context.PseudoObjectTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004925 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break;
4926 case PREDEF_TYPE_UNKNOWN_ANY: T = Context.UnknownAnyTy; break;
4927 case PREDEF_TYPE_NULLPTR_ID: T = Context.NullPtrTy; break;
4928 case PREDEF_TYPE_CHAR16_ID: T = Context.Char16Ty; break;
4929 case PREDEF_TYPE_CHAR32_ID: T = Context.Char32Ty; break;
4930 case PREDEF_TYPE_OBJC_ID: T = Context.ObjCBuiltinIdTy; break;
4931 case PREDEF_TYPE_OBJC_CLASS: T = Context.ObjCBuiltinClassTy; break;
4932 case PREDEF_TYPE_OBJC_SEL: T = Context.ObjCBuiltinSelTy; break;
4933 case PREDEF_TYPE_AUTO_DEDUCT: T = Context.getAutoDeductType(); break;
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004934
4935 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00004936 T = Context.getAutoRRefDeductType();
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004937 break;
John McCall0ddaeb92011-10-17 18:09:15 +00004938
4939 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
4940 T = Context.ARCUnbridgedCastTy;
4941 break;
4942
Meador Ingefb40e3f2012-07-01 15:57:25 +00004943 case PREDEF_TYPE_VA_LIST_TAG:
4944 T = Context.getVaListTagType();
4945 break;
Eli Friedmana6c66ce2012-08-31 00:14:07 +00004946
4947 case PREDEF_TYPE_BUILTIN_FN:
4948 T = Context.BuiltinFnTy;
4949 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004950 }
4951
4952 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00004953 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004954 }
4955
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004956 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004957 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl07a353c2010-07-14 20:26:45 +00004958 if (TypesLoaded[Index].isNull()) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004959 TypesLoaded[Index] = readTypeRecord(Index);
Douglas Gregor97475832010-10-05 18:37:06 +00004960 if (TypesLoaded[Index].isNull())
4961 return QualType();
4962
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004963 TypesLoaded[Index]->setFromAST();
Sebastian Redl30c514c2010-07-14 23:45:08 +00004964 if (DeserializationListener)
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004965 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1476ed42010-07-16 16:36:56 +00004966 TypesLoaded[Index]);
Sebastian Redl07a353c2010-07-14 20:26:45 +00004967 }
Mike Stump1eb44332009-09-09 15:08:12 +00004968
John McCall0953e762009-09-24 19:53:00 +00004969 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004970}
4971
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004972QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004973 return GetType(getGlobalTypeID(F, LocalID));
4974}
4975
4976serialization::TypeID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004977ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregora119da02011-08-02 16:26:37 +00004978 unsigned FastQuals = LocalID & Qualifiers::FastMask;
4979 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
4980
4981 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
4982 return LocalID;
4983
4984 ContinuousRangeMap<uint32_t, int, 2>::iterator I
4985 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
4986 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
4987
4988 unsigned GlobalIndex = LocalIndex + I->second;
4989 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
4990}
4991
John McCall833ca992009-10-29 08:12:44 +00004992TemplateArgumentLocInfo
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004993ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00004994 TemplateArgument::ArgKind Kind,
John McCall833ca992009-10-29 08:12:44 +00004995 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004996 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00004997 switch (Kind) {
4998 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00004999 return ReadExpr(F);
John McCall833ca992009-10-29 08:12:44 +00005000 case TemplateArgument::Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00005001 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00005002 case TemplateArgument::Template: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00005003 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
5004 Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00005005 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00005006 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregora7fc9012011-01-05 18:58:31 +00005007 SourceLocation());
5008 }
5009 case TemplateArgument::TemplateExpansion: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00005010 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
5011 Index);
Douglas Gregora7fc9012011-01-05 18:58:31 +00005012 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorba68eca2011-01-05 17:40:24 +00005013 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00005014 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregorba68eca2011-01-05 17:40:24 +00005015 EllipsisLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00005016 }
John McCall833ca992009-10-29 08:12:44 +00005017 case TemplateArgument::Null:
5018 case TemplateArgument::Integral:
5019 case TemplateArgument::Declaration:
Eli Friedmand7a6b162012-09-26 02:36:12 +00005020 case TemplateArgument::NullPtr:
John McCall833ca992009-10-29 08:12:44 +00005021 case TemplateArgument::Pack:
Eli Friedmand7a6b162012-09-26 02:36:12 +00005022 // FIXME: Is this right?
John McCall833ca992009-10-29 08:12:44 +00005023 return TemplateArgumentLocInfo();
5024 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00005025 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00005026}
5027
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005028TemplateArgumentLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005029ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00005030 const RecordData &Record, unsigned &Index) {
Sebastian Redlc3632732010-10-05 15:59:54 +00005031 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005032
5033 if (Arg.getKind() == TemplateArgument::Expression) {
5034 if (Record[Index++]) // bool InfoHasSameExpr.
5035 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
5036 }
Sebastian Redlc3632732010-10-05 15:59:54 +00005037 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00005038 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00005039}
5040
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005041Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall76bd1f32010-06-01 09:23:16 +00005042 return GetDecl(ID);
5043}
5044
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005045uint64_t ASTReader::readCXXBaseSpecifiers(ModuleFile &M, const RecordData &Record,
Douglas Gregore92b8a12011-08-04 00:01:48 +00005046 unsigned &Idx){
5047 if (Idx >= Record.size())
Douglas Gregor7c789c12010-10-29 22:39:52 +00005048 return 0;
Douglas Gregor7c789c12010-10-29 22:39:52 +00005049
Douglas Gregore92b8a12011-08-04 00:01:48 +00005050 unsigned LocalID = Record[Idx++];
5051 return getGlobalBitOffset(M, M.CXXBaseSpecifiersOffsets[LocalID - 1]);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005052}
5053
5054CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005055 RecordLocation Loc = getLocalBitOffset(Offset);
5056 llvm::BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Douglas Gregor7c789c12010-10-29 22:39:52 +00005057 SavedStreamPosition SavedPosition(Cursor);
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005058 Cursor.JumpToBit(Loc.Offset);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005059 ReadingKindTracker ReadingKind(Read_Decl, *this);
5060 RecordData Record;
5061 unsigned Code = Cursor.ReadCode();
5062 unsigned RecCode = Cursor.ReadRecord(Code, Record);
5063 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
5064 Error("Malformed AST file: missing C++ base specifiers");
5065 return 0;
5066 }
5067
5068 unsigned Idx = 0;
5069 unsigned NumBases = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00005070 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005071 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
5072 for (unsigned I = 0; I != NumBases; ++I)
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005073 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005074 return Bases;
5075}
5076
Douglas Gregor409448c2011-07-21 22:35:25 +00005077serialization::DeclID
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00005078ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005079 if (LocalID < NUM_PREDEF_DECL_IDS)
Douglas Gregor496c7092011-08-03 15:48:04 +00005080 return LocalID;
5081
5082 ContinuousRangeMap<uint32_t, int, 2>::iterator I
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005083 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
Douglas Gregor496c7092011-08-03 15:48:04 +00005084 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
5085
5086 return LocalID + I->second;
Douglas Gregor409448c2011-07-21 22:35:25 +00005087}
5088
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005089bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005090 ModuleFile &M) const {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005091 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(ID);
5092 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5093 return &M == I->second;
5094}
5095
Douglas Gregorcff9f262012-01-27 01:47:08 +00005096ModuleFile *ASTReader::getOwningModuleFile(Decl *D) {
5097 if (!D->isFromASTFile())
5098 return 0;
5099 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
5100 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5101 return I->second;
5102}
5103
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005104SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
5105 if (ID < NUM_PREDEF_DECL_IDS)
5106 return SourceLocation();
5107
5108 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
5109
5110 if (Index > DeclsLoaded.size()) {
5111 Error("declaration ID out-of-range for AST file");
5112 return SourceLocation();
5113 }
5114
5115 if (Decl *D = DeclsLoaded[Index])
5116 return D->getLocation();
5117
5118 unsigned RawLocation = 0;
5119 RecordLocation Rec = DeclCursorForID(ID, RawLocation);
5120 return ReadSourceLocation(*Rec.F, RawLocation);
5121}
5122
Sebastian Redl8538e8d2010-08-18 23:57:32 +00005123Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005124 if (ID < NUM_PREDEF_DECL_IDS) {
5125 switch ((PredefinedDeclIDs)ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005126 case PREDEF_DECL_NULL_ID:
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005127 return 0;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005128
5129 case PREDEF_DECL_TRANSLATION_UNIT_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005130 return Context.getTranslationUnitDecl();
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00005131
5132 case PREDEF_DECL_OBJC_ID_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005133 return Context.getObjCIdDecl();
Douglas Gregor79d67262011-08-12 05:59:41 +00005134
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005135 case PREDEF_DECL_OBJC_SEL_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005136 return Context.getObjCSelDecl();
Douglas Gregor7a27ea52011-08-12 06:17:30 +00005137
Douglas Gregor79d67262011-08-12 05:59:41 +00005138 case PREDEF_DECL_OBJC_CLASS_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005139 return Context.getObjCClassDecl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00005140
Douglas Gregora6ea10e2012-01-17 18:09:05 +00005141 case PREDEF_DECL_OBJC_PROTOCOL_ID:
5142 return Context.getObjCProtocolDecl();
5143
Douglas Gregor772eeae2011-08-12 06:49:56 +00005144 case PREDEF_DECL_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005145 return Context.getInt128Decl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00005146
5147 case PREDEF_DECL_UNSIGNED_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005148 return Context.getUInt128Decl();
Douglas Gregore97179c2011-09-08 01:46:34 +00005149
5150 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00005151 return Context.getObjCInstanceTypeDecl();
Meador Ingec5613b22012-06-16 03:34:49 +00005152
5153 case PREDEF_DECL_BUILTIN_VA_LIST_ID:
5154 return Context.getBuiltinVaListDecl();
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005155 }
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00005156 }
5157
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005158 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
5159
Richard Smith2fbf3732011-12-20 04:39:57 +00005160 if (Index >= DeclsLoaded.size()) {
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00005161 assert(0 && "declaration ID out-of-range for AST file");
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005162 Error("declaration ID out-of-range for AST file");
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00005163 return 0;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005164 }
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00005165
Douglas Gregorfd002a72011-12-16 22:37:11 +00005166 if (!DeclsLoaded[Index]) {
Douglas Gregor496c7092011-08-03 15:48:04 +00005167 ReadDeclRecord(ID);
Sebastian Redl30c514c2010-07-14 23:45:08 +00005168 if (DeserializationListener)
5169 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
5170 }
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005171
5172 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00005173}
5174
Douglas Gregora1be2782011-12-17 23:38:30 +00005175DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
5176 DeclID GlobalID) {
5177 if (GlobalID < NUM_PREDEF_DECL_IDS)
5178 return GlobalID;
5179
5180 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
5181 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
5182 ModuleFile *Owner = I->second;
5183
5184 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
5185 = M.GlobalToLocalDeclIDs.find(Owner);
5186 if (Pos == M.GlobalToLocalDeclIDs.end())
5187 return 0;
5188
5189 return GlobalID - Owner->BaseDeclID + Pos->second;
5190}
5191
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005192serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00005193 const RecordData &Record,
5194 unsigned &Idx) {
5195 if (Idx >= Record.size()) {
5196 Error("Corrupted AST file");
5197 return 0;
5198 }
5199
5200 return getGlobalDeclID(F, Record[Idx++]);
5201}
5202
Chris Lattner887e2b32009-04-27 05:46:25 +00005203/// \brief Resolve the offset of a statement into a statement.
5204///
5205/// This operation will read a new statement from the external
5206/// source each time it is called, and is meant to be used via a
5207/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005208Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00005209 // Switch case IDs are per Decl.
5210 ClearSwitchCaseIDs();
5211
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00005212 // Offset here is a global offset across the entire chain.
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005213 RecordLocation Loc = getLocalBitOffset(Offset);
5214 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
5215 return ReadStmtFromStream(*Loc.F);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00005216}
5217
Douglas Gregor851c75a2011-08-24 21:27:34 +00005218namespace {
5219 class FindExternalLexicalDeclsVisitor {
5220 ASTReader &Reader;
5221 const DeclContext *DC;
5222 bool (*isKindWeWant)(Decl::Kind);
Douglas Gregor2ea054f2011-08-26 22:04:51 +00005223
Douglas Gregor851c75a2011-08-24 21:27:34 +00005224 SmallVectorImpl<Decl*> &Decls;
5225 bool PredefsVisited[NUM_PREDEF_DECL_IDS];
5226
5227 public:
5228 FindExternalLexicalDeclsVisitor(ASTReader &Reader, const DeclContext *DC,
5229 bool (*isKindWeWant)(Decl::Kind),
5230 SmallVectorImpl<Decl*> &Decls)
5231 : Reader(Reader), DC(DC), isKindWeWant(isKindWeWant), Decls(Decls)
5232 {
5233 for (unsigned I = 0; I != NUM_PREDEF_DECL_IDS; ++I)
5234 PredefsVisited[I] = false;
5235 }
5236
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005237 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
Douglas Gregor851c75a2011-08-24 21:27:34 +00005238 if (Preorder)
5239 return false;
5240
5241 FindExternalLexicalDeclsVisitor *This
5242 = static_cast<FindExternalLexicalDeclsVisitor *>(UserData);
5243
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005244 ModuleFile::DeclContextInfosMap::iterator Info
Douglas Gregor851c75a2011-08-24 21:27:34 +00005245 = M.DeclContextInfos.find(This->DC);
5246 if (Info == M.DeclContextInfos.end() || !Info->second.LexicalDecls)
5247 return false;
5248
5249 // Load all of the declaration IDs
5250 for (const KindDeclIDPair *ID = Info->second.LexicalDecls,
5251 *IDE = ID + Info->second.NumLexicalDecls;
5252 ID != IDE; ++ID) {
5253 if (This->isKindWeWant && !This->isKindWeWant((Decl::Kind)ID->first))
5254 continue;
5255
5256 // Don't add predefined declarations to the lexical context more
5257 // than once.
5258 if (ID->second < NUM_PREDEF_DECL_IDS) {
5259 if (This->PredefsVisited[ID->second])
5260 continue;
5261
5262 This->PredefsVisited[ID->second] = true;
5263 }
5264
Douglas Gregor2ea054f2011-08-26 22:04:51 +00005265 if (Decl *D = This->Reader.GetLocalDecl(M, ID->second)) {
5266 if (!This->DC->isDeclInLexicalTraversal(D))
5267 This->Decls.push_back(D);
5268 }
Douglas Gregor851c75a2011-08-24 21:27:34 +00005269 }
5270
5271 return false;
5272 }
5273 };
5274}
5275
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00005276ExternalLoadResult ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00005277 bool (*isKindWeWant)(Decl::Kind),
Chris Lattner5f9e2722011-07-23 10:55:15 +00005278 SmallVectorImpl<Decl*> &Decls) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00005279 // There might be lexical decls in multiple modules, for the TU at
Douglas Gregor851c75a2011-08-24 21:27:34 +00005280 // least. Walk all of the modules in the order they were loaded.
5281 FindExternalLexicalDeclsVisitor Visitor(*this, DC, isKindWeWant, Decls);
5282 ModuleMgr.visitDepthFirst(&FindExternalLexicalDeclsVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00005283 ++NumLexicalDeclContextsRead;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00005284 return ELR_Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00005285}
5286
Douglas Gregor0d95f772011-08-24 19:03:07 +00005287namespace {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005288
5289class DeclIDComp {
5290 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005291 ModuleFile &Mod;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005292
5293public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005294 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005295
5296 bool operator()(LocalDeclID L, LocalDeclID R) const {
5297 SourceLocation LHS = getLocation(L);
5298 SourceLocation RHS = getLocation(R);
5299 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5300 }
5301
5302 bool operator()(SourceLocation LHS, LocalDeclID R) const {
5303 SourceLocation RHS = getLocation(R);
5304 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5305 }
5306
5307 bool operator()(LocalDeclID L, SourceLocation RHS) const {
5308 SourceLocation LHS = getLocation(L);
5309 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5310 }
5311
5312 SourceLocation getLocation(LocalDeclID ID) const {
5313 return Reader.getSourceManager().getFileLoc(
5314 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
5315 }
5316};
5317
5318}
5319
5320void ASTReader::FindFileRegionDecls(FileID File,
5321 unsigned Offset, unsigned Length,
5322 SmallVectorImpl<Decl *> &Decls) {
5323 SourceManager &SM = getSourceManager();
5324
5325 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
5326 if (I == FileDeclIDs.end())
5327 return;
5328
5329 FileDeclsInfo &DInfo = I->second;
5330 if (DInfo.Decls.empty())
5331 return;
5332
5333 SourceLocation
5334 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
5335 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
5336
5337 DeclIDComp DIDComp(*this, *DInfo.Mod);
5338 ArrayRef<serialization::LocalDeclID>::iterator
5339 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
5340 BeginLoc, DIDComp);
5341 if (BeginIt != DInfo.Decls.begin())
5342 --BeginIt;
5343
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00005344 // If we are pointing at a top-level decl inside an objc container, we need
5345 // to backtrack until we find it otherwise we will fail to report that the
5346 // region overlaps with an objc container.
5347 while (BeginIt != DInfo.Decls.begin() &&
5348 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
5349 ->isTopLevelDeclInObjCContainer())
5350 --BeginIt;
5351
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00005352 ArrayRef<serialization::LocalDeclID>::iterator
5353 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
5354 EndLoc, DIDComp);
5355 if (EndIt != DInfo.Decls.end())
5356 ++EndIt;
5357
5358 for (ArrayRef<serialization::LocalDeclID>::iterator
5359 DIt = BeginIt; DIt != EndIt; ++DIt)
5360 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
5361}
5362
5363namespace {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005364 /// \brief ModuleFile visitor used to perform name lookup into a
Douglas Gregor0d95f772011-08-24 19:03:07 +00005365 /// declaration context.
5366 class DeclContextNameLookupVisitor {
5367 ASTReader &Reader;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005368 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Douglas Gregor0d95f772011-08-24 19:03:07 +00005369 DeclarationName Name;
5370 SmallVectorImpl<NamedDecl *> &Decls;
5371
5372 public:
5373 DeclContextNameLookupVisitor(ASTReader &Reader,
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005374 SmallVectorImpl<const DeclContext *> &Contexts,
5375 DeclarationName Name,
Douglas Gregor0d95f772011-08-24 19:03:07 +00005376 SmallVectorImpl<NamedDecl *> &Decls)
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005377 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls) { }
Douglas Gregor0d95f772011-08-24 19:03:07 +00005378
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005379 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00005380 DeclContextNameLookupVisitor *This
5381 = static_cast<DeclContextNameLookupVisitor *>(UserData);
5382
5383 // Check whether we have any visible declaration information for
5384 // this context in this module.
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005385 ModuleFile::DeclContextInfosMap::iterator Info;
5386 bool FoundInfo = false;
5387 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
5388 Info = M.DeclContextInfos.find(This->Contexts[I]);
5389 if (Info != M.DeclContextInfos.end() &&
5390 Info->second.NameLookupTableData) {
5391 FoundInfo = true;
5392 break;
5393 }
5394 }
Douglas Gregor0d95f772011-08-24 19:03:07 +00005395
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005396 if (!FoundInfo)
5397 return false;
5398
Douglas Gregor0d95f772011-08-24 19:03:07 +00005399 // Look for this name within this module.
5400 ASTDeclContextNameLookupTable *LookupTable =
Benjamin Kramerb1758c62012-04-15 12:36:49 +00005401 Info->second.NameLookupTableData;
Douglas Gregor0d95f772011-08-24 19:03:07 +00005402 ASTDeclContextNameLookupTable::iterator Pos
5403 = LookupTable->find(This->Name);
5404 if (Pos == LookupTable->end())
5405 return false;
5406
5407 bool FoundAnything = false;
5408 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
5409 for (; Data.first != Data.second; ++Data.first) {
5410 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M, *Data.first);
5411 if (!ND)
5412 continue;
5413
5414 if (ND->getDeclName() != This->Name) {
Axel Naumann3dd82f72012-10-01 09:51:27 +00005415 // A name might be null because the decl's redeclarable part is
5416 // currently read before reading its name. The lookup is triggered by
5417 // building that decl (likely indirectly), and so it is later in the
5418 // sense of "already existing" and can be ignored here.
Douglas Gregor0d95f772011-08-24 19:03:07 +00005419 continue;
5420 }
5421
5422 // Record this declaration.
5423 FoundAnything = true;
5424 This->Decls.push_back(ND);
5425 }
5426
5427 return FoundAnything;
5428 }
5429 };
5430}
5431
John McCall76bd1f32010-06-01 09:23:16 +00005432DeclContext::lookup_result
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005433ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +00005434 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00005435 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00005436 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00005437 if (!Name)
5438 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
5439 DeclContext::lookup_iterator(0));
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00005440
Chris Lattner5f9e2722011-07-23 10:55:15 +00005441 SmallVector<NamedDecl *, 64> Decls;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00005442
5443 // Compute the declaration contexts we need to look into. Multiple such
5444 // declaration contexts occur when two declaration contexts from disjoint
5445 // modules get merged, e.g., when two namespaces with the same name are
5446 // independently defined in separate modules.
5447 SmallVector<const DeclContext *, 2> Contexts;
5448 Contexts.push_back(DC);
5449
5450 if (DC->isNamespace()) {
5451 MergedDeclsMap::iterator Merged
5452 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5453 if (Merged != MergedDecls.end()) {
5454 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5455 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5456 }
5457 }
5458
5459 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls);
Douglas Gregor0d95f772011-08-24 19:03:07 +00005460 ModuleMgr.visit(&DeclContextNameLookupVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00005461 ++NumVisibleDeclContextsRead;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00005462 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall76bd1f32010-06-01 09:23:16 +00005463 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00005464}
5465
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005466namespace {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005467 /// \brief ModuleFile visitor used to retrieve all visible names in a
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005468 /// declaration context.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005469 class DeclContextAllNamesVisitor {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005470 ASTReader &Reader;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005471 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005472 llvm::DenseMap<DeclarationName, SmallVector<NamedDecl *, 8> > &Decls;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005473
5474 public:
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005475 DeclContextAllNamesVisitor(ASTReader &Reader,
5476 SmallVectorImpl<const DeclContext *> &Contexts,
5477 llvm::DenseMap<DeclarationName,
5478 SmallVector<NamedDecl *, 8> > &Decls)
5479 : Reader(Reader), Contexts(Contexts), Decls(Decls) { }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005480
5481 static bool visit(ModuleFile &M, void *UserData) {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005482 DeclContextAllNamesVisitor *This
5483 = static_cast<DeclContextAllNamesVisitor *>(UserData);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005484
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005485 // Check whether we have any visible declaration information for
5486 // this context in this module.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005487 ModuleFile::DeclContextInfosMap::iterator Info;
5488 bool FoundInfo = false;
5489 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
5490 Info = M.DeclContextInfos.find(This->Contexts[I]);
5491 if (Info != M.DeclContextInfos.end() &&
5492 Info->second.NameLookupTableData) {
5493 FoundInfo = true;
5494 break;
5495 }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005496 }
5497
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005498 if (!FoundInfo)
5499 return false;
5500
5501 ASTDeclContextNameLookupTable *LookupTable =
5502 Info->second.NameLookupTableData;
5503 bool FoundAnything = false;
5504 for (ASTDeclContextNameLookupTable::data_iterator
5505 I = LookupTable->data_begin(), E = LookupTable->data_end();
5506 I != E; ++I) {
5507 ASTDeclContextNameLookupTrait::data_type Data = *I;
5508 for (; Data.first != Data.second; ++Data.first) {
5509 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M,
5510 *Data.first);
5511 if (!ND)
5512 continue;
5513
5514 // Record this declaration.
5515 FoundAnything = true;
5516 This->Decls[ND->getDeclName()].push_back(ND);
5517 }
5518 }
5519
5520 return FoundAnything;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005521 }
5522 };
5523}
5524
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005525void ASTReader::completeVisibleDeclsMap(const DeclContext *DC) {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005526 if (!DC->hasExternalVisibleStorage())
5527 return;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005528 llvm::DenseMap<DeclarationName, llvm::SmallVector<NamedDecl*, 8> > Decls;
5529
5530 // Compute the declaration contexts we need to look into. Multiple such
5531 // declaration contexts occur when two declaration contexts from disjoint
5532 // modules get merged, e.g., when two namespaces with the same name are
5533 // independently defined in separate modules.
5534 SmallVector<const DeclContext *, 2> Contexts;
5535 Contexts.push_back(DC);
5536
5537 if (DC->isNamespace()) {
5538 MergedDeclsMap::iterator Merged
5539 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5540 if (Merged != MergedDecls.end()) {
5541 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5542 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5543 }
5544 }
5545
5546 DeclContextAllNamesVisitor Visitor(*this, Contexts, Decls);
5547 ModuleMgr.visit(&DeclContextAllNamesVisitor::visit, &Visitor);
5548 ++NumVisibleDeclContextsRead;
5549
5550 for (llvm::DenseMap<DeclarationName,
5551 llvm::SmallVector<NamedDecl*, 8> >::iterator
5552 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
5553 SetExternalVisibleDeclsForName(DC, I->first, I->second);
5554 }
Argyrios Kyrtzidis394e5392012-04-26 18:34:14 +00005555 const_cast<DeclContext *>(DC)->setHasExternalVisibleStorage(false);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005556}
5557
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005558/// \brief Under non-PCH compilation the consumer receives the objc methods
5559/// before receiving the implementation, and codegen depends on this.
5560/// We simulate this by deserializing and passing to consumer the methods of the
5561/// implementation before passing the deserialized implementation decl.
5562static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
5563 ASTConsumer *Consumer) {
5564 assert(ImplD && Consumer);
5565
5566 for (ObjCImplDecl::method_iterator
5567 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00005568 Consumer->HandleInterestingDecl(DeclGroupRef(*I));
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005569
5570 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
5571}
5572
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005573void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005574 assert(Consumer);
5575 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005576 Decl *D = InterestingDecls.front();
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005577 InterestingDecls.pop_front();
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005578
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005579 PassInterestingDeclToConsumer(D);
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005580 }
5581}
5582
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005583void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
5584 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5585 PassObjCImplDeclToConsumer(ImplD, Consumer);
5586 else
5587 Consumer->HandleInterestingDecl(DeclGroupRef(D));
5588}
5589
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005590void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00005591 this->Consumer = Consumer;
5592
Douglas Gregorfdd01722009-04-14 00:24:19 +00005593 if (!Consumer)
5594 return;
5595
5596 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005597 // Force deserialization of this decl, which will cause it to be queued for
5598 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00005599 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00005600 }
Douglas Gregor1a995dd2011-09-15 18:47:32 +00005601 ExternalDefinitions.clear();
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00005602
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005603 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00005604}
5605
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005606void ASTReader::PrintStats() {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005607 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005608
Mike Stump1eb44332009-09-09 15:08:12 +00005609 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005610 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00005611 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005612 unsigned NumDeclsLoaded
5613 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
5614 (Decl *)0);
5615 unsigned NumIdentifiersLoaded
5616 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
5617 IdentifiersLoaded.end(),
5618 (IdentifierInfo *)0);
Douglas Gregora8235d62012-10-09 23:05:51 +00005619 unsigned NumMacrosLoaded
5620 = MacrosLoaded.size() - std::count(MacrosLoaded.begin(),
5621 MacrosLoaded.end(),
5622 (MacroInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00005623 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005624 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
5625 SelectorsLoaded.end(),
5626 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00005627
Douglas Gregor4fed3f42009-04-27 18:38:38 +00005628 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
5629 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor0cdd7982011-07-21 18:46:38 +00005630 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005631 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
5632 NumSLocEntriesRead, TotalNumSLocEntries,
5633 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005634 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005635 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005636 NumTypesLoaded, (unsigned)TypesLoaded.size(),
5637 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
5638 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005639 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005640 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
5641 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005642 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005643 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005644 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
5645 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregora8235d62012-10-09 23:05:51 +00005646 if (!MacrosLoaded.empty())
5647 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5648 NumMacrosLoaded, (unsigned)MacrosLoaded.size(),
5649 ((float)NumMacrosLoaded/MacrosLoaded.size() * 100));
Sebastian Redl725cd962010-08-04 20:40:17 +00005650 if (!SelectorsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005651 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redl725cd962010-08-04 20:40:17 +00005652 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
5653 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00005654 if (TotalNumStatements)
5655 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
5656 NumStatementsRead, TotalNumStatements,
5657 ((float)NumStatementsRead/TotalNumStatements * 100));
5658 if (TotalNumMacros)
5659 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5660 NumMacrosRead, TotalNumMacros,
5661 ((float)NumMacrosRead/TotalNumMacros * 100));
5662 if (TotalLexicalDeclContexts)
5663 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
5664 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
5665 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
5666 * 100));
5667 if (TotalVisibleDeclContexts)
5668 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
5669 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
5670 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
5671 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005672 if (TotalNumMethodPoolEntries) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005673 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005674 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
5675 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor83941df2009-04-25 17:48:32 +00005676 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005677 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor83941df2009-04-25 17:48:32 +00005678 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00005679 std::fprintf(stderr, "\n");
Douglas Gregor23d7df52011-07-21 19:50:14 +00005680 dump();
5681 std::fprintf(stderr, "\n");
5682}
5683
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005684template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Douglas Gregor23d7df52011-07-21 19:50:14 +00005685static void
Chris Lattner5f9e2722011-07-23 10:55:15 +00005686dumpModuleIDMap(StringRef Name,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005687 const ContinuousRangeMap<Key, ModuleFile *,
Douglas Gregor23d7df52011-07-21 19:50:14 +00005688 InitialCapacity> &Map) {
5689 if (Map.begin() == Map.end())
5690 return;
5691
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005692 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType;
Douglas Gregor23d7df52011-07-21 19:50:14 +00005693 llvm::errs() << Name << ":\n";
5694 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
5695 I != IEnd; ++I) {
5696 llvm::errs() << " " << I->first << " -> " << I->second->FileName
5697 << "\n";
5698 }
5699}
5700
Douglas Gregor23d7df52011-07-21 19:50:14 +00005701void ASTReader::dump() {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005702 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005703 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
Douglas Gregor23d7df52011-07-21 19:50:14 +00005704 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
Douglas Gregor1e849b62011-07-29 00:21:44 +00005705 dumpModuleIDMap("Global type map", GlobalTypeMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005706 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005707 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
Douglas Gregora8235d62012-10-09 23:05:51 +00005708 dumpModuleIDMap("Global macro map", GlobalMacroMap);
Douglas Gregor26ced122011-12-01 00:59:36 +00005709 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005710 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005711 dumpModuleIDMap("Global preprocessed entity map",
5712 GlobalPreprocessedEntityMap);
Douglas Gregor8df5c9b2011-08-02 11:12:41 +00005713
5714 llvm::errs() << "\n*** PCH/Modules Loaded:";
5715 for (ModuleManager::ModuleConstIterator M = ModuleMgr.begin(),
5716 MEnd = ModuleMgr.end();
5717 M != MEnd; ++M)
5718 (*M)->dump();
Douglas Gregor2cf26342009-04-09 22:27:44 +00005719}
5720
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005721/// Return the amount of memory used by memory buffers, breaking down
5722/// by heap-backed versus mmap'ed memory.
5723void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005724 for (ModuleConstIterator I = ModuleMgr.begin(),
5725 E = ModuleMgr.end(); I != E; ++I) {
5726 if (llvm::MemoryBuffer *buf = (*I)->Buffer.get()) {
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005727 size_t bytes = buf->getBufferSize();
5728 switch (buf->getBufferKind()) {
5729 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
5730 sizes.malloc_bytes += bytes;
5731 break;
5732 case llvm::MemoryBuffer::MemoryBuffer_MMap:
5733 sizes.mmap_bytes += bytes;
5734 break;
5735 }
5736 }
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005737 }
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005738}
5739
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005740void ASTReader::InitializeSema(Sema &S) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005741 SemaObj = &S;
Axel Naumann0ec56b72012-10-18 19:05:02 +00005742 S.addExternalSource(this);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005743
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005744 // Makes sure any declarations that were deserialized "too early"
5745 // still get added to the identifier's declaration chains.
Douglas Gregor76dc8892010-09-24 23:29:12 +00005746 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005747 SemaObj->pushExternalDeclIntoScope(PreloadedDecls[I],
5748 PreloadedDecls[I]->getDeclName());
Douglas Gregor668c1a42009-04-21 22:25:48 +00005749 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005750 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00005751
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005752 // Load the offsets of the declarations that Sema references.
5753 // They will be lazily deserialized when needed.
5754 if (!SemaDeclRefs.empty()) {
5755 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
Douglas Gregor1e5b6f62011-07-28 00:57:24 +00005756 if (!SemaObj->StdNamespace)
5757 SemaObj->StdNamespace = SemaDeclRefs[0];
5758 if (!SemaObj->StdBadAlloc)
5759 SemaObj->StdBadAlloc = SemaDeclRefs[1];
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005760 }
5761
Peter Collingbourne84bccea2011-02-15 19:46:30 +00005762 if (!FPPragmaOptions.empty()) {
5763 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
5764 SemaObj->FPFeatures.fp_contract = FPPragmaOptions[0];
5765 }
5766
5767 if (!OpenCLExtensions.empty()) {
5768 unsigned I = 0;
5769#define OPENCLEXT(nm) SemaObj->OpenCLFeatures.nm = OpenCLExtensions[I++];
5770#include "clang/Basic/OpenCLExtensions.def"
5771
5772 assert(OpenCLExtensions.size() == I && "Wrong number of OPENCL_EXTENSIONS");
5773 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00005774}
5775
Douglas Gregor211f6e82011-08-20 04:39:52 +00005776IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00005777 // Note that we are loading an identifier.
5778 Deserializing AnIdentifier(this);
5779
Douglas Gregor057df202012-01-18 20:56:22 +00005780 IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart),
5781 /*PriorGeneration=*/0);
Douglas Gregor211f6e82011-08-20 04:39:52 +00005782 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005783 IdentifierInfo *II = Visitor.getIdentifierInfo();
Douglas Gregor057df202012-01-18 20:56:22 +00005784 markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005785 return II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00005786}
5787
Douglas Gregor95f42922010-10-14 22:11:03 +00005788namespace clang {
5789 /// \brief An identifier-lookup iterator that enumerates all of the
5790 /// identifiers stored within a set of AST files.
5791 class ASTIdentifierIterator : public IdentifierIterator {
5792 /// \brief The AST reader whose identifiers are being enumerated.
5793 const ASTReader &Reader;
5794
5795 /// \brief The current index into the chain of AST files stored in
5796 /// the AST reader.
5797 unsigned Index;
5798
5799 /// \brief The current position within the identifier lookup table
5800 /// of the current AST file.
5801 ASTIdentifierLookupTable::key_iterator Current;
5802
5803 /// \brief The end position within the identifier lookup table of
5804 /// the current AST file.
5805 ASTIdentifierLookupTable::key_iterator End;
5806
5807 public:
5808 explicit ASTIdentifierIterator(const ASTReader &Reader);
5809
Chris Lattner5f9e2722011-07-23 10:55:15 +00005810 virtual StringRef Next();
Douglas Gregor95f42922010-10-14 22:11:03 +00005811 };
5812}
5813
5814ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005815 : Reader(Reader), Index(Reader.ModuleMgr.size() - 1) {
Douglas Gregor95f42922010-10-14 22:11:03 +00005816 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005817 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005818 Current = IdTable->key_begin();
5819 End = IdTable->key_end();
5820}
5821
Chris Lattner5f9e2722011-07-23 10:55:15 +00005822StringRef ASTIdentifierIterator::Next() {
Douglas Gregor95f42922010-10-14 22:11:03 +00005823 while (Current == End) {
5824 // If we have exhausted all of our AST files, we're done.
5825 if (Index == 0)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005826 return StringRef();
Douglas Gregor95f42922010-10-14 22:11:03 +00005827
5828 --Index;
5829 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005830 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].
5831 IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005832 Current = IdTable->key_begin();
5833 End = IdTable->key_end();
5834 }
5835
5836 // We have any identifiers remaining in the current AST file; return
5837 // the next one.
5838 std::pair<const char*, unsigned> Key = *Current;
5839 ++Current;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005840 return StringRef(Key.first, Key.second);
Douglas Gregor95f42922010-10-14 22:11:03 +00005841}
5842
5843IdentifierIterator *ASTReader::getIdentifiers() const {
5844 return new ASTIdentifierIterator(*this);
5845}
5846
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005847namespace clang { namespace serialization {
5848 class ReadMethodPoolVisitor {
5849 ASTReader &Reader;
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005850 Selector Sel;
5851 unsigned PriorGeneration;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005852 llvm::SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
5853 llvm::SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005854
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005855 public:
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005856 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
5857 unsigned PriorGeneration)
5858 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) { }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005859
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005860 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005861 ReadMethodPoolVisitor *This
5862 = static_cast<ReadMethodPoolVisitor *>(UserData);
5863
5864 if (!M.SelectorLookupTable)
5865 return false;
5866
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005867 // If we've already searched this module file, skip it now.
5868 if (M.Generation <= This->PriorGeneration)
5869 return true;
5870
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005871 ASTSelectorLookupTable *PoolTable
5872 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
5873 ASTSelectorLookupTable::iterator Pos = PoolTable->find(This->Sel);
5874 if (Pos == PoolTable->end())
5875 return false;
5876
5877 ++This->Reader.NumSelectorsRead;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005878 // FIXME: Not quite happy with the statistics here. We probably should
5879 // disable this tracking when called via LoadSelector.
5880 // Also, should entries without methods count as misses?
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005881 ++This->Reader.NumMethodPoolEntriesRead;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005882 ASTSelectorLookupTrait::data_type Data = *Pos;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005883 if (This->Reader.DeserializationListener)
5884 This->Reader.DeserializationListener->SelectorRead(Data.ID,
5885 This->Sel);
5886
5887 This->InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
5888 This->FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
5889 return true;
Sebastian Redl725cd962010-08-04 20:40:17 +00005890 }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005891
5892 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005893 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
5894 return InstanceMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005895 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005896
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005897 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005898 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
5899 return FactoryMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005900 }
5901 };
5902} } // end namespace clang::serialization
5903
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005904/// \brief Add the given set of methods to the method list.
5905static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
5906 ObjCMethodList &List) {
5907 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
5908 S.addMethodToGlobalList(&List, Methods[I]);
5909 }
5910}
5911
5912void ASTReader::ReadMethodPool(Selector Sel) {
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005913 // Get the selector generation and update it to the current generation.
5914 unsigned &Generation = SelectorGeneration[Sel];
5915 unsigned PriorGeneration = Generation;
5916 Generation = CurrentGeneration;
5917
5918 // Search for methods defined with this selector.
5919 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005920 ModuleMgr.visit(&ReadMethodPoolVisitor::visit, &Visitor);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005921
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005922 if (Visitor.getInstanceMethods().empty() &&
5923 Visitor.getFactoryMethods().empty()) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005924 ++NumMethodPoolMisses;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005925 return;
5926 }
5927
5928 if (!getSema())
5929 return;
5930
5931 Sema &S = *getSema();
5932 Sema::GlobalMethodPool::iterator Pos
5933 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
5934
5935 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
5936 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005937}
5938
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005939void ASTReader::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00005940 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005941 Namespaces.clear();
5942
5943 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
5944 if (NamespaceDecl *Namespace
5945 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
5946 Namespaces.push_back(Namespace);
5947 }
5948}
5949
Douglas Gregora8623202011-07-27 20:58:46 +00005950void ASTReader::ReadTentativeDefinitions(
5951 SmallVectorImpl<VarDecl *> &TentativeDefs) {
5952 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
5953 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
5954 if (Var)
5955 TentativeDefs.push_back(Var);
5956 }
5957 TentativeDefinitions.clear();
5958}
5959
Douglas Gregora2ee20a2011-07-27 21:45:57 +00005960void ASTReader::ReadUnusedFileScopedDecls(
5961 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
5962 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
5963 DeclaratorDecl *D
5964 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
5965 if (D)
5966 Decls.push_back(D);
5967 }
5968 UnusedFileScopedDecls.clear();
5969}
5970
Douglas Gregor0129b562011-07-27 21:57:17 +00005971void ASTReader::ReadDelegatingConstructors(
5972 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
5973 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
5974 CXXConstructorDecl *D
5975 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
5976 if (D)
5977 Decls.push_back(D);
5978 }
5979 DelegatingCtorDecls.clear();
5980}
5981
Douglas Gregord58a0a52011-07-28 00:39:29 +00005982void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
5983 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
5984 TypedefNameDecl *D
5985 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
5986 if (D)
5987 Decls.push_back(D);
5988 }
5989 ExtVectorDecls.clear();
5990}
5991
Douglas Gregora126f172011-07-28 00:53:40 +00005992void ASTReader::ReadDynamicClasses(SmallVectorImpl<CXXRecordDecl *> &Decls) {
5993 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
5994 CXXRecordDecl *D
5995 = dyn_cast_or_null<CXXRecordDecl>(GetDecl(DynamicClasses[I]));
5996 if (D)
5997 Decls.push_back(D);
5998 }
5999 DynamicClasses.clear();
6000}
6001
Douglas Gregorec12ce22011-07-28 14:20:37 +00006002void
6003ASTReader::ReadLocallyScopedExternalDecls(SmallVectorImpl<NamedDecl *> &Decls) {
6004 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
6005 NamedDecl *D
6006 = dyn_cast_or_null<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
6007 if (D)
6008 Decls.push_back(D);
6009 }
6010 LocallyScopedExternalDecls.clear();
6011}
6012
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00006013void ASTReader::ReadReferencedSelectors(
6014 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {
6015 if (ReferencedSelectorsData.empty())
6016 return;
6017
6018 // If there are @selector references added them to its pool. This is for
6019 // implementation of -Wselector.
6020 unsigned int DataSize = ReferencedSelectorsData.size()-1;
6021 unsigned I = 0;
6022 while (I < DataSize) {
6023 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
6024 SourceLocation SelLoc
6025 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
6026 Sels.push_back(std::make_pair(Sel, SelLoc));
6027 }
6028 ReferencedSelectorsData.clear();
6029}
6030
Douglas Gregor31e37b22011-07-28 18:09:57 +00006031void ASTReader::ReadWeakUndeclaredIdentifiers(
6032 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WeakIDs) {
6033 if (WeakUndeclaredIdentifiers.empty())
6034 return;
6035
6036 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
6037 IdentifierInfo *WeakId
6038 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
6039 IdentifierInfo *AliasId
6040 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
6041 SourceLocation Loc
6042 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
6043 bool Used = WeakUndeclaredIdentifiers[I++];
6044 WeakInfo WI(AliasId, Loc);
6045 WI.setUsed(Used);
6046 WeakIDs.push_back(std::make_pair(WeakId, WI));
6047 }
6048 WeakUndeclaredIdentifiers.clear();
6049}
6050
Douglas Gregordfe65432011-07-28 19:11:31 +00006051void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
6052 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
6053 ExternalVTableUse VT;
6054 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
6055 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
6056 VT.DefinitionRequired = VTableUses[Idx++];
6057 VTables.push_back(VT);
6058 }
6059
6060 VTableUses.clear();
6061}
6062
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00006063void ASTReader::ReadPendingInstantiations(
6064 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation> > &Pending) {
6065 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
6066 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
6067 SourceLocation Loc
6068 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
Axel Naumann39d26c32012-10-02 09:09:43 +00006069
Douglas Gregore5fa3c22012-10-03 18:34:48 +00006070 Pending.push_back(std::make_pair(D, Loc));
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00006071 }
6072 PendingInstantiations.clear();
6073}
6074
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006075void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redle58aa892010-08-04 18:21:41 +00006076 // It would be complicated to avoid reading the methods anyway. So don't.
6077 ReadMethodPool(Sel);
6078}
6079
Douglas Gregor95eab172011-07-28 20:55:49 +00006080void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00006081 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00006082 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00006083 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00006084 if (DeserializationListener)
6085 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregor668c1a42009-04-21 22:25:48 +00006086}
6087
Douglas Gregord89275b2009-07-06 18:54:52 +00006088/// \brief Set the globally-visible declarations associated with the given
6089/// identifier.
6090///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006091/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00006092/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00006093/// them.
6094///
6095/// \param II an IdentifierInfo that refers to one or more globally-visible
6096/// declarations.
6097///
6098/// \param DeclIDs the set of declaration IDs with the name @p II that are
6099/// visible at global scope.
6100///
6101/// \param Nonrecursive should be true to indicate that the caller knows that
6102/// this call is non-recursive, and therefore the globally-visible declarations
6103/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00006104void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006105ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Chris Lattner5f9e2722011-07-23 10:55:15 +00006106 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregord89275b2009-07-06 18:54:52 +00006107 bool Nonrecursive) {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006108 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregord89275b2009-07-06 18:54:52 +00006109 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
6110 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
6111 PII.II = II;
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00006112 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregord89275b2009-07-06 18:54:52 +00006113 return;
6114 }
Mike Stump1eb44332009-09-09 15:08:12 +00006115
Douglas Gregord89275b2009-07-06 18:54:52 +00006116 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
6117 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
6118 if (SemaObj) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00006119 // Introduce this declaration into the translation-unit scope
6120 // and add it to the declaration chain for this identifier, so
6121 // that (unqualified) name lookup will find it.
6122 SemaObj->pushExternalDeclIntoScope(D, II);
Douglas Gregord89275b2009-07-06 18:54:52 +00006123 } else {
6124 // Queue this declaration so that it will be added to the
6125 // translation unit scope and identifier's declaration chain
6126 // once a Sema object is known.
6127 PreloadedDecls.push_back(D);
6128 }
6129 }
6130}
6131
Douglas Gregor95eab172011-07-28 20:55:49 +00006132IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00006133 if (ID == 0)
6134 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00006135
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006136 if (IdentifiersLoaded.empty()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006137 Error("no identifier table in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00006138 return 0;
6139 }
Mike Stump1eb44332009-09-09 15:08:12 +00006140
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006141 ID -= 1;
6142 if (!IdentifiersLoaded[ID]) {
Douglas Gregor67268d02011-07-20 00:59:32 +00006143 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
6144 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006145 ModuleFile *M = I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00006146 unsigned Index = ID - M->BaseIdentifierID;
6147 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
Douglas Gregord6595a42009-04-25 21:04:17 +00006148
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006149 // All of the strings in the AST file are preceded by a 16-bit length.
6150 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00006151 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
6152 // unsigned integers. This is important to avoid integer overflow when
6153 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00006154 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00006155 unsigned StrLen = (((unsigned) StrLenPtr[0])
6156 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006157 IdentifiersLoaded[ID]
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006158 = &PP.getIdentifierTable().get(StringRef(Str, StrLen));
Sebastian Redlf2f0f032010-07-23 23:49:55 +00006159 if (DeserializationListener)
6160 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregorafaf3082009-04-11 00:14:32 +00006161 }
Mike Stump1eb44332009-09-09 15:08:12 +00006162
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00006163 return IdentifiersLoaded[ID];
Douglas Gregor2cf26342009-04-09 22:27:44 +00006164}
6165
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006166IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
Douglas Gregor95eab172011-07-28 20:55:49 +00006167 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
6168}
6169
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006170IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +00006171 if (LocalID < NUM_PREDEF_IDENT_IDS)
6172 return LocalID;
6173
6174 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6175 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
6176 assert(I != M.IdentifierRemap.end()
6177 && "Invalid index into identifier index remap");
6178
6179 return LocalID + I->second;
Douglas Gregor95eab172011-07-28 20:55:49 +00006180}
6181
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006182MacroInfo *ASTReader::getMacro(MacroID ID, MacroInfo *Hint) {
Douglas Gregora8235d62012-10-09 23:05:51 +00006183 if (ID == 0)
6184 return 0;
6185
6186 if (MacrosLoaded.empty()) {
6187 Error("no macro table in AST file");
6188 return 0;
6189 }
6190
6191 ID -= NUM_PREDEF_MACRO_IDS;
6192 if (!MacrosLoaded[ID]) {
6193 GlobalMacroMapType::iterator I
6194 = GlobalMacroMap.find(ID + NUM_PREDEF_MACRO_IDS);
6195 assert(I != GlobalMacroMap.end() && "Corrupted global macro map");
6196 ModuleFile *M = I->second;
6197 unsigned Index = ID - M->BaseMacroID;
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006198 ReadMacroRecord(*M, M->MacroOffsets[Index], Hint);
Douglas Gregora8235d62012-10-09 23:05:51 +00006199 }
6200
6201 return MacrosLoaded[ID];
6202}
6203
6204MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) {
6205 if (LocalID < NUM_PREDEF_MACRO_IDS)
6206 return LocalID;
6207
6208 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6209 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS);
6210 assert(I != M.MacroRemap.end() && "Invalid index into macro index remap");
6211
6212 return LocalID + I->second;
6213}
6214
Douglas Gregor26ced122011-12-01 00:59:36 +00006215serialization::SubmoduleID
6216ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
6217 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
6218 return LocalID;
6219
6220 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6221 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
6222 assert(I != M.SubmoduleRemap.end()
Douglas Gregora8235d62012-10-09 23:05:51 +00006223 && "Invalid index into submodule index remap");
Douglas Gregor26ced122011-12-01 00:59:36 +00006224
6225 return LocalID + I->second;
6226}
6227
6228Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
6229 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
6230 assert(GlobalID == 0 && "Unhandled global submodule ID");
6231 return 0;
6232 }
6233
6234 if (GlobalID > SubmodulesLoaded.size()) {
6235 Error("submodule ID out of range in AST file");
6236 return 0;
6237 }
6238
6239 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
6240}
6241
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006242Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
Douglas Gregor2d2689a2011-07-28 21:16:51 +00006243 return DecodeSelector(getGlobalSelectorID(M, LocalID));
6244}
6245
6246Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006247 if (ID == 0)
6248 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00006249
Sebastian Redl725cd962010-08-04 20:40:17 +00006250 if (ID > SelectorsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00006251 Error("selector ID out of range in AST file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006252 return Selector();
6253 }
Douglas Gregor83941df2009-04-25 17:48:32 +00006254
Sebastian Redl725cd962010-08-04 20:40:17 +00006255 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor83941df2009-04-25 17:48:32 +00006256 // Load this selector from the selector table.
Douglas Gregor96958cb2011-07-20 01:10:58 +00006257 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
6258 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006259 ModuleFile &M = *I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00006260 ASTSelectorLookupTrait Trait(*this, M);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006261 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
Douglas Gregor96958cb2011-07-20 01:10:58 +00006262 SelectorsLoaded[ID - 1] =
Douglas Gregor9827a802011-07-29 00:56:45 +00006263 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
Douglas Gregor96958cb2011-07-20 01:10:58 +00006264 if (DeserializationListener)
6265 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
Douglas Gregor83941df2009-04-25 17:48:32 +00006266 }
6267
Sebastian Redl725cd962010-08-04 20:40:17 +00006268 return SelectorsLoaded[ID - 1];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00006269}
6270
Douglas Gregor8451ec72011-07-28 14:41:43 +00006271Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00006272 return DecodeSelector(ID);
6273}
6274
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006275uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redl725cd962010-08-04 20:40:17 +00006276 // ID 0 (the null selector) is considered an external selector.
6277 return getTotalNumSelectors() + 1;
Douglas Gregor719770d2010-04-06 17:30:22 +00006278}
6279
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006280serialization::SelectorID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006281ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006282 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
6283 return LocalID;
6284
6285 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6286 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
6287 assert(I != M.SelectorRemap.end()
Douglas Gregora8235d62012-10-09 23:05:51 +00006288 && "Invalid index into selector index remap");
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00006289
6290 return LocalID + I->second;
Douglas Gregor8451ec72011-07-28 14:41:43 +00006291}
6292
Mike Stump1eb44332009-09-09 15:08:12 +00006293DeclarationName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006294ASTReader::ReadDeclarationName(ModuleFile &F,
Douglas Gregor393f2492011-07-22 00:38:23 +00006295 const RecordData &Record, unsigned &Idx) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00006296 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
6297 switch (Kind) {
6298 case DeclarationName::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +00006299 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006300
6301 case DeclarationName::ObjCZeroArgSelector:
6302 case DeclarationName::ObjCOneArgSelector:
6303 case DeclarationName::ObjCMultiArgSelector:
Douglas Gregor2d2689a2011-07-28 21:16:51 +00006304 return DeclarationName(ReadSelector(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006305
6306 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006307 return Context.DeclarationNames.getCXXConstructorName(
6308 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006309
6310 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006311 return Context.DeclarationNames.getCXXDestructorName(
6312 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006313
6314 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +00006315 return Context.DeclarationNames.getCXXConversionFunctionName(
6316 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00006317
6318 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006319 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00006320 (OverloadedOperatorKind)Record[Idx++]);
6321
Sean Hunt3e518bd2009-11-29 07:34:05 +00006322 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00006323 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor95eab172011-07-28 20:55:49 +00006324 GetIdentifierInfo(F, Record, Idx));
Sean Hunt3e518bd2009-11-29 07:34:05 +00006325
Douglas Gregor2cf26342009-04-09 22:27:44 +00006326 case DeclarationName::CXXUsingDirective:
6327 return DeclarationName::getUsingDirectiveName();
6328 }
6329
David Blaikie7530c032012-01-17 06:56:22 +00006330 llvm_unreachable("Invalid NameKind!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00006331}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006332
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006333void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006334 DeclarationNameLoc &DNLoc,
6335 DeclarationName Name,
6336 const RecordData &Record, unsigned &Idx) {
6337 switch (Name.getNameKind()) {
6338 case DeclarationName::CXXConstructorName:
6339 case DeclarationName::CXXDestructorName:
6340 case DeclarationName::CXXConversionFunctionName:
6341 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
6342 break;
6343
6344 case DeclarationName::CXXOperatorName:
6345 DNLoc.CXXOperatorName.BeginOpNameLoc
6346 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6347 DNLoc.CXXOperatorName.EndOpNameLoc
6348 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6349 break;
6350
6351 case DeclarationName::CXXLiteralOperatorName:
6352 DNLoc.CXXLiteralOperatorName.OpNameLoc
6353 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
6354 break;
6355
6356 case DeclarationName::Identifier:
6357 case DeclarationName::ObjCZeroArgSelector:
6358 case DeclarationName::ObjCOneArgSelector:
6359 case DeclarationName::ObjCMultiArgSelector:
6360 case DeclarationName::CXXUsingDirective:
6361 break;
6362 }
6363}
6364
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006365void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006366 DeclarationNameInfo &NameInfo,
6367 const RecordData &Record, unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00006368 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006369 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
6370 DeclarationNameLoc DNLoc;
6371 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
6372 NameInfo.setInfo(DNLoc);
6373}
6374
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006375void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006376 const RecordData &Record, unsigned &Idx) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00006377 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006378 unsigned NumTPLists = Record[Idx++];
6379 Info.NumTemplParamLists = NumTPLists;
6380 if (NumTPLists) {
Douglas Gregor35942772011-09-09 21:34:22 +00006381 Info.TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00006382 for (unsigned i=0; i != NumTPLists; ++i)
6383 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
6384 }
6385}
6386
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006387TemplateName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006388ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006389 unsigned &Idx) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00006390 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006391 switch (Kind) {
6392 case TemplateName::Template:
Douglas Gregor409448c2011-07-21 22:35:25 +00006393 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006394
6395 case TemplateName::OverloadedTemplate: {
6396 unsigned size = Record[Idx++];
6397 UnresolvedSet<8> Decls;
6398 while (size--)
Douglas Gregor409448c2011-07-21 22:35:25 +00006399 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006400
Douglas Gregor35942772011-09-09 21:34:22 +00006401 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006402 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006403
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006404 case TemplateName::QualifiedTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006405 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006406 bool hasTemplKeyword = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00006407 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006408 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006409 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006410
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006411 case TemplateName::DependentTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006412 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006413 if (Record[Idx++]) // isIdentifier
Douglas Gregor35942772011-09-09 21:34:22 +00006414 return Context.getDependentTemplateName(NNS,
Douglas Gregor95eab172011-07-28 20:55:49 +00006415 GetIdentifierInfo(F, Record,
6416 Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00006417 return Context.getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00006418 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006419 }
John McCall14606042011-06-30 08:33:18 +00006420
6421 case TemplateName::SubstTemplateTemplateParm: {
6422 TemplateTemplateParmDecl *param
Douglas Gregor409448c2011-07-21 22:35:25 +00006423 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
John McCall14606042011-06-30 08:33:18 +00006424 if (!param) return TemplateName();
6425 TemplateName replacement = ReadTemplateName(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006426 return Context.getSubstTemplateTemplateParm(param, replacement);
John McCall14606042011-06-30 08:33:18 +00006427 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006428
6429 case TemplateName::SubstTemplateTemplateParmPack: {
6430 TemplateTemplateParmDecl *Param
Douglas Gregor409448c2011-07-21 22:35:25 +00006431 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006432 if (!Param)
6433 return TemplateName();
6434
6435 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
6436 if (ArgPack.getKind() != TemplateArgument::Pack)
6437 return TemplateName();
6438
Douglas Gregor35942772011-09-09 21:34:22 +00006439 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006440 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006441 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006442
David Blaikieb219cfc2011-09-23 05:06:16 +00006443 llvm_unreachable("Unhandled template name kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006444}
6445
6446TemplateArgument
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006447ASTReader::ReadTemplateArgument(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00006448 const RecordData &Record, unsigned &Idx) {
Douglas Gregora7fc9012011-01-05 18:58:31 +00006449 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
6450 switch (Kind) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006451 case TemplateArgument::Null:
6452 return TemplateArgument();
6453 case TemplateArgument::Type:
Douglas Gregor393f2492011-07-22 00:38:23 +00006454 return TemplateArgument(readType(F, Record, Idx));
Eli Friedmand7a6b162012-09-26 02:36:12 +00006455 case TemplateArgument::Declaration: {
6456 ValueDecl *D = ReadDeclAs<ValueDecl>(F, Record, Idx);
6457 bool ForReferenceParam = Record[Idx++];
6458 return TemplateArgument(D, ForReferenceParam);
6459 }
6460 case TemplateArgument::NullPtr:
6461 return TemplateArgument(readType(F, Record, Idx), /*isNullPtr*/true);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00006462 case TemplateArgument::Integral: {
6463 llvm::APSInt Value = ReadAPSInt(Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00006464 QualType T = readType(F, Record, Idx);
Benjamin Kramer85524372012-06-07 15:09:51 +00006465 return TemplateArgument(Context, Value, T);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00006466 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00006467 case TemplateArgument::Template:
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006468 return TemplateArgument(ReadTemplateName(F, Record, Idx));
Douglas Gregora7fc9012011-01-05 18:58:31 +00006469 case TemplateArgument::TemplateExpansion: {
Douglas Gregor1aee05d2011-01-15 06:45:20 +00006470 TemplateName Name = ReadTemplateName(F, Record, Idx);
Douglas Gregor2be29f42011-01-14 23:41:42 +00006471 llvm::Optional<unsigned> NumTemplateExpansions;
6472 if (unsigned NumExpansions = Record[Idx++])
6473 NumTemplateExpansions = NumExpansions - 1;
6474 return TemplateArgument(Name, NumTemplateExpansions);
Douglas Gregorba68eca2011-01-05 17:40:24 +00006475 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006476 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00006477 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006478 case TemplateArgument::Pack: {
6479 unsigned NumArgs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006480 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
Douglas Gregor910f8002010-11-07 23:05:16 +00006481 for (unsigned I = 0; I != NumArgs; ++I)
6482 Args[I] = ReadTemplateArgument(F, Record, Idx);
6483 return TemplateArgument(Args, NumArgs);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006484 }
6485 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006486
David Blaikieb219cfc2011-09-23 05:06:16 +00006487 llvm_unreachable("Unhandled template argument kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006488}
6489
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006490TemplateParameterList *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006491ASTReader::ReadTemplateParameterList(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00006492 const RecordData &Record, unsigned &Idx) {
6493 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
6494 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
6495 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006496
6497 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00006498 SmallVector<NamedDecl *, 16> Params;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006499 Params.reserve(NumParams);
6500 while (NumParams--)
Douglas Gregor409448c2011-07-21 22:35:25 +00006501 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
Michael J. Spencer20249a12010-10-21 03:16:25 +00006502
6503 TemplateParameterList* TemplateParams =
Douglas Gregor35942772011-09-09 21:34:22 +00006504 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006505 Params.data(), Params.size(), RAngleLoc);
6506 return TemplateParams;
6507}
6508
6509void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006510ASTReader::
Chris Lattner5f9e2722011-07-23 10:55:15 +00006511ReadTemplateArgumentList(SmallVector<TemplateArgument, 8> &TemplArgs,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006512 ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006513 unsigned &Idx) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006514 unsigned NumTemplateArgs = Record[Idx++];
6515 TemplArgs.reserve(NumTemplateArgs);
6516 while (NumTemplateArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00006517 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006518}
6519
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006520/// \brief Read a UnresolvedSet structure.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006521void ASTReader::ReadUnresolvedSet(ModuleFile &F, UnresolvedSetImpl &Set,
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006522 const RecordData &Record, unsigned &Idx) {
6523 unsigned NumDecls = Record[Idx++];
6524 while (NumDecls--) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006525 NamedDecl *D = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006526 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
6527 Set.addDecl(D, AS);
6528 }
6529}
6530
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006531CXXBaseSpecifier
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006532ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
Nick Lewycky56062202010-07-26 16:56:01 +00006533 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006534 bool isVirtual = static_cast<bool>(Record[Idx++]);
6535 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
6536 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006537 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00006538 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
6539 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006540 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006541 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006542 EllipsisLoc);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006543 Result.setInheritConstructors(inheritConstructors);
6544 return Result;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006545}
6546
Sean Huntcbb67482011-01-08 20:30:50 +00006547std::pair<CXXCtorInitializer **, unsigned>
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006548ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
Sean Huntcbb67482011-01-08 20:30:50 +00006549 unsigned &Idx) {
6550 CXXCtorInitializer **CtorInitializers = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006551 unsigned NumInitializers = Record[Idx++];
6552 if (NumInitializers) {
Sean Huntcbb67482011-01-08 20:30:50 +00006553 CtorInitializers
Douglas Gregor35942772011-09-09 21:34:22 +00006554 = new (Context) CXXCtorInitializer*[NumInitializers];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006555 for (unsigned i=0; i != NumInitializers; ++i) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006556 TypeSourceInfo *TInfo = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006557 bool IsBaseVirtual = false;
6558 FieldDecl *Member = 0;
Francois Pichet00eb3f92010-12-04 09:14:42 +00006559 IndirectFieldDecl *IndirectMember = 0;
Michael J. Spencer20249a12010-10-21 03:16:25 +00006560
Sean Hunt156b6402011-05-04 01:19:08 +00006561 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
6562 switch (Type) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006563 case CTOR_INITIALIZER_BASE:
6564 TInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006565 IsBaseVirtual = Record[Idx++];
Sean Hunt156b6402011-05-04 01:19:08 +00006566 break;
Douglas Gregor76852c22011-11-01 01:16:03 +00006567
6568 case CTOR_INITIALIZER_DELEGATING:
6569 TInfo = GetTypeSourceInfo(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006570 break;
6571
6572 case CTOR_INITIALIZER_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006573 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006574 break;
6575
6576 case CTOR_INITIALIZER_INDIRECT_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006577 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006578 break;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006579 }
Sean Hunt156b6402011-05-04 01:19:08 +00006580
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00006581 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00006582 Expr *Init = ReadExpr(F);
Sebastian Redlc3632732010-10-05 15:59:54 +00006583 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
6584 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006585 bool IsWritten = Record[Idx++];
6586 unsigned SourceOrderOrNumArrayIndices;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006587 SmallVector<VarDecl *, 8> Indices;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006588 if (IsWritten) {
6589 SourceOrderOrNumArrayIndices = Record[Idx++];
6590 } else {
6591 SourceOrderOrNumArrayIndices = Record[Idx++];
6592 Indices.reserve(SourceOrderOrNumArrayIndices);
6593 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
Douglas Gregor409448c2011-07-21 22:35:25 +00006594 Indices.push_back(ReadDeclAs<VarDecl>(F, Record, Idx));
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006595 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006596
Sean Huntcbb67482011-01-08 20:30:50 +00006597 CXXCtorInitializer *BOMInit;
Sean Hunt156b6402011-05-04 01:19:08 +00006598 if (Type == CTOR_INITIALIZER_BASE) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006599 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, IsBaseVirtual,
Sean Huntcbb67482011-01-08 20:30:50 +00006600 LParenLoc, Init, RParenLoc,
6601 MemberOrEllipsisLoc);
Sean Hunt156b6402011-05-04 01:19:08 +00006602 } else if (Type == CTOR_INITIALIZER_DELEGATING) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006603 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, LParenLoc,
6604 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006605 } else if (IsWritten) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00006606 if (Member)
Douglas Gregor35942772011-09-09 21:34:22 +00006607 BOMInit = new (Context) CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006608 LParenLoc, Init, RParenLoc);
Francois Pichet00eb3f92010-12-04 09:14:42 +00006609 else
Douglas Gregor35942772011-09-09 21:34:22 +00006610 BOMInit = new (Context) CXXCtorInitializer(Context, IndirectMember,
Sean Huntcbb67482011-01-08 20:30:50 +00006611 MemberOrEllipsisLoc, LParenLoc,
6612 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006613 } else {
Douglas Gregor35942772011-09-09 21:34:22 +00006614 BOMInit = CXXCtorInitializer::Create(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006615 LParenLoc, Init, RParenLoc,
6616 Indices.data(), Indices.size());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006617 }
6618
Argyrios Kyrtzidisf84cde12010-09-06 19:04:27 +00006619 if (IsWritten)
6620 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Sean Huntcbb67482011-01-08 20:30:50 +00006621 CtorInitializers[i] = BOMInit;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006622 }
6623 }
6624
Sean Huntcbb67482011-01-08 20:30:50 +00006625 return std::make_pair(CtorInitializers, NumInitializers);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006626}
6627
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006628NestedNameSpecifier *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006629ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006630 const RecordData &Record, unsigned &Idx) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006631 unsigned N = Record[Idx++];
6632 NestedNameSpecifier *NNS = 0, *Prev = 0;
6633 for (unsigned I = 0; I != N; ++I) {
6634 NestedNameSpecifier::SpecifierKind Kind
6635 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6636 switch (Kind) {
6637 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006638 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006639 NNS = NestedNameSpecifier::Create(Context, Prev, II);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006640 break;
6641 }
6642
6643 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006644 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006645 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006646 break;
6647 }
6648
Douglas Gregor14aba762011-02-24 02:36:08 +00006649 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006650 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006651 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
Douglas Gregor14aba762011-02-24 02:36:08 +00006652 break;
6653 }
6654
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006655 case NestedNameSpecifier::TypeSpec:
6656 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregor393f2492011-07-22 00:38:23 +00006657 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
Douglas Gregor1ab55e92010-12-10 17:03:06 +00006658 if (!T)
6659 return 0;
6660
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006661 bool Template = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006662 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006663 break;
6664 }
6665
6666 case NestedNameSpecifier::Global: {
Douglas Gregor35942772011-09-09 21:34:22 +00006667 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006668 // No associated value, and there can't be a prefix.
6669 break;
6670 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006671 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00006672 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006673 }
6674 return NNS;
6675}
6676
Douglas Gregordc355712011-02-25 00:36:19 +00006677NestedNameSpecifierLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006678ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Douglas Gregordc355712011-02-25 00:36:19 +00006679 unsigned &Idx) {
6680 unsigned N = Record[Idx++];
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006681 NestedNameSpecifierLocBuilder Builder;
Douglas Gregordc355712011-02-25 00:36:19 +00006682 for (unsigned I = 0; I != N; ++I) {
6683 NestedNameSpecifier::SpecifierKind Kind
6684 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6685 switch (Kind) {
6686 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006687 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006688 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006689 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006690 break;
6691 }
6692
6693 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006694 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006695 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006696 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006697 break;
6698 }
6699
6700 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006701 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006702 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006703 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006704 break;
6705 }
6706
6707 case NestedNameSpecifier::TypeSpec:
6708 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregordc355712011-02-25 00:36:19 +00006709 bool Template = Record[Idx++];
6710 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
6711 if (!T)
6712 return NestedNameSpecifierLoc();
Douglas Gregordc355712011-02-25 00:36:19 +00006713 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006714
6715 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
Douglas Gregor35942772011-09-09 21:34:22 +00006716 Builder.Extend(Context,
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006717 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
6718 T->getTypeLoc(), ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006719 break;
6720 }
6721
6722 case NestedNameSpecifier::Global: {
Douglas Gregordc355712011-02-25 00:36:19 +00006723 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006724 Builder.MakeGlobal(Context, ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006725 break;
6726 }
6727 }
Douglas Gregordc355712011-02-25 00:36:19 +00006728 }
6729
Douglas Gregor35942772011-09-09 21:34:22 +00006730 return Builder.getWithLocInContext(Context);
Douglas Gregordc355712011-02-25 00:36:19 +00006731}
6732
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006733SourceRange
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006734ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006735 unsigned &Idx) {
6736 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
6737 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar8ee59392010-06-02 15:47:10 +00006738 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006739}
6740
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006741/// \brief Read an integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006742llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006743 unsigned BitWidth = Record[Idx++];
6744 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6745 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6746 Idx += NumWords;
6747 return Result;
6748}
6749
6750/// \brief Read a signed integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006751llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006752 bool isUnsigned = Record[Idx++];
6753 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
6754}
6755
Douglas Gregor17fc2232009-04-14 21:55:33 +00006756/// \brief Read a floating-point value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006757llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00006758 return llvm::APFloat(ReadAPInt(Record, Idx));
6759}
6760
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006761// \brief Read a string
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006762std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006763 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00006764 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006765 Idx += Len;
6766 return Result;
6767}
6768
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006769VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
6770 unsigned &Idx) {
6771 unsigned Major = Record[Idx++];
6772 unsigned Minor = Record[Idx++];
6773 unsigned Subminor = Record[Idx++];
6774 if (Minor == 0)
6775 return VersionTuple(Major);
6776 if (Subminor == 0)
6777 return VersionTuple(Major, Minor - 1);
6778 return VersionTuple(Major, Minor - 1, Subminor - 1);
6779}
6780
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006781CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006782 const RecordData &Record,
Chris Lattnerd2598362010-05-10 00:25:06 +00006783 unsigned &Idx) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006784 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006785 return CXXTemporary::Create(Context, Decl);
Chris Lattnerd2598362010-05-10 00:25:06 +00006786}
6787
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006788DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00006789 return Diag(SourceLocation(), DiagID);
6790}
6791
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006792DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00006793 return Diags.Report(Loc, DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006794}
Douglas Gregor025452f2009-04-17 00:04:06 +00006795
Douglas Gregor668c1a42009-04-21 22:25:48 +00006796/// \brief Retrieve the identifier table associated with the
6797/// preprocessor.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006798IdentifierTable &ASTReader::getIdentifierTable() {
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006799 return PP.getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00006800}
6801
Douglas Gregor025452f2009-04-17 00:04:06 +00006802/// \brief Record that the given ID maps to the given switch-case
6803/// statement.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006804void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006805 assert((*CurrSwitchCaseStmts)[ID] == 0 &&
6806 "Already have a SwitchCase with this ID");
6807 (*CurrSwitchCaseStmts)[ID] = SC;
Douglas Gregor025452f2009-04-17 00:04:06 +00006808}
6809
6810/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006811SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006812 assert((*CurrSwitchCaseStmts)[ID] != 0 && "No SwitchCase with this ID");
6813 return (*CurrSwitchCaseStmts)[ID];
Douglas Gregor025452f2009-04-17 00:04:06 +00006814}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00006815
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006816void ASTReader::ClearSwitchCaseIDs() {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006817 CurrSwitchCaseStmts->clear();
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006818}
6819
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006820void ASTReader::ReadComments() {
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006821 std::vector<RawComment *> Comments;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006822 for (SmallVectorImpl<std::pair<llvm::BitstreamCursor,
6823 serialization::ModuleFile *> >::iterator
6824 I = CommentsCursors.begin(),
6825 E = CommentsCursors.end();
6826 I != E; ++I) {
6827 llvm::BitstreamCursor &Cursor = I->first;
6828 serialization::ModuleFile &F = *I->second;
6829 SavedStreamPosition SavedPosition(Cursor);
6830
6831 RecordData Record;
6832 while (true) {
6833 unsigned Code = Cursor.ReadCode();
6834 if (Code == llvm::bitc::END_BLOCK)
6835 break;
6836
6837 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
6838 // No known subblocks, always skip them.
6839 Cursor.ReadSubBlockID();
6840 if (Cursor.SkipBlock()) {
6841 Error("malformed block record in AST file");
6842 return;
6843 }
6844 continue;
6845 }
6846
6847 if (Code == llvm::bitc::DEFINE_ABBREV) {
6848 Cursor.ReadAbbrevRecord();
6849 continue;
6850 }
6851
6852 // Read a record.
6853 Record.clear();
6854 switch ((CommentRecordTypes) Cursor.ReadRecord(Code, Record)) {
Chandler Carruth13691bb2012-06-20 06:47:54 +00006855 case COMMENTS_RAW_COMMENT: {
6856 unsigned Idx = 0;
6857 SourceRange SR = ReadSourceRange(F, Record, Idx);
6858 RawComment::CommentKind Kind =
6859 (RawComment::CommentKind) Record[Idx++];
6860 bool IsTrailingComment = Record[Idx++];
6861 bool IsAlmostTrailingComment = Record[Idx++];
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006862 Comments.push_back(new (Context) RawComment(SR, Kind,
6863 IsTrailingComment,
6864 IsAlmostTrailingComment));
Chandler Carruth13691bb2012-06-20 06:47:54 +00006865 break;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006866 }
6867 }
6868 }
6869 }
6870 Context.Comments.addCommentsToFront(Comments);
6871}
6872
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006873void ASTReader::finishPendingActions() {
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00006874 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty() ||
6875 !PendingMacroIDs.empty()) {
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006876 // If any identifiers with corresponding top-level declarations have
6877 // been loaded, load those declarations now.
6878 while (!PendingIdentifierInfos.empty()) {
6879 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
6880 PendingIdentifierInfos.front().DeclIDs, true);
6881 PendingIdentifierInfos.pop_front();
6882 }
6883
Douglas Gregora1be2782011-12-17 23:38:30 +00006884 // Load pending declaration chains.
6885 for (unsigned I = 0; I != PendingDeclChains.size(); ++I) {
6886 loadPendingDeclChain(PendingDeclChains[I]);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006887 PendingDeclChainsKnown.erase(PendingDeclChains[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00006888 }
6889 PendingDeclChains.clear();
Douglas Gregor6c6c54a2012-10-11 00:46:49 +00006890
6891 // Load any pending macro definitions.
Douglas Gregore9652bf2012-10-11 17:31:34 +00006892 for (unsigned I = 0; I != PendingMacroIDs.size(); ++I) {
6893 // FIXME: std::move here
6894 SmallVector<MacroID, 2> GlobalIDs = PendingMacroIDs.begin()[I].second;
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006895 MacroInfo *Hint = 0;
Douglas Gregore9652bf2012-10-11 17:31:34 +00006896 for (unsigned IDIdx = 0, NumIDs = GlobalIDs.size(); IDIdx != NumIDs;
6897 ++IDIdx) {
Douglas Gregor3ab50fe2012-10-11 17:41:54 +00006898 Hint = getMacro(GlobalIDs[IDIdx], Hint);
Douglas Gregore9652bf2012-10-11 17:31:34 +00006899 }
6900 }
6901 PendingMacroIDs.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006902 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006903
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006904 // If we deserialized any C++ or Objective-C class definitions, any
6905 // Objective-C protocol definitions, or any redeclarable templates, make sure
6906 // that all redeclarations point to the definitions. Note that this can only
6907 // happen now, after the redeclaration chains have been fully wired.
Douglas Gregorfc529f72011-12-19 19:00:47 +00006908 for (llvm::SmallPtrSet<Decl *, 4>::iterator D = PendingDefinitions.begin(),
6909 DEnd = PendingDefinitions.end();
6910 D != DEnd; ++D) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006911 if (TagDecl *TD = dyn_cast<TagDecl>(*D)) {
6912 if (const TagType *TagT = dyn_cast<TagType>(TD->TypeForDecl)) {
6913 // Make sure that the TagType points at the definition.
6914 const_cast<TagType*>(TagT)->decl = TD;
6915 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006916
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006917 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(*D)) {
6918 for (CXXRecordDecl::redecl_iterator R = RD->redecls_begin(),
6919 REnd = RD->redecls_end();
6920 R != REnd; ++R)
6921 cast<CXXRecordDecl>(*R)->DefinitionData = RD->DefinitionData;
6922
6923 }
6924
Douglas Gregorfc529f72011-12-19 19:00:47 +00006925 continue;
6926 }
6927
Douglas Gregor1d784b22012-01-01 19:51:50 +00006928 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(*D)) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006929 // Make sure that the ObjCInterfaceType points at the definition.
6930 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
6931 ->Decl = ID;
6932
Douglas Gregor1d784b22012-01-01 19:51:50 +00006933 for (ObjCInterfaceDecl::redecl_iterator R = ID->redecls_begin(),
6934 REnd = ID->redecls_end();
6935 R != REnd; ++R)
6936 R->Data = ID->Data;
6937
6938 continue;
6939 }
6940
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006941 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(*D)) {
6942 for (ObjCProtocolDecl::redecl_iterator R = PD->redecls_begin(),
6943 REnd = PD->redecls_end();
6944 R != REnd; ++R)
6945 R->Data = PD->Data;
6946
6947 continue;
6948 }
6949
6950 RedeclarableTemplateDecl *RTD
6951 = cast<RedeclarableTemplateDecl>(*D)->getCanonicalDecl();
6952 for (RedeclarableTemplateDecl::redecl_iterator R = RTD->redecls_begin(),
6953 REnd = RTD->redecls_end();
Douglas Gregorfc529f72011-12-19 19:00:47 +00006954 R != REnd; ++R)
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006955 R->Common = RTD->Common;
Douglas Gregorfc529f72011-12-19 19:00:47 +00006956 }
6957 PendingDefinitions.clear();
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006958
6959 // Load the bodies of any functions or methods we've encountered. We do
6960 // this now (delayed) so that we can be sure that the declaration chains
6961 // have been fully wired up.
Douglas Gregorce12d2f2012-10-09 17:50:23 +00006962 for (PendingBodiesMap::iterator PB = PendingBodies.begin(),
6963 PBEnd = PendingBodies.end();
Douglas Gregor5456b0fe2012-10-09 17:21:28 +00006964 PB != PBEnd; ++PB) {
6965 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(PB->first)) {
6966 // FIXME: Check for =delete/=default?
6967 // FIXME: Complain about ODR violations here?
6968 if (!getContext().getLangOpts().Modules || !FD->hasBody())
6969 FD->setLazyBody(PB->second);
6970 continue;
6971 }
6972
6973 ObjCMethodDecl *MD = cast<ObjCMethodDecl>(PB->first);
6974 if (!getContext().getLangOpts().Modules || !MD->hasBody())
6975 MD->setLazyBody(PB->second);
6976 }
6977 PendingBodies.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006978}
6979
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006980void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006981 assert(NumCurrentElementsDeserializing &&
6982 "FinishedDeserializing not paired with StartedDeserializing");
6983 if (NumCurrentElementsDeserializing == 1) {
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006984 // We decrease NumCurrentElementsDeserializing only after pending actions
6985 // are finished, to avoid recursively re-calling finishPendingActions().
6986 finishPendingActions();
6987 }
6988 --NumCurrentElementsDeserializing;
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006989
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006990 if (NumCurrentElementsDeserializing == 0 &&
6991 Consumer && !PassingDeclsToConsumer) {
6992 // Guard variable to avoid recursively redoing the process of passing
6993 // decls to consumer.
6994 SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
6995 true);
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006996
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006997 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00006998 // We are not in recursive loading, so it's safe to pass the "interesting"
6999 // decls to the consumer.
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00007000 Decl *D = InterestingDecls.front();
7001 InterestingDecls.pop_front();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00007002 PassInterestingDeclToConsumer(D);
7003 }
Douglas Gregord89275b2009-07-06 18:54:52 +00007004 }
Douglas Gregord89275b2009-07-06 18:54:52 +00007005}
Douglas Gregor501c1032010-08-19 00:28:17 +00007006
Douglas Gregorf8a1e512011-09-02 00:26:20 +00007007ASTReader::ASTReader(Preprocessor &PP, ASTContext &Context,
Douglas Gregor832d6202011-07-22 16:35:34 +00007008 StringRef isysroot, bool DisableValidation,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00007009 bool DisableStatCache, bool AllowASTWithCompilerErrors)
Sebastian Redle1dde812010-08-24 00:50:04 +00007010 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
7011 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00007012 Diags(PP.getDiagnostics()), SemaObj(0), PP(PP), Context(Context),
Argyrios Kyrtzidisd64c26f2012-10-03 01:58:42 +00007013 Consumer(0), ModuleMgr(PP.getFileManager()),
Douglas Gregorcaed0602012-10-18 21:31:35 +00007014 isysroot(isysroot), DisableValidation(DisableValidation),
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00007015 DisableStatCache(DisableStatCache),
7016 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00007017 CurrentGeneration(0), CurrSwitchCaseStmts(&SwitchCaseStmts),
7018 NumStatHits(0), NumStatMisses(0),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00007019 NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00007020 NumStatementsRead(0), TotalNumStatements(0), NumMacrosRead(0),
7021 TotalNumMacros(0), NumSelectorsRead(0), NumMethodPoolEntriesRead(0),
7022 NumMethodPoolMisses(0), TotalNumMethodPoolEntries(0),
7023 NumLexicalDeclContextsRead(0), TotalLexicalDeclContexts(0),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00007024 NumVisibleDeclContextsRead(0), TotalVisibleDeclContexts(0),
7025 TotalModulesSizeInBits(0), NumCurrentElementsDeserializing(0),
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00007026 PassingDeclsToConsumer(false),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00007027 NumCXXBaseSpecifiersLoaded(0)
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00007028{
Douglas Gregorf62d43d2011-07-19 16:10:42 +00007029 SourceMgr.setExternalSLocEntrySource(this);
Sebastian Redle1dde812010-08-24 00:50:04 +00007030}
7031
Sebastian Redle1dde812010-08-24 00:50:04 +00007032ASTReader::~ASTReader() {
Sebastian Redle1dde812010-08-24 00:50:04 +00007033 for (DeclContextVisibleUpdatesPending::iterator
7034 I = PendingVisibleUpdates.begin(),
7035 E = PendingVisibleUpdates.end();
7036 I != E; ++I) {
7037 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
7038 F = I->second.end();
7039 J != F; ++J)
Benjamin Kramerb1758c62012-04-15 12:36:49 +00007040 delete J->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00007041 }
7042}