blob: a526fd6dc5c76e9994a4bbddeb0b3c162929e237 [file] [log] [blame]
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001//===--- PCHReader.cpp - Precompiled Headers Reader -------------*- C++ -*-===//
2//
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//
10// This file defines the PCHReader class, which reads a precompiled header.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner92ba5ff2009-04-27 05:14:47 +000013
Douglas Gregoref84c4b2009-04-09 22:27:44 +000014#include "clang/Frontend/PCHReader.h"
Douglas Gregor55abb232009-04-10 20:39:37 +000015#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar732ef8a2009-11-11 23:58:53 +000016#include "clang/Frontend/Utils.h"
Douglas Gregora868bbd2009-04-21 22:25:48 +000017#include "../Sema/Sema.h" // FIXME: move Sema headers elsewhere
Douglas Gregor1a0d0b92009-04-14 00:24:19 +000018#include "clang/AST/ASTConsumer.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000019#include "clang/AST/ASTContext.h"
Douglas Gregorfeb84b02009-04-14 21:18:50 +000020#include "clang/AST/Expr.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000021#include "clang/AST/Type.h"
John McCall8f115c62009-10-16 21:56:05 +000022#include "clang/AST/TypeLocVisitor.h"
Chris Lattner34321bc2009-04-10 21:41:48 +000023#include "clang/Lex/MacroInfo.h"
Douglas Gregoraae92242010-03-19 21:51:54 +000024#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff3fa455a2009-04-24 20:03:17 +000026#include "clang/Lex/HeaderSearch.h"
Douglas Gregora868bbd2009-04-21 22:25:48 +000027#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000028#include "clang/Basic/SourceManager.h"
Douglas Gregor4c7626e2009-04-13 16:31:14 +000029#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000030#include "clang/Basic/FileManager.h"
Douglas Gregorbfbde532009-04-10 21:16:55 +000031#include "clang/Basic/TargetInfo.h"
Douglas Gregord54f3a12009-10-05 21:07:28 +000032#include "clang/Basic/Version.h"
Daniel Dunbarf8502d52009-10-17 23:52:28 +000033#include "llvm/ADT/StringExtras.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000034#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000035#include "llvm/Support/MemoryBuffer.h"
John McCall0ad16662009-10-29 08:12:44 +000036#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +000037#include "llvm/System/Path.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000038#include <algorithm>
Douglas Gregorc379c072009-04-28 18:58:38 +000039#include <iterator>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000040#include <cstdio>
Douglas Gregorc5046832009-04-27 18:38:38 +000041#include <sys/stat.h>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000042using namespace clang;
43
44//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000045// PCH reader validator implementation
46//===----------------------------------------------------------------------===//
47
48PCHReaderListener::~PCHReaderListener() {}
49
50bool
51PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts) {
52 const LangOptions &PPLangOpts = PP.getLangOptions();
53#define PARSE_LANGOPT_BENIGN(Option)
54#define PARSE_LANGOPT_IMPORTANT(Option, DiagID) \
55 if (PPLangOpts.Option != LangOpts.Option) { \
56 Reader.Diag(DiagID) << LangOpts.Option << PPLangOpts.Option; \
57 return true; \
58 }
59
60 PARSE_LANGOPT_BENIGN(Trigraphs);
61 PARSE_LANGOPT_BENIGN(BCPLComment);
62 PARSE_LANGOPT_BENIGN(DollarIdents);
63 PARSE_LANGOPT_BENIGN(AsmPreprocessor);
64 PARSE_LANGOPT_IMPORTANT(GNUMode, diag::warn_pch_gnu_extensions);
Chandler Carruthe03aa552010-04-17 20:17:31 +000065 PARSE_LANGOPT_IMPORTANT(GNUKeywords, diag::warn_pch_gnu_keywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000066 PARSE_LANGOPT_BENIGN(ImplicitInt);
67 PARSE_LANGOPT_BENIGN(Digraphs);
68 PARSE_LANGOPT_BENIGN(HexFloats);
69 PARSE_LANGOPT_IMPORTANT(C99, diag::warn_pch_c99);
70 PARSE_LANGOPT_IMPORTANT(Microsoft, diag::warn_pch_microsoft_extensions);
71 PARSE_LANGOPT_IMPORTANT(CPlusPlus, diag::warn_pch_cplusplus);
72 PARSE_LANGOPT_IMPORTANT(CPlusPlus0x, diag::warn_pch_cplusplus0x);
73 PARSE_LANGOPT_BENIGN(CXXOperatorName);
74 PARSE_LANGOPT_IMPORTANT(ObjC1, diag::warn_pch_objective_c);
75 PARSE_LANGOPT_IMPORTANT(ObjC2, diag::warn_pch_objective_c2);
76 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI, diag::warn_pch_nonfragile_abi);
Fariborz Jahanian45878032010-02-09 19:31:38 +000077 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI2, diag::warn_pch_nonfragile_abi2);
Fariborz Jahanian62c56022010-04-22 21:01:59 +000078 PARSE_LANGOPT_IMPORTANT(NoConstantCFStrings,
79 diag::warn_pch_no_constant_cfstrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000080 PARSE_LANGOPT_BENIGN(PascalStrings);
81 PARSE_LANGOPT_BENIGN(WritableStrings);
Mike Stump11289f42009-09-09 15:08:12 +000082 PARSE_LANGOPT_IMPORTANT(LaxVectorConversions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000083 diag::warn_pch_lax_vector_conversions);
Nate Begeman9d905792009-06-25 22:57:40 +000084 PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000085 PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +000086 PARSE_LANGOPT_IMPORTANT(SjLjExceptions, diag::warn_pch_sjlj_exceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000087 PARSE_LANGOPT_IMPORTANT(NeXTRuntime, diag::warn_pch_objc_runtime);
88 PARSE_LANGOPT_IMPORTANT(Freestanding, diag::warn_pch_freestanding);
89 PARSE_LANGOPT_IMPORTANT(NoBuiltin, diag::warn_pch_builtins);
Mike Stump11289f42009-09-09 15:08:12 +000090 PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000091 diag::warn_pch_thread_safe_statics);
Daniel Dunbara77eaeb2009-09-03 04:54:28 +000092 PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000093 PARSE_LANGOPT_IMPORTANT(Blocks, diag::warn_pch_blocks);
94 PARSE_LANGOPT_BENIGN(EmitAllDecls);
95 PARSE_LANGOPT_IMPORTANT(MathErrno, diag::warn_pch_math_errno);
Chris Lattner51924e512010-06-26 21:25:03 +000096 PARSE_LANGOPT_BENIGN(getSignedOverflowBehavior());
Mike Stump11289f42009-09-09 15:08:12 +000097 PARSE_LANGOPT_IMPORTANT(HeinousExtensions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000098 diag::warn_pch_heinous_extensions);
99 // FIXME: Most of the options below are benign if the macro wasn't
100 // used. Unfortunately, this means that a PCH compiled without
101 // optimization can't be used with optimization turned on, even
102 // though the only thing that changes is whether __OPTIMIZE__ was
103 // defined... but if __OPTIMIZE__ never showed up in the header, it
104 // doesn't matter. We could consider making this some special kind
105 // of check.
106 PARSE_LANGOPT_IMPORTANT(Optimize, diag::warn_pch_optimize);
107 PARSE_LANGOPT_IMPORTANT(OptimizeSize, diag::warn_pch_optimize_size);
108 PARSE_LANGOPT_IMPORTANT(Static, diag::warn_pch_static);
109 PARSE_LANGOPT_IMPORTANT(PICLevel, diag::warn_pch_pic_level);
110 PARSE_LANGOPT_IMPORTANT(GNUInline, diag::warn_pch_gnu_inline);
111 PARSE_LANGOPT_IMPORTANT(NoInline, diag::warn_pch_no_inline);
112 PARSE_LANGOPT_IMPORTANT(AccessControl, diag::warn_pch_access_control);
113 PARSE_LANGOPT_IMPORTANT(CharIsSigned, diag::warn_pch_char_signed);
John Thompsoned4e2952009-11-05 20:14:16 +0000114 PARSE_LANGOPT_IMPORTANT(ShortWChar, diag::warn_pch_short_wchar);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000115 if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) {
Mike Stump11289f42009-09-09 15:08:12 +0000116 Reader.Diag(diag::warn_pch_gc_mode)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000117 << LangOpts.getGCMode() << PPLangOpts.getGCMode();
118 return true;
119 }
120 PARSE_LANGOPT_BENIGN(getVisibilityMode());
Daniel Dunbar143021e2009-09-21 04:16:19 +0000121 PARSE_LANGOPT_IMPORTANT(getStackProtectorMode(),
122 diag::warn_pch_stack_protector);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000123 PARSE_LANGOPT_BENIGN(InstantiationDepth);
Nate Begeman9d905792009-06-25 22:57:40 +0000124 PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl);
Mike Stumpd9546382009-12-12 01:27:46 +0000125 PARSE_LANGOPT_BENIGN(CatchUndefined);
Daniel Dunbar143021e2009-09-21 04:16:19 +0000126 PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_pch_elide_constructors);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +0000127#undef PARSE_LANGOPT_IMPORTANT
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000128#undef PARSE_LANGOPT_BENIGN
129
130 return false;
131}
132
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000133bool PCHValidator::ReadTargetTriple(llvm::StringRef Triple) {
134 if (Triple == PP.getTargetInfo().getTriple().str())
135 return false;
136
137 Reader.Diag(diag::warn_pch_target_triple)
138 << Triple << PP.getTargetInfo().getTriple().str();
139 return true;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000140}
141
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000142bool PCHValidator::ReadPredefinesBuffer(llvm::StringRef PCHPredef,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000143 FileID PCHBufferID,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000144 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000145 std::string &SuggestedPredefines) {
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000146 // We are in the context of an implicit include, so the predefines buffer will
147 // have a #include entry for the PCH file itself (as normalized by the
148 // preprocessor initialization). Find it and skip over it in the checking
149 // below.
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000150 llvm::SmallString<256> PCHInclude;
151 PCHInclude += "#include \"";
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000152 PCHInclude += NormalizeDashIncludePath(OriginalFileName);
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000153 PCHInclude += "\"\n";
154 std::pair<llvm::StringRef,llvm::StringRef> Split =
155 llvm::StringRef(PP.getPredefines()).split(PCHInclude.str());
156 llvm::StringRef Left = Split.first, Right = Split.second;
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000157 if (Left == PP.getPredefines()) {
158 Error("Missing PCH include entry!");
159 return true;
160 }
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000161
162 // If the predefines is equal to the joined left and right halves, we're done!
163 if (Left.size() + Right.size() == PCHPredef.size() &&
164 PCHPredef.startswith(Left) && PCHPredef.endswith(Right))
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000165 return false;
166
167 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump11289f42009-09-09 15:08:12 +0000168
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000169 // The predefines buffers are different. Determine what the differences are,
170 // and whether they require us to reject the PCH file.
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000171 llvm::SmallVector<llvm::StringRef, 8> PCHLines;
172 PCHPredef.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
173
174 llvm::SmallVector<llvm::StringRef, 8> CmdLineLines;
175 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
176 Right.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000177
Daniel Dunbar499baed2009-11-11 05:26:28 +0000178 // Sort both sets of predefined buffer lines, since we allow some extra
179 // definitions and they may appear at any point in the output.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000180 std::sort(CmdLineLines.begin(), CmdLineLines.end());
181 std::sort(PCHLines.begin(), PCHLines.end());
182
Daniel Dunbar499baed2009-11-11 05:26:28 +0000183 // Determine which predefines that were used to build the PCH file are missing
184 // from the command line.
185 std::vector<llvm::StringRef> MissingPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000186 std::set_difference(PCHLines.begin(), PCHLines.end(),
187 CmdLineLines.begin(), CmdLineLines.end(),
188 std::back_inserter(MissingPredefines));
189
190 bool MissingDefines = false;
191 bool ConflictingDefines = false;
192 for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000193 llvm::StringRef Missing = MissingPredefines[I];
194 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000195 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
196 return true;
197 }
Mike Stump11289f42009-09-09 15:08:12 +0000198
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000199 // This is a macro definition. Determine the name of the macro we're
200 // defining.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000201 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000202 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000203 = Missing.find_first_of("( \n\r", StartOfMacroName);
204 assert(EndOfMacroName != std::string::npos &&
205 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000206 llvm::StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000207
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000208 // Determine whether this macro was given a different definition on the
209 // command line.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000210 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000211 std::string::size_type MacroDefLen = MacroDefStart.size();
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000212 llvm::SmallVector<llvm::StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000213 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
214 MacroDefStart);
215 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000216 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000217 // Different macro; we're done.
218 ConflictPos = CmdLineLines.end();
Mike Stump11289f42009-09-09 15:08:12 +0000219 break;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000220 }
Mike Stump11289f42009-09-09 15:08:12 +0000221
222 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000223 "Invalid #define in predefines buffer?");
Mike Stump11289f42009-09-09 15:08:12 +0000224 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000225 (*ConflictPos)[MacroDefLen] != '(')
226 continue; // Longer macro name; keep trying.
Mike Stump11289f42009-09-09 15:08:12 +0000227
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000228 // We found a conflicting macro definition.
229 break;
230 }
Mike Stump11289f42009-09-09 15:08:12 +0000231
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000232 if (ConflictPos != CmdLineLines.end()) {
233 Reader.Diag(diag::warn_cmdline_conflicting_macro_def)
234 << MacroName;
235
236 // Show the definition of this macro within the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000237 llvm::StringRef::size_type Offset = PCHPredef.find(Missing);
238 assert(Offset != llvm::StringRef::npos && "Unable to find macro!");
239 SourceLocation PCHMissingLoc = SourceMgr.getLocForStartOfFile(PCHBufferID)
240 .getFileLocWithOffset(Offset);
241 Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) << MacroName;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000242
243 ConflictingDefines = true;
244 continue;
245 }
Mike Stump11289f42009-09-09 15:08:12 +0000246
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000247 // If the macro doesn't conflict, then we'll just pick up the macro
248 // definition from the PCH file. Warn the user that they made a mistake.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000249 if (ConflictingDefines)
250 continue; // Don't complain if there are already conflicting defs
Mike Stump11289f42009-09-09 15:08:12 +0000251
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000252 if (!MissingDefines) {
253 Reader.Diag(diag::warn_cmdline_missing_macro_defs);
254 MissingDefines = true;
255 }
256
257 // Show the definition of this macro within the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000258 llvm::StringRef::size_type Offset = PCHPredef.find(Missing);
259 assert(Offset != llvm::StringRef::npos && "Unable to find macro!");
260 SourceLocation PCHMissingLoc = SourceMgr.getLocForStartOfFile(PCHBufferID)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000261 .getFileLocWithOffset(Offset);
262 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
263 }
Mike Stump11289f42009-09-09 15:08:12 +0000264
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000265 if (ConflictingDefines)
266 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000267
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000268 // Determine what predefines were introduced based on command-line
269 // parameters that were not present when building the PCH
270 // file. Extra #defines are okay, so long as the identifiers being
271 // defined were not used within the precompiled header.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000272 std::vector<llvm::StringRef> ExtraPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000273 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
274 PCHLines.begin(), PCHLines.end(),
Mike Stump11289f42009-09-09 15:08:12 +0000275 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000276 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000277 llvm::StringRef &Extra = ExtraPredefines[I];
278 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000279 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
280 return true;
281 }
282
283 // This is an extra macro definition. Determine the name of the
284 // macro we're defining.
285 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000286 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000287 = Extra.find_first_of("( \n\r", StartOfMacroName);
288 assert(EndOfMacroName != std::string::npos &&
289 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000290 llvm::StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000291
292 // Check whether this name was used somewhere in the PCH file. If
293 // so, defining it as a macro could change behavior, so we reject
294 // the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000295 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar045c92f2009-11-11 00:52:00 +0000296 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000297 return true;
298 }
299
300 // Add this definition to the suggested predefines buffer.
301 SuggestedPredefines += Extra;
302 SuggestedPredefines += '\n';
303 }
304
305 // If we get here, it's because the predefines buffer had compatible
306 // contents. Accept the PCH file.
307 return false;
308}
309
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000310void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
311 unsigned ID) {
312 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
313 ++NumHeaderInfos;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000314}
315
316void PCHValidator::ReadCounter(unsigned Value) {
317 PP.setCounterValue(Value);
318}
319
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000320//===----------------------------------------------------------------------===//
Douglas Gregora868bbd2009-04-21 22:25:48 +0000321// PCH reader implementation
322//===----------------------------------------------------------------------===//
323
Mike Stump11289f42009-09-09 15:08:12 +0000324PCHReader::PCHReader(Preprocessor &PP, ASTContext *Context,
325 const char *isysroot)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000326 : Listener(new PCHValidator(PP, *this)), SourceMgr(PP.getSourceManager()),
327 FileMgr(PP.getFileManager()), Diags(PP.getDiagnostics()),
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000328 SemaObj(0), PP(&PP), Context(Context), StatCache(0), Consumer(0),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000329 IdentifierTableData(0), IdentifierLookupTable(0),
330 IdentifierOffsets(0),
331 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
332 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000333 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregor9507d462010-03-19 22:13:20 +0000334 NumPreallocatedPreprocessingEntities(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000335 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump11289f42009-09-09 15:08:12 +0000336 NumSLocEntriesRead(0), NumStatementsRead(0),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000337 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000338 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump11289f42009-09-09 15:08:12 +0000339 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000340 RelocatablePCH = false;
341}
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000342
343PCHReader::PCHReader(SourceManager &SourceMgr, FileManager &FileMgr,
Mike Stump11289f42009-09-09 15:08:12 +0000344 Diagnostic &Diags, const char *isysroot)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000345 : SourceMgr(SourceMgr), FileMgr(FileMgr), Diags(Diags),
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000346 SemaObj(0), PP(0), Context(0), StatCache(0), Consumer(0),
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000347 IdentifierTableData(0), IdentifierLookupTable(0),
348 IdentifierOffsets(0),
349 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
350 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000351 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregor9507d462010-03-19 22:13:20 +0000352 NumPreallocatedPreprocessingEntities(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000353 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump11289f42009-09-09 15:08:12 +0000354 NumSLocEntriesRead(0), NumStatementsRead(0),
Douglas Gregor258ae542009-04-27 06:38:32 +0000355 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregor1342e842009-07-06 18:54:52 +0000356 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump11289f42009-09-09 15:08:12 +0000357 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000358 RelocatablePCH = false;
359}
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000360
361PCHReader::~PCHReader() {}
362
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000363
Douglas Gregora868bbd2009-04-21 22:25:48 +0000364namespace {
Benjamin Kramer16634c22009-11-28 10:07:24 +0000365class PCHMethodPoolLookupTrait {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000366 PCHReader &Reader;
367
368public:
369 typedef std::pair<ObjCMethodList, ObjCMethodList> data_type;
370
371 typedef Selector external_key_type;
372 typedef external_key_type internal_key_type;
373
374 explicit PCHMethodPoolLookupTrait(PCHReader &Reader) : Reader(Reader) { }
Mike Stump11289f42009-09-09 15:08:12 +0000375
Douglas Gregorc78d3462009-04-24 21:10:55 +0000376 static bool EqualKey(const internal_key_type& a,
377 const internal_key_type& b) {
378 return a == b;
379 }
Mike Stump11289f42009-09-09 15:08:12 +0000380
Douglas Gregorc78d3462009-04-24 21:10:55 +0000381 static unsigned ComputeHash(Selector Sel) {
382 unsigned N = Sel.getNumArgs();
383 if (N == 0)
384 ++N;
385 unsigned R = 5381;
386 for (unsigned I = 0; I != N; ++I)
387 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000388 R = llvm::HashString(II->getName(), R);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000389 return R;
390 }
Mike Stump11289f42009-09-09 15:08:12 +0000391
Douglas Gregorc78d3462009-04-24 21:10:55 +0000392 // This hopefully will just get inlined and removed by the optimizer.
393 static const internal_key_type&
394 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000395
Douglas Gregorc78d3462009-04-24 21:10:55 +0000396 static std::pair<unsigned, unsigned>
397 ReadKeyDataLength(const unsigned char*& d) {
398 using namespace clang::io;
399 unsigned KeyLen = ReadUnalignedLE16(d);
400 unsigned DataLen = ReadUnalignedLE16(d);
401 return std::make_pair(KeyLen, DataLen);
402 }
Mike Stump11289f42009-09-09 15:08:12 +0000403
Douglas Gregor95c13f52009-04-25 17:48:32 +0000404 internal_key_type ReadKey(const unsigned char* d, unsigned) {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000405 using namespace clang::io;
Chris Lattner8575daa2009-04-27 21:45:14 +0000406 SelectorTable &SelTable = Reader.getContext()->Selectors;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000407 unsigned N = ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +0000408 IdentifierInfo *FirstII
Douglas Gregorc78d3462009-04-24 21:10:55 +0000409 = Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d));
410 if (N == 0)
411 return SelTable.getNullarySelector(FirstII);
412 else if (N == 1)
413 return SelTable.getUnarySelector(FirstII);
414
415 llvm::SmallVector<IdentifierInfo *, 16> Args;
416 Args.push_back(FirstII);
417 for (unsigned I = 1; I != N; ++I)
418 Args.push_back(Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d)));
419
Douglas Gregor038c3382009-05-22 22:45:36 +0000420 return SelTable.getSelector(N, Args.data());
Douglas Gregorc78d3462009-04-24 21:10:55 +0000421 }
Mike Stump11289f42009-09-09 15:08:12 +0000422
Douglas Gregorc78d3462009-04-24 21:10:55 +0000423 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen) {
424 using namespace clang::io;
425 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
426 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
427
428 data_type Result;
429
430 // Load instance methods
431 ObjCMethodList *Prev = 0;
432 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000433 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000434 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
435 if (!Result.first.Method) {
436 // This is the first method, which is the easy case.
437 Result.first.Method = Method;
438 Prev = &Result.first;
439 continue;
440 }
441
Ted Kremenekda4abf12010-02-11 00:53:01 +0000442 ObjCMethodList *Mem =
443 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
444 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000445 Prev = Prev->Next;
446 }
447
448 // Load factory methods
449 Prev = 0;
450 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000451 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000452 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
453 if (!Result.second.Method) {
454 // This is the first method, which is the easy case.
455 Result.second.Method = Method;
456 Prev = &Result.second;
457 continue;
458 }
459
Ted Kremenekda4abf12010-02-11 00:53:01 +0000460 ObjCMethodList *Mem =
461 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
462 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000463 Prev = Prev->Next;
464 }
465
466 return Result;
467 }
468};
Mike Stump11289f42009-09-09 15:08:12 +0000469
470} // end anonymous namespace
Douglas Gregorc78d3462009-04-24 21:10:55 +0000471
472/// \brief The on-disk hash table used for the global method pool.
Mike Stump11289f42009-09-09 15:08:12 +0000473typedef OnDiskChainedHashTable<PCHMethodPoolLookupTrait>
Douglas Gregorc78d3462009-04-24 21:10:55 +0000474 PCHMethodPoolLookupTable;
475
476namespace {
Benjamin Kramer16634c22009-11-28 10:07:24 +0000477class PCHIdentifierLookupTrait {
Douglas Gregora868bbd2009-04-21 22:25:48 +0000478 PCHReader &Reader;
479
480 // If we know the IdentifierInfo in advance, it is here and we will
481 // not build a new one. Used when deserializing information about an
482 // identifier that was constructed before the PCH file was read.
483 IdentifierInfo *KnownII;
484
485public:
486 typedef IdentifierInfo * data_type;
487
488 typedef const std::pair<const char*, unsigned> external_key_type;
489
490 typedef external_key_type internal_key_type;
491
Mike Stump11289f42009-09-09 15:08:12 +0000492 explicit PCHIdentifierLookupTrait(PCHReader &Reader, IdentifierInfo *II = 0)
Douglas Gregora868bbd2009-04-21 22:25:48 +0000493 : Reader(Reader), KnownII(II) { }
Mike Stump11289f42009-09-09 15:08:12 +0000494
Douglas Gregora868bbd2009-04-21 22:25:48 +0000495 static bool EqualKey(const internal_key_type& a,
496 const internal_key_type& b) {
497 return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0
498 : false;
499 }
Mike Stump11289f42009-09-09 15:08:12 +0000500
Douglas Gregora868bbd2009-04-21 22:25:48 +0000501 static unsigned ComputeHash(const internal_key_type& a) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000502 return llvm::HashString(llvm::StringRef(a.first, a.second));
Douglas Gregora868bbd2009-04-21 22:25:48 +0000503 }
Mike Stump11289f42009-09-09 15:08:12 +0000504
Douglas Gregora868bbd2009-04-21 22:25:48 +0000505 // This hopefully will just get inlined and removed by the optimizer.
506 static const internal_key_type&
507 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000508
Douglas Gregora868bbd2009-04-21 22:25:48 +0000509 static std::pair<unsigned, unsigned>
510 ReadKeyDataLength(const unsigned char*& d) {
511 using namespace clang::io;
Douglas Gregor6b7bf5a2009-04-25 20:26:24 +0000512 unsigned DataLen = ReadUnalignedLE16(d);
Douglas Gregor5287b4e2009-04-25 21:04:17 +0000513 unsigned KeyLen = ReadUnalignedLE16(d);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000514 return std::make_pair(KeyLen, DataLen);
515 }
Mike Stump11289f42009-09-09 15:08:12 +0000516
Douglas Gregora868bbd2009-04-21 22:25:48 +0000517 static std::pair<const char*, unsigned>
518 ReadKey(const unsigned char* d, unsigned n) {
519 assert(n >= 2 && d[n-1] == '\0');
520 return std::make_pair((const char*) d, n-1);
521 }
Mike Stump11289f42009-09-09 15:08:12 +0000522
523 IdentifierInfo *ReadData(const internal_key_type& k,
Douglas Gregora868bbd2009-04-21 22:25:48 +0000524 const unsigned char* d,
525 unsigned DataLen) {
526 using namespace clang::io;
Douglas Gregor1d583f22009-04-28 21:18:29 +0000527 pch::IdentID ID = ReadUnalignedLE32(d);
528 bool IsInteresting = ID & 0x01;
529
530 // Wipe out the "is interesting" bit.
531 ID = ID >> 1;
532
533 if (!IsInteresting) {
534 // For unintersting identifiers, just build the IdentifierInfo
535 // and associate it with the persistent ID.
536 IdentifierInfo *II = KnownII;
537 if (!II)
538 II = &Reader.getIdentifierTable().CreateIdentifierInfo(
539 k.first, k.first + k.second);
540 Reader.SetIdentifierInfo(ID, II);
541 return II;
542 }
543
Douglas Gregorb9256522009-04-28 21:32:13 +0000544 unsigned Bits = ReadUnalignedLE16(d);
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000545 bool CPlusPlusOperatorKeyword = Bits & 0x01;
546 Bits >>= 1;
547 bool Poisoned = Bits & 0x01;
548 Bits >>= 1;
549 bool ExtensionToken = Bits & 0x01;
550 Bits >>= 1;
551 bool hasMacroDefinition = Bits & 0x01;
552 Bits >>= 1;
553 unsigned ObjCOrBuiltinID = Bits & 0x3FF;
554 Bits >>= 10;
Mike Stump11289f42009-09-09 15:08:12 +0000555
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000556 assert(Bits == 0 && "Extra bits in the identifier?");
Douglas Gregorb9256522009-04-28 21:32:13 +0000557 DataLen -= 6;
Douglas Gregora868bbd2009-04-21 22:25:48 +0000558
559 // Build the IdentifierInfo itself and link the identifier ID with
560 // the new IdentifierInfo.
561 IdentifierInfo *II = KnownII;
562 if (!II)
Douglas Gregor6b7bf5a2009-04-25 20:26:24 +0000563 II = &Reader.getIdentifierTable().CreateIdentifierInfo(
564 k.first, k.first + k.second);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000565 Reader.SetIdentifierInfo(ID, II);
566
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000567 // Set or check the various bits in the IdentifierInfo structure.
568 // FIXME: Load token IDs lazily, too?
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000569 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
Mike Stump11289f42009-09-09 15:08:12 +0000570 assert(II->isExtensionToken() == ExtensionToken &&
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000571 "Incorrect extension token flag");
572 (void)ExtensionToken;
573 II->setIsPoisoned(Poisoned);
574 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
575 "Incorrect C++ operator keyword flag");
576 (void)CPlusPlusOperatorKeyword;
577
Douglas Gregorc3366a52009-04-21 23:56:24 +0000578 // If this identifier is a macro, deserialize the macro
579 // definition.
580 if (hasMacroDefinition) {
Douglas Gregorb9256522009-04-28 21:32:13 +0000581 uint32_t Offset = ReadUnalignedLE32(d);
Douglas Gregorc3366a52009-04-21 23:56:24 +0000582 Reader.ReadMacroRecord(Offset);
Douglas Gregorb9256522009-04-28 21:32:13 +0000583 DataLen -= 4;
Douglas Gregorc3366a52009-04-21 23:56:24 +0000584 }
Douglas Gregora868bbd2009-04-21 22:25:48 +0000585
586 // Read all of the declarations visible at global scope with this
587 // name.
Chris Lattner1d728882009-04-27 22:17:41 +0000588 if (Reader.getContext() == 0) return II;
Douglas Gregor1342e842009-07-06 18:54:52 +0000589 if (DataLen > 0) {
590 llvm::SmallVector<uint32_t, 4> DeclIDs;
591 for (; DataLen > 0; DataLen -= 4)
592 DeclIDs.push_back(ReadUnalignedLE32(d));
593 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000594 }
Mike Stump11289f42009-09-09 15:08:12 +0000595
Douglas Gregora868bbd2009-04-21 22:25:48 +0000596 return II;
597 }
598};
Mike Stump11289f42009-09-09 15:08:12 +0000599
600} // end anonymous namespace
Douglas Gregora868bbd2009-04-21 22:25:48 +0000601
602/// \brief The on-disk hash table used to contain information about
603/// all of the identifiers in the program.
Mike Stump11289f42009-09-09 15:08:12 +0000604typedef OnDiskChainedHashTable<PCHIdentifierLookupTrait>
Douglas Gregora868bbd2009-04-21 22:25:48 +0000605 PCHIdentifierLookupTable;
606
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000607void PCHReader::Error(const char *Msg) {
608 Diag(diag::err_fe_pch_malformed) << Msg;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000609}
610
Douglas Gregor92863e42009-04-10 23:10:45 +0000611/// \brief Check the contents of the predefines buffer against the
612/// contents of the predefines buffer used to build the PCH file.
613///
614/// The contents of the two predefines buffers should be the same. If
615/// not, then some command-line option changed the preprocessor state
616/// and we must reject the PCH file.
617///
618/// \param PCHPredef The start of the predefines buffer in the PCH
619/// file.
620///
621/// \param PCHPredefLen The length of the predefines buffer in the PCH
622/// file.
623///
624/// \param PCHBufferID The FileID for the PCH predefines buffer.
625///
626/// \returns true if there was a mismatch (in which case the PCH file
627/// should be ignored), or false otherwise.
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000628bool PCHReader::CheckPredefinesBuffer(llvm::StringRef PCHPredef,
Douglas Gregor92863e42009-04-10 23:10:45 +0000629 FileID PCHBufferID) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000630 if (Listener)
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000631 return Listener->ReadPredefinesBuffer(PCHPredef, PCHBufferID,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000632 ActualOriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000633 SuggestedPredefines);
Douglas Gregorc379c072009-04-28 18:58:38 +0000634 return false;
Douglas Gregor92863e42009-04-10 23:10:45 +0000635}
636
Douglas Gregorc5046832009-04-27 18:38:38 +0000637//===----------------------------------------------------------------------===//
638// Source Manager Deserialization
639//===----------------------------------------------------------------------===//
640
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000641/// \brief Read the line table in the source manager block.
642/// \returns true if ther was an error.
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000643bool PCHReader::ParseLineTable(llvm::SmallVectorImpl<uint64_t> &Record) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000644 unsigned Idx = 0;
645 LineTableInfo &LineTable = SourceMgr.getLineTable();
646
647 // Parse the file names
Douglas Gregora8854652009-04-13 17:12:42 +0000648 std::map<int, int> FileIDs;
649 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000650 // Extract the file name
651 unsigned FilenameLen = Record[Idx++];
652 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
653 Idx += FilenameLen;
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000654 MaybeAddSystemRootToFilename(Filename);
Mike Stump11289f42009-09-09 15:08:12 +0000655 FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(),
Douglas Gregora8854652009-04-13 17:12:42 +0000656 Filename.size());
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000657 }
658
659 // Parse the line entries
660 std::vector<LineEntry> Entries;
661 while (Idx < Record.size()) {
Douglas Gregora8854652009-04-13 17:12:42 +0000662 int FID = FileIDs[Record[Idx++]];
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000663
664 // Extract the line entries
665 unsigned NumEntries = Record[Idx++];
666 Entries.clear();
667 Entries.reserve(NumEntries);
668 for (unsigned I = 0; I != NumEntries; ++I) {
669 unsigned FileOffset = Record[Idx++];
670 unsigned LineNo = Record[Idx++];
671 int FilenameID = Record[Idx++];
Mike Stump11289f42009-09-09 15:08:12 +0000672 SrcMgr::CharacteristicKind FileKind
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000673 = (SrcMgr::CharacteristicKind)Record[Idx++];
674 unsigned IncludeOffset = Record[Idx++];
675 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
676 FileKind, IncludeOffset));
677 }
678 LineTable.AddEntry(FID, Entries);
679 }
680
681 return false;
682}
683
Douglas Gregorc5046832009-04-27 18:38:38 +0000684namespace {
685
Benjamin Kramer16634c22009-11-28 10:07:24 +0000686class PCHStatData {
Douglas Gregorc5046832009-04-27 18:38:38 +0000687public:
688 const bool hasStat;
689 const ino_t ino;
690 const dev_t dev;
691 const mode_t mode;
692 const time_t mtime;
693 const off_t size;
Mike Stump11289f42009-09-09 15:08:12 +0000694
Douglas Gregorc5046832009-04-27 18:38:38 +0000695 PCHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Mike Stump11289f42009-09-09 15:08:12 +0000696 : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {}
697
Douglas Gregorc5046832009-04-27 18:38:38 +0000698 PCHStatData()
699 : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {}
700};
701
Benjamin Kramer16634c22009-11-28 10:07:24 +0000702class PCHStatLookupTrait {
Douglas Gregorc5046832009-04-27 18:38:38 +0000703 public:
704 typedef const char *external_key_type;
705 typedef const char *internal_key_type;
706
707 typedef PCHStatData data_type;
708
709 static unsigned ComputeHash(const char *path) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000710 return llvm::HashString(path);
Douglas Gregorc5046832009-04-27 18:38:38 +0000711 }
712
713 static internal_key_type GetInternalKey(const char *path) { return path; }
714
715 static bool EqualKey(internal_key_type a, internal_key_type b) {
716 return strcmp(a, b) == 0;
717 }
718
719 static std::pair<unsigned, unsigned>
720 ReadKeyDataLength(const unsigned char*& d) {
721 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
722 unsigned DataLen = (unsigned) *d++;
723 return std::make_pair(KeyLen + 1, DataLen);
724 }
725
726 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
727 return (const char *)d;
728 }
729
730 static data_type ReadData(const internal_key_type, const unsigned char *d,
731 unsigned /*DataLen*/) {
732 using namespace clang::io;
733
734 if (*d++ == 1)
735 return data_type();
736
737 ino_t ino = (ino_t) ReadUnalignedLE32(d);
738 dev_t dev = (dev_t) ReadUnalignedLE32(d);
739 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +0000740 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregorc5046832009-04-27 18:38:38 +0000741 off_t size = (off_t) ReadUnalignedLE64(d);
742 return data_type(ino, dev, mode, mtime, size);
743 }
744};
745
746/// \brief stat() cache for precompiled headers.
747///
748/// This cache is very similar to the stat cache used by pretokenized
749/// headers.
Benjamin Kramer16634c22009-11-28 10:07:24 +0000750class PCHStatCache : public StatSysCallCache {
Douglas Gregorc5046832009-04-27 18:38:38 +0000751 typedef OnDiskChainedHashTable<PCHStatLookupTrait> CacheTy;
752 CacheTy *Cache;
753
754 unsigned &NumStatHits, &NumStatMisses;
Mike Stump11289f42009-09-09 15:08:12 +0000755public:
Douglas Gregorc5046832009-04-27 18:38:38 +0000756 PCHStatCache(const unsigned char *Buckets,
757 const unsigned char *Base,
758 unsigned &NumStatHits,
Mike Stump11289f42009-09-09 15:08:12 +0000759 unsigned &NumStatMisses)
Douglas Gregorc5046832009-04-27 18:38:38 +0000760 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
761 Cache = CacheTy::Create(Buckets, Base);
762 }
763
764 ~PCHStatCache() { delete Cache; }
Mike Stump11289f42009-09-09 15:08:12 +0000765
Douglas Gregorc5046832009-04-27 18:38:38 +0000766 int stat(const char *path, struct stat *buf) {
767 // Do the lookup for the file's data in the PCH file.
768 CacheTy::iterator I = Cache->find(path);
769
770 // If we don't get a hit in the PCH file just forward to 'stat'.
771 if (I == Cache->end()) {
772 ++NumStatMisses;
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000773 return StatSysCallCache::stat(path, buf);
Douglas Gregorc5046832009-04-27 18:38:38 +0000774 }
Mike Stump11289f42009-09-09 15:08:12 +0000775
Douglas Gregorc5046832009-04-27 18:38:38 +0000776 ++NumStatHits;
777 PCHStatData Data = *I;
Mike Stump11289f42009-09-09 15:08:12 +0000778
Douglas Gregorc5046832009-04-27 18:38:38 +0000779 if (!Data.hasStat)
780 return 1;
781
782 buf->st_ino = Data.ino;
783 buf->st_dev = Data.dev;
784 buf->st_mtime = Data.mtime;
785 buf->st_mode = Data.mode;
786 buf->st_size = Data.size;
787 return 0;
788 }
789};
790} // end anonymous namespace
791
792
Douglas Gregora7f71a92009-04-10 03:52:48 +0000793/// \brief Read the source manager block
Douglas Gregor92863e42009-04-10 23:10:45 +0000794PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() {
Douglas Gregora7f71a92009-04-10 03:52:48 +0000795 using namespace SrcMgr;
Douglas Gregor258ae542009-04-27 06:38:32 +0000796
797 // Set the source-location entry cursor to the current position in
798 // the stream. This cursor will be used to read the contents of the
799 // source manager block initially, and then lazily read
800 // source-location entries as needed.
801 SLocEntryCursor = Stream;
802
803 // The stream itself is going to skip over the source manager block.
804 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000805 Error("malformed block record in PCH file");
Douglas Gregor258ae542009-04-27 06:38:32 +0000806 return Failure;
807 }
808
809 // Enter the source manager block.
810 if (SLocEntryCursor.EnterSubBlock(pch::SOURCE_MANAGER_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000811 Error("malformed source manager block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000812 return Failure;
813 }
Douglas Gregora7f71a92009-04-10 03:52:48 +0000814
Douglas Gregora7f71a92009-04-10 03:52:48 +0000815 RecordData Record;
816 while (true) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000817 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregora7f71a92009-04-10 03:52:48 +0000818 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000819 if (SLocEntryCursor.ReadBlockEnd()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000820 Error("error at end of Source Manager block in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000821 return Failure;
822 }
Douglas Gregor92863e42009-04-10 23:10:45 +0000823 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +0000824 }
Mike Stump11289f42009-09-09 15:08:12 +0000825
Douglas Gregora7f71a92009-04-10 03:52:48 +0000826 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
827 // No known subblocks, always skip them.
Douglas Gregor258ae542009-04-27 06:38:32 +0000828 SLocEntryCursor.ReadSubBlockID();
829 if (SLocEntryCursor.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000830 Error("malformed block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000831 return Failure;
832 }
Douglas Gregora7f71a92009-04-10 03:52:48 +0000833 continue;
834 }
Mike Stump11289f42009-09-09 15:08:12 +0000835
Douglas Gregora7f71a92009-04-10 03:52:48 +0000836 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000837 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregora7f71a92009-04-10 03:52:48 +0000838 continue;
839 }
Mike Stump11289f42009-09-09 15:08:12 +0000840
Douglas Gregora7f71a92009-04-10 03:52:48 +0000841 // Read a record.
842 const char *BlobStart;
843 unsigned BlobLen;
844 Record.clear();
Douglas Gregor258ae542009-04-27 06:38:32 +0000845 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregora7f71a92009-04-10 03:52:48 +0000846 default: // Default behavior: ignore.
847 break;
848
Chris Lattner184e65d2009-04-14 23:22:57 +0000849 case pch::SM_LINE_TABLE:
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000850 if (ParseLineTable(Record))
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000851 return Failure;
Chris Lattner184e65d2009-04-14 23:22:57 +0000852 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +0000853
Douglas Gregor258ae542009-04-27 06:38:32 +0000854 case pch::SM_SLOC_FILE_ENTRY:
855 case pch::SM_SLOC_BUFFER_ENTRY:
856 case pch::SM_SLOC_INSTANTIATION_ENTRY:
857 // Once we hit one of the source location entries, we're done.
858 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +0000859 }
860 }
861}
862
Douglas Gregor258ae542009-04-27 06:38:32 +0000863/// \brief Read in the source location entry with the given ID.
864PCHReader::PCHReadResult PCHReader::ReadSLocEntryRecord(unsigned ID) {
865 if (ID == 0)
866 return Success;
867
868 if (ID > TotalNumSLocEntries) {
869 Error("source location entry ID out-of-range for PCH file");
870 return Failure;
871 }
872
873 ++NumSLocEntriesRead;
874 SLocEntryCursor.JumpToBit(SLocOffsets[ID - 1]);
875 unsigned Code = SLocEntryCursor.ReadCode();
876 if (Code == llvm::bitc::END_BLOCK ||
877 Code == llvm::bitc::ENTER_SUBBLOCK ||
878 Code == llvm::bitc::DEFINE_ABBREV) {
879 Error("incorrectly-formatted source location entry in PCH file");
880 return Failure;
881 }
882
Douglas Gregor258ae542009-04-27 06:38:32 +0000883 RecordData Record;
884 const char *BlobStart;
885 unsigned BlobLen;
886 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
887 default:
888 Error("incorrectly-formatted source location entry in PCH file");
889 return Failure;
890
891 case pch::SM_SLOC_FILE_ENTRY: {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000892 std::string Filename(BlobStart, BlobStart + BlobLen);
893 MaybeAddSystemRootToFilename(Filename);
894 const FileEntry *File = FileMgr.getFile(Filename);
Chris Lattnerd20dc872009-06-15 04:35:16 +0000895 if (File == 0) {
896 std::string ErrorStr = "could not find file '";
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000897 ErrorStr += Filename;
Chris Lattnerd20dc872009-06-15 04:35:16 +0000898 ErrorStr += "' referenced by PCH file";
899 Error(ErrorStr.c_str());
900 return Failure;
901 }
Mike Stump11289f42009-09-09 15:08:12 +0000902
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000903 if (Record.size() < 10) {
Ted Kremenekabb1ddd2010-03-18 21:23:05 +0000904 Error("source location entry is incorrect");
905 return Failure;
906 }
907
Douglas Gregor08288f22010-04-09 15:54:22 +0000908 if ((off_t)Record[4] != File->getSize()
909#if !defined(LLVM_ON_WIN32)
910 // In our regression testing, the Windows file system seems to
911 // have inconsistent modification times that sometimes
912 // erroneously trigger this error-handling path.
913 || (time_t)Record[5] != File->getModificationTime()
914#endif
915 ) {
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000916 Diag(diag::err_fe_pch_file_modified)
917 << Filename;
918 return Failure;
919 }
920
Douglas Gregor258ae542009-04-27 06:38:32 +0000921 FileID FID = SourceMgr.createFileID(File,
922 SourceLocation::getFromRawEncoding(Record[1]),
923 (SrcMgr::CharacteristicKind)Record[2],
924 ID, Record[0]);
925 if (Record[3])
926 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile())
927 .setHasLineDirectives();
928
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000929 // Reconstruct header-search information for this file.
930 HeaderFileInfo HFI;
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000931 HFI.isImport = Record[6];
932 HFI.DirInfo = Record[7];
933 HFI.NumIncludes = Record[8];
934 HFI.ControllingMacroID = Record[9];
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000935 if (Listener)
936 Listener->ReadHeaderFileInfo(HFI, File->getUID());
Douglas Gregor258ae542009-04-27 06:38:32 +0000937 break;
938 }
939
940 case pch::SM_SLOC_BUFFER_ENTRY: {
941 const char *Name = BlobStart;
942 unsigned Offset = Record[0];
943 unsigned Code = SLocEntryCursor.ReadCode();
944 Record.clear();
Mike Stump11289f42009-09-09 15:08:12 +0000945 unsigned RecCode
Douglas Gregor258ae542009-04-27 06:38:32 +0000946 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000947
948 if (RecCode != pch::SM_SLOC_BUFFER_BLOB) {
949 Error("PCH record has invalid code");
950 return Failure;
951 }
952
Douglas Gregor258ae542009-04-27 06:38:32 +0000953 llvm::MemoryBuffer *Buffer
Chris Lattner58c79342010-04-05 22:42:27 +0000954 = llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(BlobStart, BlobLen - 1),
955 Name);
Douglas Gregor258ae542009-04-27 06:38:32 +0000956 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset);
Mike Stump11289f42009-09-09 15:08:12 +0000957
Douglas Gregore6648fb2009-04-28 20:33:11 +0000958 if (strcmp(Name, "<built-in>") == 0) {
959 PCHPredefinesBufferID = BufferID;
960 PCHPredefines = BlobStart;
961 PCHPredefinesLen = BlobLen - 1;
962 }
Douglas Gregor258ae542009-04-27 06:38:32 +0000963
964 break;
965 }
966
967 case pch::SM_SLOC_INSTANTIATION_ENTRY: {
Mike Stump11289f42009-09-09 15:08:12 +0000968 SourceLocation SpellingLoc
Douglas Gregor258ae542009-04-27 06:38:32 +0000969 = SourceLocation::getFromRawEncoding(Record[1]);
970 SourceMgr.createInstantiationLoc(SpellingLoc,
971 SourceLocation::getFromRawEncoding(Record[2]),
972 SourceLocation::getFromRawEncoding(Record[3]),
973 Record[4],
974 ID,
975 Record[0]);
976 break;
Mike Stump11289f42009-09-09 15:08:12 +0000977 }
Douglas Gregor258ae542009-04-27 06:38:32 +0000978 }
979
980 return Success;
981}
982
Chris Lattnere78a6be2009-04-27 01:05:14 +0000983/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
984/// specified cursor. Read the abbreviations that are at the top of the block
985/// and then leave the cursor pointing into the block.
986bool PCHReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
987 unsigned BlockID) {
988 if (Cursor.EnterSubBlock(BlockID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000989 Error("malformed block record in PCH file");
Chris Lattnere78a6be2009-04-27 01:05:14 +0000990 return Failure;
991 }
Mike Stump11289f42009-09-09 15:08:12 +0000992
Chris Lattnere78a6be2009-04-27 01:05:14 +0000993 while (true) {
994 unsigned Code = Cursor.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +0000995
Chris Lattnere78a6be2009-04-27 01:05:14 +0000996 // We expect all abbrevs to be at the start of the block.
997 if (Code != llvm::bitc::DEFINE_ABBREV)
998 return false;
999 Cursor.ReadAbbrevRecord();
1000 }
1001}
1002
Douglas Gregorc3366a52009-04-21 23:56:24 +00001003void PCHReader::ReadMacroRecord(uint64_t Offset) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001004 assert(PP && "Forgot to set Preprocessor ?");
Mike Stump11289f42009-09-09 15:08:12 +00001005
Douglas Gregorc3366a52009-04-21 23:56:24 +00001006 // Keep track of where we are in the stream, then jump back there
1007 // after reading this macro.
1008 SavedStreamPosition SavedPosition(Stream);
1009
1010 Stream.JumpToBit(Offset);
1011 RecordData Record;
1012 llvm::SmallVector<IdentifierInfo*, 16> MacroArgs;
1013 MacroInfo *Macro = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001014
Douglas Gregorc3366a52009-04-21 23:56:24 +00001015 while (true) {
1016 unsigned Code = Stream.ReadCode();
1017 switch (Code) {
1018 case llvm::bitc::END_BLOCK:
1019 return;
1020
1021 case llvm::bitc::ENTER_SUBBLOCK:
1022 // No known subblocks, always skip them.
1023 Stream.ReadSubBlockID();
1024 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001025 Error("malformed block record in PCH file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001026 return;
1027 }
1028 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001029
Douglas Gregorc3366a52009-04-21 23:56:24 +00001030 case llvm::bitc::DEFINE_ABBREV:
1031 Stream.ReadAbbrevRecord();
1032 continue;
1033 default: break;
1034 }
1035
1036 // Read a record.
1037 Record.clear();
1038 pch::PreprocessorRecordTypes RecType =
1039 (pch::PreprocessorRecordTypes)Stream.ReadRecord(Code, Record);
1040 switch (RecType) {
Douglas Gregorc3366a52009-04-21 23:56:24 +00001041 case pch::PP_MACRO_OBJECT_LIKE:
1042 case pch::PP_MACRO_FUNCTION_LIKE: {
1043 // If we already have a macro, that means that we've hit the end
1044 // of the definition of the macro we were looking for. We're
1045 // done.
1046 if (Macro)
1047 return;
1048
1049 IdentifierInfo *II = DecodeIdentifierInfo(Record[0]);
1050 if (II == 0) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001051 Error("macro must have a name in PCH file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001052 return;
1053 }
1054 SourceLocation Loc = SourceLocation::getFromRawEncoding(Record[1]);
1055 bool isUsed = Record[2];
Mike Stump11289f42009-09-09 15:08:12 +00001056
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001057 MacroInfo *MI = PP->AllocateMacroInfo(Loc);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001058 MI->setIsUsed(isUsed);
Mike Stump11289f42009-09-09 15:08:12 +00001059
Douglas Gregoraae92242010-03-19 21:51:54 +00001060 unsigned NextIndex = 3;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001061 if (RecType == pch::PP_MACRO_FUNCTION_LIKE) {
1062 // Decode function-like macro info.
1063 bool isC99VarArgs = Record[3];
1064 bool isGNUVarArgs = Record[4];
1065 MacroArgs.clear();
1066 unsigned NumArgs = Record[5];
Douglas Gregoraae92242010-03-19 21:51:54 +00001067 NextIndex = 6 + NumArgs;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001068 for (unsigned i = 0; i != NumArgs; ++i)
1069 MacroArgs.push_back(DecodeIdentifierInfo(Record[6+i]));
1070
1071 // Install function-like macro info.
1072 MI->setIsFunctionLike();
1073 if (isC99VarArgs) MI->setIsC99Varargs();
1074 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor038c3382009-05-22 22:45:36 +00001075 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001076 PP->getPreprocessorAllocator());
Douglas Gregorc3366a52009-04-21 23:56:24 +00001077 }
1078
1079 // Finally, install the macro.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001080 PP->setMacroInfo(II, MI);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001081
1082 // Remember that we saw this macro last so that we add the tokens that
1083 // form its body to it.
1084 Macro = MI;
Douglas Gregoraae92242010-03-19 21:51:54 +00001085
1086 if (NextIndex + 1 == Record.size() && PP->getPreprocessingRecord()) {
1087 // We have a macro definition. Load it now.
1088 PP->getPreprocessingRecord()->RegisterMacroDefinition(Macro,
1089 getMacroDefinition(Record[NextIndex]));
1090 }
1091
Douglas Gregorc3366a52009-04-21 23:56:24 +00001092 ++NumMacrosRead;
1093 break;
1094 }
Mike Stump11289f42009-09-09 15:08:12 +00001095
Douglas Gregorc3366a52009-04-21 23:56:24 +00001096 case pch::PP_TOKEN: {
1097 // If we see a TOKEN before a PP_MACRO_*, then the file is
1098 // erroneous, just pretend we didn't see this.
1099 if (Macro == 0) break;
Mike Stump11289f42009-09-09 15:08:12 +00001100
Douglas Gregorc3366a52009-04-21 23:56:24 +00001101 Token Tok;
1102 Tok.startToken();
1103 Tok.setLocation(SourceLocation::getFromRawEncoding(Record[0]));
1104 Tok.setLength(Record[1]);
1105 if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2]))
1106 Tok.setIdentifierInfo(II);
1107 Tok.setKind((tok::TokenKind)Record[3]);
1108 Tok.setFlag((Token::TokenFlags)Record[4]);
1109 Macro->AddTokenToBody(Tok);
1110 break;
1111 }
Douglas Gregoraae92242010-03-19 21:51:54 +00001112
1113 case pch::PP_MACRO_INSTANTIATION: {
1114 // If we already have a macro, that means that we've hit the end
1115 // of the definition of the macro we were looking for. We're
1116 // done.
1117 if (Macro)
1118 return;
1119
1120 if (!PP->getPreprocessingRecord()) {
1121 Error("missing preprocessing record in PCH file");
1122 return;
1123 }
1124
1125 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1126 if (PPRec.getPreprocessedEntity(Record[0]))
1127 return;
1128
1129 MacroInstantiation *MI
1130 = new (PPRec) MacroInstantiation(DecodeIdentifierInfo(Record[3]),
1131 SourceRange(
1132 SourceLocation::getFromRawEncoding(Record[1]),
1133 SourceLocation::getFromRawEncoding(Record[2])),
1134 getMacroDefinition(Record[4]));
1135 PPRec.SetPreallocatedEntity(Record[0], MI);
1136 return;
1137 }
1138
1139 case pch::PP_MACRO_DEFINITION: {
1140 // If we already have a macro, that means that we've hit the end
1141 // of the definition of the macro we were looking for. We're
1142 // done.
1143 if (Macro)
1144 return;
1145
1146 if (!PP->getPreprocessingRecord()) {
1147 Error("missing preprocessing record in PCH file");
1148 return;
1149 }
1150
1151 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1152 if (PPRec.getPreprocessedEntity(Record[0]))
1153 return;
1154
1155 if (Record[1] >= MacroDefinitionsLoaded.size()) {
1156 Error("out-of-bounds macro definition record");
1157 return;
1158 }
1159
1160 MacroDefinition *MD
1161 = new (PPRec) MacroDefinition(DecodeIdentifierInfo(Record[4]),
1162 SourceLocation::getFromRawEncoding(Record[5]),
1163 SourceRange(
1164 SourceLocation::getFromRawEncoding(Record[2]),
1165 SourceLocation::getFromRawEncoding(Record[3])));
1166 PPRec.SetPreallocatedEntity(Record[0], MD);
1167 MacroDefinitionsLoaded[Record[1]] = MD;
1168 return;
1169 }
Steve Naroff3fa455a2009-04-24 20:03:17 +00001170 }
Douglas Gregorc3366a52009-04-21 23:56:24 +00001171 }
1172}
1173
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001174void PCHReader::ReadDefinedMacros() {
1175 // If there was no preprocessor block, do nothing.
1176 if (!MacroCursor.getBitStreamReader())
1177 return;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001178
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001179 llvm::BitstreamCursor Cursor = MacroCursor;
1180 if (Cursor.EnterSubBlock(pch::PREPROCESSOR_BLOCK_ID)) {
1181 Error("malformed preprocessor block record in PCH file");
1182 return;
1183 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001184
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001185 RecordData Record;
1186 while (true) {
1187 unsigned Code = Cursor.ReadCode();
1188 if (Code == llvm::bitc::END_BLOCK) {
1189 if (Cursor.ReadBlockEnd())
1190 Error("error at end of preprocessor block in PCH file");
1191 return;
1192 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001193
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001194 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1195 // No known subblocks, always skip them.
1196 Cursor.ReadSubBlockID();
1197 if (Cursor.SkipBlock()) {
1198 Error("malformed block record in PCH file");
1199 return;
1200 }
1201 continue;
1202 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001203
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001204 if (Code == llvm::bitc::DEFINE_ABBREV) {
1205 Cursor.ReadAbbrevRecord();
1206 continue;
1207 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001208
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001209 // Read a record.
1210 const char *BlobStart;
1211 unsigned BlobLen;
1212 Record.clear();
1213 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1214 default: // Default behavior: ignore.
1215 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001216
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001217 case pch::PP_MACRO_OBJECT_LIKE:
1218 case pch::PP_MACRO_FUNCTION_LIKE:
Douglas Gregoraae92242010-03-19 21:51:54 +00001219 DecodeIdentifierInfo(Record[0]);
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001220 break;
1221
1222 case pch::PP_TOKEN:
1223 // Ignore tokens.
1224 break;
Douglas Gregoraae92242010-03-19 21:51:54 +00001225
1226 case pch::PP_MACRO_INSTANTIATION:
1227 case pch::PP_MACRO_DEFINITION:
1228 // Read the macro record.
1229 ReadMacroRecord(Cursor.GetCurrentBitNo());
1230 break;
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001231 }
1232 }
1233}
1234
Douglas Gregoraae92242010-03-19 21:51:54 +00001235MacroDefinition *PCHReader::getMacroDefinition(pch::IdentID ID) {
1236 if (ID == 0 || ID >= MacroDefinitionsLoaded.size())
1237 return 0;
1238
1239 if (!MacroDefinitionsLoaded[ID])
1240 ReadMacroRecord(MacroDefinitionOffsets[ID]);
1241
1242 return MacroDefinitionsLoaded[ID];
1243}
1244
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001245/// \brief If we are loading a relocatable PCH file, and the filename is
1246/// not an absolute path, add the system root to the beginning of the file
1247/// name.
1248void PCHReader::MaybeAddSystemRootToFilename(std::string &Filename) {
1249 // If this is not a relocatable PCH file, there's nothing to do.
1250 if (!RelocatablePCH)
1251 return;
Mike Stump11289f42009-09-09 15:08:12 +00001252
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +00001253 if (Filename.empty() || llvm::sys::Path(Filename).isAbsolute())
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001254 return;
1255
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001256 if (isysroot == 0) {
1257 // If no system root was given, default to '/'
1258 Filename.insert(Filename.begin(), '/');
1259 return;
1260 }
Mike Stump11289f42009-09-09 15:08:12 +00001261
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001262 unsigned Length = strlen(isysroot);
1263 if (isysroot[Length - 1] != '/')
1264 Filename.insert(Filename.begin(), '/');
Mike Stump11289f42009-09-09 15:08:12 +00001265
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001266 Filename.insert(Filename.begin(), isysroot, isysroot + Length);
1267}
1268
Mike Stump11289f42009-09-09 15:08:12 +00001269PCHReader::PCHReadResult
Douglas Gregoreda6a892009-04-26 00:07:37 +00001270PCHReader::ReadPCHBlock() {
Douglas Gregor55abb232009-04-10 20:39:37 +00001271 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001272 Error("malformed block record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001273 return Failure;
1274 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001275
1276 // Read all of the records and blocks for the PCH file.
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001277 RecordData Record;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001278 while (!Stream.AtEndOfStream()) {
1279 unsigned Code = Stream.ReadCode();
1280 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001281 if (Stream.ReadBlockEnd()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001282 Error("error at end of module block in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001283 return Failure;
1284 }
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001285
Douglas Gregor55abb232009-04-10 20:39:37 +00001286 return Success;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001287 }
1288
1289 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1290 switch (Stream.ReadSubBlockID()) {
Douglas Gregor12bfa382009-10-17 00:13:19 +00001291 case pch::DECLTYPES_BLOCK_ID:
Chris Lattnere78a6be2009-04-27 01:05:14 +00001292 // We lazily load the decls block, but we want to set up the
1293 // DeclsCursor cursor to point into it. Clone our current bitcode
1294 // cursor to it, enter the block and read the abbrevs in that block.
1295 // With the main cursor, we just skip over it.
1296 DeclsCursor = Stream;
1297 if (Stream.SkipBlock() || // Skip with the main cursor.
1298 // Read the abbrevs.
Douglas Gregor12bfa382009-10-17 00:13:19 +00001299 ReadBlockAbbrevs(DeclsCursor, pch::DECLTYPES_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001300 Error("malformed block record in PCH file");
Chris Lattnere78a6be2009-04-27 01:05:14 +00001301 return Failure;
1302 }
1303 break;
Mike Stump11289f42009-09-09 15:08:12 +00001304
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001305 case pch::PREPROCESSOR_BLOCK_ID:
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001306 MacroCursor = Stream;
1307 if (PP)
1308 PP->setExternalSource(this);
1309
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001310 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001311 Error("malformed block record in PCH file");
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001312 return Failure;
1313 }
1314 break;
Steve Naroff2ddea052009-04-23 10:39:46 +00001315
Douglas Gregora7f71a92009-04-10 03:52:48 +00001316 case pch::SOURCE_MANAGER_BLOCK_ID:
Douglas Gregor92863e42009-04-10 23:10:45 +00001317 switch (ReadSourceManagerBlock()) {
1318 case Success:
1319 break;
1320
1321 case Failure:
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001322 Error("malformed source manager block in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001323 return Failure;
Douglas Gregor92863e42009-04-10 23:10:45 +00001324
1325 case IgnorePCH:
1326 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00001327 }
Douglas Gregora7f71a92009-04-10 03:52:48 +00001328 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001329 }
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001330 continue;
1331 }
1332
1333 if (Code == llvm::bitc::DEFINE_ABBREV) {
1334 Stream.ReadAbbrevRecord();
1335 continue;
1336 }
1337
1338 // Read and process a record.
1339 Record.clear();
Douglas Gregorbfbde532009-04-10 21:16:55 +00001340 const char *BlobStart = 0;
1341 unsigned BlobLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001342 switch ((pch::PCHRecordTypes)Stream.ReadRecord(Code, Record,
Douglas Gregorbfbde532009-04-10 21:16:55 +00001343 &BlobStart, &BlobLen)) {
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001344 default: // Default behavior: ignore.
1345 break;
1346
1347 case pch::TYPE_OFFSET:
Douglas Gregor745ed142009-04-25 18:35:21 +00001348 if (!TypesLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001349 Error("duplicate TYPE_OFFSET record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001350 return Failure;
1351 }
Chris Lattnereeb05692009-04-27 18:24:17 +00001352 TypeOffsets = (const uint32_t *)BlobStart;
Douglas Gregor745ed142009-04-25 18:35:21 +00001353 TypesLoaded.resize(Record[0]);
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001354 break;
1355
1356 case pch::DECL_OFFSET:
Douglas Gregor745ed142009-04-25 18:35:21 +00001357 if (!DeclsLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001358 Error("duplicate DECL_OFFSET record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001359 return Failure;
1360 }
Chris Lattnereeb05692009-04-27 18:24:17 +00001361 DeclOffsets = (const uint32_t *)BlobStart;
Douglas Gregor745ed142009-04-25 18:35:21 +00001362 DeclsLoaded.resize(Record[0]);
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001363 break;
Douglas Gregor55abb232009-04-10 20:39:37 +00001364
1365 case pch::LANGUAGE_OPTIONS:
1366 if (ParseLanguageOptions(Record))
1367 return IgnorePCH;
1368 break;
Douglas Gregorbfbde532009-04-10 21:16:55 +00001369
Douglas Gregor7b71e632009-04-27 22:23:34 +00001370 case pch::METADATA: {
1371 if (Record[0] != pch::VERSION_MAJOR) {
1372 Diag(Record[0] < pch::VERSION_MAJOR? diag::warn_pch_version_too_old
1373 : diag::warn_pch_version_too_new);
1374 return IgnorePCH;
1375 }
1376
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001377 RelocatablePCH = Record[4];
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001378 if (Listener) {
1379 std::string TargetTriple(BlobStart, BlobLen);
1380 if (Listener->ReadTargetTriple(TargetTriple))
1381 return IgnorePCH;
Douglas Gregorbfbde532009-04-10 21:16:55 +00001382 }
1383 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001384 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001385
1386 case pch::IDENTIFIER_TABLE:
Douglas Gregora868bbd2009-04-21 22:25:48 +00001387 IdentifierTableData = BlobStart;
Douglas Gregor0e149972009-04-25 19:10:14 +00001388 if (Record[0]) {
Mike Stump11289f42009-09-09 15:08:12 +00001389 IdentifierLookupTable
Douglas Gregor0e149972009-04-25 19:10:14 +00001390 = PCHIdentifierLookupTable::Create(
Douglas Gregora868bbd2009-04-21 22:25:48 +00001391 (const unsigned char *)IdentifierTableData + Record[0],
Mike Stump11289f42009-09-09 15:08:12 +00001392 (const unsigned char *)IdentifierTableData,
Douglas Gregora868bbd2009-04-21 22:25:48 +00001393 PCHIdentifierLookupTrait(*this));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001394 if (PP)
1395 PP->getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor0e149972009-04-25 19:10:14 +00001396 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001397 break;
1398
1399 case pch::IDENTIFIER_OFFSET:
Douglas Gregor0e149972009-04-25 19:10:14 +00001400 if (!IdentifiersLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001401 Error("duplicate IDENTIFIER_OFFSET record in PCH file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001402 return Failure;
1403 }
Douglas Gregor0e149972009-04-25 19:10:14 +00001404 IdentifierOffsets = (const uint32_t *)BlobStart;
1405 IdentifiersLoaded.resize(Record[0]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001406 if (PP)
1407 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001408 break;
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001409
1410 case pch::EXTERNAL_DEFINITIONS:
1411 if (!ExternalDefinitions.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001412 Error("duplicate EXTERNAL_DEFINITIONS record in PCH file");
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001413 return Failure;
1414 }
1415 ExternalDefinitions.swap(Record);
1416 break;
Douglas Gregor08f01292009-04-17 22:13:46 +00001417
Douglas Gregor652d82a2009-04-18 05:55:16 +00001418 case pch::SPECIAL_TYPES:
1419 SpecialTypes.swap(Record);
1420 break;
1421
Douglas Gregor08f01292009-04-17 22:13:46 +00001422 case pch::STATISTICS:
1423 TotalNumStatements = Record[0];
Douglas Gregorc3366a52009-04-21 23:56:24 +00001424 TotalNumMacros = Record[1];
Douglas Gregora57c3ab2009-04-22 22:34:57 +00001425 TotalLexicalDeclContexts = Record[2];
1426 TotalVisibleDeclContexts = Record[3];
Douglas Gregor08f01292009-04-17 22:13:46 +00001427 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001428
Douglas Gregord4df8652009-04-22 22:02:47 +00001429 case pch::TENTATIVE_DEFINITIONS:
1430 if (!TentativeDefinitions.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001431 Error("duplicate TENTATIVE_DEFINITIONS record in PCH file");
Douglas Gregord4df8652009-04-22 22:02:47 +00001432 return Failure;
1433 }
1434 TentativeDefinitions.swap(Record);
1435 break;
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001436
Tanya Lattner90073802010-02-12 00:07:30 +00001437 case pch::UNUSED_STATIC_FUNCS:
1438 if (!UnusedStaticFuncs.empty()) {
1439 Error("duplicate UNUSED_STATIC_FUNCS record in PCH file");
1440 return Failure;
1441 }
1442 UnusedStaticFuncs.swap(Record);
1443 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001444
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001445 case pch::LOCALLY_SCOPED_EXTERNAL_DECLS:
1446 if (!LocallyScopedExternalDecls.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001447 Error("duplicate LOCALLY_SCOPED_EXTERNAL_DECLS record in PCH file");
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001448 return Failure;
1449 }
1450 LocallyScopedExternalDecls.swap(Record);
1451 break;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001452
Douglas Gregor95c13f52009-04-25 17:48:32 +00001453 case pch::SELECTOR_OFFSETS:
1454 SelectorOffsets = (const uint32_t *)BlobStart;
1455 TotalNumSelectors = Record[0];
1456 SelectorsLoaded.resize(TotalNumSelectors);
1457 break;
1458
Douglas Gregorc78d3462009-04-24 21:10:55 +00001459 case pch::METHOD_POOL:
Douglas Gregor95c13f52009-04-25 17:48:32 +00001460 MethodPoolLookupTableData = (const unsigned char *)BlobStart;
1461 if (Record[0])
Mike Stump11289f42009-09-09 15:08:12 +00001462 MethodPoolLookupTable
Douglas Gregor95c13f52009-04-25 17:48:32 +00001463 = PCHMethodPoolLookupTable::Create(
1464 MethodPoolLookupTableData + Record[0],
Mike Stump11289f42009-09-09 15:08:12 +00001465 MethodPoolLookupTableData,
Douglas Gregorc78d3462009-04-24 21:10:55 +00001466 PCHMethodPoolLookupTrait(*this));
Douglas Gregor95c13f52009-04-25 17:48:32 +00001467 TotalSelectorsInMethodPool = Record[1];
Douglas Gregorc78d3462009-04-24 21:10:55 +00001468 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +00001469
1470 case pch::PP_COUNTER_VALUE:
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001471 if (!Record.empty() && Listener)
1472 Listener->ReadCounter(Record[0]);
Douglas Gregoreda6a892009-04-26 00:07:37 +00001473 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001474
1475 case pch::SOURCE_LOCATION_OFFSETS:
Chris Lattner12d61d32009-04-27 19:01:47 +00001476 SLocOffsets = (const uint32_t *)BlobStart;
Douglas Gregor258ae542009-04-27 06:38:32 +00001477 TotalNumSLocEntries = Record[0];
Douglas Gregord54f3a12009-10-05 21:07:28 +00001478 SourceMgr.PreallocateSLocEntries(this, TotalNumSLocEntries, Record[1]);
Douglas Gregor258ae542009-04-27 06:38:32 +00001479 break;
1480
1481 case pch::SOURCE_LOCATION_PRELOADS:
1482 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
1483 PCHReadResult Result = ReadSLocEntryRecord(Record[I]);
1484 if (Result != Success)
1485 return Result;
1486 }
1487 break;
Douglas Gregorc5046832009-04-27 18:38:38 +00001488
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001489 case pch::STAT_CACHE: {
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001490 PCHStatCache *MyStatCache =
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001491 new PCHStatCache((const unsigned char *)BlobStart + Record[0],
1492 (const unsigned char *)BlobStart,
1493 NumStatHits, NumStatMisses);
1494 FileMgr.addStatCache(MyStatCache);
1495 StatCache = MyStatCache;
Douglas Gregorc5046832009-04-27 18:38:38 +00001496 break;
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001497 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001498
Douglas Gregor61cac2b2009-04-27 20:06:05 +00001499 case pch::EXT_VECTOR_DECLS:
1500 if (!ExtVectorDecls.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001501 Error("duplicate EXT_VECTOR_DECLS record in PCH file");
Douglas Gregor61cac2b2009-04-27 20:06:05 +00001502 return Failure;
1503 }
1504 ExtVectorDecls.swap(Record);
1505 break;
1506
Douglas Gregor45fe0362009-05-12 01:31:05 +00001507 case pch::ORIGINAL_FILE_NAME:
Daniel Dunbar000c4ff2009-11-11 05:29:04 +00001508 ActualOriginalFileName.assign(BlobStart, BlobLen);
1509 OriginalFileName = ActualOriginalFileName;
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001510 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregor45fe0362009-05-12 01:31:05 +00001511 break;
Mike Stump11289f42009-09-09 15:08:12 +00001512
Ted Kremenek17437132010-01-22 20:59:36 +00001513 case pch::VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek8bd09292010-02-12 23:31:14 +00001514 const std::string &CurBranch = getClangFullRepositoryVersion();
Ted Kremenek2377a0e2010-01-22 20:55:35 +00001515 llvm::StringRef PCHBranch(BlobStart, BlobLen);
Ted Kremenek8bd09292010-02-12 23:31:14 +00001516 if (llvm::StringRef(CurBranch) != PCHBranch) {
Douglas Gregord54f3a12009-10-05 21:07:28 +00001517 Diag(diag::warn_pch_different_branch) << PCHBranch << CurBranch;
1518 return IgnorePCH;
1519 }
1520 break;
1521 }
Douglas Gregoraae92242010-03-19 21:51:54 +00001522
1523 case pch::MACRO_DEFINITION_OFFSETS:
1524 MacroDefinitionOffsets = (const uint32_t *)BlobStart;
1525 if (PP) {
1526 if (!PP->getPreprocessingRecord())
1527 PP->createPreprocessingRecord();
1528 PP->getPreprocessingRecord()->SetExternalSource(*this, Record[0]);
1529 } else {
1530 NumPreallocatedPreprocessingEntities = Record[0];
1531 }
1532
1533 MacroDefinitionsLoaded.resize(Record[1]);
1534 break;
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001535 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001536 }
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001537 Error("premature end of bitstream in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001538 return Failure;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001539}
1540
Douglas Gregor92863e42009-04-10 23:10:45 +00001541PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001542 // Set the PCH file name.
1543 this->FileName = FileName;
1544
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001545 // Open the PCH file.
Daniel Dunbar2d925eb2009-09-22 05:38:01 +00001546 //
1547 // FIXME: This shouldn't be here, we should just take a raw_ostream.
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001548 std::string ErrStr;
Daniel Dunbar69914f42009-11-10 00:46:19 +00001549 Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr));
Douglas Gregor92863e42009-04-10 23:10:45 +00001550 if (!Buffer) {
1551 Error(ErrStr.c_str());
1552 return IgnorePCH;
1553 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001554
1555 // Initialize the stream
Mike Stump11289f42009-09-09 15:08:12 +00001556 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Chris Lattner9356ace2009-04-26 20:59:20 +00001557 (const unsigned char *)Buffer->getBufferEnd());
1558 Stream.init(StreamFile);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001559
1560 // Sniff for the signature.
1561 if (Stream.Read(8) != 'C' ||
1562 Stream.Read(8) != 'P' ||
1563 Stream.Read(8) != 'C' ||
Douglas Gregor92863e42009-04-10 23:10:45 +00001564 Stream.Read(8) != 'H') {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001565 Diag(diag::err_not_a_pch_file) << FileName;
1566 return Failure;
Douglas Gregor92863e42009-04-10 23:10:45 +00001567 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001568
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001569 while (!Stream.AtEndOfStream()) {
1570 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00001571
Douglas Gregor92863e42009-04-10 23:10:45 +00001572 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001573 Error("invalid record at top-level of PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001574 return Failure;
1575 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001576
1577 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregora868bbd2009-04-21 22:25:48 +00001578
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001579 // We only know the PCH subblock ID.
1580 switch (BlockID) {
1581 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregor92863e42009-04-10 23:10:45 +00001582 if (Stream.ReadBlockInfoBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001583 Error("malformed BlockInfoBlock in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001584 return Failure;
1585 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001586 break;
1587 case pch::PCH_BLOCK_ID:
Douglas Gregoreda6a892009-04-26 00:07:37 +00001588 switch (ReadPCHBlock()) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001589 case Success:
1590 break;
1591
1592 case Failure:
Douglas Gregor92863e42009-04-10 23:10:45 +00001593 return Failure;
Douglas Gregor55abb232009-04-10 20:39:37 +00001594
1595 case IgnorePCH:
Douglas Gregorbfbde532009-04-10 21:16:55 +00001596 // FIXME: We could consider reading through to the end of this
1597 // PCH block, skipping subblocks, to see if there are other
1598 // PCH blocks elsewhere.
Douglas Gregor0bc12932009-04-27 21:28:04 +00001599
1600 // Clear out any preallocated source location entries, so that
1601 // the source manager does not try to resolve them later.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001602 SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor0bc12932009-04-27 21:28:04 +00001603
1604 // Remove the stat cache.
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001605 if (StatCache)
1606 FileMgr.removeStatCache((PCHStatCache*)StatCache);
Douglas Gregor0bc12932009-04-27 21:28:04 +00001607
Douglas Gregor92863e42009-04-10 23:10:45 +00001608 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00001609 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001610 break;
1611 default:
Douglas Gregor92863e42009-04-10 23:10:45 +00001612 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001613 Error("malformed block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001614 return Failure;
1615 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001616 break;
1617 }
Mike Stump11289f42009-09-09 15:08:12 +00001618 }
1619
Douglas Gregore6648fb2009-04-28 20:33:11 +00001620 // Check the predefines buffer.
Daniel Dunbar20a682d2009-11-11 00:52:11 +00001621 if (CheckPredefinesBuffer(llvm::StringRef(PCHPredefines, PCHPredefinesLen),
Douglas Gregore6648fb2009-04-28 20:33:11 +00001622 PCHPredefinesBufferID))
1623 return IgnorePCH;
Mike Stump11289f42009-09-09 15:08:12 +00001624
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001625 if (PP) {
Zhongxing Xu3f51f412009-07-18 09:26:51 +00001626 // Initialization of keywords and pragmas occurs before the
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001627 // PCH file is read, so there may be some identifiers that were
1628 // loaded into the IdentifierTable before we intercepted the
1629 // creation of identifiers. Iterate through the list of known
1630 // identifiers and determine whether we have to establish
1631 // preprocessor definitions or top-level identifier declaration
1632 // chains for those identifiers.
1633 //
1634 // We copy the IdentifierInfo pointers to a small vector first,
1635 // since de-serializing declarations or macro definitions can add
1636 // new entries into the identifier table, invalidating the
1637 // iterators.
1638 llvm::SmallVector<IdentifierInfo *, 128> Identifiers;
1639 for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(),
1640 IdEnd = PP->getIdentifierTable().end();
1641 Id != IdEnd; ++Id)
1642 Identifiers.push_back(Id->second);
Mike Stump11289f42009-09-09 15:08:12 +00001643 PCHIdentifierLookupTable *IdTable
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001644 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
1645 for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) {
1646 IdentifierInfo *II = Identifiers[I];
1647 // Look in the on-disk hash table for an entry for
1648 PCHIdentifierLookupTrait Info(*this, II);
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001649 std::pair<const char*, unsigned> Key(II->getNameStart(), II->getLength());
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001650 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info);
1651 if (Pos == IdTable->end())
1652 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001653
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001654 // Dereferencing the iterator has the effect of populating the
1655 // IdentifierInfo node with the various declarations it needs.
1656 (void)*Pos;
1657 }
Douglas Gregora868bbd2009-04-21 22:25:48 +00001658 }
1659
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001660 if (Context)
1661 InitializeContext(*Context);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001662
Douglas Gregora868bbd2009-04-21 22:25:48 +00001663 return Success;
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001664}
1665
Douglas Gregoraae92242010-03-19 21:51:54 +00001666void PCHReader::setPreprocessor(Preprocessor &pp) {
1667 PP = &pp;
1668
1669 if (NumPreallocatedPreprocessingEntities) {
1670 if (!PP->getPreprocessingRecord())
1671 PP->createPreprocessingRecord();
1672 PP->getPreprocessingRecord()->SetExternalSource(*this,
1673 NumPreallocatedPreprocessingEntities);
1674 NumPreallocatedPreprocessingEntities = 0;
1675 }
1676}
1677
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001678void PCHReader::InitializeContext(ASTContext &Ctx) {
1679 Context = &Ctx;
1680 assert(Context && "Passed null context!");
1681
1682 assert(PP && "Forgot to set Preprocessor ?");
1683 PP->getIdentifierTable().setExternalIdentifierLookup(this);
1684 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001685 PP->setExternalSource(this);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001686
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001687 // Load the translation unit declaration
1688 ReadDeclRecord(DeclOffsets[0], 0);
1689
1690 // Load the special types.
1691 Context->setBuiltinVaListType(
1692 GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST]));
1693 if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID])
1694 Context->setObjCIdType(GetType(Id));
1695 if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR])
1696 Context->setObjCSelType(GetType(Sel));
1697 if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL])
1698 Context->setObjCProtoType(GetType(Proto));
1699 if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS])
1700 Context->setObjCClassType(GetType(Class));
Steve Naroff7cae42b2009-07-10 23:34:53 +00001701
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001702 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING])
1703 Context->setCFConstantStringType(GetType(String));
Mike Stump11289f42009-09-09 15:08:12 +00001704 if (unsigned FastEnum
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001705 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE])
1706 Context->setObjCFastEnumerationStateType(GetType(FastEnum));
Douglas Gregor27821ce2009-07-07 16:35:42 +00001707 if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) {
1708 QualType FileType = GetType(File);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001709 if (FileType.isNull()) {
1710 Error("FILE type is NULL");
1711 return;
1712 }
John McCall9dd450b2009-09-21 23:43:11 +00001713 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
Douglas Gregor27821ce2009-07-07 16:35:42 +00001714 Context->setFILEDecl(Typedef->getDecl());
1715 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001716 const TagType *Tag = FileType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001717 if (!Tag) {
1718 Error("Invalid FILE type in PCH file");
1719 return;
1720 }
Douglas Gregor27821ce2009-07-07 16:35:42 +00001721 Context->setFILEDecl(Tag->getDecl());
1722 }
1723 }
Mike Stumpa4de80b2009-07-28 02:25:19 +00001724 if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) {
1725 QualType Jmp_bufType = GetType(Jmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001726 if (Jmp_bufType.isNull()) {
1727 Error("jmp_bug type is NULL");
1728 return;
1729 }
John McCall9dd450b2009-09-21 23:43:11 +00001730 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00001731 Context->setjmp_bufDecl(Typedef->getDecl());
1732 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001733 const TagType *Tag = Jmp_bufType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001734 if (!Tag) {
1735 Error("Invalid jmp_bug type in PCH file");
1736 return;
1737 }
Mike Stumpa4de80b2009-07-28 02:25:19 +00001738 Context->setjmp_bufDecl(Tag->getDecl());
1739 }
1740 }
1741 if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) {
1742 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001743 if (Sigjmp_bufType.isNull()) {
1744 Error("sigjmp_buf type is NULL");
1745 return;
1746 }
John McCall9dd450b2009-09-21 23:43:11 +00001747 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00001748 Context->setsigjmp_bufDecl(Typedef->getDecl());
1749 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001750 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
Mike Stumpa4de80b2009-07-28 02:25:19 +00001751 assert(Tag && "Invalid sigjmp_buf type in PCH file");
1752 Context->setsigjmp_bufDecl(Tag->getDecl());
1753 }
1754 }
Mike Stump11289f42009-09-09 15:08:12 +00001755 if (unsigned ObjCIdRedef
Douglas Gregora8eed7d2009-08-21 00:27:50 +00001756 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION])
1757 Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef);
Mike Stump11289f42009-09-09 15:08:12 +00001758 if (unsigned ObjCClassRedef
Douglas Gregora8eed7d2009-08-21 00:27:50 +00001759 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION])
1760 Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef);
Mike Stumpd0153282009-10-20 02:12:22 +00001761 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR])
1762 Context->setBlockDescriptorType(GetType(String));
Mike Stumpe1b19ba2009-10-22 00:49:09 +00001763 if (unsigned String
1764 = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR])
1765 Context->setBlockDescriptorExtendedType(GetType(String));
Fariborz Jahaniane804c282010-04-23 17:41:07 +00001766 if (unsigned ObjCSelRedef
1767 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION])
1768 Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef);
1769 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_NS_CONSTANT_STRING])
1770 Context->setNSConstantStringType(GetType(String));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001771}
1772
Douglas Gregor45fe0362009-05-12 01:31:05 +00001773/// \brief Retrieve the name of the original source file name
1774/// directly from the PCH file, without actually loading the PCH
1775/// file.
Daniel Dunbar3b951482009-12-03 09:13:06 +00001776std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName,
1777 Diagnostic &Diags) {
Douglas Gregor45fe0362009-05-12 01:31:05 +00001778 // Open the PCH file.
1779 std::string ErrStr;
1780 llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
1781 Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr));
1782 if (!Buffer) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001783 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001784 return std::string();
1785 }
1786
1787 // Initialize the stream
1788 llvm::BitstreamReader StreamFile;
1789 llvm::BitstreamCursor Stream;
Mike Stump11289f42009-09-09 15:08:12 +00001790 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregor45fe0362009-05-12 01:31:05 +00001791 (const unsigned char *)Buffer->getBufferEnd());
1792 Stream.init(StreamFile);
1793
1794 // Sniff for the signature.
1795 if (Stream.Read(8) != 'C' ||
1796 Stream.Read(8) != 'P' ||
1797 Stream.Read(8) != 'C' ||
1798 Stream.Read(8) != 'H') {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001799 Diags.Report(diag::err_fe_not_a_pch_file) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001800 return std::string();
1801 }
1802
1803 RecordData Record;
1804 while (!Stream.AtEndOfStream()) {
1805 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00001806
Douglas Gregor45fe0362009-05-12 01:31:05 +00001807 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1808 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump11289f42009-09-09 15:08:12 +00001809
Douglas Gregor45fe0362009-05-12 01:31:05 +00001810 // We only know the PCH subblock ID.
1811 switch (BlockID) {
1812 case pch::PCH_BLOCK_ID:
1813 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001814 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001815 return std::string();
1816 }
1817 break;
Mike Stump11289f42009-09-09 15:08:12 +00001818
Douglas Gregor45fe0362009-05-12 01:31:05 +00001819 default:
1820 if (Stream.SkipBlock()) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001821 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001822 return std::string();
1823 }
1824 break;
1825 }
1826 continue;
1827 }
1828
1829 if (Code == llvm::bitc::END_BLOCK) {
1830 if (Stream.ReadBlockEnd()) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001831 Diags.Report(diag::err_fe_pch_error_at_end_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001832 return std::string();
1833 }
1834 continue;
1835 }
1836
1837 if (Code == llvm::bitc::DEFINE_ABBREV) {
1838 Stream.ReadAbbrevRecord();
1839 continue;
1840 }
1841
1842 Record.clear();
1843 const char *BlobStart = 0;
1844 unsigned BlobLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001845 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Douglas Gregor45fe0362009-05-12 01:31:05 +00001846 == pch::ORIGINAL_FILE_NAME)
1847 return std::string(BlobStart, BlobLen);
Mike Stump11289f42009-09-09 15:08:12 +00001848 }
Douglas Gregor45fe0362009-05-12 01:31:05 +00001849
1850 return std::string();
1851}
1852
Douglas Gregor55abb232009-04-10 20:39:37 +00001853/// \brief Parse the record that corresponds to a LangOptions data
1854/// structure.
1855///
1856/// This routine compares the language options used to generate the
1857/// PCH file against the language options set for the current
1858/// compilation. For each option, we classify differences between the
1859/// two compiler states as either "benign" or "important". Benign
1860/// differences don't matter, and we accept them without complaint
1861/// (and without modifying the language options). Differences between
1862/// the states for important options cause the PCH file to be
1863/// unusable, so we emit a warning and return true to indicate that
1864/// there was an error.
1865///
1866/// \returns true if the PCH file is unacceptable, false otherwise.
1867bool PCHReader::ParseLanguageOptions(
1868 const llvm::SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001869 if (Listener) {
1870 LangOptions LangOpts;
Mike Stump11289f42009-09-09 15:08:12 +00001871
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001872 #define PARSE_LANGOPT(Option) \
1873 LangOpts.Option = Record[Idx]; \
1874 ++Idx
Mike Stump11289f42009-09-09 15:08:12 +00001875
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001876 unsigned Idx = 0;
1877 PARSE_LANGOPT(Trigraphs);
1878 PARSE_LANGOPT(BCPLComment);
1879 PARSE_LANGOPT(DollarIdents);
1880 PARSE_LANGOPT(AsmPreprocessor);
1881 PARSE_LANGOPT(GNUMode);
Chandler Carruthe03aa552010-04-17 20:17:31 +00001882 PARSE_LANGOPT(GNUKeywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001883 PARSE_LANGOPT(ImplicitInt);
1884 PARSE_LANGOPT(Digraphs);
1885 PARSE_LANGOPT(HexFloats);
1886 PARSE_LANGOPT(C99);
1887 PARSE_LANGOPT(Microsoft);
1888 PARSE_LANGOPT(CPlusPlus);
1889 PARSE_LANGOPT(CPlusPlus0x);
1890 PARSE_LANGOPT(CXXOperatorNames);
1891 PARSE_LANGOPT(ObjC1);
1892 PARSE_LANGOPT(ObjC2);
1893 PARSE_LANGOPT(ObjCNonFragileABI);
Fariborz Jahanian45878032010-02-09 19:31:38 +00001894 PARSE_LANGOPT(ObjCNonFragileABI2);
Fariborz Jahanian62c56022010-04-22 21:01:59 +00001895 PARSE_LANGOPT(NoConstantCFStrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001896 PARSE_LANGOPT(PascalStrings);
1897 PARSE_LANGOPT(WritableStrings);
1898 PARSE_LANGOPT(LaxVectorConversions);
Nate Begemanf2911662009-06-25 23:01:11 +00001899 PARSE_LANGOPT(AltiVec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001900 PARSE_LANGOPT(Exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +00001901 PARSE_LANGOPT(SjLjExceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001902 PARSE_LANGOPT(NeXTRuntime);
1903 PARSE_LANGOPT(Freestanding);
1904 PARSE_LANGOPT(NoBuiltin);
1905 PARSE_LANGOPT(ThreadsafeStatics);
Douglas Gregorb3286fe2009-09-03 14:36:33 +00001906 PARSE_LANGOPT(POSIXThreads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001907 PARSE_LANGOPT(Blocks);
1908 PARSE_LANGOPT(EmitAllDecls);
1909 PARSE_LANGOPT(MathErrno);
Chris Lattner51924e512010-06-26 21:25:03 +00001910 LangOpts.setSignedOverflowBehavior((LangOptions::SignedOverflowBehaviorTy)
1911 Record[Idx++]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001912 PARSE_LANGOPT(HeinousExtensions);
1913 PARSE_LANGOPT(Optimize);
1914 PARSE_LANGOPT(OptimizeSize);
1915 PARSE_LANGOPT(Static);
1916 PARSE_LANGOPT(PICLevel);
1917 PARSE_LANGOPT(GNUInline);
1918 PARSE_LANGOPT(NoInline);
1919 PARSE_LANGOPT(AccessControl);
1920 PARSE_LANGOPT(CharIsSigned);
John Thompsoned4e2952009-11-05 20:14:16 +00001921 PARSE_LANGOPT(ShortWChar);
Chris Lattner51924e512010-06-26 21:25:03 +00001922 LangOpts.setGCMode((LangOptions::GCMode)Record[Idx++]);
1923 LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx++]);
Daniel Dunbar143021e2009-09-21 04:16:19 +00001924 LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode)
Chris Lattner51924e512010-06-26 21:25:03 +00001925 Record[Idx++]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001926 PARSE_LANGOPT(InstantiationDepth);
Nate Begemanf2911662009-06-25 23:01:11 +00001927 PARSE_LANGOPT(OpenCL);
Mike Stumpd9546382009-12-12 01:27:46 +00001928 PARSE_LANGOPT(CatchUndefined);
1929 // FIXME: Missing ElideConstructors?!
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001930 #undef PARSE_LANGOPT
Douglas Gregor55abb232009-04-10 20:39:37 +00001931
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001932 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor55abb232009-04-10 20:39:37 +00001933 }
Douglas Gregor55abb232009-04-10 20:39:37 +00001934
1935 return false;
1936}
1937
Douglas Gregoraae92242010-03-19 21:51:54 +00001938void PCHReader::ReadPreprocessedEntities() {
1939 ReadDefinedMacros();
1940}
1941
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001942/// \brief Read and return the type at the given offset.
1943///
1944/// This routine actually reads the record corresponding to the type
1945/// at the given offset in the bitstream. It is a helper routine for
1946/// GetType, which deals with reading type IDs.
1947QualType PCHReader::ReadTypeRecord(uint64_t Offset) {
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001948 // Keep track of where we are in the stream, then jump back there
1949 // after reading this type.
Douglas Gregor12bfa382009-10-17 00:13:19 +00001950 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001951
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00001952 ReadingKindTracker ReadingKind(Read_Type, *this);
1953
Douglas Gregor1342e842009-07-06 18:54:52 +00001954 // Note that we are loading a type record.
1955 LoadingTypeOrDecl Loading(*this);
Mike Stump11289f42009-09-09 15:08:12 +00001956
Douglas Gregor12bfa382009-10-17 00:13:19 +00001957 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001958 RecordData Record;
Douglas Gregor12bfa382009-10-17 00:13:19 +00001959 unsigned Code = DeclsCursor.ReadCode();
1960 switch ((pch::TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
Douglas Gregor455b8f42009-04-15 22:00:08 +00001961 case pch::TYPE_EXT_QUAL: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001962 if (Record.size() != 2) {
1963 Error("Incorrect encoding of extended qualifier type");
1964 return QualType();
1965 }
Douglas Gregor455b8f42009-04-15 22:00:08 +00001966 QualType Base = GetType(Record[0]);
John McCall8ccfcb52009-09-24 19:53:00 +00001967 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]);
1968 return Context->getQualifiedType(Base, Quals);
Douglas Gregor455b8f42009-04-15 22:00:08 +00001969 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00001970
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001971 case pch::TYPE_COMPLEX: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001972 if (Record.size() != 1) {
1973 Error("Incorrect encoding of complex type");
1974 return QualType();
1975 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001976 QualType ElemType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00001977 return Context->getComplexType(ElemType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001978 }
1979
1980 case pch::TYPE_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001981 if (Record.size() != 1) {
1982 Error("Incorrect encoding of pointer type");
1983 return QualType();
1984 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001985 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00001986 return Context->getPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001987 }
1988
1989 case pch::TYPE_BLOCK_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001990 if (Record.size() != 1) {
1991 Error("Incorrect encoding of block pointer type");
1992 return QualType();
1993 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001994 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00001995 return Context->getBlockPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001996 }
1997
1998 case pch::TYPE_LVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001999 if (Record.size() != 1) {
2000 Error("Incorrect encoding of lvalue reference type");
2001 return QualType();
2002 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002003 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002004 return Context->getLValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002005 }
2006
2007 case pch::TYPE_RVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002008 if (Record.size() != 1) {
2009 Error("Incorrect encoding of rvalue reference type");
2010 return QualType();
2011 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002012 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002013 return Context->getRValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002014 }
2015
2016 case pch::TYPE_MEMBER_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002017 if (Record.size() != 1) {
2018 Error("Incorrect encoding of member pointer type");
2019 return QualType();
2020 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002021 QualType PointeeType = GetType(Record[0]);
2022 QualType ClassType = GetType(Record[1]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002023 return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002024 }
2025
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002026 case pch::TYPE_CONSTANT_ARRAY: {
2027 QualType ElementType = GetType(Record[0]);
2028 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2029 unsigned IndexTypeQuals = Record[2];
2030 unsigned Idx = 3;
2031 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor04318252009-07-06 15:59:29 +00002032 return Context->getConstantArrayType(ElementType, Size,
2033 ASM, IndexTypeQuals);
2034 }
2035
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002036 case pch::TYPE_INCOMPLETE_ARRAY: {
2037 QualType ElementType = GetType(Record[0]);
2038 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2039 unsigned IndexTypeQuals = Record[2];
Chris Lattner8575daa2009-04-27 21:45:14 +00002040 return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002041 }
2042
2043 case pch::TYPE_VARIABLE_ARRAY: {
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002044 QualType ElementType = GetType(Record[0]);
2045 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2046 unsigned IndexTypeQuals = Record[2];
Douglas Gregor04318252009-07-06 15:59:29 +00002047 SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]);
2048 SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]);
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002049 return Context->getVariableArrayType(ElementType, ReadExpr(),
Douglas Gregor04318252009-07-06 15:59:29 +00002050 ASM, IndexTypeQuals,
2051 SourceRange(LBLoc, RBLoc));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002052 }
2053
2054 case pch::TYPE_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002055 if (Record.size() != 3) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002056 Error("incorrect encoding of vector type in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002057 return QualType();
2058 }
2059
2060 QualType ElementType = GetType(Record[0]);
2061 unsigned NumElements = Record[1];
Chris Lattner37141f42010-06-23 06:00:24 +00002062 unsigned AltiVecSpec = Record[2];
2063 return Context->getVectorType(ElementType, NumElements,
2064 (VectorType::AltiVecSpecific)AltiVecSpec);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002065 }
2066
2067 case pch::TYPE_EXT_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002068 if (Record.size() != 3) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002069 Error("incorrect encoding of extended vector type in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002070 return QualType();
2071 }
2072
2073 QualType ElementType = GetType(Record[0]);
2074 unsigned NumElements = Record[1];
Chris Lattner8575daa2009-04-27 21:45:14 +00002075 return Context->getExtVectorType(ElementType, NumElements);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002076 }
2077
2078 case pch::TYPE_FUNCTION_NO_PROTO: {
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002079 if (Record.size() != 4) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002080 Error("incorrect encoding of no-proto function type");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002081 return QualType();
2082 }
2083 QualType ResultType = GetType(Record[0]);
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002084 FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]);
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002085 return Context->getFunctionNoProtoType(ResultType, Info);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002086 }
2087
2088 case pch::TYPE_FUNCTION_PROTO: {
2089 QualType ResultType = GetType(Record[0]);
Douglas Gregordc728752009-12-22 18:11:50 +00002090 bool NoReturn = Record[1];
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002091 unsigned RegParm = Record[2];
2092 CallingConv CallConv = (CallingConv)Record[3];
2093 unsigned Idx = 4;
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002094 unsigned NumParams = Record[Idx++];
2095 llvm::SmallVector<QualType, 16> ParamTypes;
2096 for (unsigned I = 0; I != NumParams; ++I)
2097 ParamTypes.push_back(GetType(Record[Idx++]));
2098 bool isVariadic = Record[Idx++];
2099 unsigned Quals = Record[Idx++];
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002100 bool hasExceptionSpec = Record[Idx++];
2101 bool hasAnyExceptionSpec = Record[Idx++];
2102 unsigned NumExceptions = Record[Idx++];
2103 llvm::SmallVector<QualType, 2> Exceptions;
2104 for (unsigned I = 0; I != NumExceptions; ++I)
2105 Exceptions.push_back(GetType(Record[Idx++]));
Jay Foad7d0479f2009-05-21 09:52:38 +00002106 return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams,
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002107 isVariadic, Quals, hasExceptionSpec,
2108 hasAnyExceptionSpec, NumExceptions,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002109 Exceptions.data(),
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002110 FunctionType::ExtInfo(NoReturn, RegParm,
2111 CallConv));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002112 }
2113
John McCallb96ec562009-12-04 22:46:56 +00002114 case pch::TYPE_UNRESOLVED_USING:
2115 return Context->getTypeDeclType(
2116 cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0])));
2117
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002118 case pch::TYPE_TYPEDEF:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002119 if (Record.size() != 1) {
2120 Error("incorrect encoding of typedef type");
2121 return QualType();
2122 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002123 return Context->getTypeDeclType(cast<TypedefDecl>(GetDecl(Record[0])));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002124
2125 case pch::TYPE_TYPEOF_EXPR:
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002126 return Context->getTypeOfExprType(ReadExpr());
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002127
2128 case pch::TYPE_TYPEOF: {
2129 if (Record.size() != 1) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002130 Error("incorrect encoding of typeof(type) in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002131 return QualType();
2132 }
2133 QualType UnderlyingType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002134 return Context->getTypeOfType(UnderlyingType);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002135 }
Mike Stump11289f42009-09-09 15:08:12 +00002136
Anders Carlsson81df7b82009-06-24 19:06:50 +00002137 case pch::TYPE_DECLTYPE:
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002138 return Context->getDecltypeType(ReadExpr());
Anders Carlsson81df7b82009-06-24 19:06:50 +00002139
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002140 case pch::TYPE_RECORD:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002141 if (Record.size() != 1) {
2142 Error("incorrect encoding of record type");
2143 return QualType();
2144 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002145 return Context->getTypeDeclType(cast<RecordDecl>(GetDecl(Record[0])));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002146
Douglas Gregor1daeb692009-04-13 18:14:40 +00002147 case pch::TYPE_ENUM:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002148 if (Record.size() != 1) {
2149 Error("incorrect encoding of enum type");
2150 return QualType();
2151 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002152 return Context->getTypeDeclType(cast<EnumDecl>(GetDecl(Record[0])));
Douglas Gregor1daeb692009-04-13 18:14:40 +00002153
John McCallfcc33b02009-09-05 00:15:47 +00002154 case pch::TYPE_ELABORATED: {
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002155 unsigned Idx = 0;
2156 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2157 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2158 QualType NamedType = GetType(Record[Idx++]);
2159 return Context->getElaboratedType(Keyword, NNS, NamedType);
John McCallfcc33b02009-09-05 00:15:47 +00002160 }
2161
Steve Naroffc277ad12009-07-18 15:33:26 +00002162 case pch::TYPE_OBJC_INTERFACE: {
Chris Lattner587cbe12009-04-22 06:45:28 +00002163 unsigned Idx = 0;
2164 ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
John McCall8b07ec22010-05-15 11:32:37 +00002165 return Context->getObjCInterfaceType(ItfD);
2166 }
2167
2168 case pch::TYPE_OBJC_OBJECT: {
2169 unsigned Idx = 0;
2170 QualType Base = GetType(Record[Idx++]);
Chris Lattner587cbe12009-04-22 06:45:28 +00002171 unsigned NumProtos = Record[Idx++];
2172 llvm::SmallVector<ObjCProtocolDecl*, 4> Protos;
2173 for (unsigned I = 0; I != NumProtos; ++I)
2174 Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++])));
John McCall8b07ec22010-05-15 11:32:37 +00002175 return Context->getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattner587cbe12009-04-22 06:45:28 +00002176 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002177
Steve Narofffb4330f2009-06-17 22:40:22 +00002178 case pch::TYPE_OBJC_OBJECT_POINTER: {
Chris Lattner6e054af2009-04-22 06:40:03 +00002179 unsigned Idx = 0;
John McCall8b07ec22010-05-15 11:32:37 +00002180 QualType Pointee = GetType(Record[Idx++]);
2181 return Context->getObjCObjectPointerType(Pointee);
Chris Lattner6e054af2009-04-22 06:40:03 +00002182 }
Argyrios Kyrtzidisa7a36df2009-09-29 19:42:55 +00002183
John McCallcebee162009-10-18 09:09:24 +00002184 case pch::TYPE_SUBST_TEMPLATE_TYPE_PARM: {
2185 unsigned Idx = 0;
2186 QualType Parm = GetType(Record[Idx++]);
2187 QualType Replacement = GetType(Record[Idx++]);
2188 return
2189 Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
2190 Replacement);
2191 }
John McCalle78aac42010-03-10 03:28:59 +00002192
2193 case pch::TYPE_INJECTED_CLASS_NAME: {
2194 CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0]));
2195 QualType TST = GetType(Record[1]); // probably derivable
2196 return Context->getInjectedClassNameType(D, TST);
2197 }
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00002198
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002199 case pch::TYPE_TEMPLATE_TYPE_PARM: {
2200 unsigned Idx = 0;
2201 unsigned Depth = Record[Idx++];
2202 unsigned Index = Record[Idx++];
2203 bool Pack = Record[Idx++];
2204 IdentifierInfo *Name = GetIdentifierInfo(Record, Idx);
2205 return Context->getTemplateTypeParmType(Depth, Index, Pack, Name);
2206 }
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00002207
2208 case pch::TYPE_DEPENDENT_NAME: {
2209 unsigned Idx = 0;
2210 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2211 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2212 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2213 return Context->getDependentNameType(Keyword, NNS, Name, QualType());
2214 }
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002215
2216 case pch::TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
2217 unsigned Idx = 0;
2218 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2219 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2220 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2221 unsigned NumArgs = Record[Idx++];
2222 llvm::SmallVector<TemplateArgument, 8> Args;
2223 Args.reserve(NumArgs);
2224 while (NumArgs--)
2225 Args.push_back(ReadTemplateArgument(Record, Idx));
2226 return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name,
2227 Args.size(), Args.data());
2228 }
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00002229
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002230 case pch::TYPE_TEMPLATE_SPECIALIZATION: {
2231 unsigned Idx = 0;
2232 TemplateName Name = ReadTemplateName(Record, Idx);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002233 llvm::SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00002234 ReadTemplateArgumentList(Args, Record, Idx);
2235 QualType Canon = GetType(Record[Idx++]);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002236 return Context->getTemplateSpecializationType(Name, Args.data(),Args.size(),
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00002237 Canon);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002238 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002239 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002240 // Suppress a GCC warning
2241 return QualType();
2242}
2243
John McCall8f115c62009-10-16 21:56:05 +00002244namespace {
2245
2246class TypeLocReader : public TypeLocVisitor<TypeLocReader> {
2247 PCHReader &Reader;
2248 const PCHReader::RecordData &Record;
2249 unsigned &Idx;
2250
2251public:
2252 TypeLocReader(PCHReader &Reader, const PCHReader::RecordData &Record,
2253 unsigned &Idx)
2254 : Reader(Reader), Record(Record), Idx(Idx) { }
2255
John McCall17001972009-10-18 01:05:36 +00002256 // We want compile-time assurance that we've enumerated all of
2257 // these, so unfortunately we have to declare them first, then
2258 // define them out-of-line.
2259#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCall8f115c62009-10-16 21:56:05 +00002260#define TYPELOC(CLASS, PARENT) \
John McCall17001972009-10-18 01:05:36 +00002261 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCall8f115c62009-10-16 21:56:05 +00002262#include "clang/AST/TypeLocNodes.def"
2263
John McCall17001972009-10-18 01:05:36 +00002264 void VisitFunctionTypeLoc(FunctionTypeLoc);
2265 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCall8f115c62009-10-16 21:56:05 +00002266};
2267
2268}
2269
John McCall17001972009-10-18 01:05:36 +00002270void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCall8f115c62009-10-16 21:56:05 +00002271 // nothing to do
2272}
John McCall17001972009-10-18 01:05:36 +00002273void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +00002274 TL.setBuiltinLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2275 if (TL.needsExtraLocalData()) {
2276 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
2277 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
2278 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
2279 TL.setModeAttr(Record[Idx++]);
2280 }
John McCall8f115c62009-10-16 21:56:05 +00002281}
John McCall17001972009-10-18 01:05:36 +00002282void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
2283 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002284}
John McCall17001972009-10-18 01:05:36 +00002285void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
2286 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002287}
John McCall17001972009-10-18 01:05:36 +00002288void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
2289 TL.setCaretLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002290}
John McCall17001972009-10-18 01:05:36 +00002291void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
2292 TL.setAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002293}
John McCall17001972009-10-18 01:05:36 +00002294void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
2295 TL.setAmpAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002296}
John McCall17001972009-10-18 01:05:36 +00002297void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
2298 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002299}
John McCall17001972009-10-18 01:05:36 +00002300void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
2301 TL.setLBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2302 TL.setRBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002303 if (Record[Idx++])
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002304 TL.setSizeExpr(Reader.ReadExpr());
Douglas Gregor12bfa382009-10-17 00:13:19 +00002305 else
John McCall17001972009-10-18 01:05:36 +00002306 TL.setSizeExpr(0);
2307}
2308void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
2309 VisitArrayTypeLoc(TL);
2310}
2311void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
2312 VisitArrayTypeLoc(TL);
2313}
2314void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
2315 VisitArrayTypeLoc(TL);
2316}
2317void TypeLocReader::VisitDependentSizedArrayTypeLoc(
2318 DependentSizedArrayTypeLoc TL) {
2319 VisitArrayTypeLoc(TL);
2320}
2321void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
2322 DependentSizedExtVectorTypeLoc TL) {
2323 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2324}
2325void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
2326 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2327}
2328void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
2329 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2330}
2331void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
2332 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2333 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2334 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
John McCalle6347002009-10-23 01:28:53 +00002335 TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
John McCall17001972009-10-18 01:05:36 +00002336 }
2337}
2338void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
2339 VisitFunctionTypeLoc(TL);
2340}
2341void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
2342 VisitFunctionTypeLoc(TL);
2343}
John McCallb96ec562009-12-04 22:46:56 +00002344void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
2345 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2346}
John McCall17001972009-10-18 01:05:36 +00002347void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
2348 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2349}
2350void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +00002351 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2352 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2353 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall17001972009-10-18 01:05:36 +00002354}
2355void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +00002356 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2357 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2358 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2359 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002360}
2361void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
2362 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2363}
2364void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
2365 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2366}
2367void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
2368 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2369}
John McCall17001972009-10-18 01:05:36 +00002370void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
2371 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2372}
John McCallcebee162009-10-18 09:09:24 +00002373void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
2374 SubstTemplateTypeParmTypeLoc TL) {
2375 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2376}
John McCall17001972009-10-18 01:05:36 +00002377void TypeLocReader::VisitTemplateSpecializationTypeLoc(
2378 TemplateSpecializationTypeLoc TL) {
John McCall0ad16662009-10-29 08:12:44 +00002379 TL.setTemplateNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2380 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2381 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2382 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
2383 TL.setArgLocInfo(i,
2384 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(i).getKind(),
2385 Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002386}
Abramo Bagnara6150c882010-05-11 21:36:43 +00002387void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +00002388 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2389 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002390}
John McCalle78aac42010-03-10 03:28:59 +00002391void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
2392 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2393}
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00002394void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +00002395 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2396 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002397 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2398}
John McCallc392f372010-06-11 00:33:02 +00002399void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
2400 DependentTemplateSpecializationTypeLoc TL) {
2401 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2402 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
2403 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2404 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2405 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2406 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
2407 TL.setArgLocInfo(I,
2408 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(I).getKind(),
2409 Record, Idx));
2410}
John McCall17001972009-10-18 01:05:36 +00002411void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
2412 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8b07ec22010-05-15 11:32:37 +00002413}
2414void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
2415 TL.setHasBaseTypeAsWritten(Record[Idx++]);
John McCall17001972009-10-18 01:05:36 +00002416 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2417 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2418 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
2419 TL.setProtocolLoc(i, SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002420}
John McCallfc93cf92009-10-22 22:37:11 +00002421void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
2422 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallfc93cf92009-10-22 22:37:11 +00002423}
John McCall8f115c62009-10-16 21:56:05 +00002424
John McCallbcd03502009-12-07 02:54:59 +00002425TypeSourceInfo *PCHReader::GetTypeSourceInfo(const RecordData &Record,
John McCall8f115c62009-10-16 21:56:05 +00002426 unsigned &Idx) {
2427 QualType InfoTy = GetType(Record[Idx++]);
2428 if (InfoTy.isNull())
2429 return 0;
2430
John McCallbcd03502009-12-07 02:54:59 +00002431 TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy);
John McCall8f115c62009-10-16 21:56:05 +00002432 TypeLocReader TLR(*this, Record, Idx);
John McCallbcd03502009-12-07 02:54:59 +00002433 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCall8f115c62009-10-16 21:56:05 +00002434 TLR.Visit(TL);
John McCallbcd03502009-12-07 02:54:59 +00002435 return TInfo;
John McCall8f115c62009-10-16 21:56:05 +00002436}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002437
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00002438QualType PCHReader::GetType(pch::TypeID ID) {
John McCall8ccfcb52009-09-24 19:53:00 +00002439 unsigned FastQuals = ID & Qualifiers::FastMask;
2440 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002441
2442 if (Index < pch::NUM_PREDEF_TYPE_IDS) {
2443 QualType T;
2444 switch ((pch::PredefinedTypeIDs)Index) {
2445 case pch::PREDEF_TYPE_NULL_ID: return QualType();
Chris Lattner8575daa2009-04-27 21:45:14 +00002446 case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break;
2447 case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002448
2449 case pch::PREDEF_TYPE_CHAR_U_ID:
2450 case pch::PREDEF_TYPE_CHAR_S_ID:
2451 // FIXME: Check that the signedness of CharTy is correct!
Chris Lattner8575daa2009-04-27 21:45:14 +00002452 T = Context->CharTy;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002453 break;
2454
Chris Lattner8575daa2009-04-27 21:45:14 +00002455 case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break;
2456 case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break;
2457 case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break;
2458 case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break;
2459 case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break;
Chris Lattnerf122cef2009-04-30 02:43:43 +00002460 case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break;
Chris Lattner8575daa2009-04-27 21:45:14 +00002461 case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break;
2462 case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break;
2463 case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break;
2464 case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break;
2465 case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break;
2466 case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break;
Chris Lattnerf122cef2009-04-30 02:43:43 +00002467 case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break;
Chris Lattner8575daa2009-04-27 21:45:14 +00002468 case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break;
2469 case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break;
2470 case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break;
2471 case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break;
2472 case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break;
Sebastian Redl576fd422009-05-10 18:38:11 +00002473 case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002474 case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break;
2475 case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break;
Steve Naroff1329fa02009-07-15 18:40:39 +00002476 case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break;
2477 case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break;
Fariborz Jahanian252ba5f2009-11-21 19:53:08 +00002478 case pch::PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002479 }
2480
2481 assert(!T.isNull() && "Unknown predefined type");
John McCall8ccfcb52009-09-24 19:53:00 +00002482 return T.withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002483 }
2484
2485 Index -= pch::NUM_PREDEF_TYPE_IDS;
Steve Naroffc277ad12009-07-18 15:33:26 +00002486 //assert(Index < TypesLoaded.size() && "Type index out-of-range");
John McCall8ccfcb52009-09-24 19:53:00 +00002487 if (TypesLoaded[Index].isNull())
2488 TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]);
Mike Stump11289f42009-09-09 15:08:12 +00002489
John McCall8ccfcb52009-09-24 19:53:00 +00002490 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002491}
2492
John McCall0ad16662009-10-29 08:12:44 +00002493TemplateArgumentLocInfo
2494PCHReader::GetTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
2495 const RecordData &Record,
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002496 unsigned &Index) {
John McCall0ad16662009-10-29 08:12:44 +00002497 switch (Kind) {
2498 case TemplateArgument::Expression:
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002499 return ReadExpr();
John McCall0ad16662009-10-29 08:12:44 +00002500 case TemplateArgument::Type:
John McCallbcd03502009-12-07 02:54:59 +00002501 return GetTypeSourceInfo(Record, Index);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002502 case TemplateArgument::Template: {
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002503 SourceRange QualifierRange = ReadSourceRange(Record, Index);
2504 SourceLocation TemplateNameLoc = ReadSourceLocation(Record, Index);
2505 return TemplateArgumentLocInfo(QualifierRange, TemplateNameLoc);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002506 }
John McCall0ad16662009-10-29 08:12:44 +00002507 case TemplateArgument::Null:
2508 case TemplateArgument::Integral:
2509 case TemplateArgument::Declaration:
2510 case TemplateArgument::Pack:
2511 return TemplateArgumentLocInfo();
2512 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00002513 llvm_unreachable("unexpected template argument loc");
John McCall0ad16662009-10-29 08:12:44 +00002514 return TemplateArgumentLocInfo();
2515}
2516
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002517TemplateArgumentLoc
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002518PCHReader::ReadTemplateArgumentLoc(const RecordData &Record, unsigned &Index) {
2519 TemplateArgument Arg = ReadTemplateArgument(Record, Index);
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002520
2521 if (Arg.getKind() == TemplateArgument::Expression) {
2522 if (Record[Index++]) // bool InfoHasSameExpr.
2523 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
2524 }
2525 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(Arg.getKind(),
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002526 Record, Index));
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002527}
2528
John McCall75b960e2010-06-01 09:23:16 +00002529Decl *PCHReader::GetExternalDecl(uint32_t ID) {
2530 return GetDecl(ID);
2531}
2532
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00002533Decl *PCHReader::GetDecl(pch::DeclID ID) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002534 if (ID == 0)
2535 return 0;
2536
Douglas Gregor745ed142009-04-25 18:35:21 +00002537 if (ID > DeclsLoaded.size()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002538 Error("declaration ID out-of-range for PCH file");
Douglas Gregor745ed142009-04-25 18:35:21 +00002539 return 0;
2540 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002541
Douglas Gregor745ed142009-04-25 18:35:21 +00002542 unsigned Index = ID - 1;
2543 if (!DeclsLoaded[Index])
2544 ReadDeclRecord(DeclOffsets[Index], Index);
2545
2546 return DeclsLoaded[Index];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002547}
2548
Chris Lattner9c28af02009-04-27 05:46:25 +00002549/// \brief Resolve the offset of a statement into a statement.
2550///
2551/// This operation will read a new statement from the external
2552/// source each time it is called, and is meant to be used via a
2553/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
John McCall75b960e2010-06-01 09:23:16 +00002554Stmt *PCHReader::GetExternalDeclStmt(uint64_t Offset) {
Chris Lattner1de76db2009-04-27 05:58:23 +00002555 // Since we know tha this statement is part of a decl, make sure to use the
2556 // decl cursor to read it.
2557 DeclsCursor.JumpToBit(Offset);
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00002558 return ReadStmtFromStream(DeclsCursor);
Douglas Gregor3c3aa612009-04-18 00:07:54 +00002559}
2560
John McCall75b960e2010-06-01 09:23:16 +00002561bool PCHReader::FindExternalLexicalDecls(const DeclContext *DC,
2562 llvm::SmallVectorImpl<Decl*> &Decls) {
Mike Stump11289f42009-09-09 15:08:12 +00002563 assert(DC->hasExternalLexicalStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002564 "DeclContext has no lexical decls in storage");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002565
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002566 uint64_t Offset = DeclContextOffsets[DC].first;
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002567 if (Offset == 0) {
2568 Error("DeclContext has no lexical decls in storage");
2569 return true;
2570 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002571
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002572 // Keep track of where we are in the stream, then jump back there
2573 // after reading this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002574 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002575
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002576 // Load the record containing all of the declarations lexically in
2577 // this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002578 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002579 RecordData Record;
Chris Lattner72405d62009-04-27 07:35:40 +00002580 unsigned Code = DeclsCursor.ReadCode();
2581 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002582 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
2583 Error("Expected lexical block");
2584 return true;
2585 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002586
2587 // Load all of the declaration IDs
John McCall75b960e2010-06-01 09:23:16 +00002588 for (RecordData::iterator I = Record.begin(), E = Record.end(); I != E; ++I)
2589 Decls.push_back(GetDecl(*I));
Douglas Gregora57c3ab2009-04-22 22:34:57 +00002590 ++NumLexicalDeclContextsRead;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002591 return false;
2592}
2593
John McCall75b960e2010-06-01 09:23:16 +00002594DeclContext::lookup_result
2595PCHReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
2596 DeclarationName Name) {
Mike Stump11289f42009-09-09 15:08:12 +00002597 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002598 "DeclContext has no visible decls in storage");
2599 uint64_t Offset = DeclContextOffsets[DC].second;
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002600 if (Offset == 0) {
2601 Error("DeclContext has no visible decls in storage");
John McCall75b960e2010-06-01 09:23:16 +00002602 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2603 DeclContext::lookup_iterator());
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002604 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002605
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002606 // Keep track of where we are in the stream, then jump back there
2607 // after reading this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002608 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002609
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002610 // Load the record containing all of the declarations visible in
2611 // this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002612 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002613 RecordData Record;
Chris Lattner72405d62009-04-27 07:35:40 +00002614 unsigned Code = DeclsCursor.ReadCode();
2615 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002616 if (RecCode != pch::DECL_CONTEXT_VISIBLE) {
2617 Error("Expected visible block");
John McCall75b960e2010-06-01 09:23:16 +00002618 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2619 DeclContext::lookup_iterator());
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002620 }
2621
John McCall75b960e2010-06-01 09:23:16 +00002622 llvm::SmallVector<VisibleDeclaration, 64> Decls;
2623 if (Record.empty()) {
2624 SetExternalVisibleDecls(DC, Decls);
2625 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2626 DeclContext::lookup_iterator());
2627 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002628
2629 unsigned Idx = 0;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002630 while (Idx < Record.size()) {
2631 Decls.push_back(VisibleDeclaration());
2632 Decls.back().Name = ReadDeclarationName(Record, Idx);
2633
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002634 unsigned Size = Record[Idx++];
Chris Lattner72405d62009-04-27 07:35:40 +00002635 llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002636 LoadedDecls.reserve(Size);
2637 for (unsigned I = 0; I < Size; ++I)
2638 LoadedDecls.push_back(Record[Idx++]);
2639 }
2640
Douglas Gregora57c3ab2009-04-22 22:34:57 +00002641 ++NumVisibleDeclContextsRead;
John McCall75b960e2010-06-01 09:23:16 +00002642
2643 SetExternalVisibleDecls(DC, Decls);
2644 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002645}
2646
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002647void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregorb985eeb2009-04-22 19:09:20 +00002648 this->Consumer = Consumer;
2649
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002650 if (!Consumer)
2651 return;
2652
2653 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Daniel Dunbar865c2a72009-09-17 03:06:44 +00002654 // Force deserialization of this decl, which will cause it to be passed to
2655 // the consumer (or queued).
2656 GetDecl(ExternalDefinitions[I]);
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002657 }
Douglas Gregorf005eac2009-04-25 00:41:30 +00002658
2659 for (unsigned I = 0, N = InterestingDecls.size(); I != N; ++I) {
2660 DeclGroupRef DG(InterestingDecls[I]);
2661 Consumer->HandleTopLevelDecl(DG);
2662 }
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002663}
2664
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002665void PCHReader::PrintStats() {
2666 std::fprintf(stderr, "*** PCH Statistics:\n");
2667
Mike Stump11289f42009-09-09 15:08:12 +00002668 unsigned NumTypesLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00002669 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall8ccfcb52009-09-24 19:53:00 +00002670 QualType());
Douglas Gregor0e149972009-04-25 19:10:14 +00002671 unsigned NumDeclsLoaded
2672 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
2673 (Decl *)0);
2674 unsigned NumIdentifiersLoaded
2675 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
2676 IdentifiersLoaded.end(),
2677 (IdentifierInfo *)0);
Mike Stump11289f42009-09-09 15:08:12 +00002678 unsigned NumSelectorsLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00002679 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
2680 SelectorsLoaded.end(),
2681 Selector());
Douglas Gregorc3b1dd12009-04-13 20:50:16 +00002682
Douglas Gregorc5046832009-04-27 18:38:38 +00002683 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
2684 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor258ae542009-04-27 06:38:32 +00002685 if (TotalNumSLocEntries)
2686 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
2687 NumSLocEntriesRead, TotalNumSLocEntries,
2688 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor745ed142009-04-25 18:35:21 +00002689 if (!TypesLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002690 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00002691 NumTypesLoaded, (unsigned)TypesLoaded.size(),
2692 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
2693 if (!DeclsLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002694 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00002695 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
2696 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor0e149972009-04-25 19:10:14 +00002697 if (!IdentifiersLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002698 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor0e149972009-04-25 19:10:14 +00002699 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
2700 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregor95c13f52009-04-25 17:48:32 +00002701 if (TotalNumSelectors)
2702 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
2703 NumSelectorsLoaded, TotalNumSelectors,
2704 ((float)NumSelectorsLoaded/TotalNumSelectors * 100));
2705 if (TotalNumStatements)
2706 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
2707 NumStatementsRead, TotalNumStatements,
2708 ((float)NumStatementsRead/TotalNumStatements * 100));
2709 if (TotalNumMacros)
2710 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
2711 NumMacrosRead, TotalNumMacros,
2712 ((float)NumMacrosRead/TotalNumMacros * 100));
2713 if (TotalLexicalDeclContexts)
2714 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
2715 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
2716 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
2717 * 100));
2718 if (TotalVisibleDeclContexts)
2719 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
2720 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
2721 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
2722 * 100));
2723 if (TotalSelectorsInMethodPool) {
2724 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
2725 NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool,
2726 ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool
2727 * 100));
2728 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
2729 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002730 std::fprintf(stderr, "\n");
2731}
2732
Douglas Gregora868bbd2009-04-21 22:25:48 +00002733void PCHReader::InitializeSema(Sema &S) {
2734 SemaObj = &S;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002735 S.ExternalSource = this;
2736
Douglas Gregor7cd60f72009-04-22 21:15:06 +00002737 // Makes sure any declarations that were deserialized "too early"
2738 // still get added to the identifier's declaration chains.
2739 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
2740 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I]));
2741 SemaObj->IdResolver.AddDecl(PreloadedDecls[I]);
Douglas Gregora868bbd2009-04-21 22:25:48 +00002742 }
Douglas Gregor7cd60f72009-04-22 21:15:06 +00002743 PreloadedDecls.clear();
Douglas Gregord4df8652009-04-22 22:02:47 +00002744
2745 // If there were any tentative definitions, deserialize them and add
Sebastian Redl35351a92010-01-31 22:27:38 +00002746 // them to Sema's list of tentative definitions.
Douglas Gregord4df8652009-04-22 22:02:47 +00002747 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
2748 VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I]));
Sebastian Redl35351a92010-01-31 22:27:38 +00002749 SemaObj->TentativeDefinitions.push_back(Var);
Douglas Gregord4df8652009-04-22 22:02:47 +00002750 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00002751
Tanya Lattner90073802010-02-12 00:07:30 +00002752 // If there were any unused static functions, deserialize them and add to
2753 // Sema's list of unused static functions.
2754 for (unsigned I = 0, N = UnusedStaticFuncs.size(); I != N; ++I) {
2755 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(UnusedStaticFuncs[I]));
2756 SemaObj->UnusedStaticFuncs.push_back(FD);
2757 }
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002758
2759 // If there were any locally-scoped external declarations,
2760 // deserialize them and add them to Sema's table of locally-scoped
2761 // external declarations.
2762 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
2763 NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
2764 SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D;
2765 }
Douglas Gregor61cac2b2009-04-27 20:06:05 +00002766
2767 // If there were any ext_vector type declarations, deserialize them
2768 // and add them to Sema's vector of such declarations.
2769 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I)
2770 SemaObj->ExtVectorDecls.push_back(
2771 cast<TypedefDecl>(GetDecl(ExtVectorDecls[I])));
Douglas Gregora868bbd2009-04-21 22:25:48 +00002772}
2773
2774IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) {
2775 // Try to find this name within our on-disk hash table
Mike Stump11289f42009-09-09 15:08:12 +00002776 PCHIdentifierLookupTable *IdTable
Douglas Gregora868bbd2009-04-21 22:25:48 +00002777 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
2778 std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart);
2779 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key);
2780 if (Pos == IdTable->end())
2781 return 0;
2782
2783 // Dereferencing the iterator has the effect of building the
2784 // IdentifierInfo node and populating it with the various
2785 // declarations it needs.
2786 return *Pos;
2787}
2788
Mike Stump11289f42009-09-09 15:08:12 +00002789std::pair<ObjCMethodList, ObjCMethodList>
Douglas Gregorc78d3462009-04-24 21:10:55 +00002790PCHReader::ReadMethodPool(Selector Sel) {
2791 if (!MethodPoolLookupTable)
2792 return std::pair<ObjCMethodList, ObjCMethodList>();
2793
2794 // Try to find this selector within our on-disk hash table.
2795 PCHMethodPoolLookupTable *PoolTable
2796 = (PCHMethodPoolLookupTable*)MethodPoolLookupTable;
2797 PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel);
Douglas Gregor95c13f52009-04-25 17:48:32 +00002798 if (Pos == PoolTable->end()) {
2799 ++NumMethodPoolMisses;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002800 return std::pair<ObjCMethodList, ObjCMethodList>();;
Douglas Gregor95c13f52009-04-25 17:48:32 +00002801 }
Douglas Gregorc78d3462009-04-24 21:10:55 +00002802
Douglas Gregor95c13f52009-04-25 17:48:32 +00002803 ++NumMethodPoolSelectorsRead;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002804 return *Pos;
2805}
2806
Douglas Gregor0e149972009-04-25 19:10:14 +00002807void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) {
Douglas Gregora868bbd2009-04-21 22:25:48 +00002808 assert(ID && "Non-zero identifier ID required");
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002809 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor0e149972009-04-25 19:10:14 +00002810 IdentifiersLoaded[ID - 1] = II;
Douglas Gregora868bbd2009-04-21 22:25:48 +00002811}
2812
Douglas Gregor1342e842009-07-06 18:54:52 +00002813/// \brief Set the globally-visible declarations associated with the given
2814/// identifier.
2815///
2816/// If the PCH reader is currently in a state where the given declaration IDs
Mike Stump11289f42009-09-09 15:08:12 +00002817/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregor1342e842009-07-06 18:54:52 +00002818/// them.
2819///
2820/// \param II an IdentifierInfo that refers to one or more globally-visible
2821/// declarations.
2822///
2823/// \param DeclIDs the set of declaration IDs with the name @p II that are
2824/// visible at global scope.
2825///
2826/// \param Nonrecursive should be true to indicate that the caller knows that
2827/// this call is non-recursive, and therefore the globally-visible declarations
2828/// will not be placed onto the pending queue.
Mike Stump11289f42009-09-09 15:08:12 +00002829void
2830PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Douglas Gregor1342e842009-07-06 18:54:52 +00002831 const llvm::SmallVectorImpl<uint32_t> &DeclIDs,
2832 bool Nonrecursive) {
2833 if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) {
2834 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
2835 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
2836 PII.II = II;
2837 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I)
2838 PII.DeclIDs.push_back(DeclIDs[I]);
2839 return;
2840 }
Mike Stump11289f42009-09-09 15:08:12 +00002841
Douglas Gregor1342e842009-07-06 18:54:52 +00002842 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
2843 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
2844 if (SemaObj) {
2845 // Introduce this declaration into the translation-unit scope
2846 // and add it to the declaration chain for this identifier, so
2847 // that (unqualified) name lookup will find it.
2848 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D));
2849 SemaObj->IdResolver.AddDeclToIdentifierChain(II, D);
2850 } else {
2851 // Queue this declaration so that it will be added to the
2852 // translation unit scope and identifier's declaration chain
2853 // once a Sema object is known.
2854 PreloadedDecls.push_back(D);
2855 }
2856 }
2857}
2858
Chris Lattnerc523d8e2009-04-11 21:15:38 +00002859IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) {
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002860 if (ID == 0)
2861 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00002862
Douglas Gregor0e149972009-04-25 19:10:14 +00002863 if (!IdentifierTableData || IdentifiersLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002864 Error("no identifier table in PCH file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002865 return 0;
2866 }
Mike Stump11289f42009-09-09 15:08:12 +00002867
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002868 assert(PP && "Forgot to set Preprocessor ?");
Douglas Gregor0e149972009-04-25 19:10:14 +00002869 if (!IdentifiersLoaded[ID - 1]) {
2870 uint32_t Offset = IdentifierOffsets[ID - 1];
Douglas Gregor95272492009-04-25 21:21:38 +00002871 const char *Str = IdentifierTableData + Offset;
Douglas Gregor5287b4e2009-04-25 21:04:17 +00002872
Douglas Gregorab4df582009-04-28 20:01:51 +00002873 // All of the strings in the PCH file are preceded by a 16-bit
2874 // length. Extract that 16-bit length to avoid having to execute
2875 // strlen().
Ted Kremenekca42a512009-10-23 04:45:31 +00002876 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
2877 // unsigned integers. This is important to avoid integer overflow when
2878 // we cast them to 'unsigned'.
Ted Kremenek49c52322009-10-23 03:57:22 +00002879 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregorab4df582009-04-28 20:01:51 +00002880 unsigned StrLen = (((unsigned) StrLenPtr[0])
2881 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Mike Stump11289f42009-09-09 15:08:12 +00002882 IdentifiersLoaded[ID - 1]
Kovarththanan Rajaratnama3b09592010-03-12 10:32:27 +00002883 = &PP->getIdentifierTable().get(Str, StrLen);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002884 }
Mike Stump11289f42009-09-09 15:08:12 +00002885
Douglas Gregor0e149972009-04-25 19:10:14 +00002886 return IdentifiersLoaded[ID - 1];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002887}
2888
Douglas Gregor258ae542009-04-27 06:38:32 +00002889void PCHReader::ReadSLocEntry(unsigned ID) {
2890 ReadSLocEntryRecord(ID);
2891}
2892
Steve Naroff2ddea052009-04-23 10:39:46 +00002893Selector PCHReader::DecodeSelector(unsigned ID) {
2894 if (ID == 0)
2895 return Selector();
Mike Stump11289f42009-09-09 15:08:12 +00002896
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002897 if (!MethodPoolLookupTableData)
Steve Naroff2ddea052009-04-23 10:39:46 +00002898 return Selector();
Douglas Gregor95c13f52009-04-25 17:48:32 +00002899
2900 if (ID > TotalNumSelectors) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002901 Error("selector ID out of range in PCH file");
Steve Naroff2ddea052009-04-23 10:39:46 +00002902 return Selector();
2903 }
Douglas Gregor95c13f52009-04-25 17:48:32 +00002904
2905 unsigned Index = ID - 1;
2906 if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) {
2907 // Load this selector from the selector table.
2908 // FIXME: endianness portability issues with SelectorOffsets table
2909 PCHMethodPoolLookupTrait Trait(*this);
Mike Stump11289f42009-09-09 15:08:12 +00002910 SelectorsLoaded[Index]
Douglas Gregor95c13f52009-04-25 17:48:32 +00002911 = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0);
2912 }
2913
2914 return SelectorsLoaded[Index];
Steve Naroff2ddea052009-04-23 10:39:46 +00002915}
2916
John McCall75b960e2010-06-01 09:23:16 +00002917Selector PCHReader::GetExternalSelector(uint32_t ID) {
Douglas Gregord720daf2010-04-06 17:30:22 +00002918 return DecodeSelector(ID);
2919}
2920
John McCall75b960e2010-06-01 09:23:16 +00002921uint32_t PCHReader::GetNumExternalSelectors() {
Douglas Gregord720daf2010-04-06 17:30:22 +00002922 return TotalNumSelectors + 1;
2923}
2924
Mike Stump11289f42009-09-09 15:08:12 +00002925DeclarationName
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002926PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
2927 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
2928 switch (Kind) {
2929 case DeclarationName::Identifier:
2930 return DeclarationName(GetIdentifierInfo(Record, Idx));
2931
2932 case DeclarationName::ObjCZeroArgSelector:
2933 case DeclarationName::ObjCOneArgSelector:
2934 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff3c301dc2009-04-23 15:15:40 +00002935 return DeclarationName(GetSelector(Record, Idx));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002936
2937 case DeclarationName::CXXConstructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002938 return Context->DeclarationNames.getCXXConstructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002939 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002940
2941 case DeclarationName::CXXDestructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002942 return Context->DeclarationNames.getCXXDestructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002943 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002944
2945 case DeclarationName::CXXConversionFunctionName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002946 return Context->DeclarationNames.getCXXConversionFunctionName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002947 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002948
2949 case DeclarationName::CXXOperatorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002950 return Context->DeclarationNames.getCXXOperatorName(
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002951 (OverloadedOperatorKind)Record[Idx++]);
2952
Alexis Hunt3d221f22009-11-29 07:34:05 +00002953 case DeclarationName::CXXLiteralOperatorName:
2954 return Context->DeclarationNames.getCXXLiteralOperatorName(
2955 GetIdentifierInfo(Record, Idx));
2956
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002957 case DeclarationName::CXXUsingDirective:
2958 return DeclarationName::getUsingDirectiveName();
2959 }
2960
2961 // Required to silence GCC warning
2962 return DeclarationName();
2963}
Douglas Gregor55abb232009-04-10 20:39:37 +00002964
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002965TemplateName
2966PCHReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) {
2967 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
2968 switch (Kind) {
2969 case TemplateName::Template:
2970 return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++])));
2971
2972 case TemplateName::OverloadedTemplate: {
2973 unsigned size = Record[Idx++];
2974 UnresolvedSet<8> Decls;
2975 while (size--)
2976 Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++])));
2977
2978 return Context->getOverloadedTemplateName(Decls.begin(), Decls.end());
2979 }
2980
2981 case TemplateName::QualifiedTemplate: {
2982 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2983 bool hasTemplKeyword = Record[Idx++];
2984 TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++]));
2985 return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
2986 }
2987
2988 case TemplateName::DependentTemplate: {
2989 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2990 if (Record[Idx++]) // isIdentifier
2991 return Context->getDependentTemplateName(NNS,
2992 GetIdentifierInfo(Record, Idx));
2993 return Context->getDependentTemplateName(NNS,
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002994 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002995 }
2996 }
2997
2998 assert(0 && "Unhandled template name kind!");
2999 return TemplateName();
3000}
3001
3002TemplateArgument
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00003003PCHReader::ReadTemplateArgument(const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003004 switch ((TemplateArgument::ArgKind)Record[Idx++]) {
3005 case TemplateArgument::Null:
3006 return TemplateArgument();
3007 case TemplateArgument::Type:
3008 return TemplateArgument(GetType(Record[Idx++]));
3009 case TemplateArgument::Declaration:
3010 return TemplateArgument(GetDecl(Record[Idx++]));
Argyrios Kyrtzidis0b0369a2010-06-28 09:31:34 +00003011 case TemplateArgument::Integral: {
3012 llvm::APSInt Value = ReadAPSInt(Record, Idx);
3013 QualType T = GetType(Record[Idx++]);
3014 return TemplateArgument(Value, T);
3015 }
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003016 case TemplateArgument::Template:
3017 return TemplateArgument(ReadTemplateName(Record, Idx));
3018 case TemplateArgument::Expression:
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00003019 return TemplateArgument(ReadExpr());
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003020 case TemplateArgument::Pack: {
3021 unsigned NumArgs = Record[Idx++];
3022 llvm::SmallVector<TemplateArgument, 8> Args;
3023 Args.reserve(NumArgs);
3024 while (NumArgs--)
Argyrios Kyrtzidisd0795b22010-06-28 22:28:35 +00003025 Args.push_back(ReadTemplateArgument(Record, Idx));
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00003026 TemplateArgument TemplArg;
3027 TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true);
3028 return TemplArg;
3029 }
3030 }
3031
3032 assert(0 && "Unhandled template argument kind!");
3033 return TemplateArgument();
3034}
3035
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00003036TemplateParameterList *
3037PCHReader::ReadTemplateParameterList(const RecordData &Record, unsigned &Idx) {
3038 SourceLocation TemplateLoc = ReadSourceLocation(Record, Idx);
3039 SourceLocation LAngleLoc = ReadSourceLocation(Record, Idx);
3040 SourceLocation RAngleLoc = ReadSourceLocation(Record, Idx);
3041
3042 unsigned NumParams = Record[Idx++];
3043 llvm::SmallVector<NamedDecl *, 16> Params;
3044 Params.reserve(NumParams);
3045 while (NumParams--)
3046 Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++])));
3047
3048 TemplateParameterList* TemplateParams =
3049 TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc,
3050 Params.data(), Params.size(), RAngleLoc);
3051 return TemplateParams;
3052}
3053
3054void
3055PCHReader::
3056ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs,
3057 const RecordData &Record, unsigned &Idx) {
3058 unsigned NumTemplateArgs = Record[Idx++];
3059 TemplArgs.reserve(NumTemplateArgs);
3060 while (NumTemplateArgs--)
3061 TemplArgs.push_back(ReadTemplateArgument(Record, Idx));
3062}
3063
Chris Lattnerca025db2010-05-07 21:43:38 +00003064NestedNameSpecifier *
3065PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) {
3066 unsigned N = Record[Idx++];
3067 NestedNameSpecifier *NNS = 0, *Prev = 0;
3068 for (unsigned I = 0; I != N; ++I) {
3069 NestedNameSpecifier::SpecifierKind Kind
3070 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
3071 switch (Kind) {
3072 case NestedNameSpecifier::Identifier: {
3073 IdentifierInfo *II = GetIdentifierInfo(Record, Idx);
3074 NNS = NestedNameSpecifier::Create(*Context, Prev, II);
3075 break;
3076 }
3077
3078 case NestedNameSpecifier::Namespace: {
3079 NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++]));
3080 NNS = NestedNameSpecifier::Create(*Context, Prev, NS);
3081 break;
3082 }
3083
3084 case NestedNameSpecifier::TypeSpec:
3085 case NestedNameSpecifier::TypeSpecWithTemplate: {
3086 Type *T = GetType(Record[Idx++]).getTypePtr();
3087 bool Template = Record[Idx++];
3088 NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T);
3089 break;
3090 }
3091
3092 case NestedNameSpecifier::Global: {
3093 NNS = NestedNameSpecifier::GlobalSpecifier(*Context);
3094 // No associated value, and there can't be a prefix.
3095 break;
3096 }
3097 Prev = NNS;
3098 }
3099 }
3100 return NNS;
3101}
3102
3103SourceRange
3104PCHReader::ReadSourceRange(const RecordData &Record, unsigned &Idx) {
Daniel Dunbar6d3bc082010-06-02 15:47:10 +00003105 SourceLocation beg = SourceLocation::getFromRawEncoding(Record[Idx++]);
3106 SourceLocation end = SourceLocation::getFromRawEncoding(Record[Idx++]);
3107 return SourceRange(beg, end);
Chris Lattnerca025db2010-05-07 21:43:38 +00003108}
3109
Douglas Gregor1daeb692009-04-13 18:14:40 +00003110/// \brief Read an integral value
3111llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
3112 unsigned BitWidth = Record[Idx++];
3113 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
3114 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
3115 Idx += NumWords;
3116 return Result;
3117}
3118
3119/// \brief Read a signed integral value
3120llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
3121 bool isUnsigned = Record[Idx++];
3122 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
3123}
3124
Douglas Gregore0a3a512009-04-14 21:55:33 +00003125/// \brief Read a floating-point value
3126llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregore0a3a512009-04-14 21:55:33 +00003127 return llvm::APFloat(ReadAPInt(Record, Idx));
3128}
3129
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00003130// \brief Read a string
3131std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) {
3132 unsigned Len = Record[Idx++];
Jay Foad7d0479f2009-05-21 09:52:38 +00003133 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00003134 Idx += Len;
3135 return Result;
3136}
3137
Chris Lattnercba86142010-05-10 00:25:06 +00003138CXXTemporary *PCHReader::ReadCXXTemporary(const RecordData &Record,
3139 unsigned &Idx) {
3140 CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++]));
3141 return CXXTemporary::Create(*Context, Decl);
3142}
3143
Douglas Gregor55abb232009-04-10 20:39:37 +00003144DiagnosticBuilder PCHReader::Diag(unsigned DiagID) {
Douglas Gregor92863e42009-04-10 23:10:45 +00003145 return Diag(SourceLocation(), DiagID);
3146}
3147
3148DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00003149 return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
Douglas Gregor55abb232009-04-10 20:39:37 +00003150}
Douglas Gregora9af1d12009-04-17 00:04:06 +00003151
Douglas Gregora868bbd2009-04-21 22:25:48 +00003152/// \brief Retrieve the identifier table associated with the
3153/// preprocessor.
3154IdentifierTable &PCHReader::getIdentifierTable() {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00003155 assert(PP && "Forgot to set Preprocessor ?");
3156 return PP->getIdentifierTable();
Douglas Gregora868bbd2009-04-21 22:25:48 +00003157}
3158
Douglas Gregora9af1d12009-04-17 00:04:06 +00003159/// \brief Record that the given ID maps to the given switch-case
3160/// statement.
3161void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
3162 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
3163 SwitchCaseStmts[ID] = SC;
3164}
3165
3166/// \brief Retrieve the switch-case statement with the given ID.
3167SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) {
3168 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
3169 return SwitchCaseStmts[ID];
3170}
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003171
3172/// \brief Record that the given label statement has been
3173/// deserialized and has the given ID.
3174void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) {
Mike Stump11289f42009-09-09 15:08:12 +00003175 assert(LabelStmts.find(ID) == LabelStmts.end() &&
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003176 "Deserialized label twice");
3177 LabelStmts[ID] = S;
3178
3179 // If we've already seen any goto statements that point to this
3180 // label, resolve them now.
3181 typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter;
3182 std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID);
3183 for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto)
3184 Goto->second->setLabel(S);
3185 UnresolvedGotoStmts.erase(Gotos.first, Gotos.second);
Douglas Gregor779d8652009-04-17 18:58:21 +00003186
3187 // If we've already seen any address-label statements that point to
3188 // this label, resolve them now.
3189 typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter;
Mike Stump11289f42009-09-09 15:08:12 +00003190 std::pair<AddrLabelIter, AddrLabelIter> AddrLabels
Douglas Gregor779d8652009-04-17 18:58:21 +00003191 = UnresolvedAddrLabelExprs.equal_range(ID);
Mike Stump11289f42009-09-09 15:08:12 +00003192 for (AddrLabelIter AddrLabel = AddrLabels.first;
Douglas Gregor779d8652009-04-17 18:58:21 +00003193 AddrLabel != AddrLabels.second; ++AddrLabel)
3194 AddrLabel->second->setLabel(S);
3195 UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second);
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003196}
3197
3198/// \brief Set the label of the given statement to the label
3199/// identified by ID.
3200///
3201/// Depending on the order in which the label and other statements
3202/// referencing that label occur, this operation may complete
3203/// immediately (updating the statement) or it may queue the
3204/// statement to be back-patched later.
3205void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) {
3206 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3207 if (Label != LabelStmts.end()) {
3208 // We've already seen this label, so set the label of the goto and
3209 // we're done.
3210 S->setLabel(Label->second);
3211 } else {
3212 // We haven't seen this label yet, so add this goto to the set of
3213 // unresolved goto statements.
3214 UnresolvedGotoStmts.insert(std::make_pair(ID, S));
3215 }
3216}
Douglas Gregor779d8652009-04-17 18:58:21 +00003217
3218/// \brief Set the label of the given expression to the label
3219/// identified by ID.
3220///
3221/// Depending on the order in which the label and other statements
3222/// referencing that label occur, this operation may complete
3223/// immediately (updating the statement) or it may queue the
3224/// statement to be back-patched later.
3225void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) {
3226 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3227 if (Label != LabelStmts.end()) {
3228 // We've already seen this label, so set the label of the
3229 // label-address expression and we're done.
3230 S->setLabel(Label->second);
3231 } else {
3232 // We haven't seen this label yet, so add this label-address
3233 // expression to the set of unresolved label-address expressions.
3234 UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S));
3235 }
3236}
Douglas Gregor1342e842009-07-06 18:54:52 +00003237
3238
Mike Stump11289f42009-09-09 15:08:12 +00003239PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader)
Douglas Gregor1342e842009-07-06 18:54:52 +00003240 : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) {
3241 Reader.CurrentlyLoadingTypeOrDecl = this;
3242}
3243
3244PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() {
3245 if (!Parent) {
3246 // If any identifiers with corresponding top-level declarations have
3247 // been loaded, load those declarations now.
3248 while (!Reader.PendingIdentifierInfos.empty()) {
3249 Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II,
3250 Reader.PendingIdentifierInfos.front().DeclIDs,
3251 true);
3252 Reader.PendingIdentifierInfos.pop_front();
3253 }
3254 }
3255
Mike Stump11289f42009-09-09 15:08:12 +00003256 Reader.CurrentlyLoadingTypeOrDecl = Parent;
Douglas Gregor1342e842009-07-06 18:54:52 +00003257}