blob: be763d51ca960a2e9601fc71e731bb4bb679585a [file] [log] [blame]
Douglas Gregor2cf26342009-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 Lattner4c6f9522009-04-27 05:14:47 +000013
Douglas Gregor2cf26342009-04-09 22:27:44 +000014#include "clang/Frontend/PCHReader.h"
Douglas Gregor0a0428e2009-04-10 20:39:37 +000015#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbarc7162932009-11-11 23:58:53 +000016#include "clang/Frontend/Utils.h"
Douglas Gregor668c1a42009-04-21 22:25:48 +000017#include "../Sema/Sema.h" // FIXME: move Sema headers elsewhere
Douglas Gregorfdd01722009-04-14 00:24:19 +000018#include "clang/AST/ASTConsumer.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000019#include "clang/AST/ASTContext.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000020#include "clang/AST/Expr.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000021#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000022#include "clang/AST/TypeLocVisitor.h"
Chris Lattner42d42b52009-04-10 21:41:48 +000023#include "clang/Lex/MacroInfo.h"
Douglas Gregor6a5a23f2010-03-19 21:51:54 +000024#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000026#include "clang/Lex/HeaderSearch.h"
Douglas Gregor668c1a42009-04-21 22:25:48 +000027#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000028#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000029#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000030#include "clang/Basic/FileManager.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000031#include "clang/Basic/TargetInfo.h"
Douglas Gregor445e23e2009-10-05 21:07:28 +000032#include "clang/Basic/Version.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000033#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000034#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000035#include "llvm/Support/MemoryBuffer.h"
John McCall833ca992009-10-29 08:12:44 +000036#include "llvm/Support/ErrorHandling.h"
Daniel Dunbard5b21972009-11-18 19:50:41 +000037#include "llvm/System/Path.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000038#include <algorithm>
Douglas Gregore721f952009-04-28 18:58:38 +000039#include <iterator>
Douglas Gregor2cf26342009-04-09 22:27:44 +000040#include <cstdio>
Douglas Gregor4fed3f42009-04-27 18:38:38 +000041#include <sys/stat.h>
Douglas Gregor2cf26342009-04-09 22:27:44 +000042using namespace clang;
43
44//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis11e51102009-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 Carrutheb5d7b72010-04-17 20:17:31 +000065 PARSE_LANGOPT_IMPORTANT(GNUKeywords, diag::warn_pch_gnu_keywords);
Argyrios Kyrtzidis11e51102009-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 Jahanian412e7982010-02-09 19:31:38 +000077 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI2, diag::warn_pch_nonfragile_abi2);
Fariborz Jahanian4c9d8d02010-04-22 21:01:59 +000078 PARSE_LANGOPT_IMPORTANT(NoConstantCFStrings,
79 diag::warn_pch_no_constant_cfstrings);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000080 PARSE_LANGOPT_BENIGN(PascalStrings);
81 PARSE_LANGOPT_BENIGN(WritableStrings);
Mike Stump1eb44332009-09-09 15:08:12 +000082 PARSE_LANGOPT_IMPORTANT(LaxVectorConversions,
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000083 diag::warn_pch_lax_vector_conversions);
Nate Begeman69cfb9b2009-06-25 22:57:40 +000084 PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000085 PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions);
Daniel Dunbar73482882010-02-10 18:48:44 +000086 PARSE_LANGOPT_IMPORTANT(SjLjExceptions, diag::warn_pch_sjlj_exceptions);
Argyrios Kyrtzidis11e51102009-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 Stump1eb44332009-09-09 15:08:12 +000090 PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics,
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +000091 diag::warn_pch_thread_safe_statics);
Daniel Dunbar5345c392009-09-03 04:54:28 +000092 PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads);
Argyrios Kyrtzidis11e51102009-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 Lattnera4d71452010-06-26 21:25:03 +000096 PARSE_LANGOPT_BENIGN(getSignedOverflowBehavior());
Mike Stump1eb44332009-09-09 15:08:12 +000097 PARSE_LANGOPT_IMPORTANT(HeinousExtensions,
Argyrios Kyrtzidis11e51102009-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 Thompsona6fda122009-11-05 20:14:16 +0000114 PARSE_LANGOPT_IMPORTANT(ShortWChar, diag::warn_pch_short_wchar);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000115 if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000116 Reader.Diag(diag::warn_pch_gc_mode)
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000117 << LangOpts.getGCMode() << PPLangOpts.getGCMode();
118 return true;
119 }
120 PARSE_LANGOPT_BENIGN(getVisibilityMode());
Daniel Dunbarab8e2812009-09-21 04:16:19 +0000121 PARSE_LANGOPT_IMPORTANT(getStackProtectorMode(),
122 diag::warn_pch_stack_protector);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000123 PARSE_LANGOPT_BENIGN(InstantiationDepth);
Nate Begeman69cfb9b2009-06-25 22:57:40 +0000124 PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl);
Mike Stump9c276ae2009-12-12 01:27:46 +0000125 PARSE_LANGOPT_BENIGN(CatchUndefined);
Daniel Dunbarab8e2812009-09-21 04:16:19 +0000126 PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_pch_elide_constructors);
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +0000127#undef PARSE_LANGOPT_IMPORTANT
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000128#undef PARSE_LANGOPT_BENIGN
129
130 return false;
131}
132
Daniel Dunbardc3c0d22009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000140}
141
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000142bool PCHValidator::ReadPredefinesBuffer(llvm::StringRef PCHPredef,
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000143 FileID PCHBufferID,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000144 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000145 std::string &SuggestedPredefines) {
Daniel Dunbarc7162932009-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 Dunbar7b5a1212009-11-11 05:29:04 +0000150 llvm::SmallString<256> PCHInclude;
151 PCHInclude += "#include \"";
Daniel Dunbarc7162932009-11-11 23:58:53 +0000152 PCHInclude += NormalizeDashIncludePath(OriginalFileName);
Daniel Dunbar7b5a1212009-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 Kremenekd5d7b3f2010-03-18 00:56:54 +0000157 if (Left == PP.getPredefines()) {
158 Error("Missing PCH include entry!");
159 return true;
160 }
Daniel Dunbar7b5a1212009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000165 return false;
166
167 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000168
Daniel Dunbar10014aa2009-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 Dunbare6750492009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000177
Daniel Dunbar4d5936a2009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000180 std::sort(CmdLineLines.begin(), CmdLineLines.end());
181 std::sort(PCHLines.begin(), PCHLines.end());
182
Daniel Dunbar4d5936a2009-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 Kyrtzidis11e51102009-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 Dunbar4d5936a2009-11-11 05:26:28 +0000193 llvm::StringRef Missing = MissingPredefines[I];
194 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000195 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
196 return true;
197 }
Mike Stump1eb44332009-09-09 15:08:12 +0000198
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000199 // This is a macro definition. Determine the name of the macro we're
200 // defining.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000201 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump1eb44332009-09-09 15:08:12 +0000202 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-11-11 05:26:28 +0000206 llvm::StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000207
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000208 // Determine whether this macro was given a different definition on the
209 // command line.
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000210 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000211 std::string::size_type MacroDefLen = MacroDefStart.size();
Daniel Dunbare6750492009-11-13 16:46:11 +0000212 llvm::SmallVector<llvm::StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000213 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
214 MacroDefStart);
215 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar10014aa2009-11-11 03:45:59 +0000216 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000217 // Different macro; we're done.
218 ConflictPos = CmdLineLines.end();
Mike Stump1eb44332009-09-09 15:08:12 +0000219 break;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000220 }
Mike Stump1eb44332009-09-09 15:08:12 +0000221
222 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000223 "Invalid #define in predefines buffer?");
Mike Stump1eb44332009-09-09 15:08:12 +0000224 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000225 (*ConflictPos)[MacroDefLen] != '(')
226 continue; // Longer macro name; keep trying.
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000228 // We found a conflicting macro definition.
229 break;
230 }
Mike Stump1eb44332009-09-09 15:08:12 +0000231
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000242
243 ConflictingDefines = true;
244 continue;
245 }
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Daniel Dunbar10014aa2009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000249 if (ConflictingDefines)
250 continue; // Don't complain if there are already conflicting defs
Mike Stump1eb44332009-09-09 15:08:12 +0000251
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-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 Kyrtzidis11e51102009-06-19 00:03:23 +0000261 .getFileLocWithOffset(Offset);
262 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
263 }
Mike Stump1eb44332009-09-09 15:08:12 +0000264
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000265 if (ConflictingDefines)
266 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-11-11 05:26:28 +0000272 std::vector<llvm::StringRef> ExtraPredefines;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000273 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
274 PCHLines.begin(), PCHLines.end(),
Mike Stump1eb44332009-09-09 15:08:12 +0000275 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000276 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Daniel Dunbar4d5936a2009-11-11 05:26:28 +0000277 llvm::StringRef &Extra = ExtraPredefines[I];
278 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis11e51102009-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 Stump1eb44332009-09-09 15:08:12 +0000286 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-11-11 05:26:28 +0000290 llvm::StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis11e51102009-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 Dunbar4d5936a2009-11-11 05:26:28 +0000295 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar4fda42e2009-11-11 00:52:00 +0000296 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis11e51102009-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 Gregor12fab312010-03-16 16:35:32 +0000310void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
311 unsigned ID) {
312 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
313 ++NumHeaderInfos;
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000314}
315
316void PCHValidator::ReadCounter(unsigned Value) {
317 PP.setCounterValue(Value);
318}
319
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000320//===----------------------------------------------------------------------===//
Douglas Gregor668c1a42009-04-21 22:25:48 +0000321// PCH reader implementation
322//===----------------------------------------------------------------------===//
323
Mike Stump1eb44332009-09-09 15:08:12 +0000324PCHReader::PCHReader(Preprocessor &PP, ASTContext *Context,
325 const char *isysroot)
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000326 : Listener(new PCHValidator(PP, *this)), SourceMgr(PP.getSourceManager()),
327 FileMgr(PP.getFileManager()), Diags(PP.getDiagnostics()),
Douglas Gregor52e71082009-10-16 18:18:30 +0000328 SemaObj(0), PP(&PP), Context(Context), StatCache(0), Consumer(0),
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000329 IdentifierTableData(0), IdentifierLookupTable(0),
330 IdentifierOffsets(0),
331 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
332 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000333 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregorc6fbbed2010-03-19 22:13:20 +0000334 NumPreallocatedPreprocessingEntities(0),
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000335 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump1eb44332009-09-09 15:08:12 +0000336 NumSLocEntriesRead(0), NumStatementsRead(0),
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000337 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregore650c8c2009-07-07 00:12:59 +0000338 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump1eb44332009-09-09 15:08:12 +0000339 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregore650c8c2009-07-07 00:12:59 +0000340 RelocatablePCH = false;
341}
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000342
343PCHReader::PCHReader(SourceManager &SourceMgr, FileManager &FileMgr,
Mike Stump1eb44332009-09-09 15:08:12 +0000344 Diagnostic &Diags, const char *isysroot)
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000345 : SourceMgr(SourceMgr), FileMgr(FileMgr), Diags(Diags),
Douglas Gregor52e71082009-10-16 18:18:30 +0000346 SemaObj(0), PP(0), Context(0), StatCache(0), Consumer(0),
Chris Lattner4c6f9522009-04-27 05:14:47 +0000347 IdentifierTableData(0), IdentifierLookupTable(0),
348 IdentifierOffsets(0),
349 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
350 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000351 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregorc6fbbed2010-03-19 22:13:20 +0000352 NumPreallocatedPreprocessingEntities(0),
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000353 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump1eb44332009-09-09 15:08:12 +0000354 NumSLocEntriesRead(0), NumStatementsRead(0),
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000355 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregord89275b2009-07-06 18:54:52 +0000356 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump1eb44332009-09-09 15:08:12 +0000357 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregore650c8c2009-07-07 00:12:59 +0000358 RelocatablePCH = false;
359}
Chris Lattner4c6f9522009-04-27 05:14:47 +0000360
361PCHReader::~PCHReader() {}
362
Chris Lattner4c6f9522009-04-27 05:14:47 +0000363
Douglas Gregor668c1a42009-04-21 22:25:48 +0000364namespace {
Benjamin Kramerbd218282009-11-28 10:07:24 +0000365class PCHMethodPoolLookupTrait {
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000375
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000380
Douglas Gregorf0aaf7a2009-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 Dunbar2596e422009-10-17 23:52:28 +0000388 R = llvm::HashString(II->getName(), R);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000389 return R;
390 }
Mike Stump1eb44332009-09-09 15:08:12 +0000391
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000395
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000403
Douglas Gregor83941df2009-04-25 17:48:32 +0000404 internal_key_type ReadKey(const unsigned char* d, unsigned) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000405 using namespace clang::io;
Chris Lattnerd1d64a02009-04-27 21:45:14 +0000406 SelectorTable &SelTable = Reader.getContext()->Selectors;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000407 unsigned N = ReadUnalignedLE16(d);
Mike Stump1eb44332009-09-09 15:08:12 +0000408 IdentifierInfo *FirstII
Douglas Gregorf0aaf7a2009-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 Gregor75fdb232009-05-22 22:45:36 +0000420 return SelTable.getSelector(N, Args.data());
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000421 }
Mike Stump1eb44332009-09-09 15:08:12 +0000422
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000433 ObjCMethodDecl *Method
Douglas Gregorf0aaf7a2009-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 Kremenek298ed872010-02-11 00:53:01 +0000442 ObjCMethodList *Mem =
443 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
444 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorf0aaf7a2009-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 Stump1eb44332009-09-09 15:08:12 +0000451 ObjCMethodDecl *Method
Douglas Gregorf0aaf7a2009-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 Kremenek298ed872010-02-11 00:53:01 +0000460 ObjCMethodList *Mem =
461 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
462 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000463 Prev = Prev->Next;
464 }
465
466 return Result;
467 }
468};
Mike Stump1eb44332009-09-09 15:08:12 +0000469
470} // end anonymous namespace
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000471
472/// \brief The on-disk hash table used for the global method pool.
Mike Stump1eb44332009-09-09 15:08:12 +0000473typedef OnDiskChainedHashTable<PCHMethodPoolLookupTrait>
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +0000474 PCHMethodPoolLookupTable;
475
476namespace {
Benjamin Kramerbd218282009-11-28 10:07:24 +0000477class PCHIdentifierLookupTrait {
Douglas Gregor668c1a42009-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 Stump1eb44332009-09-09 15:08:12 +0000492 explicit PCHIdentifierLookupTrait(PCHReader &Reader, IdentifierInfo *II = 0)
Douglas Gregor668c1a42009-04-21 22:25:48 +0000493 : Reader(Reader), KnownII(II) { }
Mike Stump1eb44332009-09-09 15:08:12 +0000494
Douglas Gregor668c1a42009-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 Stump1eb44332009-09-09 15:08:12 +0000500
Douglas Gregor668c1a42009-04-21 22:25:48 +0000501 static unsigned ComputeHash(const internal_key_type& a) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000502 return llvm::HashString(llvm::StringRef(a.first, a.second));
Douglas Gregor668c1a42009-04-21 22:25:48 +0000503 }
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Douglas Gregor668c1a42009-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 Stump1eb44332009-09-09 15:08:12 +0000508
Douglas Gregor668c1a42009-04-21 22:25:48 +0000509 static std::pair<unsigned, unsigned>
510 ReadKeyDataLength(const unsigned char*& d) {
511 using namespace clang::io;
Douglas Gregor5f8e3302009-04-25 20:26:24 +0000512 unsigned DataLen = ReadUnalignedLE16(d);
Douglas Gregord6595a42009-04-25 21:04:17 +0000513 unsigned KeyLen = ReadUnalignedLE16(d);
Douglas Gregor668c1a42009-04-21 22:25:48 +0000514 return std::make_pair(KeyLen, DataLen);
515 }
Mike Stump1eb44332009-09-09 15:08:12 +0000516
Douglas Gregor668c1a42009-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 Stump1eb44332009-09-09 15:08:12 +0000522
523 IdentifierInfo *ReadData(const internal_key_type& k,
Douglas Gregor668c1a42009-04-21 22:25:48 +0000524 const unsigned char* d,
525 unsigned DataLen) {
526 using namespace clang::io;
Douglas Gregora92193e2009-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 Gregor5998da52009-04-28 21:32:13 +0000544 unsigned Bits = ReadUnalignedLE16(d);
Douglas Gregor2deaea32009-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 Stump1eb44332009-09-09 15:08:12 +0000555
Douglas Gregor2deaea32009-04-22 18:49:13 +0000556 assert(Bits == 0 && "Extra bits in the identifier?");
Douglas Gregor5998da52009-04-28 21:32:13 +0000557 DataLen -= 6;
Douglas Gregor668c1a42009-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 Gregor5f8e3302009-04-25 20:26:24 +0000563 II = &Reader.getIdentifierTable().CreateIdentifierInfo(
564 k.first, k.first + k.second);
Douglas Gregor668c1a42009-04-21 22:25:48 +0000565 Reader.SetIdentifierInfo(ID, II);
566
Douglas Gregor2deaea32009-04-22 18:49:13 +0000567 // Set or check the various bits in the IdentifierInfo structure.
568 // FIXME: Load token IDs lazily, too?
Douglas Gregor2deaea32009-04-22 18:49:13 +0000569 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
Mike Stump1eb44332009-09-09 15:08:12 +0000570 assert(II->isExtensionToken() == ExtensionToken &&
Douglas Gregor2deaea32009-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 Gregor37e26842009-04-21 23:56:24 +0000578 // If this identifier is a macro, deserialize the macro
579 // definition.
580 if (hasMacroDefinition) {
Douglas Gregor5998da52009-04-28 21:32:13 +0000581 uint32_t Offset = ReadUnalignedLE32(d);
Douglas Gregor37e26842009-04-21 23:56:24 +0000582 Reader.ReadMacroRecord(Offset);
Douglas Gregor5998da52009-04-28 21:32:13 +0000583 DataLen -= 4;
Douglas Gregor37e26842009-04-21 23:56:24 +0000584 }
Douglas Gregor668c1a42009-04-21 22:25:48 +0000585
586 // Read all of the declarations visible at global scope with this
587 // name.
Chris Lattner6bf690f2009-04-27 22:17:41 +0000588 if (Reader.getContext() == 0) return II;
Douglas Gregord89275b2009-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 Gregor668c1a42009-04-21 22:25:48 +0000594 }
Mike Stump1eb44332009-09-09 15:08:12 +0000595
Douglas Gregor668c1a42009-04-21 22:25:48 +0000596 return II;
597 }
598};
Mike Stump1eb44332009-09-09 15:08:12 +0000599
600} // end anonymous namespace
Douglas Gregor668c1a42009-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 Stump1eb44332009-09-09 15:08:12 +0000604typedef OnDiskChainedHashTable<PCHIdentifierLookupTrait>
Douglas Gregor668c1a42009-04-21 22:25:48 +0000605 PCHIdentifierLookupTable;
606
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +0000607void PCHReader::Error(const char *Msg) {
608 Diag(diag::err_fe_pch_malformed) << Msg;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000609}
610
Douglas Gregore1d918e2009-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 Dunbardc3c0d22009-11-11 00:52:11 +0000628bool PCHReader::CheckPredefinesBuffer(llvm::StringRef PCHPredef,
Douglas Gregore1d918e2009-04-10 23:10:45 +0000629 FileID PCHBufferID) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000630 if (Listener)
Daniel Dunbardc3c0d22009-11-11 00:52:11 +0000631 return Listener->ReadPredefinesBuffer(PCHPredef, PCHBufferID,
Daniel Dunbar7b5a1212009-11-11 05:29:04 +0000632 ActualOriginalFileName,
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +0000633 SuggestedPredefines);
Douglas Gregore721f952009-04-28 18:58:38 +0000634 return false;
Douglas Gregore1d918e2009-04-10 23:10:45 +0000635}
636
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000637//===----------------------------------------------------------------------===//
638// Source Manager Deserialization
639//===----------------------------------------------------------------------===//
640
Douglas Gregorbd945002009-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 Gregore650c8c2009-07-07 00:12:59 +0000643bool PCHReader::ParseLineTable(llvm::SmallVectorImpl<uint64_t> &Record) {
Douglas Gregorbd945002009-04-13 16:31:14 +0000644 unsigned Idx = 0;
645 LineTableInfo &LineTable = SourceMgr.getLineTable();
646
647 // Parse the file names
Douglas Gregorff0a9872009-04-13 17:12:42 +0000648 std::map<int, int> FileIDs;
649 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregorbd945002009-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 Gregore650c8c2009-07-07 00:12:59 +0000654 MaybeAddSystemRootToFilename(Filename);
Mike Stump1eb44332009-09-09 15:08:12 +0000655 FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(),
Douglas Gregorff0a9872009-04-13 17:12:42 +0000656 Filename.size());
Douglas Gregorbd945002009-04-13 16:31:14 +0000657 }
658
659 // Parse the line entries
660 std::vector<LineEntry> Entries;
661 while (Idx < Record.size()) {
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000662 int FID = Record[Idx++];
Douglas Gregorbd945002009-04-13 16:31:14 +0000663
664 // Extract the line entries
665 unsigned NumEntries = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000666 assert(NumEntries && "Numentries is 00000");
Douglas Gregorbd945002009-04-13 16:31:14 +0000667 Entries.clear();
668 Entries.reserve(NumEntries);
669 for (unsigned I = 0; I != NumEntries; ++I) {
670 unsigned FileOffset = Record[Idx++];
671 unsigned LineNo = Record[Idx++];
Argyrios Kyrtzidisf52a5d22010-07-02 11:55:05 +0000672 int FilenameID = FileIDs[Record[Idx++]];
Mike Stump1eb44332009-09-09 15:08:12 +0000673 SrcMgr::CharacteristicKind FileKind
Douglas Gregorbd945002009-04-13 16:31:14 +0000674 = (SrcMgr::CharacteristicKind)Record[Idx++];
675 unsigned IncludeOffset = Record[Idx++];
676 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
677 FileKind, IncludeOffset));
678 }
679 LineTable.AddEntry(FID, Entries);
680 }
681
682 return false;
683}
684
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000685namespace {
686
Benjamin Kramerbd218282009-11-28 10:07:24 +0000687class PCHStatData {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000688public:
689 const bool hasStat;
690 const ino_t ino;
691 const dev_t dev;
692 const mode_t mode;
693 const time_t mtime;
694 const off_t size;
Mike Stump1eb44332009-09-09 15:08:12 +0000695
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000696 PCHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Mike Stump1eb44332009-09-09 15:08:12 +0000697 : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {}
698
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000699 PCHStatData()
700 : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {}
701};
702
Benjamin Kramerbd218282009-11-28 10:07:24 +0000703class PCHStatLookupTrait {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000704 public:
705 typedef const char *external_key_type;
706 typedef const char *internal_key_type;
707
708 typedef PCHStatData data_type;
709
710 static unsigned ComputeHash(const char *path) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000711 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000712 }
713
714 static internal_key_type GetInternalKey(const char *path) { return path; }
715
716 static bool EqualKey(internal_key_type a, internal_key_type b) {
717 return strcmp(a, b) == 0;
718 }
719
720 static std::pair<unsigned, unsigned>
721 ReadKeyDataLength(const unsigned char*& d) {
722 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
723 unsigned DataLen = (unsigned) *d++;
724 return std::make_pair(KeyLen + 1, DataLen);
725 }
726
727 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
728 return (const char *)d;
729 }
730
731 static data_type ReadData(const internal_key_type, const unsigned char *d,
732 unsigned /*DataLen*/) {
733 using namespace clang::io;
734
735 if (*d++ == 1)
736 return data_type();
737
738 ino_t ino = (ino_t) ReadUnalignedLE32(d);
739 dev_t dev = (dev_t) ReadUnalignedLE32(d);
740 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump1eb44332009-09-09 15:08:12 +0000741 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000742 off_t size = (off_t) ReadUnalignedLE64(d);
743 return data_type(ino, dev, mode, mtime, size);
744 }
745};
746
747/// \brief stat() cache for precompiled headers.
748///
749/// This cache is very similar to the stat cache used by pretokenized
750/// headers.
Benjamin Kramerbd218282009-11-28 10:07:24 +0000751class PCHStatCache : public StatSysCallCache {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000752 typedef OnDiskChainedHashTable<PCHStatLookupTrait> CacheTy;
753 CacheTy *Cache;
754
755 unsigned &NumStatHits, &NumStatMisses;
Mike Stump1eb44332009-09-09 15:08:12 +0000756public:
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000757 PCHStatCache(const unsigned char *Buckets,
758 const unsigned char *Base,
759 unsigned &NumStatHits,
Mike Stump1eb44332009-09-09 15:08:12 +0000760 unsigned &NumStatMisses)
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000761 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
762 Cache = CacheTy::Create(Buckets, Base);
763 }
764
765 ~PCHStatCache() { delete Cache; }
Mike Stump1eb44332009-09-09 15:08:12 +0000766
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000767 int stat(const char *path, struct stat *buf) {
768 // Do the lookup for the file's data in the PCH file.
769 CacheTy::iterator I = Cache->find(path);
770
771 // If we don't get a hit in the PCH file just forward to 'stat'.
772 if (I == Cache->end()) {
773 ++NumStatMisses;
Douglas Gregor52e71082009-10-16 18:18:30 +0000774 return StatSysCallCache::stat(path, buf);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000775 }
Mike Stump1eb44332009-09-09 15:08:12 +0000776
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000777 ++NumStatHits;
778 PCHStatData Data = *I;
Mike Stump1eb44332009-09-09 15:08:12 +0000779
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000780 if (!Data.hasStat)
781 return 1;
782
783 buf->st_ino = Data.ino;
784 buf->st_dev = Data.dev;
785 buf->st_mtime = Data.mtime;
786 buf->st_mode = Data.mode;
787 buf->st_size = Data.size;
788 return 0;
789 }
790};
791} // end anonymous namespace
792
793
Douglas Gregor14f79002009-04-10 03:52:48 +0000794/// \brief Read the source manager block
Douglas Gregore1d918e2009-04-10 23:10:45 +0000795PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() {
Douglas Gregor14f79002009-04-10 03:52:48 +0000796 using namespace SrcMgr;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000797
798 // Set the source-location entry cursor to the current position in
799 // the stream. This cursor will be used to read the contents of the
800 // source manager block initially, and then lazily read
801 // source-location entries as needed.
802 SLocEntryCursor = Stream;
803
804 // The stream itself is going to skip over the source manager block.
805 if (Stream.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +0000806 Error("malformed block record in PCH file");
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000807 return Failure;
808 }
809
810 // Enter the source manager block.
811 if (SLocEntryCursor.EnterSubBlock(pch::SOURCE_MANAGER_BLOCK_ID)) {
Douglas Gregora02b1472009-04-28 21:53:25 +0000812 Error("malformed source manager block record in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000813 return Failure;
814 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000815
Douglas Gregor14f79002009-04-10 03:52:48 +0000816 RecordData Record;
817 while (true) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000818 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregor14f79002009-04-10 03:52:48 +0000819 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000820 if (SLocEntryCursor.ReadBlockEnd()) {
Douglas Gregora02b1472009-04-28 21:53:25 +0000821 Error("error at end of Source Manager block in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000822 return Failure;
823 }
Douglas Gregore1d918e2009-04-10 23:10:45 +0000824 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +0000825 }
Mike Stump1eb44332009-09-09 15:08:12 +0000826
Douglas Gregor14f79002009-04-10 03:52:48 +0000827 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
828 // No known subblocks, always skip them.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000829 SLocEntryCursor.ReadSubBlockID();
830 if (SLocEntryCursor.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +0000831 Error("malformed block record in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +0000832 return Failure;
833 }
Douglas Gregor14f79002009-04-10 03:52:48 +0000834 continue;
835 }
Mike Stump1eb44332009-09-09 15:08:12 +0000836
Douglas Gregor14f79002009-04-10 03:52:48 +0000837 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000838 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregor14f79002009-04-10 03:52:48 +0000839 continue;
840 }
Mike Stump1eb44332009-09-09 15:08:12 +0000841
Douglas Gregor14f79002009-04-10 03:52:48 +0000842 // Read a record.
843 const char *BlobStart;
844 unsigned BlobLen;
845 Record.clear();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000846 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000847 default: // Default behavior: ignore.
848 break;
849
Chris Lattner2c78b872009-04-14 23:22:57 +0000850 case pch::SM_LINE_TABLE:
Douglas Gregore650c8c2009-07-07 00:12:59 +0000851 if (ParseLineTable(Record))
Douglas Gregorbd945002009-04-13 16:31:14 +0000852 return Failure;
Chris Lattner2c78b872009-04-14 23:22:57 +0000853 break;
Douglas Gregor2eafc1b2009-04-26 00:07:37 +0000854
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000855 case pch::SM_SLOC_FILE_ENTRY:
856 case pch::SM_SLOC_BUFFER_ENTRY:
857 case pch::SM_SLOC_INSTANTIATION_ENTRY:
858 // Once we hit one of the source location entries, we're done.
859 return Success;
Douglas Gregor14f79002009-04-10 03:52:48 +0000860 }
861 }
862}
863
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000864/// \brief Read in the source location entry with the given ID.
865PCHReader::PCHReadResult PCHReader::ReadSLocEntryRecord(unsigned ID) {
866 if (ID == 0)
867 return Success;
868
869 if (ID > TotalNumSLocEntries) {
870 Error("source location entry ID out-of-range for PCH file");
871 return Failure;
872 }
873
874 ++NumSLocEntriesRead;
875 SLocEntryCursor.JumpToBit(SLocOffsets[ID - 1]);
876 unsigned Code = SLocEntryCursor.ReadCode();
877 if (Code == llvm::bitc::END_BLOCK ||
878 Code == llvm::bitc::ENTER_SUBBLOCK ||
879 Code == llvm::bitc::DEFINE_ABBREV) {
880 Error("incorrectly-formatted source location entry in PCH file");
881 return Failure;
882 }
883
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000884 RecordData Record;
885 const char *BlobStart;
886 unsigned BlobLen;
887 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
888 default:
889 Error("incorrectly-formatted source location entry in PCH file");
890 return Failure;
891
892 case pch::SM_SLOC_FILE_ENTRY: {
Douglas Gregore650c8c2009-07-07 00:12:59 +0000893 std::string Filename(BlobStart, BlobStart + BlobLen);
894 MaybeAddSystemRootToFilename(Filename);
895 const FileEntry *File = FileMgr.getFile(Filename);
Chris Lattnerd3555ae2009-06-15 04:35:16 +0000896 if (File == 0) {
897 std::string ErrorStr = "could not find file '";
Douglas Gregore650c8c2009-07-07 00:12:59 +0000898 ErrorStr += Filename;
Chris Lattnerd3555ae2009-06-15 04:35:16 +0000899 ErrorStr += "' referenced by PCH file";
900 Error(ErrorStr.c_str());
901 return Failure;
902 }
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Douglas Gregor2d52be52010-03-21 22:49:54 +0000904 if (Record.size() < 10) {
Ted Kremenek1857f622010-03-18 21:23:05 +0000905 Error("source location entry is incorrect");
906 return Failure;
907 }
908
Douglas Gregor9f692a02010-04-09 15:54:22 +0000909 if ((off_t)Record[4] != File->getSize()
910#if !defined(LLVM_ON_WIN32)
911 // In our regression testing, the Windows file system seems to
912 // have inconsistent modification times that sometimes
913 // erroneously trigger this error-handling path.
914 || (time_t)Record[5] != File->getModificationTime()
915#endif
916 ) {
Douglas Gregor2d52be52010-03-21 22:49:54 +0000917 Diag(diag::err_fe_pch_file_modified)
918 << Filename;
919 return Failure;
920 }
921
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000922 FileID FID = SourceMgr.createFileID(File,
923 SourceLocation::getFromRawEncoding(Record[1]),
924 (SrcMgr::CharacteristicKind)Record[2],
925 ID, Record[0]);
926 if (Record[3])
927 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile())
928 .setHasLineDirectives();
929
Douglas Gregor12fab312010-03-16 16:35:32 +0000930 // Reconstruct header-search information for this file.
931 HeaderFileInfo HFI;
Douglas Gregor2d52be52010-03-21 22:49:54 +0000932 HFI.isImport = Record[6];
933 HFI.DirInfo = Record[7];
934 HFI.NumIncludes = Record[8];
935 HFI.ControllingMacroID = Record[9];
Douglas Gregor12fab312010-03-16 16:35:32 +0000936 if (Listener)
937 Listener->ReadHeaderFileInfo(HFI, File->getUID());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000938 break;
939 }
940
941 case pch::SM_SLOC_BUFFER_ENTRY: {
942 const char *Name = BlobStart;
943 unsigned Offset = Record[0];
944 unsigned Code = SLocEntryCursor.ReadCode();
945 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000946 unsigned RecCode
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000947 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +0000948
949 if (RecCode != pch::SM_SLOC_BUFFER_BLOB) {
950 Error("PCH record has invalid code");
951 return Failure;
952 }
953
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000954 llvm::MemoryBuffer *Buffer
Chris Lattnera0a270c2010-04-05 22:42:27 +0000955 = llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(BlobStart, BlobLen - 1),
956 Name);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000957 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset);
Mike Stump1eb44332009-09-09 15:08:12 +0000958
Douglas Gregor92b059e2009-04-28 20:33:11 +0000959 if (strcmp(Name, "<built-in>") == 0) {
960 PCHPredefinesBufferID = BufferID;
961 PCHPredefines = BlobStart;
962 PCHPredefinesLen = BlobLen - 1;
963 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000964
965 break;
966 }
967
968 case pch::SM_SLOC_INSTANTIATION_ENTRY: {
Mike Stump1eb44332009-09-09 15:08:12 +0000969 SourceLocation SpellingLoc
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000970 = SourceLocation::getFromRawEncoding(Record[1]);
971 SourceMgr.createInstantiationLoc(SpellingLoc,
972 SourceLocation::getFromRawEncoding(Record[2]),
973 SourceLocation::getFromRawEncoding(Record[3]),
974 Record[4],
975 ID,
976 Record[0]);
977 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000978 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000979 }
980
981 return Success;
982}
983
Chris Lattner6367f6d2009-04-27 01:05:14 +0000984/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
985/// specified cursor. Read the abbreviations that are at the top of the block
986/// and then leave the cursor pointing into the block.
987bool PCHReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
988 unsigned BlockID) {
989 if (Cursor.EnterSubBlock(BlockID)) {
Douglas Gregora02b1472009-04-28 21:53:25 +0000990 Error("malformed block record in PCH file");
Chris Lattner6367f6d2009-04-27 01:05:14 +0000991 return Failure;
992 }
Mike Stump1eb44332009-09-09 15:08:12 +0000993
Chris Lattner6367f6d2009-04-27 01:05:14 +0000994 while (true) {
995 unsigned Code = Cursor.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +0000996
Chris Lattner6367f6d2009-04-27 01:05:14 +0000997 // We expect all abbrevs to be at the start of the block.
998 if (Code != llvm::bitc::DEFINE_ABBREV)
999 return false;
1000 Cursor.ReadAbbrevRecord();
1001 }
1002}
1003
Douglas Gregor37e26842009-04-21 23:56:24 +00001004void PCHReader::ReadMacroRecord(uint64_t Offset) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001005 assert(PP && "Forgot to set Preprocessor ?");
Mike Stump1eb44332009-09-09 15:08:12 +00001006
Douglas Gregor37e26842009-04-21 23:56:24 +00001007 // Keep track of where we are in the stream, then jump back there
1008 // after reading this macro.
1009 SavedStreamPosition SavedPosition(Stream);
1010
1011 Stream.JumpToBit(Offset);
1012 RecordData Record;
1013 llvm::SmallVector<IdentifierInfo*, 16> MacroArgs;
1014 MacroInfo *Macro = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001015
Douglas Gregor37e26842009-04-21 23:56:24 +00001016 while (true) {
1017 unsigned Code = Stream.ReadCode();
1018 switch (Code) {
1019 case llvm::bitc::END_BLOCK:
1020 return;
1021
1022 case llvm::bitc::ENTER_SUBBLOCK:
1023 // No known subblocks, always skip them.
1024 Stream.ReadSubBlockID();
1025 if (Stream.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001026 Error("malformed block record in PCH file");
Douglas Gregor37e26842009-04-21 23:56:24 +00001027 return;
1028 }
1029 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Douglas Gregor37e26842009-04-21 23:56:24 +00001031 case llvm::bitc::DEFINE_ABBREV:
1032 Stream.ReadAbbrevRecord();
1033 continue;
1034 default: break;
1035 }
1036
1037 // Read a record.
1038 Record.clear();
1039 pch::PreprocessorRecordTypes RecType =
1040 (pch::PreprocessorRecordTypes)Stream.ReadRecord(Code, Record);
1041 switch (RecType) {
Douglas Gregor37e26842009-04-21 23:56:24 +00001042 case pch::PP_MACRO_OBJECT_LIKE:
1043 case pch::PP_MACRO_FUNCTION_LIKE: {
1044 // If we already have a macro, that means that we've hit the end
1045 // of the definition of the macro we were looking for. We're
1046 // done.
1047 if (Macro)
1048 return;
1049
1050 IdentifierInfo *II = DecodeIdentifierInfo(Record[0]);
1051 if (II == 0) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001052 Error("macro must have a name in PCH file");
Douglas Gregor37e26842009-04-21 23:56:24 +00001053 return;
1054 }
1055 SourceLocation Loc = SourceLocation::getFromRawEncoding(Record[1]);
1056 bool isUsed = Record[2];
Mike Stump1eb44332009-09-09 15:08:12 +00001057
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001058 MacroInfo *MI = PP->AllocateMacroInfo(Loc);
Douglas Gregor37e26842009-04-21 23:56:24 +00001059 MI->setIsUsed(isUsed);
Mike Stump1eb44332009-09-09 15:08:12 +00001060
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001061 unsigned NextIndex = 3;
Douglas Gregor37e26842009-04-21 23:56:24 +00001062 if (RecType == pch::PP_MACRO_FUNCTION_LIKE) {
1063 // Decode function-like macro info.
1064 bool isC99VarArgs = Record[3];
1065 bool isGNUVarArgs = Record[4];
1066 MacroArgs.clear();
1067 unsigned NumArgs = Record[5];
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001068 NextIndex = 6 + NumArgs;
Douglas Gregor37e26842009-04-21 23:56:24 +00001069 for (unsigned i = 0; i != NumArgs; ++i)
1070 MacroArgs.push_back(DecodeIdentifierInfo(Record[6+i]));
1071
1072 // Install function-like macro info.
1073 MI->setIsFunctionLike();
1074 if (isC99VarArgs) MI->setIsC99Varargs();
1075 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor75fdb232009-05-22 22:45:36 +00001076 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001077 PP->getPreprocessorAllocator());
Douglas Gregor37e26842009-04-21 23:56:24 +00001078 }
1079
1080 // Finally, install the macro.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001081 PP->setMacroInfo(II, MI);
Douglas Gregor37e26842009-04-21 23:56:24 +00001082
1083 // Remember that we saw this macro last so that we add the tokens that
1084 // form its body to it.
1085 Macro = MI;
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001086
1087 if (NextIndex + 1 == Record.size() && PP->getPreprocessingRecord()) {
1088 // We have a macro definition. Load it now.
1089 PP->getPreprocessingRecord()->RegisterMacroDefinition(Macro,
1090 getMacroDefinition(Record[NextIndex]));
1091 }
1092
Douglas Gregor37e26842009-04-21 23:56:24 +00001093 ++NumMacrosRead;
1094 break;
1095 }
Mike Stump1eb44332009-09-09 15:08:12 +00001096
Douglas Gregor37e26842009-04-21 23:56:24 +00001097 case pch::PP_TOKEN: {
1098 // If we see a TOKEN before a PP_MACRO_*, then the file is
1099 // erroneous, just pretend we didn't see this.
1100 if (Macro == 0) break;
Mike Stump1eb44332009-09-09 15:08:12 +00001101
Douglas Gregor37e26842009-04-21 23:56:24 +00001102 Token Tok;
1103 Tok.startToken();
1104 Tok.setLocation(SourceLocation::getFromRawEncoding(Record[0]));
1105 Tok.setLength(Record[1]);
1106 if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2]))
1107 Tok.setIdentifierInfo(II);
1108 Tok.setKind((tok::TokenKind)Record[3]);
1109 Tok.setFlag((Token::TokenFlags)Record[4]);
1110 Macro->AddTokenToBody(Tok);
1111 break;
1112 }
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001113
1114 case pch::PP_MACRO_INSTANTIATION: {
1115 // If we already have a macro, that means that we've hit the end
1116 // of the definition of the macro we were looking for. We're
1117 // done.
1118 if (Macro)
1119 return;
1120
1121 if (!PP->getPreprocessingRecord()) {
1122 Error("missing preprocessing record in PCH file");
1123 return;
1124 }
1125
1126 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1127 if (PPRec.getPreprocessedEntity(Record[0]))
1128 return;
1129
1130 MacroInstantiation *MI
1131 = new (PPRec) MacroInstantiation(DecodeIdentifierInfo(Record[3]),
1132 SourceRange(
1133 SourceLocation::getFromRawEncoding(Record[1]),
1134 SourceLocation::getFromRawEncoding(Record[2])),
1135 getMacroDefinition(Record[4]));
1136 PPRec.SetPreallocatedEntity(Record[0], MI);
1137 return;
1138 }
1139
1140 case pch::PP_MACRO_DEFINITION: {
1141 // If we already have a macro, that means that we've hit the end
1142 // of the definition of the macro we were looking for. We're
1143 // done.
1144 if (Macro)
1145 return;
1146
1147 if (!PP->getPreprocessingRecord()) {
1148 Error("missing preprocessing record in PCH file");
1149 return;
1150 }
1151
1152 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1153 if (PPRec.getPreprocessedEntity(Record[0]))
1154 return;
1155
1156 if (Record[1] >= MacroDefinitionsLoaded.size()) {
1157 Error("out-of-bounds macro definition record");
1158 return;
1159 }
1160
1161 MacroDefinition *MD
1162 = new (PPRec) MacroDefinition(DecodeIdentifierInfo(Record[4]),
1163 SourceLocation::getFromRawEncoding(Record[5]),
1164 SourceRange(
1165 SourceLocation::getFromRawEncoding(Record[2]),
1166 SourceLocation::getFromRawEncoding(Record[3])));
1167 PPRec.SetPreallocatedEntity(Record[0], MD);
1168 MacroDefinitionsLoaded[Record[1]] = MD;
1169 return;
1170 }
Steve Naroff83d63c72009-04-24 20:03:17 +00001171 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001172 }
1173}
1174
Douglas Gregor88a35862010-01-04 19:18:44 +00001175void PCHReader::ReadDefinedMacros() {
1176 // If there was no preprocessor block, do nothing.
1177 if (!MacroCursor.getBitStreamReader())
1178 return;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001179
Douglas Gregor88a35862010-01-04 19:18:44 +00001180 llvm::BitstreamCursor Cursor = MacroCursor;
1181 if (Cursor.EnterSubBlock(pch::PREPROCESSOR_BLOCK_ID)) {
1182 Error("malformed preprocessor block record in PCH file");
1183 return;
1184 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001185
Douglas Gregor88a35862010-01-04 19:18:44 +00001186 RecordData Record;
1187 while (true) {
1188 unsigned Code = Cursor.ReadCode();
1189 if (Code == llvm::bitc::END_BLOCK) {
1190 if (Cursor.ReadBlockEnd())
1191 Error("error at end of preprocessor block in PCH file");
1192 return;
1193 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001194
Douglas Gregor88a35862010-01-04 19:18:44 +00001195 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1196 // No known subblocks, always skip them.
1197 Cursor.ReadSubBlockID();
1198 if (Cursor.SkipBlock()) {
1199 Error("malformed block record in PCH file");
1200 return;
1201 }
1202 continue;
1203 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001204
Douglas Gregor88a35862010-01-04 19:18:44 +00001205 if (Code == llvm::bitc::DEFINE_ABBREV) {
1206 Cursor.ReadAbbrevRecord();
1207 continue;
1208 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001209
Douglas Gregor88a35862010-01-04 19:18:44 +00001210 // Read a record.
1211 const char *BlobStart;
1212 unsigned BlobLen;
1213 Record.clear();
1214 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1215 default: // Default behavior: ignore.
1216 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001217
Douglas Gregor88a35862010-01-04 19:18:44 +00001218 case pch::PP_MACRO_OBJECT_LIKE:
1219 case pch::PP_MACRO_FUNCTION_LIKE:
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001220 DecodeIdentifierInfo(Record[0]);
Douglas Gregor88a35862010-01-04 19:18:44 +00001221 break;
1222
1223 case pch::PP_TOKEN:
1224 // Ignore tokens.
1225 break;
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001226
1227 case pch::PP_MACRO_INSTANTIATION:
1228 case pch::PP_MACRO_DEFINITION:
1229 // Read the macro record.
1230 ReadMacroRecord(Cursor.GetCurrentBitNo());
1231 break;
Douglas Gregor88a35862010-01-04 19:18:44 +00001232 }
1233 }
1234}
1235
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001236MacroDefinition *PCHReader::getMacroDefinition(pch::IdentID ID) {
1237 if (ID == 0 || ID >= MacroDefinitionsLoaded.size())
1238 return 0;
1239
1240 if (!MacroDefinitionsLoaded[ID])
1241 ReadMacroRecord(MacroDefinitionOffsets[ID]);
1242
1243 return MacroDefinitionsLoaded[ID];
1244}
1245
Douglas Gregore650c8c2009-07-07 00:12:59 +00001246/// \brief If we are loading a relocatable PCH file, and the filename is
1247/// not an absolute path, add the system root to the beginning of the file
1248/// name.
1249void PCHReader::MaybeAddSystemRootToFilename(std::string &Filename) {
1250 // If this is not a relocatable PCH file, there's nothing to do.
1251 if (!RelocatablePCH)
1252 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001253
Daniel Dunbard5b21972009-11-18 19:50:41 +00001254 if (Filename.empty() || llvm::sys::Path(Filename).isAbsolute())
Douglas Gregore650c8c2009-07-07 00:12:59 +00001255 return;
1256
Douglas Gregore650c8c2009-07-07 00:12:59 +00001257 if (isysroot == 0) {
1258 // If no system root was given, default to '/'
1259 Filename.insert(Filename.begin(), '/');
1260 return;
1261 }
Mike Stump1eb44332009-09-09 15:08:12 +00001262
Douglas Gregore650c8c2009-07-07 00:12:59 +00001263 unsigned Length = strlen(isysroot);
1264 if (isysroot[Length - 1] != '/')
1265 Filename.insert(Filename.begin(), '/');
Mike Stump1eb44332009-09-09 15:08:12 +00001266
Douglas Gregore650c8c2009-07-07 00:12:59 +00001267 Filename.insert(Filename.begin(), isysroot, isysroot + Length);
1268}
1269
Mike Stump1eb44332009-09-09 15:08:12 +00001270PCHReader::PCHReadResult
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001271PCHReader::ReadPCHBlock() {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001272 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001273 Error("malformed block record in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001274 return Failure;
1275 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001276
1277 // Read all of the records and blocks for the PCH file.
Douglas Gregor8038d512009-04-10 17:25:41 +00001278 RecordData Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001279 while (!Stream.AtEndOfStream()) {
1280 unsigned Code = Stream.ReadCode();
1281 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001282 if (Stream.ReadBlockEnd()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001283 Error("error at end of module block in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001284 return Failure;
1285 }
Chris Lattner7356a312009-04-11 21:15:38 +00001286
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001287 return Success;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001288 }
1289
1290 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1291 switch (Stream.ReadSubBlockID()) {
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001292 case pch::DECLTYPES_BLOCK_ID:
Chris Lattner6367f6d2009-04-27 01:05:14 +00001293 // We lazily load the decls block, but we want to set up the
1294 // DeclsCursor cursor to point into it. Clone our current bitcode
1295 // cursor to it, enter the block and read the abbrevs in that block.
1296 // With the main cursor, we just skip over it.
1297 DeclsCursor = Stream;
1298 if (Stream.SkipBlock() || // Skip with the main cursor.
1299 // Read the abbrevs.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001300 ReadBlockAbbrevs(DeclsCursor, pch::DECLTYPES_BLOCK_ID)) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001301 Error("malformed block record in PCH file");
Chris Lattner6367f6d2009-04-27 01:05:14 +00001302 return Failure;
1303 }
1304 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001305
Chris Lattner7356a312009-04-11 21:15:38 +00001306 case pch::PREPROCESSOR_BLOCK_ID:
Douglas Gregor88a35862010-01-04 19:18:44 +00001307 MacroCursor = Stream;
1308 if (PP)
1309 PP->setExternalSource(this);
1310
Chris Lattner7356a312009-04-11 21:15:38 +00001311 if (Stream.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001312 Error("malformed block record in PCH file");
Chris Lattner7356a312009-04-11 21:15:38 +00001313 return Failure;
1314 }
1315 break;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001316
Douglas Gregor14f79002009-04-10 03:52:48 +00001317 case pch::SOURCE_MANAGER_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001318 switch (ReadSourceManagerBlock()) {
1319 case Success:
1320 break;
1321
1322 case Failure:
Douglas Gregora02b1472009-04-28 21:53:25 +00001323 Error("malformed source manager block in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001324 return Failure;
Douglas Gregore1d918e2009-04-10 23:10:45 +00001325
1326 case IgnorePCH:
1327 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001328 }
Douglas Gregor14f79002009-04-10 03:52:48 +00001329 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001330 }
Douglas Gregor8038d512009-04-10 17:25:41 +00001331 continue;
1332 }
1333
1334 if (Code == llvm::bitc::DEFINE_ABBREV) {
1335 Stream.ReadAbbrevRecord();
1336 continue;
1337 }
1338
1339 // Read and process a record.
1340 Record.clear();
Douglas Gregor2bec0412009-04-10 21:16:55 +00001341 const char *BlobStart = 0;
1342 unsigned BlobLen = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001343 switch ((pch::PCHRecordTypes)Stream.ReadRecord(Code, Record,
Douglas Gregor2bec0412009-04-10 21:16:55 +00001344 &BlobStart, &BlobLen)) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001345 default: // Default behavior: ignore.
1346 break;
1347
1348 case pch::TYPE_OFFSET:
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001349 if (!TypesLoaded.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001350 Error("duplicate TYPE_OFFSET record in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001351 return Failure;
1352 }
Chris Lattnerc732f5a2009-04-27 18:24:17 +00001353 TypeOffsets = (const uint32_t *)BlobStart;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001354 TypesLoaded.resize(Record[0]);
Douglas Gregor8038d512009-04-10 17:25:41 +00001355 break;
1356
1357 case pch::DECL_OFFSET:
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001358 if (!DeclsLoaded.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001359 Error("duplicate DECL_OFFSET record in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001360 return Failure;
1361 }
Chris Lattnerc732f5a2009-04-27 18:24:17 +00001362 DeclOffsets = (const uint32_t *)BlobStart;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001363 DeclsLoaded.resize(Record[0]);
Douglas Gregor8038d512009-04-10 17:25:41 +00001364 break;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001365
1366 case pch::LANGUAGE_OPTIONS:
1367 if (ParseLanguageOptions(Record))
1368 return IgnorePCH;
1369 break;
Douglas Gregor2bec0412009-04-10 21:16:55 +00001370
Douglas Gregorab41e632009-04-27 22:23:34 +00001371 case pch::METADATA: {
1372 if (Record[0] != pch::VERSION_MAJOR) {
1373 Diag(Record[0] < pch::VERSION_MAJOR? diag::warn_pch_version_too_old
1374 : diag::warn_pch_version_too_new);
1375 return IgnorePCH;
1376 }
1377
Douglas Gregore650c8c2009-07-07 00:12:59 +00001378 RelocatablePCH = Record[4];
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001379 if (Listener) {
1380 std::string TargetTriple(BlobStart, BlobLen);
1381 if (Listener->ReadTargetTriple(TargetTriple))
1382 return IgnorePCH;
Douglas Gregor2bec0412009-04-10 21:16:55 +00001383 }
1384 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001385 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001386
1387 case pch::IDENTIFIER_TABLE:
Douglas Gregor668c1a42009-04-21 22:25:48 +00001388 IdentifierTableData = BlobStart;
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001389 if (Record[0]) {
Mike Stump1eb44332009-09-09 15:08:12 +00001390 IdentifierLookupTable
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001391 = PCHIdentifierLookupTable::Create(
Douglas Gregor668c1a42009-04-21 22:25:48 +00001392 (const unsigned char *)IdentifierTableData + Record[0],
Mike Stump1eb44332009-09-09 15:08:12 +00001393 (const unsigned char *)IdentifierTableData,
Douglas Gregor668c1a42009-04-21 22:25:48 +00001394 PCHIdentifierLookupTrait(*this));
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001395 if (PP)
1396 PP->getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001397 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001398 break;
1399
1400 case pch::IDENTIFIER_OFFSET:
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001401 if (!IdentifiersLoaded.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001402 Error("duplicate IDENTIFIER_OFFSET record in PCH file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00001403 return Failure;
1404 }
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001405 IdentifierOffsets = (const uint32_t *)BlobStart;
1406 IdentifiersLoaded.resize(Record[0]);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001407 if (PP)
1408 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001409 break;
Douglas Gregorfdd01722009-04-14 00:24:19 +00001410
1411 case pch::EXTERNAL_DEFINITIONS:
1412 if (!ExternalDefinitions.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001413 Error("duplicate EXTERNAL_DEFINITIONS record in PCH file");
Douglas Gregorfdd01722009-04-14 00:24:19 +00001414 return Failure;
1415 }
1416 ExternalDefinitions.swap(Record);
1417 break;
Douglas Gregor3e1af842009-04-17 22:13:46 +00001418
Douglas Gregorad1de002009-04-18 05:55:16 +00001419 case pch::SPECIAL_TYPES:
1420 SpecialTypes.swap(Record);
1421 break;
1422
Douglas Gregor3e1af842009-04-17 22:13:46 +00001423 case pch::STATISTICS:
1424 TotalNumStatements = Record[0];
Douglas Gregor37e26842009-04-21 23:56:24 +00001425 TotalNumMacros = Record[1];
Douglas Gregor25123082009-04-22 22:34:57 +00001426 TotalLexicalDeclContexts = Record[2];
1427 TotalVisibleDeclContexts = Record[3];
Douglas Gregor3e1af842009-04-17 22:13:46 +00001428 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001429
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00001430 case pch::TENTATIVE_DEFINITIONS:
1431 if (!TentativeDefinitions.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001432 Error("duplicate TENTATIVE_DEFINITIONS record in PCH file");
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00001433 return Failure;
1434 }
1435 TentativeDefinitions.swap(Record);
1436 break;
Douglas Gregor14c22f22009-04-22 22:18:58 +00001437
Tanya Lattnere6bbc012010-02-12 00:07:30 +00001438 case pch::UNUSED_STATIC_FUNCS:
1439 if (!UnusedStaticFuncs.empty()) {
1440 Error("duplicate UNUSED_STATIC_FUNCS record in PCH file");
1441 return Failure;
1442 }
1443 UnusedStaticFuncs.swap(Record);
1444 break;
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001445
Douglas Gregor14c22f22009-04-22 22:18:58 +00001446 case pch::LOCALLY_SCOPED_EXTERNAL_DECLS:
1447 if (!LocallyScopedExternalDecls.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001448 Error("duplicate LOCALLY_SCOPED_EXTERNAL_DECLS record in PCH file");
Douglas Gregor14c22f22009-04-22 22:18:58 +00001449 return Failure;
1450 }
1451 LocallyScopedExternalDecls.swap(Record);
1452 break;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001453
Douglas Gregor83941df2009-04-25 17:48:32 +00001454 case pch::SELECTOR_OFFSETS:
1455 SelectorOffsets = (const uint32_t *)BlobStart;
1456 TotalNumSelectors = Record[0];
1457 SelectorsLoaded.resize(TotalNumSelectors);
1458 break;
1459
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001460 case pch::METHOD_POOL:
Douglas Gregor83941df2009-04-25 17:48:32 +00001461 MethodPoolLookupTableData = (const unsigned char *)BlobStart;
1462 if (Record[0])
Mike Stump1eb44332009-09-09 15:08:12 +00001463 MethodPoolLookupTable
Douglas Gregor83941df2009-04-25 17:48:32 +00001464 = PCHMethodPoolLookupTable::Create(
1465 MethodPoolLookupTableData + Record[0],
Mike Stump1eb44332009-09-09 15:08:12 +00001466 MethodPoolLookupTableData,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001467 PCHMethodPoolLookupTrait(*this));
Douglas Gregor83941df2009-04-25 17:48:32 +00001468 TotalSelectorsInMethodPool = Record[1];
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001469 break;
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001470
1471 case pch::PP_COUNTER_VALUE:
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001472 if (!Record.empty() && Listener)
1473 Listener->ReadCounter(Record[0]);
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001474 break;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001475
1476 case pch::SOURCE_LOCATION_OFFSETS:
Chris Lattner090d9b52009-04-27 19:01:47 +00001477 SLocOffsets = (const uint32_t *)BlobStart;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001478 TotalNumSLocEntries = Record[0];
Douglas Gregor445e23e2009-10-05 21:07:28 +00001479 SourceMgr.PreallocateSLocEntries(this, TotalNumSLocEntries, Record[1]);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001480 break;
1481
1482 case pch::SOURCE_LOCATION_PRELOADS:
1483 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
1484 PCHReadResult Result = ReadSLocEntryRecord(Record[I]);
1485 if (Result != Success)
1486 return Result;
1487 }
1488 break;
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001489
Douglas Gregor52e71082009-10-16 18:18:30 +00001490 case pch::STAT_CACHE: {
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001491 PCHStatCache *MyStatCache =
Douglas Gregor52e71082009-10-16 18:18:30 +00001492 new PCHStatCache((const unsigned char *)BlobStart + Record[0],
1493 (const unsigned char *)BlobStart,
1494 NumStatHits, NumStatMisses);
1495 FileMgr.addStatCache(MyStatCache);
1496 StatCache = MyStatCache;
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001497 break;
Douglas Gregor52e71082009-10-16 18:18:30 +00001498 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001499
Douglas Gregorb81c1702009-04-27 20:06:05 +00001500 case pch::EXT_VECTOR_DECLS:
1501 if (!ExtVectorDecls.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001502 Error("duplicate EXT_VECTOR_DECLS record in PCH file");
Douglas Gregorb81c1702009-04-27 20:06:05 +00001503 return Failure;
1504 }
1505 ExtVectorDecls.swap(Record);
1506 break;
1507
Douglas Gregorb64c1932009-05-12 01:31:05 +00001508 case pch::ORIGINAL_FILE_NAME:
Daniel Dunbar7b5a1212009-11-11 05:29:04 +00001509 ActualOriginalFileName.assign(BlobStart, BlobLen);
1510 OriginalFileName = ActualOriginalFileName;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001511 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregorb64c1932009-05-12 01:31:05 +00001512 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001513
Ted Kremenek5b4ec632010-01-22 20:59:36 +00001514 case pch::VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek974be4d2010-02-12 23:31:14 +00001515 const std::string &CurBranch = getClangFullRepositoryVersion();
Ted Kremenek517e6762010-01-22 20:55:35 +00001516 llvm::StringRef PCHBranch(BlobStart, BlobLen);
Ted Kremenek974be4d2010-02-12 23:31:14 +00001517 if (llvm::StringRef(CurBranch) != PCHBranch) {
Douglas Gregor445e23e2009-10-05 21:07:28 +00001518 Diag(diag::warn_pch_different_branch) << PCHBranch << CurBranch;
1519 return IgnorePCH;
1520 }
1521 break;
1522 }
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001523
1524 case pch::MACRO_DEFINITION_OFFSETS:
1525 MacroDefinitionOffsets = (const uint32_t *)BlobStart;
1526 if (PP) {
1527 if (!PP->getPreprocessingRecord())
1528 PP->createPreprocessingRecord();
1529 PP->getPreprocessingRecord()->SetExternalSource(*this, Record[0]);
1530 } else {
1531 NumPreallocatedPreprocessingEntities = Record[0];
1532 }
1533
1534 MacroDefinitionsLoaded.resize(Record[1]);
1535 break;
Douglas Gregorafaf3082009-04-11 00:14:32 +00001536 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001537 }
Douglas Gregora02b1472009-04-28 21:53:25 +00001538 Error("premature end of bitstream in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001539 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001540}
1541
Douglas Gregore1d918e2009-04-10 23:10:45 +00001542PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001543 // Set the PCH file name.
1544 this->FileName = FileName;
1545
Douglas Gregor2cf26342009-04-09 22:27:44 +00001546 // Open the PCH file.
Daniel Dunbarf3c740e2009-09-22 05:38:01 +00001547 //
1548 // FIXME: This shouldn't be here, we should just take a raw_ostream.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001549 std::string ErrStr;
Daniel Dunbar731ad8f2009-11-10 00:46:19 +00001550 Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr));
Douglas Gregore1d918e2009-04-10 23:10:45 +00001551 if (!Buffer) {
1552 Error(ErrStr.c_str());
1553 return IgnorePCH;
1554 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001555
1556 // Initialize the stream
Mike Stump1eb44332009-09-09 15:08:12 +00001557 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Chris Lattnerb9fa9172009-04-26 20:59:20 +00001558 (const unsigned char *)Buffer->getBufferEnd());
1559 Stream.init(StreamFile);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001560
1561 // Sniff for the signature.
1562 if (Stream.Read(8) != 'C' ||
1563 Stream.Read(8) != 'P' ||
1564 Stream.Read(8) != 'C' ||
Douglas Gregore1d918e2009-04-10 23:10:45 +00001565 Stream.Read(8) != 'H') {
Douglas Gregora02b1472009-04-28 21:53:25 +00001566 Diag(diag::err_not_a_pch_file) << FileName;
1567 return Failure;
Douglas Gregore1d918e2009-04-10 23:10:45 +00001568 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001569
Douglas Gregor2cf26342009-04-09 22:27:44 +00001570 while (!Stream.AtEndOfStream()) {
1571 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001572
Douglas Gregore1d918e2009-04-10 23:10:45 +00001573 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001574 Error("invalid record at top-level of PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001575 return Failure;
1576 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001577
1578 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00001579
Douglas Gregor2cf26342009-04-09 22:27:44 +00001580 // We only know the PCH subblock ID.
1581 switch (BlockID) {
1582 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001583 if (Stream.ReadBlockInfoBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001584 Error("malformed BlockInfoBlock in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001585 return Failure;
1586 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001587 break;
1588 case pch::PCH_BLOCK_ID:
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001589 switch (ReadPCHBlock()) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001590 case Success:
1591 break;
1592
1593 case Failure:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001594 return Failure;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001595
1596 case IgnorePCH:
Douglas Gregor2bec0412009-04-10 21:16:55 +00001597 // FIXME: We could consider reading through to the end of this
1598 // PCH block, skipping subblocks, to see if there are other
1599 // PCH blocks elsewhere.
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001600
1601 // Clear out any preallocated source location entries, so that
1602 // the source manager does not try to resolve them later.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001603 SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001604
1605 // Remove the stat cache.
Douglas Gregor52e71082009-10-16 18:18:30 +00001606 if (StatCache)
1607 FileMgr.removeStatCache((PCHStatCache*)StatCache);
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001608
Douglas Gregore1d918e2009-04-10 23:10:45 +00001609 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001610 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001611 break;
1612 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001613 if (Stream.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001614 Error("malformed block record in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001615 return Failure;
1616 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001617 break;
1618 }
Mike Stump1eb44332009-09-09 15:08:12 +00001619 }
1620
Douglas Gregor92b059e2009-04-28 20:33:11 +00001621 // Check the predefines buffer.
Daniel Dunbardc3c0d22009-11-11 00:52:11 +00001622 if (CheckPredefinesBuffer(llvm::StringRef(PCHPredefines, PCHPredefinesLen),
Douglas Gregor92b059e2009-04-28 20:33:11 +00001623 PCHPredefinesBufferID))
1624 return IgnorePCH;
Mike Stump1eb44332009-09-09 15:08:12 +00001625
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001626 if (PP) {
Zhongxing Xu08996212009-07-18 09:26:51 +00001627 // Initialization of keywords and pragmas occurs before the
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001628 // PCH file is read, so there may be some identifiers that were
1629 // loaded into the IdentifierTable before we intercepted the
1630 // creation of identifiers. Iterate through the list of known
1631 // identifiers and determine whether we have to establish
1632 // preprocessor definitions or top-level identifier declaration
1633 // chains for those identifiers.
1634 //
1635 // We copy the IdentifierInfo pointers to a small vector first,
1636 // since de-serializing declarations or macro definitions can add
1637 // new entries into the identifier table, invalidating the
1638 // iterators.
1639 llvm::SmallVector<IdentifierInfo *, 128> Identifiers;
1640 for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(),
1641 IdEnd = PP->getIdentifierTable().end();
1642 Id != IdEnd; ++Id)
1643 Identifiers.push_back(Id->second);
Mike Stump1eb44332009-09-09 15:08:12 +00001644 PCHIdentifierLookupTable *IdTable
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001645 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
1646 for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) {
1647 IdentifierInfo *II = Identifiers[I];
1648 // Look in the on-disk hash table for an entry for
1649 PCHIdentifierLookupTrait Info(*this, II);
Daniel Dunbare013d682009-10-18 20:26:12 +00001650 std::pair<const char*, unsigned> Key(II->getNameStart(), II->getLength());
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001651 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info);
1652 if (Pos == IdTable->end())
1653 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001654
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001655 // Dereferencing the iterator has the effect of populating the
1656 // IdentifierInfo node with the various declarations it needs.
1657 (void)*Pos;
1658 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00001659 }
1660
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001661 if (Context)
1662 InitializeContext(*Context);
Douglas Gregor0b748912009-04-14 21:18:50 +00001663
Douglas Gregor668c1a42009-04-21 22:25:48 +00001664 return Success;
Douglas Gregor0b748912009-04-14 21:18:50 +00001665}
1666
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001667void PCHReader::setPreprocessor(Preprocessor &pp) {
1668 PP = &pp;
1669
1670 if (NumPreallocatedPreprocessingEntities) {
1671 if (!PP->getPreprocessingRecord())
1672 PP->createPreprocessingRecord();
1673 PP->getPreprocessingRecord()->SetExternalSource(*this,
1674 NumPreallocatedPreprocessingEntities);
1675 NumPreallocatedPreprocessingEntities = 0;
1676 }
1677}
1678
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001679void PCHReader::InitializeContext(ASTContext &Ctx) {
1680 Context = &Ctx;
1681 assert(Context && "Passed null context!");
1682
1683 assert(PP && "Forgot to set Preprocessor ?");
1684 PP->getIdentifierTable().setExternalIdentifierLookup(this);
1685 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor88a35862010-01-04 19:18:44 +00001686 PP->setExternalSource(this);
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001687
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001688 // Load the translation unit declaration
1689 ReadDeclRecord(DeclOffsets[0], 0);
1690
1691 // Load the special types.
1692 Context->setBuiltinVaListType(
1693 GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST]));
1694 if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID])
1695 Context->setObjCIdType(GetType(Id));
1696 if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR])
1697 Context->setObjCSelType(GetType(Sel));
1698 if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL])
1699 Context->setObjCProtoType(GetType(Proto));
1700 if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS])
1701 Context->setObjCClassType(GetType(Class));
Steve Naroff14108da2009-07-10 23:34:53 +00001702
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001703 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING])
1704 Context->setCFConstantStringType(GetType(String));
Mike Stump1eb44332009-09-09 15:08:12 +00001705 if (unsigned FastEnum
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001706 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE])
1707 Context->setObjCFastEnumerationStateType(GetType(FastEnum));
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001708 if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) {
1709 QualType FileType = GetType(File);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001710 if (FileType.isNull()) {
1711 Error("FILE type is NULL");
1712 return;
1713 }
John McCall183700f2009-09-21 23:43:11 +00001714 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001715 Context->setFILEDecl(Typedef->getDecl());
1716 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001717 const TagType *Tag = FileType->getAs<TagType>();
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001718 if (!Tag) {
1719 Error("Invalid FILE type in PCH file");
1720 return;
1721 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001722 Context->setFILEDecl(Tag->getDecl());
1723 }
1724 }
Mike Stump782fa302009-07-28 02:25:19 +00001725 if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) {
1726 QualType Jmp_bufType = GetType(Jmp_buf);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001727 if (Jmp_bufType.isNull()) {
1728 Error("jmp_bug type is NULL");
1729 return;
1730 }
John McCall183700f2009-09-21 23:43:11 +00001731 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
Mike Stump782fa302009-07-28 02:25:19 +00001732 Context->setjmp_bufDecl(Typedef->getDecl());
1733 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001734 const TagType *Tag = Jmp_bufType->getAs<TagType>();
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001735 if (!Tag) {
1736 Error("Invalid jmp_bug type in PCH file");
1737 return;
1738 }
Mike Stump782fa302009-07-28 02:25:19 +00001739 Context->setjmp_bufDecl(Tag->getDecl());
1740 }
1741 }
1742 if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) {
1743 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001744 if (Sigjmp_bufType.isNull()) {
1745 Error("sigjmp_buf type is NULL");
1746 return;
1747 }
John McCall183700f2009-09-21 23:43:11 +00001748 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
Mike Stump782fa302009-07-28 02:25:19 +00001749 Context->setsigjmp_bufDecl(Typedef->getDecl());
1750 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001751 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
Mike Stump782fa302009-07-28 02:25:19 +00001752 assert(Tag && "Invalid sigjmp_buf type in PCH file");
1753 Context->setsigjmp_bufDecl(Tag->getDecl());
1754 }
1755 }
Mike Stump1eb44332009-09-09 15:08:12 +00001756 if (unsigned ObjCIdRedef
Douglas Gregord1571ac2009-08-21 00:27:50 +00001757 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION])
1758 Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef);
Mike Stump1eb44332009-09-09 15:08:12 +00001759 if (unsigned ObjCClassRedef
Douglas Gregord1571ac2009-08-21 00:27:50 +00001760 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION])
1761 Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef);
Mike Stumpadaaad32009-10-20 02:12:22 +00001762 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR])
1763 Context->setBlockDescriptorType(GetType(String));
Mike Stump083c25e2009-10-22 00:49:09 +00001764 if (unsigned String
1765 = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR])
1766 Context->setBlockDescriptorExtendedType(GetType(String));
Fariborz Jahanian2bb5dda2010-04-23 17:41:07 +00001767 if (unsigned ObjCSelRedef
1768 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION])
1769 Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef);
1770 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_NS_CONSTANT_STRING])
1771 Context->setNSConstantStringType(GetType(String));
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001772}
1773
Douglas Gregorb64c1932009-05-12 01:31:05 +00001774/// \brief Retrieve the name of the original source file name
1775/// directly from the PCH file, without actually loading the PCH
1776/// file.
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001777std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName,
1778 Diagnostic &Diags) {
Douglas Gregorb64c1932009-05-12 01:31:05 +00001779 // Open the PCH file.
1780 std::string ErrStr;
1781 llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
1782 Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr));
1783 if (!Buffer) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001784 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001785 return std::string();
1786 }
1787
1788 // Initialize the stream
1789 llvm::BitstreamReader StreamFile;
1790 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00001791 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00001792 (const unsigned char *)Buffer->getBufferEnd());
1793 Stream.init(StreamFile);
1794
1795 // Sniff for the signature.
1796 if (Stream.Read(8) != 'C' ||
1797 Stream.Read(8) != 'P' ||
1798 Stream.Read(8) != 'C' ||
1799 Stream.Read(8) != 'H') {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001800 Diags.Report(diag::err_fe_not_a_pch_file) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001801 return std::string();
1802 }
1803
1804 RecordData Record;
1805 while (!Stream.AtEndOfStream()) {
1806 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Douglas Gregorb64c1932009-05-12 01:31:05 +00001808 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1809 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00001810
Douglas Gregorb64c1932009-05-12 01:31:05 +00001811 // We only know the PCH subblock ID.
1812 switch (BlockID) {
1813 case pch::PCH_BLOCK_ID:
1814 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001815 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001816 return std::string();
1817 }
1818 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001819
Douglas Gregorb64c1932009-05-12 01:31:05 +00001820 default:
1821 if (Stream.SkipBlock()) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001822 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001823 return std::string();
1824 }
1825 break;
1826 }
1827 continue;
1828 }
1829
1830 if (Code == llvm::bitc::END_BLOCK) {
1831 if (Stream.ReadBlockEnd()) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001832 Diags.Report(diag::err_fe_pch_error_at_end_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001833 return std::string();
1834 }
1835 continue;
1836 }
1837
1838 if (Code == llvm::bitc::DEFINE_ABBREV) {
1839 Stream.ReadAbbrevRecord();
1840 continue;
1841 }
1842
1843 Record.clear();
1844 const char *BlobStart = 0;
1845 unsigned BlobLen = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001846 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Douglas Gregorb64c1932009-05-12 01:31:05 +00001847 == pch::ORIGINAL_FILE_NAME)
1848 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001849 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00001850
1851 return std::string();
1852}
1853
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001854/// \brief Parse the record that corresponds to a LangOptions data
1855/// structure.
1856///
1857/// This routine compares the language options used to generate the
1858/// PCH file against the language options set for the current
1859/// compilation. For each option, we classify differences between the
1860/// two compiler states as either "benign" or "important". Benign
1861/// differences don't matter, and we accept them without complaint
1862/// (and without modifying the language options). Differences between
1863/// the states for important options cause the PCH file to be
1864/// unusable, so we emit a warning and return true to indicate that
1865/// there was an error.
1866///
1867/// \returns true if the PCH file is unacceptable, false otherwise.
1868bool PCHReader::ParseLanguageOptions(
1869 const llvm::SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001870 if (Listener) {
1871 LangOptions LangOpts;
Mike Stump1eb44332009-09-09 15:08:12 +00001872
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001873 #define PARSE_LANGOPT(Option) \
1874 LangOpts.Option = Record[Idx]; \
1875 ++Idx
Mike Stump1eb44332009-09-09 15:08:12 +00001876
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001877 unsigned Idx = 0;
1878 PARSE_LANGOPT(Trigraphs);
1879 PARSE_LANGOPT(BCPLComment);
1880 PARSE_LANGOPT(DollarIdents);
1881 PARSE_LANGOPT(AsmPreprocessor);
1882 PARSE_LANGOPT(GNUMode);
Chandler Carrutheb5d7b72010-04-17 20:17:31 +00001883 PARSE_LANGOPT(GNUKeywords);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001884 PARSE_LANGOPT(ImplicitInt);
1885 PARSE_LANGOPT(Digraphs);
1886 PARSE_LANGOPT(HexFloats);
1887 PARSE_LANGOPT(C99);
1888 PARSE_LANGOPT(Microsoft);
1889 PARSE_LANGOPT(CPlusPlus);
1890 PARSE_LANGOPT(CPlusPlus0x);
1891 PARSE_LANGOPT(CXXOperatorNames);
1892 PARSE_LANGOPT(ObjC1);
1893 PARSE_LANGOPT(ObjC2);
1894 PARSE_LANGOPT(ObjCNonFragileABI);
Fariborz Jahanian412e7982010-02-09 19:31:38 +00001895 PARSE_LANGOPT(ObjCNonFragileABI2);
Fariborz Jahanian4c9d8d02010-04-22 21:01:59 +00001896 PARSE_LANGOPT(NoConstantCFStrings);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001897 PARSE_LANGOPT(PascalStrings);
1898 PARSE_LANGOPT(WritableStrings);
1899 PARSE_LANGOPT(LaxVectorConversions);
Nate Begemanb9e7e632009-06-25 23:01:11 +00001900 PARSE_LANGOPT(AltiVec);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001901 PARSE_LANGOPT(Exceptions);
Daniel Dunbar73482882010-02-10 18:48:44 +00001902 PARSE_LANGOPT(SjLjExceptions);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001903 PARSE_LANGOPT(NeXTRuntime);
1904 PARSE_LANGOPT(Freestanding);
1905 PARSE_LANGOPT(NoBuiltin);
1906 PARSE_LANGOPT(ThreadsafeStatics);
Douglas Gregor972d9542009-09-03 14:36:33 +00001907 PARSE_LANGOPT(POSIXThreads);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001908 PARSE_LANGOPT(Blocks);
1909 PARSE_LANGOPT(EmitAllDecls);
1910 PARSE_LANGOPT(MathErrno);
Chris Lattnera4d71452010-06-26 21:25:03 +00001911 LangOpts.setSignedOverflowBehavior((LangOptions::SignedOverflowBehaviorTy)
1912 Record[Idx++]);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001913 PARSE_LANGOPT(HeinousExtensions);
1914 PARSE_LANGOPT(Optimize);
1915 PARSE_LANGOPT(OptimizeSize);
1916 PARSE_LANGOPT(Static);
1917 PARSE_LANGOPT(PICLevel);
1918 PARSE_LANGOPT(GNUInline);
1919 PARSE_LANGOPT(NoInline);
1920 PARSE_LANGOPT(AccessControl);
1921 PARSE_LANGOPT(CharIsSigned);
John Thompsona6fda122009-11-05 20:14:16 +00001922 PARSE_LANGOPT(ShortWChar);
Chris Lattnera4d71452010-06-26 21:25:03 +00001923 LangOpts.setGCMode((LangOptions::GCMode)Record[Idx++]);
1924 LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx++]);
Daniel Dunbarab8e2812009-09-21 04:16:19 +00001925 LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode)
Chris Lattnera4d71452010-06-26 21:25:03 +00001926 Record[Idx++]);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001927 PARSE_LANGOPT(InstantiationDepth);
Nate Begemanb9e7e632009-06-25 23:01:11 +00001928 PARSE_LANGOPT(OpenCL);
Mike Stump9c276ae2009-12-12 01:27:46 +00001929 PARSE_LANGOPT(CatchUndefined);
1930 // FIXME: Missing ElideConstructors?!
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001931 #undef PARSE_LANGOPT
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001932
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001933 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001934 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001935
1936 return false;
1937}
1938
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001939void PCHReader::ReadPreprocessedEntities() {
1940 ReadDefinedMacros();
1941}
1942
Douglas Gregor2cf26342009-04-09 22:27:44 +00001943/// \brief Read and return the type at the given offset.
1944///
1945/// This routine actually reads the record corresponding to the type
1946/// at the given offset in the bitstream. It is a helper routine for
1947/// GetType, which deals with reading type IDs.
1948QualType PCHReader::ReadTypeRecord(uint64_t Offset) {
Douglas Gregor0b748912009-04-14 21:18:50 +00001949 // Keep track of where we are in the stream, then jump back there
1950 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001951 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00001952
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001953 ReadingKindTracker ReadingKind(Read_Type, *this);
1954
Douglas Gregord89275b2009-07-06 18:54:52 +00001955 // Note that we are loading a type record.
1956 LoadingTypeOrDecl Loading(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001957
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001958 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001959 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001960 unsigned Code = DeclsCursor.ReadCode();
1961 switch ((pch::TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
Douglas Gregor6d473962009-04-15 22:00:08 +00001962 case pch::TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001963 if (Record.size() != 2) {
1964 Error("Incorrect encoding of extended qualifier type");
1965 return QualType();
1966 }
Douglas Gregor6d473962009-04-15 22:00:08 +00001967 QualType Base = GetType(Record[0]);
John McCall0953e762009-09-24 19:53:00 +00001968 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]);
1969 return Context->getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00001970 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00001971
Douglas Gregor2cf26342009-04-09 22:27:44 +00001972 case pch::TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001973 if (Record.size() != 1) {
1974 Error("Incorrect encoding of complex type");
1975 return QualType();
1976 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001977 QualType ElemType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001978 return Context->getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001979 }
1980
1981 case pch::TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001982 if (Record.size() != 1) {
1983 Error("Incorrect encoding of pointer type");
1984 return QualType();
1985 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001986 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001987 return Context->getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001988 }
1989
1990 case pch::TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001991 if (Record.size() != 1) {
1992 Error("Incorrect encoding of block pointer type");
1993 return QualType();
1994 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001995 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001996 return Context->getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001997 }
1998
1999 case pch::TYPE_LVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002000 if (Record.size() != 1) {
2001 Error("Incorrect encoding of lvalue reference type");
2002 return QualType();
2003 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002004 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002005 return Context->getLValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002006 }
2007
2008 case pch::TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002009 if (Record.size() != 1) {
2010 Error("Incorrect encoding of rvalue reference type");
2011 return QualType();
2012 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002013 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002014 return Context->getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002015 }
2016
2017 case pch::TYPE_MEMBER_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002018 if (Record.size() != 1) {
2019 Error("Incorrect encoding of member pointer type");
2020 return QualType();
2021 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002022 QualType PointeeType = GetType(Record[0]);
2023 QualType ClassType = GetType(Record[1]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002024 return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00002025 }
2026
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002027 case pch::TYPE_CONSTANT_ARRAY: {
2028 QualType ElementType = GetType(Record[0]);
2029 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2030 unsigned IndexTypeQuals = Record[2];
2031 unsigned Idx = 3;
2032 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002033 return Context->getConstantArrayType(ElementType, Size,
2034 ASM, IndexTypeQuals);
2035 }
2036
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002037 case pch::TYPE_INCOMPLETE_ARRAY: {
2038 QualType ElementType = GetType(Record[0]);
2039 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2040 unsigned IndexTypeQuals = Record[2];
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002041 return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002042 }
2043
2044 case pch::TYPE_VARIABLE_ARRAY: {
Douglas Gregor0b748912009-04-14 21:18:50 +00002045 QualType ElementType = GetType(Record[0]);
2046 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2047 unsigned IndexTypeQuals = Record[2];
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002048 SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]);
2049 SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]);
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002050 return Context->getVariableArrayType(ElementType, ReadExpr(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002051 ASM, IndexTypeQuals,
2052 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002053 }
2054
2055 case pch::TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00002056 if (Record.size() != 3) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002057 Error("incorrect encoding of vector type in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002058 return QualType();
2059 }
2060
2061 QualType ElementType = GetType(Record[0]);
2062 unsigned NumElements = Record[1];
Chris Lattner788b0fd2010-06-23 06:00:24 +00002063 unsigned AltiVecSpec = Record[2];
2064 return Context->getVectorType(ElementType, NumElements,
2065 (VectorType::AltiVecSpecific)AltiVecSpec);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002066 }
2067
2068 case pch::TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00002069 if (Record.size() != 3) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002070 Error("incorrect encoding of extended vector type in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002071 return QualType();
2072 }
2073
2074 QualType ElementType = GetType(Record[0]);
2075 unsigned NumElements = Record[1];
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002076 return Context->getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002077 }
2078
2079 case pch::TYPE_FUNCTION_NO_PROTO: {
Rafael Espindola425ef722010-03-30 22:15:11 +00002080 if (Record.size() != 4) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002081 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002082 return QualType();
2083 }
2084 QualType ResultType = GetType(Record[0]);
Rafael Espindola425ef722010-03-30 22:15:11 +00002085 FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]);
Rafael Espindola264ba482010-03-30 20:24:48 +00002086 return Context->getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002087 }
2088
2089 case pch::TYPE_FUNCTION_PROTO: {
2090 QualType ResultType = GetType(Record[0]);
Douglas Gregor91236662009-12-22 18:11:50 +00002091 bool NoReturn = Record[1];
Rafael Espindola425ef722010-03-30 22:15:11 +00002092 unsigned RegParm = Record[2];
2093 CallingConv CallConv = (CallingConv)Record[3];
2094 unsigned Idx = 4;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002095 unsigned NumParams = Record[Idx++];
2096 llvm::SmallVector<QualType, 16> ParamTypes;
2097 for (unsigned I = 0; I != NumParams; ++I)
2098 ParamTypes.push_back(GetType(Record[Idx++]));
2099 bool isVariadic = Record[Idx++];
2100 unsigned Quals = Record[Idx++];
Sebastian Redl465226e2009-05-27 22:11:52 +00002101 bool hasExceptionSpec = Record[Idx++];
2102 bool hasAnyExceptionSpec = Record[Idx++];
2103 unsigned NumExceptions = Record[Idx++];
2104 llvm::SmallVector<QualType, 2> Exceptions;
2105 for (unsigned I = 0; I != NumExceptions; ++I)
2106 Exceptions.push_back(GetType(Record[Idx++]));
Jay Foadbeaaccd2009-05-21 09:52:38 +00002107 return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams,
Sebastian Redl465226e2009-05-27 22:11:52 +00002108 isVariadic, Quals, hasExceptionSpec,
2109 hasAnyExceptionSpec, NumExceptions,
Rafael Espindola264ba482010-03-30 20:24:48 +00002110 Exceptions.data(),
Rafael Espindola425ef722010-03-30 22:15:11 +00002111 FunctionType::ExtInfo(NoReturn, RegParm,
2112 CallConv));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002113 }
2114
John McCalled976492009-12-04 22:46:56 +00002115 case pch::TYPE_UNRESOLVED_USING:
2116 return Context->getTypeDeclType(
2117 cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0])));
2118
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002119 case pch::TYPE_TYPEDEF:
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002120 if (Record.size() != 1) {
2121 Error("incorrect encoding of typedef type");
2122 return QualType();
2123 }
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002124 return Context->getTypeDeclType(cast<TypedefDecl>(GetDecl(Record[0])));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002125
2126 case pch::TYPE_TYPEOF_EXPR:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002127 return Context->getTypeOfExprType(ReadExpr());
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002128
2129 case pch::TYPE_TYPEOF: {
2130 if (Record.size() != 1) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002131 Error("incorrect encoding of typeof(type) in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002132 return QualType();
2133 }
2134 QualType UnderlyingType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002135 return Context->getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002136 }
Mike Stump1eb44332009-09-09 15:08:12 +00002137
Anders Carlsson395b4752009-06-24 19:06:50 +00002138 case pch::TYPE_DECLTYPE:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002139 return Context->getDecltypeType(ReadExpr());
Anders Carlsson395b4752009-06-24 19:06:50 +00002140
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002141 case pch::TYPE_RECORD:
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002142 if (Record.size() != 1) {
2143 Error("incorrect encoding of record type");
2144 return QualType();
2145 }
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002146 return Context->getTypeDeclType(cast<RecordDecl>(GetDecl(Record[0])));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002147
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002148 case pch::TYPE_ENUM:
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002149 if (Record.size() != 1) {
2150 Error("incorrect encoding of enum type");
2151 return QualType();
2152 }
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002153 return Context->getTypeDeclType(cast<EnumDecl>(GetDecl(Record[0])));
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002154
John McCall7da24312009-09-05 00:15:47 +00002155 case pch::TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00002156 unsigned Idx = 0;
2157 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2158 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2159 QualType NamedType = GetType(Record[Idx++]);
2160 return Context->getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00002161 }
2162
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002163 case pch::TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002164 unsigned Idx = 0;
2165 ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
John McCallc12c5bb2010-05-15 11:32:37 +00002166 return Context->getObjCInterfaceType(ItfD);
2167 }
2168
2169 case pch::TYPE_OBJC_OBJECT: {
2170 unsigned Idx = 0;
2171 QualType Base = GetType(Record[Idx++]);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002172 unsigned NumProtos = Record[Idx++];
2173 llvm::SmallVector<ObjCProtocolDecl*, 4> Protos;
2174 for (unsigned I = 0; I != NumProtos; ++I)
2175 Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++])));
John McCallc12c5bb2010-05-15 11:32:37 +00002176 return Context->getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002177 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002178
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002179 case pch::TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00002180 unsigned Idx = 0;
John McCallc12c5bb2010-05-15 11:32:37 +00002181 QualType Pointee = GetType(Record[Idx++]);
2182 return Context->getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00002183 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00002184
John McCall49a832b2009-10-18 09:09:24 +00002185 case pch::TYPE_SUBST_TEMPLATE_TYPE_PARM: {
2186 unsigned Idx = 0;
2187 QualType Parm = GetType(Record[Idx++]);
2188 QualType Replacement = GetType(Record[Idx++]);
2189 return
2190 Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
2191 Replacement);
2192 }
John McCall3cb0ebd2010-03-10 03:28:59 +00002193
2194 case pch::TYPE_INJECTED_CLASS_NAME: {
2195 CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0]));
2196 QualType TST = GetType(Record[1]); // probably derivable
2197 return Context->getInjectedClassNameType(D, TST);
2198 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00002199
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002200 case pch::TYPE_TEMPLATE_TYPE_PARM: {
2201 unsigned Idx = 0;
2202 unsigned Depth = Record[Idx++];
2203 unsigned Index = Record[Idx++];
2204 bool Pack = Record[Idx++];
2205 IdentifierInfo *Name = GetIdentifierInfo(Record, Idx);
2206 return Context->getTemplateTypeParmType(Depth, Index, Pack, Name);
2207 }
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002208
2209 case pch::TYPE_DEPENDENT_NAME: {
2210 unsigned Idx = 0;
2211 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2212 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2213 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2214 return Context->getDependentNameType(Keyword, NNS, Name, QualType());
2215 }
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00002216
2217 case pch::TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
2218 unsigned Idx = 0;
2219 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2220 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2221 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2222 unsigned NumArgs = Record[Idx++];
2223 llvm::SmallVector<TemplateArgument, 8> Args;
2224 Args.reserve(NumArgs);
2225 while (NumArgs--)
2226 Args.push_back(ReadTemplateArgument(Record, Idx));
2227 return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name,
2228 Args.size(), Args.data());
2229 }
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00002230
2231 case pch::TYPE_DEPENDENT_SIZED_ARRAY: {
2232 unsigned Idx = 0;
2233
2234 // ArrayType
2235 QualType ElementType = GetType(Record[Idx++]);
2236 ArrayType::ArraySizeModifier ASM
2237 = (ArrayType::ArraySizeModifier)Record[Idx++];
2238 unsigned IndexTypeQuals = Record[Idx++];
2239
2240 // DependentSizedArrayType
2241 Expr *NumElts = ReadExpr();
2242 SourceRange Brackets = ReadSourceRange(Record, Idx);
2243
2244 return Context->getDependentSizedArrayType(ElementType, NumElts, ASM,
2245 IndexTypeQuals, Brackets);
2246 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00002247
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002248 case pch::TYPE_TEMPLATE_SPECIALIZATION: {
2249 unsigned Idx = 0;
2250 TemplateName Name = ReadTemplateName(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002251 llvm::SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00002252 ReadTemplateArgumentList(Args, Record, Idx);
2253 QualType Canon = GetType(Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002254 return Context->getTemplateSpecializationType(Name, Args.data(),Args.size(),
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00002255 Canon);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002256 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002257 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002258 // Suppress a GCC warning
2259 return QualType();
2260}
2261
John McCalla1ee0c52009-10-16 21:56:05 +00002262namespace {
2263
2264class TypeLocReader : public TypeLocVisitor<TypeLocReader> {
2265 PCHReader &Reader;
2266 const PCHReader::RecordData &Record;
2267 unsigned &Idx;
2268
2269public:
2270 TypeLocReader(PCHReader &Reader, const PCHReader::RecordData &Record,
2271 unsigned &Idx)
2272 : Reader(Reader), Record(Record), Idx(Idx) { }
2273
John McCall51bd8032009-10-18 01:05:36 +00002274 // We want compile-time assurance that we've enumerated all of
2275 // these, so unfortunately we have to declare them first, then
2276 // define them out-of-line.
2277#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00002278#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00002279 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00002280#include "clang/AST/TypeLocNodes.def"
2281
John McCall51bd8032009-10-18 01:05:36 +00002282 void VisitFunctionTypeLoc(FunctionTypeLoc);
2283 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00002284};
2285
2286}
2287
John McCall51bd8032009-10-18 01:05:36 +00002288void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00002289 // nothing to do
2290}
John McCall51bd8032009-10-18 01:05:36 +00002291void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorddf889a2010-01-18 18:04:31 +00002292 TL.setBuiltinLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2293 if (TL.needsExtraLocalData()) {
2294 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
2295 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
2296 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
2297 TL.setModeAttr(Record[Idx++]);
2298 }
John McCalla1ee0c52009-10-16 21:56:05 +00002299}
John McCall51bd8032009-10-18 01:05:36 +00002300void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
2301 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002302}
John McCall51bd8032009-10-18 01:05:36 +00002303void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
2304 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002305}
John McCall51bd8032009-10-18 01:05:36 +00002306void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
2307 TL.setCaretLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002308}
John McCall51bd8032009-10-18 01:05:36 +00002309void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
2310 TL.setAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002311}
John McCall51bd8032009-10-18 01:05:36 +00002312void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
2313 TL.setAmpAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002314}
John McCall51bd8032009-10-18 01:05:36 +00002315void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
2316 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002317}
John McCall51bd8032009-10-18 01:05:36 +00002318void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
2319 TL.setLBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2320 TL.setRBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002321 if (Record[Idx++])
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002322 TL.setSizeExpr(Reader.ReadExpr());
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002323 else
John McCall51bd8032009-10-18 01:05:36 +00002324 TL.setSizeExpr(0);
2325}
2326void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
2327 VisitArrayTypeLoc(TL);
2328}
2329void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
2330 VisitArrayTypeLoc(TL);
2331}
2332void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
2333 VisitArrayTypeLoc(TL);
2334}
2335void TypeLocReader::VisitDependentSizedArrayTypeLoc(
2336 DependentSizedArrayTypeLoc TL) {
2337 VisitArrayTypeLoc(TL);
2338}
2339void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
2340 DependentSizedExtVectorTypeLoc TL) {
2341 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2342}
2343void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
2344 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2345}
2346void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
2347 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2348}
2349void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
2350 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2351 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2352 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
John McCall86acc2a2009-10-23 01:28:53 +00002353 TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
John McCall51bd8032009-10-18 01:05:36 +00002354 }
2355}
2356void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
2357 VisitFunctionTypeLoc(TL);
2358}
2359void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
2360 VisitFunctionTypeLoc(TL);
2361}
John McCalled976492009-12-04 22:46:56 +00002362void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
2363 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2364}
John McCall51bd8032009-10-18 01:05:36 +00002365void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
2366 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2367}
2368void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +00002369 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2370 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2371 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall51bd8032009-10-18 01:05:36 +00002372}
2373void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +00002374 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2375 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2376 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2377 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002378}
2379void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
2380 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2381}
2382void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
2383 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2384}
2385void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
2386 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2387}
John McCall51bd8032009-10-18 01:05:36 +00002388void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
2389 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2390}
John McCall49a832b2009-10-18 09:09:24 +00002391void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
2392 SubstTemplateTypeParmTypeLoc TL) {
2393 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2394}
John McCall51bd8032009-10-18 01:05:36 +00002395void TypeLocReader::VisitTemplateSpecializationTypeLoc(
2396 TemplateSpecializationTypeLoc TL) {
John McCall833ca992009-10-29 08:12:44 +00002397 TL.setTemplateNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2398 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2399 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2400 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
2401 TL.setArgLocInfo(i,
2402 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(i).getKind(),
2403 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002404}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002405void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002406 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2407 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002408}
John McCall3cb0ebd2010-03-10 03:28:59 +00002409void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
2410 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2411}
Douglas Gregor4714c122010-03-31 17:34:00 +00002412void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002413 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2414 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002415 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2416}
John McCall33500952010-06-11 00:33:02 +00002417void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
2418 DependentTemplateSpecializationTypeLoc TL) {
2419 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2420 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
2421 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2422 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2423 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2424 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
2425 TL.setArgLocInfo(I,
2426 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(I).getKind(),
2427 Record, Idx));
2428}
John McCall51bd8032009-10-18 01:05:36 +00002429void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
2430 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallc12c5bb2010-05-15 11:32:37 +00002431}
2432void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
2433 TL.setHasBaseTypeAsWritten(Record[Idx++]);
John McCall51bd8032009-10-18 01:05:36 +00002434 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2435 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2436 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
2437 TL.setProtocolLoc(i, SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002438}
John McCall54e14c42009-10-22 22:37:11 +00002439void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
2440 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall54e14c42009-10-22 22:37:11 +00002441}
John McCalla1ee0c52009-10-16 21:56:05 +00002442
John McCalla93c9342009-12-07 02:54:59 +00002443TypeSourceInfo *PCHReader::GetTypeSourceInfo(const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00002444 unsigned &Idx) {
2445 QualType InfoTy = GetType(Record[Idx++]);
2446 if (InfoTy.isNull())
2447 return 0;
2448
John McCalla93c9342009-12-07 02:54:59 +00002449 TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy);
John McCalla1ee0c52009-10-16 21:56:05 +00002450 TypeLocReader TLR(*this, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00002451 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00002452 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00002453 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00002454}
Douglas Gregor2cf26342009-04-09 22:27:44 +00002455
Douglas Gregor8038d512009-04-10 17:25:41 +00002456QualType PCHReader::GetType(pch::TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00002457 unsigned FastQuals = ID & Qualifiers::FastMask;
2458 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002459
2460 if (Index < pch::NUM_PREDEF_TYPE_IDS) {
2461 QualType T;
2462 switch ((pch::PredefinedTypeIDs)Index) {
2463 case pch::PREDEF_TYPE_NULL_ID: return QualType();
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002464 case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break;
2465 case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002466
2467 case pch::PREDEF_TYPE_CHAR_U_ID:
2468 case pch::PREDEF_TYPE_CHAR_S_ID:
2469 // FIXME: Check that the signedness of CharTy is correct!
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002470 T = Context->CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002471 break;
2472
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002473 case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break;
2474 case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break;
2475 case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break;
2476 case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break;
2477 case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002478 case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break;
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002479 case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break;
2480 case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break;
2481 case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break;
2482 case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break;
2483 case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break;
2484 case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002485 case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break;
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002486 case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break;
2487 case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break;
2488 case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break;
2489 case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break;
2490 case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002491 case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002492 case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break;
2493 case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break;
Steve Naroffde2e22d2009-07-15 18:40:39 +00002494 case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break;
2495 case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break;
Fariborz Jahanian13dcd002009-11-21 19:53:08 +00002496 case pch::PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002497 }
2498
2499 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00002500 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002501 }
2502
2503 Index -= pch::NUM_PREDEF_TYPE_IDS;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002504 //assert(Index < TypesLoaded.size() && "Type index out-of-range");
John McCall0953e762009-09-24 19:53:00 +00002505 if (TypesLoaded[Index].isNull())
2506 TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]);
Mike Stump1eb44332009-09-09 15:08:12 +00002507
John McCall0953e762009-09-24 19:53:00 +00002508 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002509}
2510
John McCall833ca992009-10-29 08:12:44 +00002511TemplateArgumentLocInfo
2512PCHReader::GetTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
2513 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002514 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00002515 switch (Kind) {
2516 case TemplateArgument::Expression:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002517 return ReadExpr();
John McCall833ca992009-10-29 08:12:44 +00002518 case TemplateArgument::Type:
John McCalla93c9342009-12-07 02:54:59 +00002519 return GetTypeSourceInfo(Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00002520 case TemplateArgument::Template: {
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002521 SourceRange QualifierRange = ReadSourceRange(Record, Index);
2522 SourceLocation TemplateNameLoc = ReadSourceLocation(Record, Index);
2523 return TemplateArgumentLocInfo(QualifierRange, TemplateNameLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00002524 }
John McCall833ca992009-10-29 08:12:44 +00002525 case TemplateArgument::Null:
2526 case TemplateArgument::Integral:
2527 case TemplateArgument::Declaration:
2528 case TemplateArgument::Pack:
2529 return TemplateArgumentLocInfo();
2530 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002531 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00002532 return TemplateArgumentLocInfo();
2533}
2534
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002535TemplateArgumentLoc
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002536PCHReader::ReadTemplateArgumentLoc(const RecordData &Record, unsigned &Index) {
2537 TemplateArgument Arg = ReadTemplateArgument(Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002538
2539 if (Arg.getKind() == TemplateArgument::Expression) {
2540 if (Record[Index++]) // bool InfoHasSameExpr.
2541 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
2542 }
2543 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002544 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002545}
2546
John McCall76bd1f32010-06-01 09:23:16 +00002547Decl *PCHReader::GetExternalDecl(uint32_t ID) {
2548 return GetDecl(ID);
2549}
2550
Douglas Gregor8038d512009-04-10 17:25:41 +00002551Decl *PCHReader::GetDecl(pch::DeclID ID) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002552 if (ID == 0)
2553 return 0;
2554
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002555 if (ID > DeclsLoaded.size()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002556 Error("declaration ID out-of-range for PCH file");
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002557 return 0;
2558 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002559
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002560 unsigned Index = ID - 1;
2561 if (!DeclsLoaded[Index])
2562 ReadDeclRecord(DeclOffsets[Index], Index);
2563
2564 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002565}
2566
Chris Lattner887e2b32009-04-27 05:46:25 +00002567/// \brief Resolve the offset of a statement into a statement.
2568///
2569/// This operation will read a new statement from the external
2570/// source each time it is called, and is meant to be used via a
2571/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
John McCall76bd1f32010-06-01 09:23:16 +00002572Stmt *PCHReader::GetExternalDeclStmt(uint64_t Offset) {
Chris Lattnerda930612009-04-27 05:58:23 +00002573 // Since we know tha this statement is part of a decl, make sure to use the
2574 // decl cursor to read it.
2575 DeclsCursor.JumpToBit(Offset);
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002576 return ReadStmtFromStream(DeclsCursor);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00002577}
2578
John McCall76bd1f32010-06-01 09:23:16 +00002579bool PCHReader::FindExternalLexicalDecls(const DeclContext *DC,
2580 llvm::SmallVectorImpl<Decl*> &Decls) {
Mike Stump1eb44332009-09-09 15:08:12 +00002581 assert(DC->hasExternalLexicalStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00002582 "DeclContext has no lexical decls in storage");
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002583
Douglas Gregor2cf26342009-04-09 22:27:44 +00002584 uint64_t Offset = DeclContextOffsets[DC].first;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002585 if (Offset == 0) {
2586 Error("DeclContext has no lexical decls in storage");
2587 return true;
2588 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002589
Douglas Gregor0b748912009-04-14 21:18:50 +00002590 // Keep track of where we are in the stream, then jump back there
2591 // after reading this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002592 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00002593
Douglas Gregor2cf26342009-04-09 22:27:44 +00002594 // Load the record containing all of the declarations lexically in
2595 // this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002596 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002597 RecordData Record;
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002598 unsigned Code = DeclsCursor.ReadCode();
2599 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002600 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
2601 Error("Expected lexical block");
2602 return true;
2603 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002604
2605 // Load all of the declaration IDs
John McCall76bd1f32010-06-01 09:23:16 +00002606 for (RecordData::iterator I = Record.begin(), E = Record.end(); I != E; ++I)
2607 Decls.push_back(GetDecl(*I));
Douglas Gregor25123082009-04-22 22:34:57 +00002608 ++NumLexicalDeclContextsRead;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002609 return false;
2610}
2611
John McCall76bd1f32010-06-01 09:23:16 +00002612DeclContext::lookup_result
2613PCHReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
2614 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00002615 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00002616 "DeclContext has no visible decls in storage");
2617 uint64_t Offset = DeclContextOffsets[DC].second;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002618 if (Offset == 0) {
2619 Error("DeclContext has no visible decls in storage");
John McCall76bd1f32010-06-01 09:23:16 +00002620 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2621 DeclContext::lookup_iterator());
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002622 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002623
Douglas Gregor0b748912009-04-14 21:18:50 +00002624 // Keep track of where we are in the stream, then jump back there
2625 // after reading this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002626 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00002627
Douglas Gregor2cf26342009-04-09 22:27:44 +00002628 // Load the record containing all of the declarations visible in
2629 // this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002630 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002631 RecordData Record;
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002632 unsigned Code = DeclsCursor.ReadCode();
2633 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002634 if (RecCode != pch::DECL_CONTEXT_VISIBLE) {
2635 Error("Expected visible block");
John McCall76bd1f32010-06-01 09:23:16 +00002636 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2637 DeclContext::lookup_iterator());
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002638 }
2639
John McCall76bd1f32010-06-01 09:23:16 +00002640 llvm::SmallVector<VisibleDeclaration, 64> Decls;
2641 if (Record.empty()) {
2642 SetExternalVisibleDecls(DC, Decls);
2643 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2644 DeclContext::lookup_iterator());
2645 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002646
2647 unsigned Idx = 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002648 while (Idx < Record.size()) {
2649 Decls.push_back(VisibleDeclaration());
2650 Decls.back().Name = ReadDeclarationName(Record, Idx);
2651
Douglas Gregor2cf26342009-04-09 22:27:44 +00002652 unsigned Size = Record[Idx++];
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002653 llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002654 LoadedDecls.reserve(Size);
2655 for (unsigned I = 0; I < Size; ++I)
2656 LoadedDecls.push_back(Record[Idx++]);
2657 }
2658
Douglas Gregor25123082009-04-22 22:34:57 +00002659 ++NumVisibleDeclContextsRead;
John McCall76bd1f32010-06-01 09:23:16 +00002660
2661 SetExternalVisibleDecls(DC, Decls);
2662 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002663}
2664
Douglas Gregorfdd01722009-04-14 00:24:19 +00002665void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00002666 this->Consumer = Consumer;
2667
Douglas Gregorfdd01722009-04-14 00:24:19 +00002668 if (!Consumer)
2669 return;
2670
2671 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Daniel Dunbar04a0b502009-09-17 03:06:44 +00002672 // Force deserialization of this decl, which will cause it to be passed to
2673 // the consumer (or queued).
2674 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00002675 }
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00002676
2677 for (unsigned I = 0, N = InterestingDecls.size(); I != N; ++I) {
2678 DeclGroupRef DG(InterestingDecls[I]);
2679 Consumer->HandleTopLevelDecl(DG);
2680 }
Douglas Gregorfdd01722009-04-14 00:24:19 +00002681}
2682
Douglas Gregor2cf26342009-04-09 22:27:44 +00002683void PCHReader::PrintStats() {
2684 std::fprintf(stderr, "*** PCH Statistics:\n");
2685
Mike Stump1eb44332009-09-09 15:08:12 +00002686 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002687 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00002688 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002689 unsigned NumDeclsLoaded
2690 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
2691 (Decl *)0);
2692 unsigned NumIdentifiersLoaded
2693 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
2694 IdentifiersLoaded.end(),
2695 (IdentifierInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00002696 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002697 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
2698 SelectorsLoaded.end(),
2699 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00002700
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002701 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
2702 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002703 if (TotalNumSLocEntries)
2704 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
2705 NumSLocEntriesRead, TotalNumSLocEntries,
2706 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002707 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002708 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002709 NumTypesLoaded, (unsigned)TypesLoaded.size(),
2710 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
2711 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002712 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002713 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
2714 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002715 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002716 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002717 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
2718 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00002719 if (TotalNumSelectors)
2720 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
2721 NumSelectorsLoaded, TotalNumSelectors,
2722 ((float)NumSelectorsLoaded/TotalNumSelectors * 100));
2723 if (TotalNumStatements)
2724 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
2725 NumStatementsRead, TotalNumStatements,
2726 ((float)NumStatementsRead/TotalNumStatements * 100));
2727 if (TotalNumMacros)
2728 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
2729 NumMacrosRead, TotalNumMacros,
2730 ((float)NumMacrosRead/TotalNumMacros * 100));
2731 if (TotalLexicalDeclContexts)
2732 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
2733 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
2734 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
2735 * 100));
2736 if (TotalVisibleDeclContexts)
2737 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
2738 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
2739 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
2740 * 100));
2741 if (TotalSelectorsInMethodPool) {
2742 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
2743 NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool,
2744 ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool
2745 * 100));
2746 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
2747 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002748 std::fprintf(stderr, "\n");
2749}
2750
Douglas Gregor668c1a42009-04-21 22:25:48 +00002751void PCHReader::InitializeSema(Sema &S) {
2752 SemaObj = &S;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002753 S.ExternalSource = this;
2754
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00002755 // Makes sure any declarations that were deserialized "too early"
2756 // still get added to the identifier's declaration chains.
2757 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
2758 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I]));
2759 SemaObj->IdResolver.AddDecl(PreloadedDecls[I]);
Douglas Gregor668c1a42009-04-21 22:25:48 +00002760 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00002761 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002762
2763 // If there were any tentative definitions, deserialize them and add
Sebastian Redle9d12b62010-01-31 22:27:38 +00002764 // them to Sema's list of tentative definitions.
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002765 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
2766 VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I]));
Sebastian Redle9d12b62010-01-31 22:27:38 +00002767 SemaObj->TentativeDefinitions.push_back(Var);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002768 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002769
Tanya Lattnere6bbc012010-02-12 00:07:30 +00002770 // If there were any unused static functions, deserialize them and add to
2771 // Sema's list of unused static functions.
2772 for (unsigned I = 0, N = UnusedStaticFuncs.size(); I != N; ++I) {
2773 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(UnusedStaticFuncs[I]));
2774 SemaObj->UnusedStaticFuncs.push_back(FD);
2775 }
Douglas Gregor14c22f22009-04-22 22:18:58 +00002776
2777 // If there were any locally-scoped external declarations,
2778 // deserialize them and add them to Sema's table of locally-scoped
2779 // external declarations.
2780 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
2781 NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
2782 SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D;
2783 }
Douglas Gregorb81c1702009-04-27 20:06:05 +00002784
2785 // If there were any ext_vector type declarations, deserialize them
2786 // and add them to Sema's vector of such declarations.
2787 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I)
2788 SemaObj->ExtVectorDecls.push_back(
2789 cast<TypedefDecl>(GetDecl(ExtVectorDecls[I])));
Douglas Gregor668c1a42009-04-21 22:25:48 +00002790}
2791
2792IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) {
2793 // Try to find this name within our on-disk hash table
Mike Stump1eb44332009-09-09 15:08:12 +00002794 PCHIdentifierLookupTable *IdTable
Douglas Gregor668c1a42009-04-21 22:25:48 +00002795 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
2796 std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart);
2797 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key);
2798 if (Pos == IdTable->end())
2799 return 0;
2800
2801 // Dereferencing the iterator has the effect of building the
2802 // IdentifierInfo node and populating it with the various
2803 // declarations it needs.
2804 return *Pos;
2805}
2806
Mike Stump1eb44332009-09-09 15:08:12 +00002807std::pair<ObjCMethodList, ObjCMethodList>
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002808PCHReader::ReadMethodPool(Selector Sel) {
2809 if (!MethodPoolLookupTable)
2810 return std::pair<ObjCMethodList, ObjCMethodList>();
2811
2812 // Try to find this selector within our on-disk hash table.
2813 PCHMethodPoolLookupTable *PoolTable
2814 = (PCHMethodPoolLookupTable*)MethodPoolLookupTable;
2815 PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel);
Douglas Gregor83941df2009-04-25 17:48:32 +00002816 if (Pos == PoolTable->end()) {
2817 ++NumMethodPoolMisses;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002818 return std::pair<ObjCMethodList, ObjCMethodList>();;
Douglas Gregor83941df2009-04-25 17:48:32 +00002819 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002820
Douglas Gregor83941df2009-04-25 17:48:32 +00002821 ++NumMethodPoolSelectorsRead;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002822 return *Pos;
2823}
2824
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002825void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00002826 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00002827 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002828 IdentifiersLoaded[ID - 1] = II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00002829}
2830
Douglas Gregord89275b2009-07-06 18:54:52 +00002831/// \brief Set the globally-visible declarations associated with the given
2832/// identifier.
2833///
2834/// If the PCH reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00002835/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00002836/// them.
2837///
2838/// \param II an IdentifierInfo that refers to one or more globally-visible
2839/// declarations.
2840///
2841/// \param DeclIDs the set of declaration IDs with the name @p II that are
2842/// visible at global scope.
2843///
2844/// \param Nonrecursive should be true to indicate that the caller knows that
2845/// this call is non-recursive, and therefore the globally-visible declarations
2846/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00002847void
2848PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Douglas Gregord89275b2009-07-06 18:54:52 +00002849 const llvm::SmallVectorImpl<uint32_t> &DeclIDs,
2850 bool Nonrecursive) {
2851 if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) {
2852 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
2853 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
2854 PII.II = II;
2855 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I)
2856 PII.DeclIDs.push_back(DeclIDs[I]);
2857 return;
2858 }
Mike Stump1eb44332009-09-09 15:08:12 +00002859
Douglas Gregord89275b2009-07-06 18:54:52 +00002860 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
2861 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
2862 if (SemaObj) {
2863 // Introduce this declaration into the translation-unit scope
2864 // and add it to the declaration chain for this identifier, so
2865 // that (unqualified) name lookup will find it.
2866 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D));
2867 SemaObj->IdResolver.AddDeclToIdentifierChain(II, D);
2868 } else {
2869 // Queue this declaration so that it will be added to the
2870 // translation unit scope and identifier's declaration chain
2871 // once a Sema object is known.
2872 PreloadedDecls.push_back(D);
2873 }
2874 }
2875}
2876
Chris Lattner7356a312009-04-11 21:15:38 +00002877IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00002878 if (ID == 0)
2879 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002880
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002881 if (!IdentifierTableData || IdentifiersLoaded.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002882 Error("no identifier table in PCH file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00002883 return 0;
2884 }
Mike Stump1eb44332009-09-09 15:08:12 +00002885
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002886 assert(PP && "Forgot to set Preprocessor ?");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002887 if (!IdentifiersLoaded[ID - 1]) {
2888 uint32_t Offset = IdentifierOffsets[ID - 1];
Douglas Gregor17e1c5e2009-04-25 21:21:38 +00002889 const char *Str = IdentifierTableData + Offset;
Douglas Gregord6595a42009-04-25 21:04:17 +00002890
Douglas Gregor02fc7512009-04-28 20:01:51 +00002891 // All of the strings in the PCH file are preceded by a 16-bit
2892 // length. Extract that 16-bit length to avoid having to execute
2893 // strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00002894 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
2895 // unsigned integers. This is important to avoid integer overflow when
2896 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00002897 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00002898 unsigned StrLen = (((unsigned) StrLenPtr[0])
2899 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Mike Stump1eb44332009-09-09 15:08:12 +00002900 IdentifiersLoaded[ID - 1]
Kovarththanan Rajaratnam811f4262010-03-12 10:32:27 +00002901 = &PP->getIdentifierTable().get(Str, StrLen);
Douglas Gregorafaf3082009-04-11 00:14:32 +00002902 }
Mike Stump1eb44332009-09-09 15:08:12 +00002903
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002904 return IdentifiersLoaded[ID - 1];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002905}
2906
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002907void PCHReader::ReadSLocEntry(unsigned ID) {
2908 ReadSLocEntryRecord(ID);
2909}
2910
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002911Selector PCHReader::DecodeSelector(unsigned ID) {
2912 if (ID == 0)
2913 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00002914
Douglas Gregora02b1472009-04-28 21:53:25 +00002915 if (!MethodPoolLookupTableData)
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002916 return Selector();
Douglas Gregor83941df2009-04-25 17:48:32 +00002917
2918 if (ID > TotalNumSelectors) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002919 Error("selector ID out of range in PCH file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002920 return Selector();
2921 }
Douglas Gregor83941df2009-04-25 17:48:32 +00002922
2923 unsigned Index = ID - 1;
2924 if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) {
2925 // Load this selector from the selector table.
2926 // FIXME: endianness portability issues with SelectorOffsets table
2927 PCHMethodPoolLookupTrait Trait(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002928 SelectorsLoaded[Index]
Douglas Gregor83941df2009-04-25 17:48:32 +00002929 = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0);
2930 }
2931
2932 return SelectorsLoaded[Index];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002933}
2934
John McCall76bd1f32010-06-01 09:23:16 +00002935Selector PCHReader::GetExternalSelector(uint32_t ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00002936 return DecodeSelector(ID);
2937}
2938
John McCall76bd1f32010-06-01 09:23:16 +00002939uint32_t PCHReader::GetNumExternalSelectors() {
Douglas Gregor719770d2010-04-06 17:30:22 +00002940 return TotalNumSelectors + 1;
2941}
2942
Mike Stump1eb44332009-09-09 15:08:12 +00002943DeclarationName
Douglas Gregor2cf26342009-04-09 22:27:44 +00002944PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
2945 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
2946 switch (Kind) {
2947 case DeclarationName::Identifier:
2948 return DeclarationName(GetIdentifierInfo(Record, Idx));
2949
2950 case DeclarationName::ObjCZeroArgSelector:
2951 case DeclarationName::ObjCOneArgSelector:
2952 case DeclarationName::ObjCMultiArgSelector:
Steve Naroffa7503a72009-04-23 15:15:40 +00002953 return DeclarationName(GetSelector(Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002954
2955 case DeclarationName::CXXConstructorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002956 return Context->DeclarationNames.getCXXConstructorName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00002957 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002958
2959 case DeclarationName::CXXDestructorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002960 return Context->DeclarationNames.getCXXDestructorName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00002961 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002962
2963 case DeclarationName::CXXConversionFunctionName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002964 return Context->DeclarationNames.getCXXConversionFunctionName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00002965 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002966
2967 case DeclarationName::CXXOperatorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002968 return Context->DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00002969 (OverloadedOperatorKind)Record[Idx++]);
2970
Sean Hunt3e518bd2009-11-29 07:34:05 +00002971 case DeclarationName::CXXLiteralOperatorName:
2972 return Context->DeclarationNames.getCXXLiteralOperatorName(
2973 GetIdentifierInfo(Record, Idx));
2974
Douglas Gregor2cf26342009-04-09 22:27:44 +00002975 case DeclarationName::CXXUsingDirective:
2976 return DeclarationName::getUsingDirectiveName();
2977 }
2978
2979 // Required to silence GCC warning
2980 return DeclarationName();
2981}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002982
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002983TemplateName
2984PCHReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) {
2985 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
2986 switch (Kind) {
2987 case TemplateName::Template:
2988 return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++])));
2989
2990 case TemplateName::OverloadedTemplate: {
2991 unsigned size = Record[Idx++];
2992 UnresolvedSet<8> Decls;
2993 while (size--)
2994 Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++])));
2995
2996 return Context->getOverloadedTemplateName(Decls.begin(), Decls.end());
2997 }
2998
2999 case TemplateName::QualifiedTemplate: {
3000 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3001 bool hasTemplKeyword = Record[Idx++];
3002 TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++]));
3003 return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
3004 }
3005
3006 case TemplateName::DependentTemplate: {
3007 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3008 if (Record[Idx++]) // isIdentifier
3009 return Context->getDependentTemplateName(NNS,
3010 GetIdentifierInfo(Record, Idx));
3011 return Context->getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00003012 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003013 }
3014 }
3015
3016 assert(0 && "Unhandled template name kind!");
3017 return TemplateName();
3018}
3019
3020TemplateArgument
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003021PCHReader::ReadTemplateArgument(const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003022 switch ((TemplateArgument::ArgKind)Record[Idx++]) {
3023 case TemplateArgument::Null:
3024 return TemplateArgument();
3025 case TemplateArgument::Type:
3026 return TemplateArgument(GetType(Record[Idx++]));
3027 case TemplateArgument::Declaration:
3028 return TemplateArgument(GetDecl(Record[Idx++]));
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00003029 case TemplateArgument::Integral: {
3030 llvm::APSInt Value = ReadAPSInt(Record, Idx);
3031 QualType T = GetType(Record[Idx++]);
3032 return TemplateArgument(Value, T);
3033 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003034 case TemplateArgument::Template:
3035 return TemplateArgument(ReadTemplateName(Record, Idx));
3036 case TemplateArgument::Expression:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003037 return TemplateArgument(ReadExpr());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003038 case TemplateArgument::Pack: {
3039 unsigned NumArgs = Record[Idx++];
3040 llvm::SmallVector<TemplateArgument, 8> Args;
3041 Args.reserve(NumArgs);
3042 while (NumArgs--)
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003043 Args.push_back(ReadTemplateArgument(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003044 TemplateArgument TemplArg;
3045 TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true);
3046 return TemplArg;
3047 }
3048 }
3049
3050 assert(0 && "Unhandled template argument kind!");
3051 return TemplateArgument();
3052}
3053
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003054TemplateParameterList *
3055PCHReader::ReadTemplateParameterList(const RecordData &Record, unsigned &Idx) {
3056 SourceLocation TemplateLoc = ReadSourceLocation(Record, Idx);
3057 SourceLocation LAngleLoc = ReadSourceLocation(Record, Idx);
3058 SourceLocation RAngleLoc = ReadSourceLocation(Record, Idx);
3059
3060 unsigned NumParams = Record[Idx++];
3061 llvm::SmallVector<NamedDecl *, 16> Params;
3062 Params.reserve(NumParams);
3063 while (NumParams--)
3064 Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++])));
3065
3066 TemplateParameterList* TemplateParams =
3067 TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc,
3068 Params.data(), Params.size(), RAngleLoc);
3069 return TemplateParams;
3070}
3071
3072void
3073PCHReader::
3074ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs,
3075 const RecordData &Record, unsigned &Idx) {
3076 unsigned NumTemplateArgs = Record[Idx++];
3077 TemplArgs.reserve(NumTemplateArgs);
3078 while (NumTemplateArgs--)
3079 TemplArgs.push_back(ReadTemplateArgument(Record, Idx));
3080}
3081
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003082NestedNameSpecifier *
3083PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) {
3084 unsigned N = Record[Idx++];
3085 NestedNameSpecifier *NNS = 0, *Prev = 0;
3086 for (unsigned I = 0; I != N; ++I) {
3087 NestedNameSpecifier::SpecifierKind Kind
3088 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
3089 switch (Kind) {
3090 case NestedNameSpecifier::Identifier: {
3091 IdentifierInfo *II = GetIdentifierInfo(Record, Idx);
3092 NNS = NestedNameSpecifier::Create(*Context, Prev, II);
3093 break;
3094 }
3095
3096 case NestedNameSpecifier::Namespace: {
3097 NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++]));
3098 NNS = NestedNameSpecifier::Create(*Context, Prev, NS);
3099 break;
3100 }
3101
3102 case NestedNameSpecifier::TypeSpec:
3103 case NestedNameSpecifier::TypeSpecWithTemplate: {
3104 Type *T = GetType(Record[Idx++]).getTypePtr();
3105 bool Template = Record[Idx++];
3106 NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T);
3107 break;
3108 }
3109
3110 case NestedNameSpecifier::Global: {
3111 NNS = NestedNameSpecifier::GlobalSpecifier(*Context);
3112 // No associated value, and there can't be a prefix.
3113 break;
3114 }
3115 Prev = NNS;
3116 }
3117 }
3118 return NNS;
3119}
3120
3121SourceRange
3122PCHReader::ReadSourceRange(const RecordData &Record, unsigned &Idx) {
Daniel Dunbar8ee59392010-06-02 15:47:10 +00003123 SourceLocation beg = SourceLocation::getFromRawEncoding(Record[Idx++]);
3124 SourceLocation end = SourceLocation::getFromRawEncoding(Record[Idx++]);
3125 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003126}
3127
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003128/// \brief Read an integral value
3129llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
3130 unsigned BitWidth = Record[Idx++];
3131 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
3132 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
3133 Idx += NumWords;
3134 return Result;
3135}
3136
3137/// \brief Read a signed integral value
3138llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
3139 bool isUnsigned = Record[Idx++];
3140 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
3141}
3142
Douglas Gregor17fc2232009-04-14 21:55:33 +00003143/// \brief Read a floating-point value
3144llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00003145 return llvm::APFloat(ReadAPInt(Record, Idx));
3146}
3147
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003148// \brief Read a string
3149std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) {
3150 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00003151 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003152 Idx += Len;
3153 return Result;
3154}
3155
Chris Lattnerd2598362010-05-10 00:25:06 +00003156CXXTemporary *PCHReader::ReadCXXTemporary(const RecordData &Record,
3157 unsigned &Idx) {
3158 CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++]));
3159 return CXXTemporary::Create(*Context, Decl);
3160}
3161
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003162DiagnosticBuilder PCHReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00003163 return Diag(SourceLocation(), DiagID);
3164}
3165
3166DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003167 return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003168}
Douglas Gregor025452f2009-04-17 00:04:06 +00003169
Douglas Gregor668c1a42009-04-21 22:25:48 +00003170/// \brief Retrieve the identifier table associated with the
3171/// preprocessor.
3172IdentifierTable &PCHReader::getIdentifierTable() {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003173 assert(PP && "Forgot to set Preprocessor ?");
3174 return PP->getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00003175}
3176
Douglas Gregor025452f2009-04-17 00:04:06 +00003177/// \brief Record that the given ID maps to the given switch-case
3178/// statement.
3179void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
3180 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
3181 SwitchCaseStmts[ID] = SC;
3182}
3183
3184/// \brief Retrieve the switch-case statement with the given ID.
3185SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) {
3186 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
3187 return SwitchCaseStmts[ID];
3188}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003189
3190/// \brief Record that the given label statement has been
3191/// deserialized and has the given ID.
3192void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) {
Mike Stump1eb44332009-09-09 15:08:12 +00003193 assert(LabelStmts.find(ID) == LabelStmts.end() &&
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003194 "Deserialized label twice");
3195 LabelStmts[ID] = S;
3196
3197 // If we've already seen any goto statements that point to this
3198 // label, resolve them now.
3199 typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter;
3200 std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID);
3201 for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto)
3202 Goto->second->setLabel(S);
3203 UnresolvedGotoStmts.erase(Gotos.first, Gotos.second);
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003204
3205 // If we've already seen any address-label statements that point to
3206 // this label, resolve them now.
3207 typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter;
Mike Stump1eb44332009-09-09 15:08:12 +00003208 std::pair<AddrLabelIter, AddrLabelIter> AddrLabels
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003209 = UnresolvedAddrLabelExprs.equal_range(ID);
Mike Stump1eb44332009-09-09 15:08:12 +00003210 for (AddrLabelIter AddrLabel = AddrLabels.first;
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003211 AddrLabel != AddrLabels.second; ++AddrLabel)
3212 AddrLabel->second->setLabel(S);
3213 UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second);
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003214}
3215
3216/// \brief Set the label of the given statement to the label
3217/// identified by ID.
3218///
3219/// Depending on the order in which the label and other statements
3220/// referencing that label occur, this operation may complete
3221/// immediately (updating the statement) or it may queue the
3222/// statement to be back-patched later.
3223void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) {
3224 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3225 if (Label != LabelStmts.end()) {
3226 // We've already seen this label, so set the label of the goto and
3227 // we're done.
3228 S->setLabel(Label->second);
3229 } else {
3230 // We haven't seen this label yet, so add this goto to the set of
3231 // unresolved goto statements.
3232 UnresolvedGotoStmts.insert(std::make_pair(ID, S));
3233 }
3234}
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003235
3236/// \brief Set the label of the given expression to the label
3237/// identified by ID.
3238///
3239/// Depending on the order in which the label and other statements
3240/// referencing that label occur, this operation may complete
3241/// immediately (updating the statement) or it may queue the
3242/// statement to be back-patched later.
3243void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) {
3244 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3245 if (Label != LabelStmts.end()) {
3246 // We've already seen this label, so set the label of the
3247 // label-address expression and we're done.
3248 S->setLabel(Label->second);
3249 } else {
3250 // We haven't seen this label yet, so add this label-address
3251 // expression to the set of unresolved label-address expressions.
3252 UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S));
3253 }
3254}
Douglas Gregord89275b2009-07-06 18:54:52 +00003255
3256
Mike Stump1eb44332009-09-09 15:08:12 +00003257PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader)
Douglas Gregord89275b2009-07-06 18:54:52 +00003258 : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) {
3259 Reader.CurrentlyLoadingTypeOrDecl = this;
3260}
3261
3262PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() {
3263 if (!Parent) {
3264 // If any identifiers with corresponding top-level declarations have
3265 // been loaded, load those declarations now.
3266 while (!Reader.PendingIdentifierInfos.empty()) {
3267 Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II,
3268 Reader.PendingIdentifierInfos.front().DeclIDs,
3269 true);
3270 Reader.PendingIdentifierInfos.pop_front();
3271 }
3272 }
3273
Mike Stump1eb44332009-09-09 15:08:12 +00003274 Reader.CurrentlyLoadingTypeOrDecl = Parent;
Douglas Gregord89275b2009-07-06 18:54:52 +00003275}