blob: f91b66cf54765b54905832c6c5d233fbb6316260 [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"
Argyrios Kyrtzidisb2c60b02012-03-01 19:45:56 +000030#include "llvm/Support/SaveAndRestore.h"
Chris Lattner42d42b52009-04-10 21:41:48 +000031#include "clang/Lex/MacroInfo.h"
Douglas Gregor6a5a23f2010-03-19 21:51:54 +000032#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000033#include "clang/Lex/Preprocessor.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000034#include "clang/Lex/HeaderSearch.h"
Douglas Gregor668c1a42009-04-21 22:25:48 +000035#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000036#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000037#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000038#include "clang/Basic/FileManager.h"
Chris Lattner10e286a2010-11-23 19:19:34 +000039#include "clang/Basic/FileSystemStatCache.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000040#include "clang/Basic/TargetInfo.h"
Douglas Gregor445e23e2009-10-05 21:07:28 +000041#include "clang/Basic/Version.h"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000042#include "clang/Basic/VersionTuple.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000043#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000044#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000045#include "llvm/Support/MemoryBuffer.h"
John McCall833ca992009-10-29 08:12:44 +000046#include "llvm/Support/ErrorHandling.h"
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000047#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000048#include "llvm/Support/Path.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000049#include "llvm/Support/system_error.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000050#include <algorithm>
Douglas Gregore721f952009-04-28 18:58:38 +000051#include <iterator>
Douglas Gregor2cf26342009-04-09 22:27:44 +000052#include <cstdio>
Douglas Gregor4fed3f42009-04-27 18:38:38 +000053#include <sys/stat.h>
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000054
Douglas Gregor2cf26342009-04-09 22:27:44 +000055using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000056using namespace clang::serialization;
Douglas Gregor98339b92011-08-25 20:47:51 +000057using namespace clang::serialization::reader;
Douglas Gregor2cf26342009-04-09 22:27:44 +000058
59//===----------------------------------------------------------------------===//
Sebastian Redl3c7f4132010-08-18 23:57:06 +000060// PCH validator implementation
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000061//===----------------------------------------------------------------------===//
62
Sebastian Redl571db7f2010-08-18 23:56:56 +000063ASTReaderListener::~ASTReaderListener() {}
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000064
65bool
66PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts) {
David Blaikie4e4d0842012-03-11 07:00:24 +000067 const LangOptions &PPLangOpts = PP.getLangOpts();
Douglas Gregor7d5e81b2011-09-13 18:26:39 +000068
69#define LANGOPT(Name, Bits, Default, Description) \
70 if (PPLangOpts.Name != LangOpts.Name) { \
71 Reader.Diag(diag::err_pch_langopt_mismatch) \
72 << Description << LangOpts.Name << PPLangOpts.Name; \
73 return true; \
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000074 }
75
Douglas Gregor7d5e81b2011-09-13 18:26:39 +000076#define VALUE_LANGOPT(Name, Bits, Default, Description) \
77 if (PPLangOpts.Name != LangOpts.Name) { \
78 Reader.Diag(diag::err_pch_langopt_value_mismatch) \
79 << Description; \
80 return true; \
81}
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000082
Douglas Gregor7d5e81b2011-09-13 18:26:39 +000083#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
84 if (PPLangOpts.get##Name() != LangOpts.get##Name()) { \
85 Reader.Diag(diag::err_pch_langopt_value_mismatch) \
86 << Description; \
87 return true; \
88 }
89
90#define BENIGN_LANGOPT(Name, Bits, Default, Description)
91#define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
92#include "clang/Basic/LangOptions.def"
93
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000094 return false;
95}
96
Chris Lattner5f9e2722011-07-23 10:55:15 +000097bool PCHValidator::ReadTargetTriple(StringRef Triple) {
Daniel Dunbardc3c0d22009-11-11 00:52:11 +000098 if (Triple == PP.getTargetInfo().getTriple().str())
99 return false;
100
101 Reader.Diag(diag::warn_pch_target_triple)
102 << Triple << PP.getTargetInfo().getTriple().str();
103 return true;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000104}
105
Benjamin Kramer54353f42010-11-25 18:29:30 +0000106namespace {
107 struct EmptyStringRef {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000108 bool operator ()(StringRef r) const { return r.empty(); }
Benjamin Kramer54353f42010-11-25 18:29:30 +0000109 };
110 struct EmptyBlock {
111 bool operator ()(const PCHPredefinesBlock &r) const {return r.Data.empty();}
112 };
113}
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000114
Chris Lattner5f9e2722011-07-23 10:55:15 +0000115static bool EqualConcatenations(SmallVector<StringRef, 2> L,
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000116 PCHPredefinesBlocks R) {
117 // First, sum up the lengths.
118 unsigned LL = 0, RL = 0;
119 for (unsigned I = 0, N = L.size(); I != N; ++I) {
120 LL += L[I].size();
121 }
122 for (unsigned I = 0, N = R.size(); I != N; ++I) {
123 RL += R[I].Data.size();
124 }
125 if (LL != RL)
126 return false;
127 if (LL == 0 && RL == 0)
128 return true;
129
130 // Kick out empty parts, they confuse the algorithm below.
131 L.erase(std::remove_if(L.begin(), L.end(), EmptyStringRef()), L.end());
132 R.erase(std::remove_if(R.begin(), R.end(), EmptyBlock()), R.end());
133
134 // Do it the hard way. At this point, both vectors must be non-empty.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000135 StringRef LR = L[0], RR = R[0].Data;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000136 unsigned LI = 0, RI = 0, LN = L.size(), RN = R.size();
Daniel Dunbarc76c9e02010-07-16 00:00:11 +0000137 (void) RN;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000138 for (;;) {
139 // Compare the current pieces.
140 if (LR.size() == RR.size()) {
141 // If they're the same length, it's pretty easy.
142 if (LR != RR)
143 return false;
144 // Both pieces are done, advance.
145 ++LI;
146 ++RI;
147 // If either string is done, they're both done, since they're the same
148 // length.
149 if (LI == LN) {
150 assert(RI == RN && "Strings not the same length after all?");
151 return true;
152 }
153 LR = L[LI];
154 RR = R[RI].Data;
155 } else if (LR.size() < RR.size()) {
156 // Right piece is longer.
157 if (!RR.startswith(LR))
158 return false;
159 ++LI;
160 assert(LI != LN && "Strings not the same length after all?");
161 RR = RR.substr(LR.size());
162 LR = L[LI];
163 } else {
164 // Left piece is longer.
165 if (!LR.startswith(RR))
166 return false;
167 ++RI;
168 assert(RI != RN && "Strings not the same length after all?");
169 LR = LR.substr(RR.size());
170 RR = R[RI].Data;
171 }
172 }
173}
174
Chris Lattner5f9e2722011-07-23 10:55:15 +0000175static std::pair<FileID, StringRef::size_type>
176FindMacro(const PCHPredefinesBlocks &Buffers, StringRef MacroDef) {
177 std::pair<FileID, StringRef::size_type> Res;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000178 for (unsigned I = 0, N = Buffers.size(); I != N; ++I) {
179 Res.second = Buffers[I].Data.find(MacroDef);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000180 if (Res.second != StringRef::npos) {
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000181 Res.first = Buffers[I].BufferID;
182 break;
183 }
184 }
185 return Res;
186}
187
188bool PCHValidator::ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000189 StringRef OriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000190 std::string &SuggestedPredefines,
191 FileManager &FileMgr) {
Daniel Dunbarc7162932009-11-11 23:58:53 +0000192 // We are in the context of an implicit include, so the predefines buffer will
193 // have a #include entry for the PCH file itself (as normalized by the
194 // preprocessor initialization). Find it and skip over it in the checking
195 // below.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000196 SmallString<256> PCHInclude;
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000197 PCHInclude += "#include \"";
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000198 PCHInclude += HeaderSearch::NormalizeDashIncludePath(OriginalFileName,
199 FileMgr);
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000200 PCHInclude += "\"\n";
Chris Lattner5f9e2722011-07-23 10:55:15 +0000201 std::pair<StringRef,StringRef> Split =
202 StringRef(PP.getPredefines()).split(PCHInclude.str());
203 StringRef Left = Split.first, Right = Split.second;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +0000204 if (Left == PP.getPredefines()) {
205 Error("Missing PCH include entry!");
206 return true;
207 }
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000208
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000209 // If the concatenation of all the PCH buffers is equal to the adjusted
210 // command line, we're done.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000211 SmallVector<StringRef, 2> CommandLine;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000212 CommandLine.push_back(Left);
213 CommandLine.push_back(Right);
214 if (EqualConcatenations(CommandLine, Buffers))
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000215 return false;
216
217 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000219 // The predefines buffers are different. Determine what the differences are,
220 // and whether they require us to reject the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000221 SmallVector<StringRef, 8> PCHLines;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000222 for (unsigned I = 0, N = Buffers.size(); I != N; ++I)
223 Buffers[I].Data.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Daniel Dunbare6750492009-11-13 16:46:11 +0000224
Chris Lattner5f9e2722011-07-23 10:55:15 +0000225 SmallVector<StringRef, 8> CmdLineLines;
Daniel Dunbare6750492009-11-13 16:46:11 +0000226 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000227
228 // Pick out implicit #includes after the PCH and don't consider them for
229 // validation; we will insert them into SuggestedPredefines so that the
230 // preprocessor includes them.
231 std::string IncludesAfterPCH;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000232 SmallVector<StringRef, 8> AfterPCHLines;
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000233 Right.split(AfterPCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
234 for (unsigned i = 0, e = AfterPCHLines.size(); i != e; ++i) {
235 if (AfterPCHLines[i].startswith("#include ")) {
236 IncludesAfterPCH += AfterPCHLines[i];
237 IncludesAfterPCH += '\n';
238 } else {
239 CmdLineLines.push_back(AfterPCHLines[i]);
240 }
241 }
242
243 // Make sure we add the includes last into SuggestedPredefines before we
244 // exit this function.
245 struct AddIncludesRAII {
246 std::string &SuggestedPredefines;
247 std::string &IncludesAfterPCH;
248
249 AddIncludesRAII(std::string &SuggestedPredefines,
250 std::string &IncludesAfterPCH)
251 : SuggestedPredefines(SuggestedPredefines),
252 IncludesAfterPCH(IncludesAfterPCH) { }
253 ~AddIncludesRAII() {
254 SuggestedPredefines += IncludesAfterPCH;
255 }
256 } AddIncludes(SuggestedPredefines, IncludesAfterPCH);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000257
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000258 // Sort both sets of predefined buffer lines, since we allow some extra
259 // definitions and they may appear at any point in the output.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000260 std::sort(CmdLineLines.begin(), CmdLineLines.end());
261 std::sort(PCHLines.begin(), PCHLines.end());
262
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000263 // Determine which predefines that were used to build the PCH file are missing
264 // from the command line.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000265 std::vector<StringRef> MissingPredefines;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000266 std::set_difference(PCHLines.begin(), PCHLines.end(),
267 CmdLineLines.begin(), CmdLineLines.end(),
268 std::back_inserter(MissingPredefines));
269
270 bool MissingDefines = false;
271 bool ConflictingDefines = false;
272 for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000273 StringRef Missing = MissingPredefines[I];
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000274 if (Missing.startswith("#include ")) {
275 // An -include was specified when generating the PCH; it is included in
276 // the PCH, just ignore it.
277 continue;
278 }
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000279 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000280 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
281 return true;
282 }
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000284 // This is a macro definition. Determine the name of the macro we're
285 // defining.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000286 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump1eb44332009-09-09 15:08:12 +0000287 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000288 = Missing.find_first_of("( \n\r", StartOfMacroName);
289 assert(EndOfMacroName != std::string::npos &&
290 "Couldn't find the end of the macro name");
Chris Lattner5f9e2722011-07-23 10:55:15 +0000291 StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000292
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000293 // Determine whether this macro was given a different definition on the
294 // command line.
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000295 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000296 std::string::size_type MacroDefLen = MacroDefStart.size();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000297 SmallVector<StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000298 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
299 MacroDefStart);
300 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000301 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000302 // Different macro; we're done.
303 ConflictPos = CmdLineLines.end();
Mike Stump1eb44332009-09-09 15:08:12 +0000304 break;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000305 }
Mike Stump1eb44332009-09-09 15:08:12 +0000306
307 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000308 "Invalid #define in predefines buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +0000309 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000310 (*ConflictPos)[MacroDefLen] != '(')
311 continue; // Longer macro name; keep trying.
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000313 // We found a conflicting macro definition.
314 break;
315 }
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000317 if (ConflictPos != CmdLineLines.end()) {
318 Reader.Diag(diag::warn_cmdline_conflicting_macro_def)
319 << MacroName;
320
321 // Show the definition of this macro within the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000322 std::pair<FileID, StringRef::size_type> MacroLoc =
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000323 FindMacro(Buffers, Missing);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000324 assert(MacroLoc.second!=StringRef::npos && "Unable to find macro!");
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000325 SourceLocation PCHMissingLoc =
326 SourceMgr.getLocForStartOfFile(MacroLoc.first)
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000327 .getLocWithOffset(MacroLoc.second);
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000328 Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) << MacroName;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000329
330 ConflictingDefines = true;
331 continue;
332 }
Mike Stump1eb44332009-09-09 15:08:12 +0000333
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000334 // If the macro doesn't conflict, then we'll just pick up the macro
335 // definition from the PCH file. Warn the user that they made a mistake.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000336 if (ConflictingDefines)
337 continue; // Don't complain if there are already conflicting defs
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000339 if (!MissingDefines) {
340 Reader.Diag(diag::warn_cmdline_missing_macro_defs);
341 MissingDefines = true;
342 }
343
344 // Show the definition of this macro within the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000345 std::pair<FileID, StringRef::size_type> MacroLoc =
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000346 FindMacro(Buffers, Missing);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000347 assert(MacroLoc.second!=StringRef::npos && "Unable to find macro!");
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000348 SourceLocation PCHMissingLoc =
349 SourceMgr.getLocForStartOfFile(MacroLoc.first)
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000350 .getLocWithOffset(MacroLoc.second);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000351 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
352 }
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000354 if (ConflictingDefines)
355 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000356
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000357 // Determine what predefines were introduced based on command-line
358 // parameters that were not present when building the PCH
359 // file. Extra #defines are okay, so long as the identifiers being
360 // defined were not used within the precompiled header.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000361 std::vector<StringRef> ExtraPredefines;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000362 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
363 PCHLines.begin(), PCHLines.end(),
Mike Stump1eb44332009-09-09 15:08:12 +0000364 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000365 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000366 StringRef &Extra = ExtraPredefines[I];
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000367 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000368 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
369 return true;
370 }
371
372 // This is an extra macro definition. Determine the name of the
373 // macro we're defining.
374 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump1eb44332009-09-09 15:08:12 +0000375 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000376 = Extra.find_first_of("( \n\r", StartOfMacroName);
377 assert(EndOfMacroName != std::string::npos &&
378 "Couldn't find the end of the macro name");
Chris Lattner5f9e2722011-07-23 10:55:15 +0000379 StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000380
381 // Check whether this name was used somewhere in the PCH file. If
382 // so, defining it as a macro could change behavior, so we reject
383 // the PCH file.
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000384 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar4fda42e2009-11-11 00:52:00 +0000385 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000386 return true;
387 }
388
389 // Add this definition to the suggested predefines buffer.
390 SuggestedPredefines += Extra;
391 SuggestedPredefines += '\n';
392 }
393
394 // If we get here, it's because the predefines buffer had compatible
395 // contents. Accept the PCH file.
396 return false;
397}
398
Douglas Gregor12fab312010-03-16 16:35:32 +0000399void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
400 unsigned ID) {
401 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
402 ++NumHeaderInfos;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000403}
404
405void PCHValidator::ReadCounter(unsigned Value) {
406 PP.setCounterValue(Value);
407}
408
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000409//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000410// AST reader implementation
Douglas Gregor668c1a42009-04-21 22:25:48 +0000411//===----------------------------------------------------------------------===//
412
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000413void
Sebastian Redl571db7f2010-08-18 23:56:56 +0000414ASTReader::setDeserializationListener(ASTDeserializationListener *Listener) {
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000415 DeserializationListener = Listener;
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000416}
417
Chris Lattner4c6f9522009-04-27 05:14:47 +0000418
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000419
Douglas Gregor98339b92011-08-25 20:47:51 +0000420unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
421 return serialization::ComputeHash(Sel);
422}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000423
Mike Stump1eb44332009-09-09 15:08:12 +0000424
Douglas Gregor98339b92011-08-25 20:47:51 +0000425std::pair<unsigned, unsigned>
426ASTSelectorLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
427 using namespace clang::io;
428 unsigned KeyLen = ReadUnalignedLE16(d);
429 unsigned DataLen = ReadUnalignedLE16(d);
430 return std::make_pair(KeyLen, DataLen);
431}
432
433ASTSelectorLookupTrait::internal_key_type
434ASTSelectorLookupTrait::ReadKey(const unsigned char* d, unsigned) {
435 using namespace clang::io;
Douglas Gregor35942772011-09-09 21:34:22 +0000436 SelectorTable &SelTable = Reader.getContext().Selectors;
Douglas Gregor98339b92011-08-25 20:47:51 +0000437 unsigned N = ReadUnalignedLE16(d);
438 IdentifierInfo *FirstII
439 = Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
440 if (N == 0)
441 return SelTable.getNullarySelector(FirstII);
442 else if (N == 1)
443 return SelTable.getUnarySelector(FirstII);
444
445 SmallVector<IdentifierInfo *, 16> Args;
446 Args.push_back(FirstII);
447 for (unsigned I = 1; I != N; ++I)
448 Args.push_back(Reader.getLocalIdentifier(F, ReadUnalignedLE32(d)));
449
450 return SelTable.getSelector(N, Args.data());
451}
452
453ASTSelectorLookupTrait::data_type
454ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
455 unsigned DataLen) {
456 using namespace clang::io;
457
458 data_type Result;
459
460 Result.ID = Reader.getGlobalSelectorID(F, ReadUnalignedLE32(d));
461 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
462 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
463
464 // Load instance methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000465 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
466 if (ObjCMethodDecl *Method
467 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
468 Result.Instance.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000469 }
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Douglas Gregor98339b92011-08-25 20:47:51 +0000471 // Load factory methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000472 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
473 if (ObjCMethodDecl *Method
474 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
475 Result.Factory.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000476 }
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Douglas Gregor98339b92011-08-25 20:47:51 +0000478 return Result;
479}
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Douglas Gregor98339b92011-08-25 20:47:51 +0000481unsigned ASTIdentifierLookupTrait::ComputeHash(const internal_key_type& a) {
482 return llvm::HashString(StringRef(a.first, a.second));
483}
Mike Stump1eb44332009-09-09 15:08:12 +0000484
Douglas Gregor98339b92011-08-25 20:47:51 +0000485std::pair<unsigned, unsigned>
486ASTIdentifierLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
487 using namespace clang::io;
488 unsigned DataLen = ReadUnalignedLE16(d);
489 unsigned KeyLen = ReadUnalignedLE16(d);
490 return std::make_pair(KeyLen, DataLen);
491}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000492
Douglas Gregor98339b92011-08-25 20:47:51 +0000493std::pair<const char*, unsigned>
494ASTIdentifierLookupTrait::ReadKey(const unsigned char* d, unsigned n) {
495 assert(n >= 2 && d[n-1] == '\0');
496 return std::make_pair((const char*) d, n-1);
497}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000498
Douglas Gregor98339b92011-08-25 20:47:51 +0000499IdentifierInfo *ASTIdentifierLookupTrait::ReadData(const internal_key_type& k,
500 const unsigned char* d,
501 unsigned DataLen) {
502 using namespace clang::io;
503 unsigned RawID = ReadUnalignedLE32(d);
504 bool IsInteresting = RawID & 0x01;
Mike Stump1eb44332009-09-09 15:08:12 +0000505
Douglas Gregor98339b92011-08-25 20:47:51 +0000506 // Wipe out the "is interesting" bit.
507 RawID = RawID >> 1;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000508
Douglas Gregor98339b92011-08-25 20:47:51 +0000509 IdentID ID = Reader.getGlobalIdentifierID(F, RawID);
510 if (!IsInteresting) {
511 // For uninteresting identifiers, just build the IdentifierInfo
512 // and associate it with the persistent ID.
Douglas Gregor668c1a42009-04-21 22:25:48 +0000513 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000514 if (!II) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +0000515 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000516 KnownII = II;
517 }
Douglas Gregor668c1a42009-04-21 22:25:48 +0000518 Reader.SetIdentifierInfo(ID, II);
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000519 II->setIsFromAST();
Douglas Gregor057df202012-01-18 20:56:22 +0000520 Reader.markIdentifierUpToDate(II);
Douglas Gregor668c1a42009-04-21 22:25:48 +0000521 return II;
522 }
Mike Stump1eb44332009-09-09 15:08:12 +0000523
Douglas Gregor98339b92011-08-25 20:47:51 +0000524 unsigned Bits = ReadUnalignedLE16(d);
525 bool CPlusPlusOperatorKeyword = Bits & 0x01;
526 Bits >>= 1;
527 bool HasRevertedTokenIDToIdentifier = Bits & 0x01;
528 Bits >>= 1;
529 bool Poisoned = Bits & 0x01;
530 Bits >>= 1;
531 bool ExtensionToken = Bits & 0x01;
532 Bits >>= 1;
533 bool hasMacroDefinition = Bits & 0x01;
534 Bits >>= 1;
Craig Topper925be542011-12-19 05:04:33 +0000535 unsigned ObjCOrBuiltinID = Bits & 0x7FF;
536 Bits >>= 11;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000537
Douglas Gregor98339b92011-08-25 20:47:51 +0000538 assert(Bits == 0 && "Extra bits in the identifier?");
539 DataLen -= 6;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000540
Douglas Gregor98339b92011-08-25 20:47:51 +0000541 // Build the IdentifierInfo itself and link the identifier ID with
542 // the new IdentifierInfo.
543 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000544 if (!II) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000545 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000546 KnownII = II;
547 }
Douglas Gregor057df202012-01-18 20:56:22 +0000548 Reader.markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +0000549 II->setIsFromAST();
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000550
Douglas Gregor98339b92011-08-25 20:47:51 +0000551 // Set or check the various bits in the IdentifierInfo structure.
552 // Token IDs are read-only.
553 if (HasRevertedTokenIDToIdentifier)
554 II->RevertTokenIDToIdentifier();
555 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
556 assert(II->isExtensionToken() == ExtensionToken &&
557 "Incorrect extension token flag");
558 (void)ExtensionToken;
559 if (Poisoned)
560 II->setIsPoisoned(true);
561 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
562 "Incorrect C++ operator keyword flag");
563 (void)CPlusPlusOperatorKeyword;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000564
Douglas Gregor98339b92011-08-25 20:47:51 +0000565 // If this identifier is a macro, deserialize the macro
566 // definition.
567 if (hasMacroDefinition) {
568 // FIXME: Check for conflicts?
569 uint32_t Offset = ReadUnalignedLE32(d);
Douglas Gregor13292642011-12-02 15:45:10 +0000570 unsigned LocalSubmoduleID = ReadUnalignedLE32(d);
571
572 // Determine whether this macro definition should be visible now, or
573 // whether it is in a hidden submodule.
574 bool Visible = true;
575 if (SubmoduleID GlobalSubmoduleID
576 = Reader.getGlobalSubmoduleID(F, LocalSubmoduleID)) {
577 if (Module *Owner = Reader.getSubmodule(GlobalSubmoduleID)) {
578 if (Owner->NameVisibility == Module::Hidden) {
579 // The owning module is not visible, and this macro definition should
580 // not be, either.
581 Visible = false;
582
583 // Note that this macro definition was hidden because its owning
584 // module is not yet visible.
585 Reader.HiddenNamesMap[Owner].push_back(II);
586 }
587 }
588 }
589
590 Reader.setIdentifierIsMacro(II, F, Offset, Visible);
591 DataLen -= 8;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000592 }
593
Douglas Gregoreee242f2011-10-27 09:33:13 +0000594 Reader.SetIdentifierInfo(ID, II);
595
Douglas Gregor98339b92011-08-25 20:47:51 +0000596 // Read all of the declarations visible at global scope with this
597 // name.
Douglas Gregor98339b92011-08-25 20:47:51 +0000598 if (DataLen > 0) {
599 SmallVector<uint32_t, 4> DeclIDs;
600 for (; DataLen > 0; DataLen -= 4)
601 DeclIDs.push_back(Reader.getGlobalDeclID(F, ReadUnalignedLE32(d)));
602 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000603 }
604
Douglas Gregor98339b92011-08-25 20:47:51 +0000605 return II;
606}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000607
Douglas Gregor98339b92011-08-25 20:47:51 +0000608unsigned
609ASTDeclContextNameLookupTrait::ComputeHash(const DeclNameKey &Key) const {
610 llvm::FoldingSetNodeID ID;
611 ID.AddInteger(Key.Kind);
612
613 switch (Key.Kind) {
614 case DeclarationName::Identifier:
615 case DeclarationName::CXXLiteralOperatorName:
616 ID.AddString(((IdentifierInfo*)Key.Data)->getName());
617 break;
618 case DeclarationName::ObjCZeroArgSelector:
619 case DeclarationName::ObjCOneArgSelector:
620 case DeclarationName::ObjCMultiArgSelector:
621 ID.AddInteger(serialization::ComputeHash(Selector(Key.Data)));
622 break;
623 case DeclarationName::CXXOperatorName:
624 ID.AddInteger((OverloadedOperatorKind)Key.Data);
625 break;
626 case DeclarationName::CXXConstructorName:
627 case DeclarationName::CXXDestructorName:
628 case DeclarationName::CXXConversionFunctionName:
629 case DeclarationName::CXXUsingDirective:
630 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000631 }
632
Douglas Gregor98339b92011-08-25 20:47:51 +0000633 return ID.ComputeHash();
634}
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000635
Douglas Gregor98339b92011-08-25 20:47:51 +0000636ASTDeclContextNameLookupTrait::internal_key_type
637ASTDeclContextNameLookupTrait::GetInternalKey(
638 const external_key_type& Name) const {
639 DeclNameKey Key;
640 Key.Kind = Name.getNameKind();
641 switch (Name.getNameKind()) {
642 case DeclarationName::Identifier:
643 Key.Data = (uint64_t)Name.getAsIdentifierInfo();
644 break;
645 case DeclarationName::ObjCZeroArgSelector:
646 case DeclarationName::ObjCOneArgSelector:
647 case DeclarationName::ObjCMultiArgSelector:
648 Key.Data = (uint64_t)Name.getObjCSelector().getAsOpaquePtr();
649 break;
650 case DeclarationName::CXXOperatorName:
651 Key.Data = Name.getCXXOverloadedOperator();
652 break;
653 case DeclarationName::CXXLiteralOperatorName:
654 Key.Data = (uint64_t)Name.getCXXLiteralIdentifier();
655 break;
656 case DeclarationName::CXXConstructorName:
657 case DeclarationName::CXXDestructorName:
658 case DeclarationName::CXXConversionFunctionName:
659 case DeclarationName::CXXUsingDirective:
660 Key.Data = 0;
661 break;
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000662 }
663
Douglas Gregor98339b92011-08-25 20:47:51 +0000664 return Key;
665}
666
667ASTDeclContextNameLookupTrait::external_key_type
668ASTDeclContextNameLookupTrait::GetExternalKey(
669 const internal_key_type& Key) const {
Douglas Gregor35942772011-09-09 21:34:22 +0000670 ASTContext &Context = Reader.getContext();
Douglas Gregor98339b92011-08-25 20:47:51 +0000671 switch (Key.Kind) {
672 case DeclarationName::Identifier:
673 return DeclarationName((IdentifierInfo*)Key.Data);
674
675 case DeclarationName::ObjCZeroArgSelector:
676 case DeclarationName::ObjCOneArgSelector:
677 case DeclarationName::ObjCMultiArgSelector:
678 return DeclarationName(Selector(Key.Data));
679
680 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +0000681 return Context.DeclarationNames.getCXXConstructorName(
682 Context.getCanonicalType(Reader.getLocalType(F, Key.Data)));
Douglas Gregor98339b92011-08-25 20:47:51 +0000683
684 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +0000685 return Context.DeclarationNames.getCXXDestructorName(
686 Context.getCanonicalType(Reader.getLocalType(F, Key.Data)));
Douglas Gregor98339b92011-08-25 20:47:51 +0000687
688 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +0000689 return Context.DeclarationNames.getCXXConversionFunctionName(
690 Context.getCanonicalType(Reader.getLocalType(F, Key.Data)));
Douglas Gregor98339b92011-08-25 20:47:51 +0000691
692 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +0000693 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor98339b92011-08-25 20:47:51 +0000694 (OverloadedOperatorKind)Key.Data);
695
696 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +0000697 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor98339b92011-08-25 20:47:51 +0000698 (IdentifierInfo*)Key.Data);
699
700 case DeclarationName::CXXUsingDirective:
701 return DeclarationName::getUsingDirectiveName();
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000702 }
703
Douglas Gregor98339b92011-08-25 20:47:51 +0000704 llvm_unreachable("Invalid Name Kind ?");
705}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000706
Douglas Gregor98339b92011-08-25 20:47:51 +0000707std::pair<unsigned, unsigned>
708ASTDeclContextNameLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
709 using namespace clang::io;
710 unsigned KeyLen = ReadUnalignedLE16(d);
711 unsigned DataLen = ReadUnalignedLE16(d);
712 return std::make_pair(KeyLen, DataLen);
713}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000714
Douglas Gregor98339b92011-08-25 20:47:51 +0000715ASTDeclContextNameLookupTrait::internal_key_type
716ASTDeclContextNameLookupTrait::ReadKey(const unsigned char* d, unsigned) {
717 using namespace clang::io;
718
719 DeclNameKey Key;
720 Key.Kind = (DeclarationName::NameKind)*d++;
721 switch (Key.Kind) {
722 case DeclarationName::Identifier:
723 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
724 break;
725 case DeclarationName::ObjCZeroArgSelector:
726 case DeclarationName::ObjCOneArgSelector:
727 case DeclarationName::ObjCMultiArgSelector:
728 Key.Data =
729 (uint64_t)Reader.getLocalSelector(F, ReadUnalignedLE32(d))
730 .getAsOpaquePtr();
731 break;
732 case DeclarationName::CXXOperatorName:
733 Key.Data = *d++; // OverloadedOperatorKind
734 break;
735 case DeclarationName::CXXLiteralOperatorName:
736 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
737 break;
738 case DeclarationName::CXXConstructorName:
739 case DeclarationName::CXXDestructorName:
740 case DeclarationName::CXXConversionFunctionName:
741 case DeclarationName::CXXUsingDirective:
742 Key.Data = 0;
743 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000744 }
745
Douglas Gregor98339b92011-08-25 20:47:51 +0000746 return Key;
747}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000748
Douglas Gregor98339b92011-08-25 20:47:51 +0000749ASTDeclContextNameLookupTrait::data_type
750ASTDeclContextNameLookupTrait::ReadData(internal_key_type,
751 const unsigned char* d,
752 unsigned DataLen) {
753 using namespace clang::io;
754 unsigned NumDecls = ReadUnalignedLE16(d);
Douglas Gregor9b8b20f2012-01-06 16:09:53 +0000755 LE32DeclID *Start = (LE32DeclID *)d;
Douglas Gregor98339b92011-08-25 20:47:51 +0000756 return std::make_pair(Start, Start + NumDecls);
757}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000758
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000759bool ASTReader::ReadDeclContextStorage(ModuleFile &M,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000760 llvm::BitstreamCursor &Cursor,
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000761 const std::pair<uint64_t, uint64_t> &Offsets,
762 DeclContextInfo &Info) {
763 SavedStreamPosition SavedPosition(Cursor);
764 // First the lexical decls.
765 if (Offsets.first != 0) {
766 Cursor.JumpToBit(Offsets.first);
767
768 RecordData Record;
769 const char *Blob;
770 unsigned BlobLen;
771 unsigned Code = Cursor.ReadCode();
772 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
773 if (RecCode != DECL_CONTEXT_LEXICAL) {
774 Error("Expected lexical block");
775 return true;
776 }
777
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000778 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob);
779 Info.NumLexicalDecls = BlobLen / sizeof(KindDeclIDPair);
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000780 }
781
782 // Now the lookup table.
783 if (Offsets.second != 0) {
784 Cursor.JumpToBit(Offsets.second);
785
786 RecordData Record;
787 const char *Blob;
788 unsigned BlobLen;
789 unsigned Code = Cursor.ReadCode();
790 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
791 if (RecCode != DECL_CONTEXT_VISIBLE) {
792 Error("Expected visible lookup table block");
793 return true;
794 }
795 Info.NameLookupTableData
796 = ASTDeclContextNameLookupTable::Create(
797 (const unsigned char *)Blob + Record[0],
798 (const unsigned char *)Blob,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000799 ASTDeclContextNameLookupTrait(*this, M));
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000800 }
801
802 return false;
803}
804
Chris Lattner5f9e2722011-07-23 10:55:15 +0000805void ASTReader::Error(StringRef Msg) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000806 Error(diag::err_fe_pch_malformed, Msg);
807}
808
809void ASTReader::Error(unsigned DiagID,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000810 StringRef Arg1, StringRef Arg2) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000811 if (Diags.isDiagnosticInFlight())
812 Diags.SetDelayedDiagnostic(DiagID, Arg1, Arg2);
813 else
814 Diag(DiagID) << Arg1 << Arg2;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000815}
816
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000817/// \brief Tell the AST listener about the predefines buffers in the chain.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000818bool ASTReader::CheckPredefinesBuffers() {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000819 if (Listener)
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000820 return Listener->ReadPredefinesBuffer(PCHPredefinesBuffers,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000821 ActualOriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000822 SuggestedPredefines,
823 FileMgr);
Douglas Gregore721f952009-04-28 18:58:38 +0000824 return false;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000825}
826
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000827//===----------------------------------------------------------------------===//
828// Source Manager Deserialization
829//===----------------------------------------------------------------------===//
830
Douglas Gregorbd945002009-04-13 16:31:14 +0000831/// \brief Read the line table in the source manager block.
Sebastian Redlc3632732010-10-05 15:59:54 +0000832/// \returns true if there was an error.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000833bool ASTReader::ParseLineTable(ModuleFile &F,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000834 SmallVectorImpl<uint64_t> &Record) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000835 unsigned Idx = 0;
836 LineTableInfo &LineTable = SourceMgr.getLineTable();
837
838 // Parse the file names
Douglas Gregorff0a9872009-04-13 17:12:42 +0000839 std::map<int, int> FileIDs;
840 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000841 // Extract the file name
842 unsigned FilenameLen = Record[Idx++];
843 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
844 Idx += FilenameLen;
Douglas Gregore650c8c2009-07-07 00:12:59 +0000845 MaybeAddSystemRootToFilename(Filename);
Jay Foad65aa6882011-06-21 15:13:30 +0000846 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
Douglas Gregorbd945002009-04-13 16:31:14 +0000847 }
848
849 // Parse the line entries
850 std::vector<LineEntry> Entries;
851 while (Idx < Record.size()) {
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000852 int FID = Record[Idx++];
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000853 assert(FID >= 0 && "Serialized line entries for non-local file.");
854 // Remap FileID from 1-based old view.
855 FID += F.SLocEntryBaseID - 1;
Douglas Gregorbd945002009-04-13 16:31:14 +0000856
857 // Extract the line entries
858 unsigned NumEntries = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000859 assert(NumEntries && "Numentries is 00000");
Douglas Gregorbd945002009-04-13 16:31:14 +0000860 Entries.clear();
861 Entries.reserve(NumEntries);
862 for (unsigned I = 0; I != NumEntries; ++I) {
863 unsigned FileOffset = Record[Idx++];
864 unsigned LineNo = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000865 int FilenameID = FileIDs[Record[Idx++]];
Mike Stump1eb44332009-09-09 15:08:12 +0000866 SrcMgr::CharacteristicKind FileKind
Douglas Gregorbd945002009-04-13 16:31:14 +0000867 = (SrcMgr::CharacteristicKind)Record[Idx++];
868 unsigned IncludeOffset = Record[Idx++];
869 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
870 FileKind, IncludeOffset));
871 }
872 LineTable.AddEntry(FID, Entries);
873 }
874
875 return false;
876}
877
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000878namespace {
879
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000880class ASTStatData {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000881public:
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000882 const ino_t ino;
883 const dev_t dev;
884 const mode_t mode;
885 const time_t mtime;
886 const off_t size;
Mike Stump1eb44332009-09-09 15:08:12 +0000887
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000888 ASTStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Chris Lattner74e976b2010-11-23 19:28:12 +0000889 : ino(i), dev(d), mode(mo), mtime(m), size(s) {}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000890};
891
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000892class ASTStatLookupTrait {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000893 public:
894 typedef const char *external_key_type;
895 typedef const char *internal_key_type;
896
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000897 typedef ASTStatData data_type;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000898
899 static unsigned ComputeHash(const char *path) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000900 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000901 }
902
903 static internal_key_type GetInternalKey(const char *path) { return path; }
904
905 static bool EqualKey(internal_key_type a, internal_key_type b) {
906 return strcmp(a, b) == 0;
907 }
908
909 static std::pair<unsigned, unsigned>
910 ReadKeyDataLength(const unsigned char*& d) {
911 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
912 unsigned DataLen = (unsigned) *d++;
913 return std::make_pair(KeyLen + 1, DataLen);
914 }
915
916 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
917 return (const char *)d;
918 }
919
920 static data_type ReadData(const internal_key_type, const unsigned char *d,
921 unsigned /*DataLen*/) {
922 using namespace clang::io;
923
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000924 ino_t ino = (ino_t) ReadUnalignedLE32(d);
925 dev_t dev = (dev_t) ReadUnalignedLE32(d);
926 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump1eb44332009-09-09 15:08:12 +0000927 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000928 off_t size = (off_t) ReadUnalignedLE64(d);
929 return data_type(ino, dev, mode, mtime, size);
930 }
931};
932
933/// \brief stat() cache for precompiled headers.
934///
935/// This cache is very similar to the stat cache used by pretokenized
936/// headers.
Chris Lattner10e286a2010-11-23 19:19:34 +0000937class ASTStatCache : public FileSystemStatCache {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000938 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000939 CacheTy *Cache;
940
941 unsigned &NumStatHits, &NumStatMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000942public:
Chris Lattner74e976b2010-11-23 19:28:12 +0000943 ASTStatCache(const unsigned char *Buckets, const unsigned char *Base,
944 unsigned &NumStatHits, unsigned &NumStatMisses)
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000945 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
946 Cache = CacheTy::Create(Buckets, Base);
947 }
948
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000949 ~ASTStatCache() { delete Cache; }
Mike Stump1eb44332009-09-09 15:08:12 +0000950
Chris Lattner898a0612010-11-23 21:17:56 +0000951 LookupResult getStat(const char *Path, struct stat &StatBuf,
952 int *FileDescriptor) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000953 // Do the lookup for the file's data in the AST file.
Chris Lattner10e286a2010-11-23 19:19:34 +0000954 CacheTy::iterator I = Cache->find(Path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000955
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000956 // If we don't get a hit in the AST file just forward to 'stat'.
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000957 if (I == Cache->end()) {
958 ++NumStatMisses;
Chris Lattner898a0612010-11-23 21:17:56 +0000959 return statChained(Path, StatBuf, FileDescriptor);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000960 }
Mike Stump1eb44332009-09-09 15:08:12 +0000961
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000962 ++NumStatHits;
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000963 ASTStatData Data = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000964
Chris Lattner10e286a2010-11-23 19:19:34 +0000965 StatBuf.st_ino = Data.ino;
966 StatBuf.st_dev = Data.dev;
967 StatBuf.st_mtime = Data.mtime;
968 StatBuf.st_mode = Data.mode;
969 StatBuf.st_size = Data.size;
Chris Lattnerd6f61112010-11-23 20:05:15 +0000970 return CacheExists;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000971 }
972};
973} // end anonymous namespace
974
975
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000976/// \brief Read a source manager block
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000977ASTReader::ASTReadResult ASTReader::ReadSourceManagerBlock(ModuleFile &F) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000978 using namespace SrcMgr;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000979
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000980 llvm::BitstreamCursor &SLocEntryCursor = F.SLocEntryCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +0000981
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000982 // Set the source-location entry cursor to the current position in
983 // the stream. This cursor will be used to read the contents of the
984 // source manager block initially, and then lazily read
985 // source-location entries as needed.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000986 SLocEntryCursor = F.Stream;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000987
988 // The stream itself is going to skip over the source manager block.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000989 if (F.Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000990 Error("malformed block record in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000991 return Failure;
992 }
993
994 // Enter the source manager block.
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000995 if (SLocEntryCursor.EnterSubBlock(SOURCE_MANAGER_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000996 Error("malformed source manager block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000997 return Failure;
998 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000999
Douglas Gregor14f79002009-04-10 03:52:48 +00001000 RecordData Record;
1001 while (true) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001002 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregor14f79002009-04-10 03:52:48 +00001003 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001004 if (SLocEntryCursor.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001005 Error("error at end of Source Manager block in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001006 return Failure;
1007 }
Douglas Gregore1d918e2009-04-10 23:10:45 +00001008 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +00001009 }
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Douglas Gregor14f79002009-04-10 03:52:48 +00001011 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1012 // No known subblocks, always skip them.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001013 SLocEntryCursor.ReadSubBlockID();
1014 if (SLocEntryCursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001015 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001016 return Failure;
1017 }
Douglas Gregor14f79002009-04-10 03:52:48 +00001018 continue;
1019 }
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Douglas Gregor14f79002009-04-10 03:52:48 +00001021 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001022 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregor14f79002009-04-10 03:52:48 +00001023 continue;
1024 }
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Douglas Gregor14f79002009-04-10 03:52:48 +00001026 // Read a record.
1027 const char *BlobStart;
1028 unsigned BlobLen;
1029 Record.clear();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001030 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001031 default: // Default behavior: ignore.
1032 break;
1033
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001034 case SM_SLOC_FILE_ENTRY:
1035 case SM_SLOC_BUFFER_ENTRY:
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001036 case SM_SLOC_EXPANSION_ENTRY:
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001037 // Once we hit one of the source location entries, we're done.
1038 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +00001039 }
1040 }
1041}
1042
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001043/// \brief If a header file is not found at the path that we expect it to be
1044/// and the PCH file was moved from its original location, try to resolve the
1045/// file by assuming that header+PCH were moved together and the header is in
1046/// the same place relative to the PCH.
1047static std::string
1048resolveFileRelativeToOriginalDir(const std::string &Filename,
1049 const std::string &OriginalDir,
1050 const std::string &CurrDir) {
1051 assert(OriginalDir != CurrDir &&
1052 "No point trying to resolve the file if the PCH dir didn't change");
1053 using namespace llvm::sys;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001054 SmallString<128> filePath(Filename);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001055 fs::make_absolute(filePath);
1056 assert(path::is_absolute(OriginalDir));
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001057 SmallString<128> currPCHPath(CurrDir);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001058
1059 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
1060 fileDirE = path::end(path::parent_path(filePath));
1061 path::const_iterator origDirI = path::begin(OriginalDir),
1062 origDirE = path::end(OriginalDir);
1063 // Skip the common path components from filePath and OriginalDir.
1064 while (fileDirI != fileDirE && origDirI != origDirE &&
1065 *fileDirI == *origDirI) {
1066 ++fileDirI;
1067 ++origDirI;
1068 }
1069 for (; origDirI != origDirE; ++origDirI)
1070 path::append(currPCHPath, "..");
1071 path::append(currPCHPath, fileDirI, fileDirE);
1072 path::append(currPCHPath, path::filename(Filename));
1073 return currPCHPath.str();
1074}
1075
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001076/// \brief Read in the source location entry with the given ID.
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001077ASTReader::ASTReadResult ASTReader::ReadSLocEntryRecord(int ID) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001078 if (ID == 0)
1079 return Success;
1080
Douglas Gregor0cdd7982011-07-21 18:46:38 +00001081 if (unsigned(-ID) - 2 >= getTotalNumSLocs() || ID > 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001082 Error("source location entry ID out-of-range for AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001083 return Failure;
1084 }
1085
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001086 ModuleFile *F = GlobalSLocEntryMap.find(-ID)->second;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001087 F->SLocEntryCursor.JumpToBit(F->SLocEntryOffsets[ID - F->SLocEntryBaseID]);
Sebastian Redlc3632732010-10-05 15:59:54 +00001088 llvm::BitstreamCursor &SLocEntryCursor = F->SLocEntryCursor;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001089 unsigned BaseOffset = F->SLocEntryBaseOffset;
Sebastian Redl9137a522010-07-16 17:50:48 +00001090
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001091 ++NumSLocEntriesRead;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001092 unsigned Code = SLocEntryCursor.ReadCode();
1093 if (Code == llvm::bitc::END_BLOCK ||
1094 Code == llvm::bitc::ENTER_SUBBLOCK ||
1095 Code == llvm::bitc::DEFINE_ABBREV) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001096 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001097 return Failure;
1098 }
1099
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001100 RecordData Record;
1101 const char *BlobStart;
1102 unsigned BlobLen;
1103 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1104 default:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001105 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001106 return Failure;
1107
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001108 case SM_SLOC_FILE_ENTRY: {
Douglas Gregora081da52011-11-16 20:05:18 +00001109 if (Record.size() < 7) {
1110 Error("source location entry is incorrect");
1111 return Failure;
1112 }
1113
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001114 // We will detect whether a file changed and return 'Failure' for it, but
1115 // we will also try to fail gracefully by setting up the SLocEntry.
1116 ASTReader::ASTReadResult Result = Success;
1117
Douglas Gregora081da52011-11-16 20:05:18 +00001118 bool OverriddenBuffer = Record[6];
1119
1120 std::string OrigFilename(BlobStart, BlobStart + BlobLen);
1121 std::string Filename = OrigFilename;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001122 MaybeAddSystemRootToFilename(Filename);
Douglas Gregora4581a12011-11-17 19:08:51 +00001123 const FileEntry *File =
1124 OverriddenBuffer? FileMgr.getVirtualFile(Filename, (off_t)Record[4],
1125 (time_t)Record[5])
1126 : FileMgr.getFile(Filename, /*OpenFile=*/false);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001127 if (File == 0 && !OriginalDir.empty() && !CurrentDir.empty() &&
1128 OriginalDir != CurrentDir) {
1129 std::string resolved = resolveFileRelativeToOriginalDir(Filename,
1130 OriginalDir,
1131 CurrentDir);
1132 if (!resolved.empty())
1133 File = FileMgr.getFile(resolved);
1134 }
Axel Naumann04331162011-01-27 10:55:51 +00001135 if (File == 0)
1136 File = FileMgr.getVirtualFile(Filename, (off_t)Record[4],
1137 (time_t)Record[5]);
Chris Lattnerd3555ae2009-06-15 04:35:16 +00001138 if (File == 0) {
1139 std::string ErrorStr = "could not find file '";
Douglas Gregore650c8c2009-07-07 00:12:59 +00001140 ErrorStr += Filename;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001141 ErrorStr += "' referenced by AST file";
Chris Lattnerd3555ae2009-06-15 04:35:16 +00001142 Error(ErrorStr.c_str());
1143 return Failure;
1144 }
Mike Stump1eb44332009-09-09 15:08:12 +00001145
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001146 if (!DisableValidation &&
1147 ((off_t)Record[4] != File->getSize()
Douglas Gregor9f692a02010-04-09 15:54:22 +00001148#if !defined(LLVM_ON_WIN32)
1149 // In our regression testing, the Windows file system seems to
1150 // have inconsistent modification times that sometimes
1151 // erroneously trigger this error-handling path.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001152 || (time_t)Record[5] != File->getModificationTime()
Douglas Gregor9f692a02010-04-09 15:54:22 +00001153#endif
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001154 )) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +00001155 Error(diag::err_fe_pch_file_modified, Filename);
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001156 Result = Failure;
Douglas Gregor2d52be52010-03-21 22:49:54 +00001157 }
1158
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001159 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
Douglas Gregor72a9ae12011-07-22 16:00:58 +00001160 if (IncludeLoc.isInvalid() && F->Kind != MK_MainFile) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001161 // This is the module's main file.
1162 IncludeLoc = getImportLocation(F);
1163 }
1164 FileID FID = SourceMgr.createFileID(File, IncludeLoc,
Chris Lattner75dfb652010-11-23 09:19:42 +00001165 (SrcMgr::CharacteristicKind)Record[2],
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001166 ID, BaseOffset + Record[0]);
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001167 SrcMgr::FileInfo &FileInfo =
1168 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile());
Douglas Gregora081da52011-11-16 20:05:18 +00001169 FileInfo.NumCreatedFIDs = Record[7];
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001170 if (Record[3])
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001171 FileInfo.setHasLineDirectives();
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001172
Douglas Gregora081da52011-11-16 20:05:18 +00001173 const DeclID *FirstDecl = F->FileSortedDecls + Record[8];
1174 unsigned NumFileDecls = Record[9];
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001175 if (NumFileDecls) {
1176 assert(F->FileSortedDecls && "FILE_SORTED_DECLS not encountered yet ?");
Argyrios Kyrtzidis9d128d02011-10-31 07:20:08 +00001177 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
1178 NumFileDecls));
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001179 }
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001180
Douglas Gregor35f9ae62011-11-17 01:44:33 +00001181 const SrcMgr::ContentCache *ContentCache
1182 = SourceMgr.getOrCreateContentCache(File);
1183 if (OverriddenBuffer && !ContentCache->BufferOverridden &&
1184 ContentCache->ContentsEntry == ContentCache->OrigEntry) {
Douglas Gregora081da52011-11-16 20:05:18 +00001185 unsigned Code = SLocEntryCursor.ReadCode();
1186 Record.clear();
1187 unsigned RecCode
1188 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
1189
1190 if (RecCode != SM_SLOC_BUFFER_BLOB) {
1191 Error("AST record has invalid code");
1192 return Failure;
1193 }
1194
1195 llvm::MemoryBuffer *Buffer
1196 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
1197 Filename);
1198 SourceMgr.overrideFileContents(File, Buffer);
1199 }
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001200
1201 if (Result == Failure)
1202 return Failure;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001203 break;
1204 }
1205
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001206 case SM_SLOC_BUFFER_ENTRY: {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001207 const char *Name = BlobStart;
1208 unsigned Offset = Record[0];
1209 unsigned Code = SLocEntryCursor.ReadCode();
1210 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001211 unsigned RecCode
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001212 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001213
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001214 if (RecCode != SM_SLOC_BUFFER_BLOB) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001215 Error("AST record has invalid code");
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001216 return Failure;
1217 }
1218
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001219 llvm::MemoryBuffer *Buffer
Douglas Gregora081da52011-11-16 20:05:18 +00001220 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
1221 Name);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001222 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID,
1223 BaseOffset + Offset);
Mike Stump1eb44332009-09-09 15:08:12 +00001224
Douglas Gregor6236a292011-12-02 21:56:05 +00001225 if (strcmp(Name, "<built-in>") == 0 && F->Kind == MK_PCH) {
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +00001226 PCHPredefinesBlock Block = {
1227 BufferID,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001228 StringRef(BlobStart, BlobLen - 1)
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +00001229 };
1230 PCHPredefinesBuffers.push_back(Block);
Douglas Gregor92b059e2009-04-28 20:33:11 +00001231 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001232
1233 break;
1234 }
1235
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001236 case SM_SLOC_EXPANSION_ENTRY: {
Sebastian Redlc3632732010-10-05 15:59:54 +00001237 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
Chandler Carruthbf340e42011-07-26 03:03:05 +00001238 SourceMgr.createExpansionLoc(SpellingLoc,
Sebastian Redlc3632732010-10-05 15:59:54 +00001239 ReadSourceLocation(*F, Record[2]),
1240 ReadSourceLocation(*F, Record[3]),
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001241 Record[4],
1242 ID,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001243 BaseOffset + Record[0]);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001244 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001245 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001246 }
1247
1248 return Success;
1249}
1250
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001251/// \brief Find the location where the module F is imported.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001252SourceLocation ASTReader::getImportLocation(ModuleFile *F) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001253 if (F->ImportLoc.isValid())
1254 return F->ImportLoc;
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001255
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001256 // Otherwise we have a PCH. It's considered to be "imported" at the first
1257 // location of its includer.
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001258 if (F->ImportedBy.empty() || !F->ImportedBy[0]) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001259 // Main file is the importer. We assume that it is the first entry in the
1260 // entry table. We can't ask the manager, because at the time of PCH loading
1261 // the main file entry doesn't exist yet.
1262 // The very first entry is the invalid instantiation loc, which takes up
1263 // offsets 0 and 1.
1264 return SourceLocation::getFromRawEncoding(2U);
1265 }
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001266 //return F->Loaders[0]->FirstLoc;
1267 return F->ImportedBy[0]->FirstLoc;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001268}
1269
Chris Lattner6367f6d2009-04-27 01:05:14 +00001270/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1271/// specified cursor. Read the abbreviations that are at the top of the block
1272/// and then leave the cursor pointing into the block.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001273bool ASTReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
Chris Lattner6367f6d2009-04-27 01:05:14 +00001274 unsigned BlockID) {
1275 if (Cursor.EnterSubBlock(BlockID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001276 Error("malformed block record in AST file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001277 return Failure;
1278 }
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Chris Lattner6367f6d2009-04-27 01:05:14 +00001280 while (true) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001281 uint64_t Offset = Cursor.GetCurrentBitNo();
Chris Lattner6367f6d2009-04-27 01:05:14 +00001282 unsigned Code = Cursor.ReadCode();
Michael J. Spencer20249a12010-10-21 03:16:25 +00001283
Chris Lattner6367f6d2009-04-27 01:05:14 +00001284 // We expect all abbrevs to be at the start of the block.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001285 if (Code != llvm::bitc::DEFINE_ABBREV) {
1286 Cursor.JumpToBit(Offset);
Chris Lattner6367f6d2009-04-27 01:05:14 +00001287 return false;
Douglas Gregorecdcb882010-10-20 22:00:55 +00001288 }
Chris Lattner6367f6d2009-04-27 01:05:14 +00001289 Cursor.ReadAbbrevRecord();
1290 }
1291}
1292
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001293void ASTReader::ReadMacroRecord(ModuleFile &F, uint64_t Offset) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001294 llvm::BitstreamCursor &Stream = F.MacroCursor;
Mike Stump1eb44332009-09-09 15:08:12 +00001295
Douglas Gregor37e26842009-04-21 23:56:24 +00001296 // Keep track of where we are in the stream, then jump back there
1297 // after reading this macro.
1298 SavedStreamPosition SavedPosition(Stream);
1299
1300 Stream.JumpToBit(Offset);
1301 RecordData Record;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001302 SmallVector<IdentifierInfo*, 16> MacroArgs;
Douglas Gregor37e26842009-04-21 23:56:24 +00001303 MacroInfo *Macro = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001304
Douglas Gregor37e26842009-04-21 23:56:24 +00001305 while (true) {
1306 unsigned Code = Stream.ReadCode();
1307 switch (Code) {
1308 case llvm::bitc::END_BLOCK:
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001309 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001310
1311 case llvm::bitc::ENTER_SUBBLOCK:
1312 // No known subblocks, always skip them.
1313 Stream.ReadSubBlockID();
1314 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001315 Error("malformed block record in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001316 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001317 }
1318 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001319
Douglas Gregor37e26842009-04-21 23:56:24 +00001320 case llvm::bitc::DEFINE_ABBREV:
1321 Stream.ReadAbbrevRecord();
1322 continue;
1323 default: break;
1324 }
1325
1326 // Read a record.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001327 const char *BlobStart = 0;
1328 unsigned BlobLen = 0;
Douglas Gregor37e26842009-04-21 23:56:24 +00001329 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001330 PreprocessorRecordTypes RecType =
Michael J. Spencer20249a12010-10-21 03:16:25 +00001331 (PreprocessorRecordTypes)Stream.ReadRecord(Code, Record, BlobStart,
Douglas Gregorecdcb882010-10-20 22:00:55 +00001332 BlobLen);
Douglas Gregor37e26842009-04-21 23:56:24 +00001333 switch (RecType) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001334 case PP_MACRO_OBJECT_LIKE:
1335 case PP_MACRO_FUNCTION_LIKE: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001336 // If we already have a macro, that means that we've hit the end
1337 // of the definition of the macro we were looking for. We're
1338 // done.
1339 if (Macro)
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001340 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001341
Douglas Gregor95eab172011-07-28 20:55:49 +00001342 IdentifierInfo *II = getLocalIdentifier(F, Record[0]);
Douglas Gregor37e26842009-04-21 23:56:24 +00001343 if (II == 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001344 Error("macro must have a name in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001345 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001346 }
Douglas Gregoreee242f2011-10-27 09:33:13 +00001347
Sebastian Redlc3632732010-10-05 15:59:54 +00001348 SourceLocation Loc = ReadSourceLocation(F, Record[1]);
Douglas Gregor37e26842009-04-21 23:56:24 +00001349 bool isUsed = Record[2];
Mike Stump1eb44332009-09-09 15:08:12 +00001350
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001351 MacroInfo *MI = PP.AllocateMacroInfo(Loc);
Douglas Gregor37e26842009-04-21 23:56:24 +00001352 MI->setIsUsed(isUsed);
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001353 MI->setIsFromAST();
Mike Stump1eb44332009-09-09 15:08:12 +00001354
Douglas Gregoraa93a872011-10-17 15:32:29 +00001355 bool IsPublic = Record[3];
1356 unsigned NextIndex = 4;
1357 MI->setVisibility(IsPublic, ReadSourceLocation(F, Record, NextIndex));
Douglas Gregor7143aab2011-09-01 17:04:32 +00001358
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001359 if (RecType == PP_MACRO_FUNCTION_LIKE) {
Douglas Gregor37e26842009-04-21 23:56:24 +00001360 // Decode function-like macro info.
Douglas Gregor7143aab2011-09-01 17:04:32 +00001361 bool isC99VarArgs = Record[NextIndex++];
1362 bool isGNUVarArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001363 MacroArgs.clear();
Douglas Gregor7143aab2011-09-01 17:04:32 +00001364 unsigned NumArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001365 for (unsigned i = 0; i != NumArgs; ++i)
Douglas Gregor7143aab2011-09-01 17:04:32 +00001366 MacroArgs.push_back(getLocalIdentifier(F, Record[NextIndex++]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001367
1368 // Install function-like macro info.
1369 MI->setIsFunctionLike();
1370 if (isC99VarArgs) MI->setIsC99Varargs();
1371 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor75fdb232009-05-22 22:45:36 +00001372 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001373 PP.getPreprocessorAllocator());
Douglas Gregor37e26842009-04-21 23:56:24 +00001374 }
1375
1376 // Finally, install the macro.
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001377 PP.setMacroInfo(II, MI, /*LoadedFromAST=*/true);
Douglas Gregor37e26842009-04-21 23:56:24 +00001378
1379 // Remember that we saw this macro last so that we add the tokens that
1380 // form its body to it.
1381 Macro = MI;
Michael J. Spencer20249a12010-10-21 03:16:25 +00001382
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00001383 if (NextIndex + 1 == Record.size() && PP.getPreprocessingRecord() &&
1384 Record[NextIndex]) {
1385 // We have a macro definition. Register the association
1386 PreprocessedEntityID
1387 GlobalID = getGlobalPreprocessedEntityID(F, Record[NextIndex]);
1388 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
1389 PPRec.RegisterMacroDefinition(Macro,
1390 PPRec.getPPEntityID(GlobalID-1, /*isLoaded=*/true));
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001391 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001392
Douglas Gregor37e26842009-04-21 23:56:24 +00001393 ++NumMacrosRead;
1394 break;
1395 }
Mike Stump1eb44332009-09-09 15:08:12 +00001396
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001397 case PP_TOKEN: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001398 // If we see a TOKEN before a PP_MACRO_*, then the file is
1399 // erroneous, just pretend we didn't see this.
1400 if (Macro == 0) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001401
Douglas Gregor37e26842009-04-21 23:56:24 +00001402 Token Tok;
1403 Tok.startToken();
Sebastian Redlc3632732010-10-05 15:59:54 +00001404 Tok.setLocation(ReadSourceLocation(F, Record[0]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001405 Tok.setLength(Record[1]);
Douglas Gregor95eab172011-07-28 20:55:49 +00001406 if (IdentifierInfo *II = getLocalIdentifier(F, Record[2]))
Douglas Gregor37e26842009-04-21 23:56:24 +00001407 Tok.setIdentifierInfo(II);
1408 Tok.setKind((tok::TokenKind)Record[3]);
1409 Tok.setFlag((Token::TokenFlags)Record[4]);
1410 Macro->AddTokenToBody(Tok);
1411 break;
1412 }
David Blaikie7530c032012-01-17 06:56:22 +00001413 }
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001414 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001415}
1416
Douglas Gregor86c67d82011-07-28 22:39:26 +00001417PreprocessedEntityID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001418ASTReader::getGlobalPreprocessedEntityID(ModuleFile &M, unsigned LocalID) const {
Argyrios Kyrtzidis1f6d2252011-09-19 20:40:02 +00001419 ContinuousRangeMap<uint32_t, int, 2>::const_iterator
Douglas Gregor272b6bc2011-08-04 18:56:47 +00001420 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS);
1421 assert(I != M.PreprocessedEntityRemap.end()
1422 && "Invalid index into preprocessed entity index remap");
1423
1424 return LocalID + I->second;
Douglas Gregor86c67d82011-07-28 22:39:26 +00001425}
1426
Douglas Gregor98339b92011-08-25 20:47:51 +00001427unsigned HeaderFileInfoTrait::ComputeHash(const char *path) {
1428 return llvm::HashString(llvm::sys::path::filename(path));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001429}
Douglas Gregor98339b92011-08-25 20:47:51 +00001430
1431HeaderFileInfoTrait::internal_key_type
1432HeaderFileInfoTrait::GetInternalKey(const char *path) { return path; }
1433
1434bool HeaderFileInfoTrait::EqualKey(internal_key_type a, internal_key_type b) {
1435 if (strcmp(a, b) == 0)
1436 return true;
1437
1438 if (llvm::sys::path::filename(a) != llvm::sys::path::filename(b))
1439 return false;
Douglas Gregor99a922b2011-12-09 16:22:07 +00001440
1441 // Determine whether the actual files are equivalent.
1442 bool Result = false;
1443 if (llvm::sys::fs::equivalent(a, b, Result))
Douglas Gregor98339b92011-08-25 20:47:51 +00001444 return false;
1445
Douglas Gregor99a922b2011-12-09 16:22:07 +00001446 return Result;
Douglas Gregor98339b92011-08-25 20:47:51 +00001447}
1448
1449std::pair<unsigned, unsigned>
1450HeaderFileInfoTrait::ReadKeyDataLength(const unsigned char*& d) {
1451 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
1452 unsigned DataLen = (unsigned) *d++;
1453 return std::make_pair(KeyLen + 1, DataLen);
1454}
1455
1456HeaderFileInfoTrait::data_type
1457HeaderFileInfoTrait::ReadData(const internal_key_type, const unsigned char *d,
1458 unsigned DataLen) {
1459 const unsigned char *End = d + DataLen;
1460 using namespace clang::io;
1461 HeaderFileInfo HFI;
1462 unsigned Flags = *d++;
1463 HFI.isImport = (Flags >> 5) & 0x01;
1464 HFI.isPragmaOnce = (Flags >> 4) & 0x01;
1465 HFI.DirInfo = (Flags >> 2) & 0x03;
1466 HFI.Resolved = (Flags >> 1) & 0x01;
1467 HFI.IndexHeaderMapHeader = Flags & 0x01;
1468 HFI.NumIncludes = ReadUnalignedLE16(d);
Douglas Gregor541ba162011-10-17 18:53:12 +00001469 HFI.ControllingMacroID = Reader.getGlobalIdentifierID(M,
1470 ReadUnalignedLE32(d));
Douglas Gregor98339b92011-08-25 20:47:51 +00001471 if (unsigned FrameworkOffset = ReadUnalignedLE32(d)) {
1472 // The framework offset is 1 greater than the actual offset,
1473 // since 0 is used as an indicator for "no framework name".
1474 StringRef FrameworkName(FrameworkStrings + FrameworkOffset - 1);
1475 HFI.Framework = HS->getUniqueFrameworkName(FrameworkName);
1476 }
1477
1478 assert(End == d && "Wrong data length in HeaderFileInfo deserialization");
1479 (void)End;
1480
1481 // This HeaderFileInfo was externally loaded.
1482 HFI.External = true;
1483 return HFI;
1484}
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001485
Douglas Gregor13292642011-12-02 15:45:10 +00001486void ASTReader::setIdentifierIsMacro(IdentifierInfo *II, ModuleFile &F,
1487 uint64_t LocalOffset, bool Visible) {
1488 if (Visible) {
1489 // Note that this identifier has a macro definition.
1490 II->setHasMacroDefinition(true);
1491 }
Douglas Gregor295a2a62010-10-30 00:23:06 +00001492
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001493 // Adjust the offset to a global offset.
Douglas Gregor2d2689a2011-07-28 21:16:51 +00001494 UnreadMacroRecordOffsets[II] = F.GlobalBitOffset + LocalOffset;
Douglas Gregor295a2a62010-10-30 00:23:06 +00001495}
1496
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001497void ASTReader::ReadDefinedMacros() {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001498 for (ModuleReverseIterator I = ModuleMgr.rbegin(),
1499 E = ModuleMgr.rend(); I != E; ++I) {
1500 llvm::BitstreamCursor &MacroCursor = (*I)->MacroCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00001501
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001502 // If there was no preprocessor block, skip this file.
1503 if (!MacroCursor.getBitStreamReader())
1504 continue;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001505
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001506 llvm::BitstreamCursor Cursor = MacroCursor;
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001507 Cursor.JumpToBit((*I)->MacroStartOffset);
Michael J. Spencer20249a12010-10-21 03:16:25 +00001508
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001509 RecordData Record;
1510 while (true) {
1511 unsigned Code = Cursor.ReadCode();
Douglas Gregorecdcb882010-10-20 22:00:55 +00001512 if (Code == llvm::bitc::END_BLOCK)
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001513 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001514
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001515 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1516 // No known subblocks, always skip them.
1517 Cursor.ReadSubBlockID();
1518 if (Cursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001519 Error("malformed block record in AST file");
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001520 return;
1521 }
1522 continue;
1523 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001524
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001525 if (Code == llvm::bitc::DEFINE_ABBREV) {
1526 Cursor.ReadAbbrevRecord();
1527 continue;
1528 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001529
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001530 // Read a record.
1531 const char *BlobStart;
1532 unsigned BlobLen;
1533 Record.clear();
1534 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1535 default: // Default behavior: ignore.
1536 break;
Douglas Gregor88a35862010-01-04 19:18:44 +00001537
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001538 case PP_MACRO_OBJECT_LIKE:
1539 case PP_MACRO_FUNCTION_LIKE:
Douglas Gregor95eab172011-07-28 20:55:49 +00001540 getLocalIdentifier(**I, Record[0]);
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001541 break;
1542
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001543 case PP_TOKEN:
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001544 // Ignore tokens.
1545 break;
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001546 }
Douglas Gregor88a35862010-01-04 19:18:44 +00001547 }
1548 }
Douglas Gregor295a2a62010-10-30 00:23:06 +00001549
1550 // Drain the unread macro-record offsets map.
1551 while (!UnreadMacroRecordOffsets.empty())
1552 LoadMacroDefinition(UnreadMacroRecordOffsets.begin());
1553}
1554
1555void ASTReader::LoadMacroDefinition(
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001556 llvm::DenseMap<IdentifierInfo *, uint64_t>::iterator Pos) {
Douglas Gregor295a2a62010-10-30 00:23:06 +00001557 assert(Pos != UnreadMacroRecordOffsets.end() && "Unknown macro definition");
Douglas Gregor295a2a62010-10-30 00:23:06 +00001558 uint64_t Offset = Pos->second;
1559 UnreadMacroRecordOffsets.erase(Pos);
1560
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001561 RecordLocation Loc = getLocalBitOffset(Offset);
1562 ReadMacroRecord(*Loc.F, Loc.Offset);
Douglas Gregor295a2a62010-10-30 00:23:06 +00001563}
1564
1565void ASTReader::LoadMacroDefinition(IdentifierInfo *II) {
1566 llvm::DenseMap<IdentifierInfo *, uint64_t>::iterator Pos
1567 = UnreadMacroRecordOffsets.find(II);
1568 LoadMacroDefinition(Pos);
Douglas Gregor88a35862010-01-04 19:18:44 +00001569}
1570
Douglas Gregoreee242f2011-10-27 09:33:13 +00001571namespace {
1572 /// \brief Visitor class used to look up identifirs in an AST file.
1573 class IdentifierLookupVisitor {
1574 StringRef Name;
Douglas Gregor057df202012-01-18 20:56:22 +00001575 unsigned PriorGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001576 IdentifierInfo *Found;
1577 public:
Douglas Gregor057df202012-01-18 20:56:22 +00001578 IdentifierLookupVisitor(StringRef Name, unsigned PriorGeneration)
1579 : Name(Name), PriorGeneration(PriorGeneration), Found() { }
Douglas Gregoreee242f2011-10-27 09:33:13 +00001580
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001581 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00001582 IdentifierLookupVisitor *This
1583 = static_cast<IdentifierLookupVisitor *>(UserData);
1584
Douglas Gregor057df202012-01-18 20:56:22 +00001585 // If we've already searched this module file, skip it now.
1586 if (M.Generation <= This->PriorGeneration)
1587 return true;
1588
Douglas Gregoreee242f2011-10-27 09:33:13 +00001589 ASTIdentifierLookupTable *IdTable
1590 = (ASTIdentifierLookupTable *)M.IdentifierLookupTable;
1591 if (!IdTable)
1592 return false;
1593
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001594 ASTIdentifierLookupTrait Trait(IdTable->getInfoObj().getReader(),
1595 M, This->Found);
1596
Douglas Gregoreee242f2011-10-27 09:33:13 +00001597 std::pair<const char*, unsigned> Key(This->Name.begin(),
1598 This->Name.size());
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001599 ASTIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Trait);
Douglas Gregoreee242f2011-10-27 09:33:13 +00001600 if (Pos == IdTable->end())
1601 return false;
1602
1603 // Dereferencing the iterator has the effect of building the
1604 // IdentifierInfo node and populating it with the various
1605 // declarations it needs.
1606 This->Found = *Pos;
1607 return true;
1608 }
1609
1610 // \brief Retrieve the identifier info found within the module
1611 // files.
1612 IdentifierInfo *getIdentifierInfo() const { return Found; }
1613 };
1614}
1615
1616void ASTReader::updateOutOfDateIdentifier(IdentifierInfo &II) {
Douglas Gregor057df202012-01-18 20:56:22 +00001617 unsigned PriorGeneration = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001618 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001619 PriorGeneration = IdentifierGeneration[&II];
1620
1621 IdentifierLookupVisitor Visitor(II.getName(), PriorGeneration);
1622 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
1623 markIdentifierUpToDate(&II);
1624}
1625
1626void ASTReader::markIdentifierUpToDate(IdentifierInfo *II) {
1627 if (!II)
1628 return;
1629
1630 II->setOutOfDate(false);
1631
1632 // Update the generation for this identifier.
David Blaikie4e4d0842012-03-11 07:00:24 +00001633 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001634 IdentifierGeneration[II] = CurrentGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001635}
1636
Chris Lattner5f9e2722011-07-23 10:55:15 +00001637const FileEntry *ASTReader::getFileEntry(StringRef filenameStrRef) {
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001638 std::string Filename = filenameStrRef;
1639 MaybeAddSystemRootToFilename(Filename);
1640 const FileEntry *File = FileMgr.getFile(Filename);
1641 if (File == 0 && !OriginalDir.empty() && !CurrentDir.empty() &&
1642 OriginalDir != CurrentDir) {
1643 std::string resolved = resolveFileRelativeToOriginalDir(Filename,
1644 OriginalDir,
1645 CurrentDir);
1646 if (!resolved.empty())
1647 File = FileMgr.getFile(resolved);
1648 }
1649
1650 return File;
1651}
1652
Douglas Gregore650c8c2009-07-07 00:12:59 +00001653/// \brief If we are loading a relocatable PCH file, and the filename is
1654/// not an absolute path, add the system root to the beginning of the file
1655/// name.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001656void ASTReader::MaybeAddSystemRootToFilename(std::string &Filename) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001657 // If this is not a relocatable PCH file, there's nothing to do.
1658 if (!RelocatablePCH)
1659 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001660
Michael J. Spencer256053b2010-12-17 21:22:22 +00001661 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
Douglas Gregore650c8c2009-07-07 00:12:59 +00001662 return;
1663
Douglas Gregor832d6202011-07-22 16:35:34 +00001664 if (isysroot.empty()) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001665 // If no system root was given, default to '/'
1666 Filename.insert(Filename.begin(), '/');
1667 return;
1668 }
Mike Stump1eb44332009-09-09 15:08:12 +00001669
Douglas Gregor832d6202011-07-22 16:35:34 +00001670 unsigned Length = isysroot.size();
Douglas Gregore650c8c2009-07-07 00:12:59 +00001671 if (isysroot[Length - 1] != '/')
1672 Filename.insert(Filename.begin(), '/');
Mike Stump1eb44332009-09-09 15:08:12 +00001673
Douglas Gregor832d6202011-07-22 16:35:34 +00001674 Filename.insert(Filename.begin(), isysroot.begin(), isysroot.end());
Douglas Gregore650c8c2009-07-07 00:12:59 +00001675}
1676
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001677ASTReader::ASTReadResult
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001678ASTReader::ReadASTBlock(ModuleFile &F) {
Sebastian Redl9137a522010-07-16 17:50:48 +00001679 llvm::BitstreamCursor &Stream = F.Stream;
1680
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001681 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001682 Error("malformed block record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001683 return Failure;
1684 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001685
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001686 // Read all of the records and blocks for the ASt file.
Douglas Gregor8038d512009-04-10 17:25:41 +00001687 RecordData Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001688 while (!Stream.AtEndOfStream()) {
1689 unsigned Code = Stream.ReadCode();
1690 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001691 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001692 Error("error at end of module block in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001693 return Failure;
1694 }
Chris Lattner7356a312009-04-11 21:15:38 +00001695
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001696 return Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001697 }
1698
1699 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1700 switch (Stream.ReadSubBlockID()) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001701 case DECLTYPES_BLOCK_ID:
Chris Lattner6367f6d2009-04-27 01:05:14 +00001702 // We lazily load the decls block, but we want to set up the
1703 // DeclsCursor cursor to point into it. Clone our current bitcode
1704 // cursor to it, enter the block and read the abbrevs in that block.
1705 // With the main cursor, we just skip over it.
Sebastian Redl9137a522010-07-16 17:50:48 +00001706 F.DeclsCursor = Stream;
Chris Lattner6367f6d2009-04-27 01:05:14 +00001707 if (Stream.SkipBlock() || // Skip with the main cursor.
1708 // Read the abbrevs.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001709 ReadBlockAbbrevs(F.DeclsCursor, DECLTYPES_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001710 Error("malformed block record in AST file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001711 return Failure;
1712 }
1713 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001714
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00001715 case DECL_UPDATES_BLOCK_ID:
1716 if (Stream.SkipBlock()) {
1717 Error("malformed block record in AST file");
1718 return Failure;
1719 }
1720 break;
1721
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001722 case PREPROCESSOR_BLOCK_ID:
Sebastian Redl9137a522010-07-16 17:50:48 +00001723 F.MacroCursor = Stream;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001724 if (!PP.getExternalSource())
1725 PP.setExternalSource(this);
Douglas Gregor88a35862010-01-04 19:18:44 +00001726
Douglas Gregorecdcb882010-10-20 22:00:55 +00001727 if (Stream.SkipBlock() ||
1728 ReadBlockAbbrevs(F.MacroCursor, PREPROCESSOR_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001729 Error("malformed block record in AST file");
Chris Lattner7356a312009-04-11 21:15:38 +00001730 return Failure;
1731 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00001732 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo();
Chris Lattner7356a312009-04-11 21:15:38 +00001733 break;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001734
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001735 case PREPROCESSOR_DETAIL_BLOCK_ID:
1736 F.PreprocessorDetailCursor = Stream;
1737 if (Stream.SkipBlock() ||
1738 ReadBlockAbbrevs(F.PreprocessorDetailCursor,
1739 PREPROCESSOR_DETAIL_BLOCK_ID)) {
1740 Error("malformed preprocessor detail record in AST file");
1741 return Failure;
1742 }
1743 F.PreprocessorDetailStartOffset
1744 = F.PreprocessorDetailCursor.GetCurrentBitNo();
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001745
1746 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00001747 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001748 if (!PP.getPreprocessingRecord()->getExternalSource())
1749 PP.getPreprocessingRecord()->SetExternalSource(*this);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001750 break;
1751
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001752 case SOURCE_MANAGER_BLOCK_ID:
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001753 switch (ReadSourceManagerBlock(F)) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00001754 case Success:
1755 break;
1756
1757 case Failure:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001758 Error("malformed source manager block in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001759 return Failure;
Douglas Gregore1d918e2009-04-10 23:10:45 +00001760
1761 case IgnorePCH:
1762 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001763 }
Douglas Gregor14f79002009-04-10 03:52:48 +00001764 break;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001765
1766 case SUBMODULE_BLOCK_ID:
1767 switch (ReadSubmoduleBlock(F)) {
1768 case Success:
1769 break;
1770
1771 case Failure:
1772 Error("malformed submodule block in AST file");
1773 return Failure;
1774
1775 case IgnorePCH:
1776 return IgnorePCH;
1777 }
1778 break;
1779
1780 default:
1781 if (!Stream.SkipBlock())
1782 break;
1783 Error("malformed block record in AST file");
1784 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001785 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001786 continue;
1787 }
1788
1789 if (Code == llvm::bitc::DEFINE_ABBREV) {
1790 Stream.ReadAbbrevRecord();
1791 continue;
1792 }
1793
1794 // Read and process a record.
1795 Record.clear();
Douglas Gregor2bec0412009-04-10 21:16:55 +00001796 const char *BlobStart = 0;
1797 unsigned BlobLen = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001798 switch ((ASTRecordTypes)Stream.ReadRecord(Code, Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00001799 &BlobStart, &BlobLen)) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001800 default: // Default behavior: ignore.
1801 break;
1802
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001803 case METADATA: {
1804 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
1805 Diag(Record[0] < VERSION_MAJOR? diag::warn_pch_version_too_old
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001806 : diag::warn_pch_version_too_new);
1807 return IgnorePCH;
1808 }
1809
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00001810 bool hasErrors = Record[5];
1811 if (hasErrors && !DisableValidation && !AllowASTWithCompilerErrors) {
1812 Diag(diag::err_pch_with_compiler_errors);
1813 return IgnorePCH;
1814 }
1815
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001816 RelocatablePCH = Record[4];
1817 if (Listener) {
1818 std::string TargetTriple(BlobStart, BlobLen);
1819 if (Listener->ReadTargetTriple(TargetTriple))
1820 return IgnorePCH;
1821 }
1822 break;
1823 }
1824
Douglas Gregore95b9192011-08-17 21:07:30 +00001825 case IMPORTS: {
1826 // Load each of the imported PCH files.
1827 unsigned Idx = 0, N = Record.size();
1828 while (Idx < N) {
1829 // Read information about the AST file.
1830 ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
1831 unsigned Length = Record[Idx++];
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001832 SmallString<128> ImportedFile(Record.begin() + Idx,
Douglas Gregore95b9192011-08-17 21:07:30 +00001833 Record.begin() + Idx + Length);
1834 Idx += Length;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001835
Douglas Gregore95b9192011-08-17 21:07:30 +00001836 // Load the AST file.
Douglas Gregor10bc00f2011-08-18 04:12:04 +00001837 switch(ReadASTCore(ImportedFile, ImportedKind, &F)) {
Douglas Gregore95b9192011-08-17 21:07:30 +00001838 case Failure: return Failure;
1839 // If we have to ignore the dependency, we'll have to ignore this too.
1840 case IgnorePCH: return IgnorePCH;
1841 case Success: break;
1842 }
1843 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001844 break;
1845 }
1846
Douglas Gregora119da02011-08-02 16:26:37 +00001847 case TYPE_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00001848 if (F.LocalNumTypes != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001849 Error("duplicate TYPE_OFFSET record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001850 return Failure;
1851 }
Sebastian Redl12d6da02010-07-19 22:06:55 +00001852 F.TypeOffsets = (const uint32_t *)BlobStart;
1853 F.LocalNumTypes = Record[0];
Douglas Gregore3605012011-08-02 18:32:54 +00001854 unsigned LocalBaseTypeIndex = Record[1];
1855 F.BaseTypeIndex = getTotalNumTypes();
Douglas Gregor1e849b62011-07-29 00:21:44 +00001856
Douglas Gregora119da02011-08-02 16:26:37 +00001857 if (F.LocalNumTypes > 0) {
1858 // Introduce the global -> local mapping for types within this module.
1859 GlobalTypeMap.insert(std::make_pair(getTotalNumTypes(), &F));
1860
1861 // Introduce the local -> global mapping for types within this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001862 F.TypeRemap.insertOrReplace(
1863 std::make_pair(LocalBaseTypeIndex,
1864 F.BaseTypeIndex - LocalBaseTypeIndex));
Douglas Gregora119da02011-08-02 16:26:37 +00001865
1866 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes);
1867 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001868 break;
Douglas Gregora119da02011-08-02 16:26:37 +00001869 }
1870
Douglas Gregor496c7092011-08-03 15:48:04 +00001871 case DECL_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00001872 if (F.LocalNumDecls != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001873 Error("duplicate DECL_OFFSET record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001874 return Failure;
1875 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001876 F.DeclOffsets = (const DeclOffset *)BlobStart;
Sebastian Redl12d6da02010-07-19 22:06:55 +00001877 F.LocalNumDecls = Record[0];
Douglas Gregor496c7092011-08-03 15:48:04 +00001878 unsigned LocalBaseDeclID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00001879 F.BaseDeclID = getTotalNumDecls();
Douglas Gregor96e973f2011-07-20 00:27:43 +00001880
Douglas Gregor496c7092011-08-03 15:48:04 +00001881 if (F.LocalNumDecls > 0) {
1882 // Introduce the global -> local mapping for declarations within this
1883 // module.
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001884 GlobalDeclMap.insert(
1885 std::make_pair(getTotalNumDecls() + NUM_PREDEF_DECL_IDS, &F));
Douglas Gregor496c7092011-08-03 15:48:04 +00001886
1887 // Introduce the local -> global mapping for declarations within this
1888 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001889 F.DeclRemap.insertOrReplace(
1890 std::make_pair(LocalBaseDeclID, F.BaseDeclID - LocalBaseDeclID));
Douglas Gregor496c7092011-08-03 15:48:04 +00001891
Douglas Gregora1be2782011-12-17 23:38:30 +00001892 // Introduce the global -> local mapping for declarations within this
1893 // module.
1894 F.GlobalToLocalDeclIDs[&F] = LocalBaseDeclID;
1895
Douglas Gregor496c7092011-08-03 15:48:04 +00001896 DeclsLoaded.resize(DeclsLoaded.size() + F.LocalNumDecls);
1897 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001898 break;
Douglas Gregor496c7092011-08-03 15:48:04 +00001899 }
1900
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001901 case TU_UPDATE_LEXICAL: {
Douglas Gregor35942772011-09-09 21:34:22 +00001902 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00001903 DeclContextInfo &Info = F.DeclContextInfos[TU];
1904 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair *>(BlobStart);
1905 Info.NumLexicalDecls
1906 = static_cast<unsigned int>(BlobLen / sizeof(KindDeclIDPair));
Douglas Gregor35942772011-09-09 21:34:22 +00001907 TU->setHasExternalLexicalStorage(true);
Sebastian Redld692af72010-07-27 18:24:41 +00001908 break;
1909 }
1910
Sebastian Redle1dde812010-08-24 00:50:04 +00001911 case UPDATE_VISIBLE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00001912 unsigned Idx = 0;
1913 serialization::DeclID ID = ReadDeclID(F, Record, Idx);
Sebastian Redle1dde812010-08-24 00:50:04 +00001914 void *Table = ASTDeclContextNameLookupTable::Create(
Douglas Gregor496c7092011-08-03 15:48:04 +00001915 (const unsigned char *)BlobStart + Record[Idx++],
Sebastian Redle1dde812010-08-24 00:50:04 +00001916 (const unsigned char *)BlobStart,
Douglas Gregor393f2492011-07-22 00:38:23 +00001917 ASTDeclContextNameLookupTrait(*this, F));
Douglas Gregor35942772011-09-09 21:34:22 +00001918 if (ID == PREDEF_DECL_TRANSLATION_UNIT_ID) { // Is it the TU?
1919 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00001920 F.DeclContextInfos[TU].NameLookupTableData = Table;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001921 TU->setHasExternalVisibleStorage(true);
Sebastian Redle1dde812010-08-24 00:50:04 +00001922 } else
Douglas Gregor496c7092011-08-03 15:48:04 +00001923 PendingVisibleUpdates[ID].push_back(std::make_pair(Table, &F));
Sebastian Redle1dde812010-08-24 00:50:04 +00001924 break;
1925 }
1926
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001927 case LANGUAGE_OPTIONS:
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001928 if (ParseLanguageOptions(Record) && !DisableValidation)
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001929 return IgnorePCH;
1930 break;
Douglas Gregor2bec0412009-04-10 21:16:55 +00001931
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001932 case IDENTIFIER_TABLE:
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001933 F.IdentifierTableData = BlobStart;
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001934 if (Record[0]) {
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001935 F.IdentifierLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001936 = ASTIdentifierLookupTable::Create(
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001937 (const unsigned char *)F.IdentifierTableData + Record[0],
1938 (const unsigned char *)F.IdentifierTableData,
Sebastian Redlc3632732010-10-05 15:59:54 +00001939 ASTIdentifierLookupTrait(*this, F));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001940
1941 PP.getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001942 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001943 break;
1944
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001945 case IDENTIFIER_OFFSET: {
Sebastian Redl2da08f92010-07-19 22:28:42 +00001946 if (F.LocalNumIdentifiers != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001947 Error("duplicate IDENTIFIER_OFFSET record in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00001948 return Failure;
1949 }
Sebastian Redl2da08f92010-07-19 22:28:42 +00001950 F.IdentifierOffsets = (const uint32_t *)BlobStart;
1951 F.LocalNumIdentifiers = Record[0];
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001952 unsigned LocalBaseIdentifierID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00001953 F.BaseIdentifierID = getTotalNumIdentifiers();
Douglas Gregor67268d02011-07-20 00:59:32 +00001954
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001955 if (F.LocalNumIdentifiers > 0) {
1956 // Introduce the global -> local mapping for identifiers within this
1957 // module.
1958 GlobalIdentifierMap.insert(std::make_pair(getTotalNumIdentifiers() + 1,
1959 &F));
1960
1961 // Introduce the local -> global mapping for identifiers within this
1962 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001963 F.IdentifierRemap.insertOrReplace(
1964 std::make_pair(LocalBaseIdentifierID,
1965 F.BaseIdentifierID - LocalBaseIdentifierID));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001966
1967 IdentifiersLoaded.resize(IdentifiersLoaded.size()
1968 + F.LocalNumIdentifiers);
1969 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001970 break;
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001971 }
1972
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001973 case EXTERNAL_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001974 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1975 ExternalDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorfdd01722009-04-14 00:24:19 +00001976 break;
Douglas Gregor3e1af842009-04-17 22:13:46 +00001977
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001978 case SPECIAL_TYPES:
Douglas Gregor393f2492011-07-22 00:38:23 +00001979 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1980 SpecialTypes.push_back(getGlobalTypeID(F, Record[I]));
Douglas Gregorad1de002009-04-18 05:55:16 +00001981 break;
1982
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001983 case STATISTICS:
Sebastian Redl518d8cb2010-07-20 21:20:32 +00001984 TotalNumStatements += Record[0];
1985 TotalNumMacros += Record[1];
1986 TotalLexicalDeclContexts += Record[2];
1987 TotalVisibleDeclContexts += Record[3];
Douglas Gregor3e1af842009-04-17 22:13:46 +00001988 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001989
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001990 case UNUSED_FILESCOPED_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001991 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1992 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
Tanya Lattnere6bbc012010-02-12 00:07:30 +00001993 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001994
Sean Huntebcbe1d2011-05-04 23:29:54 +00001995 case DELEGATING_CTORS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001996 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1997 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00001998 break;
1999
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002000 case WEAK_UNDECLARED_IDENTIFIERS:
Douglas Gregor31e37b22011-07-28 18:09:57 +00002001 if (Record.size() % 4 != 0) {
2002 Error("invalid weak identifiers record");
2003 return Failure;
2004 }
2005
2006 // FIXME: Ignore weak undeclared identifiers from non-original PCH
2007 // files. This isn't the way to do it :)
2008 WeakUndeclaredIdentifiers.clear();
2009
2010 // Translate the weak, undeclared identifiers into global IDs.
2011 for (unsigned I = 0, N = Record.size(); I < N; /* in loop */) {
2012 WeakUndeclaredIdentifiers.push_back(
2013 getGlobalIdentifierID(F, Record[I++]));
2014 WeakUndeclaredIdentifiers.push_back(
2015 getGlobalIdentifierID(F, Record[I++]));
2016 WeakUndeclaredIdentifiers.push_back(
2017 ReadSourceLocation(F, Record, I).getRawEncoding());
2018 WeakUndeclaredIdentifiers.push_back(Record[I++]);
2019 }
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002020 break;
2021
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002022 case LOCALLY_SCOPED_EXTERNAL_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002023 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2024 LocallyScopedExternalDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregor14c22f22009-04-22 22:18:58 +00002025 break;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002026
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002027 case SELECTOR_OFFSETS: {
Sebastian Redl059612d2010-08-03 21:58:15 +00002028 F.SelectorOffsets = (const uint32_t *)BlobStart;
Sebastian Redl725cd962010-08-04 20:40:17 +00002029 F.LocalNumSelectors = Record[0];
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002030 unsigned LocalBaseSelectorID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00002031 F.BaseSelectorID = getTotalNumSelectors();
Douglas Gregor96958cb2011-07-20 01:10:58 +00002032
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002033 if (F.LocalNumSelectors > 0) {
2034 // Introduce the global -> local mapping for selectors within this
2035 // module.
2036 GlobalSelectorMap.insert(std::make_pair(getTotalNumSelectors()+1, &F));
2037
2038 // Introduce the local -> global mapping for selectors within this
2039 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002040 F.SelectorRemap.insertOrReplace(
2041 std::make_pair(LocalBaseSelectorID,
2042 F.BaseSelectorID - LocalBaseSelectorID));
Douglas Gregor83941df2009-04-25 17:48:32 +00002043
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002044 SelectorsLoaded.resize(SelectorsLoaded.size() + F.LocalNumSelectors);
2045 }
2046 break;
2047 }
2048
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002049 case METHOD_POOL:
Sebastian Redl725cd962010-08-04 20:40:17 +00002050 F.SelectorLookupTableData = (const unsigned char *)BlobStart;
Douglas Gregor83941df2009-04-25 17:48:32 +00002051 if (Record[0])
Sebastian Redl725cd962010-08-04 20:40:17 +00002052 F.SelectorLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002053 = ASTSelectorLookupTable::Create(
Sebastian Redl725cd962010-08-04 20:40:17 +00002054 F.SelectorLookupTableData + Record[0],
2055 F.SelectorLookupTableData,
Douglas Gregor409448c2011-07-21 22:35:25 +00002056 ASTSelectorLookupTrait(*this, F));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00002057 TotalNumMethodPoolEntries += Record[1];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002058 break;
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002059
Sebastian Redl4ee5a6f2010-09-22 00:42:30 +00002060 case REFERENCED_SELECTOR_POOL:
Douglas Gregor8451ec72011-07-28 14:41:43 +00002061 if (!Record.empty()) {
2062 for (unsigned Idx = 0, N = Record.size() - 1; Idx < N; /* in loop */) {
2063 ReferencedSelectorsData.push_back(getGlobalSelectorID(F,
2064 Record[Idx++]));
2065 ReferencedSelectorsData.push_back(ReadSourceLocation(F, Record, Idx).
2066 getRawEncoding());
2067 }
2068 }
Fariborz Jahanian32019832010-07-23 19:11:11 +00002069 break;
2070
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002071 case PP_COUNTER_VALUE:
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002072 if (!Record.empty() && Listener)
2073 Listener->ReadCounter(Record[0]);
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002074 break;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002075
2076 case FILE_SORTED_DECLS:
2077 F.FileSortedDecls = (const DeclID *)BlobStart;
2078 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002079
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002080 case SOURCE_LOCATION_OFFSETS: {
2081 F.SLocEntryOffsets = (const uint32_t *)BlobStart;
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002082 F.LocalNumSLocEntries = Record[0];
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002083 unsigned SLocSpaceSize = Record[1];
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002084 llvm::tie(F.SLocEntryBaseID, F.SLocEntryBaseOffset) =
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002085 SourceMgr.AllocateLoadedSLocEntries(F.LocalNumSLocEntries,
2086 SLocSpaceSize);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002087 // Make our entry in the range map. BaseID is negative and growing, so
2088 // we invert it. Because we invert it, though, we need the other end of
2089 // the range.
2090 unsigned RangeStart =
2091 unsigned(-F.SLocEntryBaseID) - F.LocalNumSLocEntries + 1;
2092 GlobalSLocEntryMap.insert(std::make_pair(RangeStart, &F));
2093 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset);
2094
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002095 // SLocEntryBaseOffset is lower than MaxLoadedOffset and decreasing.
2096 assert((F.SLocEntryBaseOffset & (1U << 31U)) == 0);
2097 GlobalSLocOffsetMap.insert(
2098 std::make_pair(SourceManager::MaxLoadedOffset - F.SLocEntryBaseOffset
2099 - SLocSpaceSize,&F));
2100
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002101 // Initialize the remapping table.
2102 // Invalid stays invalid.
2103 F.SLocRemap.insert(std::make_pair(0U, 0));
2104 // This module. Base was 2 when being compiled.
2105 F.SLocRemap.insert(std::make_pair(2U,
2106 static_cast<int>(F.SLocEntryBaseOffset - 2)));
Douglas Gregor0cdd7982011-07-21 18:46:38 +00002107
2108 TotalNumSLocEntries += F.LocalNumSLocEntries;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002109 break;
2110 }
2111
Douglas Gregor5d51a1d2011-08-01 16:01:55 +00002112 case MODULE_OFFSET_MAP: {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002113 // Additional remapping information.
2114 const unsigned char *Data = (const unsigned char*)BlobStart;
2115 const unsigned char *DataEnd = Data + BlobLen;
Douglas Gregorf33740e2011-08-02 10:56:51 +00002116
2117 // Continuous range maps we may be updating in our module.
2118 ContinuousRangeMap<uint32_t, int, 2>::Builder SLocRemap(F.SLocRemap);
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002119 ContinuousRangeMap<uint32_t, int, 2>::Builder
2120 IdentifierRemap(F.IdentifierRemap);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002121 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002122 PreprocessedEntityRemap(F.PreprocessedEntityRemap);
2123 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor26ced122011-12-01 00:59:36 +00002124 SubmoduleRemap(F.SubmoduleRemap);
2125 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002126 SelectorRemap(F.SelectorRemap);
Douglas Gregor496c7092011-08-03 15:48:04 +00002127 ContinuousRangeMap<uint32_t, int, 2>::Builder DeclRemap(F.DeclRemap);
Douglas Gregora119da02011-08-02 16:26:37 +00002128 ContinuousRangeMap<uint32_t, int, 2>::Builder TypeRemap(F.TypeRemap);
2129
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002130 while(Data < DataEnd) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002131 uint16_t Len = io::ReadUnalignedLE16(Data);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002132 StringRef Name = StringRef((const char*)Data, Len);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002133 Data += Len;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002134 ModuleFile *OM = ModuleMgr.lookup(Name);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002135 if (!OM) {
2136 Error("SourceLocation remap refers to unknown module");
2137 return Failure;
2138 }
Douglas Gregorf33740e2011-08-02 10:56:51 +00002139
2140 uint32_t SLocOffset = io::ReadUnalignedLE32(Data);
2141 uint32_t IdentifierIDOffset = io::ReadUnalignedLE32(Data);
2142 uint32_t PreprocessedEntityIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregor26ced122011-12-01 00:59:36 +00002143 uint32_t SubmoduleIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002144 uint32_t SelectorIDOffset = io::ReadUnalignedLE32(Data);
2145 uint32_t DeclIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregora119da02011-08-02 16:26:37 +00002146 uint32_t TypeIndexOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002147
2148 // Source location offset is mapped to OM->SLocEntryBaseOffset.
2149 SLocRemap.insert(std::make_pair(SLocOffset,
2150 static_cast<int>(OM->SLocEntryBaseOffset - SLocOffset)));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002151 IdentifierRemap.insert(
2152 std::make_pair(IdentifierIDOffset,
2153 OM->BaseIdentifierID - IdentifierIDOffset));
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002154 PreprocessedEntityRemap.insert(
2155 std::make_pair(PreprocessedEntityIDOffset,
2156 OM->BasePreprocessedEntityID - PreprocessedEntityIDOffset));
Douglas Gregor26ced122011-12-01 00:59:36 +00002157 SubmoduleRemap.insert(std::make_pair(SubmoduleIDOffset,
2158 OM->BaseSubmoduleID - SubmoduleIDOffset));
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002159 SelectorRemap.insert(std::make_pair(SelectorIDOffset,
2160 OM->BaseSelectorID - SelectorIDOffset));
Douglas Gregor496c7092011-08-03 15:48:04 +00002161 DeclRemap.insert(std::make_pair(DeclIDOffset,
2162 OM->BaseDeclID - DeclIDOffset));
2163
Douglas Gregora119da02011-08-02 16:26:37 +00002164 TypeRemap.insert(std::make_pair(TypeIndexOffset,
Douglas Gregore3605012011-08-02 18:32:54 +00002165 OM->BaseTypeIndex - TypeIndexOffset));
Douglas Gregora1be2782011-12-17 23:38:30 +00002166
2167 // Global -> local mappings.
2168 F.GlobalToLocalDeclIDs[OM] = DeclIDOffset;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002169 }
2170 break;
2171 }
2172
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002173 case SOURCE_MANAGER_LINE_TABLE:
2174 if (ParseLineTable(F, Record))
2175 return Failure;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002176 break;
2177
Argyrios Kyrtzidis4cdb0e22011-06-02 20:01:46 +00002178 case FILE_SOURCE_LOCATION_OFFSETS:
2179 F.SLocFileOffsets = (const uint32_t *)BlobStart;
2180 F.LocalNumSLocFileEntries = Record[0];
2181 break;
2182
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002183 case SOURCE_LOCATION_PRELOADS: {
2184 // Need to transform from the local view (1-based IDs) to the global view,
2185 // which is based off F.SLocEntryBaseID.
Douglas Gregorf249bf32011-08-25 21:09:44 +00002186 if (!F.PreloadSLocEntries.empty()) {
2187 Error("Multiple SOURCE_LOCATION_PRELOADS records in AST file");
2188 return Failure;
2189 }
2190
2191 F.PreloadSLocEntries.swap(Record);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002192 break;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002193 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002194
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002195 case STAT_CACHE: {
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00002196 if (!DisableStatCache) {
2197 ASTStatCache *MyStatCache =
2198 new ASTStatCache((const unsigned char *)BlobStart + Record[0],
2199 (const unsigned char *)BlobStart,
2200 NumStatHits, NumStatMisses);
2201 FileMgr.addStatCache(MyStatCache);
2202 F.StatCache = MyStatCache;
2203 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002204 break;
Douglas Gregor52e71082009-10-16 18:18:30 +00002205 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002206
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002207 case EXT_VECTOR_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002208 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2209 ExtVectorDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorb81c1702009-04-27 20:06:05 +00002210 break;
2211
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002212 case VTABLE_USES:
Douglas Gregordfe65432011-07-28 19:11:31 +00002213 if (Record.size() % 3 != 0) {
2214 Error("Invalid VTABLE_USES record");
2215 return Failure;
2216 }
2217
Sebastian Redl40566802010-08-05 18:21:25 +00002218 // Later tables overwrite earlier ones.
Douglas Gregordfe65432011-07-28 19:11:31 +00002219 // FIXME: Modules will have some trouble with this. This is clearly not
2220 // the right way to do this.
Douglas Gregor409448c2011-07-21 22:35:25 +00002221 VTableUses.clear();
Douglas Gregordfe65432011-07-28 19:11:31 +00002222
2223 for (unsigned Idx = 0, N = Record.size(); Idx != N; /* In loop */) {
2224 VTableUses.push_back(getGlobalDeclID(F, Record[Idx++]));
2225 VTableUses.push_back(
2226 ReadSourceLocation(F, Record, Idx).getRawEncoding());
2227 VTableUses.push_back(Record[Idx++]);
2228 }
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002229 break;
2230
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002231 case DYNAMIC_CLASSES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002232 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2233 DynamicClasses.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002234 break;
2235
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002236 case PENDING_IMPLICIT_INSTANTIATIONS:
Douglas Gregorf2abb522011-07-28 19:26:52 +00002237 if (PendingInstantiations.size() % 2 != 0) {
2238 Error("Invalid PENDING_IMPLICIT_INSTANTIATIONS block");
2239 return Failure;
2240 }
2241
2242 // Later lists of pending instantiations overwrite earlier ones.
2243 // FIXME: This is most certainly wrong for modules.
2244 PendingInstantiations.clear();
2245 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
2246 PendingInstantiations.push_back(getGlobalDeclID(F, Record[I++]));
2247 PendingInstantiations.push_back(
2248 ReadSourceLocation(F, Record, I).getRawEncoding());
2249 }
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002250 break;
2251
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002252 case SEMA_DECL_REFS:
Sebastian Redl40566802010-08-05 18:21:25 +00002253 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002254 // FIXME: Modules will have some trouble with this.
2255 SemaDeclRefs.clear();
2256 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2257 SemaDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002258 break;
2259
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002260 case ORIGINAL_FILE_NAME:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002261 // The primary AST will be the last to get here, so it will be the one
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002262 // that's used.
Daniel Dunbar7b5a1212009-11-11 05:29:04 +00002263 ActualOriginalFileName.assign(BlobStart, BlobLen);
2264 OriginalFileName = ActualOriginalFileName;
Douglas Gregore650c8c2009-07-07 00:12:59 +00002265 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregorb64c1932009-05-12 01:31:05 +00002266 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002267
Douglas Gregor31d375f2011-05-06 21:43:30 +00002268 case ORIGINAL_FILE_ID:
2269 OriginalFileID = FileID::get(Record[0]);
2270 break;
2271
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002272 case ORIGINAL_PCH_DIR:
2273 // The primary AST will be the last to get here, so it will be the one
2274 // that's used.
2275 OriginalDir.assign(BlobStart, BlobLen);
2276 break;
2277
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002278 case VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek974be4d2010-02-12 23:31:14 +00002279 const std::string &CurBranch = getClangFullRepositoryVersion();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002280 StringRef ASTBranch(BlobStart, BlobLen);
2281 if (StringRef(CurBranch) != ASTBranch && !DisableValidation) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002282 Diag(diag::warn_pch_different_branch) << ASTBranch << CurBranch;
Douglas Gregor445e23e2009-10-05 21:07:28 +00002283 return IgnorePCH;
2284 }
2285 break;
2286 }
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002287
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002288 case PPD_ENTITIES_OFFSETS: {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002289 F.PreprocessedEntityOffsets = (const PPEntityOffset *)BlobStart;
2290 assert(BlobLen % sizeof(PPEntityOffset) == 0);
2291 F.NumPreprocessedEntities = BlobLen / sizeof(PPEntityOffset);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002292
2293 unsigned LocalBasePreprocessedEntityID = Record[0];
Douglas Gregorfb2d9e02011-08-04 16:36:56 +00002294
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002295 unsigned StartingID;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002296 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00002297 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002298 if (!PP.getPreprocessingRecord()->getExternalSource())
2299 PP.getPreprocessingRecord()->SetExternalSource(*this);
2300 StartingID
2301 = PP.getPreprocessingRecord()
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002302 ->allocateLoadedEntities(F.NumPreprocessedEntities);
Douglas Gregor9827a802011-07-29 00:56:45 +00002303 F.BasePreprocessedEntityID = StartingID;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002304
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002305 if (F.NumPreprocessedEntities > 0) {
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002306 // Introduce the global -> local mapping for preprocessed entities in
2307 // this module.
2308 GlobalPreprocessedEntityMap.insert(std::make_pair(StartingID, &F));
2309
2310 // Introduce the local -> global mapping for preprocessed entities in
2311 // this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002312 F.PreprocessedEntityRemap.insertOrReplace(
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002313 std::make_pair(LocalBasePreprocessedEntityID,
2314 F.BasePreprocessedEntityID - LocalBasePreprocessedEntityID));
2315 }
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002316
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002317 break;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002318 }
2319
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002320 case DECL_UPDATE_OFFSETS: {
2321 if (Record.size() % 2 != 0) {
2322 Error("invalid DECL_UPDATE_OFFSETS block in AST file");
2323 return Failure;
2324 }
2325 for (unsigned I = 0, N = Record.size(); I != N; I += 2)
Douglas Gregor496c7092011-08-03 15:48:04 +00002326 DeclUpdateOffsets[getGlobalDeclID(F, Record[I])]
2327 .push_back(std::make_pair(&F, Record[I+1]));
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002328 break;
2329 }
2330
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002331 case DECL_REPLACEMENTS: {
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002332 if (Record.size() % 3 != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002333 Error("invalid DECL_REPLACEMENTS block in AST file");
Sebastian Redl0b17c612010-08-13 00:28:03 +00002334 return Failure;
2335 }
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002336 for (unsigned I = 0, N = Record.size(); I != N; I += 3)
Douglas Gregor496c7092011-08-03 15:48:04 +00002337 ReplacedDecls[getGlobalDeclID(F, Record[I])]
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002338 = ReplacedDeclInfo(&F, Record[I+1], Record[I+2]);
Sebastian Redl0b17c612010-08-13 00:28:03 +00002339 break;
2340 }
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002341
Douglas Gregorcff9f262012-01-27 01:47:08 +00002342 case OBJC_CATEGORIES_MAP: {
2343 if (F.LocalNumObjCCategoriesInMap != 0) {
2344 Error("duplicate OBJC_CATEGORIES_MAP record in AST file");
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002345 return Failure;
2346 }
Douglas Gregorcff9f262012-01-27 01:47:08 +00002347
2348 F.LocalNumObjCCategoriesInMap = Record[0];
2349 F.ObjCCategoriesMap = (const ObjCCategoriesInfo *)BlobStart;
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002350 break;
2351 }
Douglas Gregor7c789c12010-10-29 22:39:52 +00002352
Douglas Gregorcff9f262012-01-27 01:47:08 +00002353 case OBJC_CATEGORIES:
2354 F.ObjCCategories.swap(Record);
2355 break;
2356
Douglas Gregor7c789c12010-10-29 22:39:52 +00002357 case CXX_BASE_SPECIFIER_OFFSETS: {
2358 if (F.LocalNumCXXBaseSpecifiers != 0) {
2359 Error("duplicate CXX_BASE_SPECIFIER_OFFSETS record in AST file");
2360 return Failure;
2361 }
2362
2363 F.LocalNumCXXBaseSpecifiers = Record[0];
2364 F.CXXBaseSpecifiersOffsets = (const uint32_t *)BlobStart;
Jonathan D. Turner1da90142011-07-21 21:15:19 +00002365 NumCXXBaseSpecifiersLoaded += F.LocalNumCXXBaseSpecifiers;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002366 break;
2367 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002368
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002369 case DIAG_PRAGMA_MAPPINGS:
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002370 if (Record.size() % 2 != 0) {
2371 Error("invalid DIAG_USER_MAPPINGS block in AST file");
2372 return Failure;
2373 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002374
2375 if (F.PragmaDiagMappings.empty())
2376 F.PragmaDiagMappings.swap(Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002377 else
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002378 F.PragmaDiagMappings.insert(F.PragmaDiagMappings.end(),
2379 Record.begin(), Record.end());
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002380 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002381
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002382 case CUDA_SPECIAL_DECL_REFS:
2383 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002384 // FIXME: Modules will have trouble with this.
2385 CUDASpecialDeclRefs.clear();
2386 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2387 CUDASpecialDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002388 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002389
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002390 case HEADER_SEARCH_TABLE: {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002391 F.HeaderFileInfoTableData = BlobStart;
2392 F.LocalNumHeaderFileInfos = Record[1];
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002393 F.HeaderFileFrameworkStrings = BlobStart + Record[2];
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002394 if (Record[0]) {
2395 F.HeaderFileInfoTable
2396 = HeaderFileInfoLookupTable::Create(
2397 (const unsigned char *)F.HeaderFileInfoTableData + Record[0],
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002398 (const unsigned char *)F.HeaderFileInfoTableData,
Douglas Gregor95eab172011-07-28 20:55:49 +00002399 HeaderFileInfoTrait(*this, F,
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002400 &PP.getHeaderSearchInfo(),
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002401 BlobStart + Record[2]));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002402
2403 PP.getHeaderSearchInfo().SetExternalSource(this);
2404 if (!PP.getHeaderSearchInfo().getExternalLookup())
2405 PP.getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002406 }
2407 break;
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002408 }
2409
Peter Collingbourne84bccea2011-02-15 19:46:30 +00002410 case FP_PRAGMA_OPTIONS:
2411 // Later tables overwrite earlier ones.
2412 FPPragmaOptions.swap(Record);
2413 break;
2414
2415 case OPENCL_EXTENSIONS:
2416 // Later tables overwrite earlier ones.
2417 OpenCLExtensions.swap(Record);
2418 break;
Sean Huntebcbe1d2011-05-04 23:29:54 +00002419
2420 case TENTATIVE_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002421 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2422 TentativeDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00002423 break;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002424
2425 case KNOWN_NAMESPACES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002426 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2427 KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002428 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002429
2430 case IMPORTED_MODULES: {
2431 if (F.Kind != MK_Module) {
2432 // If we aren't loading a module (which has its own exports), make
2433 // all of the imported modules visible.
2434 // FIXME: Deal with macros-only imports.
2435 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
2436 if (unsigned GlobalID = getGlobalSubmoduleID(F, Record[I]))
2437 ImportedModules.push_back(GlobalID);
2438 }
2439 }
2440 break;
Douglas Gregora1be2782011-12-17 23:38:30 +00002441 }
Douglas Gregor2171bf12012-01-15 16:58:34 +00002442
Douglas Gregora1be2782011-12-17 23:38:30 +00002443 case LOCAL_REDECLARATIONS: {
Douglas Gregor2171bf12012-01-15 16:58:34 +00002444 F.RedeclarationChains.swap(Record);
2445 break;
2446 }
2447
2448 case LOCAL_REDECLARATIONS_MAP: {
2449 if (F.LocalNumRedeclarationsInMap != 0) {
2450 Error("duplicate LOCAL_REDECLARATIONS_MAP record in AST file");
Douglas Gregora1be2782011-12-17 23:38:30 +00002451 return Failure;
2452 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002453
Douglas Gregor2171bf12012-01-15 16:58:34 +00002454 F.LocalNumRedeclarationsInMap = Record[0];
2455 F.RedeclarationsMap = (const LocalRedeclarationsInfo *)BlobStart;
Douglas Gregora1be2782011-12-17 23:38:30 +00002456 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002457 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002458
2459 case MERGED_DECLARATIONS: {
2460 for (unsigned Idx = 0; Idx < Record.size(); /* increment in loop */) {
2461 GlobalDeclID CanonID = getGlobalDeclID(F, Record[Idx++]);
2462 SmallVectorImpl<GlobalDeclID> &Decls = StoredMergedDecls[CanonID];
2463 for (unsigned N = Record[Idx++]; N > 0; --N)
2464 Decls.push_back(getGlobalDeclID(F, Record[Idx++]));
2465 }
2466 break;
2467 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002468 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002469 }
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002470 Error("premature end of bitstream in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002471 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002472}
2473
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002474ASTReader::ASTReadResult ASTReader::validateFileEntries(ModuleFile &M) {
Douglas Gregorc69a2922011-08-25 20:58:51 +00002475 llvm::BitstreamCursor &SLocEntryCursor = M.SLocEntryCursor;
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002476
Douglas Gregorc69a2922011-08-25 20:58:51 +00002477 for (unsigned i = 0, e = M.LocalNumSLocFileEntries; i != e; ++i) {
2478 SLocEntryCursor.JumpToBit(M.SLocFileOffsets[i]);
2479 unsigned Code = SLocEntryCursor.ReadCode();
2480 if (Code == llvm::bitc::END_BLOCK ||
2481 Code == llvm::bitc::ENTER_SUBBLOCK ||
2482 Code == llvm::bitc::DEFINE_ABBREV) {
2483 Error("incorrectly-formatted source location entry in AST file");
2484 return Failure;
2485 }
2486
2487 RecordData Record;
2488 const char *BlobStart;
2489 unsigned BlobLen;
2490 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
2491 default:
2492 Error("incorrectly-formatted source location entry in AST file");
2493 return Failure;
2494
2495 case SM_SLOC_FILE_ENTRY: {
Douglas Gregora081da52011-11-16 20:05:18 +00002496 // If the buffer was overridden, the file need not exist.
2497 if (Record[6])
2498 break;
2499
Douglas Gregorc69a2922011-08-25 20:58:51 +00002500 StringRef Filename(BlobStart, BlobLen);
2501 const FileEntry *File = getFileEntry(Filename);
2502
2503 if (File == 0) {
2504 std::string ErrorStr = "could not find file '";
2505 ErrorStr += Filename;
2506 ErrorStr += "' referenced by AST file";
2507 Error(ErrorStr.c_str());
2508 return IgnorePCH;
2509 }
2510
Douglas Gregora081da52011-11-16 20:05:18 +00002511 if (Record.size() < 7) {
Douglas Gregorc69a2922011-08-25 20:58:51 +00002512 Error("source location entry is incorrect");
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002513 return Failure;
2514 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002515
Douglas Gregorc69a2922011-08-25 20:58:51 +00002516 // The stat info from the FileEntry came from the cached stat
2517 // info of the PCH, so we cannot trust it.
2518 struct stat StatBuf;
2519 if (::stat(File->getName(), &StatBuf) != 0) {
2520 StatBuf.st_size = File->getSize();
2521 StatBuf.st_mtime = File->getModificationTime();
2522 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002523
Douglas Gregorc69a2922011-08-25 20:58:51 +00002524 if (((off_t)Record[4] != StatBuf.st_size
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002525#if !defined(LLVM_ON_WIN32)
Douglas Gregorc69a2922011-08-25 20:58:51 +00002526 // In our regression testing, the Windows file system seems to
2527 // have inconsistent modification times that sometimes
2528 // erroneously trigger this error-handling path.
2529 || (time_t)Record[5] != StatBuf.st_mtime
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002530#endif
Douglas Gregorc69a2922011-08-25 20:58:51 +00002531 )) {
2532 Error(diag::err_fe_pch_file_modified, Filename);
2533 return IgnorePCH;
2534 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002535
Douglas Gregorc69a2922011-08-25 20:58:51 +00002536 break;
2537 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002538 }
2539 }
2540
2541 return Success;
2542}
2543
Douglas Gregorecc2c092011-12-01 22:20:10 +00002544void ASTReader::makeNamesVisible(const HiddenNames &Names) {
Douglas Gregor13292642011-12-02 15:45:10 +00002545 for (unsigned I = 0, N = Names.size(); I != N; ++I) {
2546 if (Decl *D = Names[I].dyn_cast<Decl *>())
Douglas Gregorf143ffc2012-01-06 16:22:39 +00002547 D->Hidden = false;
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002548 else {
2549 IdentifierInfo *II = Names[I].get<IdentifierInfo *>();
2550 if (!II->hasMacroDefinition()) {
2551 II->setHasMacroDefinition(true);
2552 if (DeserializationListener)
2553 DeserializationListener->MacroVisible(II);
2554 }
2555 }
Douglas Gregor13292642011-12-02 15:45:10 +00002556 }
Douglas Gregorecc2c092011-12-01 22:20:10 +00002557}
2558
Douglas Gregor5e356932011-12-01 17:11:21 +00002559void ASTReader::makeModuleVisible(Module *Mod,
2560 Module::NameVisibilityKind NameVisibility) {
2561 llvm::SmallPtrSet<Module *, 4> Visited;
2562 llvm::SmallVector<Module *, 4> Stack;
2563 Stack.push_back(Mod);
2564 while (!Stack.empty()) {
2565 Mod = Stack.back();
2566 Stack.pop_back();
2567
2568 if (NameVisibility <= Mod->NameVisibility) {
2569 // This module already has this level of visibility (or greater), so
2570 // there is nothing more to do.
2571 continue;
2572 }
2573
Douglas Gregor51f564f2011-12-31 04:05:44 +00002574 if (!Mod->isAvailable()) {
2575 // Modules that aren't available cannot be made visible.
2576 continue;
2577 }
2578
Douglas Gregor5e356932011-12-01 17:11:21 +00002579 // Update the module's name visibility.
2580 Mod->NameVisibility = NameVisibility;
2581
Douglas Gregorecc2c092011-12-01 22:20:10 +00002582 // If we've already deserialized any names from this module,
Douglas Gregor5e356932011-12-01 17:11:21 +00002583 // mark them as visible.
Douglas Gregorecc2c092011-12-01 22:20:10 +00002584 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
2585 if (Hidden != HiddenNamesMap.end()) {
2586 makeNamesVisible(Hidden->second);
2587 HiddenNamesMap.erase(Hidden);
2588 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002589
2590 // Push any non-explicit submodules onto the stack to be marked as
2591 // visible.
Douglas Gregorb7a78192012-01-04 23:32:19 +00002592 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2593 SubEnd = Mod->submodule_end();
Douglas Gregor5e356932011-12-01 17:11:21 +00002594 Sub != SubEnd; ++Sub) {
Douglas Gregorb7a78192012-01-04 23:32:19 +00002595 if (!(*Sub)->IsExplicit && Visited.insert(*Sub))
2596 Stack.push_back(*Sub);
Douglas Gregor5e356932011-12-01 17:11:21 +00002597 }
Douglas Gregor07165b92011-12-02 19:11:09 +00002598
2599 // Push any exported modules onto the stack to be marked as visible.
Douglas Gregor0adaa882011-12-05 17:28:06 +00002600 bool AnyWildcard = false;
2601 bool UnrestrictedWildcard = false;
2602 llvm::SmallVector<Module *, 4> WildcardRestrictions;
Douglas Gregor07165b92011-12-02 19:11:09 +00002603 for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) {
2604 Module *Exported = Mod->Exports[I].getPointer();
Douglas Gregor0adaa882011-12-05 17:28:06 +00002605 if (!Mod->Exports[I].getInt()) {
2606 // Export a named module directly; no wildcards involved.
2607 if (Visited.insert(Exported))
Douglas Gregor07165b92011-12-02 19:11:09 +00002608 Stack.push_back(Exported);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002609
2610 continue;
Douglas Gregor07165b92011-12-02 19:11:09 +00002611 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002612
2613 // Wildcard export: export all of the imported modules that match
2614 // the given pattern.
2615 AnyWildcard = true;
2616 if (UnrestrictedWildcard)
2617 continue;
2618
2619 if (Module *Restriction = Mod->Exports[I].getPointer())
2620 WildcardRestrictions.push_back(Restriction);
2621 else {
2622 WildcardRestrictions.clear();
2623 UnrestrictedWildcard = true;
2624 }
2625 }
2626
2627 // If there were any wildcards, push any imported modules that were
2628 // re-exported by the wildcard restriction.
2629 if (!AnyWildcard)
2630 continue;
2631
2632 for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) {
2633 Module *Imported = Mod->Imports[I];
2634 if (Visited.count(Imported))
2635 continue;
2636
2637 bool Acceptable = UnrestrictedWildcard;
2638 if (!Acceptable) {
2639 // Check whether this module meets one of the restrictions.
2640 for (unsigned R = 0, NR = WildcardRestrictions.size(); R != NR; ++R) {
2641 Module *Restriction = WildcardRestrictions[R];
2642 if (Imported == Restriction || Imported->isSubModuleOf(Restriction)) {
2643 Acceptable = true;
2644 break;
2645 }
2646 }
2647 }
2648
2649 if (!Acceptable)
2650 continue;
2651
2652 Visited.insert(Imported);
2653 Stack.push_back(Imported);
Douglas Gregor07165b92011-12-02 19:11:09 +00002654 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002655 }
2656}
2657
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00002658ASTReader::ASTReadResult ASTReader::ReadAST(const std::string &FileName,
Douglas Gregor72a9ae12011-07-22 16:00:58 +00002659 ModuleKind Type) {
Douglas Gregor057df202012-01-18 20:56:22 +00002660 // Bump the generation number.
Douglas Gregorcff9f262012-01-27 01:47:08 +00002661 unsigned PreviousGeneration = CurrentGeneration++;
Douglas Gregor057df202012-01-18 20:56:22 +00002662
Douglas Gregor10bc00f2011-08-18 04:12:04 +00002663 switch(ReadASTCore(FileName, Type, /*ImportedBy=*/0)) {
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002664 case Failure: return Failure;
2665 case IgnorePCH: return IgnorePCH;
2666 case Success: break;
2667 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002668
2669 // Here comes stuff that we only do once the entire chain is loaded.
Douglas Gregor057df202012-01-18 20:56:22 +00002670
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002671 // Check the predefines buffers.
Douglas Gregor6236a292011-12-02 21:56:05 +00002672 if (!DisableValidation && Type == MK_PCH &&
Argyrios Kyrtzidis26d43cd2011-09-12 18:09:38 +00002673 // FIXME: CheckPredefinesBuffers also sets the SuggestedPredefines;
2674 // if DisableValidation is true, defines that were set on command-line
2675 // but not in the PCH file will not be added to SuggestedPredefines.
2676 CheckPredefinesBuffers())
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002677 return IgnorePCH;
2678
Douglas Gregoreee242f2011-10-27 09:33:13 +00002679 // Mark all of the identifiers in the identifier table as being out of date,
2680 // so that various accessors know to check the loaded modules when the
2681 // identifier is used.
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002682 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
2683 IdEnd = PP.getIdentifierTable().end();
2684 Id != IdEnd; ++Id)
Douglas Gregoreee242f2011-10-27 09:33:13 +00002685 Id->second->setOutOfDate(true);
Douglas Gregor057df202012-01-18 20:56:22 +00002686
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002687 // Resolve any unresolved module exports.
Douglas Gregor55988682011-12-05 16:33:54 +00002688 for (unsigned I = 0, N = UnresolvedModuleImportExports.size(); I != N; ++I) {
2689 UnresolvedModuleImportExport &Unresolved = UnresolvedModuleImportExports[I];
2690 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002691 Module *ResolvedMod = getSubmodule(GlobalID);
2692
2693 if (Unresolved.IsImport) {
2694 if (ResolvedMod)
Douglas Gregor55988682011-12-05 16:33:54 +00002695 Unresolved.Mod->Imports.push_back(ResolvedMod);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002696 continue;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002697 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002698
2699 if (ResolvedMod || Unresolved.IsWildcard)
2700 Unresolved.Mod->Exports.push_back(
2701 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard));
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002702 }
Douglas Gregor55988682011-12-05 16:33:54 +00002703 UnresolvedModuleImportExports.clear();
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002704
Douglas Gregor35942772011-09-09 21:34:22 +00002705 InitializeContext();
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002706
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002707 if (DeserializationListener)
2708 DeserializationListener->ReaderInitialized(this);
2709
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002710 if (!OriginalFileID.isInvalid()) {
2711 OriginalFileID = FileID::get(ModuleMgr.getPrimaryModule().SLocEntryBaseID
2712 + OriginalFileID.getOpaqueValue() - 1);
2713
2714 // If this AST file is a precompiled preamble, then set the preamble file ID
2715 // of the source manager to the file source file from which the preamble was
2716 // built.
2717 if (Type == MK_Preamble) {
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002718 SourceMgr.setPreambleFileID(OriginalFileID);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002719 } else if (Type == MK_MainFile) {
2720 SourceMgr.setMainFileID(OriginalFileID);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002721 }
Douglas Gregor414cb642010-11-30 05:23:00 +00002722 }
2723
Douglas Gregorcff9f262012-01-27 01:47:08 +00002724 // For any Objective-C class definitions we have already loaded, make sure
2725 // that we load any additional categories.
2726 for (unsigned I = 0, N = ObjCClassesLoaded.size(); I != N; ++I) {
2727 loadObjCCategories(ObjCClassesLoaded[I]->getGlobalID(),
2728 ObjCClassesLoaded[I],
2729 PreviousGeneration);
2730 }
2731
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002732 return Success;
2733}
2734
Chris Lattner5f9e2722011-07-23 10:55:15 +00002735ASTReader::ASTReadResult ASTReader::ReadASTCore(StringRef FileName,
Douglas Gregor10bc00f2011-08-18 04:12:04 +00002736 ModuleKind Type,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002737 ModuleFile *ImportedBy) {
2738 ModuleFile *M;
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002739 bool NewModule;
2740 std::string ErrorStr;
2741 llvm::tie(M, NewModule) = ModuleMgr.addModule(FileName, Type, ImportedBy,
Douglas Gregor057df202012-01-18 20:56:22 +00002742 CurrentGeneration, ErrorStr);
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002743
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002744 if (!M) {
2745 // We couldn't load the module.
2746 std::string Msg = "Unable to load module \"" + FileName.str() + "\": "
2747 + ErrorStr;
2748 Error(Msg);
2749 return Failure;
2750 }
2751
2752 if (!NewModule) {
2753 // We've already loaded this module.
2754 return Success;
2755 }
2756
2757 // FIXME: This seems rather a hack. Should CurrentDir be part of the
2758 // module?
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002759 if (FileName != "-") {
2760 CurrentDir = llvm::sys::path::parent_path(FileName);
2761 if (CurrentDir.empty()) CurrentDir = ".";
2762 }
2763
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002764 ModuleFile &F = *M;
Sebastian Redl9137a522010-07-16 17:50:48 +00002765 llvm::BitstreamCursor &Stream = F.Stream;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002766 Stream.init(F.StreamFile);
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002767 F.SizeInBits = F.Buffer->getBufferSize() * 8;
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002768
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002769 // Sniff for the signature.
2770 if (Stream.Read(8) != 'C' ||
2771 Stream.Read(8) != 'P' ||
2772 Stream.Read(8) != 'C' ||
2773 Stream.Read(8) != 'H') {
2774 Diag(diag::err_not_a_pch_file) << FileName;
2775 return Failure;
2776 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002777
Douglas Gregor2cf26342009-04-09 22:27:44 +00002778 while (!Stream.AtEndOfStream()) {
2779 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00002780
Douglas Gregore1d918e2009-04-10 23:10:45 +00002781 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002782 Error("invalid record at top-level of AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002783 return Failure;
2784 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002785
2786 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00002787
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002788 // We only know the AST subblock ID.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002789 switch (BlockID) {
2790 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002791 if (Stream.ReadBlockInfoBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002792 Error("malformed BlockInfoBlock in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002793 return Failure;
2794 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002795 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002796 case AST_BLOCK_ID:
Sebastian Redl571db7f2010-08-18 23:56:56 +00002797 switch (ReadASTBlock(F)) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002798 case Success:
2799 break;
2800
2801 case Failure:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002802 return Failure;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002803
2804 case IgnorePCH:
Douglas Gregor2bec0412009-04-10 21:16:55 +00002805 // FIXME: We could consider reading through to the end of this
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002806 // AST block, skipping subblocks, to see if there are other
2807 // AST blocks elsewhere.
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002808
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002809 // FIXME: We can't clear loaded slocentries anymore.
2810 //SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002811
2812 // Remove the stat cache.
Sebastian Redl9137a522010-07-16 17:50:48 +00002813 if (F.StatCache)
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002814 FileMgr.removeStatCache((ASTStatCache*)F.StatCache);
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002815
Douglas Gregore1d918e2009-04-10 23:10:45 +00002816 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002817 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002818 break;
2819 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002820 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002821 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002822 return Failure;
2823 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002824 break;
2825 }
Mike Stump1eb44332009-09-09 15:08:12 +00002826 }
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002827
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002828 // Once read, set the ModuleFile bit base offset and update the size in
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002829 // bits of all files we've seen.
2830 F.GlobalBitOffset = TotalModulesSizeInBits;
2831 TotalModulesSizeInBits += F.SizeInBits;
2832 GlobalBitOffsetsMap.insert(std::make_pair(F.GlobalBitOffset, &F));
Douglas Gregorc69a2922011-08-25 20:58:51 +00002833
2834 // Make sure that the files this module was built against are still available.
2835 if (!DisableValidation) {
2836 switch(validateFileEntries(*M)) {
2837 case Failure: return Failure;
2838 case IgnorePCH: return IgnorePCH;
2839 case Success: break;
2840 }
2841 }
Douglas Gregorf249bf32011-08-25 21:09:44 +00002842
2843 // Preload SLocEntries.
2844 for (unsigned I = 0, N = M->PreloadSLocEntries.size(); I != N; ++I) {
2845 int Index = int(M->PreloadSLocEntries[I] - 1) + F.SLocEntryBaseID;
Argyrios Kyrtzidisac1ffcc2011-09-19 20:39:54 +00002846 // Load it through the SourceManager and don't call ReadSLocEntryRecord()
2847 // directly because the entry may have already been loaded in which case
2848 // calling ReadSLocEntryRecord() directly would trigger an assertion in
2849 // SourceManager.
2850 SourceMgr.getLoadedSLocEntryByID(Index);
Douglas Gregorf249bf32011-08-25 21:09:44 +00002851 }
2852
Douglas Gregorc69a2922011-08-25 20:58:51 +00002853
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002854 return Success;
2855}
2856
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002857void ASTReader::InitializeContext() {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002858 // If there's a listener, notify them that we "read" the translation unit.
2859 if (DeserializationListener)
Douglas Gregor35942772011-09-09 21:34:22 +00002860 DeserializationListener->DeclRead(PREDEF_DECL_TRANSLATION_UNIT_ID,
2861 Context.getTranslationUnitDecl());
Douglas Gregor3747ee72010-10-01 01:18:02 +00002862
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002863 // Make sure we load the declaration update records for the translation unit,
2864 // if there are any.
Douglas Gregor35942772011-09-09 21:34:22 +00002865 loadDeclUpdateRecords(PREDEF_DECL_TRANSLATION_UNIT_ID,
2866 Context.getTranslationUnitDecl());
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002867
Douglas Gregor5f957282011-08-11 22:18:49 +00002868 // FIXME: Find a better way to deal with collisions between these
2869 // built-in types. Right now, we just ignore the problem.
2870
2871 // Load the special types.
Douglas Gregora6ea10e2012-01-17 18:09:05 +00002872 if (SpecialTypes.size() >= NumSpecialTypeIDs) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002873 if (Context.getBuiltinVaListType().isNull()) {
2874 Context.setBuiltinVaListType(
2875 GetType(SpecialTypes[SPECIAL_TYPE_BUILTIN_VA_LIST]));
Douglas Gregor5f957282011-08-11 22:18:49 +00002876 }
2877
Douglas Gregor02a5e872011-09-10 00:30:18 +00002878 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) {
2879 if (!Context.CFConstantStringTypeDecl)
2880 Context.setCFConstantStringType(GetType(String));
2881 }
2882
2883 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
2884 QualType FileType = GetType(File);
2885 if (FileType.isNull()) {
2886 Error("FILE type is NULL");
2887 return;
2888 }
2889
2890 if (!Context.FILEDecl) {
2891 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
2892 Context.setFILEDecl(Typedef->getDecl());
2893 else {
2894 const TagType *Tag = FileType->getAs<TagType>();
2895 if (!Tag) {
2896 Error("Invalid FILE type in AST file");
2897 return;
2898 }
2899 Context.setFILEDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002900 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002901 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00002902 }
Douglas Gregor5f957282011-08-11 22:18:49 +00002903
Douglas Gregor72cd7a02011-11-11 19:13:12 +00002904 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002905 QualType Jmp_bufType = GetType(Jmp_buf);
2906 if (Jmp_bufType.isNull()) {
2907 Error("jmp_buf type is NULL");
2908 return;
2909 }
2910
2911 if (!Context.jmp_bufDecl) {
2912 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
2913 Context.setjmp_bufDecl(Typedef->getDecl());
2914 else {
2915 const TagType *Tag = Jmp_bufType->getAs<TagType>();
2916 if (!Tag) {
2917 Error("Invalid jmp_buf type in AST file");
2918 return;
2919 }
2920 Context.setjmp_bufDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002921 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002922 }
Mike Stump782fa302009-07-28 02:25:19 +00002923 }
Douglas Gregor02a5e872011-09-10 00:30:18 +00002924
Douglas Gregor72cd7a02011-11-11 19:13:12 +00002925 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002926 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
2927 if (Sigjmp_bufType.isNull()) {
2928 Error("sigjmp_buf type is NULL");
2929 return;
2930 }
2931
2932 if (!Context.sigjmp_bufDecl) {
2933 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
2934 Context.setsigjmp_bufDecl(Typedef->getDecl());
2935 else {
2936 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
2937 assert(Tag && "Invalid sigjmp_buf type in AST file");
2938 Context.setsigjmp_bufDecl(Tag->getDecl());
2939 }
2940 }
2941 }
2942
2943 if (unsigned ObjCIdRedef
2944 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) {
2945 if (Context.ObjCIdRedefinitionType.isNull())
2946 Context.ObjCIdRedefinitionType = GetType(ObjCIdRedef);
2947 }
2948
2949 if (unsigned ObjCClassRedef
2950 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) {
2951 if (Context.ObjCClassRedefinitionType.isNull())
2952 Context.ObjCClassRedefinitionType = GetType(ObjCClassRedef);
2953 }
2954
2955 if (unsigned ObjCSelRedef
2956 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) {
2957 if (Context.ObjCSelRedefinitionType.isNull())
2958 Context.ObjCSelRedefinitionType = GetType(ObjCSelRedef);
2959 }
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00002960
2961 if (unsigned Ucontext_t = SpecialTypes[SPECIAL_TYPE_UCONTEXT_T]) {
2962 QualType Ucontext_tType = GetType(Ucontext_t);
2963 if (Ucontext_tType.isNull()) {
2964 Error("ucontext_t type is NULL");
2965 return;
2966 }
2967
2968 if (!Context.ucontext_tDecl) {
2969 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
2970 Context.setucontext_tDecl(Typedef->getDecl());
2971 else {
2972 const TagType *Tag = Ucontext_tType->getAs<TagType>();
2973 assert(Tag && "Invalid ucontext_t type in AST file");
2974 Context.setucontext_tDecl(Tag->getDecl());
2975 }
2976 }
2977 }
Douglas Gregor5f957282011-08-11 22:18:49 +00002978 }
2979
Douglas Gregor35942772011-09-09 21:34:22 +00002980 ReadPragmaDiagnosticMappings(Context.getDiagnostics());
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002981
2982 // If there were any CUDA special declarations, deserialize them.
2983 if (!CUDASpecialDeclRefs.empty()) {
2984 assert(CUDASpecialDeclRefs.size() == 1 && "More decl refs than expected!");
Douglas Gregor35942772011-09-09 21:34:22 +00002985 Context.setcudaConfigureCallDecl(
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002986 cast<FunctionDecl>(GetDecl(CUDASpecialDeclRefs[0])));
2987 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002988
2989 // Re-export any modules that were imported by a non-module AST file.
2990 for (unsigned I = 0, N = ImportedModules.size(); I != N; ++I) {
2991 if (Module *Imported = getSubmodule(ImportedModules[I]))
2992 makeModuleVisible(Imported, Module::AllVisible);
2993 }
2994 ImportedModules.clear();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002995}
2996
Douglas Gregorecc2c092011-12-01 22:20:10 +00002997void ASTReader::finalizeForWriting() {
2998 for (HiddenNamesMapType::iterator Hidden = HiddenNamesMap.begin(),
2999 HiddenEnd = HiddenNamesMap.end();
3000 Hidden != HiddenEnd; ++Hidden) {
3001 makeNamesVisible(Hidden->second);
3002 }
3003 HiddenNamesMap.clear();
3004}
3005
Douglas Gregorb64c1932009-05-12 01:31:05 +00003006/// \brief Retrieve the name of the original source file name
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003007/// directly from the AST file, without actually loading the AST
Douglas Gregorb64c1932009-05-12 01:31:05 +00003008/// file.
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003009std::string ASTReader::getOriginalSourceFile(const std::string &ASTFileName,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00003010 FileManager &FileMgr,
David Blaikied6471f72011-09-25 23:23:43 +00003011 DiagnosticsEngine &Diags) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003012 // Open the AST file.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003013 std::string ErrStr;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00003014 OwningPtr<llvm::MemoryBuffer> Buffer;
Chris Lattner39b49bc2010-11-23 08:35:12 +00003015 Buffer.reset(FileMgr.getBufferForFile(ASTFileName, &ErrStr));
Douglas Gregorb64c1932009-05-12 01:31:05 +00003016 if (!Buffer) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00003017 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003018 return std::string();
3019 }
3020
3021 // Initialize the stream
3022 llvm::BitstreamReader StreamFile;
3023 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00003024 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00003025 (const unsigned char *)Buffer->getBufferEnd());
3026 Stream.init(StreamFile);
3027
3028 // Sniff for the signature.
3029 if (Stream.Read(8) != 'C' ||
3030 Stream.Read(8) != 'P' ||
3031 Stream.Read(8) != 'C' ||
3032 Stream.Read(8) != 'H') {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003033 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003034 return std::string();
3035 }
3036
3037 RecordData Record;
3038 while (!Stream.AtEndOfStream()) {
3039 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00003040
Douglas Gregorb64c1932009-05-12 01:31:05 +00003041 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3042 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00003043
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003044 // We only know the AST subblock ID.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003045 switch (BlockID) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003046 case AST_BLOCK_ID:
3047 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003048 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003049 return std::string();
3050 }
3051 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003052
Douglas Gregorb64c1932009-05-12 01:31:05 +00003053 default:
3054 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003055 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003056 return std::string();
3057 }
3058 break;
3059 }
3060 continue;
3061 }
3062
3063 if (Code == llvm::bitc::END_BLOCK) {
3064 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003065 Diags.Report(diag::err_fe_pch_error_at_end_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003066 return std::string();
3067 }
3068 continue;
3069 }
3070
3071 if (Code == llvm::bitc::DEFINE_ABBREV) {
3072 Stream.ReadAbbrevRecord();
3073 continue;
3074 }
3075
3076 Record.clear();
3077 const char *BlobStart = 0;
3078 unsigned BlobLen = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003079 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003080 == ORIGINAL_FILE_NAME)
Douglas Gregorb64c1932009-05-12 01:31:05 +00003081 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00003082 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00003083
3084 return std::string();
3085}
3086
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003087ASTReader::ASTReadResult ASTReader::ReadSubmoduleBlock(ModuleFile &F) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003088 // Enter the submodule block.
3089 if (F.Stream.EnterSubBlock(SUBMODULE_BLOCK_ID)) {
3090 Error("malformed submodule block record in AST file");
3091 return Failure;
3092 }
3093
3094 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
Douglas Gregor26ced122011-12-01 00:59:36 +00003095 bool First = true;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003096 Module *CurrentModule = 0;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003097 RecordData Record;
3098 while (true) {
3099 unsigned Code = F.Stream.ReadCode();
3100 if (Code == llvm::bitc::END_BLOCK) {
3101 if (F.Stream.ReadBlockEnd()) {
3102 Error("error at end of submodule block in AST file");
3103 return Failure;
3104 }
3105 return Success;
3106 }
3107
3108 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3109 // No known subblocks, always skip them.
3110 F.Stream.ReadSubBlockID();
3111 if (F.Stream.SkipBlock()) {
3112 Error("malformed block record in AST file");
3113 return Failure;
3114 }
3115 continue;
3116 }
3117
3118 if (Code == llvm::bitc::DEFINE_ABBREV) {
3119 F.Stream.ReadAbbrevRecord();
3120 continue;
3121 }
3122
3123 // Read a record.
3124 const char *BlobStart;
3125 unsigned BlobLen;
3126 Record.clear();
3127 switch (F.Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
3128 default: // Default behavior: ignore.
3129 break;
3130
3131 case SUBMODULE_DEFINITION: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003132 if (First) {
3133 Error("missing submodule metadata record at beginning of block");
3134 return Failure;
3135 }
3136
Douglas Gregore209e502011-12-06 01:10:29 +00003137 if (Record.size() < 7) {
Douglas Gregor1e123682011-12-05 22:27:44 +00003138 Error("malformed module definition");
3139 return Failure;
3140 }
3141
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003142 StringRef Name(BlobStart, BlobLen);
Douglas Gregore209e502011-12-06 01:10:29 +00003143 SubmoduleID GlobalID = getGlobalSubmoduleID(F, Record[0]);
3144 SubmoduleID Parent = getGlobalSubmoduleID(F, Record[1]);
3145 bool IsFramework = Record[2];
3146 bool IsExplicit = Record[3];
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003147 bool IsSystem = Record[4];
3148 bool InferSubmodules = Record[5];
3149 bool InferExplicitSubmodules = Record[6];
3150 bool InferExportWildcard = Record[7];
Douglas Gregor1e123682011-12-05 22:27:44 +00003151
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003152 Module *ParentModule = 0;
Douglas Gregor26ced122011-12-01 00:59:36 +00003153 if (Parent)
3154 ParentModule = getSubmodule(Parent);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003155
3156 // Retrieve this (sub)module from the module map, creating it if
3157 // necessary.
3158 CurrentModule = ModMap.findOrCreateModule(Name, ParentModule,
3159 IsFramework,
3160 IsExplicit).first;
Douglas Gregore209e502011-12-06 01:10:29 +00003161 SubmoduleID GlobalIndex = GlobalID - NUM_PREDEF_SUBMODULE_IDS;
3162 if (GlobalIndex >= SubmodulesLoaded.size() ||
3163 SubmodulesLoaded[GlobalIndex]) {
Douglas Gregor26ced122011-12-01 00:59:36 +00003164 Error("too many submodules");
3165 return Failure;
3166 }
Douglas Gregora015cab2011-12-02 17:30:13 +00003167
Douglas Gregor305dc3e2011-12-20 00:28:52 +00003168 CurrentModule->IsFromModuleFile = true;
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003169 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
Douglas Gregor1e123682011-12-05 22:27:44 +00003170 CurrentModule->InferSubmodules = InferSubmodules;
3171 CurrentModule->InferExplicitSubmodules = InferExplicitSubmodules;
3172 CurrentModule->InferExportWildcard = InferExportWildcard;
Douglas Gregora015cab2011-12-02 17:30:13 +00003173 if (DeserializationListener)
Douglas Gregore209e502011-12-06 01:10:29 +00003174 DeserializationListener->ModuleRead(GlobalID, CurrentModule);
Douglas Gregora015cab2011-12-02 17:30:13 +00003175
Douglas Gregore209e502011-12-06 01:10:29 +00003176 SubmodulesLoaded[GlobalIndex] = CurrentModule;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003177 break;
3178 }
3179
Douglas Gregor77d029f2011-12-08 19:11:24 +00003180 case SUBMODULE_UMBRELLA_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003181 if (First) {
3182 Error("missing submodule metadata record at beginning of block");
3183 return Failure;
3184 }
3185
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003186 if (!CurrentModule)
3187 break;
3188
3189 StringRef FileName(BlobStart, BlobLen);
3190 if (const FileEntry *Umbrella = PP.getFileManager().getFile(FileName)) {
Douglas Gregor10694ce2011-12-08 17:39:04 +00003191 if (!CurrentModule->getUmbrellaHeader())
Douglas Gregore209e502011-12-06 01:10:29 +00003192 ModMap.setUmbrellaHeader(CurrentModule, Umbrella);
Douglas Gregor10694ce2011-12-08 17:39:04 +00003193 else if (CurrentModule->getUmbrellaHeader() != Umbrella) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003194 Error("mismatched umbrella headers in submodule");
3195 return Failure;
3196 }
3197 }
3198 break;
3199 }
3200
3201 case SUBMODULE_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003202 if (First) {
3203 Error("missing submodule metadata record at beginning of block");
3204 return Failure;
3205 }
3206
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003207 if (!CurrentModule)
3208 break;
3209
3210 // FIXME: Be more lazy about this!
3211 StringRef FileName(BlobStart, BlobLen);
3212 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3213 if (std::find(CurrentModule->Headers.begin(),
3214 CurrentModule->Headers.end(),
3215 File) == CurrentModule->Headers.end())
Douglas Gregore209e502011-12-06 01:10:29 +00003216 ModMap.addHeader(CurrentModule, File);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003217 }
3218 break;
3219 }
Douglas Gregor26ced122011-12-01 00:59:36 +00003220
Douglas Gregor77d029f2011-12-08 19:11:24 +00003221 case SUBMODULE_UMBRELLA_DIR: {
3222 if (First) {
3223 Error("missing submodule metadata record at beginning of block");
3224 return Failure;
3225 }
3226
3227 if (!CurrentModule)
3228 break;
3229
3230 StringRef DirName(BlobStart, BlobLen);
3231 if (const DirectoryEntry *Umbrella
3232 = PP.getFileManager().getDirectory(DirName)) {
3233 if (!CurrentModule->getUmbrellaDir())
3234 ModMap.setUmbrellaDir(CurrentModule, Umbrella);
3235 else if (CurrentModule->getUmbrellaDir() != Umbrella) {
3236 Error("mismatched umbrella directories in submodule");
3237 return Failure;
3238 }
3239 }
3240 break;
3241 }
3242
Douglas Gregor26ced122011-12-01 00:59:36 +00003243 case SUBMODULE_METADATA: {
3244 if (!First) {
3245 Error("submodule metadata record not at beginning of block");
3246 return Failure;
3247 }
3248 First = false;
3249
3250 F.BaseSubmoduleID = getTotalNumSubmodules();
Douglas Gregor26ced122011-12-01 00:59:36 +00003251 F.LocalNumSubmodules = Record[0];
3252 unsigned LocalBaseSubmoduleID = Record[1];
3253 if (F.LocalNumSubmodules > 0) {
3254 // Introduce the global -> local mapping for submodules within this
3255 // module.
3256 GlobalSubmoduleMap.insert(std::make_pair(getTotalNumSubmodules()+1,&F));
3257
3258 // Introduce the local -> global mapping for submodules within this
3259 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00003260 F.SubmoduleRemap.insertOrReplace(
Douglas Gregor26ced122011-12-01 00:59:36 +00003261 std::make_pair(LocalBaseSubmoduleID,
3262 F.BaseSubmoduleID - LocalBaseSubmoduleID));
3263
3264 SubmodulesLoaded.resize(SubmodulesLoaded.size() + F.LocalNumSubmodules);
3265 }
3266 break;
3267 }
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003268
Douglas Gregor55988682011-12-05 16:33:54 +00003269 case SUBMODULE_IMPORTS: {
3270 if (First) {
3271 Error("missing submodule metadata record at beginning of block");
3272 return Failure;
3273 }
3274
3275 if (!CurrentModule)
3276 break;
3277
3278 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) {
3279 UnresolvedModuleImportExport Unresolved;
3280 Unresolved.File = &F;
3281 Unresolved.Mod = CurrentModule;
3282 Unresolved.ID = Record[Idx];
3283 Unresolved.IsImport = true;
3284 Unresolved.IsWildcard = false;
3285 UnresolvedModuleImportExports.push_back(Unresolved);
3286 }
3287 break;
3288 }
3289
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003290 case SUBMODULE_EXPORTS: {
3291 if (First) {
3292 Error("missing submodule metadata record at beginning of block");
3293 return Failure;
3294 }
3295
3296 if (!CurrentModule)
3297 break;
3298
3299 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) {
Douglas Gregor55988682011-12-05 16:33:54 +00003300 UnresolvedModuleImportExport Unresolved;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003301 Unresolved.File = &F;
Douglas Gregor55988682011-12-05 16:33:54 +00003302 Unresolved.Mod = CurrentModule;
3303 Unresolved.ID = Record[Idx];
3304 Unresolved.IsImport = false;
3305 Unresolved.IsWildcard = Record[Idx + 1];
3306 UnresolvedModuleImportExports.push_back(Unresolved);
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003307 }
3308
3309 // Once we've loaded the set of exports, there's no reason to keep
3310 // the parsed, unresolved exports around.
3311 CurrentModule->UnresolvedExports.clear();
3312 break;
3313 }
Douglas Gregor51f564f2011-12-31 04:05:44 +00003314 case SUBMODULE_REQUIRES: {
3315 if (First) {
3316 Error("missing submodule metadata record at beginning of block");
3317 return Failure;
3318 }
3319
3320 if (!CurrentModule)
3321 break;
3322
3323 CurrentModule->addRequirement(StringRef(BlobStart, BlobLen),
David Blaikie4e4d0842012-03-11 07:00:24 +00003324 Context.getLangOpts(),
Douglas Gregordc58aa72012-01-30 06:01:29 +00003325 Context.getTargetInfo());
Douglas Gregor51f564f2011-12-31 04:05:44 +00003326 break;
3327 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003328 }
3329 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003330}
3331
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003332/// \brief Parse the record that corresponds to a LangOptions data
3333/// structure.
3334///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003335/// This routine parses the language options from the AST file and then gives
3336/// them to the AST listener if one is set.
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003337///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003338/// \returns true if the listener deems the file unacceptable, false otherwise.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00003339bool ASTReader::ParseLanguageOptions(
Chris Lattner5f9e2722011-07-23 10:55:15 +00003340 const SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003341 if (Listener) {
3342 LangOptions LangOpts;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003343 unsigned Idx = 0;
Douglas Gregor7d5e81b2011-09-13 18:26:39 +00003344#define LANGOPT(Name, Bits, Default, Description) \
3345 LangOpts.Name = Record[Idx++];
3346#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
3347 LangOpts.set##Name(static_cast<LangOptions::Type>(Record[Idx++]));
3348#include "clang/Basic/LangOptions.def"
3349
Douglas Gregorb86b8dc2011-11-15 19:35:01 +00003350 unsigned Length = Record[Idx++];
3351 LangOpts.CurrentModule.assign(Record.begin() + Idx,
3352 Record.begin() + Idx + Length);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003353 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003354 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003355
3356 return false;
3357}
3358
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003359std::pair<ModuleFile *, unsigned>
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003360ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003361 GlobalPreprocessedEntityMapType::iterator
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003362 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003363 assert(I != GlobalPreprocessedEntityMap.end() &&
3364 "Corrupted global preprocessed entity map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003365 ModuleFile *M = I->second;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003366 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
3367 return std::make_pair(M, LocalIndex);
3368}
3369
3370PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
3371 PreprocessedEntityID PPID = Index+1;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003372 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3373 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003374 unsigned LocalIndex = PPInfo.second;
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003375 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
Douglas Gregor4800a5c2011-02-08 21:58:10 +00003376
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003377 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003378 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003379
3380 unsigned Code = M.PreprocessorDetailCursor.ReadCode();
3381 switch (Code) {
3382 case llvm::bitc::END_BLOCK:
3383 return 0;
3384
3385 case llvm::bitc::ENTER_SUBBLOCK:
3386 Error("unexpected subblock record in preprocessor detail block");
3387 return 0;
3388
3389 case llvm::bitc::DEFINE_ABBREV:
3390 Error("unexpected abbrevation record in preprocessor detail block");
3391 return 0;
3392
3393 default:
3394 break;
3395 }
3396
3397 if (!PP.getPreprocessingRecord()) {
3398 Error("no preprocessing record");
3399 return 0;
3400 }
3401
3402 // Read the record.
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003403 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
3404 ReadSourceLocation(M, PPOffs.End));
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003405 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
3406 const char *BlobStart = 0;
3407 unsigned BlobLen = 0;
3408 RecordData Record;
3409 PreprocessorDetailRecordTypes RecType =
3410 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.ReadRecord(
3411 Code, Record, BlobStart, BlobLen);
3412 switch (RecType) {
3413 case PPD_MACRO_EXPANSION: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003414 bool isBuiltin = Record[0];
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003415 IdentifierInfo *Name = 0;
3416 MacroDefinition *Def = 0;
3417 if (isBuiltin)
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003418 Name = getLocalIdentifier(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003419 else {
3420 PreprocessedEntityID
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003421 GlobalID = getGlobalPreprocessedEntityID(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003422 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
3423 }
3424
3425 MacroExpansion *ME;
3426 if (isBuiltin)
3427 ME = new (PPRec) MacroExpansion(Name, Range);
3428 else
3429 ME = new (PPRec) MacroExpansion(Def, Range);
3430
3431 return ME;
3432 }
3433
3434 case PPD_MACRO_DEFINITION: {
3435 // Decode the identifier info and then check again; if the macro is
3436 // still defined and associated with the identifier,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003437 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003438 MacroDefinition *MD
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003439 = new (PPRec) MacroDefinition(II, Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003440
3441 if (DeserializationListener)
3442 DeserializationListener->MacroDefinitionRead(PPID, MD);
3443
3444 return MD;
3445 }
3446
3447 case PPD_INCLUSION_DIRECTIVE: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003448 const char *FullFileNameStart = BlobStart + Record[0];
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00003449 StringRef FullFileName(FullFileNameStart, BlobLen - Record[0]);
3450 const FileEntry *File = 0;
3451 if (!FullFileName.empty())
3452 File = PP.getFileManager().getFile(FullFileName);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003453
3454 // FIXME: Stable encoding
3455 InclusionDirective::InclusionKind Kind
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003456 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003457 InclusionDirective *ID
3458 = new (PPRec) InclusionDirective(PPRec, Kind,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003459 StringRef(BlobStart, Record[0]),
3460 Record[1],
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003461 File,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003462 Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003463 return ID;
3464 }
3465 }
David Blaikie7530c032012-01-17 06:56:22 +00003466
3467 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00003468}
3469
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003470/// \brief \arg SLocMapI points at a chunk of a module that contains no
3471/// preprocessed entities or the entities it contains are not the ones we are
3472/// looking for. Find the next module that contains entities and return the ID
3473/// of the first entry.
3474PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
3475 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
3476 ++SLocMapI;
3477 for (GlobalSLocOffsetMapType::const_iterator
3478 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003479 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003480 if (M.NumPreprocessedEntities)
3481 return getGlobalPreprocessedEntityID(M, M.BasePreprocessedEntityID);
3482 }
3483
3484 return getTotalNumPreprocessedEntities();
3485}
3486
3487namespace {
3488
3489template <unsigned PPEntityOffset::*PPLoc>
3490struct PPEntityComp {
3491 const ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003492 ModuleFile &M;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003493
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003494 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) { }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003495
Benjamin Kramer88df1252011-09-21 06:42:26 +00003496 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
3497 SourceLocation LHS = getLoc(L);
3498 SourceLocation RHS = getLoc(R);
3499 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3500 }
3501
3502 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003503 SourceLocation LHS = getLoc(L);
3504 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3505 }
3506
Benjamin Kramer88df1252011-09-21 06:42:26 +00003507 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003508 SourceLocation RHS = getLoc(R);
3509 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3510 }
3511
3512 SourceLocation getLoc(const PPEntityOffset &PPE) const {
3513 return Reader.ReadSourceLocation(M, PPE.*PPLoc);
3514 }
3515};
3516
3517}
3518
3519/// \brief Returns the first preprocessed entity ID that ends after \arg BLoc.
3520PreprocessedEntityID
3521ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const {
3522 if (SourceMgr.isLocalSourceLocation(BLoc))
3523 return getTotalNumPreprocessedEntities();
3524
3525 GlobalSLocOffsetMapType::const_iterator
3526 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3527 BLoc.getOffset());
3528 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3529 "Corrupted global sloc offset map");
3530
3531 if (SLocMapI->second->NumPreprocessedEntities == 0)
3532 return findNextPreprocessedEntity(SLocMapI);
3533
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003534 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003535 typedef const PPEntityOffset *pp_iterator;
3536 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3537 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
Argyrios Kyrtzidis4cd06342011-09-22 21:17:02 +00003538
3539 size_t Count = M.NumPreprocessedEntities;
3540 size_t Half;
3541 pp_iterator First = pp_begin;
3542 pp_iterator PPI;
3543
3544 // Do a binary search manually instead of using std::lower_bound because
3545 // The end locations of entities may be unordered (when a macro expansion
3546 // is inside another macro argument), but for this case it is not important
3547 // whether we get the first macro expansion or its containing macro.
3548 while (Count > 0) {
3549 Half = Count/2;
3550 PPI = First;
3551 std::advance(PPI, Half);
3552 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
3553 BLoc)){
3554 First = PPI;
3555 ++First;
3556 Count = Count - Half - 1;
3557 } else
3558 Count = Half;
3559 }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003560
3561 if (PPI == pp_end)
3562 return findNextPreprocessedEntity(SLocMapI);
3563
3564 return getGlobalPreprocessedEntityID(M,
3565 M.BasePreprocessedEntityID + (PPI - pp_begin));
3566}
3567
3568/// \brief Returns the first preprocessed entity ID that begins after \arg ELoc.
3569PreprocessedEntityID
3570ASTReader::findEndPreprocessedEntity(SourceLocation ELoc) const {
3571 if (SourceMgr.isLocalSourceLocation(ELoc))
3572 return getTotalNumPreprocessedEntities();
3573
3574 GlobalSLocOffsetMapType::const_iterator
3575 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3576 ELoc.getOffset());
3577 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3578 "Corrupted global sloc offset map");
3579
3580 if (SLocMapI->second->NumPreprocessedEntities == 0)
3581 return findNextPreprocessedEntity(SLocMapI);
3582
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003583 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003584 typedef const PPEntityOffset *pp_iterator;
3585 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3586 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
3587 pp_iterator PPI =
3588 std::upper_bound(pp_begin, pp_end, ELoc,
3589 PPEntityComp<&PPEntityOffset::Begin>(*this, M));
3590
3591 if (PPI == pp_end)
3592 return findNextPreprocessedEntity(SLocMapI);
3593
3594 return getGlobalPreprocessedEntityID(M,
3595 M.BasePreprocessedEntityID + (PPI - pp_begin));
3596}
3597
3598/// \brief Returns a pair of [Begin, End) indices of preallocated
3599/// preprocessed entities that \arg Range encompasses.
3600std::pair<unsigned, unsigned>
3601 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
3602 if (Range.isInvalid())
3603 return std::make_pair(0,0);
3604 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
3605
3606 PreprocessedEntityID BeginID = findBeginPreprocessedEntity(Range.getBegin());
3607 PreprocessedEntityID EndID = findEndPreprocessedEntity(Range.getEnd());
3608 return std::make_pair(BeginID, EndID);
3609}
3610
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003611/// \brief Optionally returns true or false if the preallocated preprocessed
3612/// entity with index \arg Index came from file \arg FID.
3613llvm::Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
3614 FileID FID) {
3615 if (FID.isInvalid())
3616 return false;
3617
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003618 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3619 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003620 unsigned LocalIndex = PPInfo.second;
3621 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
3622
3623 SourceLocation Loc = ReadSourceLocation(M, PPOffs.Begin);
3624 if (Loc.isInvalid())
3625 return false;
3626
3627 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
3628 return true;
3629 else
3630 return false;
3631}
3632
Douglas Gregord10a3812011-08-25 18:14:34 +00003633namespace {
3634 /// \brief Visitor used to search for information about a header file.
3635 class HeaderFileInfoVisitor {
3636 ASTReader &Reader;
3637 const FileEntry *FE;
3638
3639 llvm::Optional<HeaderFileInfo> HFI;
3640
3641 public:
3642 HeaderFileInfoVisitor(ASTReader &Reader, const FileEntry *FE)
3643 : Reader(Reader), FE(FE) { }
3644
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003645 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003646 HeaderFileInfoVisitor *This
3647 = static_cast<HeaderFileInfoVisitor *>(UserData);
3648
3649 HeaderFileInfoTrait Trait(This->Reader, M,
3650 &This->Reader.getPreprocessor().getHeaderSearchInfo(),
3651 M.HeaderFileFrameworkStrings,
3652 This->FE->getName());
3653
3654 HeaderFileInfoLookupTable *Table
3655 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
3656 if (!Table)
3657 return false;
3658
3659 // Look in the on-disk hash table for an entry for this file name.
3660 HeaderFileInfoLookupTable::iterator Pos = Table->find(This->FE->getName(),
3661 &Trait);
3662 if (Pos == Table->end())
3663 return false;
3664
3665 This->HFI = *Pos;
3666 return true;
3667 }
3668
3669 llvm::Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
3670 };
3671}
3672
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003673HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003674 HeaderFileInfoVisitor Visitor(*this, FE);
3675 ModuleMgr.visit(&HeaderFileInfoVisitor::visit, &Visitor);
3676 if (llvm::Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo()) {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003677 if (Listener)
Douglas Gregord10a3812011-08-25 18:14:34 +00003678 Listener->ReadHeaderFileInfo(*HFI, FE->getUID());
3679 return *HFI;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003680 }
3681
3682 return HeaderFileInfo();
3683}
3684
David Blaikied6471f72011-09-25 23:23:43 +00003685void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00003686 for (ModuleIterator I = ModuleMgr.begin(), E = ModuleMgr.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003687 ModuleFile &F = *(*I);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003688 unsigned Idx = 0;
3689 while (Idx < F.PragmaDiagMappings.size()) {
3690 SourceLocation Loc = ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003691 Diag.DiagStates.push_back(*Diag.GetCurDiagState());
3692 Diag.DiagStatePoints.push_back(
3693 DiagnosticsEngine::DiagStatePoint(&Diag.DiagStates.back(),
3694 FullSourceLoc(Loc, SourceMgr)));
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003695 while (1) {
3696 assert(Idx < F.PragmaDiagMappings.size() &&
3697 "Invalid data, didn't find '-1' marking end of diag/map pairs");
3698 if (Idx >= F.PragmaDiagMappings.size()) {
3699 break; // Something is messed up but at least avoid infinite loop in
3700 // release build.
3701 }
3702 unsigned DiagID = F.PragmaDiagMappings[Idx++];
3703 if (DiagID == (unsigned)-1) {
3704 break; // no more diag/map pairs for this location.
3705 }
3706 diag::Mapping Map = (diag::Mapping)F.PragmaDiagMappings[Idx++];
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003707 DiagnosticMappingInfo MappingInfo = Diag.makeMappingInfo(Map, Loc);
3708 Diag.GetCurDiagState()->setMappingInfo(DiagID, MappingInfo);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003709 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00003710 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00003711 }
3712}
3713
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003714/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00003715ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Douglas Gregora119da02011-08-02 16:26:37 +00003716 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
Jonathan D. Turnere9b76c12011-07-20 21:31:32 +00003717 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003718 ModuleFile *M = I->second;
Douglas Gregore3605012011-08-02 18:32:54 +00003719 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003720}
3721
3722/// \brief Read and return the type with the given index..
Douglas Gregor2cf26342009-04-09 22:27:44 +00003723///
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003724/// The index is the type ID, shifted and minus the number of predefs. This
3725/// routine actually reads the record corresponding to the type at the given
3726/// location. It is a helper routine for GetType, which deals with reading type
3727/// IDs.
Douglas Gregor393f2492011-07-22 00:38:23 +00003728QualType ASTReader::readTypeRecord(unsigned Index) {
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003729 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00003730 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00003731
Douglas Gregor0b748912009-04-14 21:18:50 +00003732 // Keep track of where we are in the stream, then jump back there
3733 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003734 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00003735
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003736 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redl27372b42010-08-11 18:52:41 +00003737
Douglas Gregord89275b2009-07-06 18:54:52 +00003738 // Note that we are loading a type record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00003739 Deserializing AType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00003740
Douglas Gregor393f2492011-07-22 00:38:23 +00003741 unsigned Idx = 0;
Sebastian Redlc3632732010-10-05 15:59:54 +00003742 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003743 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003744 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003745 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
3746 case TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003747 if (Record.size() != 2) {
3748 Error("Incorrect encoding of extended qualifier type");
3749 return QualType();
3750 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003751 QualType Base = readType(*Loc.F, Record, Idx);
3752 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
Douglas Gregor35942772011-09-09 21:34:22 +00003753 return Context.getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00003754 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003755
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003756 case TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003757 if (Record.size() != 1) {
3758 Error("Incorrect encoding of complex type");
3759 return QualType();
3760 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003761 QualType ElemType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003762 return Context.getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003763 }
3764
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003765 case TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003766 if (Record.size() != 1) {
3767 Error("Incorrect encoding of pointer type");
3768 return QualType();
3769 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003770 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003771 return Context.getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003772 }
3773
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003774 case TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003775 if (Record.size() != 1) {
3776 Error("Incorrect encoding of block pointer type");
3777 return QualType();
3778 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003779 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003780 return Context.getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003781 }
3782
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003783 case TYPE_LVALUE_REFERENCE: {
Richard Smithdf1550f2011-04-12 10:38:03 +00003784 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003785 Error("Incorrect encoding of lvalue reference type");
3786 return QualType();
3787 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003788 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003789 return Context.getLValueReferenceType(PointeeType, Record[1]);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003790 }
3791
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003792 case TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003793 if (Record.size() != 1) {
3794 Error("Incorrect encoding of rvalue reference type");
3795 return QualType();
3796 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003797 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003798 return Context.getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003799 }
3800
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003801 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00003802 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003803 Error("Incorrect encoding of member pointer type");
3804 return QualType();
3805 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003806 QualType PointeeType = readType(*Loc.F, Record, Idx);
3807 QualType ClassType = readType(*Loc.F, Record, Idx);
Douglas Gregor1ab55e92010-12-10 17:03:06 +00003808 if (PointeeType.isNull() || ClassType.isNull())
3809 return QualType();
3810
Douglas Gregor35942772011-09-09 21:34:22 +00003811 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00003812 }
3813
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003814 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003815 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003816 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3817 unsigned IndexTypeQuals = Record[2];
3818 unsigned Idx = 3;
3819 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003820 return Context.getConstantArrayType(ElementType, Size,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003821 ASM, IndexTypeQuals);
3822 }
3823
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003824 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003825 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003826 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3827 unsigned IndexTypeQuals = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003828 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003829 }
3830
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003831 case TYPE_VARIABLE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003832 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregor0b748912009-04-14 21:18:50 +00003833 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3834 unsigned IndexTypeQuals = Record[2];
Sebastian Redlc3632732010-10-05 15:59:54 +00003835 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
3836 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
Douglas Gregor35942772011-09-09 21:34:22 +00003837 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003838 ASM, IndexTypeQuals,
3839 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003840 }
3841
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003842 case TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003843 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003844 Error("incorrect encoding of vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003845 return QualType();
3846 }
3847
Douglas Gregor393f2492011-07-22 00:38:23 +00003848 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003849 unsigned NumElements = Record[1];
Bob Wilsone86d78c2010-11-10 21:56:12 +00003850 unsigned VecKind = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003851 return Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00003852 (VectorType::VectorKind)VecKind);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003853 }
3854
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003855 case TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003856 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003857 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003858 return QualType();
3859 }
3860
Douglas Gregor393f2492011-07-22 00:38:23 +00003861 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003862 unsigned NumElements = Record[1];
Douglas Gregor35942772011-09-09 21:34:22 +00003863 return Context.getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003864 }
3865
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003866 case TYPE_FUNCTION_NO_PROTO: {
John McCallf85e1932011-06-15 23:02:42 +00003867 if (Record.size() != 6) {
Douglas Gregora02b1472009-04-28 21:53:25 +00003868 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003869 return QualType();
3870 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003871 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCallf85e1932011-06-15 23:02:42 +00003872 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
3873 (CallingConv)Record[4], Record[5]);
Douglas Gregor35942772011-09-09 21:34:22 +00003874 return Context.getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003875 }
3876
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003877 case TYPE_FUNCTION_PROTO: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003878 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCalle23cf432010-12-14 08:05:40 +00003879
3880 FunctionProtoType::ExtProtoInfo EPI;
3881 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
Eli Friedmana49218e2011-04-09 08:18:08 +00003882 /*hasregparm*/ Record[2],
3883 /*regparm*/ Record[3],
John McCallf85e1932011-06-15 23:02:42 +00003884 static_cast<CallingConv>(Record[4]),
3885 /*produces*/ Record[5]);
John McCalle23cf432010-12-14 08:05:40 +00003886
John McCallf85e1932011-06-15 23:02:42 +00003887 unsigned Idx = 6;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003888 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00003889 SmallVector<QualType, 16> ParamTypes;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003890 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003891 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
John McCalle23cf432010-12-14 08:05:40 +00003892
3893 EPI.Variadic = Record[Idx++];
Richard Smitheefb3d52012-02-10 09:58:53 +00003894 EPI.HasTrailingReturn = Record[Idx++];
John McCalle23cf432010-12-14 08:05:40 +00003895 EPI.TypeQuals = Record[Idx++];
Douglas Gregorc938c162011-01-26 05:01:58 +00003896 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Sebastian Redl60618fa2011-03-12 11:50:43 +00003897 ExceptionSpecificationType EST =
3898 static_cast<ExceptionSpecificationType>(Record[Idx++]);
3899 EPI.ExceptionSpecType = EST;
Douglas Gregorb0d06e22012-04-04 00:34:49 +00003900 SmallVector<QualType, 2> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003901 if (EST == EST_Dynamic) {
3902 EPI.NumExceptions = Record[Idx++];
Sebastian Redl60618fa2011-03-12 11:50:43 +00003903 for (unsigned I = 0; I != EPI.NumExceptions; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003904 Exceptions.push_back(readType(*Loc.F, Record, Idx));
Sebastian Redl60618fa2011-03-12 11:50:43 +00003905 EPI.Exceptions = Exceptions.data();
3906 } else if (EST == EST_ComputedNoexcept) {
3907 EPI.NoexceptExpr = ReadExpr(*Loc.F);
3908 }
Douglas Gregor35942772011-09-09 21:34:22 +00003909 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams,
John McCalle23cf432010-12-14 08:05:40 +00003910 EPI);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003911 }
3912
Douglas Gregor409448c2011-07-21 22:35:25 +00003913 case TYPE_UNRESOLVED_USING: {
3914 unsigned Idx = 0;
Douglas Gregor35942772011-09-09 21:34:22 +00003915 return Context.getTypeDeclType(
Douglas Gregor409448c2011-07-21 22:35:25 +00003916 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
3917 }
3918
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003919 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003920 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003921 Error("incorrect encoding of typedef type");
3922 return QualType();
3923 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003924 unsigned Idx = 0;
3925 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00003926 QualType Canonical = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00003927 if (!Canonical.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00003928 Canonical = Context.getCanonicalType(Canonical);
3929 return Context.getTypedefType(Decl, Canonical);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003930 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003931
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003932 case TYPE_TYPEOF_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00003933 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003934
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003935 case TYPE_TYPEOF: {
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003936 if (Record.size() != 1) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003937 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003938 return QualType();
3939 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003940 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003941 return Context.getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003942 }
Mike Stump1eb44332009-09-09 15:08:12 +00003943
Douglas Gregorf8af9822012-02-12 18:42:33 +00003944 case TYPE_DECLTYPE: {
3945 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
3946 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
3947 }
Anders Carlsson395b4752009-06-24 19:06:50 +00003948
Sean Huntca63c202011-05-24 22:41:36 +00003949 case TYPE_UNARY_TRANSFORM: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003950 QualType BaseType = readType(*Loc.F, Record, Idx);
3951 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Sean Huntca63c202011-05-24 22:41:36 +00003952 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003953 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
Sean Huntca63c202011-05-24 22:41:36 +00003954 }
3955
Richard Smith34b41d92011-02-20 03:19:35 +00003956 case TYPE_AUTO:
Douglas Gregor35942772011-09-09 21:34:22 +00003957 return Context.getAutoType(readType(*Loc.F, Record, Idx));
Richard Smith34b41d92011-02-20 03:19:35 +00003958
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003959 case TYPE_RECORD: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003960 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003961 Error("incorrect encoding of record type");
3962 return QualType();
3963 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003964 unsigned Idx = 0;
3965 bool IsDependent = Record[Idx++];
Douglas Gregor56ca8a92012-01-17 19:21:53 +00003966 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
3967 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
3968 QualType T = Context.getRecordType(RD);
John McCallf4c73712011-01-19 06:33:43 +00003969 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003970 return T;
3971 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003972
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003973 case TYPE_ENUM: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003974 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003975 Error("incorrect encoding of enum type");
3976 return QualType();
3977 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003978 unsigned Idx = 0;
3979 bool IsDependent = Record[Idx++];
3980 QualType T
Douglas Gregor35942772011-09-09 21:34:22 +00003981 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
John McCallf4c73712011-01-19 06:33:43 +00003982 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003983 return T;
3984 }
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003985
John McCall9d156a72011-01-06 01:58:22 +00003986 case TYPE_ATTRIBUTED: {
3987 if (Record.size() != 3) {
3988 Error("incorrect encoding of attributed type");
3989 return QualType();
3990 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003991 QualType modifiedType = readType(*Loc.F, Record, Idx);
3992 QualType equivalentType = readType(*Loc.F, Record, Idx);
John McCall9d156a72011-01-06 01:58:22 +00003993 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
Douglas Gregor35942772011-09-09 21:34:22 +00003994 return Context.getAttributedType(kind, modifiedType, equivalentType);
John McCall9d156a72011-01-06 01:58:22 +00003995 }
3996
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003997 case TYPE_PAREN: {
3998 if (Record.size() != 1) {
3999 Error("incorrect encoding of paren type");
4000 return QualType();
4001 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004002 QualType InnerType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004003 return Context.getParenType(InnerType);
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004004 }
4005
Douglas Gregor7536dd52010-12-20 02:24:11 +00004006 case TYPE_PACK_EXPANSION: {
Douglas Gregorf9997a02011-02-01 15:24:58 +00004007 if (Record.size() != 2) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00004008 Error("incorrect encoding of pack expansion type");
4009 return QualType();
4010 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004011 QualType Pattern = readType(*Loc.F, Record, Idx);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004012 if (Pattern.isNull())
4013 return QualType();
Douglas Gregorcded4f62011-01-14 17:04:44 +00004014 llvm::Optional<unsigned> NumExpansions;
4015 if (Record[1])
4016 NumExpansions = Record[1] - 1;
Douglas Gregor35942772011-09-09 21:34:22 +00004017 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004018 }
4019
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004020 case TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004021 unsigned Idx = 0;
4022 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004023 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004024 QualType NamedType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004025 return Context.getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00004026 }
4027
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004028 case TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004029 unsigned Idx = 0;
Douglas Gregor409448c2011-07-21 22:35:25 +00004030 ObjCInterfaceDecl *ItfD
4031 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004032 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
John McCallc12c5bb2010-05-15 11:32:37 +00004033 }
4034
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004035 case TYPE_OBJC_OBJECT: {
John McCallc12c5bb2010-05-15 11:32:37 +00004036 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004037 QualType Base = readType(*Loc.F, Record, Idx);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004038 unsigned NumProtos = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004039 SmallVector<ObjCProtocolDecl*, 4> Protos;
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004040 for (unsigned I = 0; I != NumProtos; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +00004041 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004042 return Context.getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004043 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004044
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004045 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004046 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004047 QualType Pointee = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004048 return Context.getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004049 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00004050
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004051 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCall49a832b2009-10-18 09:09:24 +00004052 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004053 QualType Parm = readType(*Loc.F, Record, Idx);
4054 QualType Replacement = readType(*Loc.F, Record, Idx);
John McCall49a832b2009-10-18 09:09:24 +00004055 return
Douglas Gregor35942772011-09-09 21:34:22 +00004056 Context.getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
John McCall49a832b2009-10-18 09:09:24 +00004057 Replacement);
4058 }
John McCall3cb0ebd2010-03-10 03:28:59 +00004059
Douglas Gregorc3069d62011-01-14 02:55:32 +00004060 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
4061 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004062 QualType Parm = readType(*Loc.F, Record, Idx);
Douglas Gregorc3069d62011-01-14 02:55:32 +00004063 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004064 return Context.getSubstTemplateTypeParmPackType(
Douglas Gregorc3069d62011-01-14 02:55:32 +00004065 cast<TemplateTypeParmType>(Parm),
4066 ArgPack);
4067 }
4068
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004069 case TYPE_INJECTED_CLASS_NAME: {
Douglas Gregor409448c2011-07-21 22:35:25 +00004070 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004071 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004072 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004073 // for AST reading, too much interdependencies.
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004074 return
Douglas Gregor35942772011-09-09 21:34:22 +00004075 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00004076 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004077
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004078 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004079 unsigned Idx = 0;
4080 unsigned Depth = Record[Idx++];
4081 unsigned Index = Record[Idx++];
4082 bool Pack = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004083 TemplateTypeParmDecl *D
4084 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004085 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004086 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004087
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004088 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004089 unsigned Idx = 0;
4090 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004091 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004092 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004093 QualType Canon = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004094 if (!Canon.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004095 Canon = Context.getCanonicalType(Canon);
4096 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004097 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004098
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004099 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004100 unsigned Idx = 0;
4101 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004102 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004103 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004104 unsigned NumArgs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004105 SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004106 Args.reserve(NumArgs);
4107 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00004108 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004109 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004110 Args.size(), Args.data());
4111 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004112
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004113 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004114 unsigned Idx = 0;
4115
4116 // ArrayType
Douglas Gregor393f2492011-07-22 00:38:23 +00004117 QualType ElementType = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004118 ArrayType::ArraySizeModifier ASM
4119 = (ArrayType::ArraySizeModifier)Record[Idx++];
4120 unsigned IndexTypeQuals = Record[Idx++];
4121
4122 // DependentSizedArrayType
Sebastian Redlc3632732010-10-05 15:59:54 +00004123 Expr *NumElts = ReadExpr(*Loc.F);
4124 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004125
Douglas Gregor35942772011-09-09 21:34:22 +00004126 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004127 IndexTypeQuals, Brackets);
4128 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004129
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004130 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004131 unsigned Idx = 0;
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004132 bool IsDependent = Record[Idx++];
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004133 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004134 SmallVector<TemplateArgument, 8> Args;
Sebastian Redlc3632732010-10-05 15:59:54 +00004135 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004136 QualType Underlying = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004137 QualType T;
Richard Smith3e4c6c42011-05-05 21:57:07 +00004138 if (Underlying.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004139 T = Context.getCanonicalTemplateSpecializationType(Name, Args.data(),
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004140 Args.size());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004141 else
Douglas Gregor35942772011-09-09 21:34:22 +00004142 T = Context.getTemplateSpecializationType(Name, Args.data(),
Richard Smith3e4c6c42011-05-05 21:57:07 +00004143 Args.size(), Underlying);
John McCallf4c73712011-01-19 06:33:43 +00004144 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004145 return T;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004146 }
Eli Friedmanb001de72011-10-06 23:00:33 +00004147
4148 case TYPE_ATOMIC: {
4149 if (Record.size() != 1) {
4150 Error("Incorrect encoding of atomic type");
4151 return QualType();
4152 }
4153 QualType ValueType = readType(*Loc.F, Record, Idx);
4154 return Context.getAtomicType(ValueType);
4155 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00004156 }
David Blaikie7530c032012-01-17 06:56:22 +00004157 llvm_unreachable("Invalid TypeCode!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00004158}
4159
Sebastian Redlc3632732010-10-05 15:59:54 +00004160class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004161 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004162 ModuleFile &F;
Sebastian Redl577d4792010-07-22 22:43:28 +00004163 llvm::BitstreamCursor &DeclsCursor;
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004164 const ASTReader::RecordData &Record;
John McCalla1ee0c52009-10-16 21:56:05 +00004165 unsigned &Idx;
4166
Sebastian Redlc3632732010-10-05 15:59:54 +00004167 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
4168 unsigned &I) {
4169 return Reader.ReadSourceLocation(F, R, I);
4170 }
4171
Douglas Gregor409448c2011-07-21 22:35:25 +00004172 template<typename T>
4173 T *ReadDeclAs(const ASTReader::RecordData &Record, unsigned &Idx) {
4174 return Reader.ReadDeclAs<T>(F, Record, Idx);
4175 }
4176
John McCalla1ee0c52009-10-16 21:56:05 +00004177public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004178 TypeLocReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004179 const ASTReader::RecordData &Record, unsigned &Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +00004180 : Reader(Reader), F(F), DeclsCursor(F.DeclsCursor), Record(Record), Idx(Idx)
4181 { }
John McCalla1ee0c52009-10-16 21:56:05 +00004182
John McCall51bd8032009-10-18 01:05:36 +00004183 // We want compile-time assurance that we've enumerated all of
4184 // these, so unfortunately we have to declare them first, then
4185 // define them out-of-line.
4186#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00004187#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00004188 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004189#include "clang/AST/TypeLocNodes.def"
4190
John McCall51bd8032009-10-18 01:05:36 +00004191 void VisitFunctionTypeLoc(FunctionTypeLoc);
4192 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004193};
4194
John McCall51bd8032009-10-18 01:05:36 +00004195void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00004196 // nothing to do
4197}
John McCall51bd8032009-10-18 01:05:36 +00004198void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004199 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorddf889a2010-01-18 18:04:31 +00004200 if (TL.needsExtraLocalData()) {
4201 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
4202 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
4203 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
4204 TL.setModeAttr(Record[Idx++]);
4205 }
John McCalla1ee0c52009-10-16 21:56:05 +00004206}
John McCall51bd8032009-10-18 01:05:36 +00004207void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004208 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004209}
John McCall51bd8032009-10-18 01:05:36 +00004210void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004211 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004212}
John McCall51bd8032009-10-18 01:05:36 +00004213void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004214 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004215}
John McCall51bd8032009-10-18 01:05:36 +00004216void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004217 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004218}
John McCall51bd8032009-10-18 01:05:36 +00004219void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004220 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004221}
John McCall51bd8032009-10-18 01:05:36 +00004222void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004223 TL.setStarLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +00004224 TL.setClassTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004225}
John McCall51bd8032009-10-18 01:05:36 +00004226void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004227 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
4228 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004229 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00004230 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004231 else
John McCall51bd8032009-10-18 01:05:36 +00004232 TL.setSizeExpr(0);
4233}
4234void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
4235 VisitArrayTypeLoc(TL);
4236}
4237void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
4238 VisitArrayTypeLoc(TL);
4239}
4240void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
4241 VisitArrayTypeLoc(TL);
4242}
4243void TypeLocReader::VisitDependentSizedArrayTypeLoc(
4244 DependentSizedArrayTypeLoc TL) {
4245 VisitArrayTypeLoc(TL);
4246}
4247void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
4248 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004249 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004250}
4251void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004252 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004253}
4254void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004255 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004256}
4257void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00004258 TL.setLocalRangeBegin(ReadSourceLocation(Record, Idx));
4259 TL.setLocalRangeEnd(ReadSourceLocation(Record, Idx));
Douglas Gregordab60ad2010-10-01 18:44:50 +00004260 TL.setTrailingReturn(Record[Idx++]);
John McCall51bd8032009-10-18 01:05:36 +00004261 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00004262 TL.setArg(i, ReadDeclAs<ParmVarDecl>(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004263 }
4264}
4265void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
4266 VisitFunctionTypeLoc(TL);
4267}
4268void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
4269 VisitFunctionTypeLoc(TL);
4270}
John McCalled976492009-12-04 22:46:56 +00004271void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004272 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalled976492009-12-04 22:46:56 +00004273}
John McCall51bd8032009-10-18 01:05:36 +00004274void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004275 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004276}
4277void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004278 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4279 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4280 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004281}
4282void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004283 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4284 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4285 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4286 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004287}
4288void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004289 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004290}
Sean Huntca63c202011-05-24 22:41:36 +00004291void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
4292 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4293 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4294 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4295 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
4296}
Richard Smith34b41d92011-02-20 03:19:35 +00004297void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
4298 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4299}
John McCall51bd8032009-10-18 01:05:36 +00004300void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004301 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004302}
4303void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004304 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004305}
John McCall9d156a72011-01-06 01:58:22 +00004306void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
4307 TL.setAttrNameLoc(ReadSourceLocation(Record, Idx));
4308 if (TL.hasAttrOperand()) {
4309 SourceRange range;
4310 range.setBegin(ReadSourceLocation(Record, Idx));
4311 range.setEnd(ReadSourceLocation(Record, Idx));
4312 TL.setAttrOperandParensRange(range);
4313 }
4314 if (TL.hasAttrExprOperand()) {
4315 if (Record[Idx++])
4316 TL.setAttrExprOperand(Reader.ReadExpr(F));
4317 else
4318 TL.setAttrExprOperand(0);
4319 } else if (TL.hasAttrEnumOperand())
4320 TL.setAttrEnumOperandLoc(ReadSourceLocation(Record, Idx));
4321}
John McCall51bd8032009-10-18 01:05:36 +00004322void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004323 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004324}
John McCall49a832b2009-10-18 09:09:24 +00004325void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
4326 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004327 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall49a832b2009-10-18 09:09:24 +00004328}
Douglas Gregorc3069d62011-01-14 02:55:32 +00004329void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
4330 SubstTemplateTypeParmPackTypeLoc TL) {
4331 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4332}
John McCall51bd8032009-10-18 01:05:36 +00004333void TypeLocReader::VisitTemplateSpecializationTypeLoc(
4334 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004335 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004336 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
4337 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4338 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall833ca992009-10-29 08:12:44 +00004339 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4340 TL.setArgLocInfo(i,
Sebastian Redlc3632732010-10-05 15:59:54 +00004341 Reader.GetTemplateArgumentLocInfo(F,
4342 TL.getTypePtr()->getArg(i).getKind(),
4343 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004344}
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004345void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
4346 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4347 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4348}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004349void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004350 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor9e876872011-03-01 18:12:44 +00004351 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004352}
John McCall3cb0ebd2010-03-10 03:28:59 +00004353void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004354 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall3cb0ebd2010-03-10 03:28:59 +00004355}
Douglas Gregor4714c122010-03-31 17:34:00 +00004356void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004357 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor2494dd02011-03-01 01:34:45 +00004358 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004359 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004360}
John McCall33500952010-06-11 00:33:02 +00004361void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
4362 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004363 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor94fdffa2011-03-01 20:11:18 +00004364 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Abramo Bagnara66581d42012-02-06 22:45:07 +00004365 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004366 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004367 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4368 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004369 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
4370 TL.setArgLocInfo(I,
Sebastian Redlc3632732010-10-05 15:59:54 +00004371 Reader.GetTemplateArgumentLocInfo(F,
4372 TL.getTypePtr()->getArg(I).getKind(),
4373 Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004374}
Douglas Gregor7536dd52010-12-20 02:24:11 +00004375void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
4376 TL.setEllipsisLoc(ReadSourceLocation(Record, Idx));
4377}
John McCall51bd8032009-10-18 01:05:36 +00004378void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004379 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallc12c5bb2010-05-15 11:32:37 +00004380}
4381void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
4382 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00004383 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4384 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004385 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00004386 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004387}
John McCall54e14c42009-10-22 22:37:11 +00004388void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004389 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall54e14c42009-10-22 22:37:11 +00004390}
Eli Friedmanb001de72011-10-06 23:00:33 +00004391void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
4392 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4393 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4394 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4395}
John McCalla1ee0c52009-10-16 21:56:05 +00004396
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004397TypeSourceInfo *ASTReader::GetTypeSourceInfo(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004398 const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00004399 unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004400 QualType InfoTy = readType(F, Record, Idx);
John McCalla1ee0c52009-10-16 21:56:05 +00004401 if (InfoTy.isNull())
4402 return 0;
4403
Douglas Gregor35942772011-09-09 21:34:22 +00004404 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
Sebastian Redlc3632732010-10-05 15:59:54 +00004405 TypeLocReader TLR(*this, F, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00004406 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00004407 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00004408 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00004409}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004410
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004411QualType ASTReader::GetType(TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00004412 unsigned FastQuals = ID & Qualifiers::FastMask;
4413 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004414
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004415 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004416 QualType T;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004417 switch ((PredefinedTypeIDs)Index) {
4418 case PREDEF_TYPE_NULL_ID: return QualType();
Douglas Gregor35942772011-09-09 21:34:22 +00004419 case PREDEF_TYPE_VOID_ID: T = Context.VoidTy; break;
4420 case PREDEF_TYPE_BOOL_ID: T = Context.BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004421
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004422 case PREDEF_TYPE_CHAR_U_ID:
4423 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregor2cf26342009-04-09 22:27:44 +00004424 // FIXME: Check that the signedness of CharTy is correct!
Douglas Gregor35942772011-09-09 21:34:22 +00004425 T = Context.CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004426 break;
4427
Douglas Gregor35942772011-09-09 21:34:22 +00004428 case PREDEF_TYPE_UCHAR_ID: T = Context.UnsignedCharTy; break;
4429 case PREDEF_TYPE_USHORT_ID: T = Context.UnsignedShortTy; break;
4430 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break;
4431 case PREDEF_TYPE_ULONG_ID: T = Context.UnsignedLongTy; break;
4432 case PREDEF_TYPE_ULONGLONG_ID: T = Context.UnsignedLongLongTy; break;
4433 case PREDEF_TYPE_UINT128_ID: T = Context.UnsignedInt128Ty; break;
4434 case PREDEF_TYPE_SCHAR_ID: T = Context.SignedCharTy; break;
4435 case PREDEF_TYPE_WCHAR_ID: T = Context.WCharTy; break;
4436 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break;
4437 case PREDEF_TYPE_INT_ID: T = Context.IntTy; break;
4438 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break;
4439 case PREDEF_TYPE_LONGLONG_ID: T = Context.LongLongTy; break;
4440 case PREDEF_TYPE_INT128_ID: T = Context.Int128Ty; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004441 case PREDEF_TYPE_HALF_ID: T = Context.HalfTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004442 case PREDEF_TYPE_FLOAT_ID: T = Context.FloatTy; break;
4443 case PREDEF_TYPE_DOUBLE_ID: T = Context.DoubleTy; break;
4444 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context.LongDoubleTy; break;
4445 case PREDEF_TYPE_OVERLOAD_ID: T = Context.OverloadTy; break;
4446 case PREDEF_TYPE_BOUND_MEMBER: T = Context.BoundMemberTy; break;
John McCall3c3b7f92011-10-25 17:37:35 +00004447 case PREDEF_TYPE_PSEUDO_OBJECT: T = Context.PseudoObjectTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004448 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break;
4449 case PREDEF_TYPE_UNKNOWN_ANY: T = Context.UnknownAnyTy; break;
4450 case PREDEF_TYPE_NULLPTR_ID: T = Context.NullPtrTy; break;
4451 case PREDEF_TYPE_CHAR16_ID: T = Context.Char16Ty; break;
4452 case PREDEF_TYPE_CHAR32_ID: T = Context.Char32Ty; break;
4453 case PREDEF_TYPE_OBJC_ID: T = Context.ObjCBuiltinIdTy; break;
4454 case PREDEF_TYPE_OBJC_CLASS: T = Context.ObjCBuiltinClassTy; break;
4455 case PREDEF_TYPE_OBJC_SEL: T = Context.ObjCBuiltinSelTy; break;
4456 case PREDEF_TYPE_AUTO_DEDUCT: T = Context.getAutoDeductType(); break;
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004457
4458 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00004459 T = Context.getAutoRRefDeductType();
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004460 break;
John McCall0ddaeb92011-10-17 18:09:15 +00004461
4462 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
4463 T = Context.ARCUnbridgedCastTy;
4464 break;
4465
Douglas Gregor2cf26342009-04-09 22:27:44 +00004466 }
4467
4468 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00004469 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004470 }
4471
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004472 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004473 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl07a353c2010-07-14 20:26:45 +00004474 if (TypesLoaded[Index].isNull()) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004475 TypesLoaded[Index] = readTypeRecord(Index);
Douglas Gregor97475832010-10-05 18:37:06 +00004476 if (TypesLoaded[Index].isNull())
4477 return QualType();
4478
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004479 TypesLoaded[Index]->setFromAST();
Sebastian Redl30c514c2010-07-14 23:45:08 +00004480 if (DeserializationListener)
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004481 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1476ed42010-07-16 16:36:56 +00004482 TypesLoaded[Index]);
Sebastian Redl07a353c2010-07-14 20:26:45 +00004483 }
Mike Stump1eb44332009-09-09 15:08:12 +00004484
John McCall0953e762009-09-24 19:53:00 +00004485 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004486}
4487
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004488QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004489 return GetType(getGlobalTypeID(F, LocalID));
4490}
4491
4492serialization::TypeID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004493ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregora119da02011-08-02 16:26:37 +00004494 unsigned FastQuals = LocalID & Qualifiers::FastMask;
4495 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
4496
4497 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
4498 return LocalID;
4499
4500 ContinuousRangeMap<uint32_t, int, 2>::iterator I
4501 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
4502 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
4503
4504 unsigned GlobalIndex = LocalIndex + I->second;
4505 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
4506}
4507
John McCall833ca992009-10-29 08:12:44 +00004508TemplateArgumentLocInfo
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004509ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00004510 TemplateArgument::ArgKind Kind,
John McCall833ca992009-10-29 08:12:44 +00004511 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004512 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00004513 switch (Kind) {
4514 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00004515 return ReadExpr(F);
John McCall833ca992009-10-29 08:12:44 +00004516 case TemplateArgument::Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00004517 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00004518 case TemplateArgument::Template: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004519 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4520 Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004521 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004522 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregora7fc9012011-01-05 18:58:31 +00004523 SourceLocation());
4524 }
4525 case TemplateArgument::TemplateExpansion: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004526 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4527 Index);
Douglas Gregora7fc9012011-01-05 18:58:31 +00004528 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorba68eca2011-01-05 17:40:24 +00004529 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004530 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregorba68eca2011-01-05 17:40:24 +00004531 EllipsisLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00004532 }
John McCall833ca992009-10-29 08:12:44 +00004533 case TemplateArgument::Null:
4534 case TemplateArgument::Integral:
4535 case TemplateArgument::Declaration:
4536 case TemplateArgument::Pack:
4537 return TemplateArgumentLocInfo();
4538 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00004539 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00004540}
4541
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004542TemplateArgumentLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004543ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004544 const RecordData &Record, unsigned &Index) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004545 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004546
4547 if (Arg.getKind() == TemplateArgument::Expression) {
4548 if (Record[Index++]) // bool InfoHasSameExpr.
4549 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
4550 }
Sebastian Redlc3632732010-10-05 15:59:54 +00004551 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004552 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004553}
4554
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004555Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall76bd1f32010-06-01 09:23:16 +00004556 return GetDecl(ID);
4557}
4558
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004559uint64_t ASTReader::readCXXBaseSpecifiers(ModuleFile &M, const RecordData &Record,
Douglas Gregore92b8a12011-08-04 00:01:48 +00004560 unsigned &Idx){
4561 if (Idx >= Record.size())
Douglas Gregor7c789c12010-10-29 22:39:52 +00004562 return 0;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004563
Douglas Gregore92b8a12011-08-04 00:01:48 +00004564 unsigned LocalID = Record[Idx++];
4565 return getGlobalBitOffset(M, M.CXXBaseSpecifiersOffsets[LocalID - 1]);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004566}
4567
4568CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004569 RecordLocation Loc = getLocalBitOffset(Offset);
4570 llvm::BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004571 SavedStreamPosition SavedPosition(Cursor);
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004572 Cursor.JumpToBit(Loc.Offset);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004573 ReadingKindTracker ReadingKind(Read_Decl, *this);
4574 RecordData Record;
4575 unsigned Code = Cursor.ReadCode();
4576 unsigned RecCode = Cursor.ReadRecord(Code, Record);
4577 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
4578 Error("Malformed AST file: missing C++ base specifiers");
4579 return 0;
4580 }
4581
4582 unsigned Idx = 0;
4583 unsigned NumBases = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00004584 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004585 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
4586 for (unsigned I = 0; I != NumBases; ++I)
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004587 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004588 return Bases;
4589}
4590
Douglas Gregor409448c2011-07-21 22:35:25 +00004591serialization::DeclID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004592ASTReader::getGlobalDeclID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004593 if (LocalID < NUM_PREDEF_DECL_IDS)
Douglas Gregor496c7092011-08-03 15:48:04 +00004594 return LocalID;
4595
4596 ContinuousRangeMap<uint32_t, int, 2>::iterator I
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004597 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
Douglas Gregor496c7092011-08-03 15:48:04 +00004598 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
4599
4600 return LocalID + I->second;
Douglas Gregor409448c2011-07-21 22:35:25 +00004601}
4602
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004603bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004604 ModuleFile &M) const {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004605 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(ID);
4606 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4607 return &M == I->second;
4608}
4609
Douglas Gregorcff9f262012-01-27 01:47:08 +00004610ModuleFile *ASTReader::getOwningModuleFile(Decl *D) {
4611 if (!D->isFromASTFile())
4612 return 0;
4613 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
4614 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4615 return I->second;
4616}
4617
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004618SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
4619 if (ID < NUM_PREDEF_DECL_IDS)
4620 return SourceLocation();
4621
4622 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4623
4624 if (Index > DeclsLoaded.size()) {
4625 Error("declaration ID out-of-range for AST file");
4626 return SourceLocation();
4627 }
4628
4629 if (Decl *D = DeclsLoaded[Index])
4630 return D->getLocation();
4631
4632 unsigned RawLocation = 0;
4633 RecordLocation Rec = DeclCursorForID(ID, RawLocation);
4634 return ReadSourceLocation(*Rec.F, RawLocation);
4635}
4636
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004637Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004638 if (ID < NUM_PREDEF_DECL_IDS) {
4639 switch ((PredefinedDeclIDs)ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004640 case PREDEF_DECL_NULL_ID:
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004641 return 0;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004642
4643 case PREDEF_DECL_TRANSLATION_UNIT_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004644 return Context.getTranslationUnitDecl();
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00004645
4646 case PREDEF_DECL_OBJC_ID_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004647 return Context.getObjCIdDecl();
Douglas Gregor79d67262011-08-12 05:59:41 +00004648
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004649 case PREDEF_DECL_OBJC_SEL_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004650 return Context.getObjCSelDecl();
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004651
Douglas Gregor79d67262011-08-12 05:59:41 +00004652 case PREDEF_DECL_OBJC_CLASS_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004653 return Context.getObjCClassDecl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004654
Douglas Gregora6ea10e2012-01-17 18:09:05 +00004655 case PREDEF_DECL_OBJC_PROTOCOL_ID:
4656 return Context.getObjCProtocolDecl();
4657
Douglas Gregor772eeae2011-08-12 06:49:56 +00004658 case PREDEF_DECL_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004659 return Context.getInt128Decl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004660
4661 case PREDEF_DECL_UNSIGNED_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004662 return Context.getUInt128Decl();
Douglas Gregore97179c2011-09-08 01:46:34 +00004663
4664 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004665 return Context.getObjCInstanceTypeDecl();
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004666 }
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004667 }
4668
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004669 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4670
Richard Smith2fbf3732011-12-20 04:39:57 +00004671 if (Index >= DeclsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004672 Error("declaration ID out-of-range for AST file");
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004673 }
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004674
Douglas Gregorfd002a72011-12-16 22:37:11 +00004675 if (!DeclsLoaded[Index]) {
Douglas Gregor496c7092011-08-03 15:48:04 +00004676 ReadDeclRecord(ID);
Sebastian Redl30c514c2010-07-14 23:45:08 +00004677 if (DeserializationListener)
4678 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
4679 }
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004680
4681 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00004682}
4683
Douglas Gregora1be2782011-12-17 23:38:30 +00004684DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
4685 DeclID GlobalID) {
4686 if (GlobalID < NUM_PREDEF_DECL_IDS)
4687 return GlobalID;
4688
4689 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
4690 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4691 ModuleFile *Owner = I->second;
4692
4693 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
4694 = M.GlobalToLocalDeclIDs.find(Owner);
4695 if (Pos == M.GlobalToLocalDeclIDs.end())
4696 return 0;
4697
4698 return GlobalID - Owner->BaseDeclID + Pos->second;
4699}
4700
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004701serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00004702 const RecordData &Record,
4703 unsigned &Idx) {
4704 if (Idx >= Record.size()) {
4705 Error("Corrupted AST file");
4706 return 0;
4707 }
4708
4709 return getGlobalDeclID(F, Record[Idx++]);
4710}
4711
Chris Lattner887e2b32009-04-27 05:46:25 +00004712/// \brief Resolve the offset of a statement into a statement.
4713///
4714/// This operation will read a new statement from the external
4715/// source each time it is called, and is meant to be used via a
4716/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004717Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00004718 // Switch case IDs are per Decl.
4719 ClearSwitchCaseIDs();
4720
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00004721 // Offset here is a global offset across the entire chain.
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004722 RecordLocation Loc = getLocalBitOffset(Offset);
4723 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
4724 return ReadStmtFromStream(*Loc.F);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00004725}
4726
Douglas Gregor851c75a2011-08-24 21:27:34 +00004727namespace {
4728 class FindExternalLexicalDeclsVisitor {
4729 ASTReader &Reader;
4730 const DeclContext *DC;
4731 bool (*isKindWeWant)(Decl::Kind);
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004732
Douglas Gregor851c75a2011-08-24 21:27:34 +00004733 SmallVectorImpl<Decl*> &Decls;
4734 bool PredefsVisited[NUM_PREDEF_DECL_IDS];
4735
4736 public:
4737 FindExternalLexicalDeclsVisitor(ASTReader &Reader, const DeclContext *DC,
4738 bool (*isKindWeWant)(Decl::Kind),
4739 SmallVectorImpl<Decl*> &Decls)
4740 : Reader(Reader), DC(DC), isKindWeWant(isKindWeWant), Decls(Decls)
4741 {
4742 for (unsigned I = 0; I != NUM_PREDEF_DECL_IDS; ++I)
4743 PredefsVisited[I] = false;
4744 }
4745
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004746 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
Douglas Gregor851c75a2011-08-24 21:27:34 +00004747 if (Preorder)
4748 return false;
4749
4750 FindExternalLexicalDeclsVisitor *This
4751 = static_cast<FindExternalLexicalDeclsVisitor *>(UserData);
4752
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004753 ModuleFile::DeclContextInfosMap::iterator Info
Douglas Gregor851c75a2011-08-24 21:27:34 +00004754 = M.DeclContextInfos.find(This->DC);
4755 if (Info == M.DeclContextInfos.end() || !Info->second.LexicalDecls)
4756 return false;
4757
4758 // Load all of the declaration IDs
4759 for (const KindDeclIDPair *ID = Info->second.LexicalDecls,
4760 *IDE = ID + Info->second.NumLexicalDecls;
4761 ID != IDE; ++ID) {
4762 if (This->isKindWeWant && !This->isKindWeWant((Decl::Kind)ID->first))
4763 continue;
4764
4765 // Don't add predefined declarations to the lexical context more
4766 // than once.
4767 if (ID->second < NUM_PREDEF_DECL_IDS) {
4768 if (This->PredefsVisited[ID->second])
4769 continue;
4770
4771 This->PredefsVisited[ID->second] = true;
4772 }
4773
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004774 if (Decl *D = This->Reader.GetLocalDecl(M, ID->second)) {
4775 if (!This->DC->isDeclInLexicalTraversal(D))
4776 This->Decls.push_back(D);
4777 }
Douglas Gregor851c75a2011-08-24 21:27:34 +00004778 }
4779
4780 return false;
4781 }
4782 };
4783}
4784
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004785ExternalLoadResult ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00004786 bool (*isKindWeWant)(Decl::Kind),
Chris Lattner5f9e2722011-07-23 10:55:15 +00004787 SmallVectorImpl<Decl*> &Decls) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004788 // There might be lexical decls in multiple modules, for the TU at
Douglas Gregor851c75a2011-08-24 21:27:34 +00004789 // least. Walk all of the modules in the order they were loaded.
4790 FindExternalLexicalDeclsVisitor Visitor(*this, DC, isKindWeWant, Decls);
4791 ModuleMgr.visitDepthFirst(&FindExternalLexicalDeclsVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00004792 ++NumLexicalDeclContextsRead;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004793 return ELR_Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004794}
4795
Douglas Gregor0d95f772011-08-24 19:03:07 +00004796namespace {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004797
4798class DeclIDComp {
4799 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004800 ModuleFile &Mod;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004801
4802public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004803 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004804
4805 bool operator()(LocalDeclID L, LocalDeclID R) const {
4806 SourceLocation LHS = getLocation(L);
4807 SourceLocation RHS = getLocation(R);
4808 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4809 }
4810
4811 bool operator()(SourceLocation LHS, LocalDeclID R) const {
4812 SourceLocation RHS = getLocation(R);
4813 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4814 }
4815
4816 bool operator()(LocalDeclID L, SourceLocation RHS) const {
4817 SourceLocation LHS = getLocation(L);
4818 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4819 }
4820
4821 SourceLocation getLocation(LocalDeclID ID) const {
4822 return Reader.getSourceManager().getFileLoc(
4823 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
4824 }
4825};
4826
4827}
4828
4829void ASTReader::FindFileRegionDecls(FileID File,
4830 unsigned Offset, unsigned Length,
4831 SmallVectorImpl<Decl *> &Decls) {
4832 SourceManager &SM = getSourceManager();
4833
4834 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
4835 if (I == FileDeclIDs.end())
4836 return;
4837
4838 FileDeclsInfo &DInfo = I->second;
4839 if (DInfo.Decls.empty())
4840 return;
4841
4842 SourceLocation
4843 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
4844 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
4845
4846 DeclIDComp DIDComp(*this, *DInfo.Mod);
4847 ArrayRef<serialization::LocalDeclID>::iterator
4848 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4849 BeginLoc, DIDComp);
4850 if (BeginIt != DInfo.Decls.begin())
4851 --BeginIt;
4852
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00004853 // If we are pointing at a top-level decl inside an objc container, we need
4854 // to backtrack until we find it otherwise we will fail to report that the
4855 // region overlaps with an objc container.
4856 while (BeginIt != DInfo.Decls.begin() &&
4857 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
4858 ->isTopLevelDeclInObjCContainer())
4859 --BeginIt;
4860
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004861 ArrayRef<serialization::LocalDeclID>::iterator
4862 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4863 EndLoc, DIDComp);
4864 if (EndIt != DInfo.Decls.end())
4865 ++EndIt;
4866
4867 for (ArrayRef<serialization::LocalDeclID>::iterator
4868 DIt = BeginIt; DIt != EndIt; ++DIt)
4869 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
4870}
4871
4872namespace {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004873 /// \brief ModuleFile visitor used to perform name lookup into a
Douglas Gregor0d95f772011-08-24 19:03:07 +00004874 /// declaration context.
4875 class DeclContextNameLookupVisitor {
4876 ASTReader &Reader;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004877 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Douglas Gregor0d95f772011-08-24 19:03:07 +00004878 const DeclContext *DC;
4879 DeclarationName Name;
4880 SmallVectorImpl<NamedDecl *> &Decls;
4881
4882 public:
4883 DeclContextNameLookupVisitor(ASTReader &Reader,
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004884 SmallVectorImpl<const DeclContext *> &Contexts,
4885 DeclarationName Name,
Douglas Gregor0d95f772011-08-24 19:03:07 +00004886 SmallVectorImpl<NamedDecl *> &Decls)
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004887 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls) { }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004888
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004889 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004890 DeclContextNameLookupVisitor *This
4891 = static_cast<DeclContextNameLookupVisitor *>(UserData);
4892
4893 // Check whether we have any visible declaration information for
4894 // this context in this module.
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004895 ModuleFile::DeclContextInfosMap::iterator Info;
4896 bool FoundInfo = false;
4897 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
4898 Info = M.DeclContextInfos.find(This->Contexts[I]);
4899 if (Info != M.DeclContextInfos.end() &&
4900 Info->second.NameLookupTableData) {
4901 FoundInfo = true;
4902 break;
4903 }
4904 }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004905
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004906 if (!FoundInfo)
4907 return false;
4908
Douglas Gregor0d95f772011-08-24 19:03:07 +00004909 // Look for this name within this module.
4910 ASTDeclContextNameLookupTable *LookupTable =
4911 (ASTDeclContextNameLookupTable*)Info->second.NameLookupTableData;
4912 ASTDeclContextNameLookupTable::iterator Pos
4913 = LookupTable->find(This->Name);
4914 if (Pos == LookupTable->end())
4915 return false;
4916
4917 bool FoundAnything = false;
4918 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
4919 for (; Data.first != Data.second; ++Data.first) {
4920 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M, *Data.first);
4921 if (!ND)
4922 continue;
4923
4924 if (ND->getDeclName() != This->Name) {
4925 assert(!This->Name.getCXXNameType().isNull() &&
4926 "Name mismatch without a type");
4927 continue;
4928 }
4929
4930 // Record this declaration.
4931 FoundAnything = true;
4932 This->Decls.push_back(ND);
4933 }
4934
4935 return FoundAnything;
4936 }
4937 };
4938}
4939
John McCall76bd1f32010-06-01 09:23:16 +00004940DeclContext::lookup_result
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004941ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +00004942 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00004943 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00004944 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00004945 if (!Name)
4946 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
4947 DeclContext::lookup_iterator(0));
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004948
Chris Lattner5f9e2722011-07-23 10:55:15 +00004949 SmallVector<NamedDecl *, 64> Decls;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004950
4951 // Compute the declaration contexts we need to look into. Multiple such
4952 // declaration contexts occur when two declaration contexts from disjoint
4953 // modules get merged, e.g., when two namespaces with the same name are
4954 // independently defined in separate modules.
4955 SmallVector<const DeclContext *, 2> Contexts;
4956 Contexts.push_back(DC);
4957
4958 if (DC->isNamespace()) {
4959 MergedDeclsMap::iterator Merged
4960 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
4961 if (Merged != MergedDecls.end()) {
4962 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
4963 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
4964 }
4965 }
4966
4967 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls);
Douglas Gregor0d95f772011-08-24 19:03:07 +00004968 ModuleMgr.visit(&DeclContextNameLookupVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00004969 ++NumVisibleDeclContextsRead;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00004970 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall76bd1f32010-06-01 09:23:16 +00004971 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004972}
4973
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00004974namespace {
4975 /// \brief ModuleFile visitor used to complete the visible decls map of a
4976 /// declaration context.
4977 class DeclContextVisibleDeclMapVisitor {
4978 ASTReader &Reader;
4979 DeclContext *DC;
4980
4981 public:
4982 DeclContextVisibleDeclMapVisitor(ASTReader &Reader, DeclContext *DC)
4983 : Reader(Reader), DC(DC) { }
4984
4985 static bool visit(ModuleFile &M, void *UserData) {
4986 return static_cast<DeclContextVisibleDeclMapVisitor*>(UserData)->visit(M);
4987 }
4988
4989 bool visit(ModuleFile &M) {
4990 // Check whether we have any visible declaration information for
4991 // this context in this module.
4992 ModuleFile::DeclContextInfosMap::iterator
4993 Info = M.DeclContextInfos.find(DC);
4994 if (Info == M.DeclContextInfos.end() ||
4995 !Info->second.NameLookupTableData)
4996 return false;
4997
4998 // Look for this name within this module.
4999 ASTDeclContextNameLookupTable *LookupTable =
5000 (ASTDeclContextNameLookupTable*)Info->second.NameLookupTableData;
5001 for (ASTDeclContextNameLookupTable::key_iterator
5002 I = LookupTable->key_begin(),
5003 E = LookupTable->key_end(); I != E; ++I) {
5004 DC->lookup(*I); // Force loading of the visible decls for the decl name.
5005 }
5006
5007 return false;
5008 }
5009 };
5010}
5011
5012void ASTReader::completeVisibleDeclsMap(DeclContext *DC) {
5013 if (!DC->hasExternalVisibleStorage())
5014 return;
5015 DeclContextVisibleDeclMapVisitor Visitor(*this, DC);
5016 ModuleMgr.visit(&DeclContextVisibleDeclMapVisitor::visit, &Visitor);
5017}
5018
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005019/// \brief Under non-PCH compilation the consumer receives the objc methods
5020/// before receiving the implementation, and codegen depends on this.
5021/// We simulate this by deserializing and passing to consumer the methods of the
5022/// implementation before passing the deserialized implementation decl.
5023static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
5024 ASTConsumer *Consumer) {
5025 assert(ImplD && Consumer);
5026
5027 for (ObjCImplDecl::method_iterator
5028 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I)
5029 Consumer->HandleInterestingDecl(DeclGroupRef(*I));
5030
5031 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
5032}
5033
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005034void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005035 assert(Consumer);
5036 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005037 Decl *D = InterestingDecls.front();
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005038 InterestingDecls.pop_front();
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005039
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005040 PassInterestingDeclToConsumer(D);
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005041 }
5042}
5043
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005044void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
5045 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5046 PassObjCImplDeclToConsumer(ImplD, Consumer);
5047 else
5048 Consumer->HandleInterestingDecl(DeclGroupRef(D));
5049}
5050
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005051void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00005052 this->Consumer = Consumer;
5053
Douglas Gregorfdd01722009-04-14 00:24:19 +00005054 if (!Consumer)
5055 return;
5056
5057 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005058 // Force deserialization of this decl, which will cause it to be queued for
5059 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00005060 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00005061 }
Douglas Gregor1a995dd2011-09-15 18:47:32 +00005062 ExternalDefinitions.clear();
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00005063
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005064 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00005065}
5066
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005067void ASTReader::PrintStats() {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005068 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005069
Mike Stump1eb44332009-09-09 15:08:12 +00005070 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005071 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00005072 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005073 unsigned NumDeclsLoaded
5074 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
5075 (Decl *)0);
5076 unsigned NumIdentifiersLoaded
5077 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
5078 IdentifiersLoaded.end(),
5079 (IdentifierInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00005080 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005081 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
5082 SelectorsLoaded.end(),
5083 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00005084
Douglas Gregor4fed3f42009-04-27 18:38:38 +00005085 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
5086 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor0cdd7982011-07-21 18:46:38 +00005087 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005088 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
5089 NumSLocEntriesRead, TotalNumSLocEntries,
5090 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005091 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005092 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005093 NumTypesLoaded, (unsigned)TypesLoaded.size(),
5094 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
5095 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005096 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005097 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
5098 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005099 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005100 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005101 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
5102 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Sebastian Redl725cd962010-08-04 20:40:17 +00005103 if (!SelectorsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005104 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redl725cd962010-08-04 20:40:17 +00005105 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
5106 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00005107 if (TotalNumStatements)
5108 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
5109 NumStatementsRead, TotalNumStatements,
5110 ((float)NumStatementsRead/TotalNumStatements * 100));
5111 if (TotalNumMacros)
5112 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5113 NumMacrosRead, TotalNumMacros,
5114 ((float)NumMacrosRead/TotalNumMacros * 100));
5115 if (TotalLexicalDeclContexts)
5116 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
5117 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
5118 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
5119 * 100));
5120 if (TotalVisibleDeclContexts)
5121 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
5122 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
5123 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
5124 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005125 if (TotalNumMethodPoolEntries) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005126 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005127 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
5128 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor83941df2009-04-25 17:48:32 +00005129 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005130 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor83941df2009-04-25 17:48:32 +00005131 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00005132 std::fprintf(stderr, "\n");
Douglas Gregor23d7df52011-07-21 19:50:14 +00005133 dump();
5134 std::fprintf(stderr, "\n");
5135}
5136
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005137template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Douglas Gregor23d7df52011-07-21 19:50:14 +00005138static void
Chris Lattner5f9e2722011-07-23 10:55:15 +00005139dumpModuleIDMap(StringRef Name,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005140 const ContinuousRangeMap<Key, ModuleFile *,
Douglas Gregor23d7df52011-07-21 19:50:14 +00005141 InitialCapacity> &Map) {
5142 if (Map.begin() == Map.end())
5143 return;
5144
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005145 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType;
Douglas Gregor23d7df52011-07-21 19:50:14 +00005146 llvm::errs() << Name << ":\n";
5147 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
5148 I != IEnd; ++I) {
5149 llvm::errs() << " " << I->first << " -> " << I->second->FileName
5150 << "\n";
5151 }
5152}
5153
Douglas Gregor23d7df52011-07-21 19:50:14 +00005154void ASTReader::dump() {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005155 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005156 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
Douglas Gregor23d7df52011-07-21 19:50:14 +00005157 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
Douglas Gregor1e849b62011-07-29 00:21:44 +00005158 dumpModuleIDMap("Global type map", GlobalTypeMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005159 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005160 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
Douglas Gregor26ced122011-12-01 00:59:36 +00005161 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005162 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005163 dumpModuleIDMap("Global preprocessed entity map",
5164 GlobalPreprocessedEntityMap);
Douglas Gregor8df5c9b2011-08-02 11:12:41 +00005165
5166 llvm::errs() << "\n*** PCH/Modules Loaded:";
5167 for (ModuleManager::ModuleConstIterator M = ModuleMgr.begin(),
5168 MEnd = ModuleMgr.end();
5169 M != MEnd; ++M)
5170 (*M)->dump();
Douglas Gregor2cf26342009-04-09 22:27:44 +00005171}
5172
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005173/// Return the amount of memory used by memory buffers, breaking down
5174/// by heap-backed versus mmap'ed memory.
5175void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005176 for (ModuleConstIterator I = ModuleMgr.begin(),
5177 E = ModuleMgr.end(); I != E; ++I) {
5178 if (llvm::MemoryBuffer *buf = (*I)->Buffer.get()) {
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005179 size_t bytes = buf->getBufferSize();
5180 switch (buf->getBufferKind()) {
5181 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
5182 sizes.malloc_bytes += bytes;
5183 break;
5184 case llvm::MemoryBuffer::MemoryBuffer_MMap:
5185 sizes.mmap_bytes += bytes;
5186 break;
5187 }
5188 }
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005189 }
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005190}
5191
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005192void ASTReader::InitializeSema(Sema &S) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005193 SemaObj = &S;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005194 S.ExternalSource = this;
5195
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005196 // Makes sure any declarations that were deserialized "too early"
5197 // still get added to the identifier's declaration chains.
Douglas Gregor76dc8892010-09-24 23:29:12 +00005198 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005199 SemaObj->pushExternalDeclIntoScope(PreloadedDecls[I],
5200 PreloadedDecls[I]->getDeclName());
Douglas Gregor668c1a42009-04-21 22:25:48 +00005201 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005202 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00005203
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005204 // Load the offsets of the declarations that Sema references.
5205 // They will be lazily deserialized when needed.
5206 if (!SemaDeclRefs.empty()) {
5207 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
Douglas Gregor1e5b6f62011-07-28 00:57:24 +00005208 if (!SemaObj->StdNamespace)
5209 SemaObj->StdNamespace = SemaDeclRefs[0];
5210 if (!SemaObj->StdBadAlloc)
5211 SemaObj->StdBadAlloc = SemaDeclRefs[1];
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005212 }
5213
Peter Collingbourne84bccea2011-02-15 19:46:30 +00005214 if (!FPPragmaOptions.empty()) {
5215 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
5216 SemaObj->FPFeatures.fp_contract = FPPragmaOptions[0];
5217 }
5218
5219 if (!OpenCLExtensions.empty()) {
5220 unsigned I = 0;
5221#define OPENCLEXT(nm) SemaObj->OpenCLFeatures.nm = OpenCLExtensions[I++];
5222#include "clang/Basic/OpenCLExtensions.def"
5223
5224 assert(OpenCLExtensions.size() == I && "Wrong number of OPENCL_EXTENSIONS");
5225 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00005226}
5227
Douglas Gregor211f6e82011-08-20 04:39:52 +00005228IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Douglas Gregor057df202012-01-18 20:56:22 +00005229 IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart),
5230 /*PriorGeneration=*/0);
Douglas Gregor211f6e82011-08-20 04:39:52 +00005231 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005232 IdentifierInfo *II = Visitor.getIdentifierInfo();
Douglas Gregor057df202012-01-18 20:56:22 +00005233 markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005234 return II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00005235}
5236
Douglas Gregor95f42922010-10-14 22:11:03 +00005237namespace clang {
5238 /// \brief An identifier-lookup iterator that enumerates all of the
5239 /// identifiers stored within a set of AST files.
5240 class ASTIdentifierIterator : public IdentifierIterator {
5241 /// \brief The AST reader whose identifiers are being enumerated.
5242 const ASTReader &Reader;
5243
5244 /// \brief The current index into the chain of AST files stored in
5245 /// the AST reader.
5246 unsigned Index;
5247
5248 /// \brief The current position within the identifier lookup table
5249 /// of the current AST file.
5250 ASTIdentifierLookupTable::key_iterator Current;
5251
5252 /// \brief The end position within the identifier lookup table of
5253 /// the current AST file.
5254 ASTIdentifierLookupTable::key_iterator End;
5255
5256 public:
5257 explicit ASTIdentifierIterator(const ASTReader &Reader);
5258
Chris Lattner5f9e2722011-07-23 10:55:15 +00005259 virtual StringRef Next();
Douglas Gregor95f42922010-10-14 22:11:03 +00005260 };
5261}
5262
5263ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005264 : Reader(Reader), Index(Reader.ModuleMgr.size() - 1) {
Douglas Gregor95f42922010-10-14 22:11:03 +00005265 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005266 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005267 Current = IdTable->key_begin();
5268 End = IdTable->key_end();
5269}
5270
Chris Lattner5f9e2722011-07-23 10:55:15 +00005271StringRef ASTIdentifierIterator::Next() {
Douglas Gregor95f42922010-10-14 22:11:03 +00005272 while (Current == End) {
5273 // If we have exhausted all of our AST files, we're done.
5274 if (Index == 0)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005275 return StringRef();
Douglas Gregor95f42922010-10-14 22:11:03 +00005276
5277 --Index;
5278 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005279 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].
5280 IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005281 Current = IdTable->key_begin();
5282 End = IdTable->key_end();
5283 }
5284
5285 // We have any identifiers remaining in the current AST file; return
5286 // the next one.
5287 std::pair<const char*, unsigned> Key = *Current;
5288 ++Current;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005289 return StringRef(Key.first, Key.second);
Douglas Gregor95f42922010-10-14 22:11:03 +00005290}
5291
5292IdentifierIterator *ASTReader::getIdentifiers() const {
5293 return new ASTIdentifierIterator(*this);
5294}
5295
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005296namespace clang { namespace serialization {
5297 class ReadMethodPoolVisitor {
5298 ASTReader &Reader;
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005299 Selector Sel;
5300 unsigned PriorGeneration;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005301 llvm::SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
5302 llvm::SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005303
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005304 public:
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005305 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
5306 unsigned PriorGeneration)
5307 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) { }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005308
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005309 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005310 ReadMethodPoolVisitor *This
5311 = static_cast<ReadMethodPoolVisitor *>(UserData);
5312
5313 if (!M.SelectorLookupTable)
5314 return false;
5315
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005316 // If we've already searched this module file, skip it now.
5317 if (M.Generation <= This->PriorGeneration)
5318 return true;
5319
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005320 ASTSelectorLookupTable *PoolTable
5321 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
5322 ASTSelectorLookupTable::iterator Pos = PoolTable->find(This->Sel);
5323 if (Pos == PoolTable->end())
5324 return false;
5325
5326 ++This->Reader.NumSelectorsRead;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005327 // FIXME: Not quite happy with the statistics here. We probably should
5328 // disable this tracking when called via LoadSelector.
5329 // Also, should entries without methods count as misses?
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005330 ++This->Reader.NumMethodPoolEntriesRead;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005331 ASTSelectorLookupTrait::data_type Data = *Pos;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005332 if (This->Reader.DeserializationListener)
5333 This->Reader.DeserializationListener->SelectorRead(Data.ID,
5334 This->Sel);
5335
5336 This->InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
5337 This->FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
5338 return true;
Sebastian Redl725cd962010-08-04 20:40:17 +00005339 }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005340
5341 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005342 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
5343 return InstanceMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005344 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005345
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005346 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005347 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
5348 return FactoryMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005349 }
5350 };
5351} } // end namespace clang::serialization
5352
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005353/// \brief Add the given set of methods to the method list.
5354static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
5355 ObjCMethodList &List) {
5356 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
5357 S.addMethodToGlobalList(&List, Methods[I]);
5358 }
5359}
5360
5361void ASTReader::ReadMethodPool(Selector Sel) {
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005362 // Get the selector generation and update it to the current generation.
5363 unsigned &Generation = SelectorGeneration[Sel];
5364 unsigned PriorGeneration = Generation;
5365 Generation = CurrentGeneration;
5366
5367 // Search for methods defined with this selector.
5368 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005369 ModuleMgr.visit(&ReadMethodPoolVisitor::visit, &Visitor);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005370
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005371 if (Visitor.getInstanceMethods().empty() &&
5372 Visitor.getFactoryMethods().empty()) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005373 ++NumMethodPoolMisses;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005374 return;
5375 }
5376
5377 if (!getSema())
5378 return;
5379
5380 Sema &S = *getSema();
5381 Sema::GlobalMethodPool::iterator Pos
5382 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
5383
5384 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
5385 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005386}
5387
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005388void ASTReader::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00005389 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005390 Namespaces.clear();
5391
5392 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
5393 if (NamespaceDecl *Namespace
5394 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
5395 Namespaces.push_back(Namespace);
5396 }
5397}
5398
Douglas Gregora8623202011-07-27 20:58:46 +00005399void ASTReader::ReadTentativeDefinitions(
5400 SmallVectorImpl<VarDecl *> &TentativeDefs) {
5401 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
5402 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
5403 if (Var)
5404 TentativeDefs.push_back(Var);
5405 }
5406 TentativeDefinitions.clear();
5407}
5408
Douglas Gregora2ee20a2011-07-27 21:45:57 +00005409void ASTReader::ReadUnusedFileScopedDecls(
5410 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
5411 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
5412 DeclaratorDecl *D
5413 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
5414 if (D)
5415 Decls.push_back(D);
5416 }
5417 UnusedFileScopedDecls.clear();
5418}
5419
Douglas Gregor0129b562011-07-27 21:57:17 +00005420void ASTReader::ReadDelegatingConstructors(
5421 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
5422 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
5423 CXXConstructorDecl *D
5424 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
5425 if (D)
5426 Decls.push_back(D);
5427 }
5428 DelegatingCtorDecls.clear();
5429}
5430
Douglas Gregord58a0a52011-07-28 00:39:29 +00005431void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
5432 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
5433 TypedefNameDecl *D
5434 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
5435 if (D)
5436 Decls.push_back(D);
5437 }
5438 ExtVectorDecls.clear();
5439}
5440
Douglas Gregora126f172011-07-28 00:53:40 +00005441void ASTReader::ReadDynamicClasses(SmallVectorImpl<CXXRecordDecl *> &Decls) {
5442 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
5443 CXXRecordDecl *D
5444 = dyn_cast_or_null<CXXRecordDecl>(GetDecl(DynamicClasses[I]));
5445 if (D)
5446 Decls.push_back(D);
5447 }
5448 DynamicClasses.clear();
5449}
5450
Douglas Gregorec12ce22011-07-28 14:20:37 +00005451void
5452ASTReader::ReadLocallyScopedExternalDecls(SmallVectorImpl<NamedDecl *> &Decls) {
5453 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
5454 NamedDecl *D
5455 = dyn_cast_or_null<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
5456 if (D)
5457 Decls.push_back(D);
5458 }
5459 LocallyScopedExternalDecls.clear();
5460}
5461
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00005462void ASTReader::ReadReferencedSelectors(
5463 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {
5464 if (ReferencedSelectorsData.empty())
5465 return;
5466
5467 // If there are @selector references added them to its pool. This is for
5468 // implementation of -Wselector.
5469 unsigned int DataSize = ReferencedSelectorsData.size()-1;
5470 unsigned I = 0;
5471 while (I < DataSize) {
5472 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
5473 SourceLocation SelLoc
5474 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
5475 Sels.push_back(std::make_pair(Sel, SelLoc));
5476 }
5477 ReferencedSelectorsData.clear();
5478}
5479
Douglas Gregor31e37b22011-07-28 18:09:57 +00005480void ASTReader::ReadWeakUndeclaredIdentifiers(
5481 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WeakIDs) {
5482 if (WeakUndeclaredIdentifiers.empty())
5483 return;
5484
5485 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
5486 IdentifierInfo *WeakId
5487 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5488 IdentifierInfo *AliasId
5489 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5490 SourceLocation Loc
5491 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
5492 bool Used = WeakUndeclaredIdentifiers[I++];
5493 WeakInfo WI(AliasId, Loc);
5494 WI.setUsed(Used);
5495 WeakIDs.push_back(std::make_pair(WeakId, WI));
5496 }
5497 WeakUndeclaredIdentifiers.clear();
5498}
5499
Douglas Gregordfe65432011-07-28 19:11:31 +00005500void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
5501 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
5502 ExternalVTableUse VT;
5503 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
5504 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
5505 VT.DefinitionRequired = VTableUses[Idx++];
5506 VTables.push_back(VT);
5507 }
5508
5509 VTableUses.clear();
5510}
5511
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00005512void ASTReader::ReadPendingInstantiations(
5513 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation> > &Pending) {
5514 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
5515 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
5516 SourceLocation Loc
5517 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
5518 Pending.push_back(std::make_pair(D, Loc));
5519 }
5520 PendingInstantiations.clear();
5521}
5522
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005523void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redle58aa892010-08-04 18:21:41 +00005524 // It would be complicated to avoid reading the methods anyway. So don't.
5525 ReadMethodPool(Sel);
5526}
5527
Douglas Gregor95eab172011-07-28 20:55:49 +00005528void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005529 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00005530 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005531 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005532 if (DeserializationListener)
5533 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregor668c1a42009-04-21 22:25:48 +00005534}
5535
Douglas Gregord89275b2009-07-06 18:54:52 +00005536/// \brief Set the globally-visible declarations associated with the given
5537/// identifier.
5538///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005539/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00005540/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00005541/// them.
5542///
5543/// \param II an IdentifierInfo that refers to one or more globally-visible
5544/// declarations.
5545///
5546/// \param DeclIDs the set of declaration IDs with the name @p II that are
5547/// visible at global scope.
5548///
5549/// \param Nonrecursive should be true to indicate that the caller knows that
5550/// this call is non-recursive, and therefore the globally-visible declarations
5551/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00005552void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005553ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Chris Lattner5f9e2722011-07-23 10:55:15 +00005554 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregord89275b2009-07-06 18:54:52 +00005555 bool Nonrecursive) {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00005556 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregord89275b2009-07-06 18:54:52 +00005557 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
5558 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
5559 PII.II = II;
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00005560 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregord89275b2009-07-06 18:54:52 +00005561 return;
5562 }
Mike Stump1eb44332009-09-09 15:08:12 +00005563
Douglas Gregord89275b2009-07-06 18:54:52 +00005564 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
5565 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
5566 if (SemaObj) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005567 // Introduce this declaration into the translation-unit scope
5568 // and add it to the declaration chain for this identifier, so
5569 // that (unqualified) name lookup will find it.
5570 SemaObj->pushExternalDeclIntoScope(D, II);
Douglas Gregord89275b2009-07-06 18:54:52 +00005571 } else {
5572 // Queue this declaration so that it will be added to the
5573 // translation unit scope and identifier's declaration chain
5574 // once a Sema object is known.
5575 PreloadedDecls.push_back(D);
5576 }
5577 }
5578}
5579
Douglas Gregor95eab172011-07-28 20:55:49 +00005580IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00005581 if (ID == 0)
5582 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00005583
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005584 if (IdentifiersLoaded.empty()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005585 Error("no identifier table in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00005586 return 0;
5587 }
Mike Stump1eb44332009-09-09 15:08:12 +00005588
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005589 ID -= 1;
5590 if (!IdentifiersLoaded[ID]) {
Douglas Gregor67268d02011-07-20 00:59:32 +00005591 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
5592 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005593 ModuleFile *M = I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005594 unsigned Index = ID - M->BaseIdentifierID;
5595 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
Douglas Gregord6595a42009-04-25 21:04:17 +00005596
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005597 // All of the strings in the AST file are preceded by a 16-bit length.
5598 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00005599 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
5600 // unsigned integers. This is important to avoid integer overflow when
5601 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00005602 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00005603 unsigned StrLen = (((unsigned) StrLenPtr[0])
5604 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005605 IdentifiersLoaded[ID]
Douglas Gregor712f2fc2011-09-09 22:02:16 +00005606 = &PP.getIdentifierTable().get(StringRef(Str, StrLen));
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005607 if (DeserializationListener)
5608 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregorafaf3082009-04-11 00:14:32 +00005609 }
Mike Stump1eb44332009-09-09 15:08:12 +00005610
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005611 return IdentifiersLoaded[ID];
Douglas Gregor2cf26342009-04-09 22:27:44 +00005612}
5613
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005614IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
Douglas Gregor95eab172011-07-28 20:55:49 +00005615 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
5616}
5617
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005618IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +00005619 if (LocalID < NUM_PREDEF_IDENT_IDS)
5620 return LocalID;
5621
5622 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5623 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
5624 assert(I != M.IdentifierRemap.end()
5625 && "Invalid index into identifier index remap");
5626
5627 return LocalID + I->second;
Douglas Gregor95eab172011-07-28 20:55:49 +00005628}
5629
Douglas Gregorf62d43d2011-07-19 16:10:42 +00005630bool ASTReader::ReadSLocEntry(int ID) {
Douglas Gregore23ac652011-04-20 00:21:03 +00005631 return ReadSLocEntryRecord(ID) != Success;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005632}
5633
Douglas Gregor26ced122011-12-01 00:59:36 +00005634serialization::SubmoduleID
5635ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
5636 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
5637 return LocalID;
5638
5639 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5640 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
5641 assert(I != M.SubmoduleRemap.end()
5642 && "Invalid index into identifier index remap");
5643
5644 return LocalID + I->second;
5645}
5646
5647Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
5648 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
5649 assert(GlobalID == 0 && "Unhandled global submodule ID");
5650 return 0;
5651 }
5652
5653 if (GlobalID > SubmodulesLoaded.size()) {
5654 Error("submodule ID out of range in AST file");
5655 return 0;
5656 }
5657
5658 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
5659}
5660
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005661Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005662 return DecodeSelector(getGlobalSelectorID(M, LocalID));
5663}
5664
5665Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005666 if (ID == 0)
5667 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00005668
Sebastian Redl725cd962010-08-04 20:40:17 +00005669 if (ID > SelectorsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005670 Error("selector ID out of range in AST file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005671 return Selector();
5672 }
Douglas Gregor83941df2009-04-25 17:48:32 +00005673
Sebastian Redl725cd962010-08-04 20:40:17 +00005674 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005675 // Load this selector from the selector table.
Douglas Gregor96958cb2011-07-20 01:10:58 +00005676 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
5677 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005678 ModuleFile &M = *I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005679 ASTSelectorLookupTrait Trait(*this, M);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005680 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
Douglas Gregor96958cb2011-07-20 01:10:58 +00005681 SelectorsLoaded[ID - 1] =
Douglas Gregor9827a802011-07-29 00:56:45 +00005682 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
Douglas Gregor96958cb2011-07-20 01:10:58 +00005683 if (DeserializationListener)
5684 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
Douglas Gregor83941df2009-04-25 17:48:32 +00005685 }
5686
Sebastian Redl725cd962010-08-04 20:40:17 +00005687 return SelectorsLoaded[ID - 1];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005688}
5689
Douglas Gregor8451ec72011-07-28 14:41:43 +00005690Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00005691 return DecodeSelector(ID);
5692}
5693
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005694uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redl725cd962010-08-04 20:40:17 +00005695 // ID 0 (the null selector) is considered an external selector.
5696 return getTotalNumSelectors() + 1;
Douglas Gregor719770d2010-04-06 17:30:22 +00005697}
5698
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005699serialization::SelectorID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005700ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005701 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
5702 return LocalID;
5703
5704 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5705 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
5706 assert(I != M.SelectorRemap.end()
5707 && "Invalid index into identifier index remap");
5708
5709 return LocalID + I->second;
Douglas Gregor8451ec72011-07-28 14:41:43 +00005710}
5711
Mike Stump1eb44332009-09-09 15:08:12 +00005712DeclarationName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005713ASTReader::ReadDeclarationName(ModuleFile &F,
Douglas Gregor393f2492011-07-22 00:38:23 +00005714 const RecordData &Record, unsigned &Idx) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00005715 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
5716 switch (Kind) {
5717 case DeclarationName::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +00005718 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005719
5720 case DeclarationName::ObjCZeroArgSelector:
5721 case DeclarationName::ObjCOneArgSelector:
5722 case DeclarationName::ObjCMultiArgSelector:
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005723 return DeclarationName(ReadSelector(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005724
5725 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005726 return Context.DeclarationNames.getCXXConstructorName(
5727 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005728
5729 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005730 return Context.DeclarationNames.getCXXDestructorName(
5731 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005732
5733 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +00005734 return Context.DeclarationNames.getCXXConversionFunctionName(
5735 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005736
5737 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005738 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00005739 (OverloadedOperatorKind)Record[Idx++]);
5740
Sean Hunt3e518bd2009-11-29 07:34:05 +00005741 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005742 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor95eab172011-07-28 20:55:49 +00005743 GetIdentifierInfo(F, Record, Idx));
Sean Hunt3e518bd2009-11-29 07:34:05 +00005744
Douglas Gregor2cf26342009-04-09 22:27:44 +00005745 case DeclarationName::CXXUsingDirective:
5746 return DeclarationName::getUsingDirectiveName();
5747 }
5748
David Blaikie7530c032012-01-17 06:56:22 +00005749 llvm_unreachable("Invalid NameKind!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005750}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00005751
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005752void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005753 DeclarationNameLoc &DNLoc,
5754 DeclarationName Name,
5755 const RecordData &Record, unsigned &Idx) {
5756 switch (Name.getNameKind()) {
5757 case DeclarationName::CXXConstructorName:
5758 case DeclarationName::CXXDestructorName:
5759 case DeclarationName::CXXConversionFunctionName:
5760 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
5761 break;
5762
5763 case DeclarationName::CXXOperatorName:
5764 DNLoc.CXXOperatorName.BeginOpNameLoc
5765 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5766 DNLoc.CXXOperatorName.EndOpNameLoc
5767 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5768 break;
5769
5770 case DeclarationName::CXXLiteralOperatorName:
5771 DNLoc.CXXLiteralOperatorName.OpNameLoc
5772 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5773 break;
5774
5775 case DeclarationName::Identifier:
5776 case DeclarationName::ObjCZeroArgSelector:
5777 case DeclarationName::ObjCOneArgSelector:
5778 case DeclarationName::ObjCMultiArgSelector:
5779 case DeclarationName::CXXUsingDirective:
5780 break;
5781 }
5782}
5783
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005784void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005785 DeclarationNameInfo &NameInfo,
5786 const RecordData &Record, unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00005787 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005788 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
5789 DeclarationNameLoc DNLoc;
5790 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
5791 NameInfo.setInfo(DNLoc);
5792}
5793
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005794void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005795 const RecordData &Record, unsigned &Idx) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005796 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005797 unsigned NumTPLists = Record[Idx++];
5798 Info.NumTemplParamLists = NumTPLists;
5799 if (NumTPLists) {
Douglas Gregor35942772011-09-09 21:34:22 +00005800 Info.TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005801 for (unsigned i=0; i != NumTPLists; ++i)
5802 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
5803 }
5804}
5805
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005806TemplateName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005807ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005808 unsigned &Idx) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00005809 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005810 switch (Kind) {
5811 case TemplateName::Template:
Douglas Gregor409448c2011-07-21 22:35:25 +00005812 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005813
5814 case TemplateName::OverloadedTemplate: {
5815 unsigned size = Record[Idx++];
5816 UnresolvedSet<8> Decls;
5817 while (size--)
Douglas Gregor409448c2011-07-21 22:35:25 +00005818 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005819
Douglas Gregor35942772011-09-09 21:34:22 +00005820 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005821 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005822
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005823 case TemplateName::QualifiedTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005824 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005825 bool hasTemplKeyword = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00005826 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005827 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005828 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005829
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005830 case TemplateName::DependentTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005831 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005832 if (Record[Idx++]) // isIdentifier
Douglas Gregor35942772011-09-09 21:34:22 +00005833 return Context.getDependentTemplateName(NNS,
Douglas Gregor95eab172011-07-28 20:55:49 +00005834 GetIdentifierInfo(F, Record,
5835 Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00005836 return Context.getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005837 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005838 }
John McCall14606042011-06-30 08:33:18 +00005839
5840 case TemplateName::SubstTemplateTemplateParm: {
5841 TemplateTemplateParmDecl *param
Douglas Gregor409448c2011-07-21 22:35:25 +00005842 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
John McCall14606042011-06-30 08:33:18 +00005843 if (!param) return TemplateName();
5844 TemplateName replacement = ReadTemplateName(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005845 return Context.getSubstTemplateTemplateParm(param, replacement);
John McCall14606042011-06-30 08:33:18 +00005846 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005847
5848 case TemplateName::SubstTemplateTemplateParmPack: {
5849 TemplateTemplateParmDecl *Param
Douglas Gregor409448c2011-07-21 22:35:25 +00005850 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005851 if (!Param)
5852 return TemplateName();
5853
5854 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
5855 if (ArgPack.getKind() != TemplateArgument::Pack)
5856 return TemplateName();
5857
Douglas Gregor35942772011-09-09 21:34:22 +00005858 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005859 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005860 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005861
David Blaikieb219cfc2011-09-23 05:06:16 +00005862 llvm_unreachable("Unhandled template name kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005863}
5864
5865TemplateArgument
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005866ASTReader::ReadTemplateArgument(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00005867 const RecordData &Record, unsigned &Idx) {
Douglas Gregora7fc9012011-01-05 18:58:31 +00005868 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
5869 switch (Kind) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005870 case TemplateArgument::Null:
5871 return TemplateArgument();
5872 case TemplateArgument::Type:
Douglas Gregor393f2492011-07-22 00:38:23 +00005873 return TemplateArgument(readType(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005874 case TemplateArgument::Declaration:
Douglas Gregor409448c2011-07-21 22:35:25 +00005875 return TemplateArgument(ReadDecl(F, Record, Idx));
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005876 case TemplateArgument::Integral: {
5877 llvm::APSInt Value = ReadAPSInt(Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00005878 QualType T = readType(F, Record, Idx);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005879 return TemplateArgument(Value, T);
5880 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00005881 case TemplateArgument::Template:
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005882 return TemplateArgument(ReadTemplateName(F, Record, Idx));
Douglas Gregora7fc9012011-01-05 18:58:31 +00005883 case TemplateArgument::TemplateExpansion: {
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005884 TemplateName Name = ReadTemplateName(F, Record, Idx);
Douglas Gregor2be29f42011-01-14 23:41:42 +00005885 llvm::Optional<unsigned> NumTemplateExpansions;
5886 if (unsigned NumExpansions = Record[Idx++])
5887 NumTemplateExpansions = NumExpansions - 1;
5888 return TemplateArgument(Name, NumTemplateExpansions);
Douglas Gregorba68eca2011-01-05 17:40:24 +00005889 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005890 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00005891 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005892 case TemplateArgument::Pack: {
5893 unsigned NumArgs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00005894 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
Douglas Gregor910f8002010-11-07 23:05:16 +00005895 for (unsigned I = 0; I != NumArgs; ++I)
5896 Args[I] = ReadTemplateArgument(F, Record, Idx);
5897 return TemplateArgument(Args, NumArgs);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005898 }
5899 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005900
David Blaikieb219cfc2011-09-23 05:06:16 +00005901 llvm_unreachable("Unhandled template argument kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005902}
5903
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005904TemplateParameterList *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005905ASTReader::ReadTemplateParameterList(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00005906 const RecordData &Record, unsigned &Idx) {
5907 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
5908 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
5909 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005910
5911 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00005912 SmallVector<NamedDecl *, 16> Params;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005913 Params.reserve(NumParams);
5914 while (NumParams--)
Douglas Gregor409448c2011-07-21 22:35:25 +00005915 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
Michael J. Spencer20249a12010-10-21 03:16:25 +00005916
5917 TemplateParameterList* TemplateParams =
Douglas Gregor35942772011-09-09 21:34:22 +00005918 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005919 Params.data(), Params.size(), RAngleLoc);
5920 return TemplateParams;
5921}
5922
5923void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005924ASTReader::
Chris Lattner5f9e2722011-07-23 10:55:15 +00005925ReadTemplateArgumentList(SmallVector<TemplateArgument, 8> &TemplArgs,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005926 ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00005927 unsigned &Idx) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005928 unsigned NumTemplateArgs = Record[Idx++];
5929 TemplArgs.reserve(NumTemplateArgs);
5930 while (NumTemplateArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00005931 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005932}
5933
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005934/// \brief Read a UnresolvedSet structure.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005935void ASTReader::ReadUnresolvedSet(ModuleFile &F, UnresolvedSetImpl &Set,
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005936 const RecordData &Record, unsigned &Idx) {
5937 unsigned NumDecls = Record[Idx++];
5938 while (NumDecls--) {
Douglas Gregor409448c2011-07-21 22:35:25 +00005939 NamedDecl *D = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005940 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
5941 Set.addDecl(D, AS);
5942 }
5943}
5944
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005945CXXBaseSpecifier
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005946ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
Nick Lewycky56062202010-07-26 16:56:01 +00005947 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005948 bool isVirtual = static_cast<bool>(Record[Idx++]);
5949 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
5950 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005951 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00005952 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
5953 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00005954 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005955 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00005956 EllipsisLoc);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005957 Result.setInheritConstructors(inheritConstructors);
5958 return Result;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005959}
5960
Sean Huntcbb67482011-01-08 20:30:50 +00005961std::pair<CXXCtorInitializer **, unsigned>
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005962ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
Sean Huntcbb67482011-01-08 20:30:50 +00005963 unsigned &Idx) {
5964 CXXCtorInitializer **CtorInitializers = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005965 unsigned NumInitializers = Record[Idx++];
5966 if (NumInitializers) {
Sean Huntcbb67482011-01-08 20:30:50 +00005967 CtorInitializers
Douglas Gregor35942772011-09-09 21:34:22 +00005968 = new (Context) CXXCtorInitializer*[NumInitializers];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005969 for (unsigned i=0; i != NumInitializers; ++i) {
Douglas Gregor76852c22011-11-01 01:16:03 +00005970 TypeSourceInfo *TInfo = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005971 bool IsBaseVirtual = false;
5972 FieldDecl *Member = 0;
Francois Pichet00eb3f92010-12-04 09:14:42 +00005973 IndirectFieldDecl *IndirectMember = 0;
Michael J. Spencer20249a12010-10-21 03:16:25 +00005974
Sean Hunt156b6402011-05-04 01:19:08 +00005975 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
5976 switch (Type) {
Douglas Gregor76852c22011-11-01 01:16:03 +00005977 case CTOR_INITIALIZER_BASE:
5978 TInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005979 IsBaseVirtual = Record[Idx++];
Sean Hunt156b6402011-05-04 01:19:08 +00005980 break;
Douglas Gregor76852c22011-11-01 01:16:03 +00005981
5982 case CTOR_INITIALIZER_DELEGATING:
5983 TInfo = GetTypeSourceInfo(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005984 break;
5985
5986 case CTOR_INITIALIZER_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00005987 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005988 break;
5989
5990 case CTOR_INITIALIZER_INDIRECT_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00005991 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005992 break;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005993 }
Sean Hunt156b6402011-05-04 01:19:08 +00005994
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00005995 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00005996 Expr *Init = ReadExpr(F);
Sebastian Redlc3632732010-10-05 15:59:54 +00005997 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
5998 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005999 bool IsWritten = Record[Idx++];
6000 unsigned SourceOrderOrNumArrayIndices;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006001 SmallVector<VarDecl *, 8> Indices;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006002 if (IsWritten) {
6003 SourceOrderOrNumArrayIndices = Record[Idx++];
6004 } else {
6005 SourceOrderOrNumArrayIndices = Record[Idx++];
6006 Indices.reserve(SourceOrderOrNumArrayIndices);
6007 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
Douglas Gregor409448c2011-07-21 22:35:25 +00006008 Indices.push_back(ReadDeclAs<VarDecl>(F, Record, Idx));
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006009 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006010
Sean Huntcbb67482011-01-08 20:30:50 +00006011 CXXCtorInitializer *BOMInit;
Sean Hunt156b6402011-05-04 01:19:08 +00006012 if (Type == CTOR_INITIALIZER_BASE) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006013 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, IsBaseVirtual,
Sean Huntcbb67482011-01-08 20:30:50 +00006014 LParenLoc, Init, RParenLoc,
6015 MemberOrEllipsisLoc);
Sean Hunt156b6402011-05-04 01:19:08 +00006016 } else if (Type == CTOR_INITIALIZER_DELEGATING) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006017 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, LParenLoc,
6018 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006019 } else if (IsWritten) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00006020 if (Member)
Douglas Gregor35942772011-09-09 21:34:22 +00006021 BOMInit = new (Context) CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006022 LParenLoc, Init, RParenLoc);
Francois Pichet00eb3f92010-12-04 09:14:42 +00006023 else
Douglas Gregor35942772011-09-09 21:34:22 +00006024 BOMInit = new (Context) CXXCtorInitializer(Context, IndirectMember,
Sean Huntcbb67482011-01-08 20:30:50 +00006025 MemberOrEllipsisLoc, LParenLoc,
6026 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006027 } else {
Douglas Gregor35942772011-09-09 21:34:22 +00006028 BOMInit = CXXCtorInitializer::Create(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006029 LParenLoc, Init, RParenLoc,
6030 Indices.data(), Indices.size());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006031 }
6032
Argyrios Kyrtzidisf84cde12010-09-06 19:04:27 +00006033 if (IsWritten)
6034 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Sean Huntcbb67482011-01-08 20:30:50 +00006035 CtorInitializers[i] = BOMInit;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006036 }
6037 }
6038
Sean Huntcbb67482011-01-08 20:30:50 +00006039 return std::make_pair(CtorInitializers, NumInitializers);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006040}
6041
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006042NestedNameSpecifier *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006043ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006044 const RecordData &Record, unsigned &Idx) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006045 unsigned N = Record[Idx++];
6046 NestedNameSpecifier *NNS = 0, *Prev = 0;
6047 for (unsigned I = 0; I != N; ++I) {
6048 NestedNameSpecifier::SpecifierKind Kind
6049 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6050 switch (Kind) {
6051 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006052 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006053 NNS = NestedNameSpecifier::Create(Context, Prev, II);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006054 break;
6055 }
6056
6057 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006058 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006059 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006060 break;
6061 }
6062
Douglas Gregor14aba762011-02-24 02:36:08 +00006063 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006064 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006065 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
Douglas Gregor14aba762011-02-24 02:36:08 +00006066 break;
6067 }
6068
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006069 case NestedNameSpecifier::TypeSpec:
6070 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregor393f2492011-07-22 00:38:23 +00006071 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
Douglas Gregor1ab55e92010-12-10 17:03:06 +00006072 if (!T)
6073 return 0;
6074
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006075 bool Template = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006076 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006077 break;
6078 }
6079
6080 case NestedNameSpecifier::Global: {
Douglas Gregor35942772011-09-09 21:34:22 +00006081 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006082 // No associated value, and there can't be a prefix.
6083 break;
6084 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006085 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00006086 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006087 }
6088 return NNS;
6089}
6090
Douglas Gregordc355712011-02-25 00:36:19 +00006091NestedNameSpecifierLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006092ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Douglas Gregordc355712011-02-25 00:36:19 +00006093 unsigned &Idx) {
6094 unsigned N = Record[Idx++];
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006095 NestedNameSpecifierLocBuilder Builder;
Douglas Gregordc355712011-02-25 00:36:19 +00006096 for (unsigned I = 0; I != N; ++I) {
6097 NestedNameSpecifier::SpecifierKind Kind
6098 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6099 switch (Kind) {
6100 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006101 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006102 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006103 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006104 break;
6105 }
6106
6107 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006108 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006109 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006110 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006111 break;
6112 }
6113
6114 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006115 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006116 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006117 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006118 break;
6119 }
6120
6121 case NestedNameSpecifier::TypeSpec:
6122 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregordc355712011-02-25 00:36:19 +00006123 bool Template = Record[Idx++];
6124 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
6125 if (!T)
6126 return NestedNameSpecifierLoc();
Douglas Gregordc355712011-02-25 00:36:19 +00006127 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006128
6129 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
Douglas Gregor35942772011-09-09 21:34:22 +00006130 Builder.Extend(Context,
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006131 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
6132 T->getTypeLoc(), ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006133 break;
6134 }
6135
6136 case NestedNameSpecifier::Global: {
Douglas Gregordc355712011-02-25 00:36:19 +00006137 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006138 Builder.MakeGlobal(Context, ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006139 break;
6140 }
6141 }
Douglas Gregordc355712011-02-25 00:36:19 +00006142 }
6143
Douglas Gregor35942772011-09-09 21:34:22 +00006144 return Builder.getWithLocInContext(Context);
Douglas Gregordc355712011-02-25 00:36:19 +00006145}
6146
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006147SourceRange
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006148ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006149 unsigned &Idx) {
6150 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
6151 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar8ee59392010-06-02 15:47:10 +00006152 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006153}
6154
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006155/// \brief Read an integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006156llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006157 unsigned BitWidth = Record[Idx++];
6158 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6159 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6160 Idx += NumWords;
6161 return Result;
6162}
6163
6164/// \brief Read a signed integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006165llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006166 bool isUnsigned = Record[Idx++];
6167 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
6168}
6169
Douglas Gregor17fc2232009-04-14 21:55:33 +00006170/// \brief Read a floating-point value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006171llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00006172 return llvm::APFloat(ReadAPInt(Record, Idx));
6173}
6174
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006175// \brief Read a string
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006176std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006177 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00006178 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006179 Idx += Len;
6180 return Result;
6181}
6182
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006183VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
6184 unsigned &Idx) {
6185 unsigned Major = Record[Idx++];
6186 unsigned Minor = Record[Idx++];
6187 unsigned Subminor = Record[Idx++];
6188 if (Minor == 0)
6189 return VersionTuple(Major);
6190 if (Subminor == 0)
6191 return VersionTuple(Major, Minor - 1);
6192 return VersionTuple(Major, Minor - 1, Subminor - 1);
6193}
6194
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006195CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006196 const RecordData &Record,
Chris Lattnerd2598362010-05-10 00:25:06 +00006197 unsigned &Idx) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006198 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006199 return CXXTemporary::Create(Context, Decl);
Chris Lattnerd2598362010-05-10 00:25:06 +00006200}
6201
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006202DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00006203 return Diag(SourceLocation(), DiagID);
6204}
6205
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006206DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00006207 return Diags.Report(Loc, DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006208}
Douglas Gregor025452f2009-04-17 00:04:06 +00006209
Douglas Gregor668c1a42009-04-21 22:25:48 +00006210/// \brief Retrieve the identifier table associated with the
6211/// preprocessor.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006212IdentifierTable &ASTReader::getIdentifierTable() {
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006213 return PP.getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00006214}
6215
Douglas Gregor025452f2009-04-17 00:04:06 +00006216/// \brief Record that the given ID maps to the given switch-case
6217/// statement.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006218void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Douglas Gregor025452f2009-04-17 00:04:06 +00006219 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
6220 SwitchCaseStmts[ID] = SC;
6221}
6222
6223/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006224SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Douglas Gregor025452f2009-04-17 00:04:06 +00006225 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
6226 return SwitchCaseStmts[ID];
6227}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00006228
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006229void ASTReader::ClearSwitchCaseIDs() {
6230 SwitchCaseStmts.clear();
6231}
6232
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006233void ASTReader::finishPendingActions() {
Douglas Gregorcff9f262012-01-27 01:47:08 +00006234 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty()) {
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006235 // If any identifiers with corresponding top-level declarations have
6236 // been loaded, load those declarations now.
6237 while (!PendingIdentifierInfos.empty()) {
6238 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
6239 PendingIdentifierInfos.front().DeclIDs, true);
6240 PendingIdentifierInfos.pop_front();
6241 }
6242
Douglas Gregora1be2782011-12-17 23:38:30 +00006243 // Load pending declaration chains.
6244 for (unsigned I = 0; I != PendingDeclChains.size(); ++I) {
6245 loadPendingDeclChain(PendingDeclChains[I]);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006246 PendingDeclChainsKnown.erase(PendingDeclChains[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00006247 }
6248 PendingDeclChains.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006249 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006250
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006251 // If we deserialized any C++ or Objective-C class definitions, any
6252 // Objective-C protocol definitions, or any redeclarable templates, make sure
6253 // that all redeclarations point to the definitions. Note that this can only
6254 // happen now, after the redeclaration chains have been fully wired.
Douglas Gregorfc529f72011-12-19 19:00:47 +00006255 for (llvm::SmallPtrSet<Decl *, 4>::iterator D = PendingDefinitions.begin(),
6256 DEnd = PendingDefinitions.end();
6257 D != DEnd; ++D) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006258 if (TagDecl *TD = dyn_cast<TagDecl>(*D)) {
6259 if (const TagType *TagT = dyn_cast<TagType>(TD->TypeForDecl)) {
6260 // Make sure that the TagType points at the definition.
6261 const_cast<TagType*>(TagT)->decl = TD;
6262 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006263
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006264 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(*D)) {
6265 for (CXXRecordDecl::redecl_iterator R = RD->redecls_begin(),
6266 REnd = RD->redecls_end();
6267 R != REnd; ++R)
6268 cast<CXXRecordDecl>(*R)->DefinitionData = RD->DefinitionData;
6269
6270 }
6271
Douglas Gregorfc529f72011-12-19 19:00:47 +00006272 continue;
6273 }
6274
Douglas Gregor1d784b22012-01-01 19:51:50 +00006275 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(*D)) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006276 // Make sure that the ObjCInterfaceType points at the definition.
6277 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
6278 ->Decl = ID;
6279
Douglas Gregor1d784b22012-01-01 19:51:50 +00006280 for (ObjCInterfaceDecl::redecl_iterator R = ID->redecls_begin(),
6281 REnd = ID->redecls_end();
6282 R != REnd; ++R)
6283 R->Data = ID->Data;
6284
6285 continue;
6286 }
6287
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006288 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(*D)) {
6289 for (ObjCProtocolDecl::redecl_iterator R = PD->redecls_begin(),
6290 REnd = PD->redecls_end();
6291 R != REnd; ++R)
6292 R->Data = PD->Data;
6293
6294 continue;
6295 }
6296
6297 RedeclarableTemplateDecl *RTD
6298 = cast<RedeclarableTemplateDecl>(*D)->getCanonicalDecl();
6299 for (RedeclarableTemplateDecl::redecl_iterator R = RTD->redecls_begin(),
6300 REnd = RTD->redecls_end();
Douglas Gregorfc529f72011-12-19 19:00:47 +00006301 R != REnd; ++R)
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006302 R->Common = RTD->Common;
Douglas Gregorfc529f72011-12-19 19:00:47 +00006303 }
6304 PendingDefinitions.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006305}
6306
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006307void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006308 assert(NumCurrentElementsDeserializing &&
6309 "FinishedDeserializing not paired with StartedDeserializing");
6310 if (NumCurrentElementsDeserializing == 1) {
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006311 // We decrease NumCurrentElementsDeserializing only after pending actions
6312 // are finished, to avoid recursively re-calling finishPendingActions().
6313 finishPendingActions();
6314 }
6315 --NumCurrentElementsDeserializing;
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006316
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006317 if (NumCurrentElementsDeserializing == 0 &&
6318 Consumer && !PassingDeclsToConsumer) {
6319 // Guard variable to avoid recursively redoing the process of passing
6320 // decls to consumer.
6321 SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
6322 true);
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006323
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006324 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00006325 // We are not in recursive loading, so it's safe to pass the "interesting"
6326 // decls to the consumer.
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006327 Decl *D = InterestingDecls.front();
6328 InterestingDecls.pop_front();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006329 PassInterestingDeclToConsumer(D);
6330 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006331 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006332}
Douglas Gregor501c1032010-08-19 00:28:17 +00006333
Douglas Gregorf8a1e512011-09-02 00:26:20 +00006334ASTReader::ASTReader(Preprocessor &PP, ASTContext &Context,
Douglas Gregor832d6202011-07-22 16:35:34 +00006335 StringRef isysroot, bool DisableValidation,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006336 bool DisableStatCache, bool AllowASTWithCompilerErrors)
Sebastian Redle1dde812010-08-24 00:50:04 +00006337 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
6338 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006339 Diags(PP.getDiagnostics()), SemaObj(0), PP(PP), Context(Context),
Jonathan D. Turner1afb6612011-07-28 17:20:23 +00006340 Consumer(0), ModuleMgr(FileMgr.getFileSystemOptions()),
6341 RelocatablePCH(false), isysroot(isysroot),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006342 DisableValidation(DisableValidation),
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006343 DisableStatCache(DisableStatCache),
6344 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
Douglas Gregor057df202012-01-18 20:56:22 +00006345 CurrentGeneration(0), NumStatHits(0), NumStatMisses(0),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006346 NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006347 NumStatementsRead(0), TotalNumStatements(0), NumMacrosRead(0),
6348 TotalNumMacros(0), NumSelectorsRead(0), NumMethodPoolEntriesRead(0),
6349 NumMethodPoolMisses(0), TotalNumMethodPoolEntries(0),
6350 NumLexicalDeclContextsRead(0), TotalLexicalDeclContexts(0),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006351 NumVisibleDeclContextsRead(0), TotalVisibleDeclContexts(0),
6352 TotalModulesSizeInBits(0), NumCurrentElementsDeserializing(0),
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006353 PassingDeclsToConsumer(false),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006354 NumCXXBaseSpecifiersLoaded(0)
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006355{
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006356 SourceMgr.setExternalSLocEntrySource(this);
Sebastian Redle1dde812010-08-24 00:50:04 +00006357}
6358
Sebastian Redle1dde812010-08-24 00:50:04 +00006359ASTReader::~ASTReader() {
Sebastian Redle1dde812010-08-24 00:50:04 +00006360 for (DeclContextVisibleUpdatesPending::iterator
6361 I = PendingVisibleUpdates.begin(),
6362 E = PendingVisibleUpdates.end();
6363 I != E; ++I) {
6364 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
6365 F = I->second.end();
6366 J != F; ++J)
Douglas Gregor496c7092011-08-03 15:48:04 +00006367 delete static_cast<ASTDeclContextNameLookupTable*>(J->first);
Sebastian Redle1dde812010-08-24 00:50:04 +00006368 }
6369}