blob: 9436bfb50bd374e9d955ee4ca26e3ad337644488 [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);
3353 Idx += Length;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003354 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003355 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003356
3357 return false;
3358}
3359
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003360std::pair<ModuleFile *, unsigned>
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003361ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003362 GlobalPreprocessedEntityMapType::iterator
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003363 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003364 assert(I != GlobalPreprocessedEntityMap.end() &&
3365 "Corrupted global preprocessed entity map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003366 ModuleFile *M = I->second;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003367 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
3368 return std::make_pair(M, LocalIndex);
3369}
3370
3371PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
3372 PreprocessedEntityID PPID = Index+1;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003373 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3374 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003375 unsigned LocalIndex = PPInfo.second;
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003376 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
Douglas Gregor4800a5c2011-02-08 21:58:10 +00003377
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003378 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003379 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003380
3381 unsigned Code = M.PreprocessorDetailCursor.ReadCode();
3382 switch (Code) {
3383 case llvm::bitc::END_BLOCK:
3384 return 0;
3385
3386 case llvm::bitc::ENTER_SUBBLOCK:
3387 Error("unexpected subblock record in preprocessor detail block");
3388 return 0;
3389
3390 case llvm::bitc::DEFINE_ABBREV:
3391 Error("unexpected abbrevation record in preprocessor detail block");
3392 return 0;
3393
3394 default:
3395 break;
3396 }
3397
3398 if (!PP.getPreprocessingRecord()) {
3399 Error("no preprocessing record");
3400 return 0;
3401 }
3402
3403 // Read the record.
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003404 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
3405 ReadSourceLocation(M, PPOffs.End));
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003406 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
3407 const char *BlobStart = 0;
3408 unsigned BlobLen = 0;
3409 RecordData Record;
3410 PreprocessorDetailRecordTypes RecType =
3411 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.ReadRecord(
3412 Code, Record, BlobStart, BlobLen);
3413 switch (RecType) {
3414 case PPD_MACRO_EXPANSION: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003415 bool isBuiltin = Record[0];
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003416 IdentifierInfo *Name = 0;
3417 MacroDefinition *Def = 0;
3418 if (isBuiltin)
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003419 Name = getLocalIdentifier(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003420 else {
3421 PreprocessedEntityID
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003422 GlobalID = getGlobalPreprocessedEntityID(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003423 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
3424 }
3425
3426 MacroExpansion *ME;
3427 if (isBuiltin)
3428 ME = new (PPRec) MacroExpansion(Name, Range);
3429 else
3430 ME = new (PPRec) MacroExpansion(Def, Range);
3431
3432 return ME;
3433 }
3434
3435 case PPD_MACRO_DEFINITION: {
3436 // Decode the identifier info and then check again; if the macro is
3437 // still defined and associated with the identifier,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003438 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003439 MacroDefinition *MD
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003440 = new (PPRec) MacroDefinition(II, Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003441
3442 if (DeserializationListener)
3443 DeserializationListener->MacroDefinitionRead(PPID, MD);
3444
3445 return MD;
3446 }
3447
3448 case PPD_INCLUSION_DIRECTIVE: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003449 const char *FullFileNameStart = BlobStart + Record[0];
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00003450 StringRef FullFileName(FullFileNameStart, BlobLen - Record[0]);
3451 const FileEntry *File = 0;
3452 if (!FullFileName.empty())
3453 File = PP.getFileManager().getFile(FullFileName);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003454
3455 // FIXME: Stable encoding
3456 InclusionDirective::InclusionKind Kind
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003457 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003458 InclusionDirective *ID
3459 = new (PPRec) InclusionDirective(PPRec, Kind,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003460 StringRef(BlobStart, Record[0]),
3461 Record[1],
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003462 File,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003463 Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003464 return ID;
3465 }
3466 }
David Blaikie7530c032012-01-17 06:56:22 +00003467
3468 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00003469}
3470
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003471/// \brief \arg SLocMapI points at a chunk of a module that contains no
3472/// preprocessed entities or the entities it contains are not the ones we are
3473/// looking for. Find the next module that contains entities and return the ID
3474/// of the first entry.
3475PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
3476 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
3477 ++SLocMapI;
3478 for (GlobalSLocOffsetMapType::const_iterator
3479 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003480 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003481 if (M.NumPreprocessedEntities)
3482 return getGlobalPreprocessedEntityID(M, M.BasePreprocessedEntityID);
3483 }
3484
3485 return getTotalNumPreprocessedEntities();
3486}
3487
3488namespace {
3489
3490template <unsigned PPEntityOffset::*PPLoc>
3491struct PPEntityComp {
3492 const ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003493 ModuleFile &M;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003494
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003495 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) { }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003496
Benjamin Kramer88df1252011-09-21 06:42:26 +00003497 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
3498 SourceLocation LHS = getLoc(L);
3499 SourceLocation RHS = getLoc(R);
3500 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3501 }
3502
3503 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003504 SourceLocation LHS = getLoc(L);
3505 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3506 }
3507
Benjamin Kramer88df1252011-09-21 06:42:26 +00003508 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003509 SourceLocation RHS = getLoc(R);
3510 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3511 }
3512
3513 SourceLocation getLoc(const PPEntityOffset &PPE) const {
3514 return Reader.ReadSourceLocation(M, PPE.*PPLoc);
3515 }
3516};
3517
3518}
3519
3520/// \brief Returns the first preprocessed entity ID that ends after \arg BLoc.
3521PreprocessedEntityID
3522ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const {
3523 if (SourceMgr.isLocalSourceLocation(BLoc))
3524 return getTotalNumPreprocessedEntities();
3525
3526 GlobalSLocOffsetMapType::const_iterator
3527 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3528 BLoc.getOffset());
3529 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3530 "Corrupted global sloc offset map");
3531
3532 if (SLocMapI->second->NumPreprocessedEntities == 0)
3533 return findNextPreprocessedEntity(SLocMapI);
3534
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003535 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003536 typedef const PPEntityOffset *pp_iterator;
3537 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3538 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
Argyrios Kyrtzidis4cd06342011-09-22 21:17:02 +00003539
3540 size_t Count = M.NumPreprocessedEntities;
3541 size_t Half;
3542 pp_iterator First = pp_begin;
3543 pp_iterator PPI;
3544
3545 // Do a binary search manually instead of using std::lower_bound because
3546 // The end locations of entities may be unordered (when a macro expansion
3547 // is inside another macro argument), but for this case it is not important
3548 // whether we get the first macro expansion or its containing macro.
3549 while (Count > 0) {
3550 Half = Count/2;
3551 PPI = First;
3552 std::advance(PPI, Half);
3553 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
3554 BLoc)){
3555 First = PPI;
3556 ++First;
3557 Count = Count - Half - 1;
3558 } else
3559 Count = Half;
3560 }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003561
3562 if (PPI == pp_end)
3563 return findNextPreprocessedEntity(SLocMapI);
3564
3565 return getGlobalPreprocessedEntityID(M,
3566 M.BasePreprocessedEntityID + (PPI - pp_begin));
3567}
3568
3569/// \brief Returns the first preprocessed entity ID that begins after \arg ELoc.
3570PreprocessedEntityID
3571ASTReader::findEndPreprocessedEntity(SourceLocation ELoc) const {
3572 if (SourceMgr.isLocalSourceLocation(ELoc))
3573 return getTotalNumPreprocessedEntities();
3574
3575 GlobalSLocOffsetMapType::const_iterator
3576 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3577 ELoc.getOffset());
3578 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3579 "Corrupted global sloc offset map");
3580
3581 if (SLocMapI->second->NumPreprocessedEntities == 0)
3582 return findNextPreprocessedEntity(SLocMapI);
3583
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003584 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003585 typedef const PPEntityOffset *pp_iterator;
3586 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3587 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
3588 pp_iterator PPI =
3589 std::upper_bound(pp_begin, pp_end, ELoc,
3590 PPEntityComp<&PPEntityOffset::Begin>(*this, M));
3591
3592 if (PPI == pp_end)
3593 return findNextPreprocessedEntity(SLocMapI);
3594
3595 return getGlobalPreprocessedEntityID(M,
3596 M.BasePreprocessedEntityID + (PPI - pp_begin));
3597}
3598
3599/// \brief Returns a pair of [Begin, End) indices of preallocated
3600/// preprocessed entities that \arg Range encompasses.
3601std::pair<unsigned, unsigned>
3602 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
3603 if (Range.isInvalid())
3604 return std::make_pair(0,0);
3605 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
3606
3607 PreprocessedEntityID BeginID = findBeginPreprocessedEntity(Range.getBegin());
3608 PreprocessedEntityID EndID = findEndPreprocessedEntity(Range.getEnd());
3609 return std::make_pair(BeginID, EndID);
3610}
3611
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003612/// \brief Optionally returns true or false if the preallocated preprocessed
3613/// entity with index \arg Index came from file \arg FID.
3614llvm::Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
3615 FileID FID) {
3616 if (FID.isInvalid())
3617 return false;
3618
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003619 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3620 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003621 unsigned LocalIndex = PPInfo.second;
3622 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
3623
3624 SourceLocation Loc = ReadSourceLocation(M, PPOffs.Begin);
3625 if (Loc.isInvalid())
3626 return false;
3627
3628 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
3629 return true;
3630 else
3631 return false;
3632}
3633
Douglas Gregord10a3812011-08-25 18:14:34 +00003634namespace {
3635 /// \brief Visitor used to search for information about a header file.
3636 class HeaderFileInfoVisitor {
3637 ASTReader &Reader;
3638 const FileEntry *FE;
3639
3640 llvm::Optional<HeaderFileInfo> HFI;
3641
3642 public:
3643 HeaderFileInfoVisitor(ASTReader &Reader, const FileEntry *FE)
3644 : Reader(Reader), FE(FE) { }
3645
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003646 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003647 HeaderFileInfoVisitor *This
3648 = static_cast<HeaderFileInfoVisitor *>(UserData);
3649
3650 HeaderFileInfoTrait Trait(This->Reader, M,
3651 &This->Reader.getPreprocessor().getHeaderSearchInfo(),
3652 M.HeaderFileFrameworkStrings,
3653 This->FE->getName());
3654
3655 HeaderFileInfoLookupTable *Table
3656 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
3657 if (!Table)
3658 return false;
3659
3660 // Look in the on-disk hash table for an entry for this file name.
3661 HeaderFileInfoLookupTable::iterator Pos = Table->find(This->FE->getName(),
3662 &Trait);
3663 if (Pos == Table->end())
3664 return false;
3665
3666 This->HFI = *Pos;
3667 return true;
3668 }
3669
3670 llvm::Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
3671 };
3672}
3673
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003674HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003675 HeaderFileInfoVisitor Visitor(*this, FE);
3676 ModuleMgr.visit(&HeaderFileInfoVisitor::visit, &Visitor);
3677 if (llvm::Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo()) {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003678 if (Listener)
Douglas Gregord10a3812011-08-25 18:14:34 +00003679 Listener->ReadHeaderFileInfo(*HFI, FE->getUID());
3680 return *HFI;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003681 }
3682
3683 return HeaderFileInfo();
3684}
3685
David Blaikied6471f72011-09-25 23:23:43 +00003686void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00003687 for (ModuleIterator I = ModuleMgr.begin(), E = ModuleMgr.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003688 ModuleFile &F = *(*I);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003689 unsigned Idx = 0;
3690 while (Idx < F.PragmaDiagMappings.size()) {
3691 SourceLocation Loc = ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003692 Diag.DiagStates.push_back(*Diag.GetCurDiagState());
3693 Diag.DiagStatePoints.push_back(
3694 DiagnosticsEngine::DiagStatePoint(&Diag.DiagStates.back(),
3695 FullSourceLoc(Loc, SourceMgr)));
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003696 while (1) {
3697 assert(Idx < F.PragmaDiagMappings.size() &&
3698 "Invalid data, didn't find '-1' marking end of diag/map pairs");
3699 if (Idx >= F.PragmaDiagMappings.size()) {
3700 break; // Something is messed up but at least avoid infinite loop in
3701 // release build.
3702 }
3703 unsigned DiagID = F.PragmaDiagMappings[Idx++];
3704 if (DiagID == (unsigned)-1) {
3705 break; // no more diag/map pairs for this location.
3706 }
3707 diag::Mapping Map = (diag::Mapping)F.PragmaDiagMappings[Idx++];
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003708 DiagnosticMappingInfo MappingInfo = Diag.makeMappingInfo(Map, Loc);
3709 Diag.GetCurDiagState()->setMappingInfo(DiagID, MappingInfo);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003710 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00003711 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00003712 }
3713}
3714
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003715/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00003716ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Douglas Gregora119da02011-08-02 16:26:37 +00003717 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
Jonathan D. Turnere9b76c12011-07-20 21:31:32 +00003718 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003719 ModuleFile *M = I->second;
Douglas Gregore3605012011-08-02 18:32:54 +00003720 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003721}
3722
3723/// \brief Read and return the type with the given index..
Douglas Gregor2cf26342009-04-09 22:27:44 +00003724///
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003725/// The index is the type ID, shifted and minus the number of predefs. This
3726/// routine actually reads the record corresponding to the type at the given
3727/// location. It is a helper routine for GetType, which deals with reading type
3728/// IDs.
Douglas Gregor393f2492011-07-22 00:38:23 +00003729QualType ASTReader::readTypeRecord(unsigned Index) {
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003730 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00003731 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00003732
Douglas Gregor0b748912009-04-14 21:18:50 +00003733 // Keep track of where we are in the stream, then jump back there
3734 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003735 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00003736
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003737 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redl27372b42010-08-11 18:52:41 +00003738
Douglas Gregord89275b2009-07-06 18:54:52 +00003739 // Note that we are loading a type record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00003740 Deserializing AType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00003741
Douglas Gregor393f2492011-07-22 00:38:23 +00003742 unsigned Idx = 0;
Sebastian Redlc3632732010-10-05 15:59:54 +00003743 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003744 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003745 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003746 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
3747 case TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003748 if (Record.size() != 2) {
3749 Error("Incorrect encoding of extended qualifier type");
3750 return QualType();
3751 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003752 QualType Base = readType(*Loc.F, Record, Idx);
3753 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
Douglas Gregor35942772011-09-09 21:34:22 +00003754 return Context.getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00003755 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003756
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003757 case TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003758 if (Record.size() != 1) {
3759 Error("Incorrect encoding of complex type");
3760 return QualType();
3761 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003762 QualType ElemType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003763 return Context.getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003764 }
3765
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003766 case TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003767 if (Record.size() != 1) {
3768 Error("Incorrect encoding of pointer type");
3769 return QualType();
3770 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003771 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003772 return Context.getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003773 }
3774
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003775 case TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003776 if (Record.size() != 1) {
3777 Error("Incorrect encoding of block pointer type");
3778 return QualType();
3779 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003780 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003781 return Context.getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003782 }
3783
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003784 case TYPE_LVALUE_REFERENCE: {
Richard Smithdf1550f2011-04-12 10:38:03 +00003785 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003786 Error("Incorrect encoding of lvalue reference type");
3787 return QualType();
3788 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003789 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003790 return Context.getLValueReferenceType(PointeeType, Record[1]);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003791 }
3792
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003793 case TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003794 if (Record.size() != 1) {
3795 Error("Incorrect encoding of rvalue reference type");
3796 return QualType();
3797 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003798 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003799 return Context.getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003800 }
3801
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003802 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00003803 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003804 Error("Incorrect encoding of member pointer type");
3805 return QualType();
3806 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003807 QualType PointeeType = readType(*Loc.F, Record, Idx);
3808 QualType ClassType = readType(*Loc.F, Record, Idx);
Douglas Gregor1ab55e92010-12-10 17:03:06 +00003809 if (PointeeType.isNull() || ClassType.isNull())
3810 return QualType();
3811
Douglas Gregor35942772011-09-09 21:34:22 +00003812 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00003813 }
3814
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003815 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003816 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003817 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3818 unsigned IndexTypeQuals = Record[2];
3819 unsigned Idx = 3;
3820 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003821 return Context.getConstantArrayType(ElementType, Size,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003822 ASM, IndexTypeQuals);
3823 }
3824
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003825 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003826 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003827 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3828 unsigned IndexTypeQuals = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003829 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003830 }
3831
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003832 case TYPE_VARIABLE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003833 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregor0b748912009-04-14 21:18:50 +00003834 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3835 unsigned IndexTypeQuals = Record[2];
Sebastian Redlc3632732010-10-05 15:59:54 +00003836 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
3837 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
Douglas Gregor35942772011-09-09 21:34:22 +00003838 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003839 ASM, IndexTypeQuals,
3840 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003841 }
3842
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003843 case TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003844 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003845 Error("incorrect encoding of vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003846 return QualType();
3847 }
3848
Douglas Gregor393f2492011-07-22 00:38:23 +00003849 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003850 unsigned NumElements = Record[1];
Bob Wilsone86d78c2010-11-10 21:56:12 +00003851 unsigned VecKind = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003852 return Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00003853 (VectorType::VectorKind)VecKind);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003854 }
3855
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003856 case TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003857 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003858 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003859 return QualType();
3860 }
3861
Douglas Gregor393f2492011-07-22 00:38:23 +00003862 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003863 unsigned NumElements = Record[1];
Douglas Gregor35942772011-09-09 21:34:22 +00003864 return Context.getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003865 }
3866
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003867 case TYPE_FUNCTION_NO_PROTO: {
John McCallf85e1932011-06-15 23:02:42 +00003868 if (Record.size() != 6) {
Douglas Gregora02b1472009-04-28 21:53:25 +00003869 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003870 return QualType();
3871 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003872 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCallf85e1932011-06-15 23:02:42 +00003873 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
3874 (CallingConv)Record[4], Record[5]);
Douglas Gregor35942772011-09-09 21:34:22 +00003875 return Context.getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003876 }
3877
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003878 case TYPE_FUNCTION_PROTO: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003879 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCalle23cf432010-12-14 08:05:40 +00003880
3881 FunctionProtoType::ExtProtoInfo EPI;
3882 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
Eli Friedmana49218e2011-04-09 08:18:08 +00003883 /*hasregparm*/ Record[2],
3884 /*regparm*/ Record[3],
John McCallf85e1932011-06-15 23:02:42 +00003885 static_cast<CallingConv>(Record[4]),
3886 /*produces*/ Record[5]);
John McCalle23cf432010-12-14 08:05:40 +00003887
John McCallf85e1932011-06-15 23:02:42 +00003888 unsigned Idx = 6;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003889 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00003890 SmallVector<QualType, 16> ParamTypes;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003891 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003892 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
John McCalle23cf432010-12-14 08:05:40 +00003893
3894 EPI.Variadic = Record[Idx++];
Richard Smitheefb3d52012-02-10 09:58:53 +00003895 EPI.HasTrailingReturn = Record[Idx++];
John McCalle23cf432010-12-14 08:05:40 +00003896 EPI.TypeQuals = Record[Idx++];
Douglas Gregorc938c162011-01-26 05:01:58 +00003897 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Sebastian Redl60618fa2011-03-12 11:50:43 +00003898 ExceptionSpecificationType EST =
3899 static_cast<ExceptionSpecificationType>(Record[Idx++]);
3900 EPI.ExceptionSpecType = EST;
3901 if (EST == EST_Dynamic) {
3902 EPI.NumExceptions = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00003903 SmallVector<QualType, 2> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003904 for (unsigned I = 0; I != EPI.NumExceptions; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003905 Exceptions.push_back(readType(*Loc.F, Record, Idx));
Sebastian Redl60618fa2011-03-12 11:50:43 +00003906 EPI.Exceptions = Exceptions.data();
3907 } else if (EST == EST_ComputedNoexcept) {
3908 EPI.NoexceptExpr = ReadExpr(*Loc.F);
3909 }
Douglas Gregor35942772011-09-09 21:34:22 +00003910 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams,
John McCalle23cf432010-12-14 08:05:40 +00003911 EPI);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003912 }
3913
Douglas Gregor409448c2011-07-21 22:35:25 +00003914 case TYPE_UNRESOLVED_USING: {
3915 unsigned Idx = 0;
Douglas Gregor35942772011-09-09 21:34:22 +00003916 return Context.getTypeDeclType(
Douglas Gregor409448c2011-07-21 22:35:25 +00003917 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
3918 }
3919
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003920 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003921 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003922 Error("incorrect encoding of typedef type");
3923 return QualType();
3924 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003925 unsigned Idx = 0;
3926 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00003927 QualType Canonical = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00003928 if (!Canonical.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00003929 Canonical = Context.getCanonicalType(Canonical);
3930 return Context.getTypedefType(Decl, Canonical);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003931 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003932
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003933 case TYPE_TYPEOF_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00003934 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003935
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003936 case TYPE_TYPEOF: {
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003937 if (Record.size() != 1) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003938 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003939 return QualType();
3940 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003941 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003942 return Context.getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003943 }
Mike Stump1eb44332009-09-09 15:08:12 +00003944
Douglas Gregorf8af9822012-02-12 18:42:33 +00003945 case TYPE_DECLTYPE: {
3946 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
3947 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
3948 }
Anders Carlsson395b4752009-06-24 19:06:50 +00003949
Sean Huntca63c202011-05-24 22:41:36 +00003950 case TYPE_UNARY_TRANSFORM: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003951 QualType BaseType = readType(*Loc.F, Record, Idx);
3952 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Sean Huntca63c202011-05-24 22:41:36 +00003953 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003954 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
Sean Huntca63c202011-05-24 22:41:36 +00003955 }
3956
Richard Smith34b41d92011-02-20 03:19:35 +00003957 case TYPE_AUTO:
Douglas Gregor35942772011-09-09 21:34:22 +00003958 return Context.getAutoType(readType(*Loc.F, Record, Idx));
Richard Smith34b41d92011-02-20 03:19:35 +00003959
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003960 case TYPE_RECORD: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003961 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003962 Error("incorrect encoding of record type");
3963 return QualType();
3964 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003965 unsigned Idx = 0;
3966 bool IsDependent = Record[Idx++];
Douglas Gregor56ca8a92012-01-17 19:21:53 +00003967 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
3968 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
3969 QualType T = Context.getRecordType(RD);
John McCallf4c73712011-01-19 06:33:43 +00003970 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003971 return T;
3972 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003973
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003974 case TYPE_ENUM: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003975 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003976 Error("incorrect encoding of enum type");
3977 return QualType();
3978 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003979 unsigned Idx = 0;
3980 bool IsDependent = Record[Idx++];
3981 QualType T
Douglas Gregor35942772011-09-09 21:34:22 +00003982 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
John McCallf4c73712011-01-19 06:33:43 +00003983 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003984 return T;
3985 }
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003986
John McCall9d156a72011-01-06 01:58:22 +00003987 case TYPE_ATTRIBUTED: {
3988 if (Record.size() != 3) {
3989 Error("incorrect encoding of attributed type");
3990 return QualType();
3991 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003992 QualType modifiedType = readType(*Loc.F, Record, Idx);
3993 QualType equivalentType = readType(*Loc.F, Record, Idx);
John McCall9d156a72011-01-06 01:58:22 +00003994 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
Douglas Gregor35942772011-09-09 21:34:22 +00003995 return Context.getAttributedType(kind, modifiedType, equivalentType);
John McCall9d156a72011-01-06 01:58:22 +00003996 }
3997
Abramo Bagnara075f8f12010-12-10 16:29:40 +00003998 case TYPE_PAREN: {
3999 if (Record.size() != 1) {
4000 Error("incorrect encoding of paren type");
4001 return QualType();
4002 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004003 QualType InnerType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004004 return Context.getParenType(InnerType);
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004005 }
4006
Douglas Gregor7536dd52010-12-20 02:24:11 +00004007 case TYPE_PACK_EXPANSION: {
Douglas Gregorf9997a02011-02-01 15:24:58 +00004008 if (Record.size() != 2) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00004009 Error("incorrect encoding of pack expansion type");
4010 return QualType();
4011 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004012 QualType Pattern = readType(*Loc.F, Record, Idx);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004013 if (Pattern.isNull())
4014 return QualType();
Douglas Gregorcded4f62011-01-14 17:04:44 +00004015 llvm::Optional<unsigned> NumExpansions;
4016 if (Record[1])
4017 NumExpansions = Record[1] - 1;
Douglas Gregor35942772011-09-09 21:34:22 +00004018 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004019 }
4020
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004021 case TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004022 unsigned Idx = 0;
4023 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004024 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004025 QualType NamedType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004026 return Context.getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00004027 }
4028
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004029 case TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004030 unsigned Idx = 0;
Douglas Gregor409448c2011-07-21 22:35:25 +00004031 ObjCInterfaceDecl *ItfD
4032 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004033 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
John McCallc12c5bb2010-05-15 11:32:37 +00004034 }
4035
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004036 case TYPE_OBJC_OBJECT: {
John McCallc12c5bb2010-05-15 11:32:37 +00004037 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004038 QualType Base = readType(*Loc.F, Record, Idx);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004039 unsigned NumProtos = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004040 SmallVector<ObjCProtocolDecl*, 4> Protos;
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004041 for (unsigned I = 0; I != NumProtos; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +00004042 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004043 return Context.getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004044 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004045
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004046 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004047 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004048 QualType Pointee = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004049 return Context.getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004050 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00004051
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004052 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCall49a832b2009-10-18 09:09:24 +00004053 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004054 QualType Parm = readType(*Loc.F, Record, Idx);
4055 QualType Replacement = readType(*Loc.F, Record, Idx);
John McCall49a832b2009-10-18 09:09:24 +00004056 return
Douglas Gregor35942772011-09-09 21:34:22 +00004057 Context.getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
John McCall49a832b2009-10-18 09:09:24 +00004058 Replacement);
4059 }
John McCall3cb0ebd2010-03-10 03:28:59 +00004060
Douglas Gregorc3069d62011-01-14 02:55:32 +00004061 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
4062 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004063 QualType Parm = readType(*Loc.F, Record, Idx);
Douglas Gregorc3069d62011-01-14 02:55:32 +00004064 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004065 return Context.getSubstTemplateTypeParmPackType(
Douglas Gregorc3069d62011-01-14 02:55:32 +00004066 cast<TemplateTypeParmType>(Parm),
4067 ArgPack);
4068 }
4069
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004070 case TYPE_INJECTED_CLASS_NAME: {
Douglas Gregor409448c2011-07-21 22:35:25 +00004071 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004072 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004073 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004074 // for AST reading, too much interdependencies.
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004075 return
Douglas Gregor35942772011-09-09 21:34:22 +00004076 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00004077 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004078
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004079 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004080 unsigned Idx = 0;
4081 unsigned Depth = Record[Idx++];
4082 unsigned Index = Record[Idx++];
4083 bool Pack = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004084 TemplateTypeParmDecl *D
4085 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004086 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004087 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004088
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004089 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004090 unsigned Idx = 0;
4091 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004092 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004093 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004094 QualType Canon = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004095 if (!Canon.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004096 Canon = Context.getCanonicalType(Canon);
4097 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004098 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004099
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004100 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004101 unsigned Idx = 0;
4102 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004103 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004104 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004105 unsigned NumArgs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004106 SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004107 Args.reserve(NumArgs);
4108 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00004109 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004110 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004111 Args.size(), Args.data());
4112 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004113
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004114 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004115 unsigned Idx = 0;
4116
4117 // ArrayType
Douglas Gregor393f2492011-07-22 00:38:23 +00004118 QualType ElementType = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004119 ArrayType::ArraySizeModifier ASM
4120 = (ArrayType::ArraySizeModifier)Record[Idx++];
4121 unsigned IndexTypeQuals = Record[Idx++];
4122
4123 // DependentSizedArrayType
Sebastian Redlc3632732010-10-05 15:59:54 +00004124 Expr *NumElts = ReadExpr(*Loc.F);
4125 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004126
Douglas Gregor35942772011-09-09 21:34:22 +00004127 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004128 IndexTypeQuals, Brackets);
4129 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004130
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004131 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004132 unsigned Idx = 0;
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004133 bool IsDependent = Record[Idx++];
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004134 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004135 SmallVector<TemplateArgument, 8> Args;
Sebastian Redlc3632732010-10-05 15:59:54 +00004136 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004137 QualType Underlying = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004138 QualType T;
Richard Smith3e4c6c42011-05-05 21:57:07 +00004139 if (Underlying.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004140 T = Context.getCanonicalTemplateSpecializationType(Name, Args.data(),
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004141 Args.size());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004142 else
Douglas Gregor35942772011-09-09 21:34:22 +00004143 T = Context.getTemplateSpecializationType(Name, Args.data(),
Richard Smith3e4c6c42011-05-05 21:57:07 +00004144 Args.size(), Underlying);
John McCallf4c73712011-01-19 06:33:43 +00004145 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004146 return T;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004147 }
Eli Friedmanb001de72011-10-06 23:00:33 +00004148
4149 case TYPE_ATOMIC: {
4150 if (Record.size() != 1) {
4151 Error("Incorrect encoding of atomic type");
4152 return QualType();
4153 }
4154 QualType ValueType = readType(*Loc.F, Record, Idx);
4155 return Context.getAtomicType(ValueType);
4156 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00004157 }
David Blaikie7530c032012-01-17 06:56:22 +00004158 llvm_unreachable("Invalid TypeCode!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00004159}
4160
Sebastian Redlc3632732010-10-05 15:59:54 +00004161class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004162 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004163 ModuleFile &F;
Sebastian Redl577d4792010-07-22 22:43:28 +00004164 llvm::BitstreamCursor &DeclsCursor;
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004165 const ASTReader::RecordData &Record;
John McCalla1ee0c52009-10-16 21:56:05 +00004166 unsigned &Idx;
4167
Sebastian Redlc3632732010-10-05 15:59:54 +00004168 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
4169 unsigned &I) {
4170 return Reader.ReadSourceLocation(F, R, I);
4171 }
4172
Douglas Gregor409448c2011-07-21 22:35:25 +00004173 template<typename T>
4174 T *ReadDeclAs(const ASTReader::RecordData &Record, unsigned &Idx) {
4175 return Reader.ReadDeclAs<T>(F, Record, Idx);
4176 }
4177
John McCalla1ee0c52009-10-16 21:56:05 +00004178public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004179 TypeLocReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004180 const ASTReader::RecordData &Record, unsigned &Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +00004181 : Reader(Reader), F(F), DeclsCursor(F.DeclsCursor), Record(Record), Idx(Idx)
4182 { }
John McCalla1ee0c52009-10-16 21:56:05 +00004183
John McCall51bd8032009-10-18 01:05:36 +00004184 // We want compile-time assurance that we've enumerated all of
4185 // these, so unfortunately we have to declare them first, then
4186 // define them out-of-line.
4187#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00004188#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00004189 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004190#include "clang/AST/TypeLocNodes.def"
4191
John McCall51bd8032009-10-18 01:05:36 +00004192 void VisitFunctionTypeLoc(FunctionTypeLoc);
4193 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004194};
4195
John McCall51bd8032009-10-18 01:05:36 +00004196void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00004197 // nothing to do
4198}
John McCall51bd8032009-10-18 01:05:36 +00004199void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004200 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorddf889a2010-01-18 18:04:31 +00004201 if (TL.needsExtraLocalData()) {
4202 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
4203 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
4204 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
4205 TL.setModeAttr(Record[Idx++]);
4206 }
John McCalla1ee0c52009-10-16 21:56:05 +00004207}
John McCall51bd8032009-10-18 01:05:36 +00004208void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004209 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004210}
John McCall51bd8032009-10-18 01:05:36 +00004211void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004212 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004213}
John McCall51bd8032009-10-18 01:05:36 +00004214void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004215 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004216}
John McCall51bd8032009-10-18 01:05:36 +00004217void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004218 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004219}
John McCall51bd8032009-10-18 01:05:36 +00004220void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004221 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004222}
John McCall51bd8032009-10-18 01:05:36 +00004223void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004224 TL.setStarLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +00004225 TL.setClassTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004226}
John McCall51bd8032009-10-18 01:05:36 +00004227void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004228 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
4229 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004230 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00004231 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004232 else
John McCall51bd8032009-10-18 01:05:36 +00004233 TL.setSizeExpr(0);
4234}
4235void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
4236 VisitArrayTypeLoc(TL);
4237}
4238void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
4239 VisitArrayTypeLoc(TL);
4240}
4241void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
4242 VisitArrayTypeLoc(TL);
4243}
4244void TypeLocReader::VisitDependentSizedArrayTypeLoc(
4245 DependentSizedArrayTypeLoc TL) {
4246 VisitArrayTypeLoc(TL);
4247}
4248void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
4249 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004250 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004251}
4252void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004253 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004254}
4255void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004256 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004257}
4258void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00004259 TL.setLocalRangeBegin(ReadSourceLocation(Record, Idx));
4260 TL.setLocalRangeEnd(ReadSourceLocation(Record, Idx));
Douglas Gregordab60ad2010-10-01 18:44:50 +00004261 TL.setTrailingReturn(Record[Idx++]);
John McCall51bd8032009-10-18 01:05:36 +00004262 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00004263 TL.setArg(i, ReadDeclAs<ParmVarDecl>(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004264 }
4265}
4266void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
4267 VisitFunctionTypeLoc(TL);
4268}
4269void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
4270 VisitFunctionTypeLoc(TL);
4271}
John McCalled976492009-12-04 22:46:56 +00004272void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004273 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalled976492009-12-04 22:46:56 +00004274}
John McCall51bd8032009-10-18 01:05:36 +00004275void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004276 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004277}
4278void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004279 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4280 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4281 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004282}
4283void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004284 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4285 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4286 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4287 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004288}
4289void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004290 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004291}
Sean Huntca63c202011-05-24 22:41:36 +00004292void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
4293 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4294 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4295 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4296 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
4297}
Richard Smith34b41d92011-02-20 03:19:35 +00004298void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
4299 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4300}
John McCall51bd8032009-10-18 01:05:36 +00004301void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004302 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004303}
4304void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004305 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004306}
John McCall9d156a72011-01-06 01:58:22 +00004307void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
4308 TL.setAttrNameLoc(ReadSourceLocation(Record, Idx));
4309 if (TL.hasAttrOperand()) {
4310 SourceRange range;
4311 range.setBegin(ReadSourceLocation(Record, Idx));
4312 range.setEnd(ReadSourceLocation(Record, Idx));
4313 TL.setAttrOperandParensRange(range);
4314 }
4315 if (TL.hasAttrExprOperand()) {
4316 if (Record[Idx++])
4317 TL.setAttrExprOperand(Reader.ReadExpr(F));
4318 else
4319 TL.setAttrExprOperand(0);
4320 } else if (TL.hasAttrEnumOperand())
4321 TL.setAttrEnumOperandLoc(ReadSourceLocation(Record, Idx));
4322}
John McCall51bd8032009-10-18 01:05:36 +00004323void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004324 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004325}
John McCall49a832b2009-10-18 09:09:24 +00004326void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
4327 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004328 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall49a832b2009-10-18 09:09:24 +00004329}
Douglas Gregorc3069d62011-01-14 02:55:32 +00004330void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
4331 SubstTemplateTypeParmPackTypeLoc TL) {
4332 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4333}
John McCall51bd8032009-10-18 01:05:36 +00004334void TypeLocReader::VisitTemplateSpecializationTypeLoc(
4335 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004336 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004337 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
4338 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4339 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall833ca992009-10-29 08:12:44 +00004340 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4341 TL.setArgLocInfo(i,
Sebastian Redlc3632732010-10-05 15:59:54 +00004342 Reader.GetTemplateArgumentLocInfo(F,
4343 TL.getTypePtr()->getArg(i).getKind(),
4344 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004345}
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004346void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
4347 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4348 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4349}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004350void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004351 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor9e876872011-03-01 18:12:44 +00004352 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004353}
John McCall3cb0ebd2010-03-10 03:28:59 +00004354void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004355 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall3cb0ebd2010-03-10 03:28:59 +00004356}
Douglas Gregor4714c122010-03-31 17:34:00 +00004357void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004358 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor2494dd02011-03-01 01:34:45 +00004359 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004360 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004361}
John McCall33500952010-06-11 00:33:02 +00004362void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
4363 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004364 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor94fdffa2011-03-01 20:11:18 +00004365 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Abramo Bagnara66581d42012-02-06 22:45:07 +00004366 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004367 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004368 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4369 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004370 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
4371 TL.setArgLocInfo(I,
Sebastian Redlc3632732010-10-05 15:59:54 +00004372 Reader.GetTemplateArgumentLocInfo(F,
4373 TL.getTypePtr()->getArg(I).getKind(),
4374 Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004375}
Douglas Gregor7536dd52010-12-20 02:24:11 +00004376void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
4377 TL.setEllipsisLoc(ReadSourceLocation(Record, Idx));
4378}
John McCall51bd8032009-10-18 01:05:36 +00004379void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004380 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallc12c5bb2010-05-15 11:32:37 +00004381}
4382void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
4383 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00004384 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4385 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004386 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00004387 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004388}
John McCall54e14c42009-10-22 22:37:11 +00004389void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004390 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall54e14c42009-10-22 22:37:11 +00004391}
Eli Friedmanb001de72011-10-06 23:00:33 +00004392void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
4393 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4394 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4395 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4396}
John McCalla1ee0c52009-10-16 21:56:05 +00004397
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004398TypeSourceInfo *ASTReader::GetTypeSourceInfo(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004399 const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00004400 unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004401 QualType InfoTy = readType(F, Record, Idx);
John McCalla1ee0c52009-10-16 21:56:05 +00004402 if (InfoTy.isNull())
4403 return 0;
4404
Douglas Gregor35942772011-09-09 21:34:22 +00004405 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
Sebastian Redlc3632732010-10-05 15:59:54 +00004406 TypeLocReader TLR(*this, F, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00004407 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00004408 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00004409 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00004410}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004411
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004412QualType ASTReader::GetType(TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00004413 unsigned FastQuals = ID & Qualifiers::FastMask;
4414 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004415
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004416 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004417 QualType T;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004418 switch ((PredefinedTypeIDs)Index) {
4419 case PREDEF_TYPE_NULL_ID: return QualType();
Douglas Gregor35942772011-09-09 21:34:22 +00004420 case PREDEF_TYPE_VOID_ID: T = Context.VoidTy; break;
4421 case PREDEF_TYPE_BOOL_ID: T = Context.BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004422
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004423 case PREDEF_TYPE_CHAR_U_ID:
4424 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregor2cf26342009-04-09 22:27:44 +00004425 // FIXME: Check that the signedness of CharTy is correct!
Douglas Gregor35942772011-09-09 21:34:22 +00004426 T = Context.CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004427 break;
4428
Douglas Gregor35942772011-09-09 21:34:22 +00004429 case PREDEF_TYPE_UCHAR_ID: T = Context.UnsignedCharTy; break;
4430 case PREDEF_TYPE_USHORT_ID: T = Context.UnsignedShortTy; break;
4431 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break;
4432 case PREDEF_TYPE_ULONG_ID: T = Context.UnsignedLongTy; break;
4433 case PREDEF_TYPE_ULONGLONG_ID: T = Context.UnsignedLongLongTy; break;
4434 case PREDEF_TYPE_UINT128_ID: T = Context.UnsignedInt128Ty; break;
4435 case PREDEF_TYPE_SCHAR_ID: T = Context.SignedCharTy; break;
4436 case PREDEF_TYPE_WCHAR_ID: T = Context.WCharTy; break;
4437 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break;
4438 case PREDEF_TYPE_INT_ID: T = Context.IntTy; break;
4439 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break;
4440 case PREDEF_TYPE_LONGLONG_ID: T = Context.LongLongTy; break;
4441 case PREDEF_TYPE_INT128_ID: T = Context.Int128Ty; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004442 case PREDEF_TYPE_HALF_ID: T = Context.HalfTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004443 case PREDEF_TYPE_FLOAT_ID: T = Context.FloatTy; break;
4444 case PREDEF_TYPE_DOUBLE_ID: T = Context.DoubleTy; break;
4445 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context.LongDoubleTy; break;
4446 case PREDEF_TYPE_OVERLOAD_ID: T = Context.OverloadTy; break;
4447 case PREDEF_TYPE_BOUND_MEMBER: T = Context.BoundMemberTy; break;
John McCall3c3b7f92011-10-25 17:37:35 +00004448 case PREDEF_TYPE_PSEUDO_OBJECT: T = Context.PseudoObjectTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004449 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break;
4450 case PREDEF_TYPE_UNKNOWN_ANY: T = Context.UnknownAnyTy; break;
4451 case PREDEF_TYPE_NULLPTR_ID: T = Context.NullPtrTy; break;
4452 case PREDEF_TYPE_CHAR16_ID: T = Context.Char16Ty; break;
4453 case PREDEF_TYPE_CHAR32_ID: T = Context.Char32Ty; break;
4454 case PREDEF_TYPE_OBJC_ID: T = Context.ObjCBuiltinIdTy; break;
4455 case PREDEF_TYPE_OBJC_CLASS: T = Context.ObjCBuiltinClassTy; break;
4456 case PREDEF_TYPE_OBJC_SEL: T = Context.ObjCBuiltinSelTy; break;
4457 case PREDEF_TYPE_AUTO_DEDUCT: T = Context.getAutoDeductType(); break;
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004458
4459 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00004460 T = Context.getAutoRRefDeductType();
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004461 break;
John McCall0ddaeb92011-10-17 18:09:15 +00004462
4463 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
4464 T = Context.ARCUnbridgedCastTy;
4465 break;
4466
Douglas Gregor2cf26342009-04-09 22:27:44 +00004467 }
4468
4469 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00004470 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004471 }
4472
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004473 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004474 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl07a353c2010-07-14 20:26:45 +00004475 if (TypesLoaded[Index].isNull()) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004476 TypesLoaded[Index] = readTypeRecord(Index);
Douglas Gregor97475832010-10-05 18:37:06 +00004477 if (TypesLoaded[Index].isNull())
4478 return QualType();
4479
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004480 TypesLoaded[Index]->setFromAST();
Sebastian Redl30c514c2010-07-14 23:45:08 +00004481 if (DeserializationListener)
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004482 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1476ed42010-07-16 16:36:56 +00004483 TypesLoaded[Index]);
Sebastian Redl07a353c2010-07-14 20:26:45 +00004484 }
Mike Stump1eb44332009-09-09 15:08:12 +00004485
John McCall0953e762009-09-24 19:53:00 +00004486 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004487}
4488
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004489QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004490 return GetType(getGlobalTypeID(F, LocalID));
4491}
4492
4493serialization::TypeID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004494ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregora119da02011-08-02 16:26:37 +00004495 unsigned FastQuals = LocalID & Qualifiers::FastMask;
4496 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
4497
4498 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
4499 return LocalID;
4500
4501 ContinuousRangeMap<uint32_t, int, 2>::iterator I
4502 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
4503 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
4504
4505 unsigned GlobalIndex = LocalIndex + I->second;
4506 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
4507}
4508
John McCall833ca992009-10-29 08:12:44 +00004509TemplateArgumentLocInfo
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004510ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00004511 TemplateArgument::ArgKind Kind,
John McCall833ca992009-10-29 08:12:44 +00004512 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004513 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00004514 switch (Kind) {
4515 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00004516 return ReadExpr(F);
John McCall833ca992009-10-29 08:12:44 +00004517 case TemplateArgument::Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00004518 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00004519 case TemplateArgument::Template: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004520 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4521 Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004522 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004523 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregora7fc9012011-01-05 18:58:31 +00004524 SourceLocation());
4525 }
4526 case TemplateArgument::TemplateExpansion: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004527 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4528 Index);
Douglas Gregora7fc9012011-01-05 18:58:31 +00004529 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorba68eca2011-01-05 17:40:24 +00004530 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004531 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregorba68eca2011-01-05 17:40:24 +00004532 EllipsisLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00004533 }
John McCall833ca992009-10-29 08:12:44 +00004534 case TemplateArgument::Null:
4535 case TemplateArgument::Integral:
4536 case TemplateArgument::Declaration:
4537 case TemplateArgument::Pack:
4538 return TemplateArgumentLocInfo();
4539 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00004540 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00004541}
4542
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004543TemplateArgumentLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004544ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004545 const RecordData &Record, unsigned &Index) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004546 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004547
4548 if (Arg.getKind() == TemplateArgument::Expression) {
4549 if (Record[Index++]) // bool InfoHasSameExpr.
4550 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
4551 }
Sebastian Redlc3632732010-10-05 15:59:54 +00004552 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004553 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004554}
4555
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004556Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall76bd1f32010-06-01 09:23:16 +00004557 return GetDecl(ID);
4558}
4559
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004560uint64_t ASTReader::readCXXBaseSpecifiers(ModuleFile &M, const RecordData &Record,
Douglas Gregore92b8a12011-08-04 00:01:48 +00004561 unsigned &Idx){
4562 if (Idx >= Record.size())
Douglas Gregor7c789c12010-10-29 22:39:52 +00004563 return 0;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004564
Douglas Gregore92b8a12011-08-04 00:01:48 +00004565 unsigned LocalID = Record[Idx++];
4566 return getGlobalBitOffset(M, M.CXXBaseSpecifiersOffsets[LocalID - 1]);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004567}
4568
4569CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004570 RecordLocation Loc = getLocalBitOffset(Offset);
4571 llvm::BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004572 SavedStreamPosition SavedPosition(Cursor);
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004573 Cursor.JumpToBit(Loc.Offset);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004574 ReadingKindTracker ReadingKind(Read_Decl, *this);
4575 RecordData Record;
4576 unsigned Code = Cursor.ReadCode();
4577 unsigned RecCode = Cursor.ReadRecord(Code, Record);
4578 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
4579 Error("Malformed AST file: missing C++ base specifiers");
4580 return 0;
4581 }
4582
4583 unsigned Idx = 0;
4584 unsigned NumBases = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00004585 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004586 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
4587 for (unsigned I = 0; I != NumBases; ++I)
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004588 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004589 return Bases;
4590}
4591
Douglas Gregor409448c2011-07-21 22:35:25 +00004592serialization::DeclID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004593ASTReader::getGlobalDeclID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004594 if (LocalID < NUM_PREDEF_DECL_IDS)
Douglas Gregor496c7092011-08-03 15:48:04 +00004595 return LocalID;
4596
4597 ContinuousRangeMap<uint32_t, int, 2>::iterator I
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004598 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
Douglas Gregor496c7092011-08-03 15:48:04 +00004599 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
4600
4601 return LocalID + I->second;
Douglas Gregor409448c2011-07-21 22:35:25 +00004602}
4603
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004604bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004605 ModuleFile &M) const {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004606 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(ID);
4607 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4608 return &M == I->second;
4609}
4610
Douglas Gregorcff9f262012-01-27 01:47:08 +00004611ModuleFile *ASTReader::getOwningModuleFile(Decl *D) {
4612 if (!D->isFromASTFile())
4613 return 0;
4614 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
4615 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4616 return I->second;
4617}
4618
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004619SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
4620 if (ID < NUM_PREDEF_DECL_IDS)
4621 return SourceLocation();
4622
4623 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4624
4625 if (Index > DeclsLoaded.size()) {
4626 Error("declaration ID out-of-range for AST file");
4627 return SourceLocation();
4628 }
4629
4630 if (Decl *D = DeclsLoaded[Index])
4631 return D->getLocation();
4632
4633 unsigned RawLocation = 0;
4634 RecordLocation Rec = DeclCursorForID(ID, RawLocation);
4635 return ReadSourceLocation(*Rec.F, RawLocation);
4636}
4637
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004638Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004639 if (ID < NUM_PREDEF_DECL_IDS) {
4640 switch ((PredefinedDeclIDs)ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004641 case PREDEF_DECL_NULL_ID:
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004642 return 0;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004643
4644 case PREDEF_DECL_TRANSLATION_UNIT_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004645 return Context.getTranslationUnitDecl();
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00004646
4647 case PREDEF_DECL_OBJC_ID_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004648 return Context.getObjCIdDecl();
Douglas Gregor79d67262011-08-12 05:59:41 +00004649
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004650 case PREDEF_DECL_OBJC_SEL_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004651 return Context.getObjCSelDecl();
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004652
Douglas Gregor79d67262011-08-12 05:59:41 +00004653 case PREDEF_DECL_OBJC_CLASS_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004654 return Context.getObjCClassDecl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004655
Douglas Gregora6ea10e2012-01-17 18:09:05 +00004656 case PREDEF_DECL_OBJC_PROTOCOL_ID:
4657 return Context.getObjCProtocolDecl();
4658
Douglas Gregor772eeae2011-08-12 06:49:56 +00004659 case PREDEF_DECL_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004660 return Context.getInt128Decl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004661
4662 case PREDEF_DECL_UNSIGNED_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004663 return Context.getUInt128Decl();
Douglas Gregore97179c2011-09-08 01:46:34 +00004664
4665 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004666 return Context.getObjCInstanceTypeDecl();
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004667 }
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004668 }
4669
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004670 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4671
Richard Smith2fbf3732011-12-20 04:39:57 +00004672 if (Index >= DeclsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004673 Error("declaration ID out-of-range for AST file");
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004674 }
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004675
Douglas Gregorfd002a72011-12-16 22:37:11 +00004676 if (!DeclsLoaded[Index]) {
Douglas Gregor496c7092011-08-03 15:48:04 +00004677 ReadDeclRecord(ID);
Sebastian Redl30c514c2010-07-14 23:45:08 +00004678 if (DeserializationListener)
4679 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
4680 }
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004681
4682 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00004683}
4684
Douglas Gregora1be2782011-12-17 23:38:30 +00004685DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
4686 DeclID GlobalID) {
4687 if (GlobalID < NUM_PREDEF_DECL_IDS)
4688 return GlobalID;
4689
4690 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
4691 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4692 ModuleFile *Owner = I->second;
4693
4694 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
4695 = M.GlobalToLocalDeclIDs.find(Owner);
4696 if (Pos == M.GlobalToLocalDeclIDs.end())
4697 return 0;
4698
4699 return GlobalID - Owner->BaseDeclID + Pos->second;
4700}
4701
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004702serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00004703 const RecordData &Record,
4704 unsigned &Idx) {
4705 if (Idx >= Record.size()) {
4706 Error("Corrupted AST file");
4707 return 0;
4708 }
4709
4710 return getGlobalDeclID(F, Record[Idx++]);
4711}
4712
Chris Lattner887e2b32009-04-27 05:46:25 +00004713/// \brief Resolve the offset of a statement into a statement.
4714///
4715/// This operation will read a new statement from the external
4716/// source each time it is called, and is meant to be used via a
4717/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004718Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00004719 // Switch case IDs are per Decl.
4720 ClearSwitchCaseIDs();
4721
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00004722 // Offset here is a global offset across the entire chain.
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004723 RecordLocation Loc = getLocalBitOffset(Offset);
4724 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
4725 return ReadStmtFromStream(*Loc.F);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00004726}
4727
Douglas Gregor851c75a2011-08-24 21:27:34 +00004728namespace {
4729 class FindExternalLexicalDeclsVisitor {
4730 ASTReader &Reader;
4731 const DeclContext *DC;
4732 bool (*isKindWeWant)(Decl::Kind);
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004733
Douglas Gregor851c75a2011-08-24 21:27:34 +00004734 SmallVectorImpl<Decl*> &Decls;
4735 bool PredefsVisited[NUM_PREDEF_DECL_IDS];
4736
4737 public:
4738 FindExternalLexicalDeclsVisitor(ASTReader &Reader, const DeclContext *DC,
4739 bool (*isKindWeWant)(Decl::Kind),
4740 SmallVectorImpl<Decl*> &Decls)
4741 : Reader(Reader), DC(DC), isKindWeWant(isKindWeWant), Decls(Decls)
4742 {
4743 for (unsigned I = 0; I != NUM_PREDEF_DECL_IDS; ++I)
4744 PredefsVisited[I] = false;
4745 }
4746
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004747 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
Douglas Gregor851c75a2011-08-24 21:27:34 +00004748 if (Preorder)
4749 return false;
4750
4751 FindExternalLexicalDeclsVisitor *This
4752 = static_cast<FindExternalLexicalDeclsVisitor *>(UserData);
4753
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004754 ModuleFile::DeclContextInfosMap::iterator Info
Douglas Gregor851c75a2011-08-24 21:27:34 +00004755 = M.DeclContextInfos.find(This->DC);
4756 if (Info == M.DeclContextInfos.end() || !Info->second.LexicalDecls)
4757 return false;
4758
4759 // Load all of the declaration IDs
4760 for (const KindDeclIDPair *ID = Info->second.LexicalDecls,
4761 *IDE = ID + Info->second.NumLexicalDecls;
4762 ID != IDE; ++ID) {
4763 if (This->isKindWeWant && !This->isKindWeWant((Decl::Kind)ID->first))
4764 continue;
4765
4766 // Don't add predefined declarations to the lexical context more
4767 // than once.
4768 if (ID->second < NUM_PREDEF_DECL_IDS) {
4769 if (This->PredefsVisited[ID->second])
4770 continue;
4771
4772 This->PredefsVisited[ID->second] = true;
4773 }
4774
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004775 if (Decl *D = This->Reader.GetLocalDecl(M, ID->second)) {
4776 if (!This->DC->isDeclInLexicalTraversal(D))
4777 This->Decls.push_back(D);
4778 }
Douglas Gregor851c75a2011-08-24 21:27:34 +00004779 }
4780
4781 return false;
4782 }
4783 };
4784}
4785
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004786ExternalLoadResult ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00004787 bool (*isKindWeWant)(Decl::Kind),
Chris Lattner5f9e2722011-07-23 10:55:15 +00004788 SmallVectorImpl<Decl*> &Decls) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004789 // There might be lexical decls in multiple modules, for the TU at
Douglas Gregor851c75a2011-08-24 21:27:34 +00004790 // least. Walk all of the modules in the order they were loaded.
4791 FindExternalLexicalDeclsVisitor Visitor(*this, DC, isKindWeWant, Decls);
4792 ModuleMgr.visitDepthFirst(&FindExternalLexicalDeclsVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00004793 ++NumLexicalDeclContextsRead;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004794 return ELR_Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004795}
4796
Douglas Gregor0d95f772011-08-24 19:03:07 +00004797namespace {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004798
4799class DeclIDComp {
4800 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004801 ModuleFile &Mod;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004802
4803public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004804 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004805
4806 bool operator()(LocalDeclID L, LocalDeclID R) const {
4807 SourceLocation LHS = getLocation(L);
4808 SourceLocation RHS = getLocation(R);
4809 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4810 }
4811
4812 bool operator()(SourceLocation LHS, LocalDeclID R) const {
4813 SourceLocation RHS = getLocation(R);
4814 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4815 }
4816
4817 bool operator()(LocalDeclID L, SourceLocation RHS) const {
4818 SourceLocation LHS = getLocation(L);
4819 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4820 }
4821
4822 SourceLocation getLocation(LocalDeclID ID) const {
4823 return Reader.getSourceManager().getFileLoc(
4824 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
4825 }
4826};
4827
4828}
4829
4830void ASTReader::FindFileRegionDecls(FileID File,
4831 unsigned Offset, unsigned Length,
4832 SmallVectorImpl<Decl *> &Decls) {
4833 SourceManager &SM = getSourceManager();
4834
4835 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
4836 if (I == FileDeclIDs.end())
4837 return;
4838
4839 FileDeclsInfo &DInfo = I->second;
4840 if (DInfo.Decls.empty())
4841 return;
4842
4843 SourceLocation
4844 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
4845 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
4846
4847 DeclIDComp DIDComp(*this, *DInfo.Mod);
4848 ArrayRef<serialization::LocalDeclID>::iterator
4849 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4850 BeginLoc, DIDComp);
4851 if (BeginIt != DInfo.Decls.begin())
4852 --BeginIt;
4853
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00004854 // If we are pointing at a top-level decl inside an objc container, we need
4855 // to backtrack until we find it otherwise we will fail to report that the
4856 // region overlaps with an objc container.
4857 while (BeginIt != DInfo.Decls.begin() &&
4858 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
4859 ->isTopLevelDeclInObjCContainer())
4860 --BeginIt;
4861
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004862 ArrayRef<serialization::LocalDeclID>::iterator
4863 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4864 EndLoc, DIDComp);
4865 if (EndIt != DInfo.Decls.end())
4866 ++EndIt;
4867
4868 for (ArrayRef<serialization::LocalDeclID>::iterator
4869 DIt = BeginIt; DIt != EndIt; ++DIt)
4870 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
4871}
4872
4873namespace {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004874 /// \brief ModuleFile visitor used to perform name lookup into a
Douglas Gregor0d95f772011-08-24 19:03:07 +00004875 /// declaration context.
4876 class DeclContextNameLookupVisitor {
4877 ASTReader &Reader;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004878 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Douglas Gregor0d95f772011-08-24 19:03:07 +00004879 const DeclContext *DC;
4880 DeclarationName Name;
4881 SmallVectorImpl<NamedDecl *> &Decls;
4882
4883 public:
4884 DeclContextNameLookupVisitor(ASTReader &Reader,
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004885 SmallVectorImpl<const DeclContext *> &Contexts,
4886 DeclarationName Name,
Douglas Gregor0d95f772011-08-24 19:03:07 +00004887 SmallVectorImpl<NamedDecl *> &Decls)
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004888 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls) { }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004889
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004890 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004891 DeclContextNameLookupVisitor *This
4892 = static_cast<DeclContextNameLookupVisitor *>(UserData);
4893
4894 // Check whether we have any visible declaration information for
4895 // this context in this module.
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004896 ModuleFile::DeclContextInfosMap::iterator Info;
4897 bool FoundInfo = false;
4898 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
4899 Info = M.DeclContextInfos.find(This->Contexts[I]);
4900 if (Info != M.DeclContextInfos.end() &&
4901 Info->second.NameLookupTableData) {
4902 FoundInfo = true;
4903 break;
4904 }
4905 }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004906
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004907 if (!FoundInfo)
4908 return false;
4909
Douglas Gregor0d95f772011-08-24 19:03:07 +00004910 // Look for this name within this module.
4911 ASTDeclContextNameLookupTable *LookupTable =
4912 (ASTDeclContextNameLookupTable*)Info->second.NameLookupTableData;
4913 ASTDeclContextNameLookupTable::iterator Pos
4914 = LookupTable->find(This->Name);
4915 if (Pos == LookupTable->end())
4916 return false;
4917
4918 bool FoundAnything = false;
4919 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
4920 for (; Data.first != Data.second; ++Data.first) {
4921 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M, *Data.first);
4922 if (!ND)
4923 continue;
4924
4925 if (ND->getDeclName() != This->Name) {
4926 assert(!This->Name.getCXXNameType().isNull() &&
4927 "Name mismatch without a type");
4928 continue;
4929 }
4930
4931 // Record this declaration.
4932 FoundAnything = true;
4933 This->Decls.push_back(ND);
4934 }
4935
4936 return FoundAnything;
4937 }
4938 };
4939}
4940
John McCall76bd1f32010-06-01 09:23:16 +00004941DeclContext::lookup_result
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004942ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +00004943 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00004944 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00004945 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00004946 if (!Name)
4947 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
4948 DeclContext::lookup_iterator(0));
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004949
Chris Lattner5f9e2722011-07-23 10:55:15 +00004950 SmallVector<NamedDecl *, 64> Decls;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004951
4952 // Compute the declaration contexts we need to look into. Multiple such
4953 // declaration contexts occur when two declaration contexts from disjoint
4954 // modules get merged, e.g., when two namespaces with the same name are
4955 // independently defined in separate modules.
4956 SmallVector<const DeclContext *, 2> Contexts;
4957 Contexts.push_back(DC);
4958
4959 if (DC->isNamespace()) {
4960 MergedDeclsMap::iterator Merged
4961 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
4962 if (Merged != MergedDecls.end()) {
4963 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
4964 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
4965 }
4966 }
4967
4968 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls);
Douglas Gregor0d95f772011-08-24 19:03:07 +00004969 ModuleMgr.visit(&DeclContextNameLookupVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00004970 ++NumVisibleDeclContextsRead;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00004971 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall76bd1f32010-06-01 09:23:16 +00004972 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004973}
4974
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00004975namespace {
4976 /// \brief ModuleFile visitor used to complete the visible decls map of a
4977 /// declaration context.
4978 class DeclContextVisibleDeclMapVisitor {
4979 ASTReader &Reader;
4980 DeclContext *DC;
4981
4982 public:
4983 DeclContextVisibleDeclMapVisitor(ASTReader &Reader, DeclContext *DC)
4984 : Reader(Reader), DC(DC) { }
4985
4986 static bool visit(ModuleFile &M, void *UserData) {
4987 return static_cast<DeclContextVisibleDeclMapVisitor*>(UserData)->visit(M);
4988 }
4989
4990 bool visit(ModuleFile &M) {
4991 // Check whether we have any visible declaration information for
4992 // this context in this module.
4993 ModuleFile::DeclContextInfosMap::iterator
4994 Info = M.DeclContextInfos.find(DC);
4995 if (Info == M.DeclContextInfos.end() ||
4996 !Info->second.NameLookupTableData)
4997 return false;
4998
4999 // Look for this name within this module.
5000 ASTDeclContextNameLookupTable *LookupTable =
5001 (ASTDeclContextNameLookupTable*)Info->second.NameLookupTableData;
5002 for (ASTDeclContextNameLookupTable::key_iterator
5003 I = LookupTable->key_begin(),
5004 E = LookupTable->key_end(); I != E; ++I) {
5005 DC->lookup(*I); // Force loading of the visible decls for the decl name.
5006 }
5007
5008 return false;
5009 }
5010 };
5011}
5012
5013void ASTReader::completeVisibleDeclsMap(DeclContext *DC) {
5014 if (!DC->hasExternalVisibleStorage())
5015 return;
5016 DeclContextVisibleDeclMapVisitor Visitor(*this, DC);
5017 ModuleMgr.visit(&DeclContextVisibleDeclMapVisitor::visit, &Visitor);
5018}
5019
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005020/// \brief Under non-PCH compilation the consumer receives the objc methods
5021/// before receiving the implementation, and codegen depends on this.
5022/// We simulate this by deserializing and passing to consumer the methods of the
5023/// implementation before passing the deserialized implementation decl.
5024static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
5025 ASTConsumer *Consumer) {
5026 assert(ImplD && Consumer);
5027
5028 for (ObjCImplDecl::method_iterator
5029 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I)
5030 Consumer->HandleInterestingDecl(DeclGroupRef(*I));
5031
5032 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
5033}
5034
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005035void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005036 assert(Consumer);
5037 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005038 Decl *D = InterestingDecls.front();
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005039 InterestingDecls.pop_front();
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005040
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005041 PassInterestingDeclToConsumer(D);
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005042 }
5043}
5044
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005045void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
5046 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5047 PassObjCImplDeclToConsumer(ImplD, Consumer);
5048 else
5049 Consumer->HandleInterestingDecl(DeclGroupRef(D));
5050}
5051
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005052void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00005053 this->Consumer = Consumer;
5054
Douglas Gregorfdd01722009-04-14 00:24:19 +00005055 if (!Consumer)
5056 return;
5057
5058 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005059 // Force deserialization of this decl, which will cause it to be queued for
5060 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00005061 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00005062 }
Douglas Gregor1a995dd2011-09-15 18:47:32 +00005063 ExternalDefinitions.clear();
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00005064
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005065 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00005066}
5067
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005068void ASTReader::PrintStats() {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005069 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005070
Mike Stump1eb44332009-09-09 15:08:12 +00005071 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005072 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00005073 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005074 unsigned NumDeclsLoaded
5075 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
5076 (Decl *)0);
5077 unsigned NumIdentifiersLoaded
5078 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
5079 IdentifiersLoaded.end(),
5080 (IdentifierInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00005081 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005082 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
5083 SelectorsLoaded.end(),
5084 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00005085
Douglas Gregor4fed3f42009-04-27 18:38:38 +00005086 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
5087 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor0cdd7982011-07-21 18:46:38 +00005088 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005089 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
5090 NumSLocEntriesRead, TotalNumSLocEntries,
5091 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005092 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005093 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005094 NumTypesLoaded, (unsigned)TypesLoaded.size(),
5095 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
5096 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005097 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005098 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
5099 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005100 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005101 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005102 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
5103 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Sebastian Redl725cd962010-08-04 20:40:17 +00005104 if (!SelectorsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005105 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redl725cd962010-08-04 20:40:17 +00005106 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
5107 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00005108 if (TotalNumStatements)
5109 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
5110 NumStatementsRead, TotalNumStatements,
5111 ((float)NumStatementsRead/TotalNumStatements * 100));
5112 if (TotalNumMacros)
5113 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5114 NumMacrosRead, TotalNumMacros,
5115 ((float)NumMacrosRead/TotalNumMacros * 100));
5116 if (TotalLexicalDeclContexts)
5117 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
5118 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
5119 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
5120 * 100));
5121 if (TotalVisibleDeclContexts)
5122 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
5123 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
5124 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
5125 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005126 if (TotalNumMethodPoolEntries) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005127 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005128 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
5129 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor83941df2009-04-25 17:48:32 +00005130 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005131 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor83941df2009-04-25 17:48:32 +00005132 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00005133 std::fprintf(stderr, "\n");
Douglas Gregor23d7df52011-07-21 19:50:14 +00005134 dump();
5135 std::fprintf(stderr, "\n");
5136}
5137
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005138template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Douglas Gregor23d7df52011-07-21 19:50:14 +00005139static void
Chris Lattner5f9e2722011-07-23 10:55:15 +00005140dumpModuleIDMap(StringRef Name,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005141 const ContinuousRangeMap<Key, ModuleFile *,
Douglas Gregor23d7df52011-07-21 19:50:14 +00005142 InitialCapacity> &Map) {
5143 if (Map.begin() == Map.end())
5144 return;
5145
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005146 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType;
Douglas Gregor23d7df52011-07-21 19:50:14 +00005147 llvm::errs() << Name << ":\n";
5148 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
5149 I != IEnd; ++I) {
5150 llvm::errs() << " " << I->first << " -> " << I->second->FileName
5151 << "\n";
5152 }
5153}
5154
Douglas Gregor23d7df52011-07-21 19:50:14 +00005155void ASTReader::dump() {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005156 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005157 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
Douglas Gregor23d7df52011-07-21 19:50:14 +00005158 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
Douglas Gregor1e849b62011-07-29 00:21:44 +00005159 dumpModuleIDMap("Global type map", GlobalTypeMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005160 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005161 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
Douglas Gregor26ced122011-12-01 00:59:36 +00005162 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005163 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005164 dumpModuleIDMap("Global preprocessed entity map",
5165 GlobalPreprocessedEntityMap);
Douglas Gregor8df5c9b2011-08-02 11:12:41 +00005166
5167 llvm::errs() << "\n*** PCH/Modules Loaded:";
5168 for (ModuleManager::ModuleConstIterator M = ModuleMgr.begin(),
5169 MEnd = ModuleMgr.end();
5170 M != MEnd; ++M)
5171 (*M)->dump();
Douglas Gregor2cf26342009-04-09 22:27:44 +00005172}
5173
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005174/// Return the amount of memory used by memory buffers, breaking down
5175/// by heap-backed versus mmap'ed memory.
5176void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005177 for (ModuleConstIterator I = ModuleMgr.begin(),
5178 E = ModuleMgr.end(); I != E; ++I) {
5179 if (llvm::MemoryBuffer *buf = (*I)->Buffer.get()) {
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005180 size_t bytes = buf->getBufferSize();
5181 switch (buf->getBufferKind()) {
5182 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
5183 sizes.malloc_bytes += bytes;
5184 break;
5185 case llvm::MemoryBuffer::MemoryBuffer_MMap:
5186 sizes.mmap_bytes += bytes;
5187 break;
5188 }
5189 }
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005190 }
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005191}
5192
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005193void ASTReader::InitializeSema(Sema &S) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005194 SemaObj = &S;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005195 S.ExternalSource = this;
5196
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005197 // Makes sure any declarations that were deserialized "too early"
5198 // still get added to the identifier's declaration chains.
Douglas Gregor76dc8892010-09-24 23:29:12 +00005199 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005200 SemaObj->pushExternalDeclIntoScope(PreloadedDecls[I],
5201 PreloadedDecls[I]->getDeclName());
Douglas Gregor668c1a42009-04-21 22:25:48 +00005202 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005203 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00005204
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005205 // Load the offsets of the declarations that Sema references.
5206 // They will be lazily deserialized when needed.
5207 if (!SemaDeclRefs.empty()) {
5208 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
Douglas Gregor1e5b6f62011-07-28 00:57:24 +00005209 if (!SemaObj->StdNamespace)
5210 SemaObj->StdNamespace = SemaDeclRefs[0];
5211 if (!SemaObj->StdBadAlloc)
5212 SemaObj->StdBadAlloc = SemaDeclRefs[1];
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005213 }
5214
Peter Collingbourne84bccea2011-02-15 19:46:30 +00005215 if (!FPPragmaOptions.empty()) {
5216 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
5217 SemaObj->FPFeatures.fp_contract = FPPragmaOptions[0];
5218 }
5219
5220 if (!OpenCLExtensions.empty()) {
5221 unsigned I = 0;
5222#define OPENCLEXT(nm) SemaObj->OpenCLFeatures.nm = OpenCLExtensions[I++];
5223#include "clang/Basic/OpenCLExtensions.def"
5224
5225 assert(OpenCLExtensions.size() == I && "Wrong number of OPENCL_EXTENSIONS");
5226 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00005227}
5228
Douglas Gregor211f6e82011-08-20 04:39:52 +00005229IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Douglas Gregor057df202012-01-18 20:56:22 +00005230 IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart),
5231 /*PriorGeneration=*/0);
Douglas Gregor211f6e82011-08-20 04:39:52 +00005232 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005233 IdentifierInfo *II = Visitor.getIdentifierInfo();
Douglas Gregor057df202012-01-18 20:56:22 +00005234 markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005235 return II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00005236}
5237
Douglas Gregor95f42922010-10-14 22:11:03 +00005238namespace clang {
5239 /// \brief An identifier-lookup iterator that enumerates all of the
5240 /// identifiers stored within a set of AST files.
5241 class ASTIdentifierIterator : public IdentifierIterator {
5242 /// \brief The AST reader whose identifiers are being enumerated.
5243 const ASTReader &Reader;
5244
5245 /// \brief The current index into the chain of AST files stored in
5246 /// the AST reader.
5247 unsigned Index;
5248
5249 /// \brief The current position within the identifier lookup table
5250 /// of the current AST file.
5251 ASTIdentifierLookupTable::key_iterator Current;
5252
5253 /// \brief The end position within the identifier lookup table of
5254 /// the current AST file.
5255 ASTIdentifierLookupTable::key_iterator End;
5256
5257 public:
5258 explicit ASTIdentifierIterator(const ASTReader &Reader);
5259
Chris Lattner5f9e2722011-07-23 10:55:15 +00005260 virtual StringRef Next();
Douglas Gregor95f42922010-10-14 22:11:03 +00005261 };
5262}
5263
5264ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005265 : Reader(Reader), Index(Reader.ModuleMgr.size() - 1) {
Douglas Gregor95f42922010-10-14 22:11:03 +00005266 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005267 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005268 Current = IdTable->key_begin();
5269 End = IdTable->key_end();
5270}
5271
Chris Lattner5f9e2722011-07-23 10:55:15 +00005272StringRef ASTIdentifierIterator::Next() {
Douglas Gregor95f42922010-10-14 22:11:03 +00005273 while (Current == End) {
5274 // If we have exhausted all of our AST files, we're done.
5275 if (Index == 0)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005276 return StringRef();
Douglas Gregor95f42922010-10-14 22:11:03 +00005277
5278 --Index;
5279 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005280 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].
5281 IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005282 Current = IdTable->key_begin();
5283 End = IdTable->key_end();
5284 }
5285
5286 // We have any identifiers remaining in the current AST file; return
5287 // the next one.
5288 std::pair<const char*, unsigned> Key = *Current;
5289 ++Current;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005290 return StringRef(Key.first, Key.second);
Douglas Gregor95f42922010-10-14 22:11:03 +00005291}
5292
5293IdentifierIterator *ASTReader::getIdentifiers() const {
5294 return new ASTIdentifierIterator(*this);
5295}
5296
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005297namespace clang { namespace serialization {
5298 class ReadMethodPoolVisitor {
5299 ASTReader &Reader;
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005300 Selector Sel;
5301 unsigned PriorGeneration;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005302 llvm::SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
5303 llvm::SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005304
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005305 public:
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005306 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
5307 unsigned PriorGeneration)
5308 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) { }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005309
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005310 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005311 ReadMethodPoolVisitor *This
5312 = static_cast<ReadMethodPoolVisitor *>(UserData);
5313
5314 if (!M.SelectorLookupTable)
5315 return false;
5316
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005317 // If we've already searched this module file, skip it now.
5318 if (M.Generation <= This->PriorGeneration)
5319 return true;
5320
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005321 ASTSelectorLookupTable *PoolTable
5322 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
5323 ASTSelectorLookupTable::iterator Pos = PoolTable->find(This->Sel);
5324 if (Pos == PoolTable->end())
5325 return false;
5326
5327 ++This->Reader.NumSelectorsRead;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005328 // FIXME: Not quite happy with the statistics here. We probably should
5329 // disable this tracking when called via LoadSelector.
5330 // Also, should entries without methods count as misses?
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005331 ++This->Reader.NumMethodPoolEntriesRead;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005332 ASTSelectorLookupTrait::data_type Data = *Pos;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005333 if (This->Reader.DeserializationListener)
5334 This->Reader.DeserializationListener->SelectorRead(Data.ID,
5335 This->Sel);
5336
5337 This->InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
5338 This->FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
5339 return true;
Sebastian Redl725cd962010-08-04 20:40:17 +00005340 }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005341
5342 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005343 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
5344 return InstanceMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005345 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005346
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005347 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005348 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
5349 return FactoryMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005350 }
5351 };
5352} } // end namespace clang::serialization
5353
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005354/// \brief Add the given set of methods to the method list.
5355static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
5356 ObjCMethodList &List) {
5357 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
5358 S.addMethodToGlobalList(&List, Methods[I]);
5359 }
5360}
5361
5362void ASTReader::ReadMethodPool(Selector Sel) {
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005363 // Get the selector generation and update it to the current generation.
5364 unsigned &Generation = SelectorGeneration[Sel];
5365 unsigned PriorGeneration = Generation;
5366 Generation = CurrentGeneration;
5367
5368 // Search for methods defined with this selector.
5369 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005370 ModuleMgr.visit(&ReadMethodPoolVisitor::visit, &Visitor);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005371
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005372 if (Visitor.getInstanceMethods().empty() &&
5373 Visitor.getFactoryMethods().empty()) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005374 ++NumMethodPoolMisses;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005375 return;
5376 }
5377
5378 if (!getSema())
5379 return;
5380
5381 Sema &S = *getSema();
5382 Sema::GlobalMethodPool::iterator Pos
5383 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
5384
5385 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
5386 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005387}
5388
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005389void ASTReader::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00005390 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005391 Namespaces.clear();
5392
5393 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
5394 if (NamespaceDecl *Namespace
5395 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
5396 Namespaces.push_back(Namespace);
5397 }
5398}
5399
Douglas Gregora8623202011-07-27 20:58:46 +00005400void ASTReader::ReadTentativeDefinitions(
5401 SmallVectorImpl<VarDecl *> &TentativeDefs) {
5402 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
5403 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
5404 if (Var)
5405 TentativeDefs.push_back(Var);
5406 }
5407 TentativeDefinitions.clear();
5408}
5409
Douglas Gregora2ee20a2011-07-27 21:45:57 +00005410void ASTReader::ReadUnusedFileScopedDecls(
5411 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
5412 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
5413 DeclaratorDecl *D
5414 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
5415 if (D)
5416 Decls.push_back(D);
5417 }
5418 UnusedFileScopedDecls.clear();
5419}
5420
Douglas Gregor0129b562011-07-27 21:57:17 +00005421void ASTReader::ReadDelegatingConstructors(
5422 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
5423 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
5424 CXXConstructorDecl *D
5425 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
5426 if (D)
5427 Decls.push_back(D);
5428 }
5429 DelegatingCtorDecls.clear();
5430}
5431
Douglas Gregord58a0a52011-07-28 00:39:29 +00005432void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
5433 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
5434 TypedefNameDecl *D
5435 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
5436 if (D)
5437 Decls.push_back(D);
5438 }
5439 ExtVectorDecls.clear();
5440}
5441
Douglas Gregora126f172011-07-28 00:53:40 +00005442void ASTReader::ReadDynamicClasses(SmallVectorImpl<CXXRecordDecl *> &Decls) {
5443 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
5444 CXXRecordDecl *D
5445 = dyn_cast_or_null<CXXRecordDecl>(GetDecl(DynamicClasses[I]));
5446 if (D)
5447 Decls.push_back(D);
5448 }
5449 DynamicClasses.clear();
5450}
5451
Douglas Gregorec12ce22011-07-28 14:20:37 +00005452void
5453ASTReader::ReadLocallyScopedExternalDecls(SmallVectorImpl<NamedDecl *> &Decls) {
5454 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
5455 NamedDecl *D
5456 = dyn_cast_or_null<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
5457 if (D)
5458 Decls.push_back(D);
5459 }
5460 LocallyScopedExternalDecls.clear();
5461}
5462
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00005463void ASTReader::ReadReferencedSelectors(
5464 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {
5465 if (ReferencedSelectorsData.empty())
5466 return;
5467
5468 // If there are @selector references added them to its pool. This is for
5469 // implementation of -Wselector.
5470 unsigned int DataSize = ReferencedSelectorsData.size()-1;
5471 unsigned I = 0;
5472 while (I < DataSize) {
5473 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
5474 SourceLocation SelLoc
5475 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
5476 Sels.push_back(std::make_pair(Sel, SelLoc));
5477 }
5478 ReferencedSelectorsData.clear();
5479}
5480
Douglas Gregor31e37b22011-07-28 18:09:57 +00005481void ASTReader::ReadWeakUndeclaredIdentifiers(
5482 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WeakIDs) {
5483 if (WeakUndeclaredIdentifiers.empty())
5484 return;
5485
5486 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
5487 IdentifierInfo *WeakId
5488 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5489 IdentifierInfo *AliasId
5490 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5491 SourceLocation Loc
5492 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
5493 bool Used = WeakUndeclaredIdentifiers[I++];
5494 WeakInfo WI(AliasId, Loc);
5495 WI.setUsed(Used);
5496 WeakIDs.push_back(std::make_pair(WeakId, WI));
5497 }
5498 WeakUndeclaredIdentifiers.clear();
5499}
5500
Douglas Gregordfe65432011-07-28 19:11:31 +00005501void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
5502 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
5503 ExternalVTableUse VT;
5504 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
5505 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
5506 VT.DefinitionRequired = VTableUses[Idx++];
5507 VTables.push_back(VT);
5508 }
5509
5510 VTableUses.clear();
5511}
5512
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00005513void ASTReader::ReadPendingInstantiations(
5514 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation> > &Pending) {
5515 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
5516 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
5517 SourceLocation Loc
5518 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
5519 Pending.push_back(std::make_pair(D, Loc));
5520 }
5521 PendingInstantiations.clear();
5522}
5523
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005524void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redle58aa892010-08-04 18:21:41 +00005525 // It would be complicated to avoid reading the methods anyway. So don't.
5526 ReadMethodPool(Sel);
5527}
5528
Douglas Gregor95eab172011-07-28 20:55:49 +00005529void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005530 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00005531 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005532 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005533 if (DeserializationListener)
5534 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregor668c1a42009-04-21 22:25:48 +00005535}
5536
Douglas Gregord89275b2009-07-06 18:54:52 +00005537/// \brief Set the globally-visible declarations associated with the given
5538/// identifier.
5539///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005540/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00005541/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00005542/// them.
5543///
5544/// \param II an IdentifierInfo that refers to one or more globally-visible
5545/// declarations.
5546///
5547/// \param DeclIDs the set of declaration IDs with the name @p II that are
5548/// visible at global scope.
5549///
5550/// \param Nonrecursive should be true to indicate that the caller knows that
5551/// this call is non-recursive, and therefore the globally-visible declarations
5552/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00005553void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005554ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Chris Lattner5f9e2722011-07-23 10:55:15 +00005555 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregord89275b2009-07-06 18:54:52 +00005556 bool Nonrecursive) {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00005557 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregord89275b2009-07-06 18:54:52 +00005558 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
5559 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
5560 PII.II = II;
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00005561 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregord89275b2009-07-06 18:54:52 +00005562 return;
5563 }
Mike Stump1eb44332009-09-09 15:08:12 +00005564
Douglas Gregord89275b2009-07-06 18:54:52 +00005565 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
5566 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
5567 if (SemaObj) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005568 // Introduce this declaration into the translation-unit scope
5569 // and add it to the declaration chain for this identifier, so
5570 // that (unqualified) name lookup will find it.
5571 SemaObj->pushExternalDeclIntoScope(D, II);
Douglas Gregord89275b2009-07-06 18:54:52 +00005572 } else {
5573 // Queue this declaration so that it will be added to the
5574 // translation unit scope and identifier's declaration chain
5575 // once a Sema object is known.
5576 PreloadedDecls.push_back(D);
5577 }
5578 }
5579}
5580
Douglas Gregor95eab172011-07-28 20:55:49 +00005581IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00005582 if (ID == 0)
5583 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00005584
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005585 if (IdentifiersLoaded.empty()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005586 Error("no identifier table in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00005587 return 0;
5588 }
Mike Stump1eb44332009-09-09 15:08:12 +00005589
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005590 ID -= 1;
5591 if (!IdentifiersLoaded[ID]) {
Douglas Gregor67268d02011-07-20 00:59:32 +00005592 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
5593 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005594 ModuleFile *M = I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005595 unsigned Index = ID - M->BaseIdentifierID;
5596 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
Douglas Gregord6595a42009-04-25 21:04:17 +00005597
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005598 // All of the strings in the AST file are preceded by a 16-bit length.
5599 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00005600 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
5601 // unsigned integers. This is important to avoid integer overflow when
5602 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00005603 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00005604 unsigned StrLen = (((unsigned) StrLenPtr[0])
5605 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005606 IdentifiersLoaded[ID]
Douglas Gregor712f2fc2011-09-09 22:02:16 +00005607 = &PP.getIdentifierTable().get(StringRef(Str, StrLen));
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005608 if (DeserializationListener)
5609 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregorafaf3082009-04-11 00:14:32 +00005610 }
Mike Stump1eb44332009-09-09 15:08:12 +00005611
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005612 return IdentifiersLoaded[ID];
Douglas Gregor2cf26342009-04-09 22:27:44 +00005613}
5614
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005615IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
Douglas Gregor95eab172011-07-28 20:55:49 +00005616 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
5617}
5618
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005619IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +00005620 if (LocalID < NUM_PREDEF_IDENT_IDS)
5621 return LocalID;
5622
5623 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5624 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
5625 assert(I != M.IdentifierRemap.end()
5626 && "Invalid index into identifier index remap");
5627
5628 return LocalID + I->second;
Douglas Gregor95eab172011-07-28 20:55:49 +00005629}
5630
Douglas Gregorf62d43d2011-07-19 16:10:42 +00005631bool ASTReader::ReadSLocEntry(int ID) {
Douglas Gregore23ac652011-04-20 00:21:03 +00005632 return ReadSLocEntryRecord(ID) != Success;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005633}
5634
Douglas Gregor26ced122011-12-01 00:59:36 +00005635serialization::SubmoduleID
5636ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
5637 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
5638 return LocalID;
5639
5640 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5641 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
5642 assert(I != M.SubmoduleRemap.end()
5643 && "Invalid index into identifier index remap");
5644
5645 return LocalID + I->second;
5646}
5647
5648Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
5649 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
5650 assert(GlobalID == 0 && "Unhandled global submodule ID");
5651 return 0;
5652 }
5653
5654 if (GlobalID > SubmodulesLoaded.size()) {
5655 Error("submodule ID out of range in AST file");
5656 return 0;
5657 }
5658
5659 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
5660}
5661
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005662Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005663 return DecodeSelector(getGlobalSelectorID(M, LocalID));
5664}
5665
5666Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005667 if (ID == 0)
5668 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00005669
Sebastian Redl725cd962010-08-04 20:40:17 +00005670 if (ID > SelectorsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005671 Error("selector ID out of range in AST file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005672 return Selector();
5673 }
Douglas Gregor83941df2009-04-25 17:48:32 +00005674
Sebastian Redl725cd962010-08-04 20:40:17 +00005675 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005676 // Load this selector from the selector table.
Douglas Gregor96958cb2011-07-20 01:10:58 +00005677 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
5678 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005679 ModuleFile &M = *I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005680 ASTSelectorLookupTrait Trait(*this, M);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005681 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
Douglas Gregor96958cb2011-07-20 01:10:58 +00005682 SelectorsLoaded[ID - 1] =
Douglas Gregor9827a802011-07-29 00:56:45 +00005683 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
Douglas Gregor96958cb2011-07-20 01:10:58 +00005684 if (DeserializationListener)
5685 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
Douglas Gregor83941df2009-04-25 17:48:32 +00005686 }
5687
Sebastian Redl725cd962010-08-04 20:40:17 +00005688 return SelectorsLoaded[ID - 1];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005689}
5690
Douglas Gregor8451ec72011-07-28 14:41:43 +00005691Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00005692 return DecodeSelector(ID);
5693}
5694
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005695uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redl725cd962010-08-04 20:40:17 +00005696 // ID 0 (the null selector) is considered an external selector.
5697 return getTotalNumSelectors() + 1;
Douglas Gregor719770d2010-04-06 17:30:22 +00005698}
5699
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005700serialization::SelectorID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005701ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005702 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
5703 return LocalID;
5704
5705 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5706 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
5707 assert(I != M.SelectorRemap.end()
5708 && "Invalid index into identifier index remap");
5709
5710 return LocalID + I->second;
Douglas Gregor8451ec72011-07-28 14:41:43 +00005711}
5712
Mike Stump1eb44332009-09-09 15:08:12 +00005713DeclarationName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005714ASTReader::ReadDeclarationName(ModuleFile &F,
Douglas Gregor393f2492011-07-22 00:38:23 +00005715 const RecordData &Record, unsigned &Idx) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00005716 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
5717 switch (Kind) {
5718 case DeclarationName::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +00005719 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005720
5721 case DeclarationName::ObjCZeroArgSelector:
5722 case DeclarationName::ObjCOneArgSelector:
5723 case DeclarationName::ObjCMultiArgSelector:
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005724 return DeclarationName(ReadSelector(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005725
5726 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005727 return Context.DeclarationNames.getCXXConstructorName(
5728 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005729
5730 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005731 return Context.DeclarationNames.getCXXDestructorName(
5732 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005733
5734 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +00005735 return Context.DeclarationNames.getCXXConversionFunctionName(
5736 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005737
5738 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005739 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00005740 (OverloadedOperatorKind)Record[Idx++]);
5741
Sean Hunt3e518bd2009-11-29 07:34:05 +00005742 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005743 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor95eab172011-07-28 20:55:49 +00005744 GetIdentifierInfo(F, Record, Idx));
Sean Hunt3e518bd2009-11-29 07:34:05 +00005745
Douglas Gregor2cf26342009-04-09 22:27:44 +00005746 case DeclarationName::CXXUsingDirective:
5747 return DeclarationName::getUsingDirectiveName();
5748 }
5749
David Blaikie7530c032012-01-17 06:56:22 +00005750 llvm_unreachable("Invalid NameKind!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005751}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00005752
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005753void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005754 DeclarationNameLoc &DNLoc,
5755 DeclarationName Name,
5756 const RecordData &Record, unsigned &Idx) {
5757 switch (Name.getNameKind()) {
5758 case DeclarationName::CXXConstructorName:
5759 case DeclarationName::CXXDestructorName:
5760 case DeclarationName::CXXConversionFunctionName:
5761 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
5762 break;
5763
5764 case DeclarationName::CXXOperatorName:
5765 DNLoc.CXXOperatorName.BeginOpNameLoc
5766 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5767 DNLoc.CXXOperatorName.EndOpNameLoc
5768 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5769 break;
5770
5771 case DeclarationName::CXXLiteralOperatorName:
5772 DNLoc.CXXLiteralOperatorName.OpNameLoc
5773 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5774 break;
5775
5776 case DeclarationName::Identifier:
5777 case DeclarationName::ObjCZeroArgSelector:
5778 case DeclarationName::ObjCOneArgSelector:
5779 case DeclarationName::ObjCMultiArgSelector:
5780 case DeclarationName::CXXUsingDirective:
5781 break;
5782 }
5783}
5784
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005785void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005786 DeclarationNameInfo &NameInfo,
5787 const RecordData &Record, unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00005788 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005789 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
5790 DeclarationNameLoc DNLoc;
5791 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
5792 NameInfo.setInfo(DNLoc);
5793}
5794
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005795void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005796 const RecordData &Record, unsigned &Idx) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005797 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005798 unsigned NumTPLists = Record[Idx++];
5799 Info.NumTemplParamLists = NumTPLists;
5800 if (NumTPLists) {
Douglas Gregor35942772011-09-09 21:34:22 +00005801 Info.TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005802 for (unsigned i=0; i != NumTPLists; ++i)
5803 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
5804 }
5805}
5806
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005807TemplateName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005808ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005809 unsigned &Idx) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00005810 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005811 switch (Kind) {
5812 case TemplateName::Template:
Douglas Gregor409448c2011-07-21 22:35:25 +00005813 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005814
5815 case TemplateName::OverloadedTemplate: {
5816 unsigned size = Record[Idx++];
5817 UnresolvedSet<8> Decls;
5818 while (size--)
Douglas Gregor409448c2011-07-21 22:35:25 +00005819 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005820
Douglas Gregor35942772011-09-09 21:34:22 +00005821 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005822 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005823
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005824 case TemplateName::QualifiedTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005825 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005826 bool hasTemplKeyword = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00005827 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005828 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005829 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005830
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005831 case TemplateName::DependentTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005832 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005833 if (Record[Idx++]) // isIdentifier
Douglas Gregor35942772011-09-09 21:34:22 +00005834 return Context.getDependentTemplateName(NNS,
Douglas Gregor95eab172011-07-28 20:55:49 +00005835 GetIdentifierInfo(F, Record,
5836 Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00005837 return Context.getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005838 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005839 }
John McCall14606042011-06-30 08:33:18 +00005840
5841 case TemplateName::SubstTemplateTemplateParm: {
5842 TemplateTemplateParmDecl *param
Douglas Gregor409448c2011-07-21 22:35:25 +00005843 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
John McCall14606042011-06-30 08:33:18 +00005844 if (!param) return TemplateName();
5845 TemplateName replacement = ReadTemplateName(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005846 return Context.getSubstTemplateTemplateParm(param, replacement);
John McCall14606042011-06-30 08:33:18 +00005847 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005848
5849 case TemplateName::SubstTemplateTemplateParmPack: {
5850 TemplateTemplateParmDecl *Param
Douglas Gregor409448c2011-07-21 22:35:25 +00005851 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005852 if (!Param)
5853 return TemplateName();
5854
5855 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
5856 if (ArgPack.getKind() != TemplateArgument::Pack)
5857 return TemplateName();
5858
Douglas Gregor35942772011-09-09 21:34:22 +00005859 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005860 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005861 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005862
David Blaikieb219cfc2011-09-23 05:06:16 +00005863 llvm_unreachable("Unhandled template name kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005864}
5865
5866TemplateArgument
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005867ASTReader::ReadTemplateArgument(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00005868 const RecordData &Record, unsigned &Idx) {
Douglas Gregora7fc9012011-01-05 18:58:31 +00005869 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
5870 switch (Kind) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005871 case TemplateArgument::Null:
5872 return TemplateArgument();
5873 case TemplateArgument::Type:
Douglas Gregor393f2492011-07-22 00:38:23 +00005874 return TemplateArgument(readType(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005875 case TemplateArgument::Declaration:
Douglas Gregor409448c2011-07-21 22:35:25 +00005876 return TemplateArgument(ReadDecl(F, Record, Idx));
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005877 case TemplateArgument::Integral: {
5878 llvm::APSInt Value = ReadAPSInt(Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00005879 QualType T = readType(F, Record, Idx);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005880 return TemplateArgument(Value, T);
5881 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00005882 case TemplateArgument::Template:
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005883 return TemplateArgument(ReadTemplateName(F, Record, Idx));
Douglas Gregora7fc9012011-01-05 18:58:31 +00005884 case TemplateArgument::TemplateExpansion: {
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005885 TemplateName Name = ReadTemplateName(F, Record, Idx);
Douglas Gregor2be29f42011-01-14 23:41:42 +00005886 llvm::Optional<unsigned> NumTemplateExpansions;
5887 if (unsigned NumExpansions = Record[Idx++])
5888 NumTemplateExpansions = NumExpansions - 1;
5889 return TemplateArgument(Name, NumTemplateExpansions);
Douglas Gregorba68eca2011-01-05 17:40:24 +00005890 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005891 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00005892 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005893 case TemplateArgument::Pack: {
5894 unsigned NumArgs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00005895 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
Douglas Gregor910f8002010-11-07 23:05:16 +00005896 for (unsigned I = 0; I != NumArgs; ++I)
5897 Args[I] = ReadTemplateArgument(F, Record, Idx);
5898 return TemplateArgument(Args, NumArgs);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005899 }
5900 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005901
David Blaikieb219cfc2011-09-23 05:06:16 +00005902 llvm_unreachable("Unhandled template argument kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005903}
5904
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005905TemplateParameterList *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005906ASTReader::ReadTemplateParameterList(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00005907 const RecordData &Record, unsigned &Idx) {
5908 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
5909 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
5910 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005911
5912 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00005913 SmallVector<NamedDecl *, 16> Params;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005914 Params.reserve(NumParams);
5915 while (NumParams--)
Douglas Gregor409448c2011-07-21 22:35:25 +00005916 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
Michael J. Spencer20249a12010-10-21 03:16:25 +00005917
5918 TemplateParameterList* TemplateParams =
Douglas Gregor35942772011-09-09 21:34:22 +00005919 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005920 Params.data(), Params.size(), RAngleLoc);
5921 return TemplateParams;
5922}
5923
5924void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005925ASTReader::
Chris Lattner5f9e2722011-07-23 10:55:15 +00005926ReadTemplateArgumentList(SmallVector<TemplateArgument, 8> &TemplArgs,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005927 ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00005928 unsigned &Idx) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005929 unsigned NumTemplateArgs = Record[Idx++];
5930 TemplArgs.reserve(NumTemplateArgs);
5931 while (NumTemplateArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00005932 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00005933}
5934
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005935/// \brief Read a UnresolvedSet structure.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005936void ASTReader::ReadUnresolvedSet(ModuleFile &F, UnresolvedSetImpl &Set,
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005937 const RecordData &Record, unsigned &Idx) {
5938 unsigned NumDecls = Record[Idx++];
5939 while (NumDecls--) {
Douglas Gregor409448c2011-07-21 22:35:25 +00005940 NamedDecl *D = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00005941 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
5942 Set.addDecl(D, AS);
5943 }
5944}
5945
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005946CXXBaseSpecifier
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005947ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
Nick Lewycky56062202010-07-26 16:56:01 +00005948 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005949 bool isVirtual = static_cast<bool>(Record[Idx++]);
5950 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
5951 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005952 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00005953 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
5954 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00005955 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005956 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00005957 EllipsisLoc);
Sebastian Redlf677ea32011-02-05 19:23:19 +00005958 Result.setInheritConstructors(inheritConstructors);
5959 return Result;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00005960}
5961
Sean Huntcbb67482011-01-08 20:30:50 +00005962std::pair<CXXCtorInitializer **, unsigned>
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005963ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
Sean Huntcbb67482011-01-08 20:30:50 +00005964 unsigned &Idx) {
5965 CXXCtorInitializer **CtorInitializers = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005966 unsigned NumInitializers = Record[Idx++];
5967 if (NumInitializers) {
Sean Huntcbb67482011-01-08 20:30:50 +00005968 CtorInitializers
Douglas Gregor35942772011-09-09 21:34:22 +00005969 = new (Context) CXXCtorInitializer*[NumInitializers];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005970 for (unsigned i=0; i != NumInitializers; ++i) {
Douglas Gregor76852c22011-11-01 01:16:03 +00005971 TypeSourceInfo *TInfo = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005972 bool IsBaseVirtual = false;
5973 FieldDecl *Member = 0;
Francois Pichet00eb3f92010-12-04 09:14:42 +00005974 IndirectFieldDecl *IndirectMember = 0;
Michael J. Spencer20249a12010-10-21 03:16:25 +00005975
Sean Hunt156b6402011-05-04 01:19:08 +00005976 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
5977 switch (Type) {
Douglas Gregor76852c22011-11-01 01:16:03 +00005978 case CTOR_INITIALIZER_BASE:
5979 TInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005980 IsBaseVirtual = Record[Idx++];
Sean Hunt156b6402011-05-04 01:19:08 +00005981 break;
Douglas Gregor76852c22011-11-01 01:16:03 +00005982
5983 case CTOR_INITIALIZER_DELEGATING:
5984 TInfo = GetTypeSourceInfo(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005985 break;
5986
5987 case CTOR_INITIALIZER_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00005988 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005989 break;
5990
5991 case CTOR_INITIALIZER_INDIRECT_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00005992 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00005993 break;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00005994 }
Sean Hunt156b6402011-05-04 01:19:08 +00005995
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00005996 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00005997 Expr *Init = ReadExpr(F);
Sebastian Redlc3632732010-10-05 15:59:54 +00005998 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
5999 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006000 bool IsWritten = Record[Idx++];
6001 unsigned SourceOrderOrNumArrayIndices;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006002 SmallVector<VarDecl *, 8> Indices;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006003 if (IsWritten) {
6004 SourceOrderOrNumArrayIndices = Record[Idx++];
6005 } else {
6006 SourceOrderOrNumArrayIndices = Record[Idx++];
6007 Indices.reserve(SourceOrderOrNumArrayIndices);
6008 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
Douglas Gregor409448c2011-07-21 22:35:25 +00006009 Indices.push_back(ReadDeclAs<VarDecl>(F, Record, Idx));
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006010 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006011
Sean Huntcbb67482011-01-08 20:30:50 +00006012 CXXCtorInitializer *BOMInit;
Sean Hunt156b6402011-05-04 01:19:08 +00006013 if (Type == CTOR_INITIALIZER_BASE) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006014 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, IsBaseVirtual,
Sean Huntcbb67482011-01-08 20:30:50 +00006015 LParenLoc, Init, RParenLoc,
6016 MemberOrEllipsisLoc);
Sean Hunt156b6402011-05-04 01:19:08 +00006017 } else if (Type == CTOR_INITIALIZER_DELEGATING) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006018 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, LParenLoc,
6019 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006020 } else if (IsWritten) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00006021 if (Member)
Douglas Gregor35942772011-09-09 21:34:22 +00006022 BOMInit = new (Context) CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006023 LParenLoc, Init, RParenLoc);
Francois Pichet00eb3f92010-12-04 09:14:42 +00006024 else
Douglas Gregor35942772011-09-09 21:34:22 +00006025 BOMInit = new (Context) CXXCtorInitializer(Context, IndirectMember,
Sean Huntcbb67482011-01-08 20:30:50 +00006026 MemberOrEllipsisLoc, LParenLoc,
6027 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006028 } else {
Douglas Gregor35942772011-09-09 21:34:22 +00006029 BOMInit = CXXCtorInitializer::Create(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006030 LParenLoc, Init, RParenLoc,
6031 Indices.data(), Indices.size());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006032 }
6033
Argyrios Kyrtzidisf84cde12010-09-06 19:04:27 +00006034 if (IsWritten)
6035 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Sean Huntcbb67482011-01-08 20:30:50 +00006036 CtorInitializers[i] = BOMInit;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006037 }
6038 }
6039
Sean Huntcbb67482011-01-08 20:30:50 +00006040 return std::make_pair(CtorInitializers, NumInitializers);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006041}
6042
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006043NestedNameSpecifier *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006044ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006045 const RecordData &Record, unsigned &Idx) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006046 unsigned N = Record[Idx++];
6047 NestedNameSpecifier *NNS = 0, *Prev = 0;
6048 for (unsigned I = 0; I != N; ++I) {
6049 NestedNameSpecifier::SpecifierKind Kind
6050 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6051 switch (Kind) {
6052 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006053 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006054 NNS = NestedNameSpecifier::Create(Context, Prev, II);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006055 break;
6056 }
6057
6058 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006059 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006060 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006061 break;
6062 }
6063
Douglas Gregor14aba762011-02-24 02:36:08 +00006064 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006065 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006066 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
Douglas Gregor14aba762011-02-24 02:36:08 +00006067 break;
6068 }
6069
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006070 case NestedNameSpecifier::TypeSpec:
6071 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregor393f2492011-07-22 00:38:23 +00006072 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
Douglas Gregor1ab55e92010-12-10 17:03:06 +00006073 if (!T)
6074 return 0;
6075
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006076 bool Template = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006077 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006078 break;
6079 }
6080
6081 case NestedNameSpecifier::Global: {
Douglas Gregor35942772011-09-09 21:34:22 +00006082 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006083 // No associated value, and there can't be a prefix.
6084 break;
6085 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006086 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00006087 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006088 }
6089 return NNS;
6090}
6091
Douglas Gregordc355712011-02-25 00:36:19 +00006092NestedNameSpecifierLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006093ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Douglas Gregordc355712011-02-25 00:36:19 +00006094 unsigned &Idx) {
6095 unsigned N = Record[Idx++];
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006096 NestedNameSpecifierLocBuilder Builder;
Douglas Gregordc355712011-02-25 00:36:19 +00006097 for (unsigned I = 0; I != N; ++I) {
6098 NestedNameSpecifier::SpecifierKind Kind
6099 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6100 switch (Kind) {
6101 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006102 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006103 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006104 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006105 break;
6106 }
6107
6108 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006109 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006110 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006111 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006112 break;
6113 }
6114
6115 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006116 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006117 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006118 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006119 break;
6120 }
6121
6122 case NestedNameSpecifier::TypeSpec:
6123 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregordc355712011-02-25 00:36:19 +00006124 bool Template = Record[Idx++];
6125 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
6126 if (!T)
6127 return NestedNameSpecifierLoc();
Douglas Gregordc355712011-02-25 00:36:19 +00006128 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006129
6130 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
Douglas Gregor35942772011-09-09 21:34:22 +00006131 Builder.Extend(Context,
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006132 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
6133 T->getTypeLoc(), ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006134 break;
6135 }
6136
6137 case NestedNameSpecifier::Global: {
Douglas Gregordc355712011-02-25 00:36:19 +00006138 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006139 Builder.MakeGlobal(Context, ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006140 break;
6141 }
6142 }
Douglas Gregordc355712011-02-25 00:36:19 +00006143 }
6144
Douglas Gregor35942772011-09-09 21:34:22 +00006145 return Builder.getWithLocInContext(Context);
Douglas Gregordc355712011-02-25 00:36:19 +00006146}
6147
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006148SourceRange
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006149ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006150 unsigned &Idx) {
6151 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
6152 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar8ee59392010-06-02 15:47:10 +00006153 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006154}
6155
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006156/// \brief Read an integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006157llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006158 unsigned BitWidth = Record[Idx++];
6159 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6160 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6161 Idx += NumWords;
6162 return Result;
6163}
6164
6165/// \brief Read a signed integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006166llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006167 bool isUnsigned = Record[Idx++];
6168 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
6169}
6170
Douglas Gregor17fc2232009-04-14 21:55:33 +00006171/// \brief Read a floating-point value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006172llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00006173 return llvm::APFloat(ReadAPInt(Record, Idx));
6174}
6175
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006176// \brief Read a string
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006177std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006178 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00006179 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006180 Idx += Len;
6181 return Result;
6182}
6183
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006184VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
6185 unsigned &Idx) {
6186 unsigned Major = Record[Idx++];
6187 unsigned Minor = Record[Idx++];
6188 unsigned Subminor = Record[Idx++];
6189 if (Minor == 0)
6190 return VersionTuple(Major);
6191 if (Subminor == 0)
6192 return VersionTuple(Major, Minor - 1);
6193 return VersionTuple(Major, Minor - 1, Subminor - 1);
6194}
6195
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006196CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006197 const RecordData &Record,
Chris Lattnerd2598362010-05-10 00:25:06 +00006198 unsigned &Idx) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006199 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006200 return CXXTemporary::Create(Context, Decl);
Chris Lattnerd2598362010-05-10 00:25:06 +00006201}
6202
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006203DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00006204 return Diag(SourceLocation(), DiagID);
6205}
6206
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006207DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00006208 return Diags.Report(Loc, DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006209}
Douglas Gregor025452f2009-04-17 00:04:06 +00006210
Douglas Gregor668c1a42009-04-21 22:25:48 +00006211/// \brief Retrieve the identifier table associated with the
6212/// preprocessor.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006213IdentifierTable &ASTReader::getIdentifierTable() {
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006214 return PP.getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00006215}
6216
Douglas Gregor025452f2009-04-17 00:04:06 +00006217/// \brief Record that the given ID maps to the given switch-case
6218/// statement.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006219void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Douglas Gregor025452f2009-04-17 00:04:06 +00006220 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
6221 SwitchCaseStmts[ID] = SC;
6222}
6223
6224/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006225SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Douglas Gregor025452f2009-04-17 00:04:06 +00006226 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
6227 return SwitchCaseStmts[ID];
6228}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00006229
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006230void ASTReader::ClearSwitchCaseIDs() {
6231 SwitchCaseStmts.clear();
6232}
6233
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006234void ASTReader::finishPendingActions() {
Douglas Gregorcff9f262012-01-27 01:47:08 +00006235 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty()) {
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006236 // If any identifiers with corresponding top-level declarations have
6237 // been loaded, load those declarations now.
6238 while (!PendingIdentifierInfos.empty()) {
6239 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
6240 PendingIdentifierInfos.front().DeclIDs, true);
6241 PendingIdentifierInfos.pop_front();
6242 }
6243
Douglas Gregora1be2782011-12-17 23:38:30 +00006244 // Load pending declaration chains.
6245 for (unsigned I = 0; I != PendingDeclChains.size(); ++I) {
6246 loadPendingDeclChain(PendingDeclChains[I]);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006247 PendingDeclChainsKnown.erase(PendingDeclChains[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00006248 }
6249 PendingDeclChains.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006250 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006251
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006252 // If we deserialized any C++ or Objective-C class definitions, any
6253 // Objective-C protocol definitions, or any redeclarable templates, make sure
6254 // that all redeclarations point to the definitions. Note that this can only
6255 // happen now, after the redeclaration chains have been fully wired.
Douglas Gregorfc529f72011-12-19 19:00:47 +00006256 for (llvm::SmallPtrSet<Decl *, 4>::iterator D = PendingDefinitions.begin(),
6257 DEnd = PendingDefinitions.end();
6258 D != DEnd; ++D) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006259 if (TagDecl *TD = dyn_cast<TagDecl>(*D)) {
6260 if (const TagType *TagT = dyn_cast<TagType>(TD->TypeForDecl)) {
6261 // Make sure that the TagType points at the definition.
6262 const_cast<TagType*>(TagT)->decl = TD;
6263 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006264
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006265 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(*D)) {
6266 for (CXXRecordDecl::redecl_iterator R = RD->redecls_begin(),
6267 REnd = RD->redecls_end();
6268 R != REnd; ++R)
6269 cast<CXXRecordDecl>(*R)->DefinitionData = RD->DefinitionData;
6270
6271 }
6272
Douglas Gregorfc529f72011-12-19 19:00:47 +00006273 continue;
6274 }
6275
Douglas Gregor1d784b22012-01-01 19:51:50 +00006276 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(*D)) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006277 // Make sure that the ObjCInterfaceType points at the definition.
6278 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
6279 ->Decl = ID;
6280
Douglas Gregor1d784b22012-01-01 19:51:50 +00006281 for (ObjCInterfaceDecl::redecl_iterator R = ID->redecls_begin(),
6282 REnd = ID->redecls_end();
6283 R != REnd; ++R)
6284 R->Data = ID->Data;
6285
6286 continue;
6287 }
6288
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006289 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(*D)) {
6290 for (ObjCProtocolDecl::redecl_iterator R = PD->redecls_begin(),
6291 REnd = PD->redecls_end();
6292 R != REnd; ++R)
6293 R->Data = PD->Data;
6294
6295 continue;
6296 }
6297
6298 RedeclarableTemplateDecl *RTD
6299 = cast<RedeclarableTemplateDecl>(*D)->getCanonicalDecl();
6300 for (RedeclarableTemplateDecl::redecl_iterator R = RTD->redecls_begin(),
6301 REnd = RTD->redecls_end();
Douglas Gregorfc529f72011-12-19 19:00:47 +00006302 R != REnd; ++R)
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006303 R->Common = RTD->Common;
Douglas Gregorfc529f72011-12-19 19:00:47 +00006304 }
6305 PendingDefinitions.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006306}
6307
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006308void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006309 assert(NumCurrentElementsDeserializing &&
6310 "FinishedDeserializing not paired with StartedDeserializing");
6311 if (NumCurrentElementsDeserializing == 1) {
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006312 // We decrease NumCurrentElementsDeserializing only after pending actions
6313 // are finished, to avoid recursively re-calling finishPendingActions().
6314 finishPendingActions();
6315 }
6316 --NumCurrentElementsDeserializing;
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006317
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006318 if (NumCurrentElementsDeserializing == 0 &&
6319 Consumer && !PassingDeclsToConsumer) {
6320 // Guard variable to avoid recursively redoing the process of passing
6321 // decls to consumer.
6322 SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
6323 true);
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006324
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006325 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00006326 // We are not in recursive loading, so it's safe to pass the "interesting"
6327 // decls to the consumer.
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006328 Decl *D = InterestingDecls.front();
6329 InterestingDecls.pop_front();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006330 PassInterestingDeclToConsumer(D);
6331 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006332 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006333}
Douglas Gregor501c1032010-08-19 00:28:17 +00006334
Douglas Gregorf8a1e512011-09-02 00:26:20 +00006335ASTReader::ASTReader(Preprocessor &PP, ASTContext &Context,
Douglas Gregor832d6202011-07-22 16:35:34 +00006336 StringRef isysroot, bool DisableValidation,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006337 bool DisableStatCache, bool AllowASTWithCompilerErrors)
Sebastian Redle1dde812010-08-24 00:50:04 +00006338 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
6339 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006340 Diags(PP.getDiagnostics()), SemaObj(0), PP(PP), Context(Context),
Jonathan D. Turner1afb6612011-07-28 17:20:23 +00006341 Consumer(0), ModuleMgr(FileMgr.getFileSystemOptions()),
6342 RelocatablePCH(false), isysroot(isysroot),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006343 DisableValidation(DisableValidation),
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006344 DisableStatCache(DisableStatCache),
6345 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
Douglas Gregor057df202012-01-18 20:56:22 +00006346 CurrentGeneration(0), NumStatHits(0), NumStatMisses(0),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006347 NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006348 NumStatementsRead(0), TotalNumStatements(0), NumMacrosRead(0),
6349 TotalNumMacros(0), NumSelectorsRead(0), NumMethodPoolEntriesRead(0),
6350 NumMethodPoolMisses(0), TotalNumMethodPoolEntries(0),
6351 NumLexicalDeclContextsRead(0), TotalLexicalDeclContexts(0),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006352 NumVisibleDeclContextsRead(0), TotalVisibleDeclContexts(0),
6353 TotalModulesSizeInBits(0), NumCurrentElementsDeserializing(0),
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006354 PassingDeclsToConsumer(false),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006355 NumCXXBaseSpecifiersLoaded(0)
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006356{
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006357 SourceMgr.setExternalSLocEntrySource(this);
Sebastian Redle1dde812010-08-24 00:50:04 +00006358}
6359
Sebastian Redle1dde812010-08-24 00:50:04 +00006360ASTReader::~ASTReader() {
Sebastian Redle1dde812010-08-24 00:50:04 +00006361 for (DeclContextVisibleUpdatesPending::iterator
6362 I = PendingVisibleUpdates.begin(),
6363 E = PendingVisibleUpdates.end();
6364 I != E; ++I) {
6365 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
6366 F = I->second.end();
6367 J != F; ++J)
Douglas Gregor496c7092011-08-03 15:48:04 +00006368 delete static_cast<ASTDeclContextNameLookupTable*>(J->first);
Sebastian Redle1dde812010-08-24 00:50:04 +00006369 }
6370}