blob: c0aff9afde304f0e6d4b8693dc3fb5b012ff6daf [file] [log] [blame]
Sebastian Redl3b3c8742010-08-18 23:57:11 +00001//===--- ASTReader.cpp - AST File Reader ------------------------*- C++ -*-===//
Douglas Gregoref84c4b2009-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 Redl2c499f62010-08-18 23:56:43 +000010// This file defines the ASTReader class, which reads AST files.
Douglas Gregoref84c4b2009-04-09 22:27:44 +000011//
12//===----------------------------------------------------------------------===//
Chris Lattner92ba5ff2009-04-27 05:14:47 +000013
Sebastian Redlf5b13462010-08-18 23:57:17 +000014#include "clang/Serialization/ASTReader.h"
15#include "clang/Serialization/ASTDeserializationListener.h"
Argyrios Kyrtzidis4bd97102010-08-20 16:03:52 +000016#include "ASTCommon.h"
Douglas Gregor55abb232009-04-10 20:39:37 +000017#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar732ef8a2009-11-11 23:58:53 +000018#include "clang/Frontend/Utils.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000019#include "clang/Sema/Sema.h"
John McCallcc14d1f2010-08-24 08:50:51 +000020#include "clang/Sema/Scope.h"
Douglas Gregor1a0d0b92009-04-14 00:24:19 +000021#include "clang/AST/ASTConsumer.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000022#include "clang/AST/ASTContext.h"
John McCall19c1bfd2010-08-25 05:32:35 +000023#include "clang/AST/DeclTemplate.h"
Douglas Gregorfeb84b02009-04-14 21:18:50 +000024#include "clang/AST/Expr.h"
John McCallbfd822c2010-08-24 07:32:53 +000025#include "clang/AST/ExprCXX.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000026#include "clang/AST/Type.h"
John McCall8f115c62009-10-16 21:56:05 +000027#include "clang/AST/TypeLocVisitor.h"
Chris Lattner34321bc2009-04-10 21:41:48 +000028#include "clang/Lex/MacroInfo.h"
Douglas Gregoraae92242010-03-19 21:51:54 +000029#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000030#include "clang/Lex/Preprocessor.h"
Steve Naroff3fa455a2009-04-24 20:03:17 +000031#include "clang/Lex/HeaderSearch.h"
Douglas Gregora868bbd2009-04-21 22:25:48 +000032#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000033#include "clang/Basic/SourceManager.h"
Douglas Gregor4c7626e2009-04-13 16:31:14 +000034#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000035#include "clang/Basic/FileManager.h"
Douglas Gregorbfbde532009-04-10 21:16:55 +000036#include "clang/Basic/TargetInfo.h"
Douglas Gregord54f3a12009-10-05 21:07:28 +000037#include "clang/Basic/Version.h"
Daniel Dunbarf8502d52009-10-17 23:52:28 +000038#include "llvm/ADT/StringExtras.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000039#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000040#include "llvm/Support/MemoryBuffer.h"
John McCall0ad16662009-10-29 08:12:44 +000041#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +000042#include "llvm/System/Path.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000043#include <algorithm>
Douglas Gregorc379c072009-04-28 18:58:38 +000044#include <iterator>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000045#include <cstdio>
Douglas Gregorc5046832009-04-27 18:38:38 +000046#include <sys/stat.h>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000047using namespace clang;
Sebastian Redl539c5062010-08-18 23:57:32 +000048using namespace clang::serialization;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000049
50//===----------------------------------------------------------------------===//
Sebastian Redld44cd6a2010-08-18 23:57:06 +000051// PCH validator implementation
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000052//===----------------------------------------------------------------------===//
53
Sebastian Redl3e31c722010-08-18 23:56:56 +000054ASTReaderListener::~ASTReaderListener() {}
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000055
56bool
57PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts) {
58 const LangOptions &PPLangOpts = PP.getLangOptions();
59#define PARSE_LANGOPT_BENIGN(Option)
60#define PARSE_LANGOPT_IMPORTANT(Option, DiagID) \
61 if (PPLangOpts.Option != LangOpts.Option) { \
62 Reader.Diag(DiagID) << LangOpts.Option << PPLangOpts.Option; \
63 return true; \
64 }
65
66 PARSE_LANGOPT_BENIGN(Trigraphs);
67 PARSE_LANGOPT_BENIGN(BCPLComment);
68 PARSE_LANGOPT_BENIGN(DollarIdents);
69 PARSE_LANGOPT_BENIGN(AsmPreprocessor);
70 PARSE_LANGOPT_IMPORTANT(GNUMode, diag::warn_pch_gnu_extensions);
Chandler Carruthe03aa552010-04-17 20:17:31 +000071 PARSE_LANGOPT_IMPORTANT(GNUKeywords, diag::warn_pch_gnu_keywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000072 PARSE_LANGOPT_BENIGN(ImplicitInt);
73 PARSE_LANGOPT_BENIGN(Digraphs);
74 PARSE_LANGOPT_BENIGN(HexFloats);
75 PARSE_LANGOPT_IMPORTANT(C99, diag::warn_pch_c99);
76 PARSE_LANGOPT_IMPORTANT(Microsoft, diag::warn_pch_microsoft_extensions);
Michael J. Spencer4992ca4b2010-10-21 05:21:48 +000077 PARSE_LANGOPT_BENIGN(MSCVersion);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000078 PARSE_LANGOPT_IMPORTANT(CPlusPlus, diag::warn_pch_cplusplus);
79 PARSE_LANGOPT_IMPORTANT(CPlusPlus0x, diag::warn_pch_cplusplus0x);
80 PARSE_LANGOPT_BENIGN(CXXOperatorName);
81 PARSE_LANGOPT_IMPORTANT(ObjC1, diag::warn_pch_objective_c);
82 PARSE_LANGOPT_IMPORTANT(ObjC2, diag::warn_pch_objective_c2);
83 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI, diag::warn_pch_nonfragile_abi);
Fariborz Jahanian45878032010-02-09 19:31:38 +000084 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI2, diag::warn_pch_nonfragile_abi2);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +000085 PARSE_LANGOPT_IMPORTANT(NoConstantCFStrings,
Fariborz Jahanian62c56022010-04-22 21:01:59 +000086 diag::warn_pch_no_constant_cfstrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000087 PARSE_LANGOPT_BENIGN(PascalStrings);
88 PARSE_LANGOPT_BENIGN(WritableStrings);
Mike Stump11289f42009-09-09 15:08:12 +000089 PARSE_LANGOPT_IMPORTANT(LaxVectorConversions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000090 diag::warn_pch_lax_vector_conversions);
Nate Begeman9d905792009-06-25 22:57:40 +000091 PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000092 PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +000093 PARSE_LANGOPT_IMPORTANT(SjLjExceptions, diag::warn_pch_sjlj_exceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000094 PARSE_LANGOPT_IMPORTANT(NeXTRuntime, diag::warn_pch_objc_runtime);
95 PARSE_LANGOPT_IMPORTANT(Freestanding, diag::warn_pch_freestanding);
96 PARSE_LANGOPT_IMPORTANT(NoBuiltin, diag::warn_pch_builtins);
Mike Stump11289f42009-09-09 15:08:12 +000097 PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000098 diag::warn_pch_thread_safe_statics);
Daniel Dunbara77eaeb2009-09-03 04:54:28 +000099 PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000100 PARSE_LANGOPT_IMPORTANT(Blocks, diag::warn_pch_blocks);
101 PARSE_LANGOPT_BENIGN(EmitAllDecls);
102 PARSE_LANGOPT_IMPORTANT(MathErrno, diag::warn_pch_math_errno);
Chris Lattner51924e512010-06-26 21:25:03 +0000103 PARSE_LANGOPT_BENIGN(getSignedOverflowBehavior());
Mike Stump11289f42009-09-09 15:08:12 +0000104 PARSE_LANGOPT_IMPORTANT(HeinousExtensions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000105 diag::warn_pch_heinous_extensions);
106 // FIXME: Most of the options below are benign if the macro wasn't
107 // used. Unfortunately, this means that a PCH compiled without
108 // optimization can't be used with optimization turned on, even
109 // though the only thing that changes is whether __OPTIMIZE__ was
110 // defined... but if __OPTIMIZE__ never showed up in the header, it
111 // doesn't matter. We could consider making this some special kind
112 // of check.
113 PARSE_LANGOPT_IMPORTANT(Optimize, diag::warn_pch_optimize);
114 PARSE_LANGOPT_IMPORTANT(OptimizeSize, diag::warn_pch_optimize_size);
115 PARSE_LANGOPT_IMPORTANT(Static, diag::warn_pch_static);
116 PARSE_LANGOPT_IMPORTANT(PICLevel, diag::warn_pch_pic_level);
117 PARSE_LANGOPT_IMPORTANT(GNUInline, diag::warn_pch_gnu_inline);
118 PARSE_LANGOPT_IMPORTANT(NoInline, diag::warn_pch_no_inline);
119 PARSE_LANGOPT_IMPORTANT(AccessControl, diag::warn_pch_access_control);
120 PARSE_LANGOPT_IMPORTANT(CharIsSigned, diag::warn_pch_char_signed);
John Thompsoned4e2952009-11-05 20:14:16 +0000121 PARSE_LANGOPT_IMPORTANT(ShortWChar, diag::warn_pch_short_wchar);
Argyrios Kyrtzidis74825bc2010-10-08 00:25:19 +0000122 PARSE_LANGOPT_IMPORTANT(ShortEnums, diag::warn_pch_short_enums);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000123 if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) {
Mike Stump11289f42009-09-09 15:08:12 +0000124 Reader.Diag(diag::warn_pch_gc_mode)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000125 << LangOpts.getGCMode() << PPLangOpts.getGCMode();
126 return true;
127 }
128 PARSE_LANGOPT_BENIGN(getVisibilityMode());
Daniel Dunbar143021e2009-09-21 04:16:19 +0000129 PARSE_LANGOPT_IMPORTANT(getStackProtectorMode(),
130 diag::warn_pch_stack_protector);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000131 PARSE_LANGOPT_BENIGN(InstantiationDepth);
Nate Begeman9d905792009-06-25 22:57:40 +0000132 PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl);
Mike Stumpd9546382009-12-12 01:27:46 +0000133 PARSE_LANGOPT_BENIGN(CatchUndefined);
Daniel Dunbar143021e2009-09-21 04:16:19 +0000134 PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_pch_elide_constructors);
Douglas Gregor8ed0c0b2010-07-09 17:35:33 +0000135 PARSE_LANGOPT_BENIGN(SpellChecking);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +0000136#undef PARSE_LANGOPT_IMPORTANT
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000137#undef PARSE_LANGOPT_BENIGN
138
139 return false;
140}
141
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000142bool PCHValidator::ReadTargetTriple(llvm::StringRef Triple) {
143 if (Triple == PP.getTargetInfo().getTriple().str())
144 return false;
145
146 Reader.Diag(diag::warn_pch_target_triple)
147 << Triple << PP.getTargetInfo().getTriple().str();
148 return true;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000149}
150
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000151struct EmptyStringRef {
Benjamin Kramer8d5609b2010-07-14 23:19:41 +0000152 bool operator ()(llvm::StringRef r) const { return r.empty(); }
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000153};
154struct EmptyBlock {
155 bool operator ()(const PCHPredefinesBlock &r) const { return r.Data.empty(); }
156};
157
158static bool EqualConcatenations(llvm::SmallVector<llvm::StringRef, 2> L,
159 PCHPredefinesBlocks R) {
160 // First, sum up the lengths.
161 unsigned LL = 0, RL = 0;
162 for (unsigned I = 0, N = L.size(); I != N; ++I) {
163 LL += L[I].size();
164 }
165 for (unsigned I = 0, N = R.size(); I != N; ++I) {
166 RL += R[I].Data.size();
167 }
168 if (LL != RL)
169 return false;
170 if (LL == 0 && RL == 0)
171 return true;
172
173 // Kick out empty parts, they confuse the algorithm below.
174 L.erase(std::remove_if(L.begin(), L.end(), EmptyStringRef()), L.end());
175 R.erase(std::remove_if(R.begin(), R.end(), EmptyBlock()), R.end());
176
177 // Do it the hard way. At this point, both vectors must be non-empty.
178 llvm::StringRef LR = L[0], RR = R[0].Data;
179 unsigned LI = 0, RI = 0, LN = L.size(), RN = R.size();
Daniel Dunbar01ad0a72010-07-16 00:00:11 +0000180 (void) RN;
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000181 for (;;) {
182 // Compare the current pieces.
183 if (LR.size() == RR.size()) {
184 // If they're the same length, it's pretty easy.
185 if (LR != RR)
186 return false;
187 // Both pieces are done, advance.
188 ++LI;
189 ++RI;
190 // If either string is done, they're both done, since they're the same
191 // length.
192 if (LI == LN) {
193 assert(RI == RN && "Strings not the same length after all?");
194 return true;
195 }
196 LR = L[LI];
197 RR = R[RI].Data;
198 } else if (LR.size() < RR.size()) {
199 // Right piece is longer.
200 if (!RR.startswith(LR))
201 return false;
202 ++LI;
203 assert(LI != LN && "Strings not the same length after all?");
204 RR = RR.substr(LR.size());
205 LR = L[LI];
206 } else {
207 // Left piece is longer.
208 if (!LR.startswith(RR))
209 return false;
210 ++RI;
211 assert(RI != RN && "Strings not the same length after all?");
212 LR = LR.substr(RR.size());
213 RR = R[RI].Data;
214 }
215 }
216}
217
218static std::pair<FileID, llvm::StringRef::size_type>
219FindMacro(const PCHPredefinesBlocks &Buffers, llvm::StringRef MacroDef) {
220 std::pair<FileID, llvm::StringRef::size_type> Res;
221 for (unsigned I = 0, N = Buffers.size(); I != N; ++I) {
222 Res.second = Buffers[I].Data.find(MacroDef);
223 if (Res.second != llvm::StringRef::npos) {
224 Res.first = Buffers[I].BufferID;
225 break;
226 }
227 }
228 return Res;
229}
230
231bool PCHValidator::ReadPredefinesBuffer(const PCHPredefinesBlocks &Buffers,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000232 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000233 std::string &SuggestedPredefines) {
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000234 // We are in the context of an implicit include, so the predefines buffer will
235 // have a #include entry for the PCH file itself (as normalized by the
236 // preprocessor initialization). Find it and skip over it in the checking
237 // below.
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000238 llvm::SmallString<256> PCHInclude;
239 PCHInclude += "#include \"";
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000240 PCHInclude += NormalizeDashIncludePath(OriginalFileName);
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000241 PCHInclude += "\"\n";
242 std::pair<llvm::StringRef,llvm::StringRef> Split =
243 llvm::StringRef(PP.getPredefines()).split(PCHInclude.str());
244 llvm::StringRef Left = Split.first, Right = Split.second;
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000245 if (Left == PP.getPredefines()) {
246 Error("Missing PCH include entry!");
247 return true;
248 }
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000249
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000250 // If the concatenation of all the PCH buffers is equal to the adjusted
251 // command line, we're done.
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000252 llvm::SmallVector<llvm::StringRef, 2> CommandLine;
253 CommandLine.push_back(Left);
254 CommandLine.push_back(Right);
255 if (EqualConcatenations(CommandLine, Buffers))
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000256 return false;
257
258 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump11289f42009-09-09 15:08:12 +0000259
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000260 // The predefines buffers are different. Determine what the differences are,
261 // and whether they require us to reject the PCH file.
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000262 llvm::SmallVector<llvm::StringRef, 8> PCHLines;
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000263 for (unsigned I = 0, N = Buffers.size(); I != N; ++I)
264 Buffers[I].Data.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000265
266 llvm::SmallVector<llvm::StringRef, 8> CmdLineLines;
267 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Argyrios Kyrtzidis58c65412010-09-30 16:53:50 +0000268
269 // Pick out implicit #includes after the PCH and don't consider them for
270 // validation; we will insert them into SuggestedPredefines so that the
271 // preprocessor includes them.
272 std::string IncludesAfterPCH;
273 llvm::SmallVector<llvm::StringRef, 8> AfterPCHLines;
274 Right.split(AfterPCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
275 for (unsigned i = 0, e = AfterPCHLines.size(); i != e; ++i) {
276 if (AfterPCHLines[i].startswith("#include ")) {
277 IncludesAfterPCH += AfterPCHLines[i];
278 IncludesAfterPCH += '\n';
279 } else {
280 CmdLineLines.push_back(AfterPCHLines[i]);
281 }
282 }
283
284 // Make sure we add the includes last into SuggestedPredefines before we
285 // exit this function.
286 struct AddIncludesRAII {
287 std::string &SuggestedPredefines;
288 std::string &IncludesAfterPCH;
289
290 AddIncludesRAII(std::string &SuggestedPredefines,
291 std::string &IncludesAfterPCH)
292 : SuggestedPredefines(SuggestedPredefines),
293 IncludesAfterPCH(IncludesAfterPCH) { }
294 ~AddIncludesRAII() {
295 SuggestedPredefines += IncludesAfterPCH;
296 }
297 } AddIncludes(SuggestedPredefines, IncludesAfterPCH);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000298
Daniel Dunbar499baed2009-11-11 05:26:28 +0000299 // Sort both sets of predefined buffer lines, since we allow some extra
300 // definitions and they may appear at any point in the output.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000301 std::sort(CmdLineLines.begin(), CmdLineLines.end());
302 std::sort(PCHLines.begin(), PCHLines.end());
303
Daniel Dunbar499baed2009-11-11 05:26:28 +0000304 // Determine which predefines that were used to build the PCH file are missing
305 // from the command line.
306 std::vector<llvm::StringRef> MissingPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000307 std::set_difference(PCHLines.begin(), PCHLines.end(),
308 CmdLineLines.begin(), CmdLineLines.end(),
309 std::back_inserter(MissingPredefines));
310
311 bool MissingDefines = false;
312 bool ConflictingDefines = false;
313 for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000314 llvm::StringRef Missing = MissingPredefines[I];
Argyrios Kyrtzidis58c65412010-09-30 16:53:50 +0000315 if (Missing.startswith("#include ")) {
316 // An -include was specified when generating the PCH; it is included in
317 // the PCH, just ignore it.
318 continue;
319 }
Daniel Dunbar499baed2009-11-11 05:26:28 +0000320 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000321 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
322 return true;
323 }
Mike Stump11289f42009-09-09 15:08:12 +0000324
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000325 // This is a macro definition. Determine the name of the macro we're
326 // defining.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000327 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000328 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000329 = Missing.find_first_of("( \n\r", StartOfMacroName);
330 assert(EndOfMacroName != std::string::npos &&
331 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000332 llvm::StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000333
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000334 // Determine whether this macro was given a different definition on the
335 // command line.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000336 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000337 std::string::size_type MacroDefLen = MacroDefStart.size();
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000338 llvm::SmallVector<llvm::StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000339 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
340 MacroDefStart);
341 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000342 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000343 // Different macro; we're done.
344 ConflictPos = CmdLineLines.end();
Mike Stump11289f42009-09-09 15:08:12 +0000345 break;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000346 }
Mike Stump11289f42009-09-09 15:08:12 +0000347
348 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000349 "Invalid #define in predefines buffer?");
Mike Stump11289f42009-09-09 15:08:12 +0000350 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000351 (*ConflictPos)[MacroDefLen] != '(')
352 continue; // Longer macro name; keep trying.
Mike Stump11289f42009-09-09 15:08:12 +0000353
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000354 // We found a conflicting macro definition.
355 break;
356 }
Mike Stump11289f42009-09-09 15:08:12 +0000357
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000358 if (ConflictPos != CmdLineLines.end()) {
359 Reader.Diag(diag::warn_cmdline_conflicting_macro_def)
360 << MacroName;
361
362 // Show the definition of this macro within the PCH file.
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000363 std::pair<FileID, llvm::StringRef::size_type> MacroLoc =
364 FindMacro(Buffers, Missing);
365 assert(MacroLoc.second!=llvm::StringRef::npos && "Unable to find macro!");
366 SourceLocation PCHMissingLoc =
367 SourceMgr.getLocForStartOfFile(MacroLoc.first)
368 .getFileLocWithOffset(MacroLoc.second);
Daniel Dunbar499baed2009-11-11 05:26:28 +0000369 Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) << MacroName;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000370
371 ConflictingDefines = true;
372 continue;
373 }
Mike Stump11289f42009-09-09 15:08:12 +0000374
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000375 // If the macro doesn't conflict, then we'll just pick up the macro
376 // definition from the PCH file. Warn the user that they made a mistake.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000377 if (ConflictingDefines)
378 continue; // Don't complain if there are already conflicting defs
Mike Stump11289f42009-09-09 15:08:12 +0000379
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000380 if (!MissingDefines) {
381 Reader.Diag(diag::warn_cmdline_missing_macro_defs);
382 MissingDefines = true;
383 }
384
385 // Show the definition of this macro within the PCH file.
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000386 std::pair<FileID, llvm::StringRef::size_type> MacroLoc =
387 FindMacro(Buffers, Missing);
388 assert(MacroLoc.second!=llvm::StringRef::npos && "Unable to find macro!");
389 SourceLocation PCHMissingLoc =
390 SourceMgr.getLocForStartOfFile(MacroLoc.first)
391 .getFileLocWithOffset(MacroLoc.second);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000392 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
393 }
Mike Stump11289f42009-09-09 15:08:12 +0000394
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000395 if (ConflictingDefines)
396 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000397
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000398 // Determine what predefines were introduced based on command-line
399 // parameters that were not present when building the PCH
400 // file. Extra #defines are okay, so long as the identifiers being
401 // defined were not used within the precompiled header.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000402 std::vector<llvm::StringRef> ExtraPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000403 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
404 PCHLines.begin(), PCHLines.end(),
Mike Stump11289f42009-09-09 15:08:12 +0000405 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000406 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000407 llvm::StringRef &Extra = ExtraPredefines[I];
408 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000409 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
410 return true;
411 }
412
413 // This is an extra macro definition. Determine the name of the
414 // macro we're defining.
415 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000416 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000417 = Extra.find_first_of("( \n\r", StartOfMacroName);
418 assert(EndOfMacroName != std::string::npos &&
419 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000420 llvm::StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000421
422 // Check whether this name was used somewhere in the PCH file. If
423 // so, defining it as a macro could change behavior, so we reject
424 // the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000425 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar045c92f2009-11-11 00:52:00 +0000426 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000427 return true;
428 }
429
430 // Add this definition to the suggested predefines buffer.
431 SuggestedPredefines += Extra;
432 SuggestedPredefines += '\n';
433 }
434
435 // If we get here, it's because the predefines buffer had compatible
436 // contents. Accept the PCH file.
437 return false;
438}
439
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000440void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
441 unsigned ID) {
442 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
443 ++NumHeaderInfos;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000444}
445
446void PCHValidator::ReadCounter(unsigned Value) {
447 PP.setCounterValue(Value);
448}
449
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000450//===----------------------------------------------------------------------===//
Sebastian Redl2c499f62010-08-18 23:56:43 +0000451// AST reader implementation
Douglas Gregora868bbd2009-04-21 22:25:48 +0000452//===----------------------------------------------------------------------===//
453
Sebastian Redl07a89a82010-07-30 00:29:29 +0000454void
Sebastian Redl3e31c722010-08-18 23:56:56 +0000455ASTReader::setDeserializationListener(ASTDeserializationListener *Listener) {
Sebastian Redl07a89a82010-07-30 00:29:29 +0000456 DeserializationListener = Listener;
Sebastian Redl07a89a82010-07-30 00:29:29 +0000457}
458
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000459
Douglas Gregora868bbd2009-04-21 22:25:48 +0000460namespace {
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000461class ASTSelectorLookupTrait {
Sebastian Redl2c499f62010-08-18 23:56:43 +0000462 ASTReader &Reader;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000463
464public:
Sebastian Redl834bb972010-08-04 17:20:04 +0000465 struct data_type {
Sebastian Redl539c5062010-08-18 23:57:32 +0000466 SelectorID ID;
Sebastian Redl834bb972010-08-04 17:20:04 +0000467 ObjCMethodList Instance, Factory;
468 };
Douglas Gregorc78d3462009-04-24 21:10:55 +0000469
470 typedef Selector external_key_type;
471 typedef external_key_type internal_key_type;
472
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000473 explicit ASTSelectorLookupTrait(ASTReader &Reader) : Reader(Reader) { }
Mike Stump11289f42009-09-09 15:08:12 +0000474
Douglas Gregorc78d3462009-04-24 21:10:55 +0000475 static bool EqualKey(const internal_key_type& a,
476 const internal_key_type& b) {
477 return a == b;
478 }
Mike Stump11289f42009-09-09 15:08:12 +0000479
Douglas Gregorc78d3462009-04-24 21:10:55 +0000480 static unsigned ComputeHash(Selector Sel) {
Argyrios Kyrtzidis4bd97102010-08-20 16:03:52 +0000481 return serialization::ComputeHash(Sel);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000482 }
Mike Stump11289f42009-09-09 15:08:12 +0000483
Douglas Gregorc78d3462009-04-24 21:10:55 +0000484 // This hopefully will just get inlined and removed by the optimizer.
485 static const internal_key_type&
486 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000487
Douglas Gregorc78d3462009-04-24 21:10:55 +0000488 static std::pair<unsigned, unsigned>
489 ReadKeyDataLength(const unsigned char*& d) {
490 using namespace clang::io;
491 unsigned KeyLen = ReadUnalignedLE16(d);
492 unsigned DataLen = ReadUnalignedLE16(d);
493 return std::make_pair(KeyLen, DataLen);
494 }
Mike Stump11289f42009-09-09 15:08:12 +0000495
Douglas Gregor95c13f52009-04-25 17:48:32 +0000496 internal_key_type ReadKey(const unsigned char* d, unsigned) {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000497 using namespace clang::io;
Chris Lattner8575daa2009-04-27 21:45:14 +0000498 SelectorTable &SelTable = Reader.getContext()->Selectors;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000499 unsigned N = ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +0000500 IdentifierInfo *FirstII
Douglas Gregorc78d3462009-04-24 21:10:55 +0000501 = Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d));
502 if (N == 0)
503 return SelTable.getNullarySelector(FirstII);
504 else if (N == 1)
505 return SelTable.getUnarySelector(FirstII);
506
507 llvm::SmallVector<IdentifierInfo *, 16> Args;
508 Args.push_back(FirstII);
509 for (unsigned I = 1; I != N; ++I)
510 Args.push_back(Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d)));
511
Douglas Gregor038c3382009-05-22 22:45:36 +0000512 return SelTable.getSelector(N, Args.data());
Douglas Gregorc78d3462009-04-24 21:10:55 +0000513 }
Mike Stump11289f42009-09-09 15:08:12 +0000514
Douglas Gregorc78d3462009-04-24 21:10:55 +0000515 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen) {
516 using namespace clang::io;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000517
518 data_type Result;
519
Sebastian Redl834bb972010-08-04 17:20:04 +0000520 Result.ID = ReadUnalignedLE32(d);
521 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
522 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
523
Douglas Gregorc78d3462009-04-24 21:10:55 +0000524 // Load instance methods
525 ObjCMethodList *Prev = 0;
526 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000527 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000528 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
Sebastian Redl834bb972010-08-04 17:20:04 +0000529 if (!Result.Instance.Method) {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000530 // This is the first method, which is the easy case.
Sebastian Redl834bb972010-08-04 17:20:04 +0000531 Result.Instance.Method = Method;
532 Prev = &Result.Instance;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000533 continue;
534 }
535
Ted Kremenekda4abf12010-02-11 00:53:01 +0000536 ObjCMethodList *Mem =
537 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
538 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000539 Prev = Prev->Next;
540 }
541
542 // Load factory methods
543 Prev = 0;
544 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000545 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000546 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
Sebastian Redl834bb972010-08-04 17:20:04 +0000547 if (!Result.Factory.Method) {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000548 // This is the first method, which is the easy case.
Sebastian Redl834bb972010-08-04 17:20:04 +0000549 Result.Factory.Method = Method;
550 Prev = &Result.Factory;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000551 continue;
552 }
553
Ted Kremenekda4abf12010-02-11 00:53:01 +0000554 ObjCMethodList *Mem =
555 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
556 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000557 Prev = Prev->Next;
558 }
559
560 return Result;
561 }
562};
Mike Stump11289f42009-09-09 15:08:12 +0000563
564} // end anonymous namespace
Douglas Gregorc78d3462009-04-24 21:10:55 +0000565
566/// \brief The on-disk hash table used for the global method pool.
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000567typedef OnDiskChainedHashTable<ASTSelectorLookupTrait>
568 ASTSelectorLookupTable;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000569
Sebastian Redl2c373b92010-10-05 15:59:54 +0000570namespace clang {
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000571class ASTIdentifierLookupTrait {
Sebastian Redl2c499f62010-08-18 23:56:43 +0000572 ASTReader &Reader;
Sebastian Redl2c373b92010-10-05 15:59:54 +0000573 ASTReader::PerFileData &F;
Douglas Gregora868bbd2009-04-21 22:25:48 +0000574
575 // If we know the IdentifierInfo in advance, it is here and we will
576 // not build a new one. Used when deserializing information about an
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000577 // identifier that was constructed before the AST file was read.
Douglas Gregora868bbd2009-04-21 22:25:48 +0000578 IdentifierInfo *KnownII;
579
580public:
581 typedef IdentifierInfo * data_type;
582
583 typedef const std::pair<const char*, unsigned> external_key_type;
584
585 typedef external_key_type internal_key_type;
586
Sebastian Redl2c373b92010-10-05 15:59:54 +0000587 ASTIdentifierLookupTrait(ASTReader &Reader, ASTReader::PerFileData &F,
Sebastian Redl4e6c5672010-07-21 22:31:37 +0000588 IdentifierInfo *II = 0)
Sebastian Redl2c373b92010-10-05 15:59:54 +0000589 : Reader(Reader), F(F), KnownII(II) { }
Mike Stump11289f42009-09-09 15:08:12 +0000590
Douglas Gregora868bbd2009-04-21 22:25:48 +0000591 static bool EqualKey(const internal_key_type& a,
592 const internal_key_type& b) {
593 return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0
594 : false;
595 }
Mike Stump11289f42009-09-09 15:08:12 +0000596
Douglas Gregora868bbd2009-04-21 22:25:48 +0000597 static unsigned ComputeHash(const internal_key_type& a) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000598 return llvm::HashString(llvm::StringRef(a.first, a.second));
Douglas Gregora868bbd2009-04-21 22:25:48 +0000599 }
Mike Stump11289f42009-09-09 15:08:12 +0000600
Douglas Gregora868bbd2009-04-21 22:25:48 +0000601 // This hopefully will just get inlined and removed by the optimizer.
602 static const internal_key_type&
603 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000604
Douglas Gregor57756ea2010-10-14 22:11:03 +0000605 // This hopefully will just get inlined and removed by the optimizer.
606 static const external_key_type&
607 GetExternalKey(const internal_key_type& x) { return x; }
608
Douglas Gregora868bbd2009-04-21 22:25:48 +0000609 static std::pair<unsigned, unsigned>
610 ReadKeyDataLength(const unsigned char*& d) {
611 using namespace clang::io;
Douglas Gregor6b7bf5a2009-04-25 20:26:24 +0000612 unsigned DataLen = ReadUnalignedLE16(d);
Douglas Gregor5287b4e2009-04-25 21:04:17 +0000613 unsigned KeyLen = ReadUnalignedLE16(d);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000614 return std::make_pair(KeyLen, DataLen);
615 }
Mike Stump11289f42009-09-09 15:08:12 +0000616
Douglas Gregora868bbd2009-04-21 22:25:48 +0000617 static std::pair<const char*, unsigned>
618 ReadKey(const unsigned char* d, unsigned n) {
619 assert(n >= 2 && d[n-1] == '\0');
620 return std::make_pair((const char*) d, n-1);
621 }
Mike Stump11289f42009-09-09 15:08:12 +0000622
623 IdentifierInfo *ReadData(const internal_key_type& k,
Douglas Gregora868bbd2009-04-21 22:25:48 +0000624 const unsigned char* d,
625 unsigned DataLen) {
626 using namespace clang::io;
Sebastian Redl539c5062010-08-18 23:57:32 +0000627 IdentID ID = ReadUnalignedLE32(d);
Douglas Gregor1d583f22009-04-28 21:18:29 +0000628 bool IsInteresting = ID & 0x01;
629
630 // Wipe out the "is interesting" bit.
631 ID = ID >> 1;
632
633 if (!IsInteresting) {
Sebastian Redl98912122010-07-27 23:01:28 +0000634 // For uninteresting identifiers, just build the IdentifierInfo
Douglas Gregor1d583f22009-04-28 21:18:29 +0000635 // and associate it with the persistent ID.
636 IdentifierInfo *II = KnownII;
637 if (!II)
Sebastian Redl07a89a82010-07-30 00:29:29 +0000638 II = &Reader.getIdentifierTable().getOwn(k.first, k.first + k.second);
Douglas Gregor1d583f22009-04-28 21:18:29 +0000639 Reader.SetIdentifierInfo(ID, II);
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000640 II->setIsFromAST();
Douglas Gregor1d583f22009-04-28 21:18:29 +0000641 return II;
642 }
643
Douglas Gregorb9256522009-04-28 21:32:13 +0000644 unsigned Bits = ReadUnalignedLE16(d);
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000645 bool CPlusPlusOperatorKeyword = Bits & 0x01;
646 Bits >>= 1;
Argyrios Kyrtzidis3084a612010-08-11 22:55:12 +0000647 bool HasRevertedTokenIDToIdentifier = Bits & 0x01;
648 Bits >>= 1;
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000649 bool Poisoned = Bits & 0x01;
650 Bits >>= 1;
651 bool ExtensionToken = Bits & 0x01;
652 Bits >>= 1;
653 bool hasMacroDefinition = Bits & 0x01;
654 Bits >>= 1;
655 unsigned ObjCOrBuiltinID = Bits & 0x3FF;
656 Bits >>= 10;
Mike Stump11289f42009-09-09 15:08:12 +0000657
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000658 assert(Bits == 0 && "Extra bits in the identifier?");
Douglas Gregorb9256522009-04-28 21:32:13 +0000659 DataLen -= 6;
Douglas Gregora868bbd2009-04-21 22:25:48 +0000660
661 // Build the IdentifierInfo itself and link the identifier ID with
662 // the new IdentifierInfo.
663 IdentifierInfo *II = KnownII;
664 if (!II)
Sebastian Redl07a89a82010-07-30 00:29:29 +0000665 II = &Reader.getIdentifierTable().getOwn(k.first, k.first + k.second);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000666 Reader.SetIdentifierInfo(ID, II);
667
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000668 // Set or check the various bits in the IdentifierInfo structure.
Argyrios Kyrtzidis3084a612010-08-11 22:55:12 +0000669 // Token IDs are read-only.
670 if (HasRevertedTokenIDToIdentifier)
671 II->RevertTokenIDToIdentifier();
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000672 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
Mike Stump11289f42009-09-09 15:08:12 +0000673 assert(II->isExtensionToken() == ExtensionToken &&
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000674 "Incorrect extension token flag");
675 (void)ExtensionToken;
676 II->setIsPoisoned(Poisoned);
677 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
678 "Incorrect C++ operator keyword flag");
679 (void)CPlusPlusOperatorKeyword;
680
Douglas Gregorc3366a52009-04-21 23:56:24 +0000681 // If this identifier is a macro, deserialize the macro
682 // definition.
683 if (hasMacroDefinition) {
Douglas Gregorb9256522009-04-28 21:32:13 +0000684 uint32_t Offset = ReadUnalignedLE32(d);
Sebastian Redl2c373b92010-10-05 15:59:54 +0000685 Reader.ReadMacroRecord(F, Offset);
Douglas Gregorb9256522009-04-28 21:32:13 +0000686 DataLen -= 4;
Douglas Gregorc3366a52009-04-21 23:56:24 +0000687 }
Douglas Gregora868bbd2009-04-21 22:25:48 +0000688
689 // Read all of the declarations visible at global scope with this
690 // name.
Chris Lattner1d728882009-04-27 22:17:41 +0000691 if (Reader.getContext() == 0) return II;
Douglas Gregor1342e842009-07-06 18:54:52 +0000692 if (DataLen > 0) {
693 llvm::SmallVector<uint32_t, 4> DeclIDs;
694 for (; DataLen > 0; DataLen -= 4)
695 DeclIDs.push_back(ReadUnalignedLE32(d));
696 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000697 }
Mike Stump11289f42009-09-09 15:08:12 +0000698
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000699 II->setIsFromAST();
Douglas Gregora868bbd2009-04-21 22:25:48 +0000700 return II;
701 }
702};
Mike Stump11289f42009-09-09 15:08:12 +0000703
704} // end anonymous namespace
Douglas Gregora868bbd2009-04-21 22:25:48 +0000705
706/// \brief The on-disk hash table used to contain information about
707/// all of the identifiers in the program.
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000708typedef OnDiskChainedHashTable<ASTIdentifierLookupTrait>
709 ASTIdentifierLookupTable;
Douglas Gregora868bbd2009-04-21 22:25:48 +0000710
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +0000711namespace {
712class ASTDeclContextNameLookupTrait {
713 ASTReader &Reader;
714
715public:
716 /// \brief Pair of begin/end iterators for DeclIDs.
717 typedef std::pair<DeclID *, DeclID *> data_type;
718
719 /// \brief Special internal key for declaration names.
720 /// The hash table creates keys for comparison; we do not create
721 /// a DeclarationName for the internal key to avoid deserializing types.
722 struct DeclNameKey {
723 DeclarationName::NameKind Kind;
724 uint64_t Data;
725 DeclNameKey() : Kind((DeclarationName::NameKind)0), Data(0) { }
726 };
727
728 typedef DeclarationName external_key_type;
729 typedef DeclNameKey internal_key_type;
730
731 explicit ASTDeclContextNameLookupTrait(ASTReader &Reader) : Reader(Reader) { }
732
733 static bool EqualKey(const internal_key_type& a,
734 const internal_key_type& b) {
735 return a.Kind == b.Kind && a.Data == b.Data;
736 }
737
738 unsigned ComputeHash(const DeclNameKey &Key) const {
739 llvm::FoldingSetNodeID ID;
740 ID.AddInteger(Key.Kind);
741
742 switch (Key.Kind) {
743 case DeclarationName::Identifier:
744 case DeclarationName::CXXLiteralOperatorName:
745 ID.AddString(((IdentifierInfo*)Key.Data)->getName());
746 break;
747 case DeclarationName::ObjCZeroArgSelector:
748 case DeclarationName::ObjCOneArgSelector:
749 case DeclarationName::ObjCMultiArgSelector:
750 ID.AddInteger(serialization::ComputeHash(Selector(Key.Data)));
751 break;
752 case DeclarationName::CXXConstructorName:
753 case DeclarationName::CXXDestructorName:
754 case DeclarationName::CXXConversionFunctionName:
755 ID.AddInteger((TypeID)Key.Data);
756 break;
757 case DeclarationName::CXXOperatorName:
758 ID.AddInteger((OverloadedOperatorKind)Key.Data);
759 break;
760 case DeclarationName::CXXUsingDirective:
761 break;
762 }
763
764 return ID.ComputeHash();
765 }
766
767 internal_key_type GetInternalKey(const external_key_type& Name) const {
768 DeclNameKey Key;
769 Key.Kind = Name.getNameKind();
770 switch (Name.getNameKind()) {
771 case DeclarationName::Identifier:
772 Key.Data = (uint64_t)Name.getAsIdentifierInfo();
773 break;
774 case DeclarationName::ObjCZeroArgSelector:
775 case DeclarationName::ObjCOneArgSelector:
776 case DeclarationName::ObjCMultiArgSelector:
777 Key.Data = (uint64_t)Name.getObjCSelector().getAsOpaquePtr();
778 break;
779 case DeclarationName::CXXConstructorName:
780 case DeclarationName::CXXDestructorName:
781 case DeclarationName::CXXConversionFunctionName:
782 Key.Data = Reader.GetTypeID(Name.getCXXNameType());
783 break;
784 case DeclarationName::CXXOperatorName:
785 Key.Data = Name.getCXXOverloadedOperator();
786 break;
787 case DeclarationName::CXXLiteralOperatorName:
788 Key.Data = (uint64_t)Name.getCXXLiteralIdentifier();
789 break;
790 case DeclarationName::CXXUsingDirective:
791 break;
792 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +0000793
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +0000794 return Key;
795 }
796
Argyrios Kyrtzidisd32ee892010-08-20 23:35:55 +0000797 external_key_type GetExternalKey(const internal_key_type& Key) const {
798 ASTContext *Context = Reader.getContext();
799 switch (Key.Kind) {
800 case DeclarationName::Identifier:
801 return DeclarationName((IdentifierInfo*)Key.Data);
802
803 case DeclarationName::ObjCZeroArgSelector:
804 case DeclarationName::ObjCOneArgSelector:
805 case DeclarationName::ObjCMultiArgSelector:
806 return DeclarationName(Selector(Key.Data));
807
808 case DeclarationName::CXXConstructorName:
809 return Context->DeclarationNames.getCXXConstructorName(
810 Context->getCanonicalType(Reader.GetType(Key.Data)));
811
812 case DeclarationName::CXXDestructorName:
813 return Context->DeclarationNames.getCXXDestructorName(
814 Context->getCanonicalType(Reader.GetType(Key.Data)));
815
816 case DeclarationName::CXXConversionFunctionName:
817 return Context->DeclarationNames.getCXXConversionFunctionName(
818 Context->getCanonicalType(Reader.GetType(Key.Data)));
819
820 case DeclarationName::CXXOperatorName:
821 return Context->DeclarationNames.getCXXOperatorName(
822 (OverloadedOperatorKind)Key.Data);
823
824 case DeclarationName::CXXLiteralOperatorName:
825 return Context->DeclarationNames.getCXXLiteralOperatorName(
826 (IdentifierInfo*)Key.Data);
827
828 case DeclarationName::CXXUsingDirective:
829 return DeclarationName::getUsingDirectiveName();
830 }
831
832 llvm_unreachable("Invalid Name Kind ?");
833 }
834
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +0000835 static std::pair<unsigned, unsigned>
836 ReadKeyDataLength(const unsigned char*& d) {
837 using namespace clang::io;
838 unsigned KeyLen = ReadUnalignedLE16(d);
839 unsigned DataLen = ReadUnalignedLE16(d);
840 return std::make_pair(KeyLen, DataLen);
841 }
842
843 internal_key_type ReadKey(const unsigned char* d, unsigned) {
844 using namespace clang::io;
845
846 DeclNameKey Key;
847 Key.Kind = (DeclarationName::NameKind)*d++;
848 switch (Key.Kind) {
849 case DeclarationName::Identifier:
850 Key.Data = (uint64_t)Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d));
851 break;
852 case DeclarationName::ObjCZeroArgSelector:
853 case DeclarationName::ObjCOneArgSelector:
854 case DeclarationName::ObjCMultiArgSelector:
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +0000855 Key.Data =
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +0000856 (uint64_t)Reader.DecodeSelector(ReadUnalignedLE32(d)).getAsOpaquePtr();
857 break;
858 case DeclarationName::CXXConstructorName:
859 case DeclarationName::CXXDestructorName:
860 case DeclarationName::CXXConversionFunctionName:
861 Key.Data = ReadUnalignedLE32(d); // TypeID
862 break;
863 case DeclarationName::CXXOperatorName:
864 Key.Data = *d++; // OverloadedOperatorKind
865 break;
866 case DeclarationName::CXXLiteralOperatorName:
867 Key.Data = (uint64_t)Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d));
868 break;
869 case DeclarationName::CXXUsingDirective:
870 break;
871 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +0000872
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +0000873 return Key;
874 }
875
876 data_type ReadData(internal_key_type, const unsigned char* d,
877 unsigned DataLen) {
878 using namespace clang::io;
879 unsigned NumDecls = ReadUnalignedLE16(d);
880 DeclID *Start = (DeclID *)d;
881 return std::make_pair(Start, Start + NumDecls);
882 }
883};
884
885} // end anonymous namespace
886
887/// \brief The on-disk hash table used for the DeclContext's Name lookup table.
888typedef OnDiskChainedHashTable<ASTDeclContextNameLookupTrait>
889 ASTDeclContextNameLookupTable;
890
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +0000891bool ASTReader::ReadDeclContextStorage(llvm::BitstreamCursor &Cursor,
892 const std::pair<uint64_t, uint64_t> &Offsets,
893 DeclContextInfo &Info) {
894 SavedStreamPosition SavedPosition(Cursor);
895 // First the lexical decls.
896 if (Offsets.first != 0) {
897 Cursor.JumpToBit(Offsets.first);
898
899 RecordData Record;
900 const char *Blob;
901 unsigned BlobLen;
902 unsigned Code = Cursor.ReadCode();
903 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
904 if (RecCode != DECL_CONTEXT_LEXICAL) {
905 Error("Expected lexical block");
906 return true;
907 }
908
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +0000909 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob);
910 Info.NumLexicalDecls = BlobLen / sizeof(KindDeclIDPair);
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +0000911 } else {
912 Info.LexicalDecls = 0;
913 Info.NumLexicalDecls = 0;
914 }
915
916 // Now the lookup table.
917 if (Offsets.second != 0) {
918 Cursor.JumpToBit(Offsets.second);
919
920 RecordData Record;
921 const char *Blob;
922 unsigned BlobLen;
923 unsigned Code = Cursor.ReadCode();
924 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
925 if (RecCode != DECL_CONTEXT_VISIBLE) {
926 Error("Expected visible lookup table block");
927 return true;
928 }
929 Info.NameLookupTableData
930 = ASTDeclContextNameLookupTable::Create(
931 (const unsigned char *)Blob + Record[0],
932 (const unsigned char *)Blob,
933 ASTDeclContextNameLookupTrait(*this));
Sebastian Redl9d8f58b2010-08-24 00:50:00 +0000934 } else {
935 Info.NameLookupTableData = 0;
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +0000936 }
937
938 return false;
939}
940
Sebastian Redl2c499f62010-08-18 23:56:43 +0000941void ASTReader::Error(const char *Msg) {
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000942 Diag(diag::err_fe_pch_malformed) << Msg;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000943}
944
Sebastian Redld44cd6a2010-08-18 23:57:06 +0000945/// \brief Tell the AST listener about the predefines buffers in the chain.
Sebastian Redl2c499f62010-08-18 23:56:43 +0000946bool ASTReader::CheckPredefinesBuffers() {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000947 if (Listener)
Sebastian Redl75fbb3b2010-07-14 17:49:11 +0000948 return Listener->ReadPredefinesBuffer(PCHPredefinesBuffers,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000949 ActualOriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000950 SuggestedPredefines);
Douglas Gregorc379c072009-04-28 18:58:38 +0000951 return false;
Douglas Gregor92863e42009-04-10 23:10:45 +0000952}
953
Douglas Gregorc5046832009-04-27 18:38:38 +0000954//===----------------------------------------------------------------------===//
955// Source Manager Deserialization
956//===----------------------------------------------------------------------===//
957
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000958/// \brief Read the line table in the source manager block.
Sebastian Redl2c373b92010-10-05 15:59:54 +0000959/// \returns true if there was an error.
960bool ASTReader::ParseLineTable(PerFileData &F,
961 llvm::SmallVectorImpl<uint64_t> &Record) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000962 unsigned Idx = 0;
963 LineTableInfo &LineTable = SourceMgr.getLineTable();
964
965 // Parse the file names
Douglas Gregora8854652009-04-13 17:12:42 +0000966 std::map<int, int> FileIDs;
967 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000968 // Extract the file name
969 unsigned FilenameLen = Record[Idx++];
970 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
971 Idx += FilenameLen;
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000972 MaybeAddSystemRootToFilename(Filename);
Mike Stump11289f42009-09-09 15:08:12 +0000973 FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(),
Douglas Gregora8854652009-04-13 17:12:42 +0000974 Filename.size());
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000975 }
976
977 // Parse the line entries
978 std::vector<LineEntry> Entries;
979 while (Idx < Record.size()) {
Argyrios Kyrtzidise3029a72010-07-02 11:55:05 +0000980 int FID = Record[Idx++];
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000981
982 // Extract the line entries
983 unsigned NumEntries = Record[Idx++];
Argyrios Kyrtzidise3029a72010-07-02 11:55:05 +0000984 assert(NumEntries && "Numentries is 00000");
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000985 Entries.clear();
986 Entries.reserve(NumEntries);
987 for (unsigned I = 0; I != NumEntries; ++I) {
988 unsigned FileOffset = Record[Idx++];
989 unsigned LineNo = Record[Idx++];
Argyrios Kyrtzidise3029a72010-07-02 11:55:05 +0000990 int FilenameID = FileIDs[Record[Idx++]];
Mike Stump11289f42009-09-09 15:08:12 +0000991 SrcMgr::CharacteristicKind FileKind
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000992 = (SrcMgr::CharacteristicKind)Record[Idx++];
993 unsigned IncludeOffset = Record[Idx++];
994 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
995 FileKind, IncludeOffset));
996 }
997 LineTable.AddEntry(FID, Entries);
998 }
999
1000 return false;
1001}
1002
Douglas Gregorc5046832009-04-27 18:38:38 +00001003namespace {
1004
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001005class ASTStatData {
Douglas Gregorc5046832009-04-27 18:38:38 +00001006public:
1007 const bool hasStat;
1008 const ino_t ino;
1009 const dev_t dev;
1010 const mode_t mode;
1011 const time_t mtime;
1012 const off_t size;
Mike Stump11289f42009-09-09 15:08:12 +00001013
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001014 ASTStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Mike Stump11289f42009-09-09 15:08:12 +00001015 : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {}
1016
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001017 ASTStatData()
Douglas Gregorc5046832009-04-27 18:38:38 +00001018 : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {}
1019};
1020
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001021class ASTStatLookupTrait {
Douglas Gregorc5046832009-04-27 18:38:38 +00001022 public:
1023 typedef const char *external_key_type;
1024 typedef const char *internal_key_type;
1025
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001026 typedef ASTStatData data_type;
Douglas Gregorc5046832009-04-27 18:38:38 +00001027
1028 static unsigned ComputeHash(const char *path) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +00001029 return llvm::HashString(path);
Douglas Gregorc5046832009-04-27 18:38:38 +00001030 }
1031
1032 static internal_key_type GetInternalKey(const char *path) { return path; }
1033
1034 static bool EqualKey(internal_key_type a, internal_key_type b) {
1035 return strcmp(a, b) == 0;
1036 }
1037
1038 static std::pair<unsigned, unsigned>
1039 ReadKeyDataLength(const unsigned char*& d) {
1040 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
1041 unsigned DataLen = (unsigned) *d++;
1042 return std::make_pair(KeyLen + 1, DataLen);
1043 }
1044
1045 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
1046 return (const char *)d;
1047 }
1048
1049 static data_type ReadData(const internal_key_type, const unsigned char *d,
1050 unsigned /*DataLen*/) {
1051 using namespace clang::io;
1052
1053 if (*d++ == 1)
1054 return data_type();
1055
1056 ino_t ino = (ino_t) ReadUnalignedLE32(d);
1057 dev_t dev = (dev_t) ReadUnalignedLE32(d);
1058 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +00001059 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregorc5046832009-04-27 18:38:38 +00001060 off_t size = (off_t) ReadUnalignedLE64(d);
1061 return data_type(ino, dev, mode, mtime, size);
1062 }
1063};
1064
1065/// \brief stat() cache for precompiled headers.
1066///
1067/// This cache is very similar to the stat cache used by pretokenized
1068/// headers.
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001069class ASTStatCache : public StatSysCallCache {
1070 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
Douglas Gregorc5046832009-04-27 18:38:38 +00001071 CacheTy *Cache;
1072
1073 unsigned &NumStatHits, &NumStatMisses;
Mike Stump11289f42009-09-09 15:08:12 +00001074public:
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001075 ASTStatCache(const unsigned char *Buckets,
Douglas Gregorc5046832009-04-27 18:38:38 +00001076 const unsigned char *Base,
1077 unsigned &NumStatHits,
Mike Stump11289f42009-09-09 15:08:12 +00001078 unsigned &NumStatMisses)
Douglas Gregorc5046832009-04-27 18:38:38 +00001079 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
1080 Cache = CacheTy::Create(Buckets, Base);
1081 }
1082
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001083 ~ASTStatCache() { delete Cache; }
Mike Stump11289f42009-09-09 15:08:12 +00001084
Douglas Gregorc5046832009-04-27 18:38:38 +00001085 int stat(const char *path, struct stat *buf) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001086 // Do the lookup for the file's data in the AST file.
Douglas Gregorc5046832009-04-27 18:38:38 +00001087 CacheTy::iterator I = Cache->find(path);
1088
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001089 // If we don't get a hit in the AST file just forward to 'stat'.
Douglas Gregorc5046832009-04-27 18:38:38 +00001090 if (I == Cache->end()) {
1091 ++NumStatMisses;
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001092 return StatSysCallCache::stat(path, buf);
Douglas Gregorc5046832009-04-27 18:38:38 +00001093 }
Mike Stump11289f42009-09-09 15:08:12 +00001094
Douglas Gregorc5046832009-04-27 18:38:38 +00001095 ++NumStatHits;
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001096 ASTStatData Data = *I;
Mike Stump11289f42009-09-09 15:08:12 +00001097
Douglas Gregorc5046832009-04-27 18:38:38 +00001098 if (!Data.hasStat)
1099 return 1;
1100
1101 buf->st_ino = Data.ino;
1102 buf->st_dev = Data.dev;
1103 buf->st_mtime = Data.mtime;
1104 buf->st_mode = Data.mode;
1105 buf->st_size = Data.size;
1106 return 0;
1107 }
1108};
1109} // end anonymous namespace
1110
1111
Sebastian Redl393f8b72010-07-19 20:52:06 +00001112/// \brief Read a source manager block
Sebastian Redl2c499f62010-08-18 23:56:43 +00001113ASTReader::ASTReadResult ASTReader::ReadSourceManagerBlock(PerFileData &F) {
Douglas Gregora7f71a92009-04-10 03:52:48 +00001114 using namespace SrcMgr;
Douglas Gregor258ae542009-04-27 06:38:32 +00001115
Sebastian Redl393f8b72010-07-19 20:52:06 +00001116 llvm::BitstreamCursor &SLocEntryCursor = F.SLocEntryCursor;
Sebastian Redl34522812010-07-16 17:50:48 +00001117
Douglas Gregor258ae542009-04-27 06:38:32 +00001118 // Set the source-location entry cursor to the current position in
1119 // the stream. This cursor will be used to read the contents of the
1120 // source manager block initially, and then lazily read
1121 // source-location entries as needed.
Sebastian Redl393f8b72010-07-19 20:52:06 +00001122 SLocEntryCursor = F.Stream;
Douglas Gregor258ae542009-04-27 06:38:32 +00001123
1124 // The stream itself is going to skip over the source manager block.
Sebastian Redl393f8b72010-07-19 20:52:06 +00001125 if (F.Stream.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001126 Error("malformed block record in AST file");
Douglas Gregor258ae542009-04-27 06:38:32 +00001127 return Failure;
1128 }
1129
1130 // Enter the source manager block.
Sebastian Redl539c5062010-08-18 23:57:32 +00001131 if (SLocEntryCursor.EnterSubBlock(SOURCE_MANAGER_BLOCK_ID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001132 Error("malformed source manager block record in AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001133 return Failure;
1134 }
Douglas Gregora7f71a92009-04-10 03:52:48 +00001135
Douglas Gregora7f71a92009-04-10 03:52:48 +00001136 RecordData Record;
1137 while (true) {
Douglas Gregor258ae542009-04-27 06:38:32 +00001138 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregora7f71a92009-04-10 03:52:48 +00001139 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor258ae542009-04-27 06:38:32 +00001140 if (SLocEntryCursor.ReadBlockEnd()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001141 Error("error at end of Source Manager block in AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001142 return Failure;
1143 }
Douglas Gregor92863e42009-04-10 23:10:45 +00001144 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +00001145 }
Mike Stump11289f42009-09-09 15:08:12 +00001146
Douglas Gregora7f71a92009-04-10 03:52:48 +00001147 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1148 // No known subblocks, always skip them.
Douglas Gregor258ae542009-04-27 06:38:32 +00001149 SLocEntryCursor.ReadSubBlockID();
1150 if (SLocEntryCursor.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001151 Error("malformed block record in AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001152 return Failure;
1153 }
Douglas Gregora7f71a92009-04-10 03:52:48 +00001154 continue;
1155 }
Mike Stump11289f42009-09-09 15:08:12 +00001156
Douglas Gregora7f71a92009-04-10 03:52:48 +00001157 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor258ae542009-04-27 06:38:32 +00001158 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregora7f71a92009-04-10 03:52:48 +00001159 continue;
1160 }
Mike Stump11289f42009-09-09 15:08:12 +00001161
Douglas Gregora7f71a92009-04-10 03:52:48 +00001162 // Read a record.
1163 const char *BlobStart;
1164 unsigned BlobLen;
1165 Record.clear();
Douglas Gregor258ae542009-04-27 06:38:32 +00001166 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregora7f71a92009-04-10 03:52:48 +00001167 default: // Default behavior: ignore.
1168 break;
1169
Sebastian Redl539c5062010-08-18 23:57:32 +00001170 case SM_LINE_TABLE:
Sebastian Redl2c373b92010-10-05 15:59:54 +00001171 if (ParseLineTable(F, Record))
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001172 return Failure;
Chris Lattner184e65d2009-04-14 23:22:57 +00001173 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +00001174
Sebastian Redl539c5062010-08-18 23:57:32 +00001175 case SM_SLOC_FILE_ENTRY:
1176 case SM_SLOC_BUFFER_ENTRY:
1177 case SM_SLOC_INSTANTIATION_ENTRY:
Douglas Gregor258ae542009-04-27 06:38:32 +00001178 // Once we hit one of the source location entries, we're done.
1179 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +00001180 }
1181 }
1182}
1183
Sebastian Redl06750302010-07-20 21:50:20 +00001184/// \brief Get a cursor that's correctly positioned for reading the source
1185/// location entry with the given ID.
Sebastian Redl2c373b92010-10-05 15:59:54 +00001186ASTReader::PerFileData *ASTReader::SLocCursorForID(unsigned ID) {
Sebastian Redl06750302010-07-20 21:50:20 +00001187 assert(ID != 0 && ID <= TotalNumSLocEntries &&
1188 "SLocCursorForID should only be called for real IDs.");
1189
1190 ID -= 1;
1191 PerFileData *F = 0;
1192 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
1193 F = Chain[N - I - 1];
1194 if (ID < F->LocalNumSLocEntries)
1195 break;
1196 ID -= F->LocalNumSLocEntries;
1197 }
1198 assert(F && F->LocalNumSLocEntries > ID && "Chain corrupted");
1199
1200 F->SLocEntryCursor.JumpToBit(F->SLocOffsets[ID]);
Sebastian Redl2c373b92010-10-05 15:59:54 +00001201 return F;
Sebastian Redl06750302010-07-20 21:50:20 +00001202}
1203
Douglas Gregor258ae542009-04-27 06:38:32 +00001204/// \brief Read in the source location entry with the given ID.
Sebastian Redl2c499f62010-08-18 23:56:43 +00001205ASTReader::ASTReadResult ASTReader::ReadSLocEntryRecord(unsigned ID) {
Douglas Gregor258ae542009-04-27 06:38:32 +00001206 if (ID == 0)
1207 return Success;
1208
1209 if (ID > TotalNumSLocEntries) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001210 Error("source location entry ID out-of-range for AST file");
Douglas Gregor258ae542009-04-27 06:38:32 +00001211 return Failure;
1212 }
1213
Sebastian Redl2c373b92010-10-05 15:59:54 +00001214 PerFileData *F = SLocCursorForID(ID);
1215 llvm::BitstreamCursor &SLocEntryCursor = F->SLocEntryCursor;
Sebastian Redl34522812010-07-16 17:50:48 +00001216
Douglas Gregor258ae542009-04-27 06:38:32 +00001217 ++NumSLocEntriesRead;
Douglas Gregor258ae542009-04-27 06:38:32 +00001218 unsigned Code = SLocEntryCursor.ReadCode();
1219 if (Code == llvm::bitc::END_BLOCK ||
1220 Code == llvm::bitc::ENTER_SUBBLOCK ||
1221 Code == llvm::bitc::DEFINE_ABBREV) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001222 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor258ae542009-04-27 06:38:32 +00001223 return Failure;
1224 }
1225
Douglas Gregor258ae542009-04-27 06:38:32 +00001226 RecordData Record;
1227 const char *BlobStart;
1228 unsigned BlobLen;
1229 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1230 default:
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001231 Error("incorrectly-formatted source location entry in AST file");
Douglas Gregor258ae542009-04-27 06:38:32 +00001232 return Failure;
1233
Sebastian Redl539c5062010-08-18 23:57:32 +00001234 case SM_SLOC_FILE_ENTRY: {
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001235 std::string Filename(BlobStart, BlobStart + BlobLen);
1236 MaybeAddSystemRootToFilename(Filename);
1237 const FileEntry *File = FileMgr.getFile(Filename);
Chris Lattnerd20dc872009-06-15 04:35:16 +00001238 if (File == 0) {
1239 std::string ErrorStr = "could not find file '";
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001240 ErrorStr += Filename;
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001241 ErrorStr += "' referenced by AST file";
Chris Lattnerd20dc872009-06-15 04:35:16 +00001242 Error(ErrorStr.c_str());
1243 return Failure;
1244 }
Mike Stump11289f42009-09-09 15:08:12 +00001245
Douglas Gregorb41ca8f2010-03-21 22:49:54 +00001246 if (Record.size() < 10) {
Ted Kremenekabb1ddd2010-03-18 21:23:05 +00001247 Error("source location entry is incorrect");
1248 return Failure;
1249 }
1250
Douglas Gregorce3a8292010-07-27 00:27:13 +00001251 if (!DisableValidation &&
1252 ((off_t)Record[4] != File->getSize()
Douglas Gregor08288f22010-04-09 15:54:22 +00001253#if !defined(LLVM_ON_WIN32)
1254 // In our regression testing, the Windows file system seems to
1255 // have inconsistent modification times that sometimes
1256 // erroneously trigger this error-handling path.
Douglas Gregorce3a8292010-07-27 00:27:13 +00001257 || (time_t)Record[5] != File->getModificationTime()
Douglas Gregor08288f22010-04-09 15:54:22 +00001258#endif
Douglas Gregorce3a8292010-07-27 00:27:13 +00001259 )) {
Douglas Gregorb41ca8f2010-03-21 22:49:54 +00001260 Diag(diag::err_fe_pch_file_modified)
1261 << Filename;
1262 return Failure;
1263 }
1264
Douglas Gregor258ae542009-04-27 06:38:32 +00001265 FileID FID = SourceMgr.createFileID(File,
Sebastian Redl2c373b92010-10-05 15:59:54 +00001266 ReadSourceLocation(*F, Record[1]),
Douglas Gregor258ae542009-04-27 06:38:32 +00001267 (SrcMgr::CharacteristicKind)Record[2],
1268 ID, Record[0]);
1269 if (Record[3])
1270 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile())
1271 .setHasLineDirectives();
1272
Douglas Gregor5712ebc2010-03-16 16:35:32 +00001273 // Reconstruct header-search information for this file.
1274 HeaderFileInfo HFI;
Douglas Gregorb41ca8f2010-03-21 22:49:54 +00001275 HFI.isImport = Record[6];
1276 HFI.DirInfo = Record[7];
1277 HFI.NumIncludes = Record[8];
1278 HFI.ControllingMacroID = Record[9];
Douglas Gregor5712ebc2010-03-16 16:35:32 +00001279 if (Listener)
1280 Listener->ReadHeaderFileInfo(HFI, File->getUID());
Douglas Gregor258ae542009-04-27 06:38:32 +00001281 break;
1282 }
1283
Sebastian Redl539c5062010-08-18 23:57:32 +00001284 case SM_SLOC_BUFFER_ENTRY: {
Douglas Gregor258ae542009-04-27 06:38:32 +00001285 const char *Name = BlobStart;
1286 unsigned Offset = Record[0];
1287 unsigned Code = SLocEntryCursor.ReadCode();
1288 Record.clear();
Mike Stump11289f42009-09-09 15:08:12 +00001289 unsigned RecCode
Douglas Gregor258ae542009-04-27 06:38:32 +00001290 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001291
Sebastian Redl539c5062010-08-18 23:57:32 +00001292 if (RecCode != SM_SLOC_BUFFER_BLOB) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001293 Error("AST record has invalid code");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001294 return Failure;
1295 }
1296
Douglas Gregor258ae542009-04-27 06:38:32 +00001297 llvm::MemoryBuffer *Buffer
Chris Lattner58c79342010-04-05 22:42:27 +00001298 = llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(BlobStart, BlobLen - 1),
1299 Name);
Douglas Gregor258ae542009-04-27 06:38:32 +00001300 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset);
Mike Stump11289f42009-09-09 15:08:12 +00001301
Douglas Gregore6648fb2009-04-28 20:33:11 +00001302 if (strcmp(Name, "<built-in>") == 0) {
Sebastian Redl75fbb3b2010-07-14 17:49:11 +00001303 PCHPredefinesBlock Block = {
1304 BufferID,
1305 llvm::StringRef(BlobStart, BlobLen - 1)
1306 };
1307 PCHPredefinesBuffers.push_back(Block);
Douglas Gregore6648fb2009-04-28 20:33:11 +00001308 }
Douglas Gregor258ae542009-04-27 06:38:32 +00001309
1310 break;
1311 }
1312
Sebastian Redl539c5062010-08-18 23:57:32 +00001313 case SM_SLOC_INSTANTIATION_ENTRY: {
Sebastian Redl2c373b92010-10-05 15:59:54 +00001314 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
Douglas Gregor258ae542009-04-27 06:38:32 +00001315 SourceMgr.createInstantiationLoc(SpellingLoc,
Sebastian Redl2c373b92010-10-05 15:59:54 +00001316 ReadSourceLocation(*F, Record[2]),
1317 ReadSourceLocation(*F, Record[3]),
Douglas Gregor258ae542009-04-27 06:38:32 +00001318 Record[4],
1319 ID,
1320 Record[0]);
1321 break;
Mike Stump11289f42009-09-09 15:08:12 +00001322 }
Douglas Gregor258ae542009-04-27 06:38:32 +00001323 }
1324
1325 return Success;
1326}
1327
Chris Lattnere78a6be2009-04-27 01:05:14 +00001328/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1329/// specified cursor. Read the abbreviations that are at the top of the block
1330/// and then leave the cursor pointing into the block.
Sebastian Redl2c499f62010-08-18 23:56:43 +00001331bool ASTReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
Chris Lattnere78a6be2009-04-27 01:05:14 +00001332 unsigned BlockID) {
1333 if (Cursor.EnterSubBlock(BlockID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001334 Error("malformed block record in AST file");
Chris Lattnere78a6be2009-04-27 01:05:14 +00001335 return Failure;
1336 }
Mike Stump11289f42009-09-09 15:08:12 +00001337
Chris Lattnere78a6be2009-04-27 01:05:14 +00001338 while (true) {
Douglas Gregor796d76a2010-10-20 22:00:55 +00001339 uint64_t Offset = Cursor.GetCurrentBitNo();
Chris Lattnere78a6be2009-04-27 01:05:14 +00001340 unsigned Code = Cursor.ReadCode();
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001341
Chris Lattnere78a6be2009-04-27 01:05:14 +00001342 // We expect all abbrevs to be at the start of the block.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001343 if (Code != llvm::bitc::DEFINE_ABBREV) {
1344 Cursor.JumpToBit(Offset);
Chris Lattnere78a6be2009-04-27 01:05:14 +00001345 return false;
Douglas Gregor796d76a2010-10-20 22:00:55 +00001346 }
Chris Lattnere78a6be2009-04-27 01:05:14 +00001347 Cursor.ReadAbbrevRecord();
1348 }
1349}
1350
Sebastian Redl2c373b92010-10-05 15:59:54 +00001351void ASTReader::ReadMacroRecord(PerFileData &F, uint64_t Offset) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001352 assert(PP && "Forgot to set Preprocessor ?");
Douglas Gregor796d76a2010-10-20 22:00:55 +00001353 llvm::BitstreamCursor &Stream = F.MacroCursor;
Mike Stump11289f42009-09-09 15:08:12 +00001354
Douglas Gregorc3366a52009-04-21 23:56:24 +00001355 // Keep track of where we are in the stream, then jump back there
1356 // after reading this macro.
1357 SavedStreamPosition SavedPosition(Stream);
1358
1359 Stream.JumpToBit(Offset);
1360 RecordData Record;
1361 llvm::SmallVector<IdentifierInfo*, 16> MacroArgs;
1362 MacroInfo *Macro = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001363
Douglas Gregorc3366a52009-04-21 23:56:24 +00001364 while (true) {
1365 unsigned Code = Stream.ReadCode();
1366 switch (Code) {
1367 case llvm::bitc::END_BLOCK:
1368 return;
1369
1370 case llvm::bitc::ENTER_SUBBLOCK:
1371 // No known subblocks, always skip them.
1372 Stream.ReadSubBlockID();
1373 if (Stream.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001374 Error("malformed block record in AST file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001375 return;
1376 }
1377 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001378
Douglas Gregorc3366a52009-04-21 23:56:24 +00001379 case llvm::bitc::DEFINE_ABBREV:
1380 Stream.ReadAbbrevRecord();
1381 continue;
1382 default: break;
1383 }
1384
1385 // Read a record.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001386 const char *BlobStart = 0;
1387 unsigned BlobLen = 0;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001388 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001389 PreprocessorRecordTypes RecType =
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001390 (PreprocessorRecordTypes)Stream.ReadRecord(Code, Record, BlobStart,
Douglas Gregor796d76a2010-10-20 22:00:55 +00001391 BlobLen);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001392 switch (RecType) {
Sebastian Redl539c5062010-08-18 23:57:32 +00001393 case PP_MACRO_OBJECT_LIKE:
1394 case PP_MACRO_FUNCTION_LIKE: {
Douglas Gregorc3366a52009-04-21 23:56:24 +00001395 // If we already have a macro, that means that we've hit the end
1396 // of the definition of the macro we were looking for. We're
1397 // done.
1398 if (Macro)
1399 return;
1400
1401 IdentifierInfo *II = DecodeIdentifierInfo(Record[0]);
1402 if (II == 0) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001403 Error("macro must have a name in AST file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001404 return;
1405 }
Sebastian Redl2c373b92010-10-05 15:59:54 +00001406 SourceLocation Loc = ReadSourceLocation(F, Record[1]);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001407 bool isUsed = Record[2];
Mike Stump11289f42009-09-09 15:08:12 +00001408
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001409 MacroInfo *MI = PP->AllocateMacroInfo(Loc);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001410 MI->setIsUsed(isUsed);
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001411 MI->setIsFromAST();
Mike Stump11289f42009-09-09 15:08:12 +00001412
Douglas Gregoraae92242010-03-19 21:51:54 +00001413 unsigned NextIndex = 3;
Sebastian Redl539c5062010-08-18 23:57:32 +00001414 if (RecType == PP_MACRO_FUNCTION_LIKE) {
Douglas Gregorc3366a52009-04-21 23:56:24 +00001415 // Decode function-like macro info.
1416 bool isC99VarArgs = Record[3];
1417 bool isGNUVarArgs = Record[4];
1418 MacroArgs.clear();
1419 unsigned NumArgs = Record[5];
Douglas Gregoraae92242010-03-19 21:51:54 +00001420 NextIndex = 6 + NumArgs;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001421 for (unsigned i = 0; i != NumArgs; ++i)
1422 MacroArgs.push_back(DecodeIdentifierInfo(Record[6+i]));
1423
1424 // Install function-like macro info.
1425 MI->setIsFunctionLike();
1426 if (isC99VarArgs) MI->setIsC99Varargs();
1427 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor038c3382009-05-22 22:45:36 +00001428 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001429 PP->getPreprocessorAllocator());
Douglas Gregorc3366a52009-04-21 23:56:24 +00001430 }
1431
1432 // Finally, install the macro.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001433 PP->setMacroInfo(II, MI);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001434
1435 // Remember that we saw this macro last so that we add the tokens that
1436 // form its body to it.
1437 Macro = MI;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001438
Douglas Gregoraae92242010-03-19 21:51:54 +00001439 if (NextIndex + 1 == Record.size() && PP->getPreprocessingRecord()) {
1440 // We have a macro definition. Load it now.
1441 PP->getPreprocessingRecord()->RegisterMacroDefinition(Macro,
1442 getMacroDefinition(Record[NextIndex]));
1443 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001444
Douglas Gregorc3366a52009-04-21 23:56:24 +00001445 ++NumMacrosRead;
1446 break;
1447 }
Mike Stump11289f42009-09-09 15:08:12 +00001448
Sebastian Redl539c5062010-08-18 23:57:32 +00001449 case PP_TOKEN: {
Douglas Gregorc3366a52009-04-21 23:56:24 +00001450 // If we see a TOKEN before a PP_MACRO_*, then the file is
1451 // erroneous, just pretend we didn't see this.
1452 if (Macro == 0) break;
Mike Stump11289f42009-09-09 15:08:12 +00001453
Douglas Gregorc3366a52009-04-21 23:56:24 +00001454 Token Tok;
1455 Tok.startToken();
Sebastian Redl2c373b92010-10-05 15:59:54 +00001456 Tok.setLocation(ReadSourceLocation(F, Record[0]));
Douglas Gregorc3366a52009-04-21 23:56:24 +00001457 Tok.setLength(Record[1]);
1458 if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2]))
1459 Tok.setIdentifierInfo(II);
1460 Tok.setKind((tok::TokenKind)Record[3]);
1461 Tok.setFlag((Token::TokenFlags)Record[4]);
1462 Macro->AddTokenToBody(Tok);
1463 break;
1464 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001465
Sebastian Redl539c5062010-08-18 23:57:32 +00001466 case PP_MACRO_INSTANTIATION: {
Douglas Gregoraae92242010-03-19 21:51:54 +00001467 // If we already have a macro, that means that we've hit the end
1468 // of the definition of the macro we were looking for. We're
1469 // done.
1470 if (Macro)
1471 return;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001472
Douglas Gregoraae92242010-03-19 21:51:54 +00001473 if (!PP->getPreprocessingRecord()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001474 Error("missing preprocessing record in AST file");
Douglas Gregoraae92242010-03-19 21:51:54 +00001475 return;
1476 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001477
Douglas Gregoraae92242010-03-19 21:51:54 +00001478 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1479 if (PPRec.getPreprocessedEntity(Record[0]))
1480 return;
1481
1482 MacroInstantiation *MI
1483 = new (PPRec) MacroInstantiation(DecodeIdentifierInfo(Record[3]),
Sebastian Redl2c373b92010-10-05 15:59:54 +00001484 SourceRange(ReadSourceLocation(F, Record[1]),
1485 ReadSourceLocation(F, Record[2])),
Douglas Gregoraae92242010-03-19 21:51:54 +00001486 getMacroDefinition(Record[4]));
1487 PPRec.SetPreallocatedEntity(Record[0], MI);
1488 return;
1489 }
1490
Sebastian Redl539c5062010-08-18 23:57:32 +00001491 case PP_MACRO_DEFINITION: {
Douglas Gregoraae92242010-03-19 21:51:54 +00001492 // If we already have a macro, that means that we've hit the end
1493 // of the definition of the macro we were looking for. We're
1494 // done.
1495 if (Macro)
1496 return;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001497
Douglas Gregoraae92242010-03-19 21:51:54 +00001498 if (!PP->getPreprocessingRecord()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001499 Error("missing preprocessing record in AST file");
Douglas Gregoraae92242010-03-19 21:51:54 +00001500 return;
1501 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001502
Douglas Gregoraae92242010-03-19 21:51:54 +00001503 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1504 if (PPRec.getPreprocessedEntity(Record[0]))
1505 return;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001506
Douglas Gregor91096292010-10-02 19:29:26 +00001507 if (Record[1] > MacroDefinitionsLoaded.size()) {
Douglas Gregoraae92242010-03-19 21:51:54 +00001508 Error("out-of-bounds macro definition record");
1509 return;
1510 }
1511
Douglas Gregor91096292010-10-02 19:29:26 +00001512 // Decode the identifier info and then check again; if the macro is
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001513 // still defined and associated with the identifier,
Douglas Gregor91096292010-10-02 19:29:26 +00001514 IdentifierInfo *II = DecodeIdentifierInfo(Record[4]);
1515 if (!MacroDefinitionsLoaded[Record[1] - 1]) {
1516 MacroDefinition *MD
1517 = new (PPRec) MacroDefinition(II,
Sebastian Redl2c373b92010-10-05 15:59:54 +00001518 ReadSourceLocation(F, Record[5]),
Douglas Gregor36ea4d42010-10-01 20:33:34 +00001519 SourceRange(
Sebastian Redl2c373b92010-10-05 15:59:54 +00001520 ReadSourceLocation(F, Record[2]),
1521 ReadSourceLocation(F, Record[3])));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001522
Douglas Gregor91096292010-10-02 19:29:26 +00001523 PPRec.SetPreallocatedEntity(Record[0], MD);
1524 MacroDefinitionsLoaded[Record[1] - 1] = MD;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001525
Douglas Gregor91096292010-10-02 19:29:26 +00001526 if (DeserializationListener)
1527 DeserializationListener->MacroDefinitionRead(Record[1], MD);
1528 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001529
Douglas Gregoraae92242010-03-19 21:51:54 +00001530 return;
1531 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001532
Douglas Gregor796d76a2010-10-20 22:00:55 +00001533 case PP_INCLUSION_DIRECTIVE: {
1534 // If we already have a macro, that means that we've hit the end
1535 // of the definition of the macro we were looking for. We're
1536 // done.
1537 if (Macro)
1538 return;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001539
Douglas Gregor796d76a2010-10-20 22:00:55 +00001540 if (!PP->getPreprocessingRecord()) {
1541 Error("missing preprocessing record in AST file");
1542 return;
1543 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001544
Douglas Gregor796d76a2010-10-20 22:00:55 +00001545 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1546 if (PPRec.getPreprocessedEntity(Record[0]))
1547 return;
1548
1549 const char *FullFileNameStart = BlobStart + Record[3];
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001550 const FileEntry *File
Douglas Gregor796d76a2010-10-20 22:00:55 +00001551 = PP->getFileManager().getFile(FullFileNameStart,
1552 FullFileNameStart + (BlobLen - Record[3]));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001553
Douglas Gregor796d76a2010-10-20 22:00:55 +00001554 // FIXME: Stable encoding
1555 InclusionDirective::InclusionKind Kind
1556 = static_cast<InclusionDirective::InclusionKind>(Record[5]);
1557 InclusionDirective *ID
1558 = new (PPRec) InclusionDirective(Kind,
1559 llvm::StringRef(BlobStart, Record[3]),
1560 Record[4],
1561 File,
1562 SourceRange(ReadSourceLocation(F, Record[1]),
1563 ReadSourceLocation(F, Record[2])));
1564 PPRec.SetPreallocatedEntity(Record[0], ID);
1565 return;
1566 }
Sebastian Redl9609b4f2010-09-27 22:18:47 +00001567 }
Douglas Gregorc3366a52009-04-21 23:56:24 +00001568 }
1569}
1570
Sebastian Redl2c499f62010-08-18 23:56:43 +00001571void ASTReader::ReadDefinedMacros() {
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001572 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00001573 PerFileData &F = *Chain[N - I - 1];
1574 llvm::BitstreamCursor &MacroCursor = F.MacroCursor;
Sebastian Redl34522812010-07-16 17:50:48 +00001575
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001576 // If there was no preprocessor block, skip this file.
1577 if (!MacroCursor.getBitStreamReader())
1578 continue;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001579
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001580 llvm::BitstreamCursor Cursor = MacroCursor;
Douglas Gregor796d76a2010-10-20 22:00:55 +00001581 Cursor.JumpToBit(F.MacroStartOffset);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001582
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001583 RecordData Record;
1584 while (true) {
Sebastian Redl4102dd52010-09-28 02:55:49 +00001585 uint64_t Offset = Cursor.GetCurrentBitNo();
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001586 unsigned Code = Cursor.ReadCode();
Douglas Gregor796d76a2010-10-20 22:00:55 +00001587 if (Code == llvm::bitc::END_BLOCK)
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001588 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001589
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001590 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1591 // No known subblocks, always skip them.
1592 Cursor.ReadSubBlockID();
1593 if (Cursor.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001594 Error("malformed block record in AST file");
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001595 return;
1596 }
1597 continue;
1598 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001599
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001600 if (Code == llvm::bitc::DEFINE_ABBREV) {
1601 Cursor.ReadAbbrevRecord();
1602 continue;
1603 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001604
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001605 // Read a record.
1606 const char *BlobStart;
1607 unsigned BlobLen;
1608 Record.clear();
1609 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1610 default: // Default behavior: ignore.
1611 break;
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001612
Sebastian Redl539c5062010-08-18 23:57:32 +00001613 case PP_MACRO_OBJECT_LIKE:
1614 case PP_MACRO_FUNCTION_LIKE:
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001615 DecodeIdentifierInfo(Record[0]);
1616 break;
1617
Sebastian Redl539c5062010-08-18 23:57:32 +00001618 case PP_TOKEN:
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001619 // Ignore tokens.
1620 break;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001621
Sebastian Redl539c5062010-08-18 23:57:32 +00001622 case PP_MACRO_INSTANTIATION:
1623 case PP_MACRO_DEFINITION:
Douglas Gregor796d76a2010-10-20 22:00:55 +00001624 case PP_INCLUSION_DIRECTIVE:
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001625 // Read the macro record.
Sebastian Redl4102dd52010-09-28 02:55:49 +00001626 // FIXME: That's a stupid way to do this. We should reuse this cursor.
Sebastian Redl2c373b92010-10-05 15:59:54 +00001627 ReadMacroRecord(F, Offset);
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001628 break;
1629 }
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001630 }
1631 }
1632}
1633
Sebastian Redl50e26582010-09-15 19:54:06 +00001634MacroDefinition *ASTReader::getMacroDefinition(MacroID ID) {
Douglas Gregor91096292010-10-02 19:29:26 +00001635 if (ID == 0 || ID > MacroDefinitionsLoaded.size())
Douglas Gregoraae92242010-03-19 21:51:54 +00001636 return 0;
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001637
Douglas Gregor91096292010-10-02 19:29:26 +00001638 if (!MacroDefinitionsLoaded[ID - 1]) {
1639 unsigned Index = ID - 1;
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001640 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
1641 PerFileData &F = *Chain[N - I - 1];
1642 if (Index < F.LocalNumMacroDefinitions) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00001643 ReadMacroRecord(F, F.MacroDefinitionOffsets[Index]);
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001644 break;
1645 }
1646 Index -= F.LocalNumMacroDefinitions;
1647 }
Douglas Gregor91096292010-10-02 19:29:26 +00001648 assert(MacroDefinitionsLoaded[ID - 1] && "Broken chain");
Sebastian Redl4e6c5672010-07-21 22:31:37 +00001649 }
1650
Douglas Gregor91096292010-10-02 19:29:26 +00001651 return MacroDefinitionsLoaded[ID - 1];
Douglas Gregoraae92242010-03-19 21:51:54 +00001652}
1653
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001654/// \brief If we are loading a relocatable PCH file, and the filename is
1655/// not an absolute path, add the system root to the beginning of the file
1656/// name.
Sebastian Redl2c499f62010-08-18 23:56:43 +00001657void ASTReader::MaybeAddSystemRootToFilename(std::string &Filename) {
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001658 // If this is not a relocatable PCH file, there's nothing to do.
1659 if (!RelocatablePCH)
1660 return;
Mike Stump11289f42009-09-09 15:08:12 +00001661
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +00001662 if (Filename.empty() || llvm::sys::Path(Filename).isAbsolute())
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001663 return;
1664
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001665 if (isysroot == 0) {
1666 // If no system root was given, default to '/'
1667 Filename.insert(Filename.begin(), '/');
1668 return;
1669 }
Mike Stump11289f42009-09-09 15:08:12 +00001670
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001671 unsigned Length = strlen(isysroot);
1672 if (isysroot[Length - 1] != '/')
1673 Filename.insert(Filename.begin(), '/');
Mike Stump11289f42009-09-09 15:08:12 +00001674
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001675 Filename.insert(Filename.begin(), isysroot, isysroot + Length);
1676}
1677
Sebastian Redl2c499f62010-08-18 23:56:43 +00001678ASTReader::ASTReadResult
Sebastian Redl3e31c722010-08-18 23:56:56 +00001679ASTReader::ReadASTBlock(PerFileData &F) {
Sebastian Redl34522812010-07-16 17:50:48 +00001680 llvm::BitstreamCursor &Stream = F.Stream;
1681
Sebastian Redl539c5062010-08-18 23:57:32 +00001682 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001683 Error("malformed block record in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001684 return Failure;
1685 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001686
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001687 // Read all of the records and blocks for the ASt file.
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001688 RecordData Record;
Sebastian Redl393f8b72010-07-19 20:52:06 +00001689 bool First = true;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001690 while (!Stream.AtEndOfStream()) {
1691 unsigned Code = Stream.ReadCode();
1692 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001693 if (Stream.ReadBlockEnd()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001694 Error("error at end of module block in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001695 return Failure;
1696 }
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001697
Douglas Gregor55abb232009-04-10 20:39:37 +00001698 return Success;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001699 }
1700
1701 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1702 switch (Stream.ReadSubBlockID()) {
Sebastian Redl539c5062010-08-18 23:57:32 +00001703 case DECLTYPES_BLOCK_ID:
Chris Lattnere78a6be2009-04-27 01:05:14 +00001704 // We lazily load the decls block, but we want to set up the
1705 // DeclsCursor cursor to point into it. Clone our current bitcode
1706 // cursor to it, enter the block and read the abbrevs in that block.
1707 // With the main cursor, we just skip over it.
Sebastian Redl34522812010-07-16 17:50:48 +00001708 F.DeclsCursor = Stream;
Chris Lattnere78a6be2009-04-27 01:05:14 +00001709 if (Stream.SkipBlock() || // Skip with the main cursor.
1710 // Read the abbrevs.
Sebastian Redl539c5062010-08-18 23:57:32 +00001711 ReadBlockAbbrevs(F.DeclsCursor, DECLTYPES_BLOCK_ID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001712 Error("malformed block record in AST file");
Chris Lattnere78a6be2009-04-27 01:05:14 +00001713 return Failure;
1714 }
1715 break;
Mike Stump11289f42009-09-09 15:08:12 +00001716
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00001717 case DECL_UPDATES_BLOCK_ID:
1718 if (Stream.SkipBlock()) {
1719 Error("malformed block record in AST file");
1720 return Failure;
1721 }
1722 break;
1723
Sebastian Redl539c5062010-08-18 23:57:32 +00001724 case PREPROCESSOR_BLOCK_ID:
Sebastian Redl34522812010-07-16 17:50:48 +00001725 F.MacroCursor = Stream;
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001726 if (PP)
1727 PP->setExternalSource(this);
1728
Douglas Gregor796d76a2010-10-20 22:00:55 +00001729 if (Stream.SkipBlock() ||
1730 ReadBlockAbbrevs(F.MacroCursor, PREPROCESSOR_BLOCK_ID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001731 Error("malformed block record in AST file");
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001732 return Failure;
1733 }
Douglas Gregor796d76a2010-10-20 22:00:55 +00001734 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo();
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001735 break;
Steve Naroff2ddea052009-04-23 10:39:46 +00001736
Sebastian Redl539c5062010-08-18 23:57:32 +00001737 case SOURCE_MANAGER_BLOCK_ID:
Sebastian Redl393f8b72010-07-19 20:52:06 +00001738 switch (ReadSourceManagerBlock(F)) {
Douglas Gregor92863e42009-04-10 23:10:45 +00001739 case Success:
1740 break;
1741
1742 case Failure:
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001743 Error("malformed source manager block in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001744 return Failure;
Douglas Gregor92863e42009-04-10 23:10:45 +00001745
1746 case IgnorePCH:
1747 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00001748 }
Douglas Gregora7f71a92009-04-10 03:52:48 +00001749 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001750 }
Sebastian Redl393f8b72010-07-19 20:52:06 +00001751 First = false;
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001752 continue;
1753 }
1754
1755 if (Code == llvm::bitc::DEFINE_ABBREV) {
1756 Stream.ReadAbbrevRecord();
1757 continue;
1758 }
1759
1760 // Read and process a record.
1761 Record.clear();
Douglas Gregorbfbde532009-04-10 21:16:55 +00001762 const char *BlobStart = 0;
1763 unsigned BlobLen = 0;
Sebastian Redl539c5062010-08-18 23:57:32 +00001764 switch ((ASTRecordTypes)Stream.ReadRecord(Code, Record,
Sebastian Redl2c373b92010-10-05 15:59:54 +00001765 &BlobStart, &BlobLen)) {
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001766 default: // Default behavior: ignore.
1767 break;
1768
Sebastian Redl539c5062010-08-18 23:57:32 +00001769 case METADATA: {
1770 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
1771 Diag(Record[0] < VERSION_MAJOR? diag::warn_pch_version_too_old
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00001772 : diag::warn_pch_version_too_new);
1773 return IgnorePCH;
1774 }
1775
1776 RelocatablePCH = Record[4];
1777 if (Listener) {
1778 std::string TargetTriple(BlobStart, BlobLen);
1779 if (Listener->ReadTargetTriple(TargetTriple))
1780 return IgnorePCH;
1781 }
1782 break;
1783 }
1784
Sebastian Redl539c5062010-08-18 23:57:32 +00001785 case CHAINED_METADATA: {
Sebastian Redl393f8b72010-07-19 20:52:06 +00001786 if (!First) {
1787 Error("CHAINED_METADATA is not first record in block");
1788 return Failure;
1789 }
Sebastian Redl539c5062010-08-18 23:57:32 +00001790 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
1791 Diag(Record[0] < VERSION_MAJOR? diag::warn_pch_version_too_old
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00001792 : diag::warn_pch_version_too_new);
1793 return IgnorePCH;
1794 }
1795
Sebastian Redl009e7f22010-10-05 16:15:19 +00001796 // Load the chained file, which is always a PCH file.
1797 switch(ReadASTCore(llvm::StringRef(BlobStart, BlobLen), PCH)) {
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00001798 case Failure: return Failure;
1799 // If we have to ignore the dependency, we'll have to ignore this too.
1800 case IgnorePCH: return IgnorePCH;
1801 case Success: break;
1802 }
1803 break;
1804 }
1805
Sebastian Redl539c5062010-08-18 23:57:32 +00001806 case TYPE_OFFSET:
Sebastian Redl9e687992010-07-19 22:06:55 +00001807 if (F.LocalNumTypes != 0) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001808 Error("duplicate TYPE_OFFSET record in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001809 return Failure;
1810 }
Sebastian Redl9e687992010-07-19 22:06:55 +00001811 F.TypeOffsets = (const uint32_t *)BlobStart;
1812 F.LocalNumTypes = Record[0];
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001813 break;
1814
Sebastian Redl539c5062010-08-18 23:57:32 +00001815 case DECL_OFFSET:
Sebastian Redl9e687992010-07-19 22:06:55 +00001816 if (F.LocalNumDecls != 0) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001817 Error("duplicate DECL_OFFSET record in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001818 return Failure;
1819 }
Sebastian Redl9e687992010-07-19 22:06:55 +00001820 F.DeclOffsets = (const uint32_t *)BlobStart;
1821 F.LocalNumDecls = Record[0];
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001822 break;
Douglas Gregor55abb232009-04-10 20:39:37 +00001823
Sebastian Redl539c5062010-08-18 23:57:32 +00001824 case TU_UPDATE_LEXICAL: {
Sebastian Redl4b1f4902010-07-27 18:24:41 +00001825 DeclContextInfo Info = {
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00001826 /* No visible information */ 0,
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00001827 reinterpret_cast<const KindDeclIDPair *>(BlobStart),
1828 BlobLen / sizeof(KindDeclIDPair)
Sebastian Redl4b1f4902010-07-27 18:24:41 +00001829 };
Douglas Gregoraa433012010-10-01 01:18:02 +00001830 DeclContextOffsets[Context ? Context->getTranslationUnitDecl() : 0]
1831 .push_back(Info);
Sebastian Redl4b1f4902010-07-27 18:24:41 +00001832 break;
1833 }
1834
Sebastian Redld7dce0a2010-08-24 00:50:04 +00001835 case UPDATE_VISIBLE: {
1836 serialization::DeclID ID = Record[0];
1837 void *Table = ASTDeclContextNameLookupTable::Create(
1838 (const unsigned char *)BlobStart + Record[1],
1839 (const unsigned char *)BlobStart,
1840 ASTDeclContextNameLookupTrait(*this));
Douglas Gregoraa433012010-10-01 01:18:02 +00001841 if (ID == 1 && Context) { // Is it the TU?
Sebastian Redld7dce0a2010-08-24 00:50:04 +00001842 DeclContextInfo Info = {
1843 Table, /* No lexical inforamtion */ 0, 0
1844 };
1845 DeclContextOffsets[Context->getTranslationUnitDecl()].push_back(Info);
1846 } else
1847 PendingVisibleUpdates[ID].push_back(Table);
1848 break;
1849 }
1850
Sebastian Redl539c5062010-08-18 23:57:32 +00001851 case REDECLS_UPDATE_LATEST: {
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00001852 assert(Record.size() % 2 == 0 && "Expected pairs of DeclIDs");
1853 for (unsigned i = 0, e = Record.size(); i < e; i += 2) {
Sebastian Redl539c5062010-08-18 23:57:32 +00001854 DeclID First = Record[i], Latest = Record[i+1];
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00001855 assert((FirstLatestDeclIDs.find(First) == FirstLatestDeclIDs.end() ||
1856 Latest > FirstLatestDeclIDs[First]) &&
1857 "The new latest is supposed to come after the previous latest");
1858 FirstLatestDeclIDs[First] = Latest;
1859 }
1860 break;
1861 }
1862
Sebastian Redl539c5062010-08-18 23:57:32 +00001863 case LANGUAGE_OPTIONS:
Douglas Gregorce3a8292010-07-27 00:27:13 +00001864 if (ParseLanguageOptions(Record) && !DisableValidation)
Douglas Gregor55abb232009-04-10 20:39:37 +00001865 return IgnorePCH;
1866 break;
Douglas Gregorbfbde532009-04-10 21:16:55 +00001867
Sebastian Redl539c5062010-08-18 23:57:32 +00001868 case IDENTIFIER_TABLE:
Sebastian Redl393f8b72010-07-19 20:52:06 +00001869 F.IdentifierTableData = BlobStart;
Douglas Gregor0e149972009-04-25 19:10:14 +00001870 if (Record[0]) {
Sebastian Redl393f8b72010-07-19 20:52:06 +00001871 F.IdentifierLookupTable
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001872 = ASTIdentifierLookupTable::Create(
Sebastian Redl393f8b72010-07-19 20:52:06 +00001873 (const unsigned char *)F.IdentifierTableData + Record[0],
1874 (const unsigned char *)F.IdentifierTableData,
Sebastian Redl2c373b92010-10-05 15:59:54 +00001875 ASTIdentifierLookupTrait(*this, F));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001876 if (PP)
1877 PP->getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor0e149972009-04-25 19:10:14 +00001878 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001879 break;
1880
Sebastian Redl539c5062010-08-18 23:57:32 +00001881 case IDENTIFIER_OFFSET:
Sebastian Redlbd1b5be2010-07-19 22:28:42 +00001882 if (F.LocalNumIdentifiers != 0) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001883 Error("duplicate IDENTIFIER_OFFSET record in AST file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001884 return Failure;
1885 }
Sebastian Redlbd1b5be2010-07-19 22:28:42 +00001886 F.IdentifierOffsets = (const uint32_t *)BlobStart;
1887 F.LocalNumIdentifiers = Record[0];
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001888 break;
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001889
Sebastian Redl539c5062010-08-18 23:57:32 +00001890 case EXTERNAL_DEFINITIONS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001891 // Optimization for the first block.
1892 if (ExternalDefinitions.empty())
1893 ExternalDefinitions.swap(Record);
1894 else
1895 ExternalDefinitions.insert(ExternalDefinitions.end(),
1896 Record.begin(), Record.end());
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001897 break;
Douglas Gregor08f01292009-04-17 22:13:46 +00001898
Sebastian Redl539c5062010-08-18 23:57:32 +00001899 case SPECIAL_TYPES:
Sebastian Redlb293a452010-07-20 21:20:32 +00001900 // Optimization for the first block
1901 if (SpecialTypes.empty())
1902 SpecialTypes.swap(Record);
1903 else
1904 SpecialTypes.insert(SpecialTypes.end(), Record.begin(), Record.end());
Douglas Gregor652d82a2009-04-18 05:55:16 +00001905 break;
1906
Sebastian Redl539c5062010-08-18 23:57:32 +00001907 case STATISTICS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001908 TotalNumStatements += Record[0];
1909 TotalNumMacros += Record[1];
1910 TotalLexicalDeclContexts += Record[2];
1911 TotalVisibleDeclContexts += Record[3];
Douglas Gregor08f01292009-04-17 22:13:46 +00001912 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001913
Sebastian Redl539c5062010-08-18 23:57:32 +00001914 case TENTATIVE_DEFINITIONS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001915 // Optimization for the first block.
1916 if (TentativeDefinitions.empty())
1917 TentativeDefinitions.swap(Record);
1918 else
1919 TentativeDefinitions.insert(TentativeDefinitions.end(),
1920 Record.begin(), Record.end());
Douglas Gregord4df8652009-04-22 22:02:47 +00001921 break;
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001922
Sebastian Redl539c5062010-08-18 23:57:32 +00001923 case UNUSED_FILESCOPED_DECLS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001924 // Optimization for the first block.
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00001925 if (UnusedFileScopedDecls.empty())
1926 UnusedFileScopedDecls.swap(Record);
Sebastian Redlb293a452010-07-20 21:20:32 +00001927 else
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00001928 UnusedFileScopedDecls.insert(UnusedFileScopedDecls.end(),
1929 Record.begin(), Record.end());
Tanya Lattner90073802010-02-12 00:07:30 +00001930 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001931
Sebastian Redl539c5062010-08-18 23:57:32 +00001932 case WEAK_UNDECLARED_IDENTIFIERS:
Sebastian Redl08aca90252010-08-05 18:21:25 +00001933 // Later blocks overwrite earlier ones.
1934 WeakUndeclaredIdentifiers.swap(Record);
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +00001935 break;
1936
Sebastian Redl539c5062010-08-18 23:57:32 +00001937 case LOCALLY_SCOPED_EXTERNAL_DECLS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001938 // Optimization for the first block.
1939 if (LocallyScopedExternalDecls.empty())
1940 LocallyScopedExternalDecls.swap(Record);
1941 else
1942 LocallyScopedExternalDecls.insert(LocallyScopedExternalDecls.end(),
1943 Record.begin(), Record.end());
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001944 break;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001945
Sebastian Redl539c5062010-08-18 23:57:32 +00001946 case SELECTOR_OFFSETS:
Sebastian Redla19a67f2010-08-03 21:58:15 +00001947 F.SelectorOffsets = (const uint32_t *)BlobStart;
Sebastian Redlada023c2010-08-04 20:40:17 +00001948 F.LocalNumSelectors = Record[0];
Douglas Gregor95c13f52009-04-25 17:48:32 +00001949 break;
1950
Sebastian Redl539c5062010-08-18 23:57:32 +00001951 case METHOD_POOL:
Sebastian Redlada023c2010-08-04 20:40:17 +00001952 F.SelectorLookupTableData = (const unsigned char *)BlobStart;
Douglas Gregor95c13f52009-04-25 17:48:32 +00001953 if (Record[0])
Sebastian Redlada023c2010-08-04 20:40:17 +00001954 F.SelectorLookupTable
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001955 = ASTSelectorLookupTable::Create(
Sebastian Redlada023c2010-08-04 20:40:17 +00001956 F.SelectorLookupTableData + Record[0],
1957 F.SelectorLookupTableData,
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001958 ASTSelectorLookupTrait(*this));
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00001959 TotalNumMethodPoolEntries += Record[1];
Douglas Gregorc78d3462009-04-24 21:10:55 +00001960 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +00001961
Sebastian Redl96371b42010-09-22 00:42:30 +00001962 case REFERENCED_SELECTOR_POOL:
Sebastian Redl2c373b92010-10-05 15:59:54 +00001963 F.ReferencedSelectorsData.swap(Record);
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00001964 break;
1965
Sebastian Redl539c5062010-08-18 23:57:32 +00001966 case PP_COUNTER_VALUE:
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001967 if (!Record.empty() && Listener)
1968 Listener->ReadCounter(Record[0]);
Douglas Gregoreda6a892009-04-26 00:07:37 +00001969 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001970
Sebastian Redl539c5062010-08-18 23:57:32 +00001971 case SOURCE_LOCATION_OFFSETS:
Sebastian Redlb293a452010-07-20 21:20:32 +00001972 F.SLocOffsets = (const uint32_t *)BlobStart;
1973 F.LocalNumSLocEntries = Record[0];
Sebastian Redlc1d035f2010-09-22 20:19:08 +00001974 F.LocalSLocSize = Record[1];
Douglas Gregor258ae542009-04-27 06:38:32 +00001975 break;
1976
Sebastian Redl539c5062010-08-18 23:57:32 +00001977 case SOURCE_LOCATION_PRELOADS:
Sebastian Redl96371b42010-09-22 00:42:30 +00001978 if (PreloadSLocEntries.empty())
1979 PreloadSLocEntries.swap(Record);
1980 else
1981 PreloadSLocEntries.insert(PreloadSLocEntries.end(),
1982 Record.begin(), Record.end());
Douglas Gregor258ae542009-04-27 06:38:32 +00001983 break;
Douglas Gregorc5046832009-04-27 18:38:38 +00001984
Sebastian Redl539c5062010-08-18 23:57:32 +00001985 case STAT_CACHE: {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001986 ASTStatCache *MyStatCache =
1987 new ASTStatCache((const unsigned char *)BlobStart + Record[0],
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001988 (const unsigned char *)BlobStart,
1989 NumStatHits, NumStatMisses);
1990 FileMgr.addStatCache(MyStatCache);
Sebastian Redl34522812010-07-16 17:50:48 +00001991 F.StatCache = MyStatCache;
Douglas Gregorc5046832009-04-27 18:38:38 +00001992 break;
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001993 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001994
Sebastian Redl539c5062010-08-18 23:57:32 +00001995 case EXT_VECTOR_DECLS:
Sebastian Redl04f5c312010-07-28 21:38:49 +00001996 // Optimization for the first block.
1997 if (ExtVectorDecls.empty())
1998 ExtVectorDecls.swap(Record);
1999 else
2000 ExtVectorDecls.insert(ExtVectorDecls.end(),
2001 Record.begin(), Record.end());
Douglas Gregor61cac2b2009-04-27 20:06:05 +00002002 break;
2003
Sebastian Redl539c5062010-08-18 23:57:32 +00002004 case VTABLE_USES:
Sebastian Redl08aca90252010-08-05 18:21:25 +00002005 // Later tables overwrite earlier ones.
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002006 VTableUses.swap(Record);
2007 break;
2008
Sebastian Redl539c5062010-08-18 23:57:32 +00002009 case DYNAMIC_CLASSES:
Sebastian Redl08aca90252010-08-05 18:21:25 +00002010 // Optimization for the first block.
2011 if (DynamicClasses.empty())
2012 DynamicClasses.swap(Record);
2013 else
2014 DynamicClasses.insert(DynamicClasses.end(),
2015 Record.begin(), Record.end());
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002016 break;
2017
Sebastian Redl539c5062010-08-18 23:57:32 +00002018 case PENDING_IMPLICIT_INSTANTIATIONS:
Sebastian Redl2c373b92010-10-05 15:59:54 +00002019 F.PendingInstantiations.swap(Record);
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002020 break;
2021
Sebastian Redl539c5062010-08-18 23:57:32 +00002022 case SEMA_DECL_REFS:
Sebastian Redl08aca90252010-08-05 18:21:25 +00002023 // Later tables overwrite earlier ones.
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00002024 SemaDeclRefs.swap(Record);
2025 break;
2026
Sebastian Redl539c5062010-08-18 23:57:32 +00002027 case ORIGINAL_FILE_NAME:
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002028 // The primary AST will be the last to get here, so it will be the one
Sebastian Redlb293a452010-07-20 21:20:32 +00002029 // that's used.
Daniel Dunbar000c4ff2009-11-11 05:29:04 +00002030 ActualOriginalFileName.assign(BlobStart, BlobLen);
2031 OriginalFileName = ActualOriginalFileName;
Douglas Gregor0086a5a2009-07-07 00:12:59 +00002032 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregor45fe0362009-05-12 01:31:05 +00002033 break;
Mike Stump11289f42009-09-09 15:08:12 +00002034
Sebastian Redl539c5062010-08-18 23:57:32 +00002035 case VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek8bd09292010-02-12 23:31:14 +00002036 const std::string &CurBranch = getClangFullRepositoryVersion();
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002037 llvm::StringRef ASTBranch(BlobStart, BlobLen);
2038 if (llvm::StringRef(CurBranch) != ASTBranch && !DisableValidation) {
2039 Diag(diag::warn_pch_different_branch) << ASTBranch << CurBranch;
Douglas Gregord54f3a12009-10-05 21:07:28 +00002040 return IgnorePCH;
2041 }
2042 break;
2043 }
Sebastian Redlfa061442010-07-21 20:07:32 +00002044
Sebastian Redl539c5062010-08-18 23:57:32 +00002045 case MACRO_DEFINITION_OFFSETS:
Sebastian Redlfa061442010-07-21 20:07:32 +00002046 F.MacroDefinitionOffsets = (const uint32_t *)BlobStart;
2047 F.NumPreallocatedPreprocessingEntities = Record[0];
2048 F.LocalNumMacroDefinitions = Record[1];
Douglas Gregoraae92242010-03-19 21:51:54 +00002049 break;
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002050
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00002051 case DECL_UPDATE_OFFSETS: {
2052 if (Record.size() % 2 != 0) {
2053 Error("invalid DECL_UPDATE_OFFSETS block in AST file");
2054 return Failure;
2055 }
2056 for (unsigned I = 0, N = Record.size(); I != N; I += 2)
2057 DeclUpdateOffsets[static_cast<DeclID>(Record[I])]
2058 .push_back(std::make_pair(&F, Record[I+1]));
2059 break;
2060 }
2061
Sebastian Redl539c5062010-08-18 23:57:32 +00002062 case DECL_REPLACEMENTS: {
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002063 if (Record.size() % 2 != 0) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002064 Error("invalid DECL_REPLACEMENTS block in AST file");
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002065 return Failure;
2066 }
2067 for (unsigned I = 0, N = Record.size(); I != N; I += 2)
Sebastian Redl539c5062010-08-18 23:57:32 +00002068 ReplacedDecls[static_cast<DeclID>(Record[I])] =
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002069 std::make_pair(&F, Record[I+1]);
2070 break;
2071 }
Sebastian Redlaba202b2010-08-24 22:50:19 +00002072
2073 case ADDITIONAL_TEMPLATE_SPECIALIZATIONS: {
2074 AdditionalTemplateSpecializations &ATS =
2075 AdditionalTemplateSpecializationsPending[Record[0]];
2076 ATS.insert(ATS.end(), Record.begin()+1, Record.end());
2077 break;
2078 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002079 }
Sebastian Redl393f8b72010-07-19 20:52:06 +00002080 First = false;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002081 }
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002082 Error("premature end of bitstream in AST file");
Douglas Gregor55abb232009-04-10 20:39:37 +00002083 return Failure;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002084}
2085
Sebastian Redl009e7f22010-10-05 16:15:19 +00002086ASTReader::ASTReadResult ASTReader::ReadAST(const std::string &FileName,
2087 ASTFileType Type) {
2088 switch(ReadASTCore(FileName, Type)) {
Sebastian Redl2abc0382010-07-16 20:41:52 +00002089 case Failure: return Failure;
2090 case IgnorePCH: return IgnorePCH;
2091 case Success: break;
2092 }
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002093
2094 // Here comes stuff that we only do once the entire chain is loaded.
2095
Sebastian Redl96371b42010-09-22 00:42:30 +00002096 // Allocate space for loaded slocentries, identifiers, decls and types.
Sebastian Redlfa061442010-07-21 20:07:32 +00002097 unsigned TotalNumIdentifiers = 0, TotalNumTypes = 0, TotalNumDecls = 0,
Sebastian Redlada023c2010-08-04 20:40:17 +00002098 TotalNumPreallocatedPreprocessingEntities = 0, TotalNumMacroDefs = 0,
2099 TotalNumSelectors = 0;
Sebastian Redl9e687992010-07-19 22:06:55 +00002100 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
Sebastian Redl96371b42010-09-22 00:42:30 +00002101 TotalNumSLocEntries += Chain[I]->LocalNumSLocEntries;
Sebastian Redlc1d035f2010-09-22 20:19:08 +00002102 NextSLocOffset += Chain[I]->LocalSLocSize;
Sebastian Redlbd1b5be2010-07-19 22:28:42 +00002103 TotalNumIdentifiers += Chain[I]->LocalNumIdentifiers;
Sebastian Redl9e687992010-07-19 22:06:55 +00002104 TotalNumTypes += Chain[I]->LocalNumTypes;
2105 TotalNumDecls += Chain[I]->LocalNumDecls;
Sebastian Redlfa061442010-07-21 20:07:32 +00002106 TotalNumPreallocatedPreprocessingEntities +=
2107 Chain[I]->NumPreallocatedPreprocessingEntities;
2108 TotalNumMacroDefs += Chain[I]->LocalNumMacroDefinitions;
Sebastian Redlada023c2010-08-04 20:40:17 +00002109 TotalNumSelectors += Chain[I]->LocalNumSelectors;
Sebastian Redl9e687992010-07-19 22:06:55 +00002110 }
Sebastian Redlc1d035f2010-09-22 20:19:08 +00002111 SourceMgr.PreallocateSLocEntries(this, TotalNumSLocEntries, NextSLocOffset);
Sebastian Redlbd1b5be2010-07-19 22:28:42 +00002112 IdentifiersLoaded.resize(TotalNumIdentifiers);
Sebastian Redl9e687992010-07-19 22:06:55 +00002113 TypesLoaded.resize(TotalNumTypes);
2114 DeclsLoaded.resize(TotalNumDecls);
Sebastian Redlfa061442010-07-21 20:07:32 +00002115 MacroDefinitionsLoaded.resize(TotalNumMacroDefs);
2116 if (PP) {
2117 if (TotalNumIdentifiers > 0)
2118 PP->getHeaderSearchInfo().SetExternalLookup(this);
2119 if (TotalNumPreallocatedPreprocessingEntities > 0) {
2120 if (!PP->getPreprocessingRecord())
2121 PP->createPreprocessingRecord();
2122 PP->getPreprocessingRecord()->SetExternalSource(*this,
2123 TotalNumPreallocatedPreprocessingEntities);
2124 }
2125 }
Sebastian Redlada023c2010-08-04 20:40:17 +00002126 SelectorsLoaded.resize(TotalNumSelectors);
Sebastian Redl96371b42010-09-22 00:42:30 +00002127 // Preload SLocEntries.
2128 for (unsigned I = 0, N = PreloadSLocEntries.size(); I != N; ++I) {
2129 ASTReadResult Result = ReadSLocEntryRecord(PreloadSLocEntries[I]);
2130 if (Result != Success)
2131 return Result;
2132 }
Sebastian Redl9e687992010-07-19 22:06:55 +00002133
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002134 // Check the predefines buffers.
Douglas Gregorce3a8292010-07-27 00:27:13 +00002135 if (!DisableValidation && CheckPredefinesBuffers())
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002136 return IgnorePCH;
2137
2138 if (PP) {
2139 // Initialization of keywords and pragmas occurs before the
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002140 // AST file is read, so there may be some identifiers that were
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002141 // loaded into the IdentifierTable before we intercepted the
2142 // creation of identifiers. Iterate through the list of known
2143 // identifiers and determine whether we have to establish
2144 // preprocessor definitions or top-level identifier declaration
2145 // chains for those identifiers.
2146 //
2147 // We copy the IdentifierInfo pointers to a small vector first,
2148 // since de-serializing declarations or macro definitions can add
2149 // new entries into the identifier table, invalidating the
2150 // iterators.
2151 llvm::SmallVector<IdentifierInfo *, 128> Identifiers;
2152 for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(),
2153 IdEnd = PP->getIdentifierTable().end();
2154 Id != IdEnd; ++Id)
2155 Identifiers.push_back(Id->second);
Sebastian Redlfa061442010-07-21 20:07:32 +00002156 // We need to search the tables in all files.
Sebastian Redlfa061442010-07-21 20:07:32 +00002157 for (unsigned J = 0, M = Chain.size(); J != M; ++J) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002158 ASTIdentifierLookupTable *IdTable
2159 = (ASTIdentifierLookupTable *)Chain[J]->IdentifierLookupTable;
2160 // Not all AST files necessarily have identifier tables, only the useful
Sebastian Redl5c415f32010-07-22 17:01:13 +00002161 // ones.
2162 if (!IdTable)
2163 continue;
Sebastian Redlfa061442010-07-21 20:07:32 +00002164 for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) {
2165 IdentifierInfo *II = Identifiers[I];
2166 // Look in the on-disk hash tables for an entry for this identifier
Sebastian Redl2c373b92010-10-05 15:59:54 +00002167 ASTIdentifierLookupTrait Info(*this, *Chain[J], II);
Sebastian Redlfa061442010-07-21 20:07:32 +00002168 std::pair<const char*,unsigned> Key(II->getNameStart(),II->getLength());
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002169 ASTIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info);
Sebastian Redlb293a452010-07-20 21:20:32 +00002170 if (Pos == IdTable->end())
2171 continue;
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002172
Sebastian Redlb293a452010-07-20 21:20:32 +00002173 // Dereferencing the iterator has the effect of populating the
2174 // IdentifierInfo node with the various declarations it needs.
2175 (void)*Pos;
2176 }
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002177 }
2178 }
2179
2180 if (Context)
2181 InitializeContext(*Context);
2182
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00002183 if (DeserializationListener)
2184 DeserializationListener->ReaderInitialized(this);
2185
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002186 return Success;
2187}
2188
Sebastian Redl009e7f22010-10-05 16:15:19 +00002189ASTReader::ASTReadResult ASTReader::ReadASTCore(llvm::StringRef FileName,
2190 ASTFileType Type) {
Sebastian Redl3f6b7532010-10-01 19:59:12 +00002191 PerFileData *Prev = Chain.empty() ? 0 : Chain.back();
Sebastian Redl009e7f22010-10-05 16:15:19 +00002192 Chain.push_back(new PerFileData(Type));
Sebastian Redl34522812010-07-16 17:50:48 +00002193 PerFileData &F = *Chain.back();
Sebastian Redl3f6b7532010-10-01 19:59:12 +00002194 if (Prev)
2195 Prev->NextInSource = &F;
2196 else
2197 FirstInSource = &F;
2198 F.Loaders.push_back(Prev);
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002199
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002200 // Set the AST file name.
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002201 F.FileName = FileName;
2202
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002203 // Open the AST file.
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002204 //
2205 // FIXME: This shouldn't be here, we should just take a raw_ostream.
2206 std::string ErrStr;
2207 F.Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr));
2208 if (!F.Buffer) {
2209 Error(ErrStr.c_str());
2210 return IgnorePCH;
2211 }
2212
2213 // Initialize the stream
2214 F.StreamFile.init((const unsigned char *)F.Buffer->getBufferStart(),
2215 (const unsigned char *)F.Buffer->getBufferEnd());
Sebastian Redl34522812010-07-16 17:50:48 +00002216 llvm::BitstreamCursor &Stream = F.Stream;
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002217 Stream.init(F.StreamFile);
Sebastian Redlfa061442010-07-21 20:07:32 +00002218 F.SizeInBits = F.Buffer->getBufferSize() * 8;
Sebastian Redlc2e6dbf2010-07-17 00:12:06 +00002219
2220 // Sniff for the signature.
2221 if (Stream.Read(8) != 'C' ||
2222 Stream.Read(8) != 'P' ||
2223 Stream.Read(8) != 'C' ||
2224 Stream.Read(8) != 'H') {
2225 Diag(diag::err_not_a_pch_file) << FileName;
2226 return Failure;
2227 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002228
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002229 while (!Stream.AtEndOfStream()) {
2230 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00002231
Douglas Gregor92863e42009-04-10 23:10:45 +00002232 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002233 Error("invalid record at top-level of AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00002234 return Failure;
2235 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002236
2237 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregora868bbd2009-04-21 22:25:48 +00002238
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002239 // We only know the AST subblock ID.
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002240 switch (BlockID) {
2241 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregor92863e42009-04-10 23:10:45 +00002242 if (Stream.ReadBlockInfoBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002243 Error("malformed BlockInfoBlock in AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00002244 return Failure;
2245 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002246 break;
Sebastian Redl539c5062010-08-18 23:57:32 +00002247 case AST_BLOCK_ID:
Sebastian Redl3e31c722010-08-18 23:56:56 +00002248 switch (ReadASTBlock(F)) {
Douglas Gregor55abb232009-04-10 20:39:37 +00002249 case Success:
2250 break;
2251
2252 case Failure:
Douglas Gregor92863e42009-04-10 23:10:45 +00002253 return Failure;
Douglas Gregor55abb232009-04-10 20:39:37 +00002254
2255 case IgnorePCH:
Douglas Gregorbfbde532009-04-10 21:16:55 +00002256 // FIXME: We could consider reading through to the end of this
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002257 // AST block, skipping subblocks, to see if there are other
2258 // AST blocks elsewhere.
Douglas Gregor0bc12932009-04-27 21:28:04 +00002259
2260 // Clear out any preallocated source location entries, so that
2261 // the source manager does not try to resolve them later.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002262 SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor0bc12932009-04-27 21:28:04 +00002263
2264 // Remove the stat cache.
Sebastian Redl34522812010-07-16 17:50:48 +00002265 if (F.StatCache)
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002266 FileMgr.removeStatCache((ASTStatCache*)F.StatCache);
Douglas Gregor0bc12932009-04-27 21:28:04 +00002267
Douglas Gregor92863e42009-04-10 23:10:45 +00002268 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00002269 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002270 break;
2271 default:
Douglas Gregor92863e42009-04-10 23:10:45 +00002272 if (Stream.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002273 Error("malformed block record in AST file");
Douglas Gregor92863e42009-04-10 23:10:45 +00002274 return Failure;
2275 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002276 break;
2277 }
Mike Stump11289f42009-09-09 15:08:12 +00002278 }
2279
Sebastian Redl2abc0382010-07-16 20:41:52 +00002280 return Success;
2281}
2282
Sebastian Redl2c499f62010-08-18 23:56:43 +00002283void ASTReader::setPreprocessor(Preprocessor &pp) {
Douglas Gregoraae92242010-03-19 21:51:54 +00002284 PP = &pp;
Sebastian Redlfa061442010-07-21 20:07:32 +00002285
2286 unsigned TotalNum = 0;
2287 for (unsigned I = 0, N = Chain.size(); I != N; ++I)
2288 TotalNum += Chain[I]->NumPreallocatedPreprocessingEntities;
2289 if (TotalNum) {
Douglas Gregoraae92242010-03-19 21:51:54 +00002290 if (!PP->getPreprocessingRecord())
2291 PP->createPreprocessingRecord();
Sebastian Redlfa061442010-07-21 20:07:32 +00002292 PP->getPreprocessingRecord()->SetExternalSource(*this, TotalNum);
Douglas Gregoraae92242010-03-19 21:51:54 +00002293 }
2294}
2295
Sebastian Redl2c499f62010-08-18 23:56:43 +00002296void ASTReader::InitializeContext(ASTContext &Ctx) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002297 Context = &Ctx;
2298 assert(Context && "Passed null context!");
2299
2300 assert(PP && "Forgot to set Preprocessor ?");
2301 PP->getIdentifierTable().setExternalIdentifierLookup(this);
2302 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor9882a5a2010-01-04 19:18:44 +00002303 PP->setExternalSource(this);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00002304
Douglas Gregoraa433012010-10-01 01:18:02 +00002305 // If we have an update block for the TU waiting, we have to add it before
2306 // deserializing the decl.
2307 DeclContextOffsetsMap::iterator DCU = DeclContextOffsets.find(0);
2308 if (DCU != DeclContextOffsets.end()) {
2309 // Insertion could invalidate map, so grab vector.
2310 DeclContextInfos T;
2311 T.swap(DCU->second);
2312 DeclContextOffsets.erase(DCU);
2313 DeclContextOffsets[Ctx.getTranslationUnitDecl()].swap(T);
2314 }
2315
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002316 // Load the translation unit declaration
Argyrios Kyrtzidis7e8996c2010-07-08 17:13:02 +00002317 GetTranslationUnitDecl();
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002318
2319 // Load the special types.
2320 Context->setBuiltinVaListType(
Sebastian Redl539c5062010-08-18 23:57:32 +00002321 GetType(SpecialTypes[SPECIAL_TYPE_BUILTIN_VA_LIST]));
2322 if (unsigned Id = SpecialTypes[SPECIAL_TYPE_OBJC_ID])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002323 Context->setObjCIdType(GetType(Id));
Sebastian Redl539c5062010-08-18 23:57:32 +00002324 if (unsigned Sel = SpecialTypes[SPECIAL_TYPE_OBJC_SELECTOR])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002325 Context->setObjCSelType(GetType(Sel));
Sebastian Redl539c5062010-08-18 23:57:32 +00002326 if (unsigned Proto = SpecialTypes[SPECIAL_TYPE_OBJC_PROTOCOL])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002327 Context->setObjCProtoType(GetType(Proto));
Sebastian Redl539c5062010-08-18 23:57:32 +00002328 if (unsigned Class = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002329 Context->setObjCClassType(GetType(Class));
Steve Naroff7cae42b2009-07-10 23:34:53 +00002330
Sebastian Redl539c5062010-08-18 23:57:32 +00002331 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002332 Context->setCFConstantStringType(GetType(String));
Mike Stump11289f42009-09-09 15:08:12 +00002333 if (unsigned FastEnum
Sebastian Redl539c5062010-08-18 23:57:32 +00002334 = SpecialTypes[SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE])
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002335 Context->setObjCFastEnumerationStateType(GetType(FastEnum));
Sebastian Redl539c5062010-08-18 23:57:32 +00002336 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
Douglas Gregor27821ce2009-07-07 16:35:42 +00002337 QualType FileType = GetType(File);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002338 if (FileType.isNull()) {
2339 Error("FILE type is NULL");
2340 return;
2341 }
John McCall9dd450b2009-09-21 23:43:11 +00002342 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
Douglas Gregor27821ce2009-07-07 16:35:42 +00002343 Context->setFILEDecl(Typedef->getDecl());
2344 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002345 const TagType *Tag = FileType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002346 if (!Tag) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002347 Error("Invalid FILE type in AST file");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002348 return;
2349 }
Douglas Gregor27821ce2009-07-07 16:35:42 +00002350 Context->setFILEDecl(Tag->getDecl());
2351 }
2352 }
Sebastian Redl539c5062010-08-18 23:57:32 +00002353 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_jmp_buf]) {
Mike Stumpa4de80b2009-07-28 02:25:19 +00002354 QualType Jmp_bufType = GetType(Jmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002355 if (Jmp_bufType.isNull()) {
2356 Error("jmp_bug type is NULL");
2357 return;
2358 }
John McCall9dd450b2009-09-21 23:43:11 +00002359 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00002360 Context->setjmp_bufDecl(Typedef->getDecl());
2361 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002362 const TagType *Tag = Jmp_bufType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002363 if (!Tag) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002364 Error("Invalid jmp_buf type in AST file");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002365 return;
2366 }
Mike Stumpa4de80b2009-07-28 02:25:19 +00002367 Context->setjmp_bufDecl(Tag->getDecl());
2368 }
2369 }
Sebastian Redl539c5062010-08-18 23:57:32 +00002370 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_sigjmp_buf]) {
Mike Stumpa4de80b2009-07-28 02:25:19 +00002371 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002372 if (Sigjmp_bufType.isNull()) {
2373 Error("sigjmp_buf type is NULL");
2374 return;
2375 }
John McCall9dd450b2009-09-21 23:43:11 +00002376 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00002377 Context->setsigjmp_bufDecl(Typedef->getDecl());
2378 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002379 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002380 assert(Tag && "Invalid sigjmp_buf type in AST file");
Mike Stumpa4de80b2009-07-28 02:25:19 +00002381 Context->setsigjmp_bufDecl(Tag->getDecl());
2382 }
2383 }
Mike Stump11289f42009-09-09 15:08:12 +00002384 if (unsigned ObjCIdRedef
Sebastian Redl539c5062010-08-18 23:57:32 +00002385 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION])
Douglas Gregora8eed7d2009-08-21 00:27:50 +00002386 Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef);
Mike Stump11289f42009-09-09 15:08:12 +00002387 if (unsigned ObjCClassRedef
Sebastian Redl539c5062010-08-18 23:57:32 +00002388 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION])
Douglas Gregora8eed7d2009-08-21 00:27:50 +00002389 Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef);
Sebastian Redl539c5062010-08-18 23:57:32 +00002390 if (unsigned String = SpecialTypes[SPECIAL_TYPE_BLOCK_DESCRIPTOR])
Mike Stumpd0153282009-10-20 02:12:22 +00002391 Context->setBlockDescriptorType(GetType(String));
Mike Stumpe1b19ba2009-10-22 00:49:09 +00002392 if (unsigned String
Sebastian Redl539c5062010-08-18 23:57:32 +00002393 = SpecialTypes[SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR])
Mike Stumpe1b19ba2009-10-22 00:49:09 +00002394 Context->setBlockDescriptorExtendedType(GetType(String));
Fariborz Jahaniane804c282010-04-23 17:41:07 +00002395 if (unsigned ObjCSelRedef
Sebastian Redl539c5062010-08-18 23:57:32 +00002396 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION])
Fariborz Jahaniane804c282010-04-23 17:41:07 +00002397 Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef);
Sebastian Redl539c5062010-08-18 23:57:32 +00002398 if (unsigned String = SpecialTypes[SPECIAL_TYPE_NS_CONSTANT_STRING])
Fariborz Jahaniane804c282010-04-23 17:41:07 +00002399 Context->setNSConstantStringType(GetType(String));
Argyrios Kyrtzidise862cbc2010-07-04 21:44:19 +00002400
Sebastian Redl539c5062010-08-18 23:57:32 +00002401 if (SpecialTypes[SPECIAL_TYPE_INT128_INSTALLED])
Argyrios Kyrtzidise862cbc2010-07-04 21:44:19 +00002402 Context->setInt128Installed();
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002403}
2404
Douglas Gregor45fe0362009-05-12 01:31:05 +00002405/// \brief Retrieve the name of the original source file name
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002406/// directly from the AST file, without actually loading the AST
Douglas Gregor45fe0362009-05-12 01:31:05 +00002407/// file.
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002408std::string ASTReader::getOriginalSourceFile(const std::string &ASTFileName,
Daniel Dunbar3b951482009-12-03 09:13:06 +00002409 Diagnostic &Diags) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002410 // Open the AST file.
Douglas Gregor45fe0362009-05-12 01:31:05 +00002411 std::string ErrStr;
2412 llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002413 Buffer.reset(llvm::MemoryBuffer::getFile(ASTFileName.c_str(), &ErrStr));
Douglas Gregor45fe0362009-05-12 01:31:05 +00002414 if (!Buffer) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00002415 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregor45fe0362009-05-12 01:31:05 +00002416 return std::string();
2417 }
2418
2419 // Initialize the stream
2420 llvm::BitstreamReader StreamFile;
2421 llvm::BitstreamCursor Stream;
Mike Stump11289f42009-09-09 15:08:12 +00002422 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregor45fe0362009-05-12 01:31:05 +00002423 (const unsigned char *)Buffer->getBufferEnd());
2424 Stream.init(StreamFile);
2425
2426 // Sniff for the signature.
2427 if (Stream.Read(8) != 'C' ||
2428 Stream.Read(8) != 'P' ||
2429 Stream.Read(8) != 'C' ||
2430 Stream.Read(8) != 'H') {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002431 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00002432 return std::string();
2433 }
2434
2435 RecordData Record;
2436 while (!Stream.AtEndOfStream()) {
2437 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00002438
Douglas Gregor45fe0362009-05-12 01:31:05 +00002439 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
2440 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump11289f42009-09-09 15:08:12 +00002441
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002442 // We only know the AST subblock ID.
Douglas Gregor45fe0362009-05-12 01:31:05 +00002443 switch (BlockID) {
Sebastian Redl539c5062010-08-18 23:57:32 +00002444 case AST_BLOCK_ID:
2445 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002446 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00002447 return std::string();
2448 }
2449 break;
Mike Stump11289f42009-09-09 15:08:12 +00002450
Douglas Gregor45fe0362009-05-12 01:31:05 +00002451 default:
2452 if (Stream.SkipBlock()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002453 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00002454 return std::string();
2455 }
2456 break;
2457 }
2458 continue;
2459 }
2460
2461 if (Code == llvm::bitc::END_BLOCK) {
2462 if (Stream.ReadBlockEnd()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002463 Diags.Report(diag::err_fe_pch_error_at_end_block) << ASTFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00002464 return std::string();
2465 }
2466 continue;
2467 }
2468
2469 if (Code == llvm::bitc::DEFINE_ABBREV) {
2470 Stream.ReadAbbrevRecord();
2471 continue;
2472 }
2473
2474 Record.clear();
2475 const char *BlobStart = 0;
2476 unsigned BlobLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +00002477 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Sebastian Redl539c5062010-08-18 23:57:32 +00002478 == ORIGINAL_FILE_NAME)
Douglas Gregor45fe0362009-05-12 01:31:05 +00002479 return std::string(BlobStart, BlobLen);
Mike Stump11289f42009-09-09 15:08:12 +00002480 }
Douglas Gregor45fe0362009-05-12 01:31:05 +00002481
2482 return std::string();
2483}
2484
Douglas Gregor55abb232009-04-10 20:39:37 +00002485/// \brief Parse the record that corresponds to a LangOptions data
2486/// structure.
2487///
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002488/// This routine parses the language options from the AST file and then gives
2489/// them to the AST listener if one is set.
Douglas Gregor55abb232009-04-10 20:39:37 +00002490///
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002491/// \returns true if the listener deems the file unacceptable, false otherwise.
Sebastian Redl2c499f62010-08-18 23:56:43 +00002492bool ASTReader::ParseLanguageOptions(
Douglas Gregor55abb232009-04-10 20:39:37 +00002493 const llvm::SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002494 if (Listener) {
2495 LangOptions LangOpts;
Mike Stump11289f42009-09-09 15:08:12 +00002496
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002497 #define PARSE_LANGOPT(Option) \
2498 LangOpts.Option = Record[Idx]; \
2499 ++Idx
Mike Stump11289f42009-09-09 15:08:12 +00002500
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002501 unsigned Idx = 0;
2502 PARSE_LANGOPT(Trigraphs);
2503 PARSE_LANGOPT(BCPLComment);
2504 PARSE_LANGOPT(DollarIdents);
2505 PARSE_LANGOPT(AsmPreprocessor);
2506 PARSE_LANGOPT(GNUMode);
Chandler Carruthe03aa552010-04-17 20:17:31 +00002507 PARSE_LANGOPT(GNUKeywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002508 PARSE_LANGOPT(ImplicitInt);
2509 PARSE_LANGOPT(Digraphs);
2510 PARSE_LANGOPT(HexFloats);
2511 PARSE_LANGOPT(C99);
2512 PARSE_LANGOPT(Microsoft);
2513 PARSE_LANGOPT(CPlusPlus);
2514 PARSE_LANGOPT(CPlusPlus0x);
2515 PARSE_LANGOPT(CXXOperatorNames);
2516 PARSE_LANGOPT(ObjC1);
2517 PARSE_LANGOPT(ObjC2);
2518 PARSE_LANGOPT(ObjCNonFragileABI);
Fariborz Jahanian45878032010-02-09 19:31:38 +00002519 PARSE_LANGOPT(ObjCNonFragileABI2);
Fariborz Jahanian62c56022010-04-22 21:01:59 +00002520 PARSE_LANGOPT(NoConstantCFStrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002521 PARSE_LANGOPT(PascalStrings);
2522 PARSE_LANGOPT(WritableStrings);
2523 PARSE_LANGOPT(LaxVectorConversions);
Nate Begemanf2911662009-06-25 23:01:11 +00002524 PARSE_LANGOPT(AltiVec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002525 PARSE_LANGOPT(Exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +00002526 PARSE_LANGOPT(SjLjExceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002527 PARSE_LANGOPT(NeXTRuntime);
2528 PARSE_LANGOPT(Freestanding);
2529 PARSE_LANGOPT(NoBuiltin);
2530 PARSE_LANGOPT(ThreadsafeStatics);
Douglas Gregorb3286fe2009-09-03 14:36:33 +00002531 PARSE_LANGOPT(POSIXThreads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002532 PARSE_LANGOPT(Blocks);
2533 PARSE_LANGOPT(EmitAllDecls);
2534 PARSE_LANGOPT(MathErrno);
Chris Lattner51924e512010-06-26 21:25:03 +00002535 LangOpts.setSignedOverflowBehavior((LangOptions::SignedOverflowBehaviorTy)
2536 Record[Idx++]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002537 PARSE_LANGOPT(HeinousExtensions);
2538 PARSE_LANGOPT(Optimize);
2539 PARSE_LANGOPT(OptimizeSize);
2540 PARSE_LANGOPT(Static);
2541 PARSE_LANGOPT(PICLevel);
2542 PARSE_LANGOPT(GNUInline);
2543 PARSE_LANGOPT(NoInline);
2544 PARSE_LANGOPT(AccessControl);
2545 PARSE_LANGOPT(CharIsSigned);
John Thompsoned4e2952009-11-05 20:14:16 +00002546 PARSE_LANGOPT(ShortWChar);
Chris Lattner51924e512010-06-26 21:25:03 +00002547 LangOpts.setGCMode((LangOptions::GCMode)Record[Idx++]);
John McCall457a04e2010-10-22 21:05:15 +00002548 LangOpts.setVisibilityMode((Visibility)Record[Idx++]);
Daniel Dunbar143021e2009-09-21 04:16:19 +00002549 LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode)
Chris Lattner51924e512010-06-26 21:25:03 +00002550 Record[Idx++]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002551 PARSE_LANGOPT(InstantiationDepth);
Nate Begemanf2911662009-06-25 23:01:11 +00002552 PARSE_LANGOPT(OpenCL);
Mike Stumpd9546382009-12-12 01:27:46 +00002553 PARSE_LANGOPT(CatchUndefined);
2554 // FIXME: Missing ElideConstructors?!
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002555 #undef PARSE_LANGOPT
Douglas Gregor55abb232009-04-10 20:39:37 +00002556
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002557 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor55abb232009-04-10 20:39:37 +00002558 }
Douglas Gregor55abb232009-04-10 20:39:37 +00002559
2560 return false;
2561}
2562
Sebastian Redl2c499f62010-08-18 23:56:43 +00002563void ASTReader::ReadPreprocessedEntities() {
Douglas Gregoraae92242010-03-19 21:51:54 +00002564 ReadDefinedMacros();
2565}
2566
Sebastian Redl837a6cb2010-07-20 22:37:49 +00002567/// \brief Get the correct cursor and offset for loading a type.
Sebastian Redl2c499f62010-08-18 23:56:43 +00002568ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
Sebastian Redl837a6cb2010-07-20 22:37:49 +00002569 PerFileData *F = 0;
2570 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
2571 F = Chain[N - I - 1];
2572 if (Index < F->LocalNumTypes)
2573 break;
2574 Index -= F->LocalNumTypes;
2575 }
2576 assert(F && F->LocalNumTypes > Index && "Broken chain");
Sebastian Redl2c373b92010-10-05 15:59:54 +00002577 return RecordLocation(F, F->TypeOffsets[Index]);
Sebastian Redl837a6cb2010-07-20 22:37:49 +00002578}
2579
2580/// \brief Read and return the type with the given index..
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002581///
Sebastian Redl837a6cb2010-07-20 22:37:49 +00002582/// The index is the type ID, shifted and minus the number of predefs. This
2583/// routine actually reads the record corresponding to the type at the given
2584/// location. It is a helper routine for GetType, which deals with reading type
2585/// IDs.
Sebastian Redl2c499f62010-08-18 23:56:43 +00002586QualType ASTReader::ReadTypeRecord(unsigned Index) {
Sebastian Redl837a6cb2010-07-20 22:37:49 +00002587 RecordLocation Loc = TypeCursorForIndex(Index);
Sebastian Redl2c373b92010-10-05 15:59:54 +00002588 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Sebastian Redl34522812010-07-16 17:50:48 +00002589
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002590 // Keep track of where we are in the stream, then jump back there
2591 // after reading this type.
Douglas Gregor12bfa382009-10-17 00:13:19 +00002592 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002593
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002594 ReadingKindTracker ReadingKind(Read_Type, *this);
Sebastian Redleaa4ade2010-08-11 18:52:41 +00002595
Douglas Gregor1342e842009-07-06 18:54:52 +00002596 // Note that we are loading a type record.
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00002597 Deserializing AType(this);
Mike Stump11289f42009-09-09 15:08:12 +00002598
Sebastian Redl2c373b92010-10-05 15:59:54 +00002599 DeclsCursor.JumpToBit(Loc.Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002600 RecordData Record;
Douglas Gregor12bfa382009-10-17 00:13:19 +00002601 unsigned Code = DeclsCursor.ReadCode();
Sebastian Redl539c5062010-08-18 23:57:32 +00002602 switch ((TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
2603 case TYPE_EXT_QUAL: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002604 if (Record.size() != 2) {
2605 Error("Incorrect encoding of extended qualifier type");
2606 return QualType();
2607 }
Douglas Gregor455b8f42009-04-15 22:00:08 +00002608 QualType Base = GetType(Record[0]);
John McCall8ccfcb52009-09-24 19:53:00 +00002609 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]);
2610 return Context->getQualifiedType(Base, Quals);
Douglas Gregor455b8f42009-04-15 22:00:08 +00002611 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002612
Sebastian Redl539c5062010-08-18 23:57:32 +00002613 case TYPE_COMPLEX: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002614 if (Record.size() != 1) {
2615 Error("Incorrect encoding of complex type");
2616 return QualType();
2617 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002618 QualType ElemType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002619 return Context->getComplexType(ElemType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002620 }
2621
Sebastian Redl539c5062010-08-18 23:57:32 +00002622 case TYPE_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002623 if (Record.size() != 1) {
2624 Error("Incorrect encoding of pointer type");
2625 return QualType();
2626 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002627 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002628 return Context->getPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002629 }
2630
Sebastian Redl539c5062010-08-18 23:57:32 +00002631 case TYPE_BLOCK_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002632 if (Record.size() != 1) {
2633 Error("Incorrect encoding of block pointer type");
2634 return QualType();
2635 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002636 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002637 return Context->getBlockPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002638 }
2639
Sebastian Redl539c5062010-08-18 23:57:32 +00002640 case TYPE_LVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002641 if (Record.size() != 1) {
2642 Error("Incorrect encoding of lvalue reference type");
2643 return QualType();
2644 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002645 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002646 return Context->getLValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002647 }
2648
Sebastian Redl539c5062010-08-18 23:57:32 +00002649 case TYPE_RVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002650 if (Record.size() != 1) {
2651 Error("Incorrect encoding of rvalue reference type");
2652 return QualType();
2653 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002654 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002655 return Context->getRValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002656 }
2657
Sebastian Redl539c5062010-08-18 23:57:32 +00002658 case TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidisee776bc2010-07-02 11:55:15 +00002659 if (Record.size() != 2) {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002660 Error("Incorrect encoding of member pointer type");
2661 return QualType();
2662 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002663 QualType PointeeType = GetType(Record[0]);
2664 QualType ClassType = GetType(Record[1]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002665 return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002666 }
2667
Sebastian Redl539c5062010-08-18 23:57:32 +00002668 case TYPE_CONSTANT_ARRAY: {
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002669 QualType ElementType = GetType(Record[0]);
2670 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2671 unsigned IndexTypeQuals = Record[2];
2672 unsigned Idx = 3;
2673 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor04318252009-07-06 15:59:29 +00002674 return Context->getConstantArrayType(ElementType, Size,
2675 ASM, IndexTypeQuals);
2676 }
2677
Sebastian Redl539c5062010-08-18 23:57:32 +00002678 case TYPE_INCOMPLETE_ARRAY: {
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002679 QualType ElementType = GetType(Record[0]);
2680 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2681 unsigned IndexTypeQuals = Record[2];
Chris Lattner8575daa2009-04-27 21:45:14 +00002682 return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002683 }
2684
Sebastian Redl539c5062010-08-18 23:57:32 +00002685 case TYPE_VARIABLE_ARRAY: {
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002686 QualType ElementType = GetType(Record[0]);
2687 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2688 unsigned IndexTypeQuals = Record[2];
Sebastian Redl2c373b92010-10-05 15:59:54 +00002689 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
2690 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
2691 return Context->getVariableArrayType(ElementType, ReadExpr(*Loc.F),
Douglas Gregor04318252009-07-06 15:59:29 +00002692 ASM, IndexTypeQuals,
2693 SourceRange(LBLoc, RBLoc));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002694 }
2695
Sebastian Redl539c5062010-08-18 23:57:32 +00002696 case TYPE_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002697 if (Record.size() != 3) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002698 Error("incorrect encoding of vector type in AST file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002699 return QualType();
2700 }
2701
2702 QualType ElementType = GetType(Record[0]);
2703 unsigned NumElements = Record[1];
Chris Lattner37141f42010-06-23 06:00:24 +00002704 unsigned AltiVecSpec = Record[2];
2705 return Context->getVectorType(ElementType, NumElements,
2706 (VectorType::AltiVecSpecific)AltiVecSpec);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002707 }
2708
Sebastian Redl539c5062010-08-18 23:57:32 +00002709 case TYPE_EXT_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002710 if (Record.size() != 3) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002711 Error("incorrect encoding of extended vector type in AST file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002712 return QualType();
2713 }
2714
2715 QualType ElementType = GetType(Record[0]);
2716 unsigned NumElements = Record[1];
Chris Lattner8575daa2009-04-27 21:45:14 +00002717 return Context->getExtVectorType(ElementType, NumElements);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002718 }
2719
Sebastian Redl539c5062010-08-18 23:57:32 +00002720 case TYPE_FUNCTION_NO_PROTO: {
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002721 if (Record.size() != 4) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002722 Error("incorrect encoding of no-proto function type");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002723 return QualType();
2724 }
2725 QualType ResultType = GetType(Record[0]);
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002726 FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]);
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002727 return Context->getFunctionNoProtoType(ResultType, Info);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002728 }
2729
Sebastian Redl539c5062010-08-18 23:57:32 +00002730 case TYPE_FUNCTION_PROTO: {
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002731 QualType ResultType = GetType(Record[0]);
Douglas Gregordc728752009-12-22 18:11:50 +00002732 bool NoReturn = Record[1];
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002733 unsigned RegParm = Record[2];
2734 CallingConv CallConv = (CallingConv)Record[3];
2735 unsigned Idx = 4;
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002736 unsigned NumParams = Record[Idx++];
2737 llvm::SmallVector<QualType, 16> ParamTypes;
2738 for (unsigned I = 0; I != NumParams; ++I)
2739 ParamTypes.push_back(GetType(Record[Idx++]));
2740 bool isVariadic = Record[Idx++];
2741 unsigned Quals = Record[Idx++];
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002742 bool hasExceptionSpec = Record[Idx++];
2743 bool hasAnyExceptionSpec = Record[Idx++];
2744 unsigned NumExceptions = Record[Idx++];
2745 llvm::SmallVector<QualType, 2> Exceptions;
2746 for (unsigned I = 0; I != NumExceptions; ++I)
2747 Exceptions.push_back(GetType(Record[Idx++]));
Jay Foad7d0479f2009-05-21 09:52:38 +00002748 return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams,
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002749 isVariadic, Quals, hasExceptionSpec,
2750 hasAnyExceptionSpec, NumExceptions,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002751 Exceptions.data(),
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002752 FunctionType::ExtInfo(NoReturn, RegParm,
2753 CallConv));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002754 }
2755
Sebastian Redl539c5062010-08-18 23:57:32 +00002756 case TYPE_UNRESOLVED_USING:
John McCallb96ec562009-12-04 22:46:56 +00002757 return Context->getTypeDeclType(
2758 cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0])));
2759
Sebastian Redl539c5062010-08-18 23:57:32 +00002760 case TYPE_TYPEDEF: {
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +00002761 if (Record.size() != 2) {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002762 Error("incorrect encoding of typedef type");
2763 return QualType();
2764 }
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +00002765 TypedefDecl *Decl = cast<TypedefDecl>(GetDecl(Record[0]));
2766 QualType Canonical = GetType(Record[1]);
Douglas Gregorf86c9392010-10-26 00:51:02 +00002767 if (!Canonical.isNull())
2768 Canonical = Context->getCanonicalType(Canonical);
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +00002769 return Context->getTypedefType(Decl, Canonical);
2770 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002771
Sebastian Redl539c5062010-08-18 23:57:32 +00002772 case TYPE_TYPEOF_EXPR:
Sebastian Redl2c373b92010-10-05 15:59:54 +00002773 return Context->getTypeOfExprType(ReadExpr(*Loc.F));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002774
Sebastian Redl539c5062010-08-18 23:57:32 +00002775 case TYPE_TYPEOF: {
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002776 if (Record.size() != 1) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002777 Error("incorrect encoding of typeof(type) in AST file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002778 return QualType();
2779 }
2780 QualType UnderlyingType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002781 return Context->getTypeOfType(UnderlyingType);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002782 }
Mike Stump11289f42009-09-09 15:08:12 +00002783
Sebastian Redl539c5062010-08-18 23:57:32 +00002784 case TYPE_DECLTYPE:
Sebastian Redl2c373b92010-10-05 15:59:54 +00002785 return Context->getDecltypeType(ReadExpr(*Loc.F));
Anders Carlsson81df7b82009-06-24 19:06:50 +00002786
Sebastian Redl539c5062010-08-18 23:57:32 +00002787 case TYPE_RECORD: {
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002788 if (Record.size() != 2) {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002789 Error("incorrect encoding of record type");
2790 return QualType();
2791 }
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002792 bool IsDependent = Record[0];
2793 QualType T = Context->getRecordType(cast<RecordDecl>(GetDecl(Record[1])));
John McCall25c9d112010-10-14 21:48:26 +00002794 T->setDependent(IsDependent);
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002795 return T;
2796 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002797
Sebastian Redl539c5062010-08-18 23:57:32 +00002798 case TYPE_ENUM: {
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002799 if (Record.size() != 2) {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002800 Error("incorrect encoding of enum type");
2801 return QualType();
2802 }
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002803 bool IsDependent = Record[0];
2804 QualType T = Context->getEnumType(cast<EnumDecl>(GetDecl(Record[1])));
John McCall25c9d112010-10-14 21:48:26 +00002805 T->setDependent(IsDependent);
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002806 return T;
2807 }
Douglas Gregor1daeb692009-04-13 18:14:40 +00002808
Sebastian Redl539c5062010-08-18 23:57:32 +00002809 case TYPE_ELABORATED: {
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002810 unsigned Idx = 0;
2811 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2812 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2813 QualType NamedType = GetType(Record[Idx++]);
2814 return Context->getElaboratedType(Keyword, NNS, NamedType);
John McCallfcc33b02009-09-05 00:15:47 +00002815 }
2816
Sebastian Redl539c5062010-08-18 23:57:32 +00002817 case TYPE_OBJC_INTERFACE: {
Chris Lattner587cbe12009-04-22 06:45:28 +00002818 unsigned Idx = 0;
2819 ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
John McCall8b07ec22010-05-15 11:32:37 +00002820 return Context->getObjCInterfaceType(ItfD);
2821 }
2822
Sebastian Redl539c5062010-08-18 23:57:32 +00002823 case TYPE_OBJC_OBJECT: {
John McCall8b07ec22010-05-15 11:32:37 +00002824 unsigned Idx = 0;
2825 QualType Base = GetType(Record[Idx++]);
Chris Lattner587cbe12009-04-22 06:45:28 +00002826 unsigned NumProtos = Record[Idx++];
2827 llvm::SmallVector<ObjCProtocolDecl*, 4> Protos;
2828 for (unsigned I = 0; I != NumProtos; ++I)
2829 Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++])));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00002830 return Context->getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattner587cbe12009-04-22 06:45:28 +00002831 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002832
Sebastian Redl539c5062010-08-18 23:57:32 +00002833 case TYPE_OBJC_OBJECT_POINTER: {
Chris Lattner6e054af2009-04-22 06:40:03 +00002834 unsigned Idx = 0;
John McCall8b07ec22010-05-15 11:32:37 +00002835 QualType Pointee = GetType(Record[Idx++]);
2836 return Context->getObjCObjectPointerType(Pointee);
Chris Lattner6e054af2009-04-22 06:40:03 +00002837 }
Argyrios Kyrtzidisa7a36df2009-09-29 19:42:55 +00002838
Sebastian Redl539c5062010-08-18 23:57:32 +00002839 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
John McCallcebee162009-10-18 09:09:24 +00002840 unsigned Idx = 0;
2841 QualType Parm = GetType(Record[Idx++]);
2842 QualType Replacement = GetType(Record[Idx++]);
2843 return
2844 Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
2845 Replacement);
2846 }
John McCalle78aac42010-03-10 03:28:59 +00002847
Sebastian Redl539c5062010-08-18 23:57:32 +00002848 case TYPE_INJECTED_CLASS_NAME: {
John McCalle78aac42010-03-10 03:28:59 +00002849 CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0]));
2850 QualType TST = GetType(Record[1]); // probably derivable
Argyrios Kyrtzidisdab33c52010-07-02 11:55:20 +00002851 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002852 // for AST reading, too much interdependencies.
Argyrios Kyrtzidisdab33c52010-07-02 11:55:20 +00002853 return
2854 QualType(new (*Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCalle78aac42010-03-10 03:28:59 +00002855 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00002856
Sebastian Redl539c5062010-08-18 23:57:32 +00002857 case TYPE_TEMPLATE_TYPE_PARM: {
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002858 unsigned Idx = 0;
2859 unsigned Depth = Record[Idx++];
2860 unsigned Index = Record[Idx++];
2861 bool Pack = Record[Idx++];
2862 IdentifierInfo *Name = GetIdentifierInfo(Record, Idx);
2863 return Context->getTemplateTypeParmType(Depth, Index, Pack, Name);
2864 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00002865
Sebastian Redl539c5062010-08-18 23:57:32 +00002866 case TYPE_DEPENDENT_NAME: {
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00002867 unsigned Idx = 0;
2868 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2869 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2870 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
Argyrios Kyrtzidise9290952010-07-02 11:55:24 +00002871 QualType Canon = GetType(Record[Idx++]);
Douglas Gregorf86c9392010-10-26 00:51:02 +00002872 if (!Canon.isNull())
2873 Canon = Context->getCanonicalType(Canon);
Argyrios Kyrtzidise9290952010-07-02 11:55:24 +00002874 return Context->getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00002875 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00002876
Sebastian Redl539c5062010-08-18 23:57:32 +00002877 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002878 unsigned Idx = 0;
2879 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2880 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2881 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2882 unsigned NumArgs = Record[Idx++];
2883 llvm::SmallVector<TemplateArgument, 8> Args;
2884 Args.reserve(NumArgs);
2885 while (NumArgs--)
Sebastian Redl2c373b92010-10-05 15:59:54 +00002886 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002887 return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name,
2888 Args.size(), Args.data());
2889 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00002890
Sebastian Redl539c5062010-08-18 23:57:32 +00002891 case TYPE_DEPENDENT_SIZED_ARRAY: {
Argyrios Kyrtzidis4a57bd02010-06-30 08:49:25 +00002892 unsigned Idx = 0;
2893
2894 // ArrayType
2895 QualType ElementType = GetType(Record[Idx++]);
2896 ArrayType::ArraySizeModifier ASM
2897 = (ArrayType::ArraySizeModifier)Record[Idx++];
2898 unsigned IndexTypeQuals = Record[Idx++];
2899
2900 // DependentSizedArrayType
Sebastian Redl2c373b92010-10-05 15:59:54 +00002901 Expr *NumElts = ReadExpr(*Loc.F);
2902 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
Argyrios Kyrtzidis4a57bd02010-06-30 08:49:25 +00002903
2904 return Context->getDependentSizedArrayType(ElementType, NumElts, ASM,
2905 IndexTypeQuals, Brackets);
2906 }
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00002907
Sebastian Redl539c5062010-08-18 23:57:32 +00002908 case TYPE_TEMPLATE_SPECIALIZATION: {
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002909 unsigned Idx = 0;
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002910 bool IsDependent = Record[Idx++];
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002911 TemplateName Name = ReadTemplateName(Record, Idx);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002912 llvm::SmallVector<TemplateArgument, 8> Args;
Sebastian Redl2c373b92010-10-05 15:59:54 +00002913 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00002914 QualType Canon = GetType(Record[Idx++]);
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002915 QualType T;
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +00002916 if (Canon.isNull())
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002917 T = Context->getCanonicalTemplateSpecializationType(Name, Args.data(),
2918 Args.size());
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +00002919 else
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002920 T = Context->getTemplateSpecializationType(Name, Args.data(),
2921 Args.size(), Canon);
John McCall25c9d112010-10-14 21:48:26 +00002922 T->setDependent(IsDependent);
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +00002923 return T;
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002924 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002925 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002926 // Suppress a GCC warning
2927 return QualType();
2928}
2929
Sebastian Redl2c373b92010-10-05 15:59:54 +00002930class clang::TypeLocReader : public TypeLocVisitor<TypeLocReader> {
Sebastian Redl2c499f62010-08-18 23:56:43 +00002931 ASTReader &Reader;
Sebastian Redl2c373b92010-10-05 15:59:54 +00002932 ASTReader::PerFileData &F;
Sebastian Redlc67764e2010-07-22 22:43:28 +00002933 llvm::BitstreamCursor &DeclsCursor;
Sebastian Redl2c499f62010-08-18 23:56:43 +00002934 const ASTReader::RecordData &Record;
John McCall8f115c62009-10-16 21:56:05 +00002935 unsigned &Idx;
2936
Sebastian Redl2c373b92010-10-05 15:59:54 +00002937 SourceLocation ReadSourceLocation(const ASTReader::RecordData &R,
2938 unsigned &I) {
2939 return Reader.ReadSourceLocation(F, R, I);
2940 }
2941
John McCall8f115c62009-10-16 21:56:05 +00002942public:
Sebastian Redl2c373b92010-10-05 15:59:54 +00002943 TypeLocReader(ASTReader &Reader, ASTReader::PerFileData &F,
Sebastian Redl2c499f62010-08-18 23:56:43 +00002944 const ASTReader::RecordData &Record, unsigned &Idx)
Sebastian Redl2c373b92010-10-05 15:59:54 +00002945 : Reader(Reader), F(F), DeclsCursor(F.DeclsCursor), Record(Record), Idx(Idx)
2946 { }
John McCall8f115c62009-10-16 21:56:05 +00002947
John McCall17001972009-10-18 01:05:36 +00002948 // We want compile-time assurance that we've enumerated all of
2949 // these, so unfortunately we have to declare them first, then
2950 // define them out-of-line.
2951#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCall8f115c62009-10-16 21:56:05 +00002952#define TYPELOC(CLASS, PARENT) \
John McCall17001972009-10-18 01:05:36 +00002953 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCall8f115c62009-10-16 21:56:05 +00002954#include "clang/AST/TypeLocNodes.def"
2955
John McCall17001972009-10-18 01:05:36 +00002956 void VisitFunctionTypeLoc(FunctionTypeLoc);
2957 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCall8f115c62009-10-16 21:56:05 +00002958};
2959
John McCall17001972009-10-18 01:05:36 +00002960void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCall8f115c62009-10-16 21:56:05 +00002961 // nothing to do
2962}
John McCall17001972009-10-18 01:05:36 +00002963void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002964 TL.setBuiltinLoc(ReadSourceLocation(Record, Idx));
Douglas Gregorc9b7a592010-01-18 18:04:31 +00002965 if (TL.needsExtraLocalData()) {
2966 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
2967 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
2968 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
2969 TL.setModeAttr(Record[Idx++]);
2970 }
John McCall8f115c62009-10-16 21:56:05 +00002971}
John McCall17001972009-10-18 01:05:36 +00002972void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002973 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002974}
John McCall17001972009-10-18 01:05:36 +00002975void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002976 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002977}
John McCall17001972009-10-18 01:05:36 +00002978void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002979 TL.setCaretLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002980}
John McCall17001972009-10-18 01:05:36 +00002981void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002982 TL.setAmpLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002983}
John McCall17001972009-10-18 01:05:36 +00002984void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002985 TL.setAmpAmpLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002986}
John McCall17001972009-10-18 01:05:36 +00002987void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002988 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002989}
John McCall17001972009-10-18 01:05:36 +00002990void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00002991 TL.setLBracketLoc(ReadSourceLocation(Record, Idx));
2992 TL.setRBracketLoc(ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00002993 if (Record[Idx++])
Sebastian Redl2c373b92010-10-05 15:59:54 +00002994 TL.setSizeExpr(Reader.ReadExpr(F));
Douglas Gregor12bfa382009-10-17 00:13:19 +00002995 else
John McCall17001972009-10-18 01:05:36 +00002996 TL.setSizeExpr(0);
2997}
2998void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
2999 VisitArrayTypeLoc(TL);
3000}
3001void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
3002 VisitArrayTypeLoc(TL);
3003}
3004void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
3005 VisitArrayTypeLoc(TL);
3006}
3007void TypeLocReader::VisitDependentSizedArrayTypeLoc(
3008 DependentSizedArrayTypeLoc TL) {
3009 VisitArrayTypeLoc(TL);
3010}
3011void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
3012 DependentSizedExtVectorTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003013 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003014}
3015void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003016 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003017}
3018void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003019 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003020}
3021void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003022 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
3023 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor7fb25412010-10-01 18:44:50 +00003024 TL.setTrailingReturn(Record[Idx++]);
John McCall17001972009-10-18 01:05:36 +00003025 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
John McCalle6347002009-10-23 01:28:53 +00003026 TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
John McCall17001972009-10-18 01:05:36 +00003027 }
3028}
3029void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
3030 VisitFunctionTypeLoc(TL);
3031}
3032void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
3033 VisitFunctionTypeLoc(TL);
3034}
John McCallb96ec562009-12-04 22:46:56 +00003035void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003036 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallb96ec562009-12-04 22:46:56 +00003037}
John McCall17001972009-10-18 01:05:36 +00003038void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003039 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003040}
3041void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003042 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
3043 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
3044 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003045}
3046void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003047 TL.setTypeofLoc(ReadSourceLocation(Record, Idx));
3048 TL.setLParenLoc(ReadSourceLocation(Record, Idx));
3049 TL.setRParenLoc(ReadSourceLocation(Record, Idx));
3050 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(F, Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003051}
3052void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003053 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003054}
3055void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003056 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003057}
3058void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003059 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003060}
John McCall17001972009-10-18 01:05:36 +00003061void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003062 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003063}
John McCallcebee162009-10-18 09:09:24 +00003064void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
3065 SubstTemplateTypeParmTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003066 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCallcebee162009-10-18 09:09:24 +00003067}
John McCall17001972009-10-18 01:05:36 +00003068void TypeLocReader::VisitTemplateSpecializationTypeLoc(
3069 TemplateSpecializationTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003070 TL.setTemplateNameLoc(ReadSourceLocation(Record, Idx));
3071 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
3072 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall0ad16662009-10-29 08:12:44 +00003073 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
3074 TL.setArgLocInfo(i,
Sebastian Redl2c373b92010-10-05 15:59:54 +00003075 Reader.GetTemplateArgumentLocInfo(F,
3076 TL.getTypePtr()->getArg(i).getKind(),
3077 Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003078}
Abramo Bagnara6150c882010-05-11 21:36:43 +00003079void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003080 TL.setKeywordLoc(ReadSourceLocation(Record, Idx));
3081 TL.setQualifierRange(Reader.ReadSourceRange(F, Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003082}
John McCalle78aac42010-03-10 03:28:59 +00003083void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003084 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCalle78aac42010-03-10 03:28:59 +00003085}
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00003086void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003087 TL.setKeywordLoc(ReadSourceLocation(Record, Idx));
3088 TL.setQualifierRange(Reader.ReadSourceRange(F, Record, Idx));
3089 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003090}
John McCallc392f372010-06-11 00:33:02 +00003091void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
3092 DependentTemplateSpecializationTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003093 TL.setKeywordLoc(ReadSourceLocation(Record, Idx));
3094 TL.setQualifierRange(Reader.ReadSourceRange(F, Record, Idx));
3095 TL.setNameLoc(ReadSourceLocation(Record, Idx));
3096 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
3097 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCallc392f372010-06-11 00:33:02 +00003098 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
3099 TL.setArgLocInfo(I,
Sebastian Redl2c373b92010-10-05 15:59:54 +00003100 Reader.GetTemplateArgumentLocInfo(F,
3101 TL.getTypePtr()->getArg(I).getKind(),
3102 Record, Idx));
John McCallc392f372010-06-11 00:33:02 +00003103}
John McCall17001972009-10-18 01:05:36 +00003104void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003105 TL.setNameLoc(ReadSourceLocation(Record, Idx));
John McCall8b07ec22010-05-15 11:32:37 +00003106}
3107void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
3108 TL.setHasBaseTypeAsWritten(Record[Idx++]);
Sebastian Redl2c373b92010-10-05 15:59:54 +00003109 TL.setLAngleLoc(ReadSourceLocation(Record, Idx));
3110 TL.setRAngleLoc(ReadSourceLocation(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00003111 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
Sebastian Redl2c373b92010-10-05 15:59:54 +00003112 TL.setProtocolLoc(i, ReadSourceLocation(Record, Idx));
John McCall8f115c62009-10-16 21:56:05 +00003113}
John McCallfc93cf92009-10-22 22:37:11 +00003114void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003115 TL.setStarLoc(ReadSourceLocation(Record, Idx));
John McCallfc93cf92009-10-22 22:37:11 +00003116}
John McCall8f115c62009-10-16 21:56:05 +00003117
Sebastian Redl2c373b92010-10-05 15:59:54 +00003118TypeSourceInfo *ASTReader::GetTypeSourceInfo(PerFileData &F,
Sebastian Redlc67764e2010-07-22 22:43:28 +00003119 const RecordData &Record,
John McCall8f115c62009-10-16 21:56:05 +00003120 unsigned &Idx) {
3121 QualType InfoTy = GetType(Record[Idx++]);
3122 if (InfoTy.isNull())
3123 return 0;
3124
John McCallbcd03502009-12-07 02:54:59 +00003125 TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy);
Sebastian Redl2c373b92010-10-05 15:59:54 +00003126 TypeLocReader TLR(*this, F, Record, Idx);
John McCallbcd03502009-12-07 02:54:59 +00003127 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCall8f115c62009-10-16 21:56:05 +00003128 TLR.Visit(TL);
John McCallbcd03502009-12-07 02:54:59 +00003129 return TInfo;
John McCall8f115c62009-10-16 21:56:05 +00003130}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003131
Sebastian Redl539c5062010-08-18 23:57:32 +00003132QualType ASTReader::GetType(TypeID ID) {
John McCall8ccfcb52009-09-24 19:53:00 +00003133 unsigned FastQuals = ID & Qualifiers::FastMask;
3134 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003135
Sebastian Redl539c5062010-08-18 23:57:32 +00003136 if (Index < NUM_PREDEF_TYPE_IDS) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003137 QualType T;
Sebastian Redl539c5062010-08-18 23:57:32 +00003138 switch ((PredefinedTypeIDs)Index) {
3139 case PREDEF_TYPE_NULL_ID: return QualType();
3140 case PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break;
3141 case PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003142
Sebastian Redl539c5062010-08-18 23:57:32 +00003143 case PREDEF_TYPE_CHAR_U_ID:
3144 case PREDEF_TYPE_CHAR_S_ID:
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003145 // FIXME: Check that the signedness of CharTy is correct!
Chris Lattner8575daa2009-04-27 21:45:14 +00003146 T = Context->CharTy;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003147 break;
3148
Sebastian Redl539c5062010-08-18 23:57:32 +00003149 case PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break;
3150 case PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break;
3151 case PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break;
3152 case PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break;
3153 case PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break;
3154 case PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break;
3155 case PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break;
3156 case PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break;
3157 case PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break;
3158 case PREDEF_TYPE_INT_ID: T = Context->IntTy; break;
3159 case PREDEF_TYPE_LONG_ID: T = Context->LongTy; break;
3160 case PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break;
3161 case PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break;
3162 case PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break;
3163 case PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break;
3164 case PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break;
3165 case PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break;
3166 case PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break;
3167 case PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break;
3168 case PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break;
3169 case PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break;
3170 case PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break;
3171 case PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break;
3172 case PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003173 }
3174
3175 assert(!T.isNull() && "Unknown predefined type");
John McCall8ccfcb52009-09-24 19:53:00 +00003176 return T.withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003177 }
3178
Sebastian Redl539c5062010-08-18 23:57:32 +00003179 Index -= NUM_PREDEF_TYPE_IDS;
Sebastian Redl837a6cb2010-07-20 22:37:49 +00003180 assert(Index < TypesLoaded.size() && "Type index out-of-range");
Sebastian Redl409183f2010-07-14 20:26:45 +00003181 if (TypesLoaded[Index].isNull()) {
Sebastian Redl837a6cb2010-07-20 22:37:49 +00003182 TypesLoaded[Index] = ReadTypeRecord(Index);
Douglas Gregor9b3932c2010-10-05 18:37:06 +00003183 if (TypesLoaded[Index].isNull())
3184 return QualType();
3185
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003186 TypesLoaded[Index]->setFromAST();
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00003187 TypeIdxs[TypesLoaded[Index]] = TypeIdx::fromTypeID(ID);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003188 if (DeserializationListener)
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00003189 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
Sebastian Redl1ea025b2010-07-16 16:36:56 +00003190 TypesLoaded[Index]);
Sebastian Redl409183f2010-07-14 20:26:45 +00003191 }
Mike Stump11289f42009-09-09 15:08:12 +00003192
John McCall8ccfcb52009-09-24 19:53:00 +00003193 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003194}
3195
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00003196TypeID ASTReader::GetTypeID(QualType T) const {
3197 return MakeTypeID(T,
3198 std::bind1st(std::mem_fun(&ASTReader::GetTypeIdx), this));
3199}
3200
3201TypeIdx ASTReader::GetTypeIdx(QualType T) const {
3202 if (T.isNull())
3203 return TypeIdx();
3204 assert(!T.getLocalFastQualifiers());
3205
3206 TypeIdxMap::const_iterator I = TypeIdxs.find(T);
3207 // GetTypeIdx is mostly used for computing the hash of DeclarationNames and
3208 // comparing keys of ASTDeclContextNameLookupTable.
3209 // If the type didn't come from the AST file use a specially marked index
3210 // so that any hash/key comparison fail since no such index is stored
3211 // in a AST file.
3212 if (I == TypeIdxs.end())
3213 return TypeIdx(-1);
3214 return I->second;
3215}
3216
John McCall0ad16662009-10-29 08:12:44 +00003217TemplateArgumentLocInfo
Sebastian Redl2c373b92010-10-05 15:59:54 +00003218ASTReader::GetTemplateArgumentLocInfo(PerFileData &F,
3219 TemplateArgument::ArgKind Kind,
John McCall0ad16662009-10-29 08:12:44 +00003220 const RecordData &Record,
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00003221 unsigned &Index) {
John McCall0ad16662009-10-29 08:12:44 +00003222 switch (Kind) {
3223 case TemplateArgument::Expression:
Sebastian Redl2c373b92010-10-05 15:59:54 +00003224 return ReadExpr(F);
John McCall0ad16662009-10-29 08:12:44 +00003225 case TemplateArgument::Type:
Sebastian Redl2c373b92010-10-05 15:59:54 +00003226 return GetTypeSourceInfo(F, Record, Index);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003227 case TemplateArgument::Template: {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003228 SourceRange QualifierRange = ReadSourceRange(F, Record, Index);
3229 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00003230 return TemplateArgumentLocInfo(QualifierRange, TemplateNameLoc);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00003231 }
John McCall0ad16662009-10-29 08:12:44 +00003232 case TemplateArgument::Null:
3233 case TemplateArgument::Integral:
3234 case TemplateArgument::Declaration:
3235 case TemplateArgument::Pack:
3236 return TemplateArgumentLocInfo();
3237 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00003238 llvm_unreachable("unexpected template argument loc");
John McCall0ad16662009-10-29 08:12:44 +00003239 return TemplateArgumentLocInfo();
3240}
3241
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00003242TemplateArgumentLoc
Sebastian Redl2c373b92010-10-05 15:59:54 +00003243ASTReader::ReadTemplateArgumentLoc(PerFileData &F,
Sebastian Redlc67764e2010-07-22 22:43:28 +00003244 const RecordData &Record, unsigned &Index) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00003245 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00003246
3247 if (Arg.getKind() == TemplateArgument::Expression) {
3248 if (Record[Index++]) // bool InfoHasSameExpr.
3249 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
3250 }
Sebastian Redl2c373b92010-10-05 15:59:54 +00003251 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00003252 Record, Index));
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00003253}
3254
Sebastian Redl2c499f62010-08-18 23:56:43 +00003255Decl *ASTReader::GetExternalDecl(uint32_t ID) {
John McCall75b960e2010-06-01 09:23:16 +00003256 return GetDecl(ID);
3257}
3258
Sebastian Redl2c499f62010-08-18 23:56:43 +00003259TranslationUnitDecl *ASTReader::GetTranslationUnitDecl() {
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003260 if (!DeclsLoaded[0]) {
Sebastian Redld7dce0a2010-08-24 00:50:04 +00003261 ReadDeclRecord(0, 1);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003262 if (DeserializationListener)
Sebastian Redl1ea025b2010-07-16 16:36:56 +00003263 DeserializationListener->DeclRead(1, DeclsLoaded[0]);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003264 }
Argyrios Kyrtzidis7e8996c2010-07-08 17:13:02 +00003265
3266 return cast<TranslationUnitDecl>(DeclsLoaded[0]);
3267}
3268
Sebastian Redl539c5062010-08-18 23:57:32 +00003269Decl *ASTReader::GetDecl(DeclID ID) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003270 if (ID == 0)
3271 return 0;
3272
Douglas Gregor745ed142009-04-25 18:35:21 +00003273 if (ID > DeclsLoaded.size()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003274 Error("declaration ID out-of-range for AST file");
Douglas Gregor745ed142009-04-25 18:35:21 +00003275 return 0;
3276 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003277
Douglas Gregor745ed142009-04-25 18:35:21 +00003278 unsigned Index = ID - 1;
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003279 if (!DeclsLoaded[Index]) {
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00003280 ReadDeclRecord(Index, ID);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003281 if (DeserializationListener)
3282 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
3283 }
Douglas Gregor745ed142009-04-25 18:35:21 +00003284
3285 return DeclsLoaded[Index];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003286}
3287
Chris Lattner9c28af02009-04-27 05:46:25 +00003288/// \brief Resolve the offset of a statement into a statement.
3289///
3290/// This operation will read a new statement from the external
3291/// source each time it is called, and is meant to be used via a
3292/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
Sebastian Redl2c499f62010-08-18 23:56:43 +00003293Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
Sebastian Redl5c415f32010-07-22 17:01:13 +00003294 // Offset here is a global offset across the entire chain.
3295 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
3296 PerFileData &F = *Chain[N - I - 1];
3297 if (Offset < F.SizeInBits) {
3298 // Since we know that this statement is part of a decl, make sure to use
3299 // the decl cursor to read it.
3300 F.DeclsCursor.JumpToBit(Offset);
Sebastian Redl2c373b92010-10-05 15:59:54 +00003301 return ReadStmtFromStream(F);
Sebastian Redl5c415f32010-07-22 17:01:13 +00003302 }
3303 Offset -= F.SizeInBits;
3304 }
3305 llvm_unreachable("Broken chain");
Douglas Gregor3c3aa612009-04-18 00:07:54 +00003306}
3307
Sebastian Redl2c499f62010-08-18 23:56:43 +00003308bool ASTReader::FindExternalLexicalDecls(const DeclContext *DC,
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00003309 bool (*isKindWeWant)(Decl::Kind),
John McCall75b960e2010-06-01 09:23:16 +00003310 llvm::SmallVectorImpl<Decl*> &Decls) {
Mike Stump11289f42009-09-09 15:08:12 +00003311 assert(DC->hasExternalLexicalStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003312 "DeclContext has no lexical decls in storage");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00003313
Sebastian Redl5c415f32010-07-22 17:01:13 +00003314 // There might be lexical decls in multiple parts of the chain, for the TU
3315 // at least.
Sebastian Redlda6a21c2010-09-28 02:24:44 +00003316 // DeclContextOffsets might reallocate as we load additional decls below,
3317 // so make a copy of the vector.
3318 DeclContextInfos Infos = DeclContextOffsets[DC];
Sebastian Redl5c415f32010-07-22 17:01:13 +00003319 for (DeclContextInfos::iterator I = Infos.begin(), E = Infos.end();
3320 I != E; ++I) {
Sebastian Redl66c5eef2010-07-27 00:17:23 +00003321 // IDs can be 0 if this context doesn't contain declarations.
3322 if (!I->LexicalDecls)
Sebastian Redl5c415f32010-07-22 17:01:13 +00003323 continue;
Sebastian Redl5c415f32010-07-22 17:01:13 +00003324
3325 // Load all of the declaration IDs
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00003326 for (const KindDeclIDPair *ID = I->LexicalDecls,
3327 *IDE = ID + I->NumLexicalDecls; ID != IDE; ++ID) {
3328 if (isKindWeWant && !isKindWeWant((Decl::Kind)ID->first))
3329 continue;
3330
3331 Decl *D = GetDecl(ID->second);
Sebastian Redlda6a21c2010-09-28 02:24:44 +00003332 assert(D && "Null decl in lexical decls");
3333 Decls.push_back(D);
3334 }
Ted Kremenek1ff615c2010-03-18 00:56:54 +00003335 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003336
Douglas Gregora57c3ab2009-04-22 22:34:57 +00003337 ++NumLexicalDeclContextsRead;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003338 return false;
3339}
3340
John McCall75b960e2010-06-01 09:23:16 +00003341DeclContext::lookup_result
Sebastian Redl2c499f62010-08-18 23:56:43 +00003342ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
John McCall75b960e2010-06-01 09:23:16 +00003343 DeclarationName Name) {
Mike Stump11289f42009-09-09 15:08:12 +00003344 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003345 "DeclContext has no visible decls in storage");
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003346 if (!Name)
3347 return DeclContext::lookup_result(DeclContext::lookup_iterator(0),
3348 DeclContext::lookup_iterator(0));
Ted Kremenek1ff615c2010-03-18 00:56:54 +00003349
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003350 llvm::SmallVector<NamedDecl *, 64> Decls;
Sebastian Redl471ac2f2010-08-24 00:49:55 +00003351 // There might be visible decls in multiple parts of the chain, for the TU
Sebastian Redl9617e7e2010-08-24 00:50:16 +00003352 // and namespaces. For any given name, the last available results replace
3353 // all earlier ones. For this reason, we walk in reverse.
Sebastian Redl5c415f32010-07-22 17:01:13 +00003354 DeclContextInfos &Infos = DeclContextOffsets[DC];
Sebastian Redl9617e7e2010-08-24 00:50:16 +00003355 for (DeclContextInfos::reverse_iterator I = Infos.rbegin(), E = Infos.rend();
Sebastian Redl5c415f32010-07-22 17:01:13 +00003356 I != E; ++I) {
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003357 if (!I->NameLookupTableData)
Sebastian Redl5c415f32010-07-22 17:01:13 +00003358 continue;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003359
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003360 ASTDeclContextNameLookupTable *LookupTable =
3361 (ASTDeclContextNameLookupTable*)I->NameLookupTableData;
3362 ASTDeclContextNameLookupTable::iterator Pos = LookupTable->find(Name);
3363 if (Pos == LookupTable->end())
Sebastian Redl5c415f32010-07-22 17:01:13 +00003364 continue;
3365
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003366 ASTDeclContextNameLookupTrait::data_type Data = *Pos;
3367 for (; Data.first != Data.second; ++Data.first)
3368 Decls.push_back(cast<NamedDecl>(GetDecl(*Data.first)));
Sebastian Redl9617e7e2010-08-24 00:50:16 +00003369 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003370 }
3371
Douglas Gregora57c3ab2009-04-22 22:34:57 +00003372 ++NumVisibleDeclContextsRead;
John McCall75b960e2010-06-01 09:23:16 +00003373
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00003374 SetExternalVisibleDeclsForName(DC, Name, Decls);
John McCall75b960e2010-06-01 09:23:16 +00003375 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003376}
3377
Argyrios Kyrtzidisd32ee892010-08-20 23:35:55 +00003378void ASTReader::MaterializeVisibleDecls(const DeclContext *DC) {
3379 assert(DC->hasExternalVisibleStorage() &&
3380 "DeclContext has no visible decls in storage");
3381
3382 llvm::SmallVector<NamedDecl *, 64> Decls;
3383 // There might be visible decls in multiple parts of the chain, for the TU
3384 // and namespaces.
3385 DeclContextInfos &Infos = DeclContextOffsets[DC];
3386 for (DeclContextInfos::iterator I = Infos.begin(), E = Infos.end();
3387 I != E; ++I) {
3388 if (!I->NameLookupTableData)
3389 continue;
3390
3391 ASTDeclContextNameLookupTable *LookupTable =
3392 (ASTDeclContextNameLookupTable*)I->NameLookupTableData;
3393 for (ASTDeclContextNameLookupTable::item_iterator
3394 ItemI = LookupTable->item_begin(),
3395 ItemEnd = LookupTable->item_end() ; ItemI != ItemEnd; ++ItemI) {
3396 ASTDeclContextNameLookupTable::item_iterator::value_type Val
3397 = *ItemI;
3398 ASTDeclContextNameLookupTrait::data_type Data = Val.second;
3399 Decls.clear();
3400 for (; Data.first != Data.second; ++Data.first)
3401 Decls.push_back(cast<NamedDecl>(GetDecl(*Data.first)));
3402 MaterializeVisibleDeclsForName(DC, Val.first, Decls);
3403 }
3404 }
3405}
3406
Sebastian Redl2c499f62010-08-18 23:56:43 +00003407void ASTReader::PassInterestingDeclsToConsumer() {
Argyrios Kyrtzidis903ccd62010-07-07 15:46:26 +00003408 assert(Consumer);
3409 while (!InterestingDecls.empty()) {
3410 DeclGroupRef DG(InterestingDecls.front());
3411 InterestingDecls.pop_front();
Sebastian Redleaa4ade2010-08-11 18:52:41 +00003412 Consumer->HandleInterestingDecl(DG);
Argyrios Kyrtzidis903ccd62010-07-07 15:46:26 +00003413 }
3414}
3415
Sebastian Redl2c499f62010-08-18 23:56:43 +00003416void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregorb985eeb2009-04-22 19:09:20 +00003417 this->Consumer = Consumer;
3418
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00003419 if (!Consumer)
3420 return;
3421
3422 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidis903ccd62010-07-07 15:46:26 +00003423 // Force deserialization of this decl, which will cause it to be queued for
3424 // passing to the consumer.
Daniel Dunbar865c2a72009-09-17 03:06:44 +00003425 GetDecl(ExternalDefinitions[I]);
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00003426 }
Douglas Gregorf005eac2009-04-25 00:41:30 +00003427
Argyrios Kyrtzidis903ccd62010-07-07 15:46:26 +00003428 PassInterestingDeclsToConsumer();
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00003429}
3430
Sebastian Redl2c499f62010-08-18 23:56:43 +00003431void ASTReader::PrintStats() {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003432 std::fprintf(stderr, "*** AST File Statistics:\n");
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003433
Mike Stump11289f42009-09-09 15:08:12 +00003434 unsigned NumTypesLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00003435 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall8ccfcb52009-09-24 19:53:00 +00003436 QualType());
Douglas Gregor0e149972009-04-25 19:10:14 +00003437 unsigned NumDeclsLoaded
3438 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
3439 (Decl *)0);
3440 unsigned NumIdentifiersLoaded
3441 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
3442 IdentifiersLoaded.end(),
3443 (IdentifierInfo *)0);
Mike Stump11289f42009-09-09 15:08:12 +00003444 unsigned NumSelectorsLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00003445 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
3446 SelectorsLoaded.end(),
3447 Selector());
Douglas Gregorc3b1dd12009-04-13 20:50:16 +00003448
Douglas Gregorc5046832009-04-27 18:38:38 +00003449 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
3450 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor258ae542009-04-27 06:38:32 +00003451 if (TotalNumSLocEntries)
3452 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
3453 NumSLocEntriesRead, TotalNumSLocEntries,
3454 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor745ed142009-04-25 18:35:21 +00003455 if (!TypesLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00003456 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00003457 NumTypesLoaded, (unsigned)TypesLoaded.size(),
3458 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
3459 if (!DeclsLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00003460 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00003461 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
3462 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor0e149972009-04-25 19:10:14 +00003463 if (!IdentifiersLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00003464 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor0e149972009-04-25 19:10:14 +00003465 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
3466 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Sebastian Redlada023c2010-08-04 20:40:17 +00003467 if (!SelectorsLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00003468 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
Sebastian Redlada023c2010-08-04 20:40:17 +00003469 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
3470 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
Douglas Gregor95c13f52009-04-25 17:48:32 +00003471 if (TotalNumStatements)
3472 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
3473 NumStatementsRead, TotalNumStatements,
3474 ((float)NumStatementsRead/TotalNumStatements * 100));
3475 if (TotalNumMacros)
3476 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
3477 NumMacrosRead, TotalNumMacros,
3478 ((float)NumMacrosRead/TotalNumMacros * 100));
3479 if (TotalLexicalDeclContexts)
3480 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
3481 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
3482 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
3483 * 100));
3484 if (TotalVisibleDeclContexts)
3485 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
3486 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
3487 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
3488 * 100));
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00003489 if (TotalNumMethodPoolEntries) {
Douglas Gregor95c13f52009-04-25 17:48:32 +00003490 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00003491 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
3492 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
Douglas Gregor95c13f52009-04-25 17:48:32 +00003493 * 100));
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00003494 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
Douglas Gregor95c13f52009-04-25 17:48:32 +00003495 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003496 std::fprintf(stderr, "\n");
3497}
3498
Sebastian Redl2c499f62010-08-18 23:56:43 +00003499void ASTReader::InitializeSema(Sema &S) {
Douglas Gregora868bbd2009-04-21 22:25:48 +00003500 SemaObj = &S;
Douglas Gregorc78d3462009-04-24 21:10:55 +00003501 S.ExternalSource = this;
3502
Douglas Gregor7cd60f72009-04-22 21:15:06 +00003503 // Makes sure any declarations that were deserialized "too early"
3504 // still get added to the identifier's declaration chains.
Douglas Gregor2fb99df2010-09-24 23:29:12 +00003505 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
3506 if (SemaObj->TUScope)
John McCall48871652010-08-21 09:40:31 +00003507 SemaObj->TUScope->AddDecl(PreloadedDecls[I]);
Douglas Gregor2fb99df2010-09-24 23:29:12 +00003508
3509 SemaObj->IdResolver.AddDecl(PreloadedDecls[I]);
Douglas Gregora868bbd2009-04-21 22:25:48 +00003510 }
Douglas Gregor7cd60f72009-04-22 21:15:06 +00003511 PreloadedDecls.clear();
Douglas Gregord4df8652009-04-22 22:02:47 +00003512
3513 // If there were any tentative definitions, deserialize them and add
Sebastian Redl35351a92010-01-31 22:27:38 +00003514 // them to Sema's list of tentative definitions.
Douglas Gregord4df8652009-04-22 22:02:47 +00003515 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
3516 VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I]));
Sebastian Redl35351a92010-01-31 22:27:38 +00003517 SemaObj->TentativeDefinitions.push_back(Var);
Douglas Gregord4df8652009-04-22 22:02:47 +00003518 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00003519
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00003520 // If there were any unused file scoped decls, deserialize them and add to
3521 // Sema's list of unused file scoped decls.
3522 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
3523 DeclaratorDecl *D = cast<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
3524 SemaObj->UnusedFileScopedDecls.push_back(D);
Tanya Lattner90073802010-02-12 00:07:30 +00003525 }
Douglas Gregoracfc76c2009-04-22 22:18:58 +00003526
3527 // If there were any locally-scoped external declarations,
3528 // deserialize them and add them to Sema's table of locally-scoped
3529 // external declarations.
3530 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
3531 NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
3532 SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D;
3533 }
Douglas Gregor61cac2b2009-04-27 20:06:05 +00003534
3535 // If there were any ext_vector type declarations, deserialize them
3536 // and add them to Sema's vector of such declarations.
3537 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I)
3538 SemaObj->ExtVectorDecls.push_back(
3539 cast<TypedefDecl>(GetDecl(ExtVectorDecls[I])));
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00003540
3541 // FIXME: Do VTable uses and dynamic classes deserialize too much ?
3542 // Can we cut them down before writing them ?
3543
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00003544 // If there were any dynamic classes declarations, deserialize them
3545 // and add them to Sema's vector of such declarations.
3546 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I)
3547 SemaObj->DynamicClasses.push_back(
3548 cast<CXXRecordDecl>(GetDecl(DynamicClasses[I])));
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00003549
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00003550 // Load the offsets of the declarations that Sema references.
3551 // They will be lazily deserialized when needed.
3552 if (!SemaDeclRefs.empty()) {
3553 assert(SemaDeclRefs.size() == 2 && "More decl refs than expected!");
3554 SemaObj->StdNamespace = SemaDeclRefs[0];
3555 SemaObj->StdBadAlloc = SemaDeclRefs[1];
3556 }
3557
Sebastian Redl2c373b92010-10-05 15:59:54 +00003558 for (PerFileData *F = FirstInSource; F; F = F->NextInSource) {
3559
3560 // If there are @selector references added them to its pool. This is for
3561 // implementation of -Wselector.
3562 if (!F->ReferencedSelectorsData.empty()) {
3563 unsigned int DataSize = F->ReferencedSelectorsData.size()-1;
3564 unsigned I = 0;
3565 while (I < DataSize) {
3566 Selector Sel = DecodeSelector(F->ReferencedSelectorsData[I++]);
3567 SourceLocation SelLoc = ReadSourceLocation(
3568 *F, F->ReferencedSelectorsData, I);
3569 SemaObj->ReferencedSelectors.insert(std::make_pair(Sel, SelLoc));
3570 }
3571 }
3572
3573 // If there were any pending implicit instantiations, deserialize them
3574 // and add them to Sema's queue of such instantiations.
3575 assert(F->PendingInstantiations.size() % 2 == 0 &&
3576 "Expected pairs of entries");
3577 for (unsigned Idx = 0, N = F->PendingInstantiations.size(); Idx < N;) {
3578 ValueDecl *D=cast<ValueDecl>(GetDecl(F->PendingInstantiations[Idx++]));
3579 SourceLocation Loc = ReadSourceLocation(*F, F->PendingInstantiations,Idx);
3580 SemaObj->PendingInstantiations.push_back(std::make_pair(D, Loc));
3581 }
3582 }
3583
3584 // The two special data sets below always come from the most recent PCH,
3585 // which is at the front of the chain.
3586 PerFileData &F = *Chain.front();
3587
3588 // If there were any weak undeclared identifiers, deserialize them and add to
3589 // Sema's list of weak undeclared identifiers.
3590 if (!WeakUndeclaredIdentifiers.empty()) {
3591 unsigned Idx = 0;
3592 for (unsigned I = 0, N = WeakUndeclaredIdentifiers[Idx++]; I != N; ++I) {
3593 IdentifierInfo *WeakId = GetIdentifierInfo(WeakUndeclaredIdentifiers,Idx);
3594 IdentifierInfo *AliasId= GetIdentifierInfo(WeakUndeclaredIdentifiers,Idx);
3595 SourceLocation Loc = ReadSourceLocation(F, WeakUndeclaredIdentifiers,Idx);
3596 bool Used = WeakUndeclaredIdentifiers[Idx++];
3597 Sema::WeakInfo WI(AliasId, Loc);
3598 WI.setUsed(Used);
3599 SemaObj->WeakUndeclaredIdentifiers.insert(std::make_pair(WeakId, WI));
3600 }
3601 }
3602
3603 // If there were any VTable uses, deserialize the information and add it
3604 // to Sema's vector and map of VTable uses.
3605 if (!VTableUses.empty()) {
3606 unsigned Idx = 0;
3607 for (unsigned I = 0, N = VTableUses[Idx++]; I != N; ++I) {
3608 CXXRecordDecl *Class = cast<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
3609 SourceLocation Loc = ReadSourceLocation(F, VTableUses, Idx);
3610 bool DefinitionRequired = VTableUses[Idx++];
3611 SemaObj->VTableUses.push_back(std::make_pair(Class, Loc));
3612 SemaObj->VTablesUsed[Class] = DefinitionRequired;
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00003613 }
3614 }
Douglas Gregora868bbd2009-04-21 22:25:48 +00003615}
3616
Sebastian Redl2c499f62010-08-18 23:56:43 +00003617IdentifierInfo* ASTReader::get(const char *NameStart, const char *NameEnd) {
Sebastian Redl78f51772010-08-02 18:30:12 +00003618 // Try to find this name within our on-disk hash tables. We start with the
3619 // most recent one, since that one contains the most up-to-date info.
Sebastian Redl4e6c5672010-07-21 22:31:37 +00003620 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003621 ASTIdentifierLookupTable *IdTable
3622 = (ASTIdentifierLookupTable *)Chain[I]->IdentifierLookupTable;
Sebastian Redl5c415f32010-07-22 17:01:13 +00003623 if (!IdTable)
3624 continue;
Sebastian Redl4e6c5672010-07-21 22:31:37 +00003625 std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart);
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003626 ASTIdentifierLookupTable::iterator Pos = IdTable->find(Key);
Sebastian Redl4e6c5672010-07-21 22:31:37 +00003627 if (Pos == IdTable->end())
3628 continue;
Douglas Gregora868bbd2009-04-21 22:25:48 +00003629
Sebastian Redl4e6c5672010-07-21 22:31:37 +00003630 // Dereferencing the iterator has the effect of building the
3631 // IdentifierInfo node and populating it with the various
3632 // declarations it needs.
Sebastian Redl78f51772010-08-02 18:30:12 +00003633 return *Pos;
Sebastian Redl4e6c5672010-07-21 22:31:37 +00003634 }
Sebastian Redl78f51772010-08-02 18:30:12 +00003635 return 0;
Douglas Gregora868bbd2009-04-21 22:25:48 +00003636}
3637
Douglas Gregor57756ea2010-10-14 22:11:03 +00003638namespace clang {
3639 /// \brief An identifier-lookup iterator that enumerates all of the
3640 /// identifiers stored within a set of AST files.
3641 class ASTIdentifierIterator : public IdentifierIterator {
3642 /// \brief The AST reader whose identifiers are being enumerated.
3643 const ASTReader &Reader;
3644
3645 /// \brief The current index into the chain of AST files stored in
3646 /// the AST reader.
3647 unsigned Index;
3648
3649 /// \brief The current position within the identifier lookup table
3650 /// of the current AST file.
3651 ASTIdentifierLookupTable::key_iterator Current;
3652
3653 /// \brief The end position within the identifier lookup table of
3654 /// the current AST file.
3655 ASTIdentifierLookupTable::key_iterator End;
3656
3657 public:
3658 explicit ASTIdentifierIterator(const ASTReader &Reader);
3659
3660 virtual llvm::StringRef Next();
3661 };
3662}
3663
3664ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader)
3665 : Reader(Reader), Index(Reader.Chain.size() - 1) {
3666 ASTIdentifierLookupTable *IdTable
3667 = (ASTIdentifierLookupTable *)Reader.Chain[Index]->IdentifierLookupTable;
3668 Current = IdTable->key_begin();
3669 End = IdTable->key_end();
3670}
3671
3672llvm::StringRef ASTIdentifierIterator::Next() {
3673 while (Current == End) {
3674 // If we have exhausted all of our AST files, we're done.
3675 if (Index == 0)
3676 return llvm::StringRef();
3677
3678 --Index;
3679 ASTIdentifierLookupTable *IdTable
3680 = (ASTIdentifierLookupTable *)Reader.Chain[Index]->IdentifierLookupTable;
3681 Current = IdTable->key_begin();
3682 End = IdTable->key_end();
3683 }
3684
3685 // We have any identifiers remaining in the current AST file; return
3686 // the next one.
3687 std::pair<const char*, unsigned> Key = *Current;
3688 ++Current;
3689 return llvm::StringRef(Key.first, Key.second);
3690}
3691
3692IdentifierIterator *ASTReader::getIdentifiers() const {
3693 return new ASTIdentifierIterator(*this);
3694}
3695
Mike Stump11289f42009-09-09 15:08:12 +00003696std::pair<ObjCMethodList, ObjCMethodList>
Sebastian Redl2c499f62010-08-18 23:56:43 +00003697ASTReader::ReadMethodPool(Selector Sel) {
Sebastian Redlada023c2010-08-04 20:40:17 +00003698 // Find this selector in a hash table. We want to find the most recent entry.
3699 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
3700 PerFileData &F = *Chain[I];
3701 if (!F.SelectorLookupTable)
3702 continue;
Douglas Gregorc78d3462009-04-24 21:10:55 +00003703
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003704 ASTSelectorLookupTable *PoolTable
3705 = (ASTSelectorLookupTable*)F.SelectorLookupTable;
3706 ASTSelectorLookupTable::iterator Pos = PoolTable->find(Sel);
Sebastian Redlada023c2010-08-04 20:40:17 +00003707 if (Pos != PoolTable->end()) {
3708 ++NumSelectorsRead;
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00003709 // FIXME: Not quite happy with the statistics here. We probably should
3710 // disable this tracking when called via LoadSelector.
3711 // Also, should entries without methods count as misses?
3712 ++NumMethodPoolEntriesRead;
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003713 ASTSelectorLookupTrait::data_type Data = *Pos;
Sebastian Redlada023c2010-08-04 20:40:17 +00003714 if (DeserializationListener)
3715 DeserializationListener->SelectorRead(Data.ID, Sel);
3716 return std::make_pair(Data.Instance, Data.Factory);
3717 }
Douglas Gregor95c13f52009-04-25 17:48:32 +00003718 }
Douglas Gregorc78d3462009-04-24 21:10:55 +00003719
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00003720 ++NumMethodPoolMisses;
Sebastian Redlada023c2010-08-04 20:40:17 +00003721 return std::pair<ObjCMethodList, ObjCMethodList>();
Douglas Gregorc78d3462009-04-24 21:10:55 +00003722}
3723
Sebastian Redl2c499f62010-08-18 23:56:43 +00003724void ASTReader::LoadSelector(Selector Sel) {
Sebastian Redld95a56e2010-08-04 18:21:41 +00003725 // It would be complicated to avoid reading the methods anyway. So don't.
3726 ReadMethodPool(Sel);
3727}
3728
Sebastian Redl2c499f62010-08-18 23:56:43 +00003729void ASTReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) {
Douglas Gregora868bbd2009-04-21 22:25:48 +00003730 assert(ID && "Non-zero identifier ID required");
Douglas Gregor6f00bf82009-04-28 21:53:25 +00003731 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor0e149972009-04-25 19:10:14 +00003732 IdentifiersLoaded[ID - 1] = II;
Sebastian Redlff4a2952010-07-23 23:49:55 +00003733 if (DeserializationListener)
3734 DeserializationListener->IdentifierRead(ID, II);
Douglas Gregora868bbd2009-04-21 22:25:48 +00003735}
3736
Douglas Gregor1342e842009-07-06 18:54:52 +00003737/// \brief Set the globally-visible declarations associated with the given
3738/// identifier.
3739///
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003740/// If the AST reader is currently in a state where the given declaration IDs
Mike Stump11289f42009-09-09 15:08:12 +00003741/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregor1342e842009-07-06 18:54:52 +00003742/// them.
3743///
3744/// \param II an IdentifierInfo that refers to one or more globally-visible
3745/// declarations.
3746///
3747/// \param DeclIDs the set of declaration IDs with the name @p II that are
3748/// visible at global scope.
3749///
3750/// \param Nonrecursive should be true to indicate that the caller knows that
3751/// this call is non-recursive, and therefore the globally-visible declarations
3752/// will not be placed onto the pending queue.
Mike Stump11289f42009-09-09 15:08:12 +00003753void
Sebastian Redl2c499f62010-08-18 23:56:43 +00003754ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Douglas Gregor1342e842009-07-06 18:54:52 +00003755 const llvm::SmallVectorImpl<uint32_t> &DeclIDs,
3756 bool Nonrecursive) {
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00003757 if (NumCurrentElementsDeserializing && !Nonrecursive) {
Douglas Gregor1342e842009-07-06 18:54:52 +00003758 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
3759 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
3760 PII.II = II;
Benjamin Kramer25f9ea62010-09-06 23:43:28 +00003761 PII.DeclIDs.append(DeclIDs.begin(), DeclIDs.end());
Douglas Gregor1342e842009-07-06 18:54:52 +00003762 return;
3763 }
Mike Stump11289f42009-09-09 15:08:12 +00003764
Douglas Gregor1342e842009-07-06 18:54:52 +00003765 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
3766 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
3767 if (SemaObj) {
Douglas Gregor6fd55e02010-08-13 03:15:25 +00003768 if (SemaObj->TUScope) {
3769 // Introduce this declaration into the translation-unit scope
3770 // and add it to the declaration chain for this identifier, so
3771 // that (unqualified) name lookup will find it.
John McCall48871652010-08-21 09:40:31 +00003772 SemaObj->TUScope->AddDecl(D);
Douglas Gregor6fd55e02010-08-13 03:15:25 +00003773 }
Douglas Gregor2fb99df2010-09-24 23:29:12 +00003774 SemaObj->IdResolver.AddDeclToIdentifierChain(II, D);
Douglas Gregor1342e842009-07-06 18:54:52 +00003775 } else {
3776 // Queue this declaration so that it will be added to the
3777 // translation unit scope and identifier's declaration chain
3778 // once a Sema object is known.
3779 PreloadedDecls.push_back(D);
3780 }
3781 }
3782}
3783
Sebastian Redl2c499f62010-08-18 23:56:43 +00003784IdentifierInfo *ASTReader::DecodeIdentifierInfo(unsigned ID) {
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00003785 if (ID == 0)
3786 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00003787
Sebastian Redlc713b962010-07-21 00:46:22 +00003788 if (IdentifiersLoaded.empty()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003789 Error("no identifier table in AST file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00003790 return 0;
3791 }
Mike Stump11289f42009-09-09 15:08:12 +00003792
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00003793 assert(PP && "Forgot to set Preprocessor ?");
Sebastian Redlc713b962010-07-21 00:46:22 +00003794 ID -= 1;
3795 if (!IdentifiersLoaded[ID]) {
3796 unsigned Index = ID;
3797 const char *Str = 0;
3798 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
3799 PerFileData *F = Chain[N - I - 1];
3800 if (Index < F->LocalNumIdentifiers) {
3801 uint32_t Offset = F->IdentifierOffsets[Index];
3802 Str = F->IdentifierTableData + Offset;
3803 break;
3804 }
3805 Index -= F->LocalNumIdentifiers;
3806 }
3807 assert(Str && "Broken Chain");
Douglas Gregor5287b4e2009-04-25 21:04:17 +00003808
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003809 // All of the strings in the AST file are preceded by a 16-bit length.
3810 // Extract that 16-bit length to avoid having to execute strlen().
Ted Kremenekca42a512009-10-23 04:45:31 +00003811 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
3812 // unsigned integers. This is important to avoid integer overflow when
3813 // we cast them to 'unsigned'.
Ted Kremenek49c52322009-10-23 03:57:22 +00003814 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregorab4df582009-04-28 20:01:51 +00003815 unsigned StrLen = (((unsigned) StrLenPtr[0])
3816 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Sebastian Redlc713b962010-07-21 00:46:22 +00003817 IdentifiersLoaded[ID]
Kovarththanan Rajaratnama3b09592010-03-12 10:32:27 +00003818 = &PP->getIdentifierTable().get(Str, StrLen);
Sebastian Redlff4a2952010-07-23 23:49:55 +00003819 if (DeserializationListener)
3820 DeserializationListener->IdentifierRead(ID + 1, IdentifiersLoaded[ID]);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00003821 }
Mike Stump11289f42009-09-09 15:08:12 +00003822
Sebastian Redlc713b962010-07-21 00:46:22 +00003823 return IdentifiersLoaded[ID];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003824}
3825
Sebastian Redl2c499f62010-08-18 23:56:43 +00003826void ASTReader::ReadSLocEntry(unsigned ID) {
Douglas Gregor258ae542009-04-27 06:38:32 +00003827 ReadSLocEntryRecord(ID);
3828}
3829
Sebastian Redl2c499f62010-08-18 23:56:43 +00003830Selector ASTReader::DecodeSelector(unsigned ID) {
Steve Naroff2ddea052009-04-23 10:39:46 +00003831 if (ID == 0)
3832 return Selector();
Mike Stump11289f42009-09-09 15:08:12 +00003833
Sebastian Redlada023c2010-08-04 20:40:17 +00003834 if (ID > SelectorsLoaded.size()) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003835 Error("selector ID out of range in AST file");
Steve Naroff2ddea052009-04-23 10:39:46 +00003836 return Selector();
3837 }
Douglas Gregor95c13f52009-04-25 17:48:32 +00003838
Sebastian Redlada023c2010-08-04 20:40:17 +00003839 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == 0) {
Douglas Gregor95c13f52009-04-25 17:48:32 +00003840 // Load this selector from the selector table.
Sebastian Redlada023c2010-08-04 20:40:17 +00003841 unsigned Idx = ID - 1;
3842 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
3843 PerFileData &F = *Chain[N - I - 1];
3844 if (Idx < F.LocalNumSelectors) {
Sebastian Redld44cd6a2010-08-18 23:57:06 +00003845 ASTSelectorLookupTrait Trait(*this);
Sebastian Redlada023c2010-08-04 20:40:17 +00003846 SelectorsLoaded[ID - 1] =
3847 Trait.ReadKey(F.SelectorLookupTableData + F.SelectorOffsets[Idx], 0);
3848 if (DeserializationListener)
3849 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
3850 break;
3851 }
3852 Idx -= F.LocalNumSelectors;
3853 }
Douglas Gregor95c13f52009-04-25 17:48:32 +00003854 }
3855
Sebastian Redlada023c2010-08-04 20:40:17 +00003856 return SelectorsLoaded[ID - 1];
Steve Naroff2ddea052009-04-23 10:39:46 +00003857}
3858
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003859Selector ASTReader::GetExternalSelector(uint32_t ID) {
Douglas Gregord720daf2010-04-06 17:30:22 +00003860 return DecodeSelector(ID);
3861}
3862
Sebastian Redl2c499f62010-08-18 23:56:43 +00003863uint32_t ASTReader::GetNumExternalSelectors() {
Sebastian Redlada023c2010-08-04 20:40:17 +00003864 // ID 0 (the null selector) is considered an external selector.
3865 return getTotalNumSelectors() + 1;
Douglas Gregord720daf2010-04-06 17:30:22 +00003866}
3867
Mike Stump11289f42009-09-09 15:08:12 +00003868DeclarationName
Sebastian Redl2c499f62010-08-18 23:56:43 +00003869ASTReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003870 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
3871 switch (Kind) {
3872 case DeclarationName::Identifier:
3873 return DeclarationName(GetIdentifierInfo(Record, Idx));
3874
3875 case DeclarationName::ObjCZeroArgSelector:
3876 case DeclarationName::ObjCOneArgSelector:
3877 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff3c301dc2009-04-23 15:15:40 +00003878 return DeclarationName(GetSelector(Record, Idx));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003879
3880 case DeclarationName::CXXConstructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00003881 return Context->DeclarationNames.getCXXConstructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00003882 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003883
3884 case DeclarationName::CXXDestructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00003885 return Context->DeclarationNames.getCXXDestructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00003886 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003887
3888 case DeclarationName::CXXConversionFunctionName:
Chris Lattner8575daa2009-04-27 21:45:14 +00003889 return Context->DeclarationNames.getCXXConversionFunctionName(
Douglas Gregor2211d342009-08-05 05:36:45 +00003890 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003891
3892 case DeclarationName::CXXOperatorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00003893 return Context->DeclarationNames.getCXXOperatorName(
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003894 (OverloadedOperatorKind)Record[Idx++]);
3895
Alexis Hunt3d221f22009-11-29 07:34:05 +00003896 case DeclarationName::CXXLiteralOperatorName:
3897 return Context->DeclarationNames.getCXXLiteralOperatorName(
3898 GetIdentifierInfo(Record, Idx));
3899
Douglas Gregoref84c4b2009-04-09 22:27:44 +00003900 case DeclarationName::CXXUsingDirective:
3901 return DeclarationName::getUsingDirectiveName();
3902 }
3903
3904 // Required to silence GCC warning
3905 return DeclarationName();
3906}
Douglas Gregor55abb232009-04-10 20:39:37 +00003907
Argyrios Kyrtzidis434383d2010-10-15 18:21:24 +00003908void ASTReader::ReadDeclarationNameLoc(PerFileData &F,
3909 DeclarationNameLoc &DNLoc,
3910 DeclarationName Name,
3911 const RecordData &Record, unsigned &Idx) {
3912 switch (Name.getNameKind()) {
3913 case DeclarationName::CXXConstructorName:
3914 case DeclarationName::CXXDestructorName:
3915 case DeclarationName::CXXConversionFunctionName:
3916 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
3917 break;
3918
3919 case DeclarationName::CXXOperatorName:
3920 DNLoc.CXXOperatorName.BeginOpNameLoc
3921 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
3922 DNLoc.CXXOperatorName.EndOpNameLoc
3923 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
3924 break;
3925
3926 case DeclarationName::CXXLiteralOperatorName:
3927 DNLoc.CXXLiteralOperatorName.OpNameLoc
3928 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
3929 break;
3930
3931 case DeclarationName::Identifier:
3932 case DeclarationName::ObjCZeroArgSelector:
3933 case DeclarationName::ObjCOneArgSelector:
3934 case DeclarationName::ObjCMultiArgSelector:
3935 case DeclarationName::CXXUsingDirective:
3936 break;
3937 }
3938}
3939
3940void ASTReader::ReadDeclarationNameInfo(PerFileData &F,
3941 DeclarationNameInfo &NameInfo,
3942 const RecordData &Record, unsigned &Idx) {
3943 NameInfo.setName(ReadDeclarationName(Record, Idx));
3944 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
3945 DeclarationNameLoc DNLoc;
3946 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
3947 NameInfo.setInfo(DNLoc);
3948}
3949
3950void ASTReader::ReadQualifierInfo(PerFileData &F, QualifierInfo &Info,
3951 const RecordData &Record, unsigned &Idx) {
3952 Info.NNS = ReadNestedNameSpecifier(Record, Idx);
3953 Info.NNSRange = ReadSourceRange(F, Record, Idx);
3954 unsigned NumTPLists = Record[Idx++];
3955 Info.NumTemplParamLists = NumTPLists;
3956 if (NumTPLists) {
3957 Info.TemplParamLists = new (*Context) TemplateParameterList*[NumTPLists];
3958 for (unsigned i=0; i != NumTPLists; ++i)
3959 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
3960 }
3961}
3962
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003963TemplateName
Sebastian Redl2c499f62010-08-18 23:56:43 +00003964ASTReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) {
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003965 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003966 switch (Kind) {
3967 case TemplateName::Template:
3968 return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++])));
3969
3970 case TemplateName::OverloadedTemplate: {
3971 unsigned size = Record[Idx++];
3972 UnresolvedSet<8> Decls;
3973 while (size--)
3974 Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++])));
3975
3976 return Context->getOverloadedTemplateName(Decls.begin(), Decls.end());
3977 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003978
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003979 case TemplateName::QualifiedTemplate: {
3980 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3981 bool hasTemplKeyword = Record[Idx++];
3982 TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++]));
3983 return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
3984 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003985
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003986 case TemplateName::DependentTemplate: {
3987 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3988 if (Record[Idx++]) // isIdentifier
3989 return Context->getDependentTemplateName(NNS,
3990 GetIdentifierInfo(Record, Idx));
3991 return Context->getDependentTemplateName(NNS,
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00003992 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003993 }
3994 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003995
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003996 assert(0 && "Unhandled template name kind!");
3997 return TemplateName();
3998}
3999
4000TemplateArgument
Sebastian Redl2c373b92010-10-05 15:59:54 +00004001ASTReader::ReadTemplateArgument(PerFileData &F,
Sebastian Redlc67764e2010-07-22 22:43:28 +00004002 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00004003 switch ((TemplateArgument::ArgKind)Record[Idx++]) {
4004 case TemplateArgument::Null:
4005 return TemplateArgument();
4006 case TemplateArgument::Type:
4007 return TemplateArgument(GetType(Record[Idx++]));
4008 case TemplateArgument::Declaration:
4009 return TemplateArgument(GetDecl(Record[Idx++]));
Argyrios Kyrtzidis0b0369a2010-06-28 09:31:34 +00004010 case TemplateArgument::Integral: {
4011 llvm::APSInt Value = ReadAPSInt(Record, Idx);
4012 QualType T = GetType(Record[Idx++]);
4013 return TemplateArgument(Value, T);
4014 }
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00004015 case TemplateArgument::Template:
4016 return TemplateArgument(ReadTemplateName(Record, Idx));
4017 case TemplateArgument::Expression:
Sebastian Redl2c373b92010-10-05 15:59:54 +00004018 return TemplateArgument(ReadExpr(F));
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00004019 case TemplateArgument::Pack: {
4020 unsigned NumArgs = Record[Idx++];
4021 llvm::SmallVector<TemplateArgument, 8> Args;
4022 Args.reserve(NumArgs);
4023 while (NumArgs--)
Sebastian Redl2c373b92010-10-05 15:59:54 +00004024 Args.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00004025 TemplateArgument TemplArg;
4026 TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true);
4027 return TemplArg;
4028 }
4029 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00004030
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00004031 assert(0 && "Unhandled template argument kind!");
4032 return TemplateArgument();
4033}
4034
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004035TemplateParameterList *
Sebastian Redl2c373b92010-10-05 15:59:54 +00004036ASTReader::ReadTemplateParameterList(PerFileData &F,
4037 const RecordData &Record, unsigned &Idx) {
4038 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
4039 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
4040 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004041
4042 unsigned NumParams = Record[Idx++];
4043 llvm::SmallVector<NamedDecl *, 16> Params;
4044 Params.reserve(NumParams);
4045 while (NumParams--)
4046 Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++])));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00004047
4048 TemplateParameterList* TemplateParams =
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004049 TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc,
4050 Params.data(), Params.size(), RAngleLoc);
4051 return TemplateParams;
4052}
4053
4054void
Sebastian Redl2c499f62010-08-18 23:56:43 +00004055ASTReader::
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004056ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs,
Sebastian Redl2c373b92010-10-05 15:59:54 +00004057 PerFileData &F, const RecordData &Record,
4058 unsigned &Idx) {
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004059 unsigned NumTemplateArgs = Record[Idx++];
4060 TemplArgs.reserve(NumTemplateArgs);
4061 while (NumTemplateArgs--)
Sebastian Redl2c373b92010-10-05 15:59:54 +00004062 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx));
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00004063}
4064
Argyrios Kyrtzidis2c2167a2010-07-02 11:55:32 +00004065/// \brief Read a UnresolvedSet structure.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004066void ASTReader::ReadUnresolvedSet(UnresolvedSetImpl &Set,
Argyrios Kyrtzidis2c2167a2010-07-02 11:55:32 +00004067 const RecordData &Record, unsigned &Idx) {
4068 unsigned NumDecls = Record[Idx++];
4069 while (NumDecls--) {
4070 NamedDecl *D = cast<NamedDecl>(GetDecl(Record[Idx++]));
4071 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
4072 Set.addDecl(D, AS);
4073 }
4074}
4075
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00004076CXXBaseSpecifier
Sebastian Redl2c373b92010-10-05 15:59:54 +00004077ASTReader::ReadCXXBaseSpecifier(PerFileData &F,
Nick Lewycky19b9f952010-07-26 16:56:01 +00004078 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00004079 bool isVirtual = static_cast<bool>(Record[Idx++]);
4080 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
4081 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
Sebastian Redl2c373b92010-10-05 15:59:54 +00004082 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
4083 SourceRange Range = ReadSourceRange(F, Record, Idx);
Nick Lewycky19b9f952010-07-26 16:56:01 +00004084 return CXXBaseSpecifier(Range, isVirtual, isBaseOfClass, AS, TInfo);
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00004085}
4086
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004087std::pair<CXXBaseOrMemberInitializer **, unsigned>
Sebastian Redl2c373b92010-10-05 15:59:54 +00004088ASTReader::ReadCXXBaseOrMemberInitializers(PerFileData &F,
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004089 const RecordData &Record,
4090 unsigned &Idx) {
4091 CXXBaseOrMemberInitializer **BaseOrMemberInitializers = 0;
4092 unsigned NumInitializers = Record[Idx++];
4093 if (NumInitializers) {
4094 ASTContext &C = *getContext();
4095
4096 BaseOrMemberInitializers
4097 = new (C) CXXBaseOrMemberInitializer*[NumInitializers];
4098 for (unsigned i=0; i != NumInitializers; ++i) {
4099 TypeSourceInfo *BaseClassInfo = 0;
4100 bool IsBaseVirtual = false;
4101 FieldDecl *Member = 0;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00004102
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004103 bool IsBaseInitializer = Record[Idx++];
4104 if (IsBaseInitializer) {
Sebastian Redl2c373b92010-10-05 15:59:54 +00004105 BaseClassInfo = GetTypeSourceInfo(F, Record, Idx);
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004106 IsBaseVirtual = Record[Idx++];
4107 } else {
4108 Member = cast<FieldDecl>(GetDecl(Record[Idx++]));
4109 }
Sebastian Redl2c373b92010-10-05 15:59:54 +00004110 SourceLocation MemberLoc = ReadSourceLocation(F, Record, Idx);
4111 Expr *Init = ReadExpr(F);
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004112 FieldDecl *AnonUnionMember
4113 = cast_or_null<FieldDecl>(GetDecl(Record[Idx++]));
Sebastian Redl2c373b92010-10-05 15:59:54 +00004114 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
4115 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004116 bool IsWritten = Record[Idx++];
4117 unsigned SourceOrderOrNumArrayIndices;
4118 llvm::SmallVector<VarDecl *, 8> Indices;
4119 if (IsWritten) {
4120 SourceOrderOrNumArrayIndices = Record[Idx++];
4121 } else {
4122 SourceOrderOrNumArrayIndices = Record[Idx++];
4123 Indices.reserve(SourceOrderOrNumArrayIndices);
4124 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
4125 Indices.push_back(cast<VarDecl>(GetDecl(Record[Idx++])));
4126 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00004127
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004128 CXXBaseOrMemberInitializer *BOMInit;
4129 if (IsBaseInitializer) {
4130 BOMInit = new (C) CXXBaseOrMemberInitializer(C, BaseClassInfo,
4131 IsBaseVirtual, LParenLoc,
4132 Init, RParenLoc);
4133 } else if (IsWritten) {
4134 BOMInit = new (C) CXXBaseOrMemberInitializer(C, Member, MemberLoc,
4135 LParenLoc, Init, RParenLoc);
4136 } else {
4137 BOMInit = CXXBaseOrMemberInitializer::Create(C, Member, MemberLoc,
4138 LParenLoc, Init, RParenLoc,
4139 Indices.data(),
4140 Indices.size());
4141 }
4142
Argyrios Kyrtzidisd05f3e32010-09-06 19:04:27 +00004143 if (IsWritten)
4144 BOMInit->setSourceOrder(SourceOrderOrNumArrayIndices);
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00004145 BOMInit->setAnonUnionMember(AnonUnionMember);
4146 BaseOrMemberInitializers[i] = BOMInit;
4147 }
4148 }
4149
4150 return std::make_pair(BaseOrMemberInitializers, NumInitializers);
4151}
4152
Chris Lattnerca025db2010-05-07 21:43:38 +00004153NestedNameSpecifier *
Sebastian Redl2c499f62010-08-18 23:56:43 +00004154ASTReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) {
Chris Lattnerca025db2010-05-07 21:43:38 +00004155 unsigned N = Record[Idx++];
4156 NestedNameSpecifier *NNS = 0, *Prev = 0;
4157 for (unsigned I = 0; I != N; ++I) {
4158 NestedNameSpecifier::SpecifierKind Kind
4159 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
4160 switch (Kind) {
4161 case NestedNameSpecifier::Identifier: {
4162 IdentifierInfo *II = GetIdentifierInfo(Record, Idx);
4163 NNS = NestedNameSpecifier::Create(*Context, Prev, II);
4164 break;
4165 }
4166
4167 case NestedNameSpecifier::Namespace: {
4168 NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++]));
4169 NNS = NestedNameSpecifier::Create(*Context, Prev, NS);
4170 break;
4171 }
4172
4173 case NestedNameSpecifier::TypeSpec:
4174 case NestedNameSpecifier::TypeSpecWithTemplate: {
4175 Type *T = GetType(Record[Idx++]).getTypePtr();
4176 bool Template = Record[Idx++];
4177 NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T);
4178 break;
4179 }
4180
4181 case NestedNameSpecifier::Global: {
4182 NNS = NestedNameSpecifier::GlobalSpecifier(*Context);
4183 // No associated value, and there can't be a prefix.
4184 break;
4185 }
Chris Lattnerca025db2010-05-07 21:43:38 +00004186 }
Argyrios Kyrtzidisad65c692010-07-07 15:46:30 +00004187 Prev = NNS;
Chris Lattnerca025db2010-05-07 21:43:38 +00004188 }
4189 return NNS;
4190}
4191
4192SourceRange
Sebastian Redl2c373b92010-10-05 15:59:54 +00004193ASTReader::ReadSourceRange(PerFileData &F, const RecordData &Record,
4194 unsigned &Idx) {
4195 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
4196 SourceLocation end = ReadSourceLocation(F, Record, Idx);
Daniel Dunbar6d3bc082010-06-02 15:47:10 +00004197 return SourceRange(beg, end);
Chris Lattnerca025db2010-05-07 21:43:38 +00004198}
4199
Douglas Gregor1daeb692009-04-13 18:14:40 +00004200/// \brief Read an integral value
Sebastian Redl2c499f62010-08-18 23:56:43 +00004201llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor1daeb692009-04-13 18:14:40 +00004202 unsigned BitWidth = Record[Idx++];
4203 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
4204 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
4205 Idx += NumWords;
4206 return Result;
4207}
4208
4209/// \brief Read a signed integral value
Sebastian Redl2c499f62010-08-18 23:56:43 +00004210llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
Douglas Gregor1daeb692009-04-13 18:14:40 +00004211 bool isUnsigned = Record[Idx++];
4212 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
4213}
4214
Douglas Gregore0a3a512009-04-14 21:55:33 +00004215/// \brief Read a floating-point value
Sebastian Redl2c499f62010-08-18 23:56:43 +00004216llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregore0a3a512009-04-14 21:55:33 +00004217 return llvm::APFloat(ReadAPInt(Record, Idx));
4218}
4219
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00004220// \brief Read a string
Sebastian Redl2c499f62010-08-18 23:56:43 +00004221std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00004222 unsigned Len = Record[Idx++];
Jay Foad7d0479f2009-05-21 09:52:38 +00004223 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00004224 Idx += Len;
4225 return Result;
4226}
4227
Sebastian Redl2c499f62010-08-18 23:56:43 +00004228CXXTemporary *ASTReader::ReadCXXTemporary(const RecordData &Record,
Chris Lattnercba86142010-05-10 00:25:06 +00004229 unsigned &Idx) {
4230 CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++]));
4231 return CXXTemporary::Create(*Context, Decl);
4232}
4233
Sebastian Redl2c499f62010-08-18 23:56:43 +00004234DiagnosticBuilder ASTReader::Diag(unsigned DiagID) {
Douglas Gregor92863e42009-04-10 23:10:45 +00004235 return Diag(SourceLocation(), DiagID);
4236}
4237
Sebastian Redl2c499f62010-08-18 23:56:43 +00004238DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00004239 return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
Douglas Gregor55abb232009-04-10 20:39:37 +00004240}
Douglas Gregora9af1d12009-04-17 00:04:06 +00004241
Douglas Gregora868bbd2009-04-21 22:25:48 +00004242/// \brief Retrieve the identifier table associated with the
4243/// preprocessor.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004244IdentifierTable &ASTReader::getIdentifierTable() {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00004245 assert(PP && "Forgot to set Preprocessor ?");
4246 return PP->getIdentifierTable();
Douglas Gregora868bbd2009-04-21 22:25:48 +00004247}
4248
Douglas Gregora9af1d12009-04-17 00:04:06 +00004249/// \brief Record that the given ID maps to the given switch-case
4250/// statement.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004251void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Douglas Gregora9af1d12009-04-17 00:04:06 +00004252 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
4253 SwitchCaseStmts[ID] = SC;
4254}
4255
4256/// \brief Retrieve the switch-case statement with the given ID.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004257SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Douglas Gregora9af1d12009-04-17 00:04:06 +00004258 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
4259 return SwitchCaseStmts[ID];
4260}
Douglas Gregor6cc68a42009-04-17 18:18:49 +00004261
4262/// \brief Record that the given label statement has been
4263/// deserialized and has the given ID.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004264void ASTReader::RecordLabelStmt(LabelStmt *S, unsigned ID) {
Mike Stump11289f42009-09-09 15:08:12 +00004265 assert(LabelStmts.find(ID) == LabelStmts.end() &&
Douglas Gregor6cc68a42009-04-17 18:18:49 +00004266 "Deserialized label twice");
4267 LabelStmts[ID] = S;
4268
4269 // If we've already seen any goto statements that point to this
4270 // label, resolve them now.
4271 typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter;
4272 std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID);
4273 for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto)
4274 Goto->second->setLabel(S);
4275 UnresolvedGotoStmts.erase(Gotos.first, Gotos.second);
Douglas Gregor779d8652009-04-17 18:58:21 +00004276
4277 // If we've already seen any address-label statements that point to
4278 // this label, resolve them now.
4279 typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter;
Mike Stump11289f42009-09-09 15:08:12 +00004280 std::pair<AddrLabelIter, AddrLabelIter> AddrLabels
Douglas Gregor779d8652009-04-17 18:58:21 +00004281 = UnresolvedAddrLabelExprs.equal_range(ID);
Mike Stump11289f42009-09-09 15:08:12 +00004282 for (AddrLabelIter AddrLabel = AddrLabels.first;
Douglas Gregor779d8652009-04-17 18:58:21 +00004283 AddrLabel != AddrLabels.second; ++AddrLabel)
4284 AddrLabel->second->setLabel(S);
4285 UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second);
Douglas Gregor6cc68a42009-04-17 18:18:49 +00004286}
4287
4288/// \brief Set the label of the given statement to the label
4289/// identified by ID.
4290///
4291/// Depending on the order in which the label and other statements
4292/// referencing that label occur, this operation may complete
4293/// immediately (updating the statement) or it may queue the
4294/// statement to be back-patched later.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004295void ASTReader::SetLabelOf(GotoStmt *S, unsigned ID) {
Douglas Gregor6cc68a42009-04-17 18:18:49 +00004296 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
4297 if (Label != LabelStmts.end()) {
4298 // We've already seen this label, so set the label of the goto and
4299 // we're done.
4300 S->setLabel(Label->second);
4301 } else {
4302 // We haven't seen this label yet, so add this goto to the set of
4303 // unresolved goto statements.
4304 UnresolvedGotoStmts.insert(std::make_pair(ID, S));
4305 }
4306}
Douglas Gregor779d8652009-04-17 18:58:21 +00004307
4308/// \brief Set the label of the given expression to the label
4309/// identified by ID.
4310///
4311/// Depending on the order in which the label and other statements
4312/// referencing that label occur, this operation may complete
4313/// immediately (updating the statement) or it may queue the
4314/// statement to be back-patched later.
Sebastian Redl2c499f62010-08-18 23:56:43 +00004315void ASTReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) {
Douglas Gregor779d8652009-04-17 18:58:21 +00004316 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
4317 if (Label != LabelStmts.end()) {
4318 // We've already seen this label, so set the label of the
4319 // label-address expression and we're done.
4320 S->setLabel(Label->second);
4321 } else {
4322 // We haven't seen this label yet, so add this label-address
4323 // expression to the set of unresolved label-address expressions.
4324 UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S));
4325 }
4326}
Douglas Gregor1342e842009-07-06 18:54:52 +00004327
Sebastian Redl2c499f62010-08-18 23:56:43 +00004328void ASTReader::FinishedDeserializing() {
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00004329 assert(NumCurrentElementsDeserializing &&
4330 "FinishedDeserializing not paired with StartedDeserializing");
4331 if (NumCurrentElementsDeserializing == 1) {
Douglas Gregor1342e842009-07-06 18:54:52 +00004332 // If any identifiers with corresponding top-level declarations have
4333 // been loaded, load those declarations now.
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00004334 while (!PendingIdentifierInfos.empty()) {
4335 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II,
4336 PendingIdentifierInfos.front().DeclIDs, true);
4337 PendingIdentifierInfos.pop_front();
Douglas Gregor1342e842009-07-06 18:54:52 +00004338 }
Argyrios Kyrtzidis903ccd62010-07-07 15:46:26 +00004339
4340 // We are not in recursive loading, so it's safe to pass the "interesting"
4341 // decls to the consumer.
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00004342 if (Consumer)
4343 PassInterestingDeclsToConsumer();
Argyrios Kyrtzidisad5f95c2010-10-24 17:26:31 +00004344
4345 assert(PendingForwardRefs.size() == 0 &&
4346 "Some forward refs did not get linked to the definition!");
Douglas Gregor1342e842009-07-06 18:54:52 +00004347 }
Argyrios Kyrtzidisb24355a2010-07-30 10:03:16 +00004348 --NumCurrentElementsDeserializing;
Douglas Gregor1342e842009-07-06 18:54:52 +00004349}
Douglas Gregorb473b072010-08-19 00:28:17 +00004350
Sebastian Redld7dce0a2010-08-24 00:50:04 +00004351ASTReader::ASTReader(Preprocessor &PP, ASTContext *Context,
4352 const char *isysroot, bool DisableValidation)
4353 : Listener(new PCHValidator(PP, *this)), DeserializationListener(0),
4354 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
4355 Diags(PP.getDiagnostics()), SemaObj(0), PP(&PP), Context(Context),
4356 Consumer(0), isysroot(isysroot), DisableValidation(DisableValidation),
4357 NumStatHits(0), NumStatMisses(0), NumSLocEntriesRead(0),
Sebastian Redlc1d035f2010-09-22 20:19:08 +00004358 TotalNumSLocEntries(0), NextSLocOffset(0), NumStatementsRead(0),
4359 TotalNumStatements(0), NumMacrosRead(0), TotalNumMacros(0),
4360 NumSelectorsRead(0), NumMethodPoolEntriesRead(0), NumMethodPoolMisses(0),
Sebastian Redld7dce0a2010-08-24 00:50:04 +00004361 TotalNumMethodPoolEntries(0), NumLexicalDeclContextsRead(0),
4362 TotalLexicalDeclContexts(0), NumVisibleDeclContextsRead(0),
4363 TotalVisibleDeclContexts(0), NumCurrentElementsDeserializing(0) {
4364 RelocatablePCH = false;
4365}
4366
4367ASTReader::ASTReader(SourceManager &SourceMgr, FileManager &FileMgr,
4368 Diagnostic &Diags, const char *isysroot,
4369 bool DisableValidation)
4370 : DeserializationListener(0), SourceMgr(SourceMgr), FileMgr(FileMgr),
4371 Diags(Diags), SemaObj(0), PP(0), Context(0), Consumer(0),
4372 isysroot(isysroot), DisableValidation(DisableValidation), NumStatHits(0),
4373 NumStatMisses(0), NumSLocEntriesRead(0), TotalNumSLocEntries(0),
Sebastian Redlc1d035f2010-09-22 20:19:08 +00004374 NextSLocOffset(0), NumStatementsRead(0), TotalNumStatements(0),
4375 NumMacrosRead(0), TotalNumMacros(0), NumSelectorsRead(0),
4376 NumMethodPoolEntriesRead(0), NumMethodPoolMisses(0),
4377 TotalNumMethodPoolEntries(0), NumLexicalDeclContextsRead(0),
4378 TotalLexicalDeclContexts(0), NumVisibleDeclContextsRead(0),
4379 TotalVisibleDeclContexts(0), NumCurrentElementsDeserializing(0) {
Sebastian Redld7dce0a2010-08-24 00:50:04 +00004380 RelocatablePCH = false;
4381}
4382
4383ASTReader::~ASTReader() {
4384 for (unsigned i = 0, e = Chain.size(); i != e; ++i)
4385 delete Chain[e - i - 1];
4386 // Delete all visible decl lookup tables
4387 for (DeclContextOffsetsMap::iterator I = DeclContextOffsets.begin(),
4388 E = DeclContextOffsets.end();
4389 I != E; ++I) {
4390 for (DeclContextInfos::iterator J = I->second.begin(), F = I->second.end();
4391 J != F; ++J) {
4392 if (J->NameLookupTableData)
4393 delete static_cast<ASTDeclContextNameLookupTable*>(
4394 J->NameLookupTableData);
4395 }
4396 }
4397 for (DeclContextVisibleUpdatesPending::iterator
4398 I = PendingVisibleUpdates.begin(),
4399 E = PendingVisibleUpdates.end();
4400 I != E; ++I) {
4401 for (DeclContextVisibleUpdates::iterator J = I->second.begin(),
4402 F = I->second.end();
4403 J != F; ++J)
4404 delete static_cast<ASTDeclContextNameLookupTable*>(*J);
4405 }
4406}
4407
Sebastian Redl009e7f22010-10-05 16:15:19 +00004408ASTReader::PerFileData::PerFileData(ASTFileType Ty)
4409 : Type(Ty), SizeInBits(0), LocalNumSLocEntries(0), SLocOffsets(0), LocalSLocSize(0),
Sebastian Redl949fe9e2010-09-22 00:42:27 +00004410 LocalNumIdentifiers(0), IdentifierOffsets(0), IdentifierTableData(0),
4411 IdentifierLookupTable(0), LocalNumMacroDefinitions(0),
4412 MacroDefinitionOffsets(0), LocalNumSelectors(0), SelectorOffsets(0),
4413 SelectorLookupTableData(0), SelectorLookupTable(0), LocalNumDecls(0),
4414 DeclOffsets(0), LocalNumTypes(0), TypeOffsets(0), StatCache(0),
Sebastian Redl3f6b7532010-10-01 19:59:12 +00004415 NumPreallocatedPreprocessingEntities(0), NextInSource(0)
Douglas Gregorb473b072010-08-19 00:28:17 +00004416{}
4417
4418ASTReader::PerFileData::~PerFileData() {
4419 delete static_cast<ASTIdentifierLookupTable *>(IdentifierLookupTable);
4420 delete static_cast<ASTSelectorLookupTable *>(SelectorLookupTable);
4421}
4422