blob: 6bf6f94fbbaf55a4309cabab29593c5297f39a07 [file] [log] [blame]
Sebastian Redl904c9c82010-08-18 23:57:11 +00001//===--- ASTReader.cpp - AST File Reader ------------------------*- C++ -*-===//
Douglas Gregor2cf26342009-04-09 22:27:44 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Sebastian Redlc43b54c2010-08-18 23:56:43 +000010// This file defines the ASTReader class, which reads AST files.
Douglas Gregor2cf26342009-04-09 22:27:44 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner4c6f9522009-04-27 05:14:47 +000013
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000014#include "clang/Serialization/ASTReader.h"
15#include "clang/Serialization/ASTDeserializationListener.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000016#include "clang/Serialization/ModuleManager.h"
Chandler Carrutha2398d72011-12-09 00:02:23 +000017#include "clang/Serialization/SerializationDiagnostic.h"
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +000018#include "ASTCommon.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000019#include "ASTReaderInternals.h"
Douglas Gregore737f502010-08-12 20:07:10 +000020#include "clang/Sema/Sema.h"
John McCall5f1e0942010-08-24 08:50:51 +000021#include "clang/Sema/Scope.h"
Douglas Gregorfdd01722009-04-14 00:24:19 +000022#include "clang/AST/ASTConsumer.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000023#include "clang/AST/ASTContext.h"
John McCall2a7fb272010-08-25 05:32:35 +000024#include "clang/AST/DeclTemplate.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000025#include "clang/AST/Expr.h"
John McCall7a1fad32010-08-24 07:32:53 +000026#include "clang/AST/ExprCXX.h"
Douglas Gregor5f791bb2011-02-28 23:58:31 +000027#include "clang/AST/NestedNameSpecifier.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000028#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000029#include "clang/AST/TypeLocVisitor.h"
Chris Lattner42d42b52009-04-10 21:41:48 +000030#include "clang/Lex/MacroInfo.h"
Douglas Gregor6a5a23f2010-03-19 21:51:54 +000031#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000032#include "clang/Lex/Preprocessor.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000033#include "clang/Lex/HeaderSearch.h"
Douglas Gregor668c1a42009-04-21 22:25:48 +000034#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000035#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000036#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000037#include "clang/Basic/FileManager.h"
Chris Lattner10e286a2010-11-23 19:19:34 +000038#include "clang/Basic/FileSystemStatCache.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000039#include "clang/Basic/TargetInfo.h"
Douglas Gregor445e23e2009-10-05 21:07:28 +000040#include "clang/Basic/Version.h"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000041#include "clang/Basic/VersionTuple.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000042#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000043#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000044#include "llvm/Support/MemoryBuffer.h"
John McCall833ca992009-10-29 08:12:44 +000045#include "llvm/Support/ErrorHandling.h"
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000046#include "llvm/Support/FileSystem.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000047#include "llvm/Support/Path.h"
Nick Lewyckyb346d2f2012-04-16 02:51:46 +000048#include "llvm/Support/SaveAndRestore.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"
John McCall260611a2012-06-20 06:18:46 +000093
94 if (PPLangOpts.ObjCRuntime != LangOpts.ObjCRuntime) {
95 Reader.Diag(diag::err_pch_langopt_value_mismatch)
96 << "target Objective-C runtime";
97 return true;
98 }
Douglas Gregor7d5e81b2011-09-13 18:26:39 +000099
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000100 return false;
101}
102
Chris Lattner5f9e2722011-07-23 10:55:15 +0000103bool PCHValidator::ReadTargetTriple(StringRef Triple) {
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000104 if (Triple == PP.getTargetInfo().getTriple().str())
105 return false;
106
107 Reader.Diag(diag::warn_pch_target_triple)
108 << Triple << PP.getTargetInfo().getTriple().str();
109 return true;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000110}
111
Benjamin Kramer54353f42010-11-25 18:29:30 +0000112namespace {
113 struct EmptyStringRef {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000114 bool operator ()(StringRef r) const { return r.empty(); }
Benjamin Kramer54353f42010-11-25 18:29:30 +0000115 };
116 struct EmptyBlock {
117 bool operator ()(const PCHPredefinesBlock &r) const {return r.Data.empty();}
118 };
119}
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000120
Chris Lattner5f9e2722011-07-23 10:55:15 +0000121static bool EqualConcatenations(SmallVector<StringRef, 2> L,
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000122 PCHPredefinesBlocks R) {
123 // First, sum up the lengths.
124 unsigned LL = 0, RL = 0;
125 for (unsigned I = 0, N = L.size(); I != N; ++I) {
126 LL += L[I].size();
127 }
128 for (unsigned I = 0, N = R.size(); I != N; ++I) {
129 RL += R[I].Data.size();
130 }
131 if (LL != RL)
132 return false;
133 if (LL == 0 && RL == 0)
134 return true;
135
136 // Kick out empty parts, they confuse the algorithm below.
137 L.erase(std::remove_if(L.begin(), L.end(), EmptyStringRef()), L.end());
138 R.erase(std::remove_if(R.begin(), R.end(), EmptyBlock()), R.end());
139
140 // Do it the hard way. At this point, both vectors must be non-empty.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000141 StringRef LR = L[0], RR = R[0].Data;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000142 unsigned LI = 0, RI = 0, LN = L.size(), RN = R.size();
Daniel Dunbarc76c9e02010-07-16 00:00:11 +0000143 (void) RN;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000144 for (;;) {
145 // Compare the current pieces.
146 if (LR.size() == RR.size()) {
147 // If they're the same length, it's pretty easy.
148 if (LR != RR)
149 return false;
150 // Both pieces are done, advance.
151 ++LI;
152 ++RI;
153 // If either string is done, they're both done, since they're the same
154 // length.
155 if (LI == LN) {
156 assert(RI == RN && "Strings not the same length after all?");
157 return true;
158 }
159 LR = L[LI];
160 RR = R[RI].Data;
161 } else if (LR.size() < RR.size()) {
162 // Right piece is longer.
163 if (!RR.startswith(LR))
164 return false;
165 ++LI;
166 assert(LI != LN && "Strings not the same length after all?");
167 RR = RR.substr(LR.size());
168 LR = L[LI];
169 } else {
170 // Left piece is longer.
171 if (!LR.startswith(RR))
172 return false;
173 ++RI;
174 assert(RI != RN && "Strings not the same length after all?");
175 LR = LR.substr(RR.size());
176 RR = R[RI].Data;
177 }
178 }
179}
180
Chris Lattner5f9e2722011-07-23 10:55:15 +0000181static std::pair<FileID, StringRef::size_type>
182FindMacro(const PCHPredefinesBlocks &Buffers, StringRef MacroDef) {
183 std::pair<FileID, StringRef::size_type> Res;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000184 for (unsigned I = 0, N = Buffers.size(); I != N; ++I) {
185 Res.second = Buffers[I].Data.find(MacroDef);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000186 if (Res.second != StringRef::npos) {
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000187 Res.first = Buffers[I].BufferID;
188 break;
189 }
190 }
191 return Res;
192}
193
194bool PCHValidator::ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000195 StringRef OriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000196 std::string &SuggestedPredefines,
197 FileManager &FileMgr) {
Daniel Dunbarc7162932009-11-11 23:58:53 +0000198 // We are in the context of an implicit include, so the predefines buffer will
199 // have a #include entry for the PCH file itself (as normalized by the
200 // preprocessor initialization). Find it and skip over it in the checking
201 // below.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000202 SmallString<256> PCHInclude;
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000203 PCHInclude += "#include \"";
Chandler Carruthcb381ea2011-12-09 01:33:57 +0000204 PCHInclude += HeaderSearch::NormalizeDashIncludePath(OriginalFileName,
205 FileMgr);
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000206 PCHInclude += "\"\n";
Chris Lattner5f9e2722011-07-23 10:55:15 +0000207 std::pair<StringRef,StringRef> Split =
208 StringRef(PP.getPredefines()).split(PCHInclude.str());
209 StringRef Left = Split.first, Right = Split.second;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +0000210 if (Left == PP.getPredefines()) {
211 Error("Missing PCH include entry!");
212 return true;
213 }
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000214
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000215 // If the concatenation of all the PCH buffers is equal to the adjusted
216 // command line, we're done.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000217 SmallVector<StringRef, 2> CommandLine;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000218 CommandLine.push_back(Left);
219 CommandLine.push_back(Right);
220 if (EqualConcatenations(CommandLine, Buffers))
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000221 return false;
222
223 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000225 // The predefines buffers are different. Determine what the differences are,
226 // and whether they require us to reject the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000227 SmallVector<StringRef, 8> PCHLines;
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000228 for (unsigned I = 0, N = Buffers.size(); I != N; ++I)
229 Buffers[I].Data.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Daniel Dunbare6750492009-11-13 16:46:11 +0000230
Chris Lattner5f9e2722011-07-23 10:55:15 +0000231 SmallVector<StringRef, 8> CmdLineLines;
Daniel Dunbare6750492009-11-13 16:46:11 +0000232 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000233
234 // Pick out implicit #includes after the PCH and don't consider them for
235 // validation; we will insert them into SuggestedPredefines so that the
236 // preprocessor includes them.
237 std::string IncludesAfterPCH;
Chris Lattner5f9e2722011-07-23 10:55:15 +0000238 SmallVector<StringRef, 8> AfterPCHLines;
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000239 Right.split(AfterPCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
240 for (unsigned i = 0, e = AfterPCHLines.size(); i != e; ++i) {
241 if (AfterPCHLines[i].startswith("#include ")) {
242 IncludesAfterPCH += AfterPCHLines[i];
243 IncludesAfterPCH += '\n';
244 } else {
245 CmdLineLines.push_back(AfterPCHLines[i]);
246 }
247 }
248
249 // Make sure we add the includes last into SuggestedPredefines before we
250 // exit this function.
251 struct AddIncludesRAII {
252 std::string &SuggestedPredefines;
253 std::string &IncludesAfterPCH;
254
255 AddIncludesRAII(std::string &SuggestedPredefines,
256 std::string &IncludesAfterPCH)
257 : SuggestedPredefines(SuggestedPredefines),
258 IncludesAfterPCH(IncludesAfterPCH) { }
259 ~AddIncludesRAII() {
260 SuggestedPredefines += IncludesAfterPCH;
261 }
262 } AddIncludes(SuggestedPredefines, IncludesAfterPCH);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000263
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000264 // Sort both sets of predefined buffer lines, since we allow some extra
265 // definitions and they may appear at any point in the output.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000266 std::sort(CmdLineLines.begin(), CmdLineLines.end());
267 std::sort(PCHLines.begin(), PCHLines.end());
268
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000269 // Determine which predefines that were used to build the PCH file are missing
270 // from the command line.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000271 std::vector<StringRef> MissingPredefines;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000272 std::set_difference(PCHLines.begin(), PCHLines.end(),
273 CmdLineLines.begin(), CmdLineLines.end(),
274 std::back_inserter(MissingPredefines));
275
276 bool MissingDefines = false;
277 bool ConflictingDefines = false;
278 for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000279 StringRef Missing = MissingPredefines[I];
Argyrios Kyrtzidis297c7062010-09-30 16:53:50 +0000280 if (Missing.startswith("#include ")) {
281 // An -include was specified when generating the PCH; it is included in
282 // the PCH, just ignore it.
283 continue;
284 }
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000285 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000286 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
287 return true;
288 }
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000290 // This is a macro definition. Determine the name of the macro we're
291 // defining.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000292 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump1eb44332009-09-09 15:08:12 +0000293 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000294 = Missing.find_first_of("( \n\r", StartOfMacroName);
295 assert(EndOfMacroName != std::string::npos &&
296 "Couldn't find the end of the macro name");
Chris Lattner5f9e2722011-07-23 10:55:15 +0000297 StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000298
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000299 // Determine whether this macro was given a different definition on the
300 // command line.
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000301 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000302 std::string::size_type MacroDefLen = MacroDefStart.size();
Chris Lattner5f9e2722011-07-23 10:55:15 +0000303 SmallVector<StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000304 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
305 MacroDefStart);
306 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000307 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000308 // Different macro; we're done.
309 ConflictPos = CmdLineLines.end();
Mike Stump1eb44332009-09-09 15:08:12 +0000310 break;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000311 }
Mike Stump1eb44332009-09-09 15:08:12 +0000312
313 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000314 "Invalid #define in predefines buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +0000315 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000316 (*ConflictPos)[MacroDefLen] != '(')
317 continue; // Longer macro name; keep trying.
Mike Stump1eb44332009-09-09 15:08:12 +0000318
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000319 // We found a conflicting macro definition.
320 break;
321 }
Mike Stump1eb44332009-09-09 15:08:12 +0000322
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000323 if (ConflictPos != CmdLineLines.end()) {
324 Reader.Diag(diag::warn_cmdline_conflicting_macro_def)
325 << MacroName;
326
327 // Show the definition of this macro within the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000328 std::pair<FileID, StringRef::size_type> MacroLoc =
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000329 FindMacro(Buffers, Missing);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000330 assert(MacroLoc.second!=StringRef::npos && "Unable to find macro!");
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000331 SourceLocation PCHMissingLoc =
332 SourceMgr.getLocForStartOfFile(MacroLoc.first)
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000333 .getLocWithOffset(MacroLoc.second);
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000334 Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) << MacroName;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000335
336 ConflictingDefines = true;
337 continue;
338 }
Mike Stump1eb44332009-09-09 15:08:12 +0000339
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000340 // If the macro doesn't conflict, then we'll just pick up the macro
341 // definition from the PCH file. Warn the user that they made a mistake.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000342 if (ConflictingDefines)
343 continue; // Don't complain if there are already conflicting defs
Mike Stump1eb44332009-09-09 15:08:12 +0000344
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000345 if (!MissingDefines) {
346 Reader.Diag(diag::warn_cmdline_missing_macro_defs);
347 MissingDefines = true;
348 }
349
350 // Show the definition of this macro within the PCH file.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000351 std::pair<FileID, StringRef::size_type> MacroLoc =
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000352 FindMacro(Buffers, Missing);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000353 assert(MacroLoc.second!=StringRef::npos && "Unable to find macro!");
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000354 SourceLocation PCHMissingLoc =
355 SourceMgr.getLocForStartOfFile(MacroLoc.first)
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000356 .getLocWithOffset(MacroLoc.second);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000357 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
358 }
Mike Stump1eb44332009-09-09 15:08:12 +0000359
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000360 if (ConflictingDefines)
361 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000363 // Determine what predefines were introduced based on command-line
364 // parameters that were not present when building the PCH
365 // file. Extra #defines are okay, so long as the identifiers being
366 // defined were not used within the precompiled header.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000367 std::vector<StringRef> ExtraPredefines;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000368 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
369 PCHLines.begin(), PCHLines.end(),
Mike Stump1eb44332009-09-09 15:08:12 +0000370 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000371 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000372 StringRef &Extra = ExtraPredefines[I];
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000373 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000374 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
375 return true;
376 }
377
378 // This is an extra macro definition. Determine the name of the
379 // macro we're defining.
380 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump1eb44332009-09-09 15:08:12 +0000381 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000382 = Extra.find_first_of("( \n\r", StartOfMacroName);
383 assert(EndOfMacroName != std::string::npos &&
384 "Couldn't find the end of the macro name");
Chris Lattner5f9e2722011-07-23 10:55:15 +0000385 StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000386
387 // Check whether this name was used somewhere in the PCH file. If
388 // so, defining it as a macro could change behavior, so we reject
389 // the PCH file.
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000390 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar4fda42e2009-11-11 00:52:00 +0000391 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000392 return true;
393 }
394
395 // Add this definition to the suggested predefines buffer.
396 SuggestedPredefines += Extra;
397 SuggestedPredefines += '\n';
398 }
399
400 // If we get here, it's because the predefines buffer had compatible
401 // contents. Accept the PCH file.
402 return false;
403}
404
Douglas Gregor12fab312010-03-16 16:35:32 +0000405void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
406 unsigned ID) {
407 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
408 ++NumHeaderInfos;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000409}
410
411void PCHValidator::ReadCounter(unsigned Value) {
412 PP.setCounterValue(Value);
413}
414
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000415//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000416// AST reader implementation
Douglas Gregor668c1a42009-04-21 22:25:48 +0000417//===----------------------------------------------------------------------===//
418
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000419void
Sebastian Redl571db7f2010-08-18 23:56:56 +0000420ASTReader::setDeserializationListener(ASTDeserializationListener *Listener) {
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000421 DeserializationListener = Listener;
Sebastian Redlffaab3e2010-07-30 00:29:29 +0000422}
423
Chris Lattner4c6f9522009-04-27 05:14:47 +0000424
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000425
Douglas Gregor98339b92011-08-25 20:47:51 +0000426unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
427 return serialization::ComputeHash(Sel);
428}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000429
Mike Stump1eb44332009-09-09 15:08:12 +0000430
Douglas Gregor98339b92011-08-25 20:47:51 +0000431std::pair<unsigned, unsigned>
432ASTSelectorLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
433 using namespace clang::io;
434 unsigned KeyLen = ReadUnalignedLE16(d);
435 unsigned DataLen = ReadUnalignedLE16(d);
436 return std::make_pair(KeyLen, DataLen);
437}
438
439ASTSelectorLookupTrait::internal_key_type
440ASTSelectorLookupTrait::ReadKey(const unsigned char* d, unsigned) {
441 using namespace clang::io;
Douglas Gregor35942772011-09-09 21:34:22 +0000442 SelectorTable &SelTable = Reader.getContext().Selectors;
Douglas Gregor98339b92011-08-25 20:47:51 +0000443 unsigned N = ReadUnalignedLE16(d);
444 IdentifierInfo *FirstII
445 = Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
446 if (N == 0)
447 return SelTable.getNullarySelector(FirstII);
448 else if (N == 1)
449 return SelTable.getUnarySelector(FirstII);
450
451 SmallVector<IdentifierInfo *, 16> Args;
452 Args.push_back(FirstII);
453 for (unsigned I = 1; I != N; ++I)
454 Args.push_back(Reader.getLocalIdentifier(F, ReadUnalignedLE32(d)));
455
456 return SelTable.getSelector(N, Args.data());
457}
458
459ASTSelectorLookupTrait::data_type
460ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
461 unsigned DataLen) {
462 using namespace clang::io;
463
464 data_type Result;
465
466 Result.ID = Reader.getGlobalSelectorID(F, ReadUnalignedLE32(d));
467 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
468 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
469
470 // Load instance methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000471 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
472 if (ObjCMethodDecl *Method
473 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
474 Result.Instance.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000475 }
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Douglas Gregor98339b92011-08-25 20:47:51 +0000477 // Load factory methods
Douglas Gregor98339b92011-08-25 20:47:51 +0000478 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
479 if (ObjCMethodDecl *Method
480 = Reader.GetLocalDeclAs<ObjCMethodDecl>(F, ReadUnalignedLE32(d)))
481 Result.Factory.push_back(Method);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000482 }
Mike Stump1eb44332009-09-09 15:08:12 +0000483
Douglas Gregor98339b92011-08-25 20:47:51 +0000484 return Result;
485}
Mike Stump1eb44332009-09-09 15:08:12 +0000486
Douglas Gregor98339b92011-08-25 20:47:51 +0000487unsigned ASTIdentifierLookupTrait::ComputeHash(const internal_key_type& a) {
488 return llvm::HashString(StringRef(a.first, a.second));
489}
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Douglas Gregor98339b92011-08-25 20:47:51 +0000491std::pair<unsigned, unsigned>
492ASTIdentifierLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
493 using namespace clang::io;
494 unsigned DataLen = ReadUnalignedLE16(d);
495 unsigned KeyLen = ReadUnalignedLE16(d);
496 return std::make_pair(KeyLen, DataLen);
497}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000498
Douglas Gregor98339b92011-08-25 20:47:51 +0000499std::pair<const char*, unsigned>
500ASTIdentifierLookupTrait::ReadKey(const unsigned char* d, unsigned n) {
501 assert(n >= 2 && d[n-1] == '\0');
502 return std::make_pair((const char*) d, n-1);
503}
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000504
Douglas Gregor98339b92011-08-25 20:47:51 +0000505IdentifierInfo *ASTIdentifierLookupTrait::ReadData(const internal_key_type& k,
506 const unsigned char* d,
507 unsigned DataLen) {
508 using namespace clang::io;
509 unsigned RawID = ReadUnalignedLE32(d);
510 bool IsInteresting = RawID & 0x01;
Mike Stump1eb44332009-09-09 15:08:12 +0000511
Douglas Gregor98339b92011-08-25 20:47:51 +0000512 // Wipe out the "is interesting" bit.
513 RawID = RawID >> 1;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000514
Douglas Gregor98339b92011-08-25 20:47:51 +0000515 IdentID ID = Reader.getGlobalIdentifierID(F, RawID);
516 if (!IsInteresting) {
517 // For uninteresting identifiers, just build the IdentifierInfo
518 // and associate it with the persistent ID.
Douglas Gregor668c1a42009-04-21 22:25:48 +0000519 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000520 if (!II) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +0000521 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000522 KnownII = II;
523 }
Douglas Gregor668c1a42009-04-21 22:25:48 +0000524 Reader.SetIdentifierInfo(ID, II);
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000525 II->setIsFromAST();
Douglas Gregor057df202012-01-18 20:56:22 +0000526 Reader.markIdentifierUpToDate(II);
Douglas Gregor668c1a42009-04-21 22:25:48 +0000527 return II;
528 }
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000530 unsigned ObjCOrBuiltinID = ReadUnalignedLE16(d);
Douglas Gregor98339b92011-08-25 20:47:51 +0000531 unsigned Bits = ReadUnalignedLE16(d);
532 bool CPlusPlusOperatorKeyword = Bits & 0x01;
533 Bits >>= 1;
534 bool HasRevertedTokenIDToIdentifier = Bits & 0x01;
535 Bits >>= 1;
536 bool Poisoned = Bits & 0x01;
537 Bits >>= 1;
538 bool ExtensionToken = Bits & 0x01;
539 Bits >>= 1;
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000540 bool hadMacroDefinition = Bits & 0x01;
541 Bits >>= 1;
Douglas Gregor98339b92011-08-25 20:47:51 +0000542 bool hasMacroDefinition = Bits & 0x01;
543 Bits >>= 1;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000544
Douglas Gregor98339b92011-08-25 20:47:51 +0000545 assert(Bits == 0 && "Extra bits in the identifier?");
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000546 DataLen -= 8;
Douglas Gregor668c1a42009-04-21 22:25:48 +0000547
Douglas Gregor98339b92011-08-25 20:47:51 +0000548 // Build the IdentifierInfo itself and link the identifier ID with
549 // the new IdentifierInfo.
550 IdentifierInfo *II = KnownII;
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000551 if (!II) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000552 II = &Reader.getIdentifierTable().getOwn(StringRef(k.first, k.second));
Douglas Gregor5d5051f2012-01-24 15:24:38 +0000553 KnownII = II;
554 }
Douglas Gregor057df202012-01-18 20:56:22 +0000555 Reader.markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +0000556 II->setIsFromAST();
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000557
Douglas Gregor98339b92011-08-25 20:47:51 +0000558 // Set or check the various bits in the IdentifierInfo structure.
559 // Token IDs are read-only.
560 if (HasRevertedTokenIDToIdentifier)
561 II->RevertTokenIDToIdentifier();
562 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
563 assert(II->isExtensionToken() == ExtensionToken &&
564 "Incorrect extension token flag");
565 (void)ExtensionToken;
566 if (Poisoned)
567 II->setIsPoisoned(true);
568 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
569 "Incorrect C++ operator keyword flag");
570 (void)CPlusPlusOperatorKeyword;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000571
Douglas Gregor98339b92011-08-25 20:47:51 +0000572 // If this identifier is a macro, deserialize the macro
573 // definition.
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000574 if (hadMacroDefinition) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000575 // FIXME: Check for conflicts?
576 uint32_t Offset = ReadUnalignedLE32(d);
Douglas Gregor13292642011-12-02 15:45:10 +0000577 unsigned LocalSubmoduleID = ReadUnalignedLE32(d);
578
579 // Determine whether this macro definition should be visible now, or
580 // whether it is in a hidden submodule.
581 bool Visible = true;
582 if (SubmoduleID GlobalSubmoduleID
583 = Reader.getGlobalSubmoduleID(F, LocalSubmoduleID)) {
584 if (Module *Owner = Reader.getSubmodule(GlobalSubmoduleID)) {
585 if (Owner->NameVisibility == Module::Hidden) {
586 // The owning module is not visible, and this macro definition should
587 // not be, either.
588 Visible = false;
589
590 // Note that this macro definition was hidden because its owning
591 // module is not yet visible.
592 Reader.HiddenNamesMap[Owner].push_back(II);
593 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000594 }
Douglas Gregor13292642011-12-02 15:45:10 +0000595 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +0000596
597 Reader.setIdentifierIsMacro(II, F, Offset, Visible && hasMacroDefinition);
Douglas Gregor13292642011-12-02 15:45:10 +0000598 DataLen -= 8;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000599 }
600
Douglas Gregoreee242f2011-10-27 09:33:13 +0000601 Reader.SetIdentifierInfo(ID, II);
602
Douglas Gregor98339b92011-08-25 20:47:51 +0000603 // Read all of the declarations visible at global scope with this
604 // name.
Douglas Gregor98339b92011-08-25 20:47:51 +0000605 if (DataLen > 0) {
606 SmallVector<uint32_t, 4> DeclIDs;
607 for (; DataLen > 0; DataLen -= 4)
608 DeclIDs.push_back(Reader.getGlobalDeclID(F, ReadUnalignedLE32(d)));
609 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000610 }
611
Douglas Gregor98339b92011-08-25 20:47:51 +0000612 return II;
613}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000614
Douglas Gregor98339b92011-08-25 20:47:51 +0000615unsigned
616ASTDeclContextNameLookupTrait::ComputeHash(const DeclNameKey &Key) const {
617 llvm::FoldingSetNodeID ID;
618 ID.AddInteger(Key.Kind);
619
620 switch (Key.Kind) {
621 case DeclarationName::Identifier:
622 case DeclarationName::CXXLiteralOperatorName:
623 ID.AddString(((IdentifierInfo*)Key.Data)->getName());
624 break;
625 case DeclarationName::ObjCZeroArgSelector:
626 case DeclarationName::ObjCOneArgSelector:
627 case DeclarationName::ObjCMultiArgSelector:
628 ID.AddInteger(serialization::ComputeHash(Selector(Key.Data)));
629 break;
630 case DeclarationName::CXXOperatorName:
631 ID.AddInteger((OverloadedOperatorKind)Key.Data);
632 break;
633 case DeclarationName::CXXConstructorName:
634 case DeclarationName::CXXDestructorName:
635 case DeclarationName::CXXConversionFunctionName:
636 case DeclarationName::CXXUsingDirective:
637 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000638 }
639
Douglas Gregor98339b92011-08-25 20:47:51 +0000640 return ID.ComputeHash();
641}
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000642
Douglas Gregor98339b92011-08-25 20:47:51 +0000643ASTDeclContextNameLookupTrait::internal_key_type
644ASTDeclContextNameLookupTrait::GetInternalKey(
645 const external_key_type& Name) const {
646 DeclNameKey Key;
647 Key.Kind = Name.getNameKind();
648 switch (Name.getNameKind()) {
649 case DeclarationName::Identifier:
650 Key.Data = (uint64_t)Name.getAsIdentifierInfo();
651 break;
652 case DeclarationName::ObjCZeroArgSelector:
653 case DeclarationName::ObjCOneArgSelector:
654 case DeclarationName::ObjCMultiArgSelector:
655 Key.Data = (uint64_t)Name.getObjCSelector().getAsOpaquePtr();
656 break;
657 case DeclarationName::CXXOperatorName:
658 Key.Data = Name.getCXXOverloadedOperator();
659 break;
660 case DeclarationName::CXXLiteralOperatorName:
661 Key.Data = (uint64_t)Name.getCXXLiteralIdentifier();
662 break;
663 case DeclarationName::CXXConstructorName:
664 case DeclarationName::CXXDestructorName:
665 case DeclarationName::CXXConversionFunctionName:
666 case DeclarationName::CXXUsingDirective:
667 Key.Data = 0;
668 break;
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +0000669 }
670
Douglas Gregor98339b92011-08-25 20:47:51 +0000671 return Key;
672}
673
Douglas Gregor98339b92011-08-25 20:47:51 +0000674std::pair<unsigned, unsigned>
675ASTDeclContextNameLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
676 using namespace clang::io;
677 unsigned KeyLen = ReadUnalignedLE16(d);
678 unsigned DataLen = ReadUnalignedLE16(d);
679 return std::make_pair(KeyLen, DataLen);
680}
Michael J. Spencer20249a12010-10-21 03:16:25 +0000681
Douglas Gregor98339b92011-08-25 20:47:51 +0000682ASTDeclContextNameLookupTrait::internal_key_type
683ASTDeclContextNameLookupTrait::ReadKey(const unsigned char* d, unsigned) {
684 using namespace clang::io;
685
686 DeclNameKey Key;
687 Key.Kind = (DeclarationName::NameKind)*d++;
688 switch (Key.Kind) {
689 case DeclarationName::Identifier:
690 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
691 break;
692 case DeclarationName::ObjCZeroArgSelector:
693 case DeclarationName::ObjCOneArgSelector:
694 case DeclarationName::ObjCMultiArgSelector:
695 Key.Data =
696 (uint64_t)Reader.getLocalSelector(F, ReadUnalignedLE32(d))
697 .getAsOpaquePtr();
698 break;
699 case DeclarationName::CXXOperatorName:
700 Key.Data = *d++; // OverloadedOperatorKind
701 break;
702 case DeclarationName::CXXLiteralOperatorName:
703 Key.Data = (uint64_t)Reader.getLocalIdentifier(F, ReadUnalignedLE32(d));
704 break;
705 case DeclarationName::CXXConstructorName:
706 case DeclarationName::CXXDestructorName:
707 case DeclarationName::CXXConversionFunctionName:
708 case DeclarationName::CXXUsingDirective:
709 Key.Data = 0;
710 break;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000711 }
712
Douglas Gregor98339b92011-08-25 20:47:51 +0000713 return Key;
714}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000715
Douglas Gregor98339b92011-08-25 20:47:51 +0000716ASTDeclContextNameLookupTrait::data_type
717ASTDeclContextNameLookupTrait::ReadData(internal_key_type,
718 const unsigned char* d,
Nick Lewyckyb346d2f2012-04-16 02:51:46 +0000719 unsigned DataLen) {
Douglas Gregor98339b92011-08-25 20:47:51 +0000720 using namespace clang::io;
721 unsigned NumDecls = ReadUnalignedLE16(d);
Douglas Gregor9b8b20f2012-01-06 16:09:53 +0000722 LE32DeclID *Start = (LE32DeclID *)d;
Douglas Gregor98339b92011-08-25 20:47:51 +0000723 return std::make_pair(Start, Start + NumDecls);
724}
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +0000725
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000726bool ASTReader::ReadDeclContextStorage(ModuleFile &M,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000727 llvm::BitstreamCursor &Cursor,
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000728 const std::pair<uint64_t, uint64_t> &Offsets,
729 DeclContextInfo &Info) {
730 SavedStreamPosition SavedPosition(Cursor);
731 // First the lexical decls.
732 if (Offsets.first != 0) {
733 Cursor.JumpToBit(Offsets.first);
734
735 RecordData Record;
736 const char *Blob;
737 unsigned BlobLen;
738 unsigned Code = Cursor.ReadCode();
739 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
740 if (RecCode != DECL_CONTEXT_LEXICAL) {
741 Error("Expected lexical block");
742 return true;
743 }
744
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +0000745 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob);
746 Info.NumLexicalDecls = BlobLen / sizeof(KindDeclIDPair);
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000747 }
748
749 // Now the lookup table.
750 if (Offsets.second != 0) {
751 Cursor.JumpToBit(Offsets.second);
752
753 RecordData Record;
754 const char *Blob;
755 unsigned BlobLen;
756 unsigned Code = Cursor.ReadCode();
757 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
758 if (RecCode != DECL_CONTEXT_VISIBLE) {
759 Error("Expected visible lookup table block");
760 return true;
761 }
762 Info.NameLookupTableData
763 = ASTDeclContextNameLookupTable::Create(
764 (const unsigned char *)Blob + Record[0],
765 (const unsigned char *)Blob,
Douglas Gregor0d95f772011-08-24 19:03:07 +0000766 ASTDeclContextNameLookupTrait(*this, M));
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +0000767 }
768
769 return false;
770}
771
Chris Lattner5f9e2722011-07-23 10:55:15 +0000772void ASTReader::Error(StringRef Msg) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000773 Error(diag::err_fe_pch_malformed, Msg);
774}
775
776void ASTReader::Error(unsigned DiagID,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000777 StringRef Arg1, StringRef Arg2) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +0000778 if (Diags.isDiagnosticInFlight())
779 Diags.SetDelayedDiagnostic(DiagID, Arg1, Arg2);
780 else
781 Diag(DiagID) << Arg1 << Arg2;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000782}
783
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000784/// \brief Tell the AST listener about the predefines buffers in the chain.
Sebastian Redlc43b54c2010-08-18 23:56:43 +0000785bool ASTReader::CheckPredefinesBuffers() {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000786 if (Listener)
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +0000787 return Listener->ReadPredefinesBuffer(PCHPredefinesBuffers,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000788 ActualOriginalFileName,
Nick Lewycky277a6e72011-02-23 21:16:44 +0000789 SuggestedPredefines,
790 FileMgr);
Douglas Gregore721f952009-04-28 18:58:38 +0000791 return false;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000792}
793
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000794//===----------------------------------------------------------------------===//
795// Source Manager Deserialization
796//===----------------------------------------------------------------------===//
797
Douglas Gregorbd945002009-04-13 16:31:14 +0000798/// \brief Read the line table in the source manager block.
Sebastian Redlc3632732010-10-05 15:59:54 +0000799/// \returns true if there was an error.
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000800bool ASTReader::ParseLineTable(ModuleFile &F,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000801 SmallVectorImpl<uint64_t> &Record) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000802 unsigned Idx = 0;
803 LineTableInfo &LineTable = SourceMgr.getLineTable();
804
805 // Parse the file names
Douglas Gregorff0a9872009-04-13 17:12:42 +0000806 std::map<int, int> FileIDs;
807 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000808 // Extract the file name
809 unsigned FilenameLen = Record[Idx++];
810 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
811 Idx += FilenameLen;
Douglas Gregore650c8c2009-07-07 00:12:59 +0000812 MaybeAddSystemRootToFilename(Filename);
Jay Foad65aa6882011-06-21 15:13:30 +0000813 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
Douglas Gregorbd945002009-04-13 16:31:14 +0000814 }
815
816 // Parse the line entries
817 std::vector<LineEntry> Entries;
818 while (Idx < Record.size()) {
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000819 int FID = Record[Idx++];
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000820 assert(FID >= 0 && "Serialized line entries for non-local file.");
821 // Remap FileID from 1-based old view.
822 FID += F.SLocEntryBaseID - 1;
Douglas Gregorbd945002009-04-13 16:31:14 +0000823
824 // Extract the line entries
825 unsigned NumEntries = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000826 assert(NumEntries && "Numentries is 00000");
Douglas Gregorbd945002009-04-13 16:31:14 +0000827 Entries.clear();
828 Entries.reserve(NumEntries);
829 for (unsigned I = 0; I != NumEntries; ++I) {
830 unsigned FileOffset = Record[Idx++];
831 unsigned LineNo = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000832 int FilenameID = FileIDs[Record[Idx++]];
Mike Stump1eb44332009-09-09 15:08:12 +0000833 SrcMgr::CharacteristicKind FileKind
Douglas Gregorbd945002009-04-13 16:31:14 +0000834 = (SrcMgr::CharacteristicKind)Record[Idx++];
835 unsigned IncludeOffset = Record[Idx++];
836 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
837 FileKind, IncludeOffset));
838 }
Douglas Gregor47d9de62012-06-08 16:40:28 +0000839 LineTable.AddEntry(FileID::get(FID), Entries);
Douglas Gregorbd945002009-04-13 16:31:14 +0000840 }
841
842 return false;
843}
844
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000845namespace {
846
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000847class ASTStatData {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000848public:
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000849 const ino_t ino;
850 const dev_t dev;
851 const mode_t mode;
852 const time_t mtime;
853 const off_t size;
Mike Stump1eb44332009-09-09 15:08:12 +0000854
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000855 ASTStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Chris Lattner74e976b2010-11-23 19:28:12 +0000856 : ino(i), dev(d), mode(mo), mtime(m), size(s) {}
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000857};
858
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000859class ASTStatLookupTrait {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000860 public:
861 typedef const char *external_key_type;
862 typedef const char *internal_key_type;
863
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000864 typedef ASTStatData data_type;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000865
866 static unsigned ComputeHash(const char *path) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000867 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000868 }
869
870 static internal_key_type GetInternalKey(const char *path) { return path; }
871
872 static bool EqualKey(internal_key_type a, internal_key_type b) {
873 return strcmp(a, b) == 0;
874 }
875
876 static std::pair<unsigned, unsigned>
877 ReadKeyDataLength(const unsigned char*& d) {
878 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
879 unsigned DataLen = (unsigned) *d++;
880 return std::make_pair(KeyLen + 1, DataLen);
881 }
882
883 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
884 return (const char *)d;
885 }
886
887 static data_type ReadData(const internal_key_type, const unsigned char *d,
888 unsigned /*DataLen*/) {
889 using namespace clang::io;
890
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000891 ino_t ino = (ino_t) ReadUnalignedLE32(d);
892 dev_t dev = (dev_t) ReadUnalignedLE32(d);
893 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump1eb44332009-09-09 15:08:12 +0000894 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000895 off_t size = (off_t) ReadUnalignedLE64(d);
896 return data_type(ino, dev, mode, mtime, size);
897 }
898};
899
900/// \brief stat() cache for precompiled headers.
901///
902/// This cache is very similar to the stat cache used by pretokenized
903/// headers.
Chris Lattner10e286a2010-11-23 19:19:34 +0000904class ASTStatCache : public FileSystemStatCache {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000905 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000906 CacheTy *Cache;
907
908 unsigned &NumStatHits, &NumStatMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000909public:
Chris Lattner74e976b2010-11-23 19:28:12 +0000910 ASTStatCache(const unsigned char *Buckets, const unsigned char *Base,
911 unsigned &NumStatHits, unsigned &NumStatMisses)
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000912 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
913 Cache = CacheTy::Create(Buckets, Base);
914 }
915
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000916 ~ASTStatCache() { delete Cache; }
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Chris Lattner898a0612010-11-23 21:17:56 +0000918 LookupResult getStat(const char *Path, struct stat &StatBuf,
919 int *FileDescriptor) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000920 // Do the lookup for the file's data in the AST file.
Chris Lattner10e286a2010-11-23 19:19:34 +0000921 CacheTy::iterator I = Cache->find(Path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000922
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000923 // If we don't get a hit in the AST file just forward to 'stat'.
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000924 if (I == Cache->end()) {
925 ++NumStatMisses;
Chris Lattner898a0612010-11-23 21:17:56 +0000926 return statChained(Path, StatBuf, FileDescriptor);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000927 }
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000929 ++NumStatHits;
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000930 ASTStatData Data = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000931
Chris Lattner10e286a2010-11-23 19:19:34 +0000932 StatBuf.st_ino = Data.ino;
933 StatBuf.st_dev = Data.dev;
934 StatBuf.st_mtime = Data.mtime;
935 StatBuf.st_mode = Data.mode;
936 StatBuf.st_size = Data.size;
Chris Lattnerd6f61112010-11-23 20:05:15 +0000937 return CacheExists;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000938 }
939};
940} // end anonymous namespace
941
942
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000943/// \brief Read a source manager block
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000944ASTReader::ASTReadResult ASTReader::ReadSourceManagerBlock(ModuleFile &F) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000945 using namespace SrcMgr;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000946
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000947 llvm::BitstreamCursor &SLocEntryCursor = F.SLocEntryCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +0000948
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000949 // Set the source-location entry cursor to the current position in
950 // the stream. This cursor will be used to read the contents of the
951 // source manager block initially, and then lazily read
952 // source-location entries as needed.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000953 SLocEntryCursor = F.Stream;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000954
955 // The stream itself is going to skip over the source manager block.
Sebastian Redl93fb9ed2010-07-19 20:52:06 +0000956 if (F.Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000957 Error("malformed block record in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000958 return Failure;
959 }
960
961 // Enter the source manager block.
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000962 if (SLocEntryCursor.EnterSubBlock(SOURCE_MANAGER_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000963 Error("malformed source manager block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000964 return Failure;
965 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000966
Douglas Gregor14f79002009-04-10 03:52:48 +0000967 RecordData Record;
968 while (true) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000969 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregor14f79002009-04-10 03:52:48 +0000970 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000971 if (SLocEntryCursor.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000972 Error("error at end of Source Manager block in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000973 return Failure;
974 }
Douglas Gregore1d918e2009-04-10 23:10:45 +0000975 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +0000976 }
Mike Stump1eb44332009-09-09 15:08:12 +0000977
Douglas Gregor14f79002009-04-10 03:52:48 +0000978 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
979 // No known subblocks, always skip them.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000980 SLocEntryCursor.ReadSubBlockID();
981 if (SLocEntryCursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +0000982 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000983 return Failure;
984 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000985 continue;
986 }
Mike Stump1eb44332009-09-09 15:08:12 +0000987
Douglas Gregor14f79002009-04-10 03:52:48 +0000988 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000989 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregor14f79002009-04-10 03:52:48 +0000990 continue;
991 }
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Douglas Gregor14f79002009-04-10 03:52:48 +0000993 // Read a record.
994 const char *BlobStart;
995 unsigned BlobLen;
996 Record.clear();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000997 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000998 default: // Default behavior: ignore.
999 break;
1000
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001001 case SM_SLOC_FILE_ENTRY:
1002 case SM_SLOC_BUFFER_ENTRY:
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001003 case SM_SLOC_EXPANSION_ENTRY:
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001004 // Once we hit one of the source location entries, we're done.
1005 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +00001006 }
1007 }
1008}
1009
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001010/// \brief If a header file is not found at the path that we expect it to be
1011/// and the PCH file was moved from its original location, try to resolve the
1012/// file by assuming that header+PCH were moved together and the header is in
1013/// the same place relative to the PCH.
1014static std::string
1015resolveFileRelativeToOriginalDir(const std::string &Filename,
1016 const std::string &OriginalDir,
1017 const std::string &CurrDir) {
1018 assert(OriginalDir != CurrDir &&
1019 "No point trying to resolve the file if the PCH dir didn't change");
1020 using namespace llvm::sys;
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001021 SmallString<128> filePath(Filename);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001022 fs::make_absolute(filePath);
1023 assert(path::is_absolute(OriginalDir));
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001024 SmallString<128> currPCHPath(CurrDir);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001025
1026 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
1027 fileDirE = path::end(path::parent_path(filePath));
1028 path::const_iterator origDirI = path::begin(OriginalDir),
1029 origDirE = path::end(OriginalDir);
1030 // Skip the common path components from filePath and OriginalDir.
1031 while (fileDirI != fileDirE && origDirI != origDirE &&
1032 *fileDirI == *origDirI) {
1033 ++fileDirI;
1034 ++origDirI;
1035 }
1036 for (; origDirI != origDirE; ++origDirI)
1037 path::append(currPCHPath, "..");
1038 path::append(currPCHPath, fileDirI, fileDirE);
1039 path::append(currPCHPath, path::filename(Filename));
1040 return currPCHPath.str();
1041}
1042
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001043/// \brief Read in the source location entry with the given ID.
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001044ASTReader::ASTReadResult ASTReader::ReadSLocEntryRecord(int ID) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001045 if (ID == 0)
1046 return Success;
1047
Douglas Gregor0cdd7982011-07-21 18:46:38 +00001048 if (unsigned(-ID) - 2 >= getTotalNumSLocs() || ID > 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001049 Error("source location entry ID out-of-range for AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001050 return Failure;
1051 }
1052
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001053 ModuleFile *F = GlobalSLocEntryMap.find(-ID)->second;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001054 F->SLocEntryCursor.JumpToBit(F->SLocEntryOffsets[ID - F->SLocEntryBaseID]);
Sebastian Redlc3632732010-10-05 15:59:54 +00001055 llvm::BitstreamCursor &SLocEntryCursor = F->SLocEntryCursor;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001056 unsigned BaseOffset = F->SLocEntryBaseOffset;
Sebastian Redl9137a522010-07-16 17:50:48 +00001057
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001058 ++NumSLocEntriesRead;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001059 unsigned Code = SLocEntryCursor.ReadCode();
1060 if (Code == llvm::bitc::END_BLOCK ||
1061 Code == llvm::bitc::ENTER_SUBBLOCK ||
1062 Code == llvm::bitc::DEFINE_ABBREV) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001063 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001064 return Failure;
1065 }
1066
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001067 RecordData Record;
1068 const char *BlobStart;
1069 unsigned BlobLen;
1070 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1071 default:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001072 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001073 return Failure;
1074
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001075 case SM_SLOC_FILE_ENTRY: {
Douglas Gregora081da52011-11-16 20:05:18 +00001076 if (Record.size() < 7) {
1077 Error("source location entry is incorrect");
1078 return Failure;
1079 }
1080
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001081 // We will detect whether a file changed and return 'Failure' for it, but
1082 // we will also try to fail gracefully by setting up the SLocEntry.
1083 ASTReader::ASTReadResult Result = Success;
1084
Douglas Gregora081da52011-11-16 20:05:18 +00001085 bool OverriddenBuffer = Record[6];
1086
1087 std::string OrigFilename(BlobStart, BlobStart + BlobLen);
1088 std::string Filename = OrigFilename;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001089 MaybeAddSystemRootToFilename(Filename);
Douglas Gregora4581a12011-11-17 19:08:51 +00001090 const FileEntry *File =
1091 OverriddenBuffer? FileMgr.getVirtualFile(Filename, (off_t)Record[4],
1092 (time_t)Record[5])
1093 : FileMgr.getFile(Filename, /*OpenFile=*/false);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001094 if (File == 0 && !OriginalDir.empty() && !CurrentDir.empty() &&
1095 OriginalDir != CurrentDir) {
1096 std::string resolved = resolveFileRelativeToOriginalDir(Filename,
1097 OriginalDir,
1098 CurrentDir);
1099 if (!resolved.empty())
1100 File = FileMgr.getFile(resolved);
1101 }
Axel Naumann04331162011-01-27 10:55:51 +00001102 if (File == 0)
1103 File = FileMgr.getVirtualFile(Filename, (off_t)Record[4],
1104 (time_t)Record[5]);
Chris Lattnerd3555ae2009-06-15 04:35:16 +00001105 if (File == 0) {
1106 std::string ErrorStr = "could not find file '";
Douglas Gregore650c8c2009-07-07 00:12:59 +00001107 ErrorStr += Filename;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001108 ErrorStr += "' referenced by AST file";
Chris Lattnerd3555ae2009-06-15 04:35:16 +00001109 Error(ErrorStr.c_str());
1110 return Failure;
1111 }
Mike Stump1eb44332009-09-09 15:08:12 +00001112
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001113 if (!DisableValidation &&
1114 ((off_t)Record[4] != File->getSize()
Douglas Gregor9f692a02010-04-09 15:54:22 +00001115#if !defined(LLVM_ON_WIN32)
1116 // In our regression testing, the Windows file system seems to
1117 // have inconsistent modification times that sometimes
1118 // erroneously trigger this error-handling path.
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001119 || (time_t)Record[5] != File->getModificationTime()
Douglas Gregor9f692a02010-04-09 15:54:22 +00001120#endif
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001121 )) {
Argyrios Kyrtzidis8d8f2c22011-04-25 22:23:56 +00001122 Error(diag::err_fe_pch_file_modified, Filename);
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001123 Result = Failure;
Douglas Gregor2d52be52010-03-21 22:49:54 +00001124 }
1125
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001126 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
Douglas Gregor72a9ae12011-07-22 16:00:58 +00001127 if (IncludeLoc.isInvalid() && F->Kind != MK_MainFile) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001128 // This is the module's main file.
1129 IncludeLoc = getImportLocation(F);
1130 }
Argyrios Kyrtzidisff398962012-07-11 20:59:04 +00001131 SrcMgr::CharacteristicKind
1132 FileCharacter = (SrcMgr::CharacteristicKind)Record[2];
1133 FileID FID = SourceMgr.createFileID(File, IncludeLoc, FileCharacter,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001134 ID, BaseOffset + Record[0]);
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001135 SrcMgr::FileInfo &FileInfo =
1136 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile());
Douglas Gregora081da52011-11-16 20:05:18 +00001137 FileInfo.NumCreatedFIDs = Record[7];
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001138 if (Record[3])
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001139 FileInfo.setHasLineDirectives();
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001140
Douglas Gregora081da52011-11-16 20:05:18 +00001141 const DeclID *FirstDecl = F->FileSortedDecls + Record[8];
1142 unsigned NumFileDecls = Record[9];
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001143 if (NumFileDecls) {
1144 assert(F->FileSortedDecls && "FILE_SORTED_DECLS not encountered yet ?");
Argyrios Kyrtzidis9d128d02011-10-31 07:20:08 +00001145 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
1146 NumFileDecls));
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001147 }
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001148
Douglas Gregor35f9ae62011-11-17 01:44:33 +00001149 const SrcMgr::ContentCache *ContentCache
Argyrios Kyrtzidisff398962012-07-11 20:59:04 +00001150 = SourceMgr.getOrCreateContentCache(File,
1151 /*isSystemFile=*/FileCharacter != SrcMgr::C_User);
Douglas Gregor35f9ae62011-11-17 01:44:33 +00001152 if (OverriddenBuffer && !ContentCache->BufferOverridden &&
1153 ContentCache->ContentsEntry == ContentCache->OrigEntry) {
Douglas Gregora081da52011-11-16 20:05:18 +00001154 unsigned Code = SLocEntryCursor.ReadCode();
1155 Record.clear();
1156 unsigned RecCode
1157 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
1158
1159 if (RecCode != SM_SLOC_BUFFER_BLOB) {
1160 Error("AST record has invalid code");
1161 return Failure;
1162 }
1163
1164 llvm::MemoryBuffer *Buffer
1165 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
1166 Filename);
1167 SourceMgr.overrideFileContents(File, Buffer);
1168 }
Argyrios Kyrtzidisa4c29b62012-02-20 23:58:07 +00001169
1170 if (Result == Failure)
1171 return Failure;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001172 break;
1173 }
1174
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001175 case SM_SLOC_BUFFER_ENTRY: {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001176 const char *Name = BlobStart;
1177 unsigned Offset = Record[0];
1178 unsigned Code = SLocEntryCursor.ReadCode();
1179 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001180 unsigned RecCode
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001181 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001182
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001183 if (RecCode != SM_SLOC_BUFFER_BLOB) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001184 Error("AST record has invalid code");
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001185 return Failure;
1186 }
1187
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001188 llvm::MemoryBuffer *Buffer
Douglas Gregora081da52011-11-16 20:05:18 +00001189 = llvm::MemoryBuffer::getMemBuffer(StringRef(BlobStart, BlobLen - 1),
1190 Name);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001191 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID,
1192 BaseOffset + Offset);
Mike Stump1eb44332009-09-09 15:08:12 +00001193
Douglas Gregor6236a292011-12-02 21:56:05 +00001194 if (strcmp(Name, "<built-in>") == 0 && F->Kind == MK_PCH) {
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +00001195 PCHPredefinesBlock Block = {
1196 BufferID,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001197 StringRef(BlobStart, BlobLen - 1)
Sebastian Redl7e9ad8b2010-07-14 17:49:11 +00001198 };
1199 PCHPredefinesBuffers.push_back(Block);
Douglas Gregor92b059e2009-04-28 20:33:11 +00001200 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001201
1202 break;
1203 }
1204
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001205 case SM_SLOC_EXPANSION_ENTRY: {
Sebastian Redlc3632732010-10-05 15:59:54 +00001206 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
Chandler Carruthbf340e42011-07-26 03:03:05 +00001207 SourceMgr.createExpansionLoc(SpellingLoc,
Sebastian Redlc3632732010-10-05 15:59:54 +00001208 ReadSourceLocation(*F, Record[2]),
1209 ReadSourceLocation(*F, Record[3]),
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001210 Record[4],
1211 ID,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001212 BaseOffset + Record[0]);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001213 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001214 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001215 }
1216
1217 return Success;
1218}
1219
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001220/// \brief Find the location where the module F is imported.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001221SourceLocation ASTReader::getImportLocation(ModuleFile *F) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001222 if (F->ImportLoc.isValid())
1223 return F->ImportLoc;
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001224
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001225 // Otherwise we have a PCH. It's considered to be "imported" at the first
1226 // location of its includer.
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001227 if (F->ImportedBy.empty() || !F->ImportedBy[0]) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001228 // Main file is the importer. We assume that it is the first entry in the
1229 // entry table. We can't ask the manager, because at the time of PCH loading
1230 // the main file entry doesn't exist yet.
1231 // The very first entry is the invalid instantiation loc, which takes up
1232 // offsets 0 and 1.
1233 return SourceLocation::getFromRawEncoding(2U);
1234 }
Jonathan D. Turner2e091632011-07-29 18:09:09 +00001235 //return F->Loaders[0]->FirstLoc;
1236 return F->ImportedBy[0]->FirstLoc;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001237}
1238
Chris Lattner6367f6d2009-04-27 01:05:14 +00001239/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1240/// specified cursor. Read the abbreviations that are at the top of the block
1241/// and then leave the cursor pointing into the block.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001242bool ASTReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
Chris Lattner6367f6d2009-04-27 01:05:14 +00001243 unsigned BlockID) {
1244 if (Cursor.EnterSubBlock(BlockID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001245 Error("malformed block record in AST file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001246 return Failure;
1247 }
Mike Stump1eb44332009-09-09 15:08:12 +00001248
Chris Lattner6367f6d2009-04-27 01:05:14 +00001249 while (true) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001250 uint64_t Offset = Cursor.GetCurrentBitNo();
Chris Lattner6367f6d2009-04-27 01:05:14 +00001251 unsigned Code = Cursor.ReadCode();
Michael J. Spencer20249a12010-10-21 03:16:25 +00001252
Chris Lattner6367f6d2009-04-27 01:05:14 +00001253 // We expect all abbrevs to be at the start of the block.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001254 if (Code != llvm::bitc::DEFINE_ABBREV) {
1255 Cursor.JumpToBit(Offset);
Chris Lattner6367f6d2009-04-27 01:05:14 +00001256 return false;
Douglas Gregorecdcb882010-10-20 22:00:55 +00001257 }
Chris Lattner6367f6d2009-04-27 01:05:14 +00001258 Cursor.ReadAbbrevRecord();
1259 }
1260}
1261
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001262void ASTReader::ReadMacroRecord(ModuleFile &F, uint64_t Offset) {
Douglas Gregorecdcb882010-10-20 22:00:55 +00001263 llvm::BitstreamCursor &Stream = F.MacroCursor;
Mike Stump1eb44332009-09-09 15:08:12 +00001264
Douglas Gregor37e26842009-04-21 23:56:24 +00001265 // Keep track of where we are in the stream, then jump back there
1266 // after reading this macro.
1267 SavedStreamPosition SavedPosition(Stream);
1268
1269 Stream.JumpToBit(Offset);
1270 RecordData Record;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001271 SmallVector<IdentifierInfo*, 16> MacroArgs;
Douglas Gregor37e26842009-04-21 23:56:24 +00001272 MacroInfo *Macro = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001273
Douglas Gregor37e26842009-04-21 23:56:24 +00001274 while (true) {
1275 unsigned Code = Stream.ReadCode();
1276 switch (Code) {
1277 case llvm::bitc::END_BLOCK:
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001278 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001279
1280 case llvm::bitc::ENTER_SUBBLOCK:
1281 // No known subblocks, always skip them.
1282 Stream.ReadSubBlockID();
1283 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001284 Error("malformed block record in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001285 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001286 }
1287 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001288
Douglas Gregor37e26842009-04-21 23:56:24 +00001289 case llvm::bitc::DEFINE_ABBREV:
1290 Stream.ReadAbbrevRecord();
1291 continue;
1292 default: break;
1293 }
1294
1295 // Read a record.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001296 const char *BlobStart = 0;
1297 unsigned BlobLen = 0;
Douglas Gregor37e26842009-04-21 23:56:24 +00001298 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001299 PreprocessorRecordTypes RecType =
Michael J. Spencer20249a12010-10-21 03:16:25 +00001300 (PreprocessorRecordTypes)Stream.ReadRecord(Code, Record, BlobStart,
Douglas Gregorecdcb882010-10-20 22:00:55 +00001301 BlobLen);
Douglas Gregor37e26842009-04-21 23:56:24 +00001302 switch (RecType) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001303 case PP_MACRO_OBJECT_LIKE:
1304 case PP_MACRO_FUNCTION_LIKE: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001305 // If we already have a macro, that means that we've hit the end
1306 // of the definition of the macro we were looking for. We're
1307 // done.
1308 if (Macro)
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001309 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001310
Douglas Gregor95eab172011-07-28 20:55:49 +00001311 IdentifierInfo *II = getLocalIdentifier(F, Record[0]);
Douglas Gregor37e26842009-04-21 23:56:24 +00001312 if (II == 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001313 Error("macro must have a name in AST file");
Douglas Gregor3b2257c2011-08-04 18:09:14 +00001314 return;
Douglas Gregor37e26842009-04-21 23:56:24 +00001315 }
Mike Stump1eb44332009-09-09 15:08:12 +00001316
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001317 unsigned NextIndex = 1;
1318 SourceLocation Loc = ReadSourceLocation(F, Record, NextIndex);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001319 MacroInfo *MI = PP.AllocateMacroInfo(Loc);
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001320
1321 SourceLocation UndefLoc = ReadSourceLocation(F, Record, NextIndex);
1322 if (UndefLoc.isValid())
1323 MI->setUndefLoc(UndefLoc);
1324
1325 MI->setIsUsed(Record[NextIndex++]);
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001326 MI->setIsFromAST();
Mike Stump1eb44332009-09-09 15:08:12 +00001327
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001328 bool IsPublic = Record[NextIndex++];
Douglas Gregoraa93a872011-10-17 15:32:29 +00001329 MI->setVisibility(IsPublic, ReadSourceLocation(F, Record, NextIndex));
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001330
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001331 if (RecType == PP_MACRO_FUNCTION_LIKE) {
Douglas Gregor37e26842009-04-21 23:56:24 +00001332 // Decode function-like macro info.
Douglas Gregor7143aab2011-09-01 17:04:32 +00001333 bool isC99VarArgs = Record[NextIndex++];
1334 bool isGNUVarArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001335 MacroArgs.clear();
Douglas Gregor7143aab2011-09-01 17:04:32 +00001336 unsigned NumArgs = Record[NextIndex++];
Douglas Gregor37e26842009-04-21 23:56:24 +00001337 for (unsigned i = 0; i != NumArgs; ++i)
Douglas Gregor7143aab2011-09-01 17:04:32 +00001338 MacroArgs.push_back(getLocalIdentifier(F, Record[NextIndex++]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001339
1340 // Install function-like macro info.
1341 MI->setIsFunctionLike();
1342 if (isC99VarArgs) MI->setIsC99Varargs();
1343 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor75fdb232009-05-22 22:45:36 +00001344 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001345 PP.getPreprocessorAllocator());
Douglas Gregor37e26842009-04-21 23:56:24 +00001346 }
1347
1348 // Finally, install the macro.
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001349 PP.setMacroInfo(II, MI, /*LoadedFromAST=*/true);
Douglas Gregor37e26842009-04-21 23:56:24 +00001350
1351 // Remember that we saw this macro last so that we add the tokens that
1352 // form its body to it.
1353 Macro = MI;
Michael J. Spencer20249a12010-10-21 03:16:25 +00001354
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00001355 if (NextIndex + 1 == Record.size() && PP.getPreprocessingRecord() &&
1356 Record[NextIndex]) {
1357 // We have a macro definition. Register the association
1358 PreprocessedEntityID
1359 GlobalID = getGlobalPreprocessedEntityID(F, Record[NextIndex]);
1360 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
1361 PPRec.RegisterMacroDefinition(Macro,
1362 PPRec.getPPEntityID(GlobalID-1, /*isLoaded=*/true));
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001363 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001364
Douglas Gregor37e26842009-04-21 23:56:24 +00001365 ++NumMacrosRead;
1366 break;
1367 }
Mike Stump1eb44332009-09-09 15:08:12 +00001368
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001369 case PP_TOKEN: {
Douglas Gregor37e26842009-04-21 23:56:24 +00001370 // If we see a TOKEN before a PP_MACRO_*, then the file is
1371 // erroneous, just pretend we didn't see this.
1372 if (Macro == 0) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Douglas Gregor37e26842009-04-21 23:56:24 +00001374 Token Tok;
1375 Tok.startToken();
Sebastian Redlc3632732010-10-05 15:59:54 +00001376 Tok.setLocation(ReadSourceLocation(F, Record[0]));
Douglas Gregor37e26842009-04-21 23:56:24 +00001377 Tok.setLength(Record[1]);
Douglas Gregor95eab172011-07-28 20:55:49 +00001378 if (IdentifierInfo *II = getLocalIdentifier(F, Record[2]))
Douglas Gregor37e26842009-04-21 23:56:24 +00001379 Tok.setIdentifierInfo(II);
1380 Tok.setKind((tok::TokenKind)Record[3]);
1381 Tok.setFlag((Token::TokenFlags)Record[4]);
1382 Macro->AddTokenToBody(Tok);
1383 break;
1384 }
David Blaikie7530c032012-01-17 06:56:22 +00001385 }
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001386 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001387}
1388
Douglas Gregor86c67d82011-07-28 22:39:26 +00001389PreprocessedEntityID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001390ASTReader::getGlobalPreprocessedEntityID(ModuleFile &M, unsigned LocalID) const {
Argyrios Kyrtzidis1f6d2252011-09-19 20:40:02 +00001391 ContinuousRangeMap<uint32_t, int, 2>::const_iterator
Douglas Gregor272b6bc2011-08-04 18:56:47 +00001392 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS);
1393 assert(I != M.PreprocessedEntityRemap.end()
1394 && "Invalid index into preprocessed entity index remap");
1395
1396 return LocalID + I->second;
Douglas Gregor86c67d82011-07-28 22:39:26 +00001397}
1398
Douglas Gregor98339b92011-08-25 20:47:51 +00001399unsigned HeaderFileInfoTrait::ComputeHash(const char *path) {
1400 return llvm::HashString(llvm::sys::path::filename(path));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001401}
Douglas Gregor98339b92011-08-25 20:47:51 +00001402
1403HeaderFileInfoTrait::internal_key_type
1404HeaderFileInfoTrait::GetInternalKey(const char *path) { return path; }
1405
1406bool HeaderFileInfoTrait::EqualKey(internal_key_type a, internal_key_type b) {
1407 if (strcmp(a, b) == 0)
1408 return true;
1409
1410 if (llvm::sys::path::filename(a) != llvm::sys::path::filename(b))
1411 return false;
Douglas Gregor99a922b2011-12-09 16:22:07 +00001412
1413 // Determine whether the actual files are equivalent.
1414 bool Result = false;
1415 if (llvm::sys::fs::equivalent(a, b, Result))
Douglas Gregor98339b92011-08-25 20:47:51 +00001416 return false;
1417
Douglas Gregor99a922b2011-12-09 16:22:07 +00001418 return Result;
Douglas Gregor98339b92011-08-25 20:47:51 +00001419}
1420
1421std::pair<unsigned, unsigned>
1422HeaderFileInfoTrait::ReadKeyDataLength(const unsigned char*& d) {
1423 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
1424 unsigned DataLen = (unsigned) *d++;
1425 return std::make_pair(KeyLen + 1, DataLen);
1426}
1427
1428HeaderFileInfoTrait::data_type
1429HeaderFileInfoTrait::ReadData(const internal_key_type, const unsigned char *d,
1430 unsigned DataLen) {
1431 const unsigned char *End = d + DataLen;
1432 using namespace clang::io;
1433 HeaderFileInfo HFI;
1434 unsigned Flags = *d++;
1435 HFI.isImport = (Flags >> 5) & 0x01;
1436 HFI.isPragmaOnce = (Flags >> 4) & 0x01;
1437 HFI.DirInfo = (Flags >> 2) & 0x03;
1438 HFI.Resolved = (Flags >> 1) & 0x01;
1439 HFI.IndexHeaderMapHeader = Flags & 0x01;
1440 HFI.NumIncludes = ReadUnalignedLE16(d);
Douglas Gregor541ba162011-10-17 18:53:12 +00001441 HFI.ControllingMacroID = Reader.getGlobalIdentifierID(M,
1442 ReadUnalignedLE32(d));
Douglas Gregor98339b92011-08-25 20:47:51 +00001443 if (unsigned FrameworkOffset = ReadUnalignedLE32(d)) {
1444 // The framework offset is 1 greater than the actual offset,
1445 // since 0 is used as an indicator for "no framework name".
1446 StringRef FrameworkName(FrameworkStrings + FrameworkOffset - 1);
1447 HFI.Framework = HS->getUniqueFrameworkName(FrameworkName);
1448 }
1449
1450 assert(End == d && "Wrong data length in HeaderFileInfo deserialization");
1451 (void)End;
1452
1453 // This HeaderFileInfo was externally loaded.
1454 HFI.External = true;
1455 return HFI;
1456}
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001457
Douglas Gregor13292642011-12-02 15:45:10 +00001458void ASTReader::setIdentifierIsMacro(IdentifierInfo *II, ModuleFile &F,
1459 uint64_t LocalOffset, bool Visible) {
1460 if (Visible) {
1461 // Note that this identifier has a macro definition.
1462 II->setHasMacroDefinition(true);
1463 }
Douglas Gregor295a2a62010-10-30 00:23:06 +00001464
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001465 // Adjust the offset to a global offset.
Douglas Gregor2d2689a2011-07-28 21:16:51 +00001466 UnreadMacroRecordOffsets[II] = F.GlobalBitOffset + LocalOffset;
Douglas Gregor295a2a62010-10-30 00:23:06 +00001467}
1468
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001469void ASTReader::ReadDefinedMacros() {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001470 for (ModuleReverseIterator I = ModuleMgr.rbegin(),
1471 E = ModuleMgr.rend(); I != E; ++I) {
1472 llvm::BitstreamCursor &MacroCursor = (*I)->MacroCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00001473
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001474 // If there was no preprocessor block, skip this file.
1475 if (!MacroCursor.getBitStreamReader())
1476 continue;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001477
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001478 llvm::BitstreamCursor Cursor = MacroCursor;
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00001479 Cursor.JumpToBit((*I)->MacroStartOffset);
Michael J. Spencer20249a12010-10-21 03:16:25 +00001480
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001481 RecordData Record;
1482 while (true) {
1483 unsigned Code = Cursor.ReadCode();
Douglas Gregorecdcb882010-10-20 22:00:55 +00001484 if (Code == llvm::bitc::END_BLOCK)
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001485 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001486
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001487 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1488 // No known subblocks, always skip them.
1489 Cursor.ReadSubBlockID();
1490 if (Cursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001491 Error("malformed block record in AST file");
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001492 return;
1493 }
1494 continue;
1495 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001496
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001497 if (Code == llvm::bitc::DEFINE_ABBREV) {
1498 Cursor.ReadAbbrevRecord();
1499 continue;
1500 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001501
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001502 // Read a record.
1503 const char *BlobStart;
1504 unsigned BlobLen;
1505 Record.clear();
1506 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1507 default: // Default behavior: ignore.
1508 break;
Douglas Gregor88a35862010-01-04 19:18:44 +00001509
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001510 case PP_MACRO_OBJECT_LIKE:
1511 case PP_MACRO_FUNCTION_LIKE:
Douglas Gregor95eab172011-07-28 20:55:49 +00001512 getLocalIdentifier(**I, Record[0]);
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001513 break;
1514
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001515 case PP_TOKEN:
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001516 // Ignore tokens.
1517 break;
Sebastian Redld27d3fc2010-07-21 22:31:37 +00001518 }
Douglas Gregor88a35862010-01-04 19:18:44 +00001519 }
1520 }
Douglas Gregor295a2a62010-10-30 00:23:06 +00001521
1522 // Drain the unread macro-record offsets map.
1523 while (!UnreadMacroRecordOffsets.empty())
1524 LoadMacroDefinition(UnreadMacroRecordOffsets.begin());
1525}
1526
1527void ASTReader::LoadMacroDefinition(
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001528 llvm::DenseMap<IdentifierInfo *, uint64_t>::iterator Pos) {
Douglas Gregor295a2a62010-10-30 00:23:06 +00001529 assert(Pos != UnreadMacroRecordOffsets.end() && "Unknown macro definition");
Douglas Gregor295a2a62010-10-30 00:23:06 +00001530 uint64_t Offset = Pos->second;
1531 UnreadMacroRecordOffsets.erase(Pos);
1532
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001533 RecordLocation Loc = getLocalBitOffset(Offset);
1534 ReadMacroRecord(*Loc.F, Loc.Offset);
Douglas Gregor295a2a62010-10-30 00:23:06 +00001535}
1536
1537void ASTReader::LoadMacroDefinition(IdentifierInfo *II) {
1538 llvm::DenseMap<IdentifierInfo *, uint64_t>::iterator Pos
1539 = UnreadMacroRecordOffsets.find(II);
1540 LoadMacroDefinition(Pos);
Douglas Gregor88a35862010-01-04 19:18:44 +00001541}
1542
Douglas Gregoreee242f2011-10-27 09:33:13 +00001543namespace {
1544 /// \brief Visitor class used to look up identifirs in an AST file.
1545 class IdentifierLookupVisitor {
1546 StringRef Name;
Douglas Gregor057df202012-01-18 20:56:22 +00001547 unsigned PriorGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001548 IdentifierInfo *Found;
1549 public:
Douglas Gregor057df202012-01-18 20:56:22 +00001550 IdentifierLookupVisitor(StringRef Name, unsigned PriorGeneration)
1551 : Name(Name), PriorGeneration(PriorGeneration), Found() { }
Douglas Gregoreee242f2011-10-27 09:33:13 +00001552
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001553 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00001554 IdentifierLookupVisitor *This
1555 = static_cast<IdentifierLookupVisitor *>(UserData);
1556
Douglas Gregor057df202012-01-18 20:56:22 +00001557 // If we've already searched this module file, skip it now.
1558 if (M.Generation <= This->PriorGeneration)
1559 return true;
1560
Douglas Gregoreee242f2011-10-27 09:33:13 +00001561 ASTIdentifierLookupTable *IdTable
1562 = (ASTIdentifierLookupTable *)M.IdentifierLookupTable;
1563 if (!IdTable)
1564 return false;
1565
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001566 ASTIdentifierLookupTrait Trait(IdTable->getInfoObj().getReader(),
1567 M, This->Found);
1568
Douglas Gregoreee242f2011-10-27 09:33:13 +00001569 std::pair<const char*, unsigned> Key(This->Name.begin(),
1570 This->Name.size());
Douglas Gregor5d5051f2012-01-24 15:24:38 +00001571 ASTIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Trait);
Douglas Gregoreee242f2011-10-27 09:33:13 +00001572 if (Pos == IdTable->end())
1573 return false;
1574
1575 // Dereferencing the iterator has the effect of building the
1576 // IdentifierInfo node and populating it with the various
1577 // declarations it needs.
1578 This->Found = *Pos;
1579 return true;
1580 }
1581
1582 // \brief Retrieve the identifier info found within the module
1583 // files.
1584 IdentifierInfo *getIdentifierInfo() const { return Found; }
1585 };
1586}
1587
1588void ASTReader::updateOutOfDateIdentifier(IdentifierInfo &II) {
Douglas Gregor057df202012-01-18 20:56:22 +00001589 unsigned PriorGeneration = 0;
David Blaikie4e4d0842012-03-11 07:00:24 +00001590 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001591 PriorGeneration = IdentifierGeneration[&II];
1592
1593 IdentifierLookupVisitor Visitor(II.getName(), PriorGeneration);
1594 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
1595 markIdentifierUpToDate(&II);
1596}
1597
1598void ASTReader::markIdentifierUpToDate(IdentifierInfo *II) {
1599 if (!II)
1600 return;
1601
1602 II->setOutOfDate(false);
1603
1604 // Update the generation for this identifier.
David Blaikie4e4d0842012-03-11 07:00:24 +00001605 if (getContext().getLangOpts().Modules)
Douglas Gregor057df202012-01-18 20:56:22 +00001606 IdentifierGeneration[II] = CurrentGeneration;
Douglas Gregoreee242f2011-10-27 09:33:13 +00001607}
1608
Chris Lattner5f9e2722011-07-23 10:55:15 +00001609const FileEntry *ASTReader::getFileEntry(StringRef filenameStrRef) {
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00001610 std::string Filename = filenameStrRef;
1611 MaybeAddSystemRootToFilename(Filename);
1612 const FileEntry *File = FileMgr.getFile(Filename);
1613 if (File == 0 && !OriginalDir.empty() && !CurrentDir.empty() &&
1614 OriginalDir != CurrentDir) {
1615 std::string resolved = resolveFileRelativeToOriginalDir(Filename,
1616 OriginalDir,
1617 CurrentDir);
1618 if (!resolved.empty())
1619 File = FileMgr.getFile(resolved);
1620 }
1621
1622 return File;
1623}
1624
Douglas Gregore650c8c2009-07-07 00:12:59 +00001625/// \brief If we are loading a relocatable PCH file, and the filename is
1626/// not an absolute path, add the system root to the beginning of the file
1627/// name.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001628void ASTReader::MaybeAddSystemRootToFilename(std::string &Filename) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001629 // If this is not a relocatable PCH file, there's nothing to do.
1630 if (!RelocatablePCH)
1631 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001632
Michael J. Spencer256053b2010-12-17 21:22:22 +00001633 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
Douglas Gregore650c8c2009-07-07 00:12:59 +00001634 return;
1635
Douglas Gregor832d6202011-07-22 16:35:34 +00001636 if (isysroot.empty()) {
Douglas Gregore650c8c2009-07-07 00:12:59 +00001637 // If no system root was given, default to '/'
1638 Filename.insert(Filename.begin(), '/');
1639 return;
1640 }
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Douglas Gregor832d6202011-07-22 16:35:34 +00001642 unsigned Length = isysroot.size();
Douglas Gregore650c8c2009-07-07 00:12:59 +00001643 if (isysroot[Length - 1] != '/')
1644 Filename.insert(Filename.begin(), '/');
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Douglas Gregor832d6202011-07-22 16:35:34 +00001646 Filename.insert(Filename.begin(), isysroot.begin(), isysroot.end());
Douglas Gregore650c8c2009-07-07 00:12:59 +00001647}
1648
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001649ASTReader::ASTReadResult
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001650ASTReader::ReadASTBlock(ModuleFile &F) {
Sebastian Redl9137a522010-07-16 17:50:48 +00001651 llvm::BitstreamCursor &Stream = F.Stream;
1652
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001653 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001654 Error("malformed block record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001655 return Failure;
1656 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001657
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001658 // Read all of the records and blocks for the ASt file.
Douglas Gregor8038d512009-04-10 17:25:41 +00001659 RecordData Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001660 while (!Stream.AtEndOfStream()) {
1661 unsigned Code = Stream.ReadCode();
1662 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001663 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001664 Error("error at end of module block in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001665 return Failure;
1666 }
Chris Lattner7356a312009-04-11 21:15:38 +00001667
Argyrios Kyrtzidis1f941242012-09-21 01:30:00 +00001668 DeclContext *DC = Context.getTranslationUnitDecl();
1669 if (!DC->hasExternalVisibleStorage() && DC->hasExternalLexicalStorage())
1670 DC->setMustBuildLookupTable();
1671
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001672 return Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001673 }
1674
1675 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1676 switch (Stream.ReadSubBlockID()) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001677 case DECLTYPES_BLOCK_ID:
Chris Lattner6367f6d2009-04-27 01:05:14 +00001678 // We lazily load the decls block, but we want to set up the
1679 // DeclsCursor cursor to point into it. Clone our current bitcode
1680 // cursor to it, enter the block and read the abbrevs in that block.
1681 // With the main cursor, we just skip over it.
Sebastian Redl9137a522010-07-16 17:50:48 +00001682 F.DeclsCursor = Stream;
Chris Lattner6367f6d2009-04-27 01:05:14 +00001683 if (Stream.SkipBlock() || // Skip with the main cursor.
1684 // Read the abbrevs.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001685 ReadBlockAbbrevs(F.DeclsCursor, DECLTYPES_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001686 Error("malformed block record in AST file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001687 return Failure;
1688 }
1689 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001690
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00001691 case DECL_UPDATES_BLOCK_ID:
1692 if (Stream.SkipBlock()) {
1693 Error("malformed block record in AST file");
1694 return Failure;
1695 }
1696 break;
1697
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001698 case PREPROCESSOR_BLOCK_ID:
Sebastian Redl9137a522010-07-16 17:50:48 +00001699 F.MacroCursor = Stream;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001700 if (!PP.getExternalSource())
1701 PP.setExternalSource(this);
Douglas Gregor88a35862010-01-04 19:18:44 +00001702
Douglas Gregorecdcb882010-10-20 22:00:55 +00001703 if (Stream.SkipBlock() ||
1704 ReadBlockAbbrevs(F.MacroCursor, PREPROCESSOR_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001705 Error("malformed block record in AST file");
Chris Lattner7356a312009-04-11 21:15:38 +00001706 return Failure;
1707 }
Douglas Gregorecdcb882010-10-20 22:00:55 +00001708 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo();
Chris Lattner7356a312009-04-11 21:15:38 +00001709 break;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001710
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001711 case PREPROCESSOR_DETAIL_BLOCK_ID:
1712 F.PreprocessorDetailCursor = Stream;
1713 if (Stream.SkipBlock() ||
1714 ReadBlockAbbrevs(F.PreprocessorDetailCursor,
1715 PREPROCESSOR_DETAIL_BLOCK_ID)) {
1716 Error("malformed preprocessor detail record in AST file");
1717 return Failure;
1718 }
1719 F.PreprocessorDetailStartOffset
1720 = F.PreprocessorDetailCursor.GetCurrentBitNo();
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001721
1722 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00001723 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001724 if (!PP.getPreprocessingRecord()->getExternalSource())
1725 PP.getPreprocessingRecord()->SetExternalSource(*this);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00001726 break;
1727
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001728 case SOURCE_MANAGER_BLOCK_ID:
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001729 switch (ReadSourceManagerBlock(F)) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00001730 case Success:
1731 break;
1732
1733 case Failure:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001734 Error("malformed source manager block in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001735 return Failure;
Douglas Gregore1d918e2009-04-10 23:10:45 +00001736
1737 case IgnorePCH:
1738 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001739 }
Douglas Gregor14f79002009-04-10 03:52:48 +00001740 break;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001741
1742 case SUBMODULE_BLOCK_ID:
1743 switch (ReadSubmoduleBlock(F)) {
1744 case Success:
1745 break;
1746
1747 case Failure:
1748 Error("malformed submodule block in AST file");
1749 return Failure;
1750
1751 case IgnorePCH:
1752 return IgnorePCH;
1753 }
1754 break;
1755
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00001756 case COMMENTS_BLOCK_ID: {
1757 llvm::BitstreamCursor C = Stream;
1758 if (Stream.SkipBlock() ||
1759 ReadBlockAbbrevs(C, COMMENTS_BLOCK_ID)) {
1760 Error("malformed comments block in AST file");
1761 return Failure;
1762 }
1763 CommentsCursors.push_back(std::make_pair(C, &F));
1764 break;
1765 }
1766
Douglas Gregor392ed2b2011-11-30 17:33:56 +00001767 default:
1768 if (!Stream.SkipBlock())
1769 break;
1770 Error("malformed block record in AST file");
1771 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001772 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001773 continue;
1774 }
1775
1776 if (Code == llvm::bitc::DEFINE_ABBREV) {
1777 Stream.ReadAbbrevRecord();
1778 continue;
1779 }
1780
1781 // Read and process a record.
1782 Record.clear();
Douglas Gregor2bec0412009-04-10 21:16:55 +00001783 const char *BlobStart = 0;
1784 unsigned BlobLen = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001785 switch ((ASTRecordTypes)Stream.ReadRecord(Code, Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00001786 &BlobStart, &BlobLen)) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001787 default: // Default behavior: ignore.
1788 break;
1789
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001790 case METADATA: {
1791 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
1792 Diag(Record[0] < VERSION_MAJOR? diag::warn_pch_version_too_old
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001793 : diag::warn_pch_version_too_new);
1794 return IgnorePCH;
1795 }
1796
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00001797 bool hasErrors = Record[5];
1798 if (hasErrors && !DisableValidation && !AllowASTWithCompilerErrors) {
1799 Diag(diag::err_pch_with_compiler_errors);
1800 return IgnorePCH;
1801 }
1802
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001803 RelocatablePCH = Record[4];
1804 if (Listener) {
1805 std::string TargetTriple(BlobStart, BlobLen);
1806 if (Listener->ReadTargetTriple(TargetTriple))
1807 return IgnorePCH;
1808 }
1809 break;
1810 }
1811
Douglas Gregore95b9192011-08-17 21:07:30 +00001812 case IMPORTS: {
1813 // Load each of the imported PCH files.
1814 unsigned Idx = 0, N = Record.size();
1815 while (Idx < N) {
1816 // Read information about the AST file.
1817 ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
1818 unsigned Length = Record[Idx++];
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001819 SmallString<128> ImportedFile(Record.begin() + Idx,
Douglas Gregore95b9192011-08-17 21:07:30 +00001820 Record.begin() + Idx + Length);
1821 Idx += Length;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001822
Douglas Gregore95b9192011-08-17 21:07:30 +00001823 // Load the AST file.
Douglas Gregor10bc00f2011-08-18 04:12:04 +00001824 switch(ReadASTCore(ImportedFile, ImportedKind, &F)) {
Douglas Gregore95b9192011-08-17 21:07:30 +00001825 case Failure: return Failure;
1826 // If we have to ignore the dependency, we'll have to ignore this too.
1827 case IgnorePCH: return IgnorePCH;
1828 case Success: break;
1829 }
1830 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00001831 break;
1832 }
1833
Douglas Gregora119da02011-08-02 16:26:37 +00001834 case TYPE_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00001835 if (F.LocalNumTypes != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001836 Error("duplicate TYPE_OFFSET record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001837 return Failure;
1838 }
Sebastian Redl12d6da02010-07-19 22:06:55 +00001839 F.TypeOffsets = (const uint32_t *)BlobStart;
1840 F.LocalNumTypes = Record[0];
Douglas Gregore3605012011-08-02 18:32:54 +00001841 unsigned LocalBaseTypeIndex = Record[1];
1842 F.BaseTypeIndex = getTotalNumTypes();
Douglas Gregor1e849b62011-07-29 00:21:44 +00001843
Douglas Gregora119da02011-08-02 16:26:37 +00001844 if (F.LocalNumTypes > 0) {
1845 // Introduce the global -> local mapping for types within this module.
1846 GlobalTypeMap.insert(std::make_pair(getTotalNumTypes(), &F));
1847
1848 // Introduce the local -> global mapping for types within this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001849 F.TypeRemap.insertOrReplace(
1850 std::make_pair(LocalBaseTypeIndex,
1851 F.BaseTypeIndex - LocalBaseTypeIndex));
Douglas Gregora119da02011-08-02 16:26:37 +00001852
1853 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes);
1854 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001855 break;
Douglas Gregora119da02011-08-02 16:26:37 +00001856 }
1857
Douglas Gregor496c7092011-08-03 15:48:04 +00001858 case DECL_OFFSET: {
Sebastian Redl12d6da02010-07-19 22:06:55 +00001859 if (F.LocalNumDecls != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001860 Error("duplicate DECL_OFFSET record in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001861 return Failure;
1862 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001863 F.DeclOffsets = (const DeclOffset *)BlobStart;
Sebastian Redl12d6da02010-07-19 22:06:55 +00001864 F.LocalNumDecls = Record[0];
Douglas Gregor496c7092011-08-03 15:48:04 +00001865 unsigned LocalBaseDeclID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00001866 F.BaseDeclID = getTotalNumDecls();
Douglas Gregor96e973f2011-07-20 00:27:43 +00001867
Douglas Gregor496c7092011-08-03 15:48:04 +00001868 if (F.LocalNumDecls > 0) {
1869 // Introduce the global -> local mapping for declarations within this
1870 // module.
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001871 GlobalDeclMap.insert(
1872 std::make_pair(getTotalNumDecls() + NUM_PREDEF_DECL_IDS, &F));
Douglas Gregor496c7092011-08-03 15:48:04 +00001873
1874 // Introduce the local -> global mapping for declarations within this
1875 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001876 F.DeclRemap.insertOrReplace(
1877 std::make_pair(LocalBaseDeclID, F.BaseDeclID - LocalBaseDeclID));
Douglas Gregor496c7092011-08-03 15:48:04 +00001878
Douglas Gregora1be2782011-12-17 23:38:30 +00001879 // Introduce the global -> local mapping for declarations within this
1880 // module.
1881 F.GlobalToLocalDeclIDs[&F] = LocalBaseDeclID;
1882
Douglas Gregor496c7092011-08-03 15:48:04 +00001883 DeclsLoaded.resize(DeclsLoaded.size() + F.LocalNumDecls);
1884 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001885 break;
Douglas Gregor496c7092011-08-03 15:48:04 +00001886 }
1887
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001888 case TU_UPDATE_LEXICAL: {
Douglas Gregor35942772011-09-09 21:34:22 +00001889 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00001890 DeclContextInfo &Info = F.DeclContextInfos[TU];
1891 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair *>(BlobStart);
1892 Info.NumLexicalDecls
1893 = static_cast<unsigned int>(BlobLen / sizeof(KindDeclIDPair));
Douglas Gregor35942772011-09-09 21:34:22 +00001894 TU->setHasExternalLexicalStorage(true);
Sebastian Redld692af72010-07-27 18:24:41 +00001895 break;
1896 }
1897
Sebastian Redle1dde812010-08-24 00:50:04 +00001898 case UPDATE_VISIBLE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00001899 unsigned Idx = 0;
1900 serialization::DeclID ID = ReadDeclID(F, Record, Idx);
Benjamin Kramerb1758c62012-04-15 12:36:49 +00001901 ASTDeclContextNameLookupTable *Table =
1902 ASTDeclContextNameLookupTable::Create(
Douglas Gregor496c7092011-08-03 15:48:04 +00001903 (const unsigned char *)BlobStart + Record[Idx++],
Sebastian Redle1dde812010-08-24 00:50:04 +00001904 (const unsigned char *)BlobStart,
Douglas Gregor393f2492011-07-22 00:38:23 +00001905 ASTDeclContextNameLookupTrait(*this, F));
Douglas Gregor35942772011-09-09 21:34:22 +00001906 if (ID == PREDEF_DECL_TRANSLATION_UNIT_ID) { // Is it the TU?
1907 DeclContext *TU = Context.getTranslationUnitDecl();
Douglas Gregor0d95f772011-08-24 19:03:07 +00001908 F.DeclContextInfos[TU].NameLookupTableData = Table;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001909 TU->setHasExternalVisibleStorage(true);
Sebastian Redle1dde812010-08-24 00:50:04 +00001910 } else
Douglas Gregor496c7092011-08-03 15:48:04 +00001911 PendingVisibleUpdates[ID].push_back(std::make_pair(Table, &F));
Sebastian Redle1dde812010-08-24 00:50:04 +00001912 break;
1913 }
1914
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001915 case LANGUAGE_OPTIONS:
Douglas Gregorfae3b2f2010-07-27 00:27:13 +00001916 if (ParseLanguageOptions(Record) && !DisableValidation)
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001917 return IgnorePCH;
1918 break;
Douglas Gregor2bec0412009-04-10 21:16:55 +00001919
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001920 case IDENTIFIER_TABLE:
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001921 F.IdentifierTableData = BlobStart;
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001922 if (Record[0]) {
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001923 F.IdentifierLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001924 = ASTIdentifierLookupTable::Create(
Sebastian Redl93fb9ed2010-07-19 20:52:06 +00001925 (const unsigned char *)F.IdentifierTableData + Record[0],
1926 (const unsigned char *)F.IdentifierTableData,
Sebastian Redlc3632732010-10-05 15:59:54 +00001927 ASTIdentifierLookupTrait(*this, F));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00001928
1929 PP.getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001930 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001931 break;
1932
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001933 case IDENTIFIER_OFFSET: {
Sebastian Redl2da08f92010-07-19 22:28:42 +00001934 if (F.LocalNumIdentifiers != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001935 Error("duplicate IDENTIFIER_OFFSET record in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00001936 return Failure;
1937 }
Sebastian Redl2da08f92010-07-19 22:28:42 +00001938 F.IdentifierOffsets = (const uint32_t *)BlobStart;
1939 F.LocalNumIdentifiers = Record[0];
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001940 unsigned LocalBaseIdentifierID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00001941 F.BaseIdentifierID = getTotalNumIdentifiers();
Douglas Gregor67268d02011-07-20 00:59:32 +00001942
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001943 if (F.LocalNumIdentifiers > 0) {
1944 // Introduce the global -> local mapping for identifiers within this
1945 // module.
1946 GlobalIdentifierMap.insert(std::make_pair(getTotalNumIdentifiers() + 1,
1947 &F));
1948
1949 // Introduce the local -> global mapping for identifiers within this
1950 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00001951 F.IdentifierRemap.insertOrReplace(
1952 std::make_pair(LocalBaseIdentifierID,
1953 F.BaseIdentifierID - LocalBaseIdentifierID));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001954
1955 IdentifiersLoaded.resize(IdentifiersLoaded.size()
1956 + F.LocalNumIdentifiers);
1957 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001958 break;
Douglas Gregor6ec60e02011-08-03 21:49:18 +00001959 }
1960
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001961 case EXTERNAL_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001962 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1963 ExternalDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorfdd01722009-04-14 00:24:19 +00001964 break;
Douglas Gregor3e1af842009-04-17 22:13:46 +00001965
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001966 case SPECIAL_TYPES:
Douglas Gregor393f2492011-07-22 00:38:23 +00001967 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1968 SpecialTypes.push_back(getGlobalTypeID(F, Record[I]));
Douglas Gregorad1de002009-04-18 05:55:16 +00001969 break;
1970
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001971 case STATISTICS:
Sebastian Redl518d8cb2010-07-20 21:20:32 +00001972 TotalNumStatements += Record[0];
1973 TotalNumMacros += Record[1];
1974 TotalLexicalDeclContexts += Record[2];
1975 TotalVisibleDeclContexts += Record[3];
Douglas Gregor3e1af842009-04-17 22:13:46 +00001976 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001977
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001978 case UNUSED_FILESCOPED_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001979 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1980 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
Tanya Lattnere6bbc012010-02-12 00:07:30 +00001981 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001982
Sean Huntebcbe1d2011-05-04 23:29:54 +00001983 case DELEGATING_CTORS:
Douglas Gregor409448c2011-07-21 22:35:25 +00001984 for (unsigned I = 0, N = Record.size(); I != N; ++I)
1985 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00001986 break;
1987
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001988 case WEAK_UNDECLARED_IDENTIFIERS:
Douglas Gregor31e37b22011-07-28 18:09:57 +00001989 if (Record.size() % 4 != 0) {
1990 Error("invalid weak identifiers record");
1991 return Failure;
1992 }
1993
1994 // FIXME: Ignore weak undeclared identifiers from non-original PCH
1995 // files. This isn't the way to do it :)
1996 WeakUndeclaredIdentifiers.clear();
1997
1998 // Translate the weak, undeclared identifiers into global IDs.
1999 for (unsigned I = 0, N = Record.size(); I < N; /* in loop */) {
2000 WeakUndeclaredIdentifiers.push_back(
2001 getGlobalIdentifierID(F, Record[I++]));
2002 WeakUndeclaredIdentifiers.push_back(
2003 getGlobalIdentifierID(F, Record[I++]));
2004 WeakUndeclaredIdentifiers.push_back(
2005 ReadSourceLocation(F, Record, I).getRawEncoding());
2006 WeakUndeclaredIdentifiers.push_back(Record[I++]);
2007 }
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002008 break;
2009
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002010 case LOCALLY_SCOPED_EXTERNAL_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002011 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2012 LocallyScopedExternalDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregor14c22f22009-04-22 22:18:58 +00002013 break;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002014
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002015 case SELECTOR_OFFSETS: {
Sebastian Redl059612d2010-08-03 21:58:15 +00002016 F.SelectorOffsets = (const uint32_t *)BlobStart;
Sebastian Redl725cd962010-08-04 20:40:17 +00002017 F.LocalNumSelectors = Record[0];
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002018 unsigned LocalBaseSelectorID = Record[1];
Douglas Gregor9827a802011-07-29 00:56:45 +00002019 F.BaseSelectorID = getTotalNumSelectors();
Douglas Gregor96958cb2011-07-20 01:10:58 +00002020
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002021 if (F.LocalNumSelectors > 0) {
2022 // Introduce the global -> local mapping for selectors within this
2023 // module.
2024 GlobalSelectorMap.insert(std::make_pair(getTotalNumSelectors()+1, &F));
2025
2026 // Introduce the local -> global mapping for selectors within this
2027 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002028 F.SelectorRemap.insertOrReplace(
2029 std::make_pair(LocalBaseSelectorID,
2030 F.BaseSelectorID - LocalBaseSelectorID));
Douglas Gregor83941df2009-04-25 17:48:32 +00002031
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002032 SelectorsLoaded.resize(SelectorsLoaded.size() + F.LocalNumSelectors);
2033 }
2034 break;
2035 }
2036
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002037 case METHOD_POOL:
Sebastian Redl725cd962010-08-04 20:40:17 +00002038 F.SelectorLookupTableData = (const unsigned char *)BlobStart;
Douglas Gregor83941df2009-04-25 17:48:32 +00002039 if (Record[0])
Sebastian Redl725cd962010-08-04 20:40:17 +00002040 F.SelectorLookupTable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002041 = ASTSelectorLookupTable::Create(
Sebastian Redl725cd962010-08-04 20:40:17 +00002042 F.SelectorLookupTableData + Record[0],
2043 F.SelectorLookupTableData,
Douglas Gregor409448c2011-07-21 22:35:25 +00002044 ASTSelectorLookupTrait(*this, F));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00002045 TotalNumMethodPoolEntries += Record[1];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002046 break;
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002047
Sebastian Redl4ee5a6f2010-09-22 00:42:30 +00002048 case REFERENCED_SELECTOR_POOL:
Douglas Gregor8451ec72011-07-28 14:41:43 +00002049 if (!Record.empty()) {
2050 for (unsigned Idx = 0, N = Record.size() - 1; Idx < N; /* in loop */) {
2051 ReferencedSelectorsData.push_back(getGlobalSelectorID(F,
2052 Record[Idx++]));
2053 ReferencedSelectorsData.push_back(ReadSourceLocation(F, Record, Idx).
2054 getRawEncoding());
2055 }
2056 }
Fariborz Jahanian32019832010-07-23 19:11:11 +00002057 break;
2058
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002059 case PP_COUNTER_VALUE:
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002060 if (!Record.empty() && Listener)
2061 Listener->ReadCounter(Record[0]);
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00002062 break;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002063
2064 case FILE_SORTED_DECLS:
2065 F.FileSortedDecls = (const DeclID *)BlobStart;
2066 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002067
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002068 case SOURCE_LOCATION_OFFSETS: {
2069 F.SLocEntryOffsets = (const uint32_t *)BlobStart;
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002070 F.LocalNumSLocEntries = Record[0];
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002071 unsigned SLocSpaceSize = Record[1];
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002072 llvm::tie(F.SLocEntryBaseID, F.SLocEntryBaseOffset) =
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002073 SourceMgr.AllocateLoadedSLocEntries(F.LocalNumSLocEntries,
2074 SLocSpaceSize);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002075 // Make our entry in the range map. BaseID is negative and growing, so
2076 // we invert it. Because we invert it, though, we need the other end of
2077 // the range.
2078 unsigned RangeStart =
2079 unsigned(-F.SLocEntryBaseID) - F.LocalNumSLocEntries + 1;
2080 GlobalSLocEntryMap.insert(std::make_pair(RangeStart, &F));
2081 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset);
2082
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002083 // SLocEntryBaseOffset is lower than MaxLoadedOffset and decreasing.
2084 assert((F.SLocEntryBaseOffset & (1U << 31U)) == 0);
2085 GlobalSLocOffsetMap.insert(
2086 std::make_pair(SourceManager::MaxLoadedOffset - F.SLocEntryBaseOffset
2087 - SLocSpaceSize,&F));
2088
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002089 // Initialize the remapping table.
2090 // Invalid stays invalid.
2091 F.SLocRemap.insert(std::make_pair(0U, 0));
2092 // This module. Base was 2 when being compiled.
2093 F.SLocRemap.insert(std::make_pair(2U,
2094 static_cast<int>(F.SLocEntryBaseOffset - 2)));
Douglas Gregor0cdd7982011-07-21 18:46:38 +00002095
2096 TotalNumSLocEntries += F.LocalNumSLocEntries;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002097 break;
2098 }
2099
Douglas Gregor5d51a1d2011-08-01 16:01:55 +00002100 case MODULE_OFFSET_MAP: {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002101 // Additional remapping information.
2102 const unsigned char *Data = (const unsigned char*)BlobStart;
2103 const unsigned char *DataEnd = Data + BlobLen;
Douglas Gregorf33740e2011-08-02 10:56:51 +00002104
2105 // Continuous range maps we may be updating in our module.
2106 ContinuousRangeMap<uint32_t, int, 2>::Builder SLocRemap(F.SLocRemap);
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002107 ContinuousRangeMap<uint32_t, int, 2>::Builder
2108 IdentifierRemap(F.IdentifierRemap);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002109 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002110 PreprocessedEntityRemap(F.PreprocessedEntityRemap);
2111 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregor26ced122011-12-01 00:59:36 +00002112 SubmoduleRemap(F.SubmoduleRemap);
2113 ContinuousRangeMap<uint32_t, int, 2>::Builder
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002114 SelectorRemap(F.SelectorRemap);
Douglas Gregor496c7092011-08-03 15:48:04 +00002115 ContinuousRangeMap<uint32_t, int, 2>::Builder DeclRemap(F.DeclRemap);
Douglas Gregora119da02011-08-02 16:26:37 +00002116 ContinuousRangeMap<uint32_t, int, 2>::Builder TypeRemap(F.TypeRemap);
2117
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002118 while(Data < DataEnd) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002119 uint16_t Len = io::ReadUnalignedLE16(Data);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002120 StringRef Name = StringRef((const char*)Data, Len);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002121 Data += Len;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002122 ModuleFile *OM = ModuleMgr.lookup(Name);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002123 if (!OM) {
2124 Error("SourceLocation remap refers to unknown module");
2125 return Failure;
2126 }
Douglas Gregorf33740e2011-08-02 10:56:51 +00002127
2128 uint32_t SLocOffset = io::ReadUnalignedLE32(Data);
2129 uint32_t IdentifierIDOffset = io::ReadUnalignedLE32(Data);
2130 uint32_t PreprocessedEntityIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregor26ced122011-12-01 00:59:36 +00002131 uint32_t SubmoduleIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002132 uint32_t SelectorIDOffset = io::ReadUnalignedLE32(Data);
2133 uint32_t DeclIDOffset = io::ReadUnalignedLE32(Data);
Douglas Gregora119da02011-08-02 16:26:37 +00002134 uint32_t TypeIndexOffset = io::ReadUnalignedLE32(Data);
Douglas Gregorf33740e2011-08-02 10:56:51 +00002135
2136 // Source location offset is mapped to OM->SLocEntryBaseOffset.
2137 SLocRemap.insert(std::make_pair(SLocOffset,
2138 static_cast<int>(OM->SLocEntryBaseOffset - SLocOffset)));
Douglas Gregor6ec60e02011-08-03 21:49:18 +00002139 IdentifierRemap.insert(
2140 std::make_pair(IdentifierIDOffset,
2141 OM->BaseIdentifierID - IdentifierIDOffset));
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002142 PreprocessedEntityRemap.insert(
2143 std::make_pair(PreprocessedEntityIDOffset,
2144 OM->BasePreprocessedEntityID - PreprocessedEntityIDOffset));
Douglas Gregor26ced122011-12-01 00:59:36 +00002145 SubmoduleRemap.insert(std::make_pair(SubmoduleIDOffset,
2146 OM->BaseSubmoduleID - SubmoduleIDOffset));
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002147 SelectorRemap.insert(std::make_pair(SelectorIDOffset,
2148 OM->BaseSelectorID - SelectorIDOffset));
Douglas Gregor496c7092011-08-03 15:48:04 +00002149 DeclRemap.insert(std::make_pair(DeclIDOffset,
2150 OM->BaseDeclID - DeclIDOffset));
2151
Douglas Gregora119da02011-08-02 16:26:37 +00002152 TypeRemap.insert(std::make_pair(TypeIndexOffset,
Douglas Gregore3605012011-08-02 18:32:54 +00002153 OM->BaseTypeIndex - TypeIndexOffset));
Douglas Gregora1be2782011-12-17 23:38:30 +00002154
2155 // Global -> local mappings.
2156 F.GlobalToLocalDeclIDs[OM] = DeclIDOffset;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002157 }
2158 break;
2159 }
2160
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002161 case SOURCE_MANAGER_LINE_TABLE:
2162 if (ParseLineTable(F, Record))
2163 return Failure;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002164 break;
2165
Argyrios Kyrtzidis4cdb0e22011-06-02 20:01:46 +00002166 case FILE_SOURCE_LOCATION_OFFSETS:
2167 F.SLocFileOffsets = (const uint32_t *)BlobStart;
2168 F.LocalNumSLocFileEntries = Record[0];
2169 break;
2170
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002171 case SOURCE_LOCATION_PRELOADS: {
2172 // Need to transform from the local view (1-based IDs) to the global view,
2173 // which is based off F.SLocEntryBaseID.
Douglas Gregorf249bf32011-08-25 21:09:44 +00002174 if (!F.PreloadSLocEntries.empty()) {
2175 Error("Multiple SOURCE_LOCATION_PRELOADS records in AST file");
2176 return Failure;
2177 }
2178
2179 F.PreloadSLocEntries.swap(Record);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002180 break;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002181 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002182
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002183 case STAT_CACHE: {
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00002184 if (!DisableStatCache) {
2185 ASTStatCache *MyStatCache =
2186 new ASTStatCache((const unsigned char *)BlobStart + Record[0],
2187 (const unsigned char *)BlobStart,
2188 NumStatHits, NumStatMisses);
2189 FileMgr.addStatCache(MyStatCache);
2190 F.StatCache = MyStatCache;
2191 }
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002192 break;
Douglas Gregor52e71082009-10-16 18:18:30 +00002193 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002194
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002195 case EXT_VECTOR_DECLS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002196 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2197 ExtVectorDecls.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregorb81c1702009-04-27 20:06:05 +00002198 break;
2199
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002200 case VTABLE_USES:
Douglas Gregordfe65432011-07-28 19:11:31 +00002201 if (Record.size() % 3 != 0) {
2202 Error("Invalid VTABLE_USES record");
2203 return Failure;
2204 }
2205
Sebastian Redl40566802010-08-05 18:21:25 +00002206 // Later tables overwrite earlier ones.
Douglas Gregordfe65432011-07-28 19:11:31 +00002207 // FIXME: Modules will have some trouble with this. This is clearly not
2208 // the right way to do this.
Douglas Gregor409448c2011-07-21 22:35:25 +00002209 VTableUses.clear();
Douglas Gregordfe65432011-07-28 19:11:31 +00002210
2211 for (unsigned Idx = 0, N = Record.size(); Idx != N; /* In loop */) {
2212 VTableUses.push_back(getGlobalDeclID(F, Record[Idx++]));
2213 VTableUses.push_back(
2214 ReadSourceLocation(F, Record, Idx).getRawEncoding());
2215 VTableUses.push_back(Record[Idx++]);
2216 }
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002217 break;
2218
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002219 case DYNAMIC_CLASSES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002220 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2221 DynamicClasses.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002222 break;
2223
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002224 case PENDING_IMPLICIT_INSTANTIATIONS:
Douglas Gregorf2abb522011-07-28 19:26:52 +00002225 if (PendingInstantiations.size() % 2 != 0) {
Axel Naumann39d26c32012-10-02 09:09:43 +00002226 Error("Invalid existing PendingInstantiations");
2227 return Failure;
2228 }
2229
2230 if (Record.size() % 2 != 0) {
Douglas Gregorf2abb522011-07-28 19:26:52 +00002231 Error("Invalid PENDING_IMPLICIT_INSTANTIATIONS block");
2232 return Failure;
2233 }
Axel Naumann39d26c32012-10-02 09:09:43 +00002234
Douglas Gregorf2abb522011-07-28 19:26:52 +00002235 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
2236 PendingInstantiations.push_back(getGlobalDeclID(F, Record[I++]));
2237 PendingInstantiations.push_back(
2238 ReadSourceLocation(F, Record, I).getRawEncoding());
2239 }
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002240 break;
2241
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002242 case SEMA_DECL_REFS:
Sebastian Redl40566802010-08-05 18:21:25 +00002243 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002244 // FIXME: Modules will have some trouble with this.
2245 SemaDeclRefs.clear();
2246 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2247 SemaDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002248 break;
2249
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002250 case ORIGINAL_FILE_NAME:
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002251 // The primary AST will be the last to get here, so it will be the one
Sebastian Redl518d8cb2010-07-20 21:20:32 +00002252 // that's used.
Daniel Dunbar7b5a1212009-11-11 05:29:04 +00002253 ActualOriginalFileName.assign(BlobStart, BlobLen);
2254 OriginalFileName = ActualOriginalFileName;
Douglas Gregore650c8c2009-07-07 00:12:59 +00002255 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregorb64c1932009-05-12 01:31:05 +00002256 break;
Mike Stump1eb44332009-09-09 15:08:12 +00002257
Douglas Gregor31d375f2011-05-06 21:43:30 +00002258 case ORIGINAL_FILE_ID:
2259 OriginalFileID = FileID::get(Record[0]);
2260 break;
2261
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002262 case ORIGINAL_PCH_DIR:
2263 // The primary AST will be the last to get here, so it will be the one
2264 // that's used.
2265 OriginalDir.assign(BlobStart, BlobLen);
2266 break;
2267
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002268 case VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek974be4d2010-02-12 23:31:14 +00002269 const std::string &CurBranch = getClangFullRepositoryVersion();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002270 StringRef ASTBranch(BlobStart, BlobLen);
2271 if (StringRef(CurBranch) != ASTBranch && !DisableValidation) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002272 Diag(diag::warn_pch_different_branch) << ASTBranch << CurBranch;
Douglas Gregor445e23e2009-10-05 21:07:28 +00002273 return IgnorePCH;
2274 }
2275 break;
2276 }
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002277
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002278 case PPD_ENTITIES_OFFSETS: {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002279 F.PreprocessedEntityOffsets = (const PPEntityOffset *)BlobStart;
2280 assert(BlobLen % sizeof(PPEntityOffset) == 0);
2281 F.NumPreprocessedEntities = BlobLen / sizeof(PPEntityOffset);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002282
2283 unsigned LocalBasePreprocessedEntityID = Record[0];
Douglas Gregorfb2d9e02011-08-04 16:36:56 +00002284
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002285 unsigned StartingID;
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002286 if (!PP.getPreprocessingRecord())
Argyrios Kyrtzidisc6c54522012-03-05 05:48:17 +00002287 PP.createPreprocessingRecord(/*RecordConditionalDirectives=*/false);
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002288 if (!PP.getPreprocessingRecord()->getExternalSource())
2289 PP.getPreprocessingRecord()->SetExternalSource(*this);
2290 StartingID
2291 = PP.getPreprocessingRecord()
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002292 ->allocateLoadedEntities(F.NumPreprocessedEntities);
Douglas Gregor9827a802011-07-29 00:56:45 +00002293 F.BasePreprocessedEntityID = StartingID;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002294
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002295 if (F.NumPreprocessedEntities > 0) {
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002296 // Introduce the global -> local mapping for preprocessed entities in
2297 // this module.
2298 GlobalPreprocessedEntityMap.insert(std::make_pair(StartingID, &F));
2299
2300 // Introduce the local -> global mapping for preprocessed entities in
2301 // this module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00002302 F.PreprocessedEntityRemap.insertOrReplace(
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002303 std::make_pair(LocalBasePreprocessedEntityID,
2304 F.BasePreprocessedEntityID - LocalBasePreprocessedEntityID));
2305 }
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002306
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002307 break;
Douglas Gregor4c30bb12011-07-21 00:47:40 +00002308 }
2309
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002310 case DECL_UPDATE_OFFSETS: {
2311 if (Record.size() % 2 != 0) {
2312 Error("invalid DECL_UPDATE_OFFSETS block in AST file");
2313 return Failure;
2314 }
2315 for (unsigned I = 0, N = Record.size(); I != N; I += 2)
Douglas Gregor496c7092011-08-03 15:48:04 +00002316 DeclUpdateOffsets[getGlobalDeclID(F, Record[I])]
2317 .push_back(std::make_pair(&F, Record[I+1]));
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002318 break;
2319 }
2320
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002321 case DECL_REPLACEMENTS: {
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002322 if (Record.size() % 3 != 0) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002323 Error("invalid DECL_REPLACEMENTS block in AST file");
Sebastian Redl0b17c612010-08-13 00:28:03 +00002324 return Failure;
2325 }
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002326 for (unsigned I = 0, N = Record.size(); I != N; I += 3)
Douglas Gregor496c7092011-08-03 15:48:04 +00002327 ReplacedDecls[getGlobalDeclID(F, Record[I])]
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00002328 = ReplacedDeclInfo(&F, Record[I+1], Record[I+2]);
Sebastian Redl0b17c612010-08-13 00:28:03 +00002329 break;
2330 }
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002331
Douglas Gregorcff9f262012-01-27 01:47:08 +00002332 case OBJC_CATEGORIES_MAP: {
2333 if (F.LocalNumObjCCategoriesInMap != 0) {
2334 Error("duplicate OBJC_CATEGORIES_MAP record in AST file");
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002335 return Failure;
2336 }
Douglas Gregorcff9f262012-01-27 01:47:08 +00002337
2338 F.LocalNumObjCCategoriesInMap = Record[0];
2339 F.ObjCCategoriesMap = (const ObjCCategoriesInfo *)BlobStart;
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002340 break;
2341 }
Douglas Gregor7c789c12010-10-29 22:39:52 +00002342
Douglas Gregorcff9f262012-01-27 01:47:08 +00002343 case OBJC_CATEGORIES:
2344 F.ObjCCategories.swap(Record);
2345 break;
2346
Douglas Gregor7c789c12010-10-29 22:39:52 +00002347 case CXX_BASE_SPECIFIER_OFFSETS: {
2348 if (F.LocalNumCXXBaseSpecifiers != 0) {
2349 Error("duplicate CXX_BASE_SPECIFIER_OFFSETS record in AST file");
2350 return Failure;
2351 }
2352
2353 F.LocalNumCXXBaseSpecifiers = Record[0];
2354 F.CXXBaseSpecifiersOffsets = (const uint32_t *)BlobStart;
Jonathan D. Turner1da90142011-07-21 21:15:19 +00002355 NumCXXBaseSpecifiersLoaded += F.LocalNumCXXBaseSpecifiers;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002356 break;
2357 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002358
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002359 case DIAG_PRAGMA_MAPPINGS:
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002360 if (Record.size() % 2 != 0) {
2361 Error("invalid DIAG_USER_MAPPINGS block in AST file");
2362 return Failure;
2363 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002364
2365 if (F.PragmaDiagMappings.empty())
2366 F.PragmaDiagMappings.swap(Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002367 else
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002368 F.PragmaDiagMappings.insert(F.PragmaDiagMappings.end(),
2369 Record.begin(), Record.end());
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002370 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002371
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002372 case CUDA_SPECIAL_DECL_REFS:
2373 // Later tables overwrite earlier ones.
Douglas Gregor409448c2011-07-21 22:35:25 +00002374 // FIXME: Modules will have trouble with this.
2375 CUDASpecialDeclRefs.clear();
2376 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2377 CUDASpecialDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002378 break;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002379
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002380 case HEADER_SEARCH_TABLE: {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002381 F.HeaderFileInfoTableData = BlobStart;
2382 F.LocalNumHeaderFileInfos = Record[1];
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002383 F.HeaderFileFrameworkStrings = BlobStart + Record[2];
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002384 if (Record[0]) {
2385 F.HeaderFileInfoTable
2386 = HeaderFileInfoLookupTable::Create(
2387 (const unsigned char *)F.HeaderFileInfoTableData + Record[0],
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002388 (const unsigned char *)F.HeaderFileInfoTableData,
Douglas Gregor95eab172011-07-28 20:55:49 +00002389 HeaderFileInfoTrait(*this, F,
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002390 &PP.getHeaderSearchInfo(),
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002391 BlobStart + Record[2]));
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002392
2393 PP.getHeaderSearchInfo().SetExternalSource(this);
2394 if (!PP.getHeaderSearchInfo().getExternalLookup())
2395 PP.getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00002396 }
2397 break;
Douglas Gregorb4dc4852011-07-28 04:50:02 +00002398 }
2399
Peter Collingbourne84bccea2011-02-15 19:46:30 +00002400 case FP_PRAGMA_OPTIONS:
2401 // Later tables overwrite earlier ones.
2402 FPPragmaOptions.swap(Record);
2403 break;
2404
2405 case OPENCL_EXTENSIONS:
2406 // Later tables overwrite earlier ones.
2407 OpenCLExtensions.swap(Record);
2408 break;
Sean Huntebcbe1d2011-05-04 23:29:54 +00002409
2410 case TENTATIVE_DEFINITIONS:
Douglas Gregor409448c2011-07-21 22:35:25 +00002411 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2412 TentativeDefinitions.push_back(getGlobalDeclID(F, Record[I]));
Sean Huntebcbe1d2011-05-04 23:29:54 +00002413 break;
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002414
2415 case KNOWN_NAMESPACES:
Douglas Gregor409448c2011-07-21 22:35:25 +00002416 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2417 KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00002418 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002419
2420 case IMPORTED_MODULES: {
2421 if (F.Kind != MK_Module) {
2422 // If we aren't loading a module (which has its own exports), make
2423 // all of the imported modules visible.
2424 // FIXME: Deal with macros-only imports.
2425 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
2426 if (unsigned GlobalID = getGlobalSubmoduleID(F, Record[I]))
2427 ImportedModules.push_back(GlobalID);
2428 }
2429 }
2430 break;
Douglas Gregora1be2782011-12-17 23:38:30 +00002431 }
Douglas Gregor2171bf12012-01-15 16:58:34 +00002432
Douglas Gregora1be2782011-12-17 23:38:30 +00002433 case LOCAL_REDECLARATIONS: {
Douglas Gregor2171bf12012-01-15 16:58:34 +00002434 F.RedeclarationChains.swap(Record);
2435 break;
2436 }
2437
2438 case LOCAL_REDECLARATIONS_MAP: {
2439 if (F.LocalNumRedeclarationsInMap != 0) {
2440 Error("duplicate LOCAL_REDECLARATIONS_MAP record in AST file");
Douglas Gregora1be2782011-12-17 23:38:30 +00002441 return Failure;
2442 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002443
Douglas Gregor2171bf12012-01-15 16:58:34 +00002444 F.LocalNumRedeclarationsInMap = Record[0];
2445 F.RedeclarationsMap = (const LocalRedeclarationsInfo *)BlobStart;
Douglas Gregora1be2782011-12-17 23:38:30 +00002446 break;
Douglas Gregorf6137e42011-12-03 00:59:55 +00002447 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002448
2449 case MERGED_DECLARATIONS: {
2450 for (unsigned Idx = 0; Idx < Record.size(); /* increment in loop */) {
2451 GlobalDeclID CanonID = getGlobalDeclID(F, Record[Idx++]);
2452 SmallVectorImpl<GlobalDeclID> &Decls = StoredMergedDecls[CanonID];
2453 for (unsigned N = Record[Idx++]; N > 0; --N)
2454 Decls.push_back(getGlobalDeclID(F, Record[Idx++]));
2455 }
2456 break;
2457 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00002458 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002459 }
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002460 Error("premature end of bitstream in AST file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002461 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002462}
2463
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002464ASTReader::ASTReadResult ASTReader::validateFileEntries(ModuleFile &M) {
Douglas Gregorc69a2922011-08-25 20:58:51 +00002465 llvm::BitstreamCursor &SLocEntryCursor = M.SLocEntryCursor;
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002466
Douglas Gregorc69a2922011-08-25 20:58:51 +00002467 for (unsigned i = 0, e = M.LocalNumSLocFileEntries; i != e; ++i) {
2468 SLocEntryCursor.JumpToBit(M.SLocFileOffsets[i]);
2469 unsigned Code = SLocEntryCursor.ReadCode();
2470 if (Code == llvm::bitc::END_BLOCK ||
2471 Code == llvm::bitc::ENTER_SUBBLOCK ||
2472 Code == llvm::bitc::DEFINE_ABBREV) {
2473 Error("incorrectly-formatted source location entry in AST file");
2474 return Failure;
2475 }
2476
2477 RecordData Record;
2478 const char *BlobStart;
2479 unsigned BlobLen;
2480 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
2481 default:
2482 Error("incorrectly-formatted source location entry in AST file");
2483 return Failure;
2484
2485 case SM_SLOC_FILE_ENTRY: {
Douglas Gregora081da52011-11-16 20:05:18 +00002486 // If the buffer was overridden, the file need not exist.
2487 if (Record[6])
2488 break;
2489
Douglas Gregorc69a2922011-08-25 20:58:51 +00002490 StringRef Filename(BlobStart, BlobLen);
2491 const FileEntry *File = getFileEntry(Filename);
2492
2493 if (File == 0) {
2494 std::string ErrorStr = "could not find file '";
2495 ErrorStr += Filename;
2496 ErrorStr += "' referenced by AST file";
2497 Error(ErrorStr.c_str());
2498 return IgnorePCH;
2499 }
2500
Douglas Gregora081da52011-11-16 20:05:18 +00002501 if (Record.size() < 7) {
Douglas Gregorc69a2922011-08-25 20:58:51 +00002502 Error("source location entry is incorrect");
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002503 return Failure;
2504 }
Argyrios Kyrtzidisd54dff02012-05-03 21:50:39 +00002505
2506 off_t StoredSize = (off_t)Record[4];
2507 time_t StoredTime = (time_t)Record[5];
2508
2509 // Check if there was a request to override the contents of the file
2510 // that was part of the precompiled header. Overridding such a file
2511 // can lead to problems when lexing using the source locations from the
2512 // PCH.
2513 SourceManager &SM = getSourceManager();
2514 if (SM.isFileOverridden(File)) {
2515 Error(diag::err_fe_pch_file_overridden, Filename);
2516 // After emitting the diagnostic, recover by disabling the override so
2517 // that the original file will be used.
2518 SM.disableFileContentsOverride(File);
2519 // The FileEntry is a virtual file entry with the size of the contents
2520 // that would override the original contents. Set it to the original's
2521 // size/time.
2522 FileMgr.modifyFileEntry(const_cast<FileEntry*>(File),
2523 StoredSize, StoredTime);
2524 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002525
Douglas Gregorc69a2922011-08-25 20:58:51 +00002526 // The stat info from the FileEntry came from the cached stat
2527 // info of the PCH, so we cannot trust it.
2528 struct stat StatBuf;
2529 if (::stat(File->getName(), &StatBuf) != 0) {
2530 StatBuf.st_size = File->getSize();
2531 StatBuf.st_mtime = File->getModificationTime();
2532 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002533
Argyrios Kyrtzidisd54dff02012-05-03 21:50:39 +00002534 if ((StoredSize != StatBuf.st_size
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002535#if !defined(LLVM_ON_WIN32)
Douglas Gregorc69a2922011-08-25 20:58:51 +00002536 // In our regression testing, the Windows file system seems to
2537 // have inconsistent modification times that sometimes
2538 // erroneously trigger this error-handling path.
Argyrios Kyrtzidisd54dff02012-05-03 21:50:39 +00002539 || StoredTime != StatBuf.st_mtime
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002540#endif
Douglas Gregorc69a2922011-08-25 20:58:51 +00002541 )) {
2542 Error(diag::err_fe_pch_file_modified, Filename);
2543 return IgnorePCH;
2544 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002545
Douglas Gregorc69a2922011-08-25 20:58:51 +00002546 break;
2547 }
Argyrios Kyrtzidisb68ffb12011-06-01 05:43:53 +00002548 }
2549 }
2550
2551 return Success;
2552}
2553
Douglas Gregorecc2c092011-12-01 22:20:10 +00002554void ASTReader::makeNamesVisible(const HiddenNames &Names) {
Douglas Gregor13292642011-12-02 15:45:10 +00002555 for (unsigned I = 0, N = Names.size(); I != N; ++I) {
2556 if (Decl *D = Names[I].dyn_cast<Decl *>())
Douglas Gregorf143ffc2012-01-06 16:22:39 +00002557 D->Hidden = false;
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002558 else {
2559 IdentifierInfo *II = Names[I].get<IdentifierInfo *>();
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002560 // FIXME: Check if this works correctly with macro history.
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002561 if (!II->hasMacroDefinition()) {
Douglas Gregorc12906e2012-09-24 19:56:18 +00002562 // Make sure that this macro hasn't been #undef'd in the mean-time.
2563 llvm::DenseMap<IdentifierInfo*, MacroInfo*>::iterator Known
2564 = PP.Macros.find(II);
2565 if (Known == PP.Macros.end() ||
2566 Known->second->getUndefLoc().isInvalid()) {
2567 II->setHasMacroDefinition(true);
2568 if (DeserializationListener)
2569 DeserializationListener->MacroVisible(II);
2570 }
Douglas Gregor1d4c1132011-12-20 22:06:13 +00002571 }
2572 }
Douglas Gregor13292642011-12-02 15:45:10 +00002573 }
Douglas Gregorecc2c092011-12-01 22:20:10 +00002574}
2575
Douglas Gregor5e356932011-12-01 17:11:21 +00002576void ASTReader::makeModuleVisible(Module *Mod,
2577 Module::NameVisibilityKind NameVisibility) {
2578 llvm::SmallPtrSet<Module *, 4> Visited;
2579 llvm::SmallVector<Module *, 4> Stack;
2580 Stack.push_back(Mod);
2581 while (!Stack.empty()) {
2582 Mod = Stack.back();
2583 Stack.pop_back();
2584
2585 if (NameVisibility <= Mod->NameVisibility) {
2586 // This module already has this level of visibility (or greater), so
2587 // there is nothing more to do.
2588 continue;
2589 }
2590
Douglas Gregor51f564f2011-12-31 04:05:44 +00002591 if (!Mod->isAvailable()) {
2592 // Modules that aren't available cannot be made visible.
2593 continue;
2594 }
2595
Douglas Gregor5e356932011-12-01 17:11:21 +00002596 // Update the module's name visibility.
2597 Mod->NameVisibility = NameVisibility;
2598
Douglas Gregorecc2c092011-12-01 22:20:10 +00002599 // If we've already deserialized any names from this module,
Douglas Gregor5e356932011-12-01 17:11:21 +00002600 // mark them as visible.
Douglas Gregorecc2c092011-12-01 22:20:10 +00002601 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
2602 if (Hidden != HiddenNamesMap.end()) {
2603 makeNamesVisible(Hidden->second);
2604 HiddenNamesMap.erase(Hidden);
2605 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002606
2607 // Push any non-explicit submodules onto the stack to be marked as
2608 // visible.
Douglas Gregorb7a78192012-01-04 23:32:19 +00002609 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2610 SubEnd = Mod->submodule_end();
Douglas Gregor5e356932011-12-01 17:11:21 +00002611 Sub != SubEnd; ++Sub) {
Douglas Gregorb7a78192012-01-04 23:32:19 +00002612 if (!(*Sub)->IsExplicit && Visited.insert(*Sub))
2613 Stack.push_back(*Sub);
Douglas Gregor5e356932011-12-01 17:11:21 +00002614 }
Douglas Gregor07165b92011-12-02 19:11:09 +00002615
2616 // Push any exported modules onto the stack to be marked as visible.
Douglas Gregor0adaa882011-12-05 17:28:06 +00002617 bool AnyWildcard = false;
2618 bool UnrestrictedWildcard = false;
2619 llvm::SmallVector<Module *, 4> WildcardRestrictions;
Douglas Gregor07165b92011-12-02 19:11:09 +00002620 for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) {
2621 Module *Exported = Mod->Exports[I].getPointer();
Douglas Gregor0adaa882011-12-05 17:28:06 +00002622 if (!Mod->Exports[I].getInt()) {
2623 // Export a named module directly; no wildcards involved.
2624 if (Visited.insert(Exported))
Douglas Gregor07165b92011-12-02 19:11:09 +00002625 Stack.push_back(Exported);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002626
2627 continue;
Douglas Gregor07165b92011-12-02 19:11:09 +00002628 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002629
2630 // Wildcard export: export all of the imported modules that match
2631 // the given pattern.
2632 AnyWildcard = true;
2633 if (UnrestrictedWildcard)
2634 continue;
2635
2636 if (Module *Restriction = Mod->Exports[I].getPointer())
2637 WildcardRestrictions.push_back(Restriction);
2638 else {
2639 WildcardRestrictions.clear();
2640 UnrestrictedWildcard = true;
2641 }
2642 }
2643
2644 // If there were any wildcards, push any imported modules that were
2645 // re-exported by the wildcard restriction.
2646 if (!AnyWildcard)
2647 continue;
2648
2649 for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) {
2650 Module *Imported = Mod->Imports[I];
Benjamin Kramerd48bcb22012-08-22 15:37:55 +00002651 if (!Visited.insert(Imported))
Douglas Gregor0adaa882011-12-05 17:28:06 +00002652 continue;
2653
2654 bool Acceptable = UnrestrictedWildcard;
2655 if (!Acceptable) {
2656 // Check whether this module meets one of the restrictions.
2657 for (unsigned R = 0, NR = WildcardRestrictions.size(); R != NR; ++R) {
2658 Module *Restriction = WildcardRestrictions[R];
2659 if (Imported == Restriction || Imported->isSubModuleOf(Restriction)) {
2660 Acceptable = true;
2661 break;
2662 }
2663 }
2664 }
2665
2666 if (!Acceptable)
2667 continue;
2668
Douglas Gregor0adaa882011-12-05 17:28:06 +00002669 Stack.push_back(Imported);
Douglas Gregor07165b92011-12-02 19:11:09 +00002670 }
Douglas Gregor5e356932011-12-01 17:11:21 +00002671 }
2672}
2673
Sebastian Redl1d9f1fe2010-10-05 16:15:19 +00002674ASTReader::ASTReadResult ASTReader::ReadAST(const std::string &FileName,
Douglas Gregor72a9ae12011-07-22 16:00:58 +00002675 ModuleKind Type) {
Douglas Gregor057df202012-01-18 20:56:22 +00002676 // Bump the generation number.
Douglas Gregorcff9f262012-01-27 01:47:08 +00002677 unsigned PreviousGeneration = CurrentGeneration++;
Douglas Gregor057df202012-01-18 20:56:22 +00002678
Douglas Gregor10bc00f2011-08-18 04:12:04 +00002679 switch(ReadASTCore(FileName, Type, /*ImportedBy=*/0)) {
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002680 case Failure: return Failure;
2681 case IgnorePCH: return IgnorePCH;
2682 case Success: break;
2683 }
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002684
2685 // Here comes stuff that we only do once the entire chain is loaded.
Douglas Gregor057df202012-01-18 20:56:22 +00002686
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002687 // Check the predefines buffers.
Douglas Gregor6236a292011-12-02 21:56:05 +00002688 if (!DisableValidation && Type == MK_PCH &&
Argyrios Kyrtzidis26d43cd2011-09-12 18:09:38 +00002689 // FIXME: CheckPredefinesBuffers also sets the SuggestedPredefines;
2690 // if DisableValidation is true, defines that were set on command-line
2691 // but not in the PCH file will not be added to SuggestedPredefines.
2692 CheckPredefinesBuffers())
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002693 return IgnorePCH;
2694
Douglas Gregoreee242f2011-10-27 09:33:13 +00002695 // Mark all of the identifiers in the identifier table as being out of date,
2696 // so that various accessors know to check the loaded modules when the
2697 // identifier is used.
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002698 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
2699 IdEnd = PP.getIdentifierTable().end();
2700 Id != IdEnd; ++Id)
Douglas Gregoreee242f2011-10-27 09:33:13 +00002701 Id->second->setOutOfDate(true);
Douglas Gregor057df202012-01-18 20:56:22 +00002702
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002703 // Resolve any unresolved module exports.
Douglas Gregor55988682011-12-05 16:33:54 +00002704 for (unsigned I = 0, N = UnresolvedModuleImportExports.size(); I != N; ++I) {
2705 UnresolvedModuleImportExport &Unresolved = UnresolvedModuleImportExports[I];
2706 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002707 Module *ResolvedMod = getSubmodule(GlobalID);
2708
2709 if (Unresolved.IsImport) {
2710 if (ResolvedMod)
Douglas Gregor55988682011-12-05 16:33:54 +00002711 Unresolved.Mod->Imports.push_back(ResolvedMod);
Douglas Gregor0adaa882011-12-05 17:28:06 +00002712 continue;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002713 }
Douglas Gregor0adaa882011-12-05 17:28:06 +00002714
2715 if (ResolvedMod || Unresolved.IsWildcard)
2716 Unresolved.Mod->Exports.push_back(
2717 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard));
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002718 }
Douglas Gregor55988682011-12-05 16:33:54 +00002719 UnresolvedModuleImportExports.clear();
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002720
Douglas Gregor35942772011-09-09 21:34:22 +00002721 InitializeContext();
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002722
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002723 if (DeserializationListener)
2724 DeserializationListener->ReaderInitialized(this);
2725
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002726 if (!OriginalFileID.isInvalid()) {
2727 OriginalFileID = FileID::get(ModuleMgr.getPrimaryModule().SLocEntryBaseID
2728 + OriginalFileID.getOpaqueValue() - 1);
2729
2730 // If this AST file is a precompiled preamble, then set the preamble file ID
2731 // of the source manager to the file source file from which the preamble was
2732 // built.
2733 if (Type == MK_Preamble) {
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00002734 SourceMgr.setPreambleFileID(OriginalFileID);
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +00002735 } else if (Type == MK_MainFile) {
2736 SourceMgr.setMainFileID(OriginalFileID);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002737 }
Douglas Gregor414cb642010-11-30 05:23:00 +00002738 }
2739
Douglas Gregorcff9f262012-01-27 01:47:08 +00002740 // For any Objective-C class definitions we have already loaded, make sure
2741 // that we load any additional categories.
2742 for (unsigned I = 0, N = ObjCClassesLoaded.size(); I != N; ++I) {
2743 loadObjCCategories(ObjCClassesLoaded[I]->getGlobalID(),
2744 ObjCClassesLoaded[I],
2745 PreviousGeneration);
2746 }
2747
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002748 return Success;
2749}
2750
Chris Lattner5f9e2722011-07-23 10:55:15 +00002751ASTReader::ASTReadResult ASTReader::ReadASTCore(StringRef FileName,
Douglas Gregor10bc00f2011-08-18 04:12:04 +00002752 ModuleKind Type,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002753 ModuleFile *ImportedBy) {
2754 ModuleFile *M;
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002755 bool NewModule;
2756 std::string ErrorStr;
2757 llvm::tie(M, NewModule) = ModuleMgr.addModule(FileName, Type, ImportedBy,
Douglas Gregor057df202012-01-18 20:56:22 +00002758 CurrentGeneration, ErrorStr);
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002759
Douglas Gregorfac4ece2011-08-19 02:29:29 +00002760 if (!M) {
2761 // We couldn't load the module.
2762 std::string Msg = "Unable to load module \"" + FileName.str() + "\": "
2763 + ErrorStr;
2764 Error(Msg);
2765 return Failure;
2766 }
2767
2768 if (!NewModule) {
2769 // We've already loaded this module.
2770 return Success;
2771 }
2772
2773 // FIXME: This seems rather a hack. Should CurrentDir be part of the
2774 // module?
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00002775 if (FileName != "-") {
2776 CurrentDir = llvm::sys::path::parent_path(FileName);
2777 if (CurrentDir.empty()) CurrentDir = ".";
2778 }
2779
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002780 ModuleFile &F = *M;
Sebastian Redl9137a522010-07-16 17:50:48 +00002781 llvm::BitstreamCursor &Stream = F.Stream;
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002782 Stream.init(F.StreamFile);
Sebastian Redl04e6fd42010-07-21 20:07:32 +00002783 F.SizeInBits = F.Buffer->getBufferSize() * 8;
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002784
Sebastian Redlfbd4bf12010-07-17 00:12:06 +00002785 // Sniff for the signature.
2786 if (Stream.Read(8) != 'C' ||
2787 Stream.Read(8) != 'P' ||
2788 Stream.Read(8) != 'C' ||
2789 Stream.Read(8) != 'H') {
2790 Diag(diag::err_not_a_pch_file) << FileName;
2791 return Failure;
2792 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002793
Douglas Gregor2cf26342009-04-09 22:27:44 +00002794 while (!Stream.AtEndOfStream()) {
2795 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00002796
Douglas Gregore1d918e2009-04-10 23:10:45 +00002797 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002798 Error("invalid record at top-level of AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002799 return Failure;
2800 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002801
2802 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00002803
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002804 // We only know the AST subblock ID.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002805 switch (BlockID) {
2806 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002807 if (Stream.ReadBlockInfoBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002808 Error("malformed BlockInfoBlock in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002809 return Failure;
2810 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002811 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002812 case AST_BLOCK_ID:
Sebastian Redl571db7f2010-08-18 23:56:56 +00002813 switch (ReadASTBlock(F)) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002814 case Success:
2815 break;
2816
2817 case Failure:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002818 return Failure;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002819
2820 case IgnorePCH:
Douglas Gregor2bec0412009-04-10 21:16:55 +00002821 // FIXME: We could consider reading through to the end of this
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002822 // AST block, skipping subblocks, to see if there are other
2823 // AST blocks elsewhere.
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002824
Douglas Gregorf62d43d2011-07-19 16:10:42 +00002825 // FIXME: We can't clear loaded slocentries anymore.
2826 //SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002827
2828 // Remove the stat cache.
Sebastian Redl9137a522010-07-16 17:50:48 +00002829 if (F.StatCache)
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002830 FileMgr.removeStatCache((ASTStatCache*)F.StatCache);
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00002831
Douglas Gregore1d918e2009-04-10 23:10:45 +00002832 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002833 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002834 break;
2835 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00002836 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002837 Error("malformed block record in AST file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00002838 return Failure;
2839 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002840 break;
2841 }
Mike Stump1eb44332009-09-09 15:08:12 +00002842 }
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002843
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002844 // Once read, set the ModuleFile bit base offset and update the size in
Douglas Gregor8f1231b2011-07-22 06:10:01 +00002845 // bits of all files we've seen.
2846 F.GlobalBitOffset = TotalModulesSizeInBits;
2847 TotalModulesSizeInBits += F.SizeInBits;
2848 GlobalBitOffsetsMap.insert(std::make_pair(F.GlobalBitOffset, &F));
Douglas Gregorc69a2922011-08-25 20:58:51 +00002849
2850 // Make sure that the files this module was built against are still available.
2851 if (!DisableValidation) {
2852 switch(validateFileEntries(*M)) {
2853 case Failure: return Failure;
2854 case IgnorePCH: return IgnorePCH;
2855 case Success: break;
2856 }
2857 }
Douglas Gregorf249bf32011-08-25 21:09:44 +00002858
2859 // Preload SLocEntries.
2860 for (unsigned I = 0, N = M->PreloadSLocEntries.size(); I != N; ++I) {
2861 int Index = int(M->PreloadSLocEntries[I] - 1) + F.SLocEntryBaseID;
Argyrios Kyrtzidisac1ffcc2011-09-19 20:39:54 +00002862 // Load it through the SourceManager and don't call ReadSLocEntryRecord()
2863 // directly because the entry may have already been loaded in which case
2864 // calling ReadSLocEntryRecord() directly would trigger an assertion in
2865 // SourceManager.
2866 SourceMgr.getLoadedSLocEntryByID(Index);
Douglas Gregorf249bf32011-08-25 21:09:44 +00002867 }
2868
Douglas Gregorc69a2922011-08-25 20:58:51 +00002869
Sebastian Redlcdf3b832010-07-16 20:41:52 +00002870 return Success;
2871}
2872
Douglas Gregor712f2fc2011-09-09 22:02:16 +00002873void ASTReader::InitializeContext() {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002874 // If there's a listener, notify them that we "read" the translation unit.
2875 if (DeserializationListener)
Douglas Gregor35942772011-09-09 21:34:22 +00002876 DeserializationListener->DeclRead(PREDEF_DECL_TRANSLATION_UNIT_ID,
2877 Context.getTranslationUnitDecl());
Douglas Gregor3747ee72010-10-01 01:18:02 +00002878
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002879 // Make sure we load the declaration update records for the translation unit,
2880 // if there are any.
Douglas Gregor35942772011-09-09 21:34:22 +00002881 loadDeclUpdateRecords(PREDEF_DECL_TRANSLATION_UNIT_ID,
2882 Context.getTranslationUnitDecl());
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002883
Douglas Gregor5f957282011-08-11 22:18:49 +00002884 // FIXME: Find a better way to deal with collisions between these
2885 // built-in types. Right now, we just ignore the problem.
2886
2887 // Load the special types.
Douglas Gregora6ea10e2012-01-17 18:09:05 +00002888 if (SpecialTypes.size() >= NumSpecialTypeIDs) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002889 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) {
2890 if (!Context.CFConstantStringTypeDecl)
2891 Context.setCFConstantStringType(GetType(String));
2892 }
2893
2894 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
2895 QualType FileType = GetType(File);
2896 if (FileType.isNull()) {
2897 Error("FILE type is NULL");
2898 return;
2899 }
2900
2901 if (!Context.FILEDecl) {
2902 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
2903 Context.setFILEDecl(Typedef->getDecl());
2904 else {
2905 const TagType *Tag = FileType->getAs<TagType>();
2906 if (!Tag) {
2907 Error("Invalid FILE type in AST file");
2908 return;
2909 }
2910 Context.setFILEDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002911 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002912 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00002913 }
Douglas Gregor5f957282011-08-11 22:18:49 +00002914
Douglas Gregor72cd7a02011-11-11 19:13:12 +00002915 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002916 QualType Jmp_bufType = GetType(Jmp_buf);
2917 if (Jmp_bufType.isNull()) {
2918 Error("jmp_buf type is NULL");
2919 return;
2920 }
2921
2922 if (!Context.jmp_bufDecl) {
2923 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
2924 Context.setjmp_bufDecl(Typedef->getDecl());
2925 else {
2926 const TagType *Tag = Jmp_bufType->getAs<TagType>();
2927 if (!Tag) {
2928 Error("Invalid jmp_buf type in AST file");
2929 return;
2930 }
2931 Context.setjmp_bufDecl(Tag->getDecl());
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002932 }
Jonathan D. Turnerde91db52011-08-05 23:07:10 +00002933 }
Mike Stump782fa302009-07-28 02:25:19 +00002934 }
Douglas Gregor02a5e872011-09-10 00:30:18 +00002935
Douglas Gregor72cd7a02011-11-11 19:13:12 +00002936 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) {
Douglas Gregor02a5e872011-09-10 00:30:18 +00002937 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
2938 if (Sigjmp_bufType.isNull()) {
2939 Error("sigjmp_buf type is NULL");
2940 return;
2941 }
2942
2943 if (!Context.sigjmp_bufDecl) {
2944 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
2945 Context.setsigjmp_bufDecl(Typedef->getDecl());
2946 else {
2947 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
2948 assert(Tag && "Invalid sigjmp_buf type in AST file");
2949 Context.setsigjmp_bufDecl(Tag->getDecl());
2950 }
2951 }
2952 }
2953
2954 if (unsigned ObjCIdRedef
2955 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) {
2956 if (Context.ObjCIdRedefinitionType.isNull())
2957 Context.ObjCIdRedefinitionType = GetType(ObjCIdRedef);
2958 }
2959
2960 if (unsigned ObjCClassRedef
2961 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) {
2962 if (Context.ObjCClassRedefinitionType.isNull())
2963 Context.ObjCClassRedefinitionType = GetType(ObjCClassRedef);
2964 }
2965
2966 if (unsigned ObjCSelRedef
2967 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) {
2968 if (Context.ObjCSelRedefinitionType.isNull())
2969 Context.ObjCSelRedefinitionType = GetType(ObjCSelRedef);
2970 }
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00002971
2972 if (unsigned Ucontext_t = SpecialTypes[SPECIAL_TYPE_UCONTEXT_T]) {
2973 QualType Ucontext_tType = GetType(Ucontext_t);
2974 if (Ucontext_tType.isNull()) {
2975 Error("ucontext_t type is NULL");
2976 return;
2977 }
2978
2979 if (!Context.ucontext_tDecl) {
2980 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
2981 Context.setucontext_tDecl(Typedef->getDecl());
2982 else {
2983 const TagType *Tag = Ucontext_tType->getAs<TagType>();
2984 assert(Tag && "Invalid ucontext_t type in AST file");
2985 Context.setucontext_tDecl(Tag->getDecl());
2986 }
2987 }
2988 }
Douglas Gregor5f957282011-08-11 22:18:49 +00002989 }
2990
Douglas Gregor35942772011-09-09 21:34:22 +00002991 ReadPragmaDiagnosticMappings(Context.getDiagnostics());
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002992
2993 // If there were any CUDA special declarations, deserialize them.
2994 if (!CUDASpecialDeclRefs.empty()) {
2995 assert(CUDASpecialDeclRefs.size() == 1 && "More decl refs than expected!");
Douglas Gregor35942772011-09-09 21:34:22 +00002996 Context.setcudaConfigureCallDecl(
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00002997 cast<FunctionDecl>(GetDecl(CUDASpecialDeclRefs[0])));
2998 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00002999
3000 // Re-export any modules that were imported by a non-module AST file.
3001 for (unsigned I = 0, N = ImportedModules.size(); I != N; ++I) {
3002 if (Module *Imported = getSubmodule(ImportedModules[I]))
3003 makeModuleVisible(Imported, Module::AllVisible);
3004 }
3005 ImportedModules.clear();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003006}
3007
Douglas Gregorecc2c092011-12-01 22:20:10 +00003008void ASTReader::finalizeForWriting() {
3009 for (HiddenNamesMapType::iterator Hidden = HiddenNamesMap.begin(),
3010 HiddenEnd = HiddenNamesMap.end();
3011 Hidden != HiddenEnd; ++Hidden) {
3012 makeNamesVisible(Hidden->second);
3013 }
3014 HiddenNamesMap.clear();
3015}
3016
Douglas Gregorb64c1932009-05-12 01:31:05 +00003017/// \brief Retrieve the name of the original source file name
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003018/// directly from the AST file, without actually loading the AST
Douglas Gregorb64c1932009-05-12 01:31:05 +00003019/// file.
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003020std::string ASTReader::getOriginalSourceFile(const std::string &ASTFileName,
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00003021 FileManager &FileMgr,
David Blaikied6471f72011-09-25 23:23:43 +00003022 DiagnosticsEngine &Diags) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003023 // Open the AST file.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003024 std::string ErrStr;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00003025 OwningPtr<llvm::MemoryBuffer> Buffer;
Chris Lattner39b49bc2010-11-23 08:35:12 +00003026 Buffer.reset(FileMgr.getBufferForFile(ASTFileName, &ErrStr));
Douglas Gregorb64c1932009-05-12 01:31:05 +00003027 if (!Buffer) {
Kaelyn Uhrainda01f622012-06-20 00:36:03 +00003028 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ASTFileName << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003029 return std::string();
3030 }
3031
3032 // Initialize the stream
3033 llvm::BitstreamReader StreamFile;
3034 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00003035 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00003036 (const unsigned char *)Buffer->getBufferEnd());
3037 Stream.init(StreamFile);
3038
3039 // Sniff for the signature.
3040 if (Stream.Read(8) != 'C' ||
3041 Stream.Read(8) != 'P' ||
3042 Stream.Read(8) != 'C' ||
3043 Stream.Read(8) != 'H') {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003044 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003045 return std::string();
3046 }
3047
3048 RecordData Record;
3049 while (!Stream.AtEndOfStream()) {
3050 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00003051
Douglas Gregorb64c1932009-05-12 01:31:05 +00003052 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3053 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00003054
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003055 // We only know the AST subblock ID.
Douglas Gregorb64c1932009-05-12 01:31:05 +00003056 switch (BlockID) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003057 case AST_BLOCK_ID:
3058 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003059 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003060 return std::string();
3061 }
3062 break;
Mike Stump1eb44332009-09-09 15:08:12 +00003063
Douglas Gregorb64c1932009-05-12 01:31:05 +00003064 default:
3065 if (Stream.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003066 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003067 return std::string();
3068 }
3069 break;
3070 }
3071 continue;
3072 }
3073
3074 if (Code == llvm::bitc::END_BLOCK) {
3075 if (Stream.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003076 Diags.Report(diag::err_fe_pch_error_at_end_block) << ASTFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00003077 return std::string();
3078 }
3079 continue;
3080 }
3081
3082 if (Code == llvm::bitc::DEFINE_ABBREV) {
3083 Stream.ReadAbbrevRecord();
3084 continue;
3085 }
3086
3087 Record.clear();
3088 const char *BlobStart = 0;
3089 unsigned BlobLen = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003090 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003091 == ORIGINAL_FILE_NAME)
Douglas Gregorb64c1932009-05-12 01:31:05 +00003092 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00003093 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00003094
3095 return std::string();
3096}
3097
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003098ASTReader::ASTReadResult ASTReader::ReadSubmoduleBlock(ModuleFile &F) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003099 // Enter the submodule block.
3100 if (F.Stream.EnterSubBlock(SUBMODULE_BLOCK_ID)) {
3101 Error("malformed submodule block record in AST file");
3102 return Failure;
3103 }
3104
3105 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
Douglas Gregor26ced122011-12-01 00:59:36 +00003106 bool First = true;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003107 Module *CurrentModule = 0;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003108 RecordData Record;
3109 while (true) {
3110 unsigned Code = F.Stream.ReadCode();
3111 if (Code == llvm::bitc::END_BLOCK) {
3112 if (F.Stream.ReadBlockEnd()) {
3113 Error("error at end of submodule block in AST file");
3114 return Failure;
3115 }
3116 return Success;
3117 }
3118
3119 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
3120 // No known subblocks, always skip them.
3121 F.Stream.ReadSubBlockID();
3122 if (F.Stream.SkipBlock()) {
3123 Error("malformed block record in AST file");
3124 return Failure;
3125 }
3126 continue;
3127 }
3128
3129 if (Code == llvm::bitc::DEFINE_ABBREV) {
3130 F.Stream.ReadAbbrevRecord();
3131 continue;
3132 }
3133
3134 // Read a record.
3135 const char *BlobStart;
3136 unsigned BlobLen;
3137 Record.clear();
3138 switch (F.Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
3139 default: // Default behavior: ignore.
3140 break;
3141
3142 case SUBMODULE_DEFINITION: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003143 if (First) {
3144 Error("missing submodule metadata record at beginning of block");
3145 return Failure;
3146 }
3147
Douglas Gregore209e502011-12-06 01:10:29 +00003148 if (Record.size() < 7) {
Douglas Gregor1e123682011-12-05 22:27:44 +00003149 Error("malformed module definition");
3150 return Failure;
3151 }
3152
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003153 StringRef Name(BlobStart, BlobLen);
Douglas Gregore209e502011-12-06 01:10:29 +00003154 SubmoduleID GlobalID = getGlobalSubmoduleID(F, Record[0]);
3155 SubmoduleID Parent = getGlobalSubmoduleID(F, Record[1]);
3156 bool IsFramework = Record[2];
3157 bool IsExplicit = Record[3];
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003158 bool IsSystem = Record[4];
3159 bool InferSubmodules = Record[5];
3160 bool InferExplicitSubmodules = Record[6];
3161 bool InferExportWildcard = Record[7];
Douglas Gregor1e123682011-12-05 22:27:44 +00003162
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003163 Module *ParentModule = 0;
Douglas Gregor26ced122011-12-01 00:59:36 +00003164 if (Parent)
3165 ParentModule = getSubmodule(Parent);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003166
3167 // Retrieve this (sub)module from the module map, creating it if
3168 // necessary.
3169 CurrentModule = ModMap.findOrCreateModule(Name, ParentModule,
3170 IsFramework,
3171 IsExplicit).first;
Douglas Gregore209e502011-12-06 01:10:29 +00003172 SubmoduleID GlobalIndex = GlobalID - NUM_PREDEF_SUBMODULE_IDS;
3173 if (GlobalIndex >= SubmodulesLoaded.size() ||
3174 SubmodulesLoaded[GlobalIndex]) {
Douglas Gregor26ced122011-12-01 00:59:36 +00003175 Error("too many submodules");
3176 return Failure;
3177 }
Douglas Gregora015cab2011-12-02 17:30:13 +00003178
Douglas Gregor305dc3e2011-12-20 00:28:52 +00003179 CurrentModule->IsFromModuleFile = true;
Douglas Gregora1f1fad2012-01-27 19:52:33 +00003180 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
Douglas Gregor1e123682011-12-05 22:27:44 +00003181 CurrentModule->InferSubmodules = InferSubmodules;
3182 CurrentModule->InferExplicitSubmodules = InferExplicitSubmodules;
3183 CurrentModule->InferExportWildcard = InferExportWildcard;
Douglas Gregora015cab2011-12-02 17:30:13 +00003184 if (DeserializationListener)
Douglas Gregore209e502011-12-06 01:10:29 +00003185 DeserializationListener->ModuleRead(GlobalID, CurrentModule);
Douglas Gregora015cab2011-12-02 17:30:13 +00003186
Douglas Gregore209e502011-12-06 01:10:29 +00003187 SubmodulesLoaded[GlobalIndex] = CurrentModule;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003188 break;
3189 }
3190
Douglas Gregor77d029f2011-12-08 19:11:24 +00003191 case SUBMODULE_UMBRELLA_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003192 if (First) {
3193 Error("missing submodule metadata record at beginning of block");
3194 return Failure;
3195 }
3196
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003197 if (!CurrentModule)
3198 break;
3199
3200 StringRef FileName(BlobStart, BlobLen);
3201 if (const FileEntry *Umbrella = PP.getFileManager().getFile(FileName)) {
Douglas Gregor10694ce2011-12-08 17:39:04 +00003202 if (!CurrentModule->getUmbrellaHeader())
Douglas Gregore209e502011-12-06 01:10:29 +00003203 ModMap.setUmbrellaHeader(CurrentModule, Umbrella);
Douglas Gregor10694ce2011-12-08 17:39:04 +00003204 else if (CurrentModule->getUmbrellaHeader() != Umbrella) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003205 Error("mismatched umbrella headers in submodule");
3206 return Failure;
3207 }
3208 }
3209 break;
3210 }
3211
3212 case SUBMODULE_HEADER: {
Douglas Gregor26ced122011-12-01 00:59:36 +00003213 if (First) {
3214 Error("missing submodule metadata record at beginning of block");
3215 return Failure;
3216 }
3217
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003218 if (!CurrentModule)
3219 break;
3220
3221 // FIXME: Be more lazy about this!
3222 StringRef FileName(BlobStart, BlobLen);
3223 if (const FileEntry *File = PP.getFileManager().getFile(FileName)) {
3224 if (std::find(CurrentModule->Headers.begin(),
3225 CurrentModule->Headers.end(),
3226 File) == CurrentModule->Headers.end())
Douglas Gregore209e502011-12-06 01:10:29 +00003227 ModMap.addHeader(CurrentModule, File);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003228 }
3229 break;
3230 }
Douglas Gregor26ced122011-12-01 00:59:36 +00003231
Douglas Gregor77d029f2011-12-08 19:11:24 +00003232 case SUBMODULE_UMBRELLA_DIR: {
3233 if (First) {
3234 Error("missing submodule metadata record at beginning of block");
3235 return Failure;
3236 }
3237
3238 if (!CurrentModule)
3239 break;
3240
3241 StringRef DirName(BlobStart, BlobLen);
3242 if (const DirectoryEntry *Umbrella
3243 = PP.getFileManager().getDirectory(DirName)) {
3244 if (!CurrentModule->getUmbrellaDir())
3245 ModMap.setUmbrellaDir(CurrentModule, Umbrella);
3246 else if (CurrentModule->getUmbrellaDir() != Umbrella) {
3247 Error("mismatched umbrella directories in submodule");
3248 return Failure;
3249 }
3250 }
3251 break;
3252 }
3253
Douglas Gregor26ced122011-12-01 00:59:36 +00003254 case SUBMODULE_METADATA: {
3255 if (!First) {
3256 Error("submodule metadata record not at beginning of block");
3257 return Failure;
3258 }
3259 First = false;
3260
3261 F.BaseSubmoduleID = getTotalNumSubmodules();
Douglas Gregor26ced122011-12-01 00:59:36 +00003262 F.LocalNumSubmodules = Record[0];
3263 unsigned LocalBaseSubmoduleID = Record[1];
3264 if (F.LocalNumSubmodules > 0) {
3265 // Introduce the global -> local mapping for submodules within this
3266 // module.
3267 GlobalSubmoduleMap.insert(std::make_pair(getTotalNumSubmodules()+1,&F));
3268
3269 // Introduce the local -> global mapping for submodules within this
3270 // module.
Douglas Gregoradafc2e2011-12-19 16:14:14 +00003271 F.SubmoduleRemap.insertOrReplace(
Douglas Gregor26ced122011-12-01 00:59:36 +00003272 std::make_pair(LocalBaseSubmoduleID,
3273 F.BaseSubmoduleID - LocalBaseSubmoduleID));
3274
3275 SubmodulesLoaded.resize(SubmodulesLoaded.size() + F.LocalNumSubmodules);
3276 }
3277 break;
3278 }
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003279
Douglas Gregor55988682011-12-05 16:33:54 +00003280 case SUBMODULE_IMPORTS: {
3281 if (First) {
3282 Error("missing submodule metadata record at beginning of block");
3283 return Failure;
3284 }
3285
3286 if (!CurrentModule)
3287 break;
3288
3289 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) {
3290 UnresolvedModuleImportExport Unresolved;
3291 Unresolved.File = &F;
3292 Unresolved.Mod = CurrentModule;
3293 Unresolved.ID = Record[Idx];
3294 Unresolved.IsImport = true;
3295 Unresolved.IsWildcard = false;
3296 UnresolvedModuleImportExports.push_back(Unresolved);
3297 }
3298 break;
3299 }
3300
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003301 case SUBMODULE_EXPORTS: {
3302 if (First) {
3303 Error("missing submodule metadata record at beginning of block");
3304 return Failure;
3305 }
3306
3307 if (!CurrentModule)
3308 break;
3309
3310 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) {
Douglas Gregor55988682011-12-05 16:33:54 +00003311 UnresolvedModuleImportExport Unresolved;
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003312 Unresolved.File = &F;
Douglas Gregor55988682011-12-05 16:33:54 +00003313 Unresolved.Mod = CurrentModule;
3314 Unresolved.ID = Record[Idx];
3315 Unresolved.IsImport = false;
3316 Unresolved.IsWildcard = Record[Idx + 1];
3317 UnresolvedModuleImportExports.push_back(Unresolved);
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00003318 }
3319
3320 // Once we've loaded the set of exports, there's no reason to keep
3321 // the parsed, unresolved exports around.
3322 CurrentModule->UnresolvedExports.clear();
3323 break;
3324 }
Douglas Gregor51f564f2011-12-31 04:05:44 +00003325 case SUBMODULE_REQUIRES: {
3326 if (First) {
3327 Error("missing submodule metadata record at beginning of block");
3328 return Failure;
3329 }
3330
3331 if (!CurrentModule)
3332 break;
3333
3334 CurrentModule->addRequirement(StringRef(BlobStart, BlobLen),
David Blaikie4e4d0842012-03-11 07:00:24 +00003335 Context.getLangOpts(),
Douglas Gregordc58aa72012-01-30 06:01:29 +00003336 Context.getTargetInfo());
Douglas Gregor51f564f2011-12-31 04:05:44 +00003337 break;
3338 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003339 }
3340 }
Douglas Gregor392ed2b2011-11-30 17:33:56 +00003341}
3342
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003343/// \brief Parse the record that corresponds to a LangOptions data
3344/// structure.
3345///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003346/// This routine parses the language options from the AST file and then gives
3347/// them to the AST listener if one is set.
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003348///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003349/// \returns true if the listener deems the file unacceptable, false otherwise.
John McCall260611a2012-06-20 06:18:46 +00003350bool ASTReader::ParseLanguageOptions(const RecordData &Record) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003351 if (Listener) {
3352 LangOptions LangOpts;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003353 unsigned Idx = 0;
Douglas Gregor7d5e81b2011-09-13 18:26:39 +00003354#define LANGOPT(Name, Bits, Default, Description) \
3355 LangOpts.Name = Record[Idx++];
3356#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
3357 LangOpts.set##Name(static_cast<LangOptions::Type>(Record[Idx++]));
3358#include "clang/Basic/LangOptions.def"
John McCall260611a2012-06-20 06:18:46 +00003359
3360 ObjCRuntime::Kind runtimeKind = (ObjCRuntime::Kind) Record[Idx++];
3361 VersionTuple runtimeVersion = ReadVersionTuple(Record, Idx);
3362 LangOpts.ObjCRuntime = ObjCRuntime(runtimeKind, runtimeVersion);
Douglas Gregor7d5e81b2011-09-13 18:26:39 +00003363
Douglas Gregorb86b8dc2011-11-15 19:35:01 +00003364 unsigned Length = Record[Idx++];
3365 LangOpts.CurrentModule.assign(Record.begin() + Idx,
3366 Record.begin() + Idx + Length);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003367 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003368 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003369
3370 return false;
3371}
3372
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003373std::pair<ModuleFile *, unsigned>
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003374ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003375 GlobalPreprocessedEntityMapType::iterator
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003376 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003377 assert(I != GlobalPreprocessedEntityMap.end() &&
3378 "Corrupted global preprocessed entity map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003379 ModuleFile *M = I->second;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003380 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
3381 return std::make_pair(M, LocalIndex);
3382}
3383
Argyrios Kyrtzidis632dcc92012-10-02 16:10:51 +00003384std::pair<PreprocessingRecord::iterator, PreprocessingRecord::iterator>
3385ASTReader::getModulePreprocessedEntities(ModuleFile &Mod) const {
3386 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
3387 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
3388 Mod.NumPreprocessedEntities);
3389
3390 return std::make_pair(PreprocessingRecord::iterator(),
3391 PreprocessingRecord::iterator());
3392}
3393
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003394PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
3395 PreprocessedEntityID PPID = Index+1;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003396 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3397 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003398 unsigned LocalIndex = PPInfo.second;
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003399 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
Douglas Gregor4800a5c2011-02-08 21:58:10 +00003400
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00003401 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003402 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003403
3404 unsigned Code = M.PreprocessorDetailCursor.ReadCode();
3405 switch (Code) {
3406 case llvm::bitc::END_BLOCK:
3407 return 0;
3408
3409 case llvm::bitc::ENTER_SUBBLOCK:
3410 Error("unexpected subblock record in preprocessor detail block");
3411 return 0;
3412
3413 case llvm::bitc::DEFINE_ABBREV:
3414 Error("unexpected abbrevation record in preprocessor detail block");
3415 return 0;
3416
3417 default:
3418 break;
3419 }
3420
3421 if (!PP.getPreprocessingRecord()) {
3422 Error("no preprocessing record");
3423 return 0;
3424 }
3425
3426 // Read the record.
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003427 SourceRange Range(ReadSourceLocation(M, PPOffs.Begin),
3428 ReadSourceLocation(M, PPOffs.End));
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003429 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
3430 const char *BlobStart = 0;
3431 unsigned BlobLen = 0;
3432 RecordData Record;
3433 PreprocessorDetailRecordTypes RecType =
3434 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.ReadRecord(
3435 Code, Record, BlobStart, BlobLen);
3436 switch (RecType) {
3437 case PPD_MACRO_EXPANSION: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003438 bool isBuiltin = Record[0];
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003439 IdentifierInfo *Name = 0;
3440 MacroDefinition *Def = 0;
3441 if (isBuiltin)
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003442 Name = getLocalIdentifier(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003443 else {
3444 PreprocessedEntityID
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003445 GlobalID = getGlobalPreprocessedEntityID(M, Record[1]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003446 Def =cast<MacroDefinition>(PPRec.getLoadedPreprocessedEntity(GlobalID-1));
3447 }
3448
3449 MacroExpansion *ME;
3450 if (isBuiltin)
3451 ME = new (PPRec) MacroExpansion(Name, Range);
3452 else
3453 ME = new (PPRec) MacroExpansion(Def, Range);
3454
3455 return ME;
3456 }
3457
3458 case PPD_MACRO_DEFINITION: {
3459 // Decode the identifier info and then check again; if the macro is
3460 // still defined and associated with the identifier,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003461 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003462 MacroDefinition *MD
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003463 = new (PPRec) MacroDefinition(II, Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003464
3465 if (DeserializationListener)
3466 DeserializationListener->MacroDefinitionRead(PPID, MD);
3467
3468 return MD;
3469 }
3470
3471 case PPD_INCLUSION_DIRECTIVE: {
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003472 const char *FullFileNameStart = BlobStart + Record[0];
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00003473 StringRef FullFileName(FullFileNameStart, BlobLen - Record[0]);
3474 const FileEntry *File = 0;
3475 if (!FullFileName.empty())
3476 File = PP.getFileManager().getFile(FullFileName);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003477
3478 // FIXME: Stable encoding
3479 InclusionDirective::InclusionKind Kind
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003480 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003481 InclusionDirective *ID
3482 = new (PPRec) InclusionDirective(PPRec, Kind,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003483 StringRef(BlobStart, Record[0]),
Argyrios Kyrtzidis8dd927c2012-10-02 16:10:46 +00003484 Record[1], Record[3],
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003485 File,
Argyrios Kyrtzidis8f958f12011-09-20 23:27:41 +00003486 Range);
Argyrios Kyrtzidis290ad8c2011-09-20 23:27:38 +00003487 return ID;
3488 }
3489 }
David Blaikie7530c032012-01-17 06:56:22 +00003490
3491 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00003492}
3493
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003494/// \brief \arg SLocMapI points at a chunk of a module that contains no
3495/// preprocessed entities or the entities it contains are not the ones we are
3496/// looking for. Find the next module that contains entities and return the ID
3497/// of the first entry.
3498PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
3499 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
3500 ++SLocMapI;
3501 for (GlobalSLocOffsetMapType::const_iterator
3502 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003503 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003504 if (M.NumPreprocessedEntities)
3505 return getGlobalPreprocessedEntityID(M, M.BasePreprocessedEntityID);
3506 }
3507
3508 return getTotalNumPreprocessedEntities();
3509}
3510
3511namespace {
3512
3513template <unsigned PPEntityOffset::*PPLoc>
3514struct PPEntityComp {
3515 const ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003516 ModuleFile &M;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003517
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003518 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) { }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003519
Benjamin Kramer88df1252011-09-21 06:42:26 +00003520 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
3521 SourceLocation LHS = getLoc(L);
3522 SourceLocation RHS = getLoc(R);
3523 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3524 }
3525
3526 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003527 SourceLocation LHS = getLoc(L);
3528 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3529 }
3530
Benjamin Kramer88df1252011-09-21 06:42:26 +00003531 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003532 SourceLocation RHS = getLoc(R);
3533 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
3534 }
3535
3536 SourceLocation getLoc(const PPEntityOffset &PPE) const {
3537 return Reader.ReadSourceLocation(M, PPE.*PPLoc);
3538 }
3539};
3540
3541}
3542
3543/// \brief Returns the first preprocessed entity ID that ends after \arg BLoc.
3544PreprocessedEntityID
3545ASTReader::findBeginPreprocessedEntity(SourceLocation BLoc) const {
3546 if (SourceMgr.isLocalSourceLocation(BLoc))
3547 return getTotalNumPreprocessedEntities();
3548
3549 GlobalSLocOffsetMapType::const_iterator
3550 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3551 BLoc.getOffset());
3552 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3553 "Corrupted global sloc offset map");
3554
3555 if (SLocMapI->second->NumPreprocessedEntities == 0)
3556 return findNextPreprocessedEntity(SLocMapI);
3557
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003558 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003559 typedef const PPEntityOffset *pp_iterator;
3560 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3561 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
Argyrios Kyrtzidis4cd06342011-09-22 21:17:02 +00003562
3563 size_t Count = M.NumPreprocessedEntities;
3564 size_t Half;
3565 pp_iterator First = pp_begin;
3566 pp_iterator PPI;
3567
3568 // Do a binary search manually instead of using std::lower_bound because
3569 // The end locations of entities may be unordered (when a macro expansion
3570 // is inside another macro argument), but for this case it is not important
3571 // whether we get the first macro expansion or its containing macro.
3572 while (Count > 0) {
3573 Half = Count/2;
3574 PPI = First;
3575 std::advance(PPI, Half);
3576 if (SourceMgr.isBeforeInTranslationUnit(ReadSourceLocation(M, PPI->End),
3577 BLoc)){
3578 First = PPI;
3579 ++First;
3580 Count = Count - Half - 1;
3581 } else
3582 Count = Half;
3583 }
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003584
3585 if (PPI == pp_end)
3586 return findNextPreprocessedEntity(SLocMapI);
3587
3588 return getGlobalPreprocessedEntityID(M,
3589 M.BasePreprocessedEntityID + (PPI - pp_begin));
3590}
3591
3592/// \brief Returns the first preprocessed entity ID that begins after \arg ELoc.
3593PreprocessedEntityID
3594ASTReader::findEndPreprocessedEntity(SourceLocation ELoc) const {
3595 if (SourceMgr.isLocalSourceLocation(ELoc))
3596 return getTotalNumPreprocessedEntities();
3597
3598 GlobalSLocOffsetMapType::const_iterator
3599 SLocMapI = GlobalSLocOffsetMap.find(SourceManager::MaxLoadedOffset -
3600 ELoc.getOffset());
3601 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
3602 "Corrupted global sloc offset map");
3603
3604 if (SLocMapI->second->NumPreprocessedEntities == 0)
3605 return findNextPreprocessedEntity(SLocMapI);
3606
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003607 ModuleFile &M = *SLocMapI->second;
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00003608 typedef const PPEntityOffset *pp_iterator;
3609 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
3610 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
3611 pp_iterator PPI =
3612 std::upper_bound(pp_begin, pp_end, ELoc,
3613 PPEntityComp<&PPEntityOffset::Begin>(*this, M));
3614
3615 if (PPI == pp_end)
3616 return findNextPreprocessedEntity(SLocMapI);
3617
3618 return getGlobalPreprocessedEntityID(M,
3619 M.BasePreprocessedEntityID + (PPI - pp_begin));
3620}
3621
3622/// \brief Returns a pair of [Begin, End) indices of preallocated
3623/// preprocessed entities that \arg Range encompasses.
3624std::pair<unsigned, unsigned>
3625 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
3626 if (Range.isInvalid())
3627 return std::make_pair(0,0);
3628 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
3629
3630 PreprocessedEntityID BeginID = findBeginPreprocessedEntity(Range.getBegin());
3631 PreprocessedEntityID EndID = findEndPreprocessedEntity(Range.getEnd());
3632 return std::make_pair(BeginID, EndID);
3633}
3634
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003635/// \brief Optionally returns true or false if the preallocated preprocessed
3636/// entity with index \arg Index came from file \arg FID.
3637llvm::Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
3638 FileID FID) {
3639 if (FID.isInvalid())
3640 return false;
3641
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003642 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
3643 ModuleFile &M = *PPInfo.first;
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +00003644 unsigned LocalIndex = PPInfo.second;
3645 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
3646
3647 SourceLocation Loc = ReadSourceLocation(M, PPOffs.Begin);
3648 if (Loc.isInvalid())
3649 return false;
3650
3651 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
3652 return true;
3653 else
3654 return false;
3655}
3656
Douglas Gregord10a3812011-08-25 18:14:34 +00003657namespace {
3658 /// \brief Visitor used to search for information about a header file.
3659 class HeaderFileInfoVisitor {
3660 ASTReader &Reader;
3661 const FileEntry *FE;
3662
3663 llvm::Optional<HeaderFileInfo> HFI;
3664
3665 public:
3666 HeaderFileInfoVisitor(ASTReader &Reader, const FileEntry *FE)
3667 : Reader(Reader), FE(FE) { }
3668
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003669 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003670 HeaderFileInfoVisitor *This
3671 = static_cast<HeaderFileInfoVisitor *>(UserData);
3672
3673 HeaderFileInfoTrait Trait(This->Reader, M,
3674 &This->Reader.getPreprocessor().getHeaderSearchInfo(),
3675 M.HeaderFileFrameworkStrings,
3676 This->FE->getName());
3677
3678 HeaderFileInfoLookupTable *Table
3679 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
3680 if (!Table)
3681 return false;
3682
3683 // Look in the on-disk hash table for an entry for this file name.
3684 HeaderFileInfoLookupTable::iterator Pos = Table->find(This->FE->getName(),
3685 &Trait);
3686 if (Pos == Table->end())
3687 return false;
3688
3689 This->HFI = *Pos;
3690 return true;
3691 }
3692
3693 llvm::Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
3694 };
3695}
3696
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003697HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Douglas Gregord10a3812011-08-25 18:14:34 +00003698 HeaderFileInfoVisitor Visitor(*this, FE);
3699 ModuleMgr.visit(&HeaderFileInfoVisitor::visit, &Visitor);
3700 if (llvm::Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo()) {
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003701 if (Listener)
Douglas Gregord10a3812011-08-25 18:14:34 +00003702 Listener->ReadHeaderFileInfo(*HFI, FE->getUID());
3703 return *HFI;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00003704 }
3705
3706 return HeaderFileInfo();
3707}
3708
David Blaikied6471f72011-09-25 23:23:43 +00003709void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00003710 for (ModuleIterator I = ModuleMgr.begin(), E = ModuleMgr.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003711 ModuleFile &F = *(*I);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003712 unsigned Idx = 0;
3713 while (Idx < F.PragmaDiagMappings.size()) {
3714 SourceLocation Loc = ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003715 Diag.DiagStates.push_back(*Diag.GetCurDiagState());
3716 Diag.DiagStatePoints.push_back(
3717 DiagnosticsEngine::DiagStatePoint(&Diag.DiagStates.back(),
3718 FullSourceLoc(Loc, SourceMgr)));
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003719 while (1) {
3720 assert(Idx < F.PragmaDiagMappings.size() &&
3721 "Invalid data, didn't find '-1' marking end of diag/map pairs");
3722 if (Idx >= F.PragmaDiagMappings.size()) {
3723 break; // Something is messed up but at least avoid infinite loop in
3724 // release build.
3725 }
3726 unsigned DiagID = F.PragmaDiagMappings[Idx++];
3727 if (DiagID == (unsigned)-1) {
3728 break; // no more diag/map pairs for this location.
3729 }
3730 diag::Mapping Map = (diag::Mapping)F.PragmaDiagMappings[Idx++];
Argyrios Kyrtzidis87429a02011-11-09 01:24:17 +00003731 DiagnosticMappingInfo MappingInfo = Diag.makeMappingInfo(Map, Loc);
3732 Diag.GetCurDiagState()->setMappingInfo(DiagID, MappingInfo);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00003733 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00003734 }
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00003735 }
3736}
3737
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003738/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00003739ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Douglas Gregora119da02011-08-02 16:26:37 +00003740 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
Jonathan D. Turnere9b76c12011-07-20 21:31:32 +00003741 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003742 ModuleFile *M = I->second;
Douglas Gregore3605012011-08-02 18:32:54 +00003743 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003744}
3745
3746/// \brief Read and return the type with the given index..
Douglas Gregor2cf26342009-04-09 22:27:44 +00003747///
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003748/// The index is the type ID, shifted and minus the number of predefs. This
3749/// routine actually reads the record corresponding to the type at the given
3750/// location. It is a helper routine for GetType, which deals with reading type
3751/// IDs.
Douglas Gregor393f2492011-07-22 00:38:23 +00003752QualType ASTReader::readTypeRecord(unsigned Index) {
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00003753 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00003754 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl9137a522010-07-16 17:50:48 +00003755
Douglas Gregor0b748912009-04-14 21:18:50 +00003756 // Keep track of where we are in the stream, then jump back there
3757 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003758 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00003759
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003760 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redl27372b42010-08-11 18:52:41 +00003761
Douglas Gregord89275b2009-07-06 18:54:52 +00003762 // Note that we are loading a type record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00003763 Deserializing AType(this);
Mike Stump1eb44332009-09-09 15:08:12 +00003764
Douglas Gregor393f2492011-07-22 00:38:23 +00003765 unsigned Idx = 0;
Sebastian Redlc3632732010-10-05 15:59:54 +00003766 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003767 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00003768 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003769 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
3770 case TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003771 if (Record.size() != 2) {
3772 Error("Incorrect encoding of extended qualifier type");
3773 return QualType();
3774 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003775 QualType Base = readType(*Loc.F, Record, Idx);
3776 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
Douglas Gregor35942772011-09-09 21:34:22 +00003777 return Context.getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00003778 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003779
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003780 case TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003781 if (Record.size() != 1) {
3782 Error("Incorrect encoding of complex type");
3783 return QualType();
3784 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003785 QualType ElemType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003786 return Context.getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003787 }
3788
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003789 case TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003790 if (Record.size() != 1) {
3791 Error("Incorrect encoding of pointer type");
3792 return QualType();
3793 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003794 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003795 return Context.getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003796 }
3797
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003798 case TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003799 if (Record.size() != 1) {
3800 Error("Incorrect encoding of block pointer type");
3801 return QualType();
3802 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003803 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003804 return Context.getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003805 }
3806
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003807 case TYPE_LVALUE_REFERENCE: {
Richard Smithdf1550f2011-04-12 10:38:03 +00003808 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003809 Error("Incorrect encoding of lvalue reference type");
3810 return QualType();
3811 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003812 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003813 return Context.getLValueReferenceType(PointeeType, Record[1]);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003814 }
3815
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003816 case TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003817 if (Record.size() != 1) {
3818 Error("Incorrect encoding of rvalue reference type");
3819 return QualType();
3820 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003821 QualType PointeeType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003822 return Context.getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00003823 }
3824
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003825 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00003826 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003827 Error("Incorrect encoding of member pointer type");
3828 return QualType();
3829 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003830 QualType PointeeType = readType(*Loc.F, Record, Idx);
3831 QualType ClassType = readType(*Loc.F, Record, Idx);
Douglas Gregor1ab55e92010-12-10 17:03:06 +00003832 if (PointeeType.isNull() || ClassType.isNull())
3833 return QualType();
3834
Douglas Gregor35942772011-09-09 21:34:22 +00003835 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00003836 }
3837
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003838 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003839 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003840 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3841 unsigned IndexTypeQuals = Record[2];
3842 unsigned Idx = 3;
3843 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003844 return Context.getConstantArrayType(ElementType, Size,
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003845 ASM, IndexTypeQuals);
3846 }
3847
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003848 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003849 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003850 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3851 unsigned IndexTypeQuals = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003852 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003853 }
3854
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003855 case TYPE_VARIABLE_ARRAY: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003856 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregor0b748912009-04-14 21:18:50 +00003857 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
3858 unsigned IndexTypeQuals = Record[2];
Sebastian Redlc3632732010-10-05 15:59:54 +00003859 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
3860 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
Douglas Gregor35942772011-09-09 21:34:22 +00003861 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00003862 ASM, IndexTypeQuals,
3863 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003864 }
3865
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003866 case TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003867 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003868 Error("incorrect encoding of vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003869 return QualType();
3870 }
3871
Douglas Gregor393f2492011-07-22 00:38:23 +00003872 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003873 unsigned NumElements = Record[1];
Bob Wilsone86d78c2010-11-10 21:56:12 +00003874 unsigned VecKind = Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003875 return Context.getVectorType(ElementType, NumElements,
Bob Wilsone86d78c2010-11-10 21:56:12 +00003876 (VectorType::VectorKind)VecKind);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003877 }
3878
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003879 case TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00003880 if (Record.size() != 3) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003881 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003882 return QualType();
3883 }
3884
Douglas Gregor393f2492011-07-22 00:38:23 +00003885 QualType ElementType = readType(*Loc.F, Record, Idx);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003886 unsigned NumElements = Record[1];
Douglas Gregor35942772011-09-09 21:34:22 +00003887 return Context.getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003888 }
3889
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003890 case TYPE_FUNCTION_NO_PROTO: {
John McCallf85e1932011-06-15 23:02:42 +00003891 if (Record.size() != 6) {
Douglas Gregora02b1472009-04-28 21:53:25 +00003892 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003893 return QualType();
3894 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003895 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCallf85e1932011-06-15 23:02:42 +00003896 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
3897 (CallingConv)Record[4], Record[5]);
Douglas Gregor35942772011-09-09 21:34:22 +00003898 return Context.getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003899 }
3900
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003901 case TYPE_FUNCTION_PROTO: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003902 QualType ResultType = readType(*Loc.F, Record, Idx);
John McCalle23cf432010-12-14 08:05:40 +00003903
3904 FunctionProtoType::ExtProtoInfo EPI;
3905 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
Eli Friedmana49218e2011-04-09 08:18:08 +00003906 /*hasregparm*/ Record[2],
3907 /*regparm*/ Record[3],
John McCallf85e1932011-06-15 23:02:42 +00003908 static_cast<CallingConv>(Record[4]),
3909 /*produces*/ Record[5]);
John McCalle23cf432010-12-14 08:05:40 +00003910
John McCallf85e1932011-06-15 23:02:42 +00003911 unsigned Idx = 6;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003912 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00003913 SmallVector<QualType, 16> ParamTypes;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003914 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003915 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
John McCalle23cf432010-12-14 08:05:40 +00003916
3917 EPI.Variadic = Record[Idx++];
Richard Smitheefb3d52012-02-10 09:58:53 +00003918 EPI.HasTrailingReturn = Record[Idx++];
John McCalle23cf432010-12-14 08:05:40 +00003919 EPI.TypeQuals = Record[Idx++];
Douglas Gregorc938c162011-01-26 05:01:58 +00003920 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Sebastian Redl60618fa2011-03-12 11:50:43 +00003921 ExceptionSpecificationType EST =
3922 static_cast<ExceptionSpecificationType>(Record[Idx++]);
3923 EPI.ExceptionSpecType = EST;
Douglas Gregorb0d06e22012-04-04 00:34:49 +00003924 SmallVector<QualType, 2> Exceptions;
Sebastian Redl60618fa2011-03-12 11:50:43 +00003925 if (EST == EST_Dynamic) {
3926 EPI.NumExceptions = Record[Idx++];
Sebastian Redl60618fa2011-03-12 11:50:43 +00003927 for (unsigned I = 0; I != EPI.NumExceptions; ++I)
Douglas Gregor393f2492011-07-22 00:38:23 +00003928 Exceptions.push_back(readType(*Loc.F, Record, Idx));
Sebastian Redl60618fa2011-03-12 11:50:43 +00003929 EPI.Exceptions = Exceptions.data();
3930 } else if (EST == EST_ComputedNoexcept) {
3931 EPI.NoexceptExpr = ReadExpr(*Loc.F);
Richard Smith7bb698a2012-04-21 17:47:47 +00003932 } else if (EST == EST_Uninstantiated) {
3933 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
3934 EPI.ExceptionSpecTemplate = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Richard Smithb9d0b762012-07-27 04:22:15 +00003935 } else if (EST == EST_Unevaluated) {
3936 EPI.ExceptionSpecDecl = ReadDeclAs<FunctionDecl>(*Loc.F, Record, Idx);
Sebastian Redl60618fa2011-03-12 11:50:43 +00003937 }
Douglas Gregor35942772011-09-09 21:34:22 +00003938 return Context.getFunctionType(ResultType, ParamTypes.data(), NumParams,
John McCalle23cf432010-12-14 08:05:40 +00003939 EPI);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003940 }
3941
Douglas Gregor409448c2011-07-21 22:35:25 +00003942 case TYPE_UNRESOLVED_USING: {
3943 unsigned Idx = 0;
Douglas Gregor35942772011-09-09 21:34:22 +00003944 return Context.getTypeDeclType(
Douglas Gregor409448c2011-07-21 22:35:25 +00003945 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
3946 }
3947
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003948 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003949 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003950 Error("incorrect encoding of typedef type");
3951 return QualType();
3952 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003953 unsigned Idx = 0;
3954 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00003955 QualType Canonical = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00003956 if (!Canonical.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00003957 Canonical = Context.getCanonicalType(Canonical);
3958 return Context.getTypedefType(Decl, Canonical);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00003959 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003960
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003961 case TYPE_TYPEOF_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00003962 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003963
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003964 case TYPE_TYPEOF: {
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003965 if (Record.size() != 1) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00003966 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003967 return QualType();
3968 }
Douglas Gregor393f2492011-07-22 00:38:23 +00003969 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00003970 return Context.getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00003971 }
Mike Stump1eb44332009-09-09 15:08:12 +00003972
Douglas Gregorf8af9822012-02-12 18:42:33 +00003973 case TYPE_DECLTYPE: {
3974 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
3975 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
3976 }
Anders Carlsson395b4752009-06-24 19:06:50 +00003977
Sean Huntca63c202011-05-24 22:41:36 +00003978 case TYPE_UNARY_TRANSFORM: {
Douglas Gregor393f2492011-07-22 00:38:23 +00003979 QualType BaseType = readType(*Loc.F, Record, Idx);
3980 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
Sean Huntca63c202011-05-24 22:41:36 +00003981 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
Douglas Gregor35942772011-09-09 21:34:22 +00003982 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
Sean Huntca63c202011-05-24 22:41:36 +00003983 }
3984
Richard Smith34b41d92011-02-20 03:19:35 +00003985 case TYPE_AUTO:
Douglas Gregor35942772011-09-09 21:34:22 +00003986 return Context.getAutoType(readType(*Loc.F, Record, Idx));
Richard Smith34b41d92011-02-20 03:19:35 +00003987
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003988 case TYPE_RECORD: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003989 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00003990 Error("incorrect encoding of record type");
3991 return QualType();
3992 }
Douglas Gregor409448c2011-07-21 22:35:25 +00003993 unsigned Idx = 0;
3994 bool IsDependent = Record[Idx++];
Douglas Gregor56ca8a92012-01-17 19:21:53 +00003995 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
3996 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
3997 QualType T = Context.getRecordType(RD);
John McCallf4c73712011-01-19 06:33:43 +00003998 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00003999 return T;
4000 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004001
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004002 case TYPE_ENUM: {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004003 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004004 Error("incorrect encoding of enum type");
4005 return QualType();
4006 }
Douglas Gregor409448c2011-07-21 22:35:25 +00004007 unsigned Idx = 0;
4008 bool IsDependent = Record[Idx++];
4009 QualType T
Douglas Gregor35942772011-09-09 21:34:22 +00004010 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
John McCallf4c73712011-01-19 06:33:43 +00004011 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004012 return T;
4013 }
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00004014
John McCall9d156a72011-01-06 01:58:22 +00004015 case TYPE_ATTRIBUTED: {
4016 if (Record.size() != 3) {
4017 Error("incorrect encoding of attributed type");
4018 return QualType();
4019 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004020 QualType modifiedType = readType(*Loc.F, Record, Idx);
4021 QualType equivalentType = readType(*Loc.F, Record, Idx);
John McCall9d156a72011-01-06 01:58:22 +00004022 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
Douglas Gregor35942772011-09-09 21:34:22 +00004023 return Context.getAttributedType(kind, modifiedType, equivalentType);
John McCall9d156a72011-01-06 01:58:22 +00004024 }
4025
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004026 case TYPE_PAREN: {
4027 if (Record.size() != 1) {
4028 Error("incorrect encoding of paren type");
4029 return QualType();
4030 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004031 QualType InnerType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004032 return Context.getParenType(InnerType);
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004033 }
4034
Douglas Gregor7536dd52010-12-20 02:24:11 +00004035 case TYPE_PACK_EXPANSION: {
Douglas Gregorf9997a02011-02-01 15:24:58 +00004036 if (Record.size() != 2) {
Douglas Gregor7536dd52010-12-20 02:24:11 +00004037 Error("incorrect encoding of pack expansion type");
4038 return QualType();
4039 }
Douglas Gregor393f2492011-07-22 00:38:23 +00004040 QualType Pattern = readType(*Loc.F, Record, Idx);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004041 if (Pattern.isNull())
4042 return QualType();
Douglas Gregorcded4f62011-01-14 17:04:44 +00004043 llvm::Optional<unsigned> NumExpansions;
4044 if (Record[1])
4045 NumExpansions = Record[1] - 1;
Douglas Gregor35942772011-09-09 21:34:22 +00004046 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor7536dd52010-12-20 02:24:11 +00004047 }
4048
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004049 case TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004050 unsigned Idx = 0;
4051 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004052 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004053 QualType NamedType = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004054 return Context.getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00004055 }
4056
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004057 case TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004058 unsigned Idx = 0;
Douglas Gregor409448c2011-07-21 22:35:25 +00004059 ObjCInterfaceDecl *ItfD
4060 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00004061 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
John McCallc12c5bb2010-05-15 11:32:37 +00004062 }
4063
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004064 case TYPE_OBJC_OBJECT: {
John McCallc12c5bb2010-05-15 11:32:37 +00004065 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004066 QualType Base = readType(*Loc.F, Record, Idx);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004067 unsigned NumProtos = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004068 SmallVector<ObjCProtocolDecl*, 4> Protos;
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004069 for (unsigned I = 0; I != NumProtos; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +00004070 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004071 return Context.getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00004072 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00004073
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004074 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004075 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004076 QualType Pointee = readType(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004077 return Context.getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00004078 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00004079
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004080 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCall49a832b2009-10-18 09:09:24 +00004081 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004082 QualType Parm = readType(*Loc.F, Record, Idx);
4083 QualType Replacement = readType(*Loc.F, Record, Idx);
John McCall49a832b2009-10-18 09:09:24 +00004084 return
Douglas Gregor35942772011-09-09 21:34:22 +00004085 Context.getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
John McCall49a832b2009-10-18 09:09:24 +00004086 Replacement);
4087 }
John McCall3cb0ebd2010-03-10 03:28:59 +00004088
Douglas Gregorc3069d62011-01-14 02:55:32 +00004089 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
4090 unsigned Idx = 0;
Douglas Gregor393f2492011-07-22 00:38:23 +00004091 QualType Parm = readType(*Loc.F, Record, Idx);
Douglas Gregorc3069d62011-01-14 02:55:32 +00004092 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004093 return Context.getSubstTemplateTypeParmPackType(
Douglas Gregorc3069d62011-01-14 02:55:32 +00004094 cast<TemplateTypeParmType>(Parm),
4095 ArgPack);
4096 }
4097
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004098 case TYPE_INJECTED_CLASS_NAME: {
Douglas Gregor409448c2011-07-21 22:35:25 +00004099 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004100 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004101 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004102 // for AST reading, too much interdependencies.
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00004103 return
Douglas Gregor35942772011-09-09 21:34:22 +00004104 QualType(new (Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00004105 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004106
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004107 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004108 unsigned Idx = 0;
4109 unsigned Depth = Record[Idx++];
4110 unsigned Index = Record[Idx++];
4111 bool Pack = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004112 TemplateTypeParmDecl *D
4113 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00004114 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004115 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004116
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004117 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004118 unsigned Idx = 0;
4119 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004120 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004121 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004122 QualType Canon = readType(*Loc.F, Record, Idx);
Douglas Gregor32adc8b2010-10-26 00:51:02 +00004123 if (!Canon.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004124 Canon = Context.getCanonicalType(Canon);
4125 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00004126 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004127
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004128 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004129 unsigned Idx = 0;
4130 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00004131 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Douglas Gregor95eab172011-07-28 20:55:49 +00004132 const IdentifierInfo *Name = this->GetIdentifierInfo(*Loc.F, Record, Idx);
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004133 unsigned NumArgs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00004134 SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004135 Args.reserve(NumArgs);
4136 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00004137 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00004138 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00004139 Args.size(), Args.data());
4140 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004141
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004142 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004143 unsigned Idx = 0;
4144
4145 // ArrayType
Douglas Gregor393f2492011-07-22 00:38:23 +00004146 QualType ElementType = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004147 ArrayType::ArraySizeModifier ASM
4148 = (ArrayType::ArraySizeModifier)Record[Idx++];
4149 unsigned IndexTypeQuals = Record[Idx++];
4150
4151 // DependentSizedArrayType
Sebastian Redlc3632732010-10-05 15:59:54 +00004152 Expr *NumElts = ReadExpr(*Loc.F);
4153 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004154
Douglas Gregor35942772011-09-09 21:34:22 +00004155 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00004156 IndexTypeQuals, Brackets);
4157 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004158
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004159 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004160 unsigned Idx = 0;
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004161 bool IsDependent = Record[Idx++];
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004162 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
Chris Lattner5f9e2722011-07-23 10:55:15 +00004163 SmallVector<TemplateArgument, 8> Args;
Sebastian Redlc3632732010-10-05 15:59:54 +00004164 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00004165 QualType Underlying = readType(*Loc.F, Record, Idx);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004166 QualType T;
Richard Smith3e4c6c42011-05-05 21:57:07 +00004167 if (Underlying.isNull())
Douglas Gregor35942772011-09-09 21:34:22 +00004168 T = Context.getCanonicalTemplateSpecializationType(Name, Args.data(),
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004169 Args.size());
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00004170 else
Douglas Gregor35942772011-09-09 21:34:22 +00004171 T = Context.getTemplateSpecializationType(Name, Args.data(),
Richard Smith3e4c6c42011-05-05 21:57:07 +00004172 Args.size(), Underlying);
John McCallf4c73712011-01-19 06:33:43 +00004173 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +00004174 return T;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00004175 }
Eli Friedmanb001de72011-10-06 23:00:33 +00004176
4177 case TYPE_ATOMIC: {
4178 if (Record.size() != 1) {
4179 Error("Incorrect encoding of atomic type");
4180 return QualType();
4181 }
4182 QualType ValueType = readType(*Loc.F, Record, Idx);
4183 return Context.getAtomicType(ValueType);
4184 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00004185 }
David Blaikie7530c032012-01-17 06:56:22 +00004186 llvm_unreachable("Invalid TypeCode!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00004187}
4188
Sebastian Redlc3632732010-10-05 15:59:54 +00004189class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004190 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004191 ModuleFile &F;
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004192 const ASTReader::RecordData &Record;
John McCalla1ee0c52009-10-16 21:56:05 +00004193 unsigned &Idx;
4194
Sebastian Redlc3632732010-10-05 15:59:54 +00004195 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
4196 unsigned &I) {
4197 return Reader.ReadSourceLocation(F, R, I);
4198 }
4199
Douglas Gregor409448c2011-07-21 22:35:25 +00004200 template<typename T>
4201 T *ReadDeclAs(const ASTReader::RecordData &Record, unsigned &Idx) {
4202 return Reader.ReadDeclAs<T>(F, Record, Idx);
4203 }
4204
John McCalla1ee0c52009-10-16 21:56:05 +00004205public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004206 TypeLocReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004207 const ASTReader::RecordData &Record, unsigned &Idx)
Benjamin Kramerfacde172012-06-06 17:32:50 +00004208 : Reader(Reader), F(F), Record(Record), Idx(Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +00004209 { }
John McCalla1ee0c52009-10-16 21:56:05 +00004210
John McCall51bd8032009-10-18 01:05:36 +00004211 // We want compile-time assurance that we've enumerated all of
4212 // these, so unfortunately we have to declare them first, then
4213 // define them out-of-line.
4214#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00004215#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00004216 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004217#include "clang/AST/TypeLocNodes.def"
4218
John McCall51bd8032009-10-18 01:05:36 +00004219 void VisitFunctionTypeLoc(FunctionTypeLoc);
4220 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00004221};
4222
John McCall51bd8032009-10-18 01:05:36 +00004223void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00004224 // nothing to do
4225}
John McCall51bd8032009-10-18 01:05:36 +00004226void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004227 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorddf889a2010-01-18 18:04:31 +00004228 if (TL.needsExtraLocalData()) {
4229 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
4230 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
4231 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
4232 TL.setModeAttr(Record[Idx++]);
4233 }
John McCalla1ee0c52009-10-16 21:56:05 +00004234}
John McCall51bd8032009-10-18 01:05:36 +00004235void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004236 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004237}
John McCall51bd8032009-10-18 01:05:36 +00004238void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004239 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004240}
John McCall51bd8032009-10-18 01:05:36 +00004241void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004242 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004243}
John McCall51bd8032009-10-18 01:05:36 +00004244void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004245 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004246}
John McCall51bd8032009-10-18 01:05:36 +00004247void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004248 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004249}
John McCall51bd8032009-10-18 01:05:36 +00004250void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004251 TL.setStarLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +00004252 TL.setClassTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004253}
John McCall51bd8032009-10-18 01:05:36 +00004254void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004255 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
4256 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004257 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00004258 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004259 else
John McCall51bd8032009-10-18 01:05:36 +00004260 TL.setSizeExpr(0);
4261}
4262void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
4263 VisitArrayTypeLoc(TL);
4264}
4265void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
4266 VisitArrayTypeLoc(TL);
4267}
4268void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
4269 VisitArrayTypeLoc(TL);
4270}
4271void TypeLocReader::VisitDependentSizedArrayTypeLoc(
4272 DependentSizedArrayTypeLoc TL) {
4273 VisitArrayTypeLoc(TL);
4274}
4275void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
4276 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004277 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004278}
4279void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004280 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004281}
4282void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004283 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004284}
4285void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +00004286 TL.setLocalRangeBegin(ReadSourceLocation(Record, Idx));
4287 TL.setLocalRangeEnd(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004288 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00004289 TL.setArg(i, ReadDeclAs<ParmVarDecl>(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004290 }
4291}
4292void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
4293 VisitFunctionTypeLoc(TL);
4294}
4295void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
4296 VisitFunctionTypeLoc(TL);
4297}
John McCalled976492009-12-04 22:46:56 +00004298void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004299 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalled976492009-12-04 22:46:56 +00004300}
John McCall51bd8032009-10-18 01:05:36 +00004301void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004302 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004303}
4304void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004305 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4306 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4307 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004308}
4309void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004310 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
4311 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4312 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4313 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004314}
4315void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004316 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004317}
Sean Huntca63c202011-05-24 22:41:36 +00004318void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
4319 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4320 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4321 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4322 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
4323}
Richard Smith34b41d92011-02-20 03:19:35 +00004324void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
4325 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4326}
John McCall51bd8032009-10-18 01:05:36 +00004327void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004328 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004329}
4330void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004331 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004332}
John McCall9d156a72011-01-06 01:58:22 +00004333void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
4334 TL.setAttrNameLoc(ReadSourceLocation(Record, Idx));
4335 if (TL.hasAttrOperand()) {
4336 SourceRange range;
4337 range.setBegin(ReadSourceLocation(Record, Idx));
4338 range.setEnd(ReadSourceLocation(Record, Idx));
4339 TL.setAttrOperandParensRange(range);
4340 }
4341 if (TL.hasAttrExprOperand()) {
4342 if (Record[Idx++])
4343 TL.setAttrExprOperand(Reader.ReadExpr(F));
4344 else
4345 TL.setAttrExprOperand(0);
4346 } else if (TL.hasAttrEnumOperand())
4347 TL.setAttrEnumOperandLoc(ReadSourceLocation(Record, Idx));
4348}
John McCall51bd8032009-10-18 01:05:36 +00004349void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004350 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004351}
John McCall49a832b2009-10-18 09:09:24 +00004352void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
4353 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004354 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall49a832b2009-10-18 09:09:24 +00004355}
Douglas Gregorc3069d62011-01-14 02:55:32 +00004356void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
4357 SubstTemplateTypeParmPackTypeLoc TL) {
4358 TL.setNameLoc(ReadSourceLocation(Record, Idx));
4359}
John McCall51bd8032009-10-18 01:05:36 +00004360void TypeLocReader::VisitTemplateSpecializationTypeLoc(
4361 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004362 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004363 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
4364 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4365 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall833ca992009-10-29 08:12:44 +00004366 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
4367 TL.setArgLocInfo(i,
Sebastian Redlc3632732010-10-05 15:59:54 +00004368 Reader.GetTemplateArgumentLocInfo(F,
4369 TL.getTypePtr()->getArg(i).getKind(),
4370 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004371}
Abramo Bagnara075f8f12010-12-10 16:29:40 +00004372void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
4373 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4374 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4375}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00004376void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004377 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor9e876872011-03-01 18:12:44 +00004378 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004379}
John McCall3cb0ebd2010-03-10 03:28:59 +00004380void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004381 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall3cb0ebd2010-03-10 03:28:59 +00004382}
Douglas Gregor4714c122010-03-31 17:34:00 +00004383void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +00004384 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor2494dd02011-03-01 01:34:45 +00004385 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004386 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004387}
John McCall33500952010-06-11 00:33:02 +00004388void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
4389 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004390 TL.setElaboratedKeywordLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor94fdffa2011-03-01 20:11:18 +00004391 TL.setQualifierLoc(Reader.ReadNestedNameSpecifierLoc(F, Record, Idx));
Abramo Bagnara66581d42012-02-06 22:45:07 +00004392 TL.setTemplateKeywordLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara55d23c92012-02-06 14:41:24 +00004393 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00004394 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4395 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004396 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
4397 TL.setArgLocInfo(I,
Sebastian Redlc3632732010-10-05 15:59:54 +00004398 Reader.GetTemplateArgumentLocInfo(F,
4399 TL.getTypePtr()->getArg(I).getKind(),
4400 Record, Idx));
John McCall33500952010-06-11 00:33:02 +00004401}
Douglas Gregor7536dd52010-12-20 02:24:11 +00004402void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
4403 TL.setEllipsisLoc(ReadSourceLocation(Record, Idx));
4404}
John McCall51bd8032009-10-18 01:05:36 +00004405void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004406 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallc12c5bb2010-05-15 11:32:37 +00004407}
4408void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
4409 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00004410 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
4411 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00004412 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00004413 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCalla1ee0c52009-10-16 21:56:05 +00004414}
John McCall54e14c42009-10-22 22:37:11 +00004415void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004416 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall54e14c42009-10-22 22:37:11 +00004417}
Eli Friedmanb001de72011-10-06 23:00:33 +00004418void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
4419 TL.setKWLoc(ReadSourceLocation(Record, Idx));
4420 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
4421 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
4422}
John McCalla1ee0c52009-10-16 21:56:05 +00004423
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004424TypeSourceInfo *ASTReader::GetTypeSourceInfo(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004425 const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00004426 unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004427 QualType InfoTy = readType(F, Record, Idx);
John McCalla1ee0c52009-10-16 21:56:05 +00004428 if (InfoTy.isNull())
4429 return 0;
4430
Douglas Gregor35942772011-09-09 21:34:22 +00004431 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
Sebastian Redlc3632732010-10-05 15:59:54 +00004432 TypeLocReader TLR(*this, F, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00004433 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00004434 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00004435 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00004436}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004437
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004438QualType ASTReader::GetType(TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00004439 unsigned FastQuals = ID & Qualifiers::FastMask;
4440 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004441
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004442 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004443 QualType T;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004444 switch ((PredefinedTypeIDs)Index) {
4445 case PREDEF_TYPE_NULL_ID: return QualType();
Douglas Gregor35942772011-09-09 21:34:22 +00004446 case PREDEF_TYPE_VOID_ID: T = Context.VoidTy; break;
4447 case PREDEF_TYPE_BOOL_ID: T = Context.BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004448
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004449 case PREDEF_TYPE_CHAR_U_ID:
4450 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregor2cf26342009-04-09 22:27:44 +00004451 // FIXME: Check that the signedness of CharTy is correct!
Douglas Gregor35942772011-09-09 21:34:22 +00004452 T = Context.CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004453 break;
4454
Douglas Gregor35942772011-09-09 21:34:22 +00004455 case PREDEF_TYPE_UCHAR_ID: T = Context.UnsignedCharTy; break;
4456 case PREDEF_TYPE_USHORT_ID: T = Context.UnsignedShortTy; break;
4457 case PREDEF_TYPE_UINT_ID: T = Context.UnsignedIntTy; break;
4458 case PREDEF_TYPE_ULONG_ID: T = Context.UnsignedLongTy; break;
4459 case PREDEF_TYPE_ULONGLONG_ID: T = Context.UnsignedLongLongTy; break;
4460 case PREDEF_TYPE_UINT128_ID: T = Context.UnsignedInt128Ty; break;
4461 case PREDEF_TYPE_SCHAR_ID: T = Context.SignedCharTy; break;
4462 case PREDEF_TYPE_WCHAR_ID: T = Context.WCharTy; break;
4463 case PREDEF_TYPE_SHORT_ID: T = Context.ShortTy; break;
4464 case PREDEF_TYPE_INT_ID: T = Context.IntTy; break;
4465 case PREDEF_TYPE_LONG_ID: T = Context.LongTy; break;
4466 case PREDEF_TYPE_LONGLONG_ID: T = Context.LongLongTy; break;
4467 case PREDEF_TYPE_INT128_ID: T = Context.Int128Ty; break;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00004468 case PREDEF_TYPE_HALF_ID: T = Context.HalfTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004469 case PREDEF_TYPE_FLOAT_ID: T = Context.FloatTy; break;
4470 case PREDEF_TYPE_DOUBLE_ID: T = Context.DoubleTy; break;
4471 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context.LongDoubleTy; break;
4472 case PREDEF_TYPE_OVERLOAD_ID: T = Context.OverloadTy; break;
4473 case PREDEF_TYPE_BOUND_MEMBER: T = Context.BoundMemberTy; break;
John McCall3c3b7f92011-10-25 17:37:35 +00004474 case PREDEF_TYPE_PSEUDO_OBJECT: T = Context.PseudoObjectTy; break;
Douglas Gregor35942772011-09-09 21:34:22 +00004475 case PREDEF_TYPE_DEPENDENT_ID: T = Context.DependentTy; break;
4476 case PREDEF_TYPE_UNKNOWN_ANY: T = Context.UnknownAnyTy; break;
4477 case PREDEF_TYPE_NULLPTR_ID: T = Context.NullPtrTy; break;
4478 case PREDEF_TYPE_CHAR16_ID: T = Context.Char16Ty; break;
4479 case PREDEF_TYPE_CHAR32_ID: T = Context.Char32Ty; break;
4480 case PREDEF_TYPE_OBJC_ID: T = Context.ObjCBuiltinIdTy; break;
4481 case PREDEF_TYPE_OBJC_CLASS: T = Context.ObjCBuiltinClassTy; break;
4482 case PREDEF_TYPE_OBJC_SEL: T = Context.ObjCBuiltinSelTy; break;
4483 case PREDEF_TYPE_AUTO_DEDUCT: T = Context.getAutoDeductType(); break;
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004484
4485 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00004486 T = Context.getAutoRRefDeductType();
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004487 break;
John McCall0ddaeb92011-10-17 18:09:15 +00004488
4489 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
4490 T = Context.ARCUnbridgedCastTy;
4491 break;
4492
Meador Ingefb40e3f2012-07-01 15:57:25 +00004493 case PREDEF_TYPE_VA_LIST_TAG:
4494 T = Context.getVaListTagType();
4495 break;
Eli Friedmana6c66ce2012-08-31 00:14:07 +00004496
4497 case PREDEF_TYPE_BUILTIN_FN:
4498 T = Context.BuiltinFnTy;
4499 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004500 }
4501
4502 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00004503 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004504 }
4505
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004506 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redlaaec0aa2010-07-20 22:37:49 +00004507 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl07a353c2010-07-14 20:26:45 +00004508 if (TypesLoaded[Index].isNull()) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004509 TypesLoaded[Index] = readTypeRecord(Index);
Douglas Gregor97475832010-10-05 18:37:06 +00004510 if (TypesLoaded[Index].isNull())
4511 return QualType();
4512
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004513 TypesLoaded[Index]->setFromAST();
Sebastian Redl30c514c2010-07-14 23:45:08 +00004514 if (DeserializationListener)
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004515 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1476ed42010-07-16 16:36:56 +00004516 TypesLoaded[Index]);
Sebastian Redl07a353c2010-07-14 20:26:45 +00004517 }
Mike Stump1eb44332009-09-09 15:08:12 +00004518
John McCall0953e762009-09-24 19:53:00 +00004519 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004520}
4521
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004522QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
Douglas Gregor393f2492011-07-22 00:38:23 +00004523 return GetType(getGlobalTypeID(F, LocalID));
4524}
4525
4526serialization::TypeID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004527ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregora119da02011-08-02 16:26:37 +00004528 unsigned FastQuals = LocalID & Qualifiers::FastMask;
4529 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
4530
4531 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
4532 return LocalID;
4533
4534 ContinuousRangeMap<uint32_t, int, 2>::iterator I
4535 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
4536 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
4537
4538 unsigned GlobalIndex = LocalIndex + I->second;
4539 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
4540}
4541
John McCall833ca992009-10-29 08:12:44 +00004542TemplateArgumentLocInfo
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004543ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00004544 TemplateArgument::ArgKind Kind,
John McCall833ca992009-10-29 08:12:44 +00004545 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004546 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00004547 switch (Kind) {
4548 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00004549 return ReadExpr(F);
John McCall833ca992009-10-29 08:12:44 +00004550 case TemplateArgument::Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00004551 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00004552 case TemplateArgument::Template: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004553 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4554 Index);
Sebastian Redlc3632732010-10-05 15:59:54 +00004555 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004556 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregora7fc9012011-01-05 18:58:31 +00004557 SourceLocation());
4558 }
4559 case TemplateArgument::TemplateExpansion: {
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004560 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
4561 Index);
Douglas Gregora7fc9012011-01-05 18:58:31 +00004562 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorba68eca2011-01-05 17:40:24 +00004563 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004564 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Douglas Gregorba68eca2011-01-05 17:40:24 +00004565 EllipsisLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00004566 }
John McCall833ca992009-10-29 08:12:44 +00004567 case TemplateArgument::Null:
4568 case TemplateArgument::Integral:
4569 case TemplateArgument::Declaration:
Eli Friedmand7a6b162012-09-26 02:36:12 +00004570 case TemplateArgument::NullPtr:
John McCall833ca992009-10-29 08:12:44 +00004571 case TemplateArgument::Pack:
Eli Friedmand7a6b162012-09-26 02:36:12 +00004572 // FIXME: Is this right?
John McCall833ca992009-10-29 08:12:44 +00004573 return TemplateArgumentLocInfo();
4574 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00004575 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00004576}
4577
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004578TemplateArgumentLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004579ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00004580 const RecordData &Record, unsigned &Index) {
Sebastian Redlc3632732010-10-05 15:59:54 +00004581 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004582
4583 if (Arg.getKind() == TemplateArgument::Expression) {
4584 if (Record[Index++]) // bool InfoHasSameExpr.
4585 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
4586 }
Sebastian Redlc3632732010-10-05 15:59:54 +00004587 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00004588 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004589}
4590
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004591Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall76bd1f32010-06-01 09:23:16 +00004592 return GetDecl(ID);
4593}
4594
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004595uint64_t ASTReader::readCXXBaseSpecifiers(ModuleFile &M, const RecordData &Record,
Douglas Gregore92b8a12011-08-04 00:01:48 +00004596 unsigned &Idx){
4597 if (Idx >= Record.size())
Douglas Gregor7c789c12010-10-29 22:39:52 +00004598 return 0;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004599
Douglas Gregore92b8a12011-08-04 00:01:48 +00004600 unsigned LocalID = Record[Idx++];
4601 return getGlobalBitOffset(M, M.CXXBaseSpecifiersOffsets[LocalID - 1]);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004602}
4603
4604CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004605 RecordLocation Loc = getLocalBitOffset(Offset);
4606 llvm::BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004607 SavedStreamPosition SavedPosition(Cursor);
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004608 Cursor.JumpToBit(Loc.Offset);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004609 ReadingKindTracker ReadingKind(Read_Decl, *this);
4610 RecordData Record;
4611 unsigned Code = Cursor.ReadCode();
4612 unsigned RecCode = Cursor.ReadRecord(Code, Record);
4613 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
4614 Error("Malformed AST file: missing C++ base specifiers");
4615 return 0;
4616 }
4617
4618 unsigned Idx = 0;
4619 unsigned NumBases = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00004620 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004621 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
4622 for (unsigned I = 0; I != NumBases; ++I)
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004623 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00004624 return Bases;
4625}
4626
Douglas Gregor409448c2011-07-21 22:35:25 +00004627serialization::DeclID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004628ASTReader::getGlobalDeclID(ModuleFile &F, unsigned LocalID) const {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004629 if (LocalID < NUM_PREDEF_DECL_IDS)
Douglas Gregor496c7092011-08-03 15:48:04 +00004630 return LocalID;
4631
4632 ContinuousRangeMap<uint32_t, int, 2>::iterator I
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004633 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
Douglas Gregor496c7092011-08-03 15:48:04 +00004634 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
4635
4636 return LocalID + I->second;
Douglas Gregor409448c2011-07-21 22:35:25 +00004637}
4638
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004639bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004640 ModuleFile &M) const {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00004641 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(ID);
4642 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4643 return &M == I->second;
4644}
4645
Douglas Gregorcff9f262012-01-27 01:47:08 +00004646ModuleFile *ASTReader::getOwningModuleFile(Decl *D) {
4647 if (!D->isFromASTFile())
4648 return 0;
4649 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
4650 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4651 return I->second;
4652}
4653
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004654SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
4655 if (ID < NUM_PREDEF_DECL_IDS)
4656 return SourceLocation();
4657
4658 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4659
4660 if (Index > DeclsLoaded.size()) {
4661 Error("declaration ID out-of-range for AST file");
4662 return SourceLocation();
4663 }
4664
4665 if (Decl *D = DeclsLoaded[Index])
4666 return D->getLocation();
4667
4668 unsigned RawLocation = 0;
4669 RecordLocation Rec = DeclCursorForID(ID, RawLocation);
4670 return ReadSourceLocation(*Rec.F, RawLocation);
4671}
4672
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004673Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004674 if (ID < NUM_PREDEF_DECL_IDS) {
4675 switch ((PredefinedDeclIDs)ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004676 case PREDEF_DECL_NULL_ID:
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004677 return 0;
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004678
4679 case PREDEF_DECL_TRANSLATION_UNIT_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004680 return Context.getTranslationUnitDecl();
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00004681
4682 case PREDEF_DECL_OBJC_ID_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004683 return Context.getObjCIdDecl();
Douglas Gregor79d67262011-08-12 05:59:41 +00004684
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004685 case PREDEF_DECL_OBJC_SEL_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004686 return Context.getObjCSelDecl();
Douglas Gregor7a27ea52011-08-12 06:17:30 +00004687
Douglas Gregor79d67262011-08-12 05:59:41 +00004688 case PREDEF_DECL_OBJC_CLASS_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004689 return Context.getObjCClassDecl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004690
Douglas Gregora6ea10e2012-01-17 18:09:05 +00004691 case PREDEF_DECL_OBJC_PROTOCOL_ID:
4692 return Context.getObjCProtocolDecl();
4693
Douglas Gregor772eeae2011-08-12 06:49:56 +00004694 case PREDEF_DECL_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004695 return Context.getInt128Decl();
Douglas Gregor772eeae2011-08-12 06:49:56 +00004696
4697 case PREDEF_DECL_UNSIGNED_INT_128_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004698 return Context.getUInt128Decl();
Douglas Gregore97179c2011-09-08 01:46:34 +00004699
4700 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
Douglas Gregor35942772011-09-09 21:34:22 +00004701 return Context.getObjCInstanceTypeDecl();
Meador Ingec5613b22012-06-16 03:34:49 +00004702
4703 case PREDEF_DECL_BUILTIN_VA_LIST_ID:
4704 return Context.getBuiltinVaListDecl();
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004705 }
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00004706 }
4707
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004708 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
4709
Richard Smith2fbf3732011-12-20 04:39:57 +00004710 if (Index >= DeclsLoaded.size()) {
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00004711 assert(0 && "declaration ID out-of-range for AST file");
Sebastian Redl3c7f4132010-08-18 23:57:06 +00004712 Error("declaration ID out-of-range for AST file");
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00004713 return 0;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004714 }
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004715
Douglas Gregorfd002a72011-12-16 22:37:11 +00004716 if (!DeclsLoaded[Index]) {
Douglas Gregor496c7092011-08-03 15:48:04 +00004717 ReadDeclRecord(ID);
Sebastian Redl30c514c2010-07-14 23:45:08 +00004718 if (DeserializationListener)
4719 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
4720 }
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004721
4722 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00004723}
4724
Douglas Gregora1be2782011-12-17 23:38:30 +00004725DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
4726 DeclID GlobalID) {
4727 if (GlobalID < NUM_PREDEF_DECL_IDS)
4728 return GlobalID;
4729
4730 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
4731 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
4732 ModuleFile *Owner = I->second;
4733
4734 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
4735 = M.GlobalToLocalDeclIDs.find(Owner);
4736 if (Pos == M.GlobalToLocalDeclIDs.end())
4737 return 0;
4738
4739 return GlobalID - Owner->BaseDeclID + Pos->second;
4740}
4741
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004742serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00004743 const RecordData &Record,
4744 unsigned &Idx) {
4745 if (Idx >= Record.size()) {
4746 Error("Corrupted AST file");
4747 return 0;
4748 }
4749
4750 return getGlobalDeclID(F, Record[Idx++]);
4751}
4752
Chris Lattner887e2b32009-04-27 05:46:25 +00004753/// \brief Resolve the offset of a statement into a statement.
4754///
4755/// This operation will read a new statement from the external
4756/// source each time it is called, and is meant to be used via a
4757/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004758Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00004759 // Switch case IDs are per Decl.
4760 ClearSwitchCaseIDs();
4761
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00004762 // Offset here is a global offset across the entire chain.
Douglas Gregor8f1231b2011-07-22 06:10:01 +00004763 RecordLocation Loc = getLocalBitOffset(Offset);
4764 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
4765 return ReadStmtFromStream(*Loc.F);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00004766}
4767
Douglas Gregor851c75a2011-08-24 21:27:34 +00004768namespace {
4769 class FindExternalLexicalDeclsVisitor {
4770 ASTReader &Reader;
4771 const DeclContext *DC;
4772 bool (*isKindWeWant)(Decl::Kind);
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004773
Douglas Gregor851c75a2011-08-24 21:27:34 +00004774 SmallVectorImpl<Decl*> &Decls;
4775 bool PredefsVisited[NUM_PREDEF_DECL_IDS];
4776
4777 public:
4778 FindExternalLexicalDeclsVisitor(ASTReader &Reader, const DeclContext *DC,
4779 bool (*isKindWeWant)(Decl::Kind),
4780 SmallVectorImpl<Decl*> &Decls)
4781 : Reader(Reader), DC(DC), isKindWeWant(isKindWeWant), Decls(Decls)
4782 {
4783 for (unsigned I = 0; I != NUM_PREDEF_DECL_IDS; ++I)
4784 PredefsVisited[I] = false;
4785 }
4786
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004787 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
Douglas Gregor851c75a2011-08-24 21:27:34 +00004788 if (Preorder)
4789 return false;
4790
4791 FindExternalLexicalDeclsVisitor *This
4792 = static_cast<FindExternalLexicalDeclsVisitor *>(UserData);
4793
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004794 ModuleFile::DeclContextInfosMap::iterator Info
Douglas Gregor851c75a2011-08-24 21:27:34 +00004795 = M.DeclContextInfos.find(This->DC);
4796 if (Info == M.DeclContextInfos.end() || !Info->second.LexicalDecls)
4797 return false;
4798
4799 // Load all of the declaration IDs
4800 for (const KindDeclIDPair *ID = Info->second.LexicalDecls,
4801 *IDE = ID + Info->second.NumLexicalDecls;
4802 ID != IDE; ++ID) {
4803 if (This->isKindWeWant && !This->isKindWeWant((Decl::Kind)ID->first))
4804 continue;
4805
4806 // Don't add predefined declarations to the lexical context more
4807 // than once.
4808 if (ID->second < NUM_PREDEF_DECL_IDS) {
4809 if (This->PredefsVisited[ID->second])
4810 continue;
4811
4812 This->PredefsVisited[ID->second] = true;
4813 }
4814
Douglas Gregor2ea054f2011-08-26 22:04:51 +00004815 if (Decl *D = This->Reader.GetLocalDecl(M, ID->second)) {
4816 if (!This->DC->isDeclInLexicalTraversal(D))
4817 This->Decls.push_back(D);
4818 }
Douglas Gregor851c75a2011-08-24 21:27:34 +00004819 }
4820
4821 return false;
4822 }
4823 };
4824}
4825
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004826ExternalLoadResult ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00004827 bool (*isKindWeWant)(Decl::Kind),
Chris Lattner5f9e2722011-07-23 10:55:15 +00004828 SmallVectorImpl<Decl*> &Decls) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004829 // There might be lexical decls in multiple modules, for the TU at
Douglas Gregor851c75a2011-08-24 21:27:34 +00004830 // least. Walk all of the modules in the order they were loaded.
4831 FindExternalLexicalDeclsVisitor Visitor(*this, DC, isKindWeWant, Decls);
4832 ModuleMgr.visitDepthFirst(&FindExternalLexicalDeclsVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00004833 ++NumLexicalDeclContextsRead;
Douglas Gregorba6ffaf2011-07-15 21:46:17 +00004834 return ELR_Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004835}
4836
Douglas Gregor0d95f772011-08-24 19:03:07 +00004837namespace {
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004838
4839class DeclIDComp {
4840 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004841 ModuleFile &Mod;
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004842
4843public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004844 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004845
4846 bool operator()(LocalDeclID L, LocalDeclID R) const {
4847 SourceLocation LHS = getLocation(L);
4848 SourceLocation RHS = getLocation(R);
4849 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4850 }
4851
4852 bool operator()(SourceLocation LHS, LocalDeclID R) const {
4853 SourceLocation RHS = getLocation(R);
4854 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4855 }
4856
4857 bool operator()(LocalDeclID L, SourceLocation RHS) const {
4858 SourceLocation LHS = getLocation(L);
4859 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
4860 }
4861
4862 SourceLocation getLocation(LocalDeclID ID) const {
4863 return Reader.getSourceManager().getFileLoc(
4864 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
4865 }
4866};
4867
4868}
4869
4870void ASTReader::FindFileRegionDecls(FileID File,
4871 unsigned Offset, unsigned Length,
4872 SmallVectorImpl<Decl *> &Decls) {
4873 SourceManager &SM = getSourceManager();
4874
4875 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
4876 if (I == FileDeclIDs.end())
4877 return;
4878
4879 FileDeclsInfo &DInfo = I->second;
4880 if (DInfo.Decls.empty())
4881 return;
4882
4883 SourceLocation
4884 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
4885 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
4886
4887 DeclIDComp DIDComp(*this, *DInfo.Mod);
4888 ArrayRef<serialization::LocalDeclID>::iterator
4889 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4890 BeginLoc, DIDComp);
4891 if (BeginIt != DInfo.Decls.begin())
4892 --BeginIt;
4893
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +00004894 // If we are pointing at a top-level decl inside an objc container, we need
4895 // to backtrack until we find it otherwise we will fail to report that the
4896 // region overlaps with an objc container.
4897 while (BeginIt != DInfo.Decls.begin() &&
4898 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
4899 ->isTopLevelDeclInObjCContainer())
4900 --BeginIt;
4901
Argyrios Kyrtzidisdfb332d2011-11-03 02:20:32 +00004902 ArrayRef<serialization::LocalDeclID>::iterator
4903 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
4904 EndLoc, DIDComp);
4905 if (EndIt != DInfo.Decls.end())
4906 ++EndIt;
4907
4908 for (ArrayRef<serialization::LocalDeclID>::iterator
4909 DIt = BeginIt; DIt != EndIt; ++DIt)
4910 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
4911}
4912
4913namespace {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004914 /// \brief ModuleFile visitor used to perform name lookup into a
Douglas Gregor0d95f772011-08-24 19:03:07 +00004915 /// declaration context.
4916 class DeclContextNameLookupVisitor {
4917 ASTReader &Reader;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004918 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Douglas Gregor0d95f772011-08-24 19:03:07 +00004919 DeclarationName Name;
4920 SmallVectorImpl<NamedDecl *> &Decls;
4921
4922 public:
4923 DeclContextNameLookupVisitor(ASTReader &Reader,
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004924 SmallVectorImpl<const DeclContext *> &Contexts,
4925 DeclarationName Name,
Douglas Gregor0d95f772011-08-24 19:03:07 +00004926 SmallVectorImpl<NamedDecl *> &Decls)
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004927 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls) { }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004928
Douglas Gregor1a4761e2011-11-30 23:21:26 +00004929 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00004930 DeclContextNameLookupVisitor *This
4931 = static_cast<DeclContextNameLookupVisitor *>(UserData);
4932
4933 // Check whether we have any visible declaration information for
4934 // this context in this module.
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004935 ModuleFile::DeclContextInfosMap::iterator Info;
4936 bool FoundInfo = false;
4937 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
4938 Info = M.DeclContextInfos.find(This->Contexts[I]);
4939 if (Info != M.DeclContextInfos.end() &&
4940 Info->second.NameLookupTableData) {
4941 FoundInfo = true;
4942 break;
4943 }
4944 }
Douglas Gregor0d95f772011-08-24 19:03:07 +00004945
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004946 if (!FoundInfo)
4947 return false;
4948
Douglas Gregor0d95f772011-08-24 19:03:07 +00004949 // Look for this name within this module.
4950 ASTDeclContextNameLookupTable *LookupTable =
Benjamin Kramerb1758c62012-04-15 12:36:49 +00004951 Info->second.NameLookupTableData;
Douglas Gregor0d95f772011-08-24 19:03:07 +00004952 ASTDeclContextNameLookupTable::iterator Pos
4953 = LookupTable->find(This->Name);
4954 if (Pos == LookupTable->end())
4955 return false;
4956
4957 bool FoundAnything = false;
4958 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
4959 for (; Data.first != Data.second; ++Data.first) {
4960 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M, *Data.first);
4961 if (!ND)
4962 continue;
4963
4964 if (ND->getDeclName() != This->Name) {
Axel Naumann3dd82f72012-10-01 09:51:27 +00004965 // A name might be null because the decl's redeclarable part is
4966 // currently read before reading its name. The lookup is triggered by
4967 // building that decl (likely indirectly), and so it is later in the
4968 // sense of "already existing" and can be ignored here.
Douglas Gregor0d95f772011-08-24 19:03:07 +00004969 continue;
4970 }
4971
4972 // Record this declaration.
4973 FoundAnything = true;
4974 This->Decls.push_back(ND);
4975 }
4976
4977 return FoundAnything;
4978 }
4979 };
4980}
4981
John McCall76bd1f32010-06-01 09:23:16 +00004982DeclContext::lookup_result
Sebastian Redlc43b54c2010-08-18 23:56:43 +00004983ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall76bd1f32010-06-01 09:23:16 +00004984 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00004985 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00004986 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00004987 if (!Name)
4988 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
4989 DeclContext::lookup_iterator(0));
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00004990
Chris Lattner5f9e2722011-07-23 10:55:15 +00004991 SmallVector<NamedDecl *, 64> Decls;
Douglas Gregorc6c8e0e2012-01-09 17:30:44 +00004992
4993 // Compute the declaration contexts we need to look into. Multiple such
4994 // declaration contexts occur when two declaration contexts from disjoint
4995 // modules get merged, e.g., when two namespaces with the same name are
4996 // independently defined in separate modules.
4997 SmallVector<const DeclContext *, 2> Contexts;
4998 Contexts.push_back(DC);
4999
5000 if (DC->isNamespace()) {
5001 MergedDeclsMap::iterator Merged
5002 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5003 if (Merged != MergedDecls.end()) {
5004 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5005 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5006 }
5007 }
5008
5009 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls);
Douglas Gregor0d95f772011-08-24 19:03:07 +00005010 ModuleMgr.visit(&DeclContextNameLookupVisitor::visit, &Visitor);
Douglas Gregor25123082009-04-22 22:34:57 +00005011 ++NumVisibleDeclContextsRead;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00005012 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall76bd1f32010-06-01 09:23:16 +00005013 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00005014}
5015
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005016namespace {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005017 /// \brief ModuleFile visitor used to retrieve all visible names in a
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005018 /// declaration context.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005019 class DeclContextAllNamesVisitor {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005020 ASTReader &Reader;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005021 llvm::SmallVectorImpl<const DeclContext *> &Contexts;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005022 llvm::DenseMap<DeclarationName, SmallVector<NamedDecl *, 8> > &Decls;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005023
5024 public:
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005025 DeclContextAllNamesVisitor(ASTReader &Reader,
5026 SmallVectorImpl<const DeclContext *> &Contexts,
5027 llvm::DenseMap<DeclarationName,
5028 SmallVector<NamedDecl *, 8> > &Decls)
5029 : Reader(Reader), Contexts(Contexts), Decls(Decls) { }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005030
5031 static bool visit(ModuleFile &M, void *UserData) {
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005032 DeclContextAllNamesVisitor *This
5033 = static_cast<DeclContextAllNamesVisitor *>(UserData);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005034
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005035 // Check whether we have any visible declaration information for
5036 // this context in this module.
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005037 ModuleFile::DeclContextInfosMap::iterator Info;
5038 bool FoundInfo = false;
5039 for (unsigned I = 0, N = This->Contexts.size(); I != N; ++I) {
5040 Info = M.DeclContextInfos.find(This->Contexts[I]);
5041 if (Info != M.DeclContextInfos.end() &&
5042 Info->second.NameLookupTableData) {
5043 FoundInfo = true;
5044 break;
5045 }
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005046 }
5047
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005048 if (!FoundInfo)
5049 return false;
5050
5051 ASTDeclContextNameLookupTable *LookupTable =
5052 Info->second.NameLookupTableData;
5053 bool FoundAnything = false;
5054 for (ASTDeclContextNameLookupTable::data_iterator
5055 I = LookupTable->data_begin(), E = LookupTable->data_end();
5056 I != E; ++I) {
5057 ASTDeclContextNameLookupTrait::data_type Data = *I;
5058 for (; Data.first != Data.second; ++Data.first) {
5059 NamedDecl *ND = This->Reader.GetLocalDeclAs<NamedDecl>(M,
5060 *Data.first);
5061 if (!ND)
5062 continue;
5063
5064 // Record this declaration.
5065 FoundAnything = true;
5066 This->Decls[ND->getDeclName()].push_back(ND);
5067 }
5068 }
5069
5070 return FoundAnything;
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005071 }
5072 };
5073}
5074
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005075void ASTReader::completeVisibleDeclsMap(const DeclContext *DC) {
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005076 if (!DC->hasExternalVisibleStorage())
5077 return;
Nick Lewyckyb346d2f2012-04-16 02:51:46 +00005078 llvm::DenseMap<DeclarationName, llvm::SmallVector<NamedDecl*, 8> > Decls;
5079
5080 // Compute the declaration contexts we need to look into. Multiple such
5081 // declaration contexts occur when two declaration contexts from disjoint
5082 // modules get merged, e.g., when two namespaces with the same name are
5083 // independently defined in separate modules.
5084 SmallVector<const DeclContext *, 2> Contexts;
5085 Contexts.push_back(DC);
5086
5087 if (DC->isNamespace()) {
5088 MergedDeclsMap::iterator Merged
5089 = MergedDecls.find(const_cast<Decl *>(cast<Decl>(DC)));
5090 if (Merged != MergedDecls.end()) {
5091 for (unsigned I = 0, N = Merged->second.size(); I != N; ++I)
5092 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
5093 }
5094 }
5095
5096 DeclContextAllNamesVisitor Visitor(*this, Contexts, Decls);
5097 ModuleMgr.visit(&DeclContextAllNamesVisitor::visit, &Visitor);
5098 ++NumVisibleDeclContextsRead;
5099
5100 for (llvm::DenseMap<DeclarationName,
5101 llvm::SmallVector<NamedDecl*, 8> >::iterator
5102 I = Decls.begin(), E = Decls.end(); I != E; ++I) {
5103 SetExternalVisibleDeclsForName(DC, I->first, I->second);
5104 }
Argyrios Kyrtzidis394e5392012-04-26 18:34:14 +00005105 const_cast<DeclContext *>(DC)->setHasExternalVisibleStorage(false);
Argyrios Kyrtzidis643586f2012-03-22 16:08:04 +00005106}
5107
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005108/// \brief Under non-PCH compilation the consumer receives the objc methods
5109/// before receiving the implementation, and codegen depends on this.
5110/// We simulate this by deserializing and passing to consumer the methods of the
5111/// implementation before passing the deserialized implementation decl.
5112static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
5113 ASTConsumer *Consumer) {
5114 assert(ImplD && Consumer);
5115
5116 for (ObjCImplDecl::method_iterator
5117 I = ImplD->meth_begin(), E = ImplD->meth_end(); I != E; ++I)
David Blaikie581deb32012-06-06 20:45:41 +00005118 Consumer->HandleInterestingDecl(DeclGroupRef(*I));
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005119
5120 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
5121}
5122
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005123void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005124 assert(Consumer);
5125 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005126 Decl *D = InterestingDecls.front();
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005127 InterestingDecls.pop_front();
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00005128
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005129 PassInterestingDeclToConsumer(D);
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005130 }
5131}
5132
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00005133void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
5134 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
5135 PassObjCImplDeclToConsumer(ImplD, Consumer);
5136 else
5137 Consumer->HandleInterestingDecl(DeclGroupRef(D));
5138}
5139
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005140void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00005141 this->Consumer = Consumer;
5142
Douglas Gregorfdd01722009-04-14 00:24:19 +00005143 if (!Consumer)
5144 return;
5145
5146 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005147 // Force deserialization of this decl, which will cause it to be queued for
5148 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00005149 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00005150 }
Douglas Gregor1a995dd2011-09-15 18:47:32 +00005151 ExternalDefinitions.clear();
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00005152
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00005153 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00005154}
5155
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005156void ASTReader::PrintStats() {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005157 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005158
Mike Stump1eb44332009-09-09 15:08:12 +00005159 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005160 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00005161 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005162 unsigned NumDeclsLoaded
5163 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
5164 (Decl *)0);
5165 unsigned NumIdentifiersLoaded
5166 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
5167 IdentifiersLoaded.end(),
5168 (IdentifierInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00005169 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005170 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
5171 SelectorsLoaded.end(),
5172 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00005173
Douglas Gregor4fed3f42009-04-27 18:38:38 +00005174 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
5175 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor0cdd7982011-07-21 18:46:38 +00005176 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005177 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
5178 NumSLocEntriesRead, TotalNumSLocEntries,
5179 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005180 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005181 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005182 NumTypesLoaded, (unsigned)TypesLoaded.size(),
5183 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
5184 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005185 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00005186 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
5187 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005188 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005189 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005190 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
5191 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Sebastian Redl725cd962010-08-04 20:40:17 +00005192 if (!SelectorsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00005193 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redl725cd962010-08-04 20:40:17 +00005194 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
5195 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00005196 if (TotalNumStatements)
5197 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
5198 NumStatementsRead, TotalNumStatements,
5199 ((float)NumStatementsRead/TotalNumStatements * 100));
5200 if (TotalNumMacros)
5201 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
5202 NumMacrosRead, TotalNumMacros,
5203 ((float)NumMacrosRead/TotalNumMacros * 100));
5204 if (TotalLexicalDeclContexts)
5205 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
5206 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
5207 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
5208 * 100));
5209 if (TotalVisibleDeclContexts)
5210 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
5211 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
5212 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
5213 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005214 if (TotalNumMethodPoolEntries) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005215 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005216 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
5217 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor83941df2009-04-25 17:48:32 +00005218 * 100));
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005219 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor83941df2009-04-25 17:48:32 +00005220 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00005221 std::fprintf(stderr, "\n");
Douglas Gregor23d7df52011-07-21 19:50:14 +00005222 dump();
5223 std::fprintf(stderr, "\n");
5224}
5225
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005226template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Douglas Gregor23d7df52011-07-21 19:50:14 +00005227static void
Chris Lattner5f9e2722011-07-23 10:55:15 +00005228dumpModuleIDMap(StringRef Name,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005229 const ContinuousRangeMap<Key, ModuleFile *,
Douglas Gregor23d7df52011-07-21 19:50:14 +00005230 InitialCapacity> &Map) {
5231 if (Map.begin() == Map.end())
5232 return;
5233
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005234 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType;
Douglas Gregor23d7df52011-07-21 19:50:14 +00005235 llvm::errs() << Name << ":\n";
5236 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
5237 I != IEnd; ++I) {
5238 llvm::errs() << " " << I->first << " -> " << I->second->FileName
5239 << "\n";
5240 }
5241}
5242
Douglas Gregor23d7df52011-07-21 19:50:14 +00005243void ASTReader::dump() {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005244 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
Douglas Gregor8f1231b2011-07-22 06:10:01 +00005245 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
Douglas Gregor23d7df52011-07-21 19:50:14 +00005246 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
Douglas Gregor1e849b62011-07-29 00:21:44 +00005247 dumpModuleIDMap("Global type map", GlobalTypeMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005248 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005249 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
Douglas Gregor26ced122011-12-01 00:59:36 +00005250 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005251 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
Douglas Gregor9827a802011-07-29 00:56:45 +00005252 dumpModuleIDMap("Global preprocessed entity map",
5253 GlobalPreprocessedEntityMap);
Douglas Gregor8df5c9b2011-08-02 11:12:41 +00005254
5255 llvm::errs() << "\n*** PCH/Modules Loaded:";
5256 for (ModuleManager::ModuleConstIterator M = ModuleMgr.begin(),
5257 MEnd = ModuleMgr.end();
5258 M != MEnd; ++M)
5259 (*M)->dump();
Douglas Gregor2cf26342009-04-09 22:27:44 +00005260}
5261
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005262/// Return the amount of memory used by memory buffers, breaking down
5263/// by heap-backed versus mmap'ed memory.
5264void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005265 for (ModuleConstIterator I = ModuleMgr.begin(),
5266 E = ModuleMgr.end(); I != E; ++I) {
5267 if (llvm::MemoryBuffer *buf = (*I)->Buffer.get()) {
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005268 size_t bytes = buf->getBufferSize();
5269 switch (buf->getBufferKind()) {
5270 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
5271 sizes.malloc_bytes += bytes;
5272 break;
5273 case llvm::MemoryBuffer::MemoryBuffer_MMap:
5274 sizes.mmap_bytes += bytes;
5275 break;
5276 }
5277 }
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005278 }
Ted Kremeneke9b5f3d2011-04-28 23:46:20 +00005279}
5280
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005281void ASTReader::InitializeSema(Sema &S) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005282 SemaObj = &S;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005283 S.ExternalSource = this;
5284
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005285 // Makes sure any declarations that were deserialized "too early"
5286 // still get added to the identifier's declaration chains.
Douglas Gregor76dc8892010-09-24 23:29:12 +00005287 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005288 SemaObj->pushExternalDeclIntoScope(PreloadedDecls[I],
5289 PreloadedDecls[I]->getDeclName());
Douglas Gregor668c1a42009-04-21 22:25:48 +00005290 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00005291 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00005292
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005293 // Load the offsets of the declarations that Sema references.
5294 // They will be lazily deserialized when needed.
5295 if (!SemaDeclRefs.empty()) {
5296 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
Douglas Gregor1e5b6f62011-07-28 00:57:24 +00005297 if (!SemaObj->StdNamespace)
5298 SemaObj->StdNamespace = SemaDeclRefs[0];
5299 if (!SemaObj->StdBadAlloc)
5300 SemaObj->StdBadAlloc = SemaDeclRefs[1];
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00005301 }
5302
Peter Collingbourne84bccea2011-02-15 19:46:30 +00005303 if (!FPPragmaOptions.empty()) {
5304 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
5305 SemaObj->FPFeatures.fp_contract = FPPragmaOptions[0];
5306 }
5307
5308 if (!OpenCLExtensions.empty()) {
5309 unsigned I = 0;
5310#define OPENCLEXT(nm) SemaObj->OpenCLFeatures.nm = OpenCLExtensions[I++];
5311#include "clang/Basic/OpenCLExtensions.def"
5312
5313 assert(OpenCLExtensions.size() == I && "Wrong number of OPENCL_EXTENSIONS");
5314 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00005315}
5316
Douglas Gregor211f6e82011-08-20 04:39:52 +00005317IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Douglas Gregor057df202012-01-18 20:56:22 +00005318 IdentifierLookupVisitor Visitor(StringRef(NameStart, NameEnd - NameStart),
5319 /*PriorGeneration=*/0);
Douglas Gregor211f6e82011-08-20 04:39:52 +00005320 ModuleMgr.visit(IdentifierLookupVisitor::visit, &Visitor);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005321 IdentifierInfo *II = Visitor.getIdentifierInfo();
Douglas Gregor057df202012-01-18 20:56:22 +00005322 markIdentifierUpToDate(II);
Douglas Gregoreee242f2011-10-27 09:33:13 +00005323 return II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00005324}
5325
Douglas Gregor95f42922010-10-14 22:11:03 +00005326namespace clang {
5327 /// \brief An identifier-lookup iterator that enumerates all of the
5328 /// identifiers stored within a set of AST files.
5329 class ASTIdentifierIterator : public IdentifierIterator {
5330 /// \brief The AST reader whose identifiers are being enumerated.
5331 const ASTReader &Reader;
5332
5333 /// \brief The current index into the chain of AST files stored in
5334 /// the AST reader.
5335 unsigned Index;
5336
5337 /// \brief The current position within the identifier lookup table
5338 /// of the current AST file.
5339 ASTIdentifierLookupTable::key_iterator Current;
5340
5341 /// \brief The end position within the identifier lookup table of
5342 /// the current AST file.
5343 ASTIdentifierLookupTable::key_iterator End;
5344
5345 public:
5346 explicit ASTIdentifierIterator(const ASTReader &Reader);
5347
Chris Lattner5f9e2722011-07-23 10:55:15 +00005348 virtual StringRef Next();
Douglas Gregor95f42922010-10-14 22:11:03 +00005349 };
5350}
5351
5352ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005353 : Reader(Reader), Index(Reader.ModuleMgr.size() - 1) {
Douglas Gregor95f42922010-10-14 22:11:03 +00005354 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005355 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005356 Current = IdTable->key_begin();
5357 End = IdTable->key_end();
5358}
5359
Chris Lattner5f9e2722011-07-23 10:55:15 +00005360StringRef ASTIdentifierIterator::Next() {
Douglas Gregor95f42922010-10-14 22:11:03 +00005361 while (Current == End) {
5362 // If we have exhausted all of our AST files, we're done.
5363 if (Index == 0)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005364 return StringRef();
Douglas Gregor95f42922010-10-14 22:11:03 +00005365
5366 --Index;
5367 ASTIdentifierLookupTable *IdTable
Jonathan D. Turner5d6d89f2011-07-25 20:32:21 +00005368 = (ASTIdentifierLookupTable *)Reader.ModuleMgr[Index].
5369 IdentifierLookupTable;
Douglas Gregor95f42922010-10-14 22:11:03 +00005370 Current = IdTable->key_begin();
5371 End = IdTable->key_end();
5372 }
5373
5374 // We have any identifiers remaining in the current AST file; return
5375 // the next one.
5376 std::pair<const char*, unsigned> Key = *Current;
5377 ++Current;
Chris Lattner5f9e2722011-07-23 10:55:15 +00005378 return StringRef(Key.first, Key.second);
Douglas Gregor95f42922010-10-14 22:11:03 +00005379}
5380
5381IdentifierIterator *ASTReader::getIdentifiers() const {
5382 return new ASTIdentifierIterator(*this);
5383}
5384
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005385namespace clang { namespace serialization {
5386 class ReadMethodPoolVisitor {
5387 ASTReader &Reader;
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005388 Selector Sel;
5389 unsigned PriorGeneration;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005390 llvm::SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
5391 llvm::SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005392
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005393 public:
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005394 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
5395 unsigned PriorGeneration)
5396 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) { }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005397
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005398 static bool visit(ModuleFile &M, void *UserData) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005399 ReadMethodPoolVisitor *This
5400 = static_cast<ReadMethodPoolVisitor *>(UserData);
5401
5402 if (!M.SelectorLookupTable)
5403 return false;
5404
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005405 // If we've already searched this module file, skip it now.
5406 if (M.Generation <= This->PriorGeneration)
5407 return true;
5408
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005409 ASTSelectorLookupTable *PoolTable
5410 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
5411 ASTSelectorLookupTable::iterator Pos = PoolTable->find(This->Sel);
5412 if (Pos == PoolTable->end())
5413 return false;
5414
5415 ++This->Reader.NumSelectorsRead;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00005416 // FIXME: Not quite happy with the statistics here. We probably should
5417 // disable this tracking when called via LoadSelector.
5418 // Also, should entries without methods count as misses?
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005419 ++This->Reader.NumMethodPoolEntriesRead;
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005420 ASTSelectorLookupTrait::data_type Data = *Pos;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005421 if (This->Reader.DeserializationListener)
5422 This->Reader.DeserializationListener->SelectorRead(Data.ID,
5423 This->Sel);
5424
5425 This->InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
5426 This->FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
5427 return true;
Sebastian Redl725cd962010-08-04 20:40:17 +00005428 }
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005429
5430 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005431 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
5432 return InstanceMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005433 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005434
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005435 /// \brief Retrieve the instance methods found by this visitor.
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005436 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
5437 return FactoryMethods;
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005438 }
5439 };
5440} } // end namespace clang::serialization
5441
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005442/// \brief Add the given set of methods to the method list.
5443static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
5444 ObjCMethodList &List) {
5445 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
5446 S.addMethodToGlobalList(&List, Methods[I]);
5447 }
5448}
5449
5450void ASTReader::ReadMethodPool(Selector Sel) {
Douglas Gregor8efca6b2012-01-25 01:14:32 +00005451 // Get the selector generation and update it to the current generation.
5452 unsigned &Generation = SelectorGeneration[Sel];
5453 unsigned PriorGeneration = Generation;
5454 Generation = CurrentGeneration;
5455
5456 // Search for methods defined with this selector.
5457 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005458 ModuleMgr.visit(&ReadMethodPoolVisitor::visit, &Visitor);
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005459
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005460 if (Visitor.getInstanceMethods().empty() &&
5461 Visitor.getFactoryMethods().empty()) {
Douglas Gregor3d15ab82011-08-25 14:51:20 +00005462 ++NumMethodPoolMisses;
Douglas Gregor5ac4b692012-01-25 00:49:42 +00005463 return;
5464 }
5465
5466 if (!getSema())
5467 return;
5468
5469 Sema &S = *getSema();
5470 Sema::GlobalMethodPool::iterator Pos
5471 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
5472
5473 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
5474 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00005475}
5476
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005477void ASTReader::ReadKnownNamespaces(
Chris Lattner5f9e2722011-07-23 10:55:15 +00005478 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
Douglas Gregord8bba9c2011-06-28 16:20:02 +00005479 Namespaces.clear();
5480
5481 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
5482 if (NamespaceDecl *Namespace
5483 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
5484 Namespaces.push_back(Namespace);
5485 }
5486}
5487
Douglas Gregora8623202011-07-27 20:58:46 +00005488void ASTReader::ReadTentativeDefinitions(
5489 SmallVectorImpl<VarDecl *> &TentativeDefs) {
5490 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
5491 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
5492 if (Var)
5493 TentativeDefs.push_back(Var);
5494 }
5495 TentativeDefinitions.clear();
5496}
5497
Douglas Gregora2ee20a2011-07-27 21:45:57 +00005498void ASTReader::ReadUnusedFileScopedDecls(
5499 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
5500 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
5501 DeclaratorDecl *D
5502 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
5503 if (D)
5504 Decls.push_back(D);
5505 }
5506 UnusedFileScopedDecls.clear();
5507}
5508
Douglas Gregor0129b562011-07-27 21:57:17 +00005509void ASTReader::ReadDelegatingConstructors(
5510 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
5511 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
5512 CXXConstructorDecl *D
5513 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
5514 if (D)
5515 Decls.push_back(D);
5516 }
5517 DelegatingCtorDecls.clear();
5518}
5519
Douglas Gregord58a0a52011-07-28 00:39:29 +00005520void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
5521 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
5522 TypedefNameDecl *D
5523 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
5524 if (D)
5525 Decls.push_back(D);
5526 }
5527 ExtVectorDecls.clear();
5528}
5529
Douglas Gregora126f172011-07-28 00:53:40 +00005530void ASTReader::ReadDynamicClasses(SmallVectorImpl<CXXRecordDecl *> &Decls) {
5531 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I) {
5532 CXXRecordDecl *D
5533 = dyn_cast_or_null<CXXRecordDecl>(GetDecl(DynamicClasses[I]));
5534 if (D)
5535 Decls.push_back(D);
5536 }
5537 DynamicClasses.clear();
5538}
5539
Douglas Gregorec12ce22011-07-28 14:20:37 +00005540void
5541ASTReader::ReadLocallyScopedExternalDecls(SmallVectorImpl<NamedDecl *> &Decls) {
5542 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
5543 NamedDecl *D
5544 = dyn_cast_or_null<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
5545 if (D)
5546 Decls.push_back(D);
5547 }
5548 LocallyScopedExternalDecls.clear();
5549}
5550
Douglas Gregor5b9dc7c2011-07-28 14:54:22 +00005551void ASTReader::ReadReferencedSelectors(
5552 SmallVectorImpl<std::pair<Selector, SourceLocation> > &Sels) {
5553 if (ReferencedSelectorsData.empty())
5554 return;
5555
5556 // If there are @selector references added them to its pool. This is for
5557 // implementation of -Wselector.
5558 unsigned int DataSize = ReferencedSelectorsData.size()-1;
5559 unsigned I = 0;
5560 while (I < DataSize) {
5561 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
5562 SourceLocation SelLoc
5563 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
5564 Sels.push_back(std::make_pair(Sel, SelLoc));
5565 }
5566 ReferencedSelectorsData.clear();
5567}
5568
Douglas Gregor31e37b22011-07-28 18:09:57 +00005569void ASTReader::ReadWeakUndeclaredIdentifiers(
5570 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo> > &WeakIDs) {
5571 if (WeakUndeclaredIdentifiers.empty())
5572 return;
5573
5574 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
5575 IdentifierInfo *WeakId
5576 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5577 IdentifierInfo *AliasId
5578 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
5579 SourceLocation Loc
5580 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
5581 bool Used = WeakUndeclaredIdentifiers[I++];
5582 WeakInfo WI(AliasId, Loc);
5583 WI.setUsed(Used);
5584 WeakIDs.push_back(std::make_pair(WeakId, WI));
5585 }
5586 WeakUndeclaredIdentifiers.clear();
5587}
5588
Douglas Gregordfe65432011-07-28 19:11:31 +00005589void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
5590 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
5591 ExternalVTableUse VT;
5592 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
5593 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
5594 VT.DefinitionRequired = VTableUses[Idx++];
5595 VTables.push_back(VT);
5596 }
5597
5598 VTableUses.clear();
5599}
5600
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00005601void ASTReader::ReadPendingInstantiations(
5602 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation> > &Pending) {
5603 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
5604 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
5605 SourceLocation Loc
5606 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
Axel Naumann39d26c32012-10-02 09:09:43 +00005607
5608 // For modules, find out whether an instantiation already exists
5609 if (!getContext().getLangOpts().Modules
5610 || needPendingInstantiation(D))
5611 Pending.push_back(std::make_pair(D, Loc));
Douglas Gregor6e4a3f52011-07-28 19:49:54 +00005612 }
5613 PendingInstantiations.clear();
5614}
5615
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005616void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redle58aa892010-08-04 18:21:41 +00005617 // It would be complicated to avoid reading the methods anyway. So don't.
5618 ReadMethodPool(Sel);
5619}
5620
Douglas Gregor95eab172011-07-28 20:55:49 +00005621void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00005622 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00005623 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00005624 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005625 if (DeserializationListener)
5626 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregor668c1a42009-04-21 22:25:48 +00005627}
5628
Douglas Gregord89275b2009-07-06 18:54:52 +00005629/// \brief Set the globally-visible declarations associated with the given
5630/// identifier.
5631///
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005632/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00005633/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00005634/// them.
5635///
5636/// \param II an IdentifierInfo that refers to one or more globally-visible
5637/// declarations.
5638///
5639/// \param DeclIDs the set of declaration IDs with the name @p II that are
5640/// visible at global scope.
5641///
5642/// \param Nonrecursive should be true to indicate that the caller knows that
5643/// this call is non-recursive, and therefore the globally-visible declarations
5644/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00005645void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005646ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Chris Lattner5f9e2722011-07-23 10:55:15 +00005647 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregord89275b2009-07-06 18:54:52 +00005648 bool Nonrecursive) {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00005649 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregord89275b2009-07-06 18:54:52 +00005650 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
5651 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
5652 PII.II = II;
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00005653 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregord89275b2009-07-06 18:54:52 +00005654 return;
5655 }
Mike Stump1eb44332009-09-09 15:08:12 +00005656
Douglas Gregord89275b2009-07-06 18:54:52 +00005657 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
5658 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
5659 if (SemaObj) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00005660 // Introduce this declaration into the translation-unit scope
5661 // and add it to the declaration chain for this identifier, so
5662 // that (unqualified) name lookup will find it.
5663 SemaObj->pushExternalDeclIntoScope(D, II);
Douglas Gregord89275b2009-07-06 18:54:52 +00005664 } else {
5665 // Queue this declaration so that it will be added to the
5666 // translation unit scope and identifier's declaration chain
5667 // once a Sema object is known.
5668 PreloadedDecls.push_back(D);
5669 }
5670 }
5671}
5672
Douglas Gregor95eab172011-07-28 20:55:49 +00005673IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00005674 if (ID == 0)
5675 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00005676
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005677 if (IdentifiersLoaded.empty()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005678 Error("no identifier table in AST file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00005679 return 0;
5680 }
Mike Stump1eb44332009-09-09 15:08:12 +00005681
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005682 ID -= 1;
5683 if (!IdentifiersLoaded[ID]) {
Douglas Gregor67268d02011-07-20 00:59:32 +00005684 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
5685 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005686 ModuleFile *M = I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005687 unsigned Index = ID - M->BaseIdentifierID;
5688 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
Douglas Gregord6595a42009-04-25 21:04:17 +00005689
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005690 // All of the strings in the AST file are preceded by a 16-bit length.
5691 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00005692 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
5693 // unsigned integers. This is important to avoid integer overflow when
5694 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00005695 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00005696 unsigned StrLen = (((unsigned) StrLenPtr[0])
5697 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005698 IdentifiersLoaded[ID]
Douglas Gregor712f2fc2011-09-09 22:02:16 +00005699 = &PP.getIdentifierTable().get(StringRef(Str, StrLen));
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005700 if (DeserializationListener)
5701 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregorafaf3082009-04-11 00:14:32 +00005702 }
Mike Stump1eb44332009-09-09 15:08:12 +00005703
Sebastian Redl11f5ccf2010-07-21 00:46:22 +00005704 return IdentifiersLoaded[ID];
Douglas Gregor2cf26342009-04-09 22:27:44 +00005705}
5706
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005707IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
Douglas Gregor95eab172011-07-28 20:55:49 +00005708 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
5709}
5710
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005711IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
Douglas Gregor6ec60e02011-08-03 21:49:18 +00005712 if (LocalID < NUM_PREDEF_IDENT_IDS)
5713 return LocalID;
5714
5715 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5716 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
5717 assert(I != M.IdentifierRemap.end()
5718 && "Invalid index into identifier index remap");
5719
5720 return LocalID + I->second;
Douglas Gregor95eab172011-07-28 20:55:49 +00005721}
5722
Douglas Gregorf62d43d2011-07-19 16:10:42 +00005723bool ASTReader::ReadSLocEntry(int ID) {
Douglas Gregore23ac652011-04-20 00:21:03 +00005724 return ReadSLocEntryRecord(ID) != Success;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00005725}
5726
Douglas Gregor26ced122011-12-01 00:59:36 +00005727serialization::SubmoduleID
5728ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
5729 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
5730 return LocalID;
5731
5732 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5733 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
5734 assert(I != M.SubmoduleRemap.end()
5735 && "Invalid index into identifier index remap");
5736
5737 return LocalID + I->second;
5738}
5739
5740Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
5741 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
5742 assert(GlobalID == 0 && "Unhandled global submodule ID");
5743 return 0;
5744 }
5745
5746 if (GlobalID > SubmodulesLoaded.size()) {
5747 Error("submodule ID out of range in AST file");
5748 return 0;
5749 }
5750
5751 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
5752}
5753
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005754Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005755 return DecodeSelector(getGlobalSelectorID(M, LocalID));
5756}
5757
5758Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005759 if (ID == 0)
5760 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00005761
Sebastian Redl725cd962010-08-04 20:40:17 +00005762 if (ID > SelectorsLoaded.size()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00005763 Error("selector ID out of range in AST file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005764 return Selector();
5765 }
Douglas Gregor83941df2009-04-25 17:48:32 +00005766
Sebastian Redl725cd962010-08-04 20:40:17 +00005767 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor83941df2009-04-25 17:48:32 +00005768 // Load this selector from the selector table.
Douglas Gregor96958cb2011-07-20 01:10:58 +00005769 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
5770 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005771 ModuleFile &M = *I->second;
Douglas Gregor9827a802011-07-29 00:56:45 +00005772 ASTSelectorLookupTrait Trait(*this, M);
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005773 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
Douglas Gregor96958cb2011-07-20 01:10:58 +00005774 SelectorsLoaded[ID - 1] =
Douglas Gregor9827a802011-07-29 00:56:45 +00005775 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
Douglas Gregor96958cb2011-07-20 01:10:58 +00005776 if (DeserializationListener)
5777 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
Douglas Gregor83941df2009-04-25 17:48:32 +00005778 }
5779
Sebastian Redl725cd962010-08-04 20:40:17 +00005780 return SelectorsLoaded[ID - 1];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00005781}
5782
Douglas Gregor8451ec72011-07-28 14:41:43 +00005783Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00005784 return DecodeSelector(ID);
5785}
5786
Sebastian Redlc43b54c2010-08-18 23:56:43 +00005787uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redl725cd962010-08-04 20:40:17 +00005788 // ID 0 (the null selector) is considered an external selector.
5789 return getTotalNumSelectors() + 1;
Douglas Gregor719770d2010-04-06 17:30:22 +00005790}
5791
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005792serialization::SelectorID
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005793ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00005794 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
5795 return LocalID;
5796
5797 ContinuousRangeMap<uint32_t, int, 2>::iterator I
5798 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
5799 assert(I != M.SelectorRemap.end()
5800 && "Invalid index into identifier index remap");
5801
5802 return LocalID + I->second;
Douglas Gregor8451ec72011-07-28 14:41:43 +00005803}
5804
Mike Stump1eb44332009-09-09 15:08:12 +00005805DeclarationName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005806ASTReader::ReadDeclarationName(ModuleFile &F,
Douglas Gregor393f2492011-07-22 00:38:23 +00005807 const RecordData &Record, unsigned &Idx) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00005808 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
5809 switch (Kind) {
5810 case DeclarationName::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +00005811 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005812
5813 case DeclarationName::ObjCZeroArgSelector:
5814 case DeclarationName::ObjCOneArgSelector:
5815 case DeclarationName::ObjCMultiArgSelector:
Douglas Gregor2d2689a2011-07-28 21:16:51 +00005816 return DeclarationName(ReadSelector(F, Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005817
5818 case DeclarationName::CXXConstructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005819 return Context.DeclarationNames.getCXXConstructorName(
5820 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005821
5822 case DeclarationName::CXXDestructorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005823 return Context.DeclarationNames.getCXXDestructorName(
5824 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005825
5826 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor35942772011-09-09 21:34:22 +00005827 return Context.DeclarationNames.getCXXConversionFunctionName(
5828 Context.getCanonicalType(readType(F, Record, Idx)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00005829
5830 case DeclarationName::CXXOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005831 return Context.DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00005832 (OverloadedOperatorKind)Record[Idx++]);
5833
Sean Hunt3e518bd2009-11-29 07:34:05 +00005834 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregor35942772011-09-09 21:34:22 +00005835 return Context.DeclarationNames.getCXXLiteralOperatorName(
Douglas Gregor95eab172011-07-28 20:55:49 +00005836 GetIdentifierInfo(F, Record, Idx));
Sean Hunt3e518bd2009-11-29 07:34:05 +00005837
Douglas Gregor2cf26342009-04-09 22:27:44 +00005838 case DeclarationName::CXXUsingDirective:
5839 return DeclarationName::getUsingDirectiveName();
5840 }
5841
David Blaikie7530c032012-01-17 06:56:22 +00005842 llvm_unreachable("Invalid NameKind!");
Douglas Gregor2cf26342009-04-09 22:27:44 +00005843}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00005844
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005845void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005846 DeclarationNameLoc &DNLoc,
5847 DeclarationName Name,
5848 const RecordData &Record, unsigned &Idx) {
5849 switch (Name.getNameKind()) {
5850 case DeclarationName::CXXConstructorName:
5851 case DeclarationName::CXXDestructorName:
5852 case DeclarationName::CXXConversionFunctionName:
5853 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
5854 break;
5855
5856 case DeclarationName::CXXOperatorName:
5857 DNLoc.CXXOperatorName.BeginOpNameLoc
5858 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5859 DNLoc.CXXOperatorName.EndOpNameLoc
5860 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5861 break;
5862
5863 case DeclarationName::CXXLiteralOperatorName:
5864 DNLoc.CXXLiteralOperatorName.OpNameLoc
5865 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
5866 break;
5867
5868 case DeclarationName::Identifier:
5869 case DeclarationName::ObjCZeroArgSelector:
5870 case DeclarationName::ObjCOneArgSelector:
5871 case DeclarationName::ObjCMultiArgSelector:
5872 case DeclarationName::CXXUsingDirective:
5873 break;
5874 }
5875}
5876
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005877void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005878 DeclarationNameInfo &NameInfo,
5879 const RecordData &Record, unsigned &Idx) {
Douglas Gregor393f2492011-07-22 00:38:23 +00005880 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005881 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
5882 DeclarationNameLoc DNLoc;
5883 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
5884 NameInfo.setInfo(DNLoc);
5885}
5886
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005887void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005888 const RecordData &Record, unsigned &Idx) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00005889 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005890 unsigned NumTPLists = Record[Idx++];
5891 Info.NumTemplParamLists = NumTPLists;
5892 if (NumTPLists) {
Douglas Gregor35942772011-09-09 21:34:22 +00005893 Info.TemplParamLists = new (Context) TemplateParameterList*[NumTPLists];
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00005894 for (unsigned i=0; i != NumTPLists; ++i)
5895 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
5896 }
5897}
5898
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005899TemplateName
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005900ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005901 unsigned &Idx) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00005902 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005903 switch (Kind) {
5904 case TemplateName::Template:
Douglas Gregor409448c2011-07-21 22:35:25 +00005905 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005906
5907 case TemplateName::OverloadedTemplate: {
5908 unsigned size = Record[Idx++];
5909 UnresolvedSet<8> Decls;
5910 while (size--)
Douglas Gregor409448c2011-07-21 22:35:25 +00005911 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005912
Douglas Gregor35942772011-09-09 21:34:22 +00005913 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005914 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005915
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005916 case TemplateName::QualifiedTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005917 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005918 bool hasTemplKeyword = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00005919 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005920 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005921 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005922
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005923 case TemplateName::DependentTemplate: {
Douglas Gregor409448c2011-07-21 22:35:25 +00005924 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005925 if (Record[Idx++]) // isIdentifier
Douglas Gregor35942772011-09-09 21:34:22 +00005926 return Context.getDependentTemplateName(NNS,
Douglas Gregor95eab172011-07-28 20:55:49 +00005927 GetIdentifierInfo(F, Record,
5928 Idx));
Douglas Gregor35942772011-09-09 21:34:22 +00005929 return Context.getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00005930 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005931 }
John McCall14606042011-06-30 08:33:18 +00005932
5933 case TemplateName::SubstTemplateTemplateParm: {
5934 TemplateTemplateParmDecl *param
Douglas Gregor409448c2011-07-21 22:35:25 +00005935 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
John McCall14606042011-06-30 08:33:18 +00005936 if (!param) return TemplateName();
5937 TemplateName replacement = ReadTemplateName(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00005938 return Context.getSubstTemplateTemplateParm(param, replacement);
John McCall14606042011-06-30 08:33:18 +00005939 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005940
5941 case TemplateName::SubstTemplateTemplateParmPack: {
5942 TemplateTemplateParmDecl *Param
Douglas Gregor409448c2011-07-21 22:35:25 +00005943 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005944 if (!Param)
5945 return TemplateName();
5946
5947 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
5948 if (ArgPack.getKind() != TemplateArgument::Pack)
5949 return TemplateName();
5950
Douglas Gregor35942772011-09-09 21:34:22 +00005951 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005952 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005953 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005954
David Blaikieb219cfc2011-09-23 05:06:16 +00005955 llvm_unreachable("Unhandled template name kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005956}
5957
5958TemplateArgument
Douglas Gregor1a4761e2011-11-30 23:21:26 +00005959ASTReader::ReadTemplateArgument(ModuleFile &F,
Sebastian Redl577d4792010-07-22 22:43:28 +00005960 const RecordData &Record, unsigned &Idx) {
Douglas Gregora7fc9012011-01-05 18:58:31 +00005961 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
5962 switch (Kind) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005963 case TemplateArgument::Null:
5964 return TemplateArgument();
5965 case TemplateArgument::Type:
Douglas Gregor393f2492011-07-22 00:38:23 +00005966 return TemplateArgument(readType(F, Record, Idx));
Eli Friedmand7a6b162012-09-26 02:36:12 +00005967 case TemplateArgument::Declaration: {
5968 ValueDecl *D = ReadDeclAs<ValueDecl>(F, Record, Idx);
5969 bool ForReferenceParam = Record[Idx++];
5970 return TemplateArgument(D, ForReferenceParam);
5971 }
5972 case TemplateArgument::NullPtr:
5973 return TemplateArgument(readType(F, Record, Idx), /*isNullPtr*/true);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005974 case TemplateArgument::Integral: {
5975 llvm::APSInt Value = ReadAPSInt(Record, Idx);
Douglas Gregor393f2492011-07-22 00:38:23 +00005976 QualType T = readType(F, Record, Idx);
Benjamin Kramer85524372012-06-07 15:09:51 +00005977 return TemplateArgument(Context, Value, T);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00005978 }
Douglas Gregora7fc9012011-01-05 18:58:31 +00005979 case TemplateArgument::Template:
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005980 return TemplateArgument(ReadTemplateName(F, Record, Idx));
Douglas Gregora7fc9012011-01-05 18:58:31 +00005981 case TemplateArgument::TemplateExpansion: {
Douglas Gregor1aee05d2011-01-15 06:45:20 +00005982 TemplateName Name = ReadTemplateName(F, Record, Idx);
Douglas Gregor2be29f42011-01-14 23:41:42 +00005983 llvm::Optional<unsigned> NumTemplateExpansions;
5984 if (unsigned NumExpansions = Record[Idx++])
5985 NumTemplateExpansions = NumExpansions - 1;
5986 return TemplateArgument(Name, NumTemplateExpansions);
Douglas Gregorba68eca2011-01-05 17:40:24 +00005987 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005988 case TemplateArgument::Expression:
Sebastian Redlc3632732010-10-05 15:59:54 +00005989 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005990 case TemplateArgument::Pack: {
5991 unsigned NumArgs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00005992 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
Douglas Gregor910f8002010-11-07 23:05:16 +00005993 for (unsigned I = 0; I != NumArgs; ++I)
5994 Args[I] = ReadTemplateArgument(F, Record, Idx);
5995 return TemplateArgument(Args, NumArgs);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00005996 }
5997 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00005998
David Blaikieb219cfc2011-09-23 05:06:16 +00005999 llvm_unreachable("Unhandled template argument kind!");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00006000}
6001
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006002TemplateParameterList *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006003ASTReader::ReadTemplateParameterList(ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +00006004 const RecordData &Record, unsigned &Idx) {
6005 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
6006 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
6007 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006008
6009 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +00006010 SmallVector<NamedDecl *, 16> Params;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006011 Params.reserve(NumParams);
6012 while (NumParams--)
Douglas Gregor409448c2011-07-21 22:35:25 +00006013 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
Michael J. Spencer20249a12010-10-21 03:16:25 +00006014
6015 TemplateParameterList* TemplateParams =
Douglas Gregor35942772011-09-09 21:34:22 +00006016 TemplateParameterList::Create(Context, TemplateLoc, LAngleLoc,
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006017 Params.data(), Params.size(), RAngleLoc);
6018 return TemplateParams;
6019}
6020
6021void
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006022ASTReader::
Chris Lattner5f9e2722011-07-23 10:55:15 +00006023ReadTemplateArgumentList(SmallVector<TemplateArgument, 8> &TemplArgs,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006024 ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006025 unsigned &Idx) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006026 unsigned NumTemplateArgs = Record[Idx++];
6027 TemplArgs.reserve(NumTemplateArgs);
6028 while (NumTemplateArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +00006029 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00006030}
6031
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006032/// \brief Read a UnresolvedSet structure.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006033void ASTReader::ReadUnresolvedSet(ModuleFile &F, UnresolvedSetImpl &Set,
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006034 const RecordData &Record, unsigned &Idx) {
6035 unsigned NumDecls = Record[Idx++];
6036 while (NumDecls--) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006037 NamedDecl *D = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00006038 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
6039 Set.addDecl(D, AS);
6040 }
6041}
6042
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006043CXXBaseSpecifier
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006044ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
Nick Lewycky56062202010-07-26 16:56:01 +00006045 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006046 bool isVirtual = static_cast<bool>(Record[Idx++]);
6047 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
6048 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006049 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00006050 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
6051 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006052 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006053 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Douglas Gregorf90b27a2011-01-03 22:36:02 +00006054 EllipsisLoc);
Sebastian Redlf677ea32011-02-05 19:23:19 +00006055 Result.setInheritConstructors(inheritConstructors);
6056 return Result;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00006057}
6058
Sean Huntcbb67482011-01-08 20:30:50 +00006059std::pair<CXXCtorInitializer **, unsigned>
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006060ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
Sean Huntcbb67482011-01-08 20:30:50 +00006061 unsigned &Idx) {
6062 CXXCtorInitializer **CtorInitializers = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006063 unsigned NumInitializers = Record[Idx++];
6064 if (NumInitializers) {
Sean Huntcbb67482011-01-08 20:30:50 +00006065 CtorInitializers
Douglas Gregor35942772011-09-09 21:34:22 +00006066 = new (Context) CXXCtorInitializer*[NumInitializers];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006067 for (unsigned i=0; i != NumInitializers; ++i) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006068 TypeSourceInfo *TInfo = 0;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006069 bool IsBaseVirtual = false;
6070 FieldDecl *Member = 0;
Francois Pichet00eb3f92010-12-04 09:14:42 +00006071 IndirectFieldDecl *IndirectMember = 0;
Michael J. Spencer20249a12010-10-21 03:16:25 +00006072
Sean Hunt156b6402011-05-04 01:19:08 +00006073 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
6074 switch (Type) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006075 case CTOR_INITIALIZER_BASE:
6076 TInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006077 IsBaseVirtual = Record[Idx++];
Sean Hunt156b6402011-05-04 01:19:08 +00006078 break;
Douglas Gregor76852c22011-11-01 01:16:03 +00006079
6080 case CTOR_INITIALIZER_DELEGATING:
6081 TInfo = GetTypeSourceInfo(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006082 break;
6083
6084 case CTOR_INITIALIZER_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006085 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006086 break;
6087
6088 case CTOR_INITIALIZER_INDIRECT_MEMBER:
Douglas Gregor409448c2011-07-21 22:35:25 +00006089 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
Sean Hunt156b6402011-05-04 01:19:08 +00006090 break;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006091 }
Sean Hunt156b6402011-05-04 01:19:08 +00006092
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00006093 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00006094 Expr *Init = ReadExpr(F);
Sebastian Redlc3632732010-10-05 15:59:54 +00006095 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
6096 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006097 bool IsWritten = Record[Idx++];
6098 unsigned SourceOrderOrNumArrayIndices;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006099 SmallVector<VarDecl *, 8> Indices;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006100 if (IsWritten) {
6101 SourceOrderOrNumArrayIndices = Record[Idx++];
6102 } else {
6103 SourceOrderOrNumArrayIndices = Record[Idx++];
6104 Indices.reserve(SourceOrderOrNumArrayIndices);
6105 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
Douglas Gregor409448c2011-07-21 22:35:25 +00006106 Indices.push_back(ReadDeclAs<VarDecl>(F, Record, Idx));
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006107 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00006108
Sean Huntcbb67482011-01-08 20:30:50 +00006109 CXXCtorInitializer *BOMInit;
Sean Hunt156b6402011-05-04 01:19:08 +00006110 if (Type == CTOR_INITIALIZER_BASE) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006111 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, IsBaseVirtual,
Sean Huntcbb67482011-01-08 20:30:50 +00006112 LParenLoc, Init, RParenLoc,
6113 MemberOrEllipsisLoc);
Sean Hunt156b6402011-05-04 01:19:08 +00006114 } else if (Type == CTOR_INITIALIZER_DELEGATING) {
Douglas Gregor76852c22011-11-01 01:16:03 +00006115 BOMInit = new (Context) CXXCtorInitializer(Context, TInfo, LParenLoc,
6116 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006117 } else if (IsWritten) {
Francois Pichet00eb3f92010-12-04 09:14:42 +00006118 if (Member)
Douglas Gregor35942772011-09-09 21:34:22 +00006119 BOMInit = new (Context) CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006120 LParenLoc, Init, RParenLoc);
Francois Pichet00eb3f92010-12-04 09:14:42 +00006121 else
Douglas Gregor35942772011-09-09 21:34:22 +00006122 BOMInit = new (Context) CXXCtorInitializer(Context, IndirectMember,
Sean Huntcbb67482011-01-08 20:30:50 +00006123 MemberOrEllipsisLoc, LParenLoc,
6124 Init, RParenLoc);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006125 } else {
Douglas Gregor35942772011-09-09 21:34:22 +00006126 BOMInit = CXXCtorInitializer::Create(Context, Member, MemberOrEllipsisLoc,
Sean Huntcbb67482011-01-08 20:30:50 +00006127 LParenLoc, Init, RParenLoc,
6128 Indices.data(), Indices.size());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006129 }
6130
Argyrios Kyrtzidisf84cde12010-09-06 19:04:27 +00006131 if (IsWritten)
6132 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Sean Huntcbb67482011-01-08 20:30:50 +00006133 CtorInitializers[i] = BOMInit;
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006134 }
6135 }
6136
Sean Huntcbb67482011-01-08 20:30:50 +00006137 return std::make_pair(CtorInitializers, NumInitializers);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00006138}
6139
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006140NestedNameSpecifier *
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006141ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006142 const RecordData &Record, unsigned &Idx) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006143 unsigned N = Record[Idx++];
6144 NestedNameSpecifier *NNS = 0, *Prev = 0;
6145 for (unsigned I = 0; I != N; ++I) {
6146 NestedNameSpecifier::SpecifierKind Kind
6147 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6148 switch (Kind) {
6149 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006150 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006151 NNS = NestedNameSpecifier::Create(Context, Prev, II);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006152 break;
6153 }
6154
6155 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006156 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006157 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006158 break;
6159 }
6160
Douglas Gregor14aba762011-02-24 02:36:08 +00006161 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006162 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006163 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
Douglas Gregor14aba762011-02-24 02:36:08 +00006164 break;
6165 }
6166
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006167 case NestedNameSpecifier::TypeSpec:
6168 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregor393f2492011-07-22 00:38:23 +00006169 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
Douglas Gregor1ab55e92010-12-10 17:03:06 +00006170 if (!T)
6171 return 0;
6172
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006173 bool Template = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +00006174 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006175 break;
6176 }
6177
6178 case NestedNameSpecifier::Global: {
Douglas Gregor35942772011-09-09 21:34:22 +00006179 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006180 // No associated value, and there can't be a prefix.
6181 break;
6182 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006183 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00006184 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006185 }
6186 return NNS;
6187}
6188
Douglas Gregordc355712011-02-25 00:36:19 +00006189NestedNameSpecifierLoc
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006190ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Douglas Gregordc355712011-02-25 00:36:19 +00006191 unsigned &Idx) {
6192 unsigned N = Record[Idx++];
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006193 NestedNameSpecifierLocBuilder Builder;
Douglas Gregordc355712011-02-25 00:36:19 +00006194 for (unsigned I = 0; I != N; ++I) {
6195 NestedNameSpecifier::SpecifierKind Kind
6196 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
6197 switch (Kind) {
6198 case NestedNameSpecifier::Identifier: {
Douglas Gregor95eab172011-07-28 20:55:49 +00006199 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006200 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006201 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006202 break;
6203 }
6204
6205 case NestedNameSpecifier::Namespace: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006206 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006207 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006208 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006209 break;
6210 }
6211
6212 case NestedNameSpecifier::NamespaceAlias: {
Douglas Gregor409448c2011-07-21 22:35:25 +00006213 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00006214 SourceRange Range = ReadSourceRange(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006215 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
Douglas Gregordc355712011-02-25 00:36:19 +00006216 break;
6217 }
6218
6219 case NestedNameSpecifier::TypeSpec:
6220 case NestedNameSpecifier::TypeSpecWithTemplate: {
Douglas Gregordc355712011-02-25 00:36:19 +00006221 bool Template = Record[Idx++];
6222 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
6223 if (!T)
6224 return NestedNameSpecifierLoc();
Douglas Gregordc355712011-02-25 00:36:19 +00006225 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006226
6227 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
Douglas Gregor35942772011-09-09 21:34:22 +00006228 Builder.Extend(Context,
Douglas Gregor5f791bb2011-02-28 23:58:31 +00006229 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
6230 T->getTypeLoc(), ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006231 break;
6232 }
6233
6234 case NestedNameSpecifier::Global: {
Douglas Gregordc355712011-02-25 00:36:19 +00006235 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006236 Builder.MakeGlobal(Context, ColonColonLoc);
Douglas Gregordc355712011-02-25 00:36:19 +00006237 break;
6238 }
6239 }
Douglas Gregordc355712011-02-25 00:36:19 +00006240 }
6241
Douglas Gregor35942772011-09-09 21:34:22 +00006242 return Builder.getWithLocInContext(Context);
Douglas Gregordc355712011-02-25 00:36:19 +00006243}
6244
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006245SourceRange
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006246ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
Sebastian Redlc3632732010-10-05 15:59:54 +00006247 unsigned &Idx) {
6248 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
6249 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar8ee59392010-06-02 15:47:10 +00006250 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00006251}
6252
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006253/// \brief Read an integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006254llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006255 unsigned BitWidth = Record[Idx++];
6256 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
6257 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
6258 Idx += NumWords;
6259 return Result;
6260}
6261
6262/// \brief Read a signed integral value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006263llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00006264 bool isUnsigned = Record[Idx++];
6265 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
6266}
6267
Douglas Gregor17fc2232009-04-14 21:55:33 +00006268/// \brief Read a floating-point value
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006269llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00006270 return llvm::APFloat(ReadAPInt(Record, Idx));
6271}
6272
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006273// \brief Read a string
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006274std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006275 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00006276 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00006277 Idx += Len;
6278 return Result;
6279}
6280
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00006281VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
6282 unsigned &Idx) {
6283 unsigned Major = Record[Idx++];
6284 unsigned Minor = Record[Idx++];
6285 unsigned Subminor = Record[Idx++];
6286 if (Minor == 0)
6287 return VersionTuple(Major);
6288 if (Subminor == 0)
6289 return VersionTuple(Major, Minor - 1);
6290 return VersionTuple(Major, Minor - 1, Subminor - 1);
6291}
6292
Douglas Gregor1a4761e2011-11-30 23:21:26 +00006293CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Douglas Gregor409448c2011-07-21 22:35:25 +00006294 const RecordData &Record,
Chris Lattnerd2598362010-05-10 00:25:06 +00006295 unsigned &Idx) {
Douglas Gregor409448c2011-07-21 22:35:25 +00006296 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +00006297 return CXXTemporary::Create(Context, Decl);
Chris Lattnerd2598362010-05-10 00:25:06 +00006298}
6299
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006300DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00006301 return Diag(SourceLocation(), DiagID);
6302}
6303
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006304DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +00006305 return Diags.Report(Loc, DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00006306}
Douglas Gregor025452f2009-04-17 00:04:06 +00006307
Douglas Gregor668c1a42009-04-21 22:25:48 +00006308/// \brief Retrieve the identifier table associated with the
6309/// preprocessor.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006310IdentifierTable &ASTReader::getIdentifierTable() {
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006311 return PP.getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00006312}
6313
Douglas Gregor025452f2009-04-17 00:04:06 +00006314/// \brief Record that the given ID maps to the given switch-case
6315/// statement.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006316void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006317 assert((*CurrSwitchCaseStmts)[ID] == 0 &&
6318 "Already have a SwitchCase with this ID");
6319 (*CurrSwitchCaseStmts)[ID] = SC;
Douglas Gregor025452f2009-04-17 00:04:06 +00006320}
6321
6322/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006323SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006324 assert((*CurrSwitchCaseStmts)[ID] != 0 && "No SwitchCase with this ID");
6325 return (*CurrSwitchCaseStmts)[ID];
Douglas Gregor025452f2009-04-17 00:04:06 +00006326}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00006327
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006328void ASTReader::ClearSwitchCaseIDs() {
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006329 CurrSwitchCaseStmts->clear();
Argyrios Kyrtzidise09a2752010-10-28 09:29:32 +00006330}
6331
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006332void ASTReader::ReadComments() {
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006333 std::vector<RawComment *> Comments;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006334 for (SmallVectorImpl<std::pair<llvm::BitstreamCursor,
6335 serialization::ModuleFile *> >::iterator
6336 I = CommentsCursors.begin(),
6337 E = CommentsCursors.end();
6338 I != E; ++I) {
6339 llvm::BitstreamCursor &Cursor = I->first;
6340 serialization::ModuleFile &F = *I->second;
6341 SavedStreamPosition SavedPosition(Cursor);
6342
6343 RecordData Record;
6344 while (true) {
6345 unsigned Code = Cursor.ReadCode();
6346 if (Code == llvm::bitc::END_BLOCK)
6347 break;
6348
6349 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
6350 // No known subblocks, always skip them.
6351 Cursor.ReadSubBlockID();
6352 if (Cursor.SkipBlock()) {
6353 Error("malformed block record in AST file");
6354 return;
6355 }
6356 continue;
6357 }
6358
6359 if (Code == llvm::bitc::DEFINE_ABBREV) {
6360 Cursor.ReadAbbrevRecord();
6361 continue;
6362 }
6363
6364 // Read a record.
6365 Record.clear();
6366 switch ((CommentRecordTypes) Cursor.ReadRecord(Code, Record)) {
Chandler Carruth13691bb2012-06-20 06:47:54 +00006367 case COMMENTS_RAW_COMMENT: {
6368 unsigned Idx = 0;
6369 SourceRange SR = ReadSourceRange(F, Record, Idx);
6370 RawComment::CommentKind Kind =
6371 (RawComment::CommentKind) Record[Idx++];
6372 bool IsTrailingComment = Record[Idx++];
6373 bool IsAlmostTrailingComment = Record[Idx++];
Dmitri Gribenko811c8202012-07-06 18:19:34 +00006374 Comments.push_back(new (Context) RawComment(SR, Kind,
6375 IsTrailingComment,
6376 IsAlmostTrailingComment));
Chandler Carruth13691bb2012-06-20 06:47:54 +00006377 break;
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00006378 }
6379 }
6380 }
6381 }
6382 Context.Comments.addCommentsToFront(Comments);
6383}
6384
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006385void ASTReader::finishPendingActions() {
Douglas Gregorcff9f262012-01-27 01:47:08 +00006386 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty()) {
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006387 // If any identifiers with corresponding top-level declarations have
6388 // been loaded, load those declarations now.
6389 while (!PendingIdentifierInfos.empty()) {
6390 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
6391 PendingIdentifierInfos.front().DeclIDs, true);
6392 PendingIdentifierInfos.pop_front();
6393 }
6394
Douglas Gregora1be2782011-12-17 23:38:30 +00006395 // Load pending declaration chains.
6396 for (unsigned I = 0; I != PendingDeclChains.size(); ++I) {
6397 loadPendingDeclChain(PendingDeclChains[I]);
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006398 PendingDeclChainsKnown.erase(PendingDeclChains[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00006399 }
6400 PendingDeclChains.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006401 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006402
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006403 // If we deserialized any C++ or Objective-C class definitions, any
6404 // Objective-C protocol definitions, or any redeclarable templates, make sure
6405 // that all redeclarations point to the definitions. Note that this can only
6406 // happen now, after the redeclaration chains have been fully wired.
Douglas Gregorfc529f72011-12-19 19:00:47 +00006407 for (llvm::SmallPtrSet<Decl *, 4>::iterator D = PendingDefinitions.begin(),
6408 DEnd = PendingDefinitions.end();
6409 D != DEnd; ++D) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006410 if (TagDecl *TD = dyn_cast<TagDecl>(*D)) {
6411 if (const TagType *TagT = dyn_cast<TagType>(TD->TypeForDecl)) {
6412 // Make sure that the TagType points at the definition.
6413 const_cast<TagType*>(TagT)->decl = TD;
6414 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00006415
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006416 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(*D)) {
6417 for (CXXRecordDecl::redecl_iterator R = RD->redecls_begin(),
6418 REnd = RD->redecls_end();
6419 R != REnd; ++R)
6420 cast<CXXRecordDecl>(*R)->DefinitionData = RD->DefinitionData;
6421
6422 }
6423
Douglas Gregorfc529f72011-12-19 19:00:47 +00006424 continue;
6425 }
6426
Douglas Gregor1d784b22012-01-01 19:51:50 +00006427 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(*D)) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +00006428 // Make sure that the ObjCInterfaceType points at the definition.
6429 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
6430 ->Decl = ID;
6431
Douglas Gregor1d784b22012-01-01 19:51:50 +00006432 for (ObjCInterfaceDecl::redecl_iterator R = ID->redecls_begin(),
6433 REnd = ID->redecls_end();
6434 R != REnd; ++R)
6435 R->Data = ID->Data;
6436
6437 continue;
6438 }
6439
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006440 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(*D)) {
6441 for (ObjCProtocolDecl::redecl_iterator R = PD->redecls_begin(),
6442 REnd = PD->redecls_end();
6443 R != REnd; ++R)
6444 R->Data = PD->Data;
6445
6446 continue;
6447 }
6448
6449 RedeclarableTemplateDecl *RTD
6450 = cast<RedeclarableTemplateDecl>(*D)->getCanonicalDecl();
6451 for (RedeclarableTemplateDecl::redecl_iterator R = RTD->redecls_begin(),
6452 REnd = RTD->redecls_end();
Douglas Gregorfc529f72011-12-19 19:00:47 +00006453 R != REnd; ++R)
Douglas Gregor7c99bb5c2012-01-14 15:13:49 +00006454 R->Common = RTD->Common;
Douglas Gregorfc529f72011-12-19 19:00:47 +00006455 }
6456 PendingDefinitions.clear();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006457}
6458
Sebastian Redlc43b54c2010-08-18 23:56:43 +00006459void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00006460 assert(NumCurrentElementsDeserializing &&
6461 "FinishedDeserializing not paired with StartedDeserializing");
6462 if (NumCurrentElementsDeserializing == 1) {
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006463 // We decrease NumCurrentElementsDeserializing only after pending actions
6464 // are finished, to avoid recursively re-calling finishPendingActions().
6465 finishPendingActions();
6466 }
6467 --NumCurrentElementsDeserializing;
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006468
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006469 if (NumCurrentElementsDeserializing == 0 &&
6470 Consumer && !PassingDeclsToConsumer) {
6471 // Guard variable to avoid recursively redoing the process of passing
6472 // decls to consumer.
6473 SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
6474 true);
Argyrios Kyrtzidis71168332011-12-17 04:13:28 +00006475
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006476 while (!InterestingDecls.empty()) {
Argyrios Kyrtzidis8d39c3d2011-11-30 23:18:26 +00006477 // We are not in recursive loading, so it's safe to pass the "interesting"
6478 // decls to the consumer.
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006479 Decl *D = InterestingDecls.front();
6480 InterestingDecls.pop_front();
Argyrios Kyrtzidis91707832011-12-17 08:11:25 +00006481 PassInterestingDeclToConsumer(D);
6482 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006483 }
Douglas Gregord89275b2009-07-06 18:54:52 +00006484}
Douglas Gregor501c1032010-08-19 00:28:17 +00006485
Douglas Gregorf8a1e512011-09-02 00:26:20 +00006486ASTReader::ASTReader(Preprocessor &PP, ASTContext &Context,
Douglas Gregor832d6202011-07-22 16:35:34 +00006487 StringRef isysroot, bool DisableValidation,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006488 bool DisableStatCache, bool AllowASTWithCompilerErrors)
Sebastian Redle1dde812010-08-24 00:50:04 +00006489 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
6490 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
Douglas Gregor712f2fc2011-09-09 22:02:16 +00006491 Diags(PP.getDiagnostics()), SemaObj(0), PP(PP), Context(Context),
Jonathan D. Turner1afb6612011-07-28 17:20:23 +00006492 Consumer(0), ModuleMgr(FileMgr.getFileSystemOptions()),
6493 RelocatablePCH(false), isysroot(isysroot),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006494 DisableValidation(DisableValidation),
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00006495 DisableStatCache(DisableStatCache),
6496 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
Argyrios Kyrtzidisb88acb02012-05-04 01:49:36 +00006497 CurrentGeneration(0), CurrSwitchCaseStmts(&SwitchCaseStmts),
6498 NumStatHits(0), NumStatMisses(0),
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006499 NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006500 NumStatementsRead(0), TotalNumStatements(0), NumMacrosRead(0),
6501 TotalNumMacros(0), NumSelectorsRead(0), NumMethodPoolEntriesRead(0),
6502 NumMethodPoolMisses(0), TotalNumMethodPoolEntries(0),
6503 NumLexicalDeclContextsRead(0), TotalLexicalDeclContexts(0),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006504 NumVisibleDeclContextsRead(0), TotalVisibleDeclContexts(0),
6505 TotalModulesSizeInBits(0), NumCurrentElementsDeserializing(0),
Argyrios Kyrtzidis44d2dbd2012-02-09 07:31:52 +00006506 PassingDeclsToConsumer(false),
Jonathan D. Turner1da90142011-07-21 21:15:19 +00006507 NumCXXBaseSpecifiersLoaded(0)
Douglas Gregor8ef6c8c2011-02-05 19:42:43 +00006508{
Douglas Gregorf62d43d2011-07-19 16:10:42 +00006509 SourceMgr.setExternalSLocEntrySource(this);
Sebastian Redle1dde812010-08-24 00:50:04 +00006510}
6511
Sebastian Redle1dde812010-08-24 00:50:04 +00006512ASTReader::~ASTReader() {
Sebastian Redle1dde812010-08-24 00:50:04 +00006513 for (DeclContextVisibleUpdatesPending::iterator
6514 I = PendingVisibleUpdates.begin(),
6515 E = PendingVisibleUpdates.end();
6516 I != E; ++I) {
6517 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
6518 F = I->second.end();
6519 J != F; ++J)
Benjamin Kramerb1758c62012-04-15 12:36:49 +00006520 delete J->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00006521 }
Axel Naumann38c3bb42012-10-02 12:18:46 +00006522 assert(RedeclsAddedToAST.empty() && "RedeclsAddedToAST not empty!");
Sebastian Redle1dde812010-08-24 00:50:04 +00006523}