blob: e2701cea40bb21e6d14386fc23eea7e2f30d4078 [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
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00001508 case pch::VTABLE_USES:
1509 if (!VTableUses.empty()) {
1510 Error("duplicate VTABLE_USES record in PCH file");
1511 return Failure;
1512 }
1513 VTableUses.swap(Record);
1514 break;
1515
1516 case pch::DYNAMIC_CLASSES:
1517 if (!DynamicClasses.empty()) {
1518 Error("duplicate DYNAMIC_CLASSES record in PCH file");
1519 return Failure;
1520 }
1521 DynamicClasses.swap(Record);
1522 break;
1523
Douglas Gregorb64c1932009-05-12 01:31:05 +00001524 case pch::ORIGINAL_FILE_NAME:
Daniel Dunbar7b5a1212009-11-11 05:29:04 +00001525 ActualOriginalFileName.assign(BlobStart, BlobLen);
1526 OriginalFileName = ActualOriginalFileName;
Douglas Gregore650c8c2009-07-07 00:12:59 +00001527 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregorb64c1932009-05-12 01:31:05 +00001528 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001529
Ted Kremenek5b4ec632010-01-22 20:59:36 +00001530 case pch::VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek974be4d2010-02-12 23:31:14 +00001531 const std::string &CurBranch = getClangFullRepositoryVersion();
Ted Kremenek517e6762010-01-22 20:55:35 +00001532 llvm::StringRef PCHBranch(BlobStart, BlobLen);
Ted Kremenek974be4d2010-02-12 23:31:14 +00001533 if (llvm::StringRef(CurBranch) != PCHBranch) {
Douglas Gregor445e23e2009-10-05 21:07:28 +00001534 Diag(diag::warn_pch_different_branch) << PCHBranch << CurBranch;
1535 return IgnorePCH;
1536 }
1537 break;
1538 }
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001539
1540 case pch::MACRO_DEFINITION_OFFSETS:
1541 MacroDefinitionOffsets = (const uint32_t *)BlobStart;
1542 if (PP) {
1543 if (!PP->getPreprocessingRecord())
1544 PP->createPreprocessingRecord();
1545 PP->getPreprocessingRecord()->SetExternalSource(*this, Record[0]);
1546 } else {
1547 NumPreallocatedPreprocessingEntities = Record[0];
1548 }
1549
1550 MacroDefinitionsLoaded.resize(Record[1]);
1551 break;
Douglas Gregorafaf3082009-04-11 00:14:32 +00001552 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001553 }
Douglas Gregora02b1472009-04-28 21:53:25 +00001554 Error("premature end of bitstream in PCH file");
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001555 return Failure;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001556}
1557
Douglas Gregore1d918e2009-04-10 23:10:45 +00001558PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001559 // Set the PCH file name.
1560 this->FileName = FileName;
1561
Douglas Gregor2cf26342009-04-09 22:27:44 +00001562 // Open the PCH file.
Daniel Dunbarf3c740e2009-09-22 05:38:01 +00001563 //
1564 // FIXME: This shouldn't be here, we should just take a raw_ostream.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001565 std::string ErrStr;
Daniel Dunbar731ad8f2009-11-10 00:46:19 +00001566 Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr));
Douglas Gregore1d918e2009-04-10 23:10:45 +00001567 if (!Buffer) {
1568 Error(ErrStr.c_str());
1569 return IgnorePCH;
1570 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001571
1572 // Initialize the stream
Mike Stump1eb44332009-09-09 15:08:12 +00001573 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Chris Lattnerb9fa9172009-04-26 20:59:20 +00001574 (const unsigned char *)Buffer->getBufferEnd());
1575 Stream.init(StreamFile);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001576
1577 // Sniff for the signature.
1578 if (Stream.Read(8) != 'C' ||
1579 Stream.Read(8) != 'P' ||
1580 Stream.Read(8) != 'C' ||
Douglas Gregore1d918e2009-04-10 23:10:45 +00001581 Stream.Read(8) != 'H') {
Douglas Gregora02b1472009-04-28 21:53:25 +00001582 Diag(diag::err_not_a_pch_file) << FileName;
1583 return Failure;
Douglas Gregore1d918e2009-04-10 23:10:45 +00001584 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001585
Douglas Gregor2cf26342009-04-09 22:27:44 +00001586 while (!Stream.AtEndOfStream()) {
1587 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001588
Douglas Gregore1d918e2009-04-10 23:10:45 +00001589 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001590 Error("invalid record at top-level of PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001591 return Failure;
1592 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001593
1594 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregor668c1a42009-04-21 22:25:48 +00001595
Douglas Gregor2cf26342009-04-09 22:27:44 +00001596 // We only know the PCH subblock ID.
1597 switch (BlockID) {
1598 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001599 if (Stream.ReadBlockInfoBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001600 Error("malformed BlockInfoBlock in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001601 return Failure;
1602 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001603 break;
1604 case pch::PCH_BLOCK_ID:
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001605 switch (ReadPCHBlock()) {
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001606 case Success:
1607 break;
1608
1609 case Failure:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001610 return Failure;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001611
1612 case IgnorePCH:
Douglas Gregor2bec0412009-04-10 21:16:55 +00001613 // FIXME: We could consider reading through to the end of this
1614 // PCH block, skipping subblocks, to see if there are other
1615 // PCH blocks elsewhere.
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001616
1617 // Clear out any preallocated source location entries, so that
1618 // the source manager does not try to resolve them later.
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001619 SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001620
1621 // Remove the stat cache.
Douglas Gregor52e71082009-10-16 18:18:30 +00001622 if (StatCache)
1623 FileMgr.removeStatCache((PCHStatCache*)StatCache);
Douglas Gregor2bf1eb02009-04-27 21:28:04 +00001624
Douglas Gregore1d918e2009-04-10 23:10:45 +00001625 return IgnorePCH;
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001626 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001627 break;
1628 default:
Douglas Gregore1d918e2009-04-10 23:10:45 +00001629 if (Stream.SkipBlock()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00001630 Error("malformed block record in PCH file");
Douglas Gregore1d918e2009-04-10 23:10:45 +00001631 return Failure;
1632 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001633 break;
1634 }
Mike Stump1eb44332009-09-09 15:08:12 +00001635 }
1636
Douglas Gregor92b059e2009-04-28 20:33:11 +00001637 // Check the predefines buffer.
Daniel Dunbardc3c0d22009-11-11 00:52:11 +00001638 if (CheckPredefinesBuffer(llvm::StringRef(PCHPredefines, PCHPredefinesLen),
Douglas Gregor92b059e2009-04-28 20:33:11 +00001639 PCHPredefinesBufferID))
1640 return IgnorePCH;
Mike Stump1eb44332009-09-09 15:08:12 +00001641
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001642 if (PP) {
Zhongxing Xu08996212009-07-18 09:26:51 +00001643 // Initialization of keywords and pragmas occurs before the
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001644 // PCH file is read, so there may be some identifiers that were
1645 // loaded into the IdentifierTable before we intercepted the
1646 // creation of identifiers. Iterate through the list of known
1647 // identifiers and determine whether we have to establish
1648 // preprocessor definitions or top-level identifier declaration
1649 // chains for those identifiers.
1650 //
1651 // We copy the IdentifierInfo pointers to a small vector first,
1652 // since de-serializing declarations or macro definitions can add
1653 // new entries into the identifier table, invalidating the
1654 // iterators.
1655 llvm::SmallVector<IdentifierInfo *, 128> Identifiers;
1656 for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(),
1657 IdEnd = PP->getIdentifierTable().end();
1658 Id != IdEnd; ++Id)
1659 Identifiers.push_back(Id->second);
Mike Stump1eb44332009-09-09 15:08:12 +00001660 PCHIdentifierLookupTable *IdTable
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001661 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
1662 for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) {
1663 IdentifierInfo *II = Identifiers[I];
1664 // Look in the on-disk hash table for an entry for
1665 PCHIdentifierLookupTrait Info(*this, II);
Daniel Dunbare013d682009-10-18 20:26:12 +00001666 std::pair<const char*, unsigned> Key(II->getNameStart(), II->getLength());
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001667 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info);
1668 if (Pos == IdTable->end())
1669 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001670
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001671 // Dereferencing the iterator has the effect of populating the
1672 // IdentifierInfo node with the various declarations it needs.
1673 (void)*Pos;
1674 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00001675 }
1676
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001677 if (Context)
1678 InitializeContext(*Context);
Douglas Gregor0b748912009-04-14 21:18:50 +00001679
Douglas Gregor668c1a42009-04-21 22:25:48 +00001680 return Success;
Douglas Gregor0b748912009-04-14 21:18:50 +00001681}
1682
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001683void PCHReader::setPreprocessor(Preprocessor &pp) {
1684 PP = &pp;
1685
1686 if (NumPreallocatedPreprocessingEntities) {
1687 if (!PP->getPreprocessingRecord())
1688 PP->createPreprocessingRecord();
1689 PP->getPreprocessingRecord()->SetExternalSource(*this,
1690 NumPreallocatedPreprocessingEntities);
1691 NumPreallocatedPreprocessingEntities = 0;
1692 }
1693}
1694
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001695void PCHReader::InitializeContext(ASTContext &Ctx) {
1696 Context = &Ctx;
1697 assert(Context && "Passed null context!");
1698
1699 assert(PP && "Forgot to set Preprocessor ?");
1700 PP->getIdentifierTable().setExternalIdentifierLookup(this);
1701 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor88a35862010-01-04 19:18:44 +00001702 PP->setExternalSource(this);
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00001703
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001704 // Load the translation unit declaration
1705 ReadDeclRecord(DeclOffsets[0], 0);
1706
1707 // Load the special types.
1708 Context->setBuiltinVaListType(
1709 GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST]));
1710 if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID])
1711 Context->setObjCIdType(GetType(Id));
1712 if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR])
1713 Context->setObjCSelType(GetType(Sel));
1714 if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL])
1715 Context->setObjCProtoType(GetType(Proto));
1716 if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS])
1717 Context->setObjCClassType(GetType(Class));
Steve Naroff14108da2009-07-10 23:34:53 +00001718
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001719 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING])
1720 Context->setCFConstantStringType(GetType(String));
Mike Stump1eb44332009-09-09 15:08:12 +00001721 if (unsigned FastEnum
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001722 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE])
1723 Context->setObjCFastEnumerationStateType(GetType(FastEnum));
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001724 if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) {
1725 QualType FileType = GetType(File);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001726 if (FileType.isNull()) {
1727 Error("FILE type is NULL");
1728 return;
1729 }
John McCall183700f2009-09-21 23:43:11 +00001730 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001731 Context->setFILEDecl(Typedef->getDecl());
1732 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001733 const TagType *Tag = FileType->getAs<TagType>();
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001734 if (!Tag) {
1735 Error("Invalid FILE type in PCH file");
1736 return;
1737 }
Douglas Gregorc29f77b2009-07-07 16:35:42 +00001738 Context->setFILEDecl(Tag->getDecl());
1739 }
1740 }
Mike Stump782fa302009-07-28 02:25:19 +00001741 if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) {
1742 QualType Jmp_bufType = GetType(Jmp_buf);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001743 if (Jmp_bufType.isNull()) {
1744 Error("jmp_bug type is NULL");
1745 return;
1746 }
John McCall183700f2009-09-21 23:43:11 +00001747 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
Mike Stump782fa302009-07-28 02:25:19 +00001748 Context->setjmp_bufDecl(Typedef->getDecl());
1749 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001750 const TagType *Tag = Jmp_bufType->getAs<TagType>();
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001751 if (!Tag) {
1752 Error("Invalid jmp_bug type in PCH file");
1753 return;
1754 }
Mike Stump782fa302009-07-28 02:25:19 +00001755 Context->setjmp_bufDecl(Tag->getDecl());
1756 }
1757 }
1758 if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) {
1759 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001760 if (Sigjmp_bufType.isNull()) {
1761 Error("sigjmp_buf type is NULL");
1762 return;
1763 }
John McCall183700f2009-09-21 23:43:11 +00001764 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
Mike Stump782fa302009-07-28 02:25:19 +00001765 Context->setsigjmp_bufDecl(Typedef->getDecl());
1766 else {
Ted Kremenek6217b802009-07-29 21:53:49 +00001767 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
Mike Stump782fa302009-07-28 02:25:19 +00001768 assert(Tag && "Invalid sigjmp_buf type in PCH file");
1769 Context->setsigjmp_bufDecl(Tag->getDecl());
1770 }
1771 }
Mike Stump1eb44332009-09-09 15:08:12 +00001772 if (unsigned ObjCIdRedef
Douglas Gregord1571ac2009-08-21 00:27:50 +00001773 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION])
1774 Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef);
Mike Stump1eb44332009-09-09 15:08:12 +00001775 if (unsigned ObjCClassRedef
Douglas Gregord1571ac2009-08-21 00:27:50 +00001776 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION])
1777 Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef);
Mike Stumpadaaad32009-10-20 02:12:22 +00001778 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR])
1779 Context->setBlockDescriptorType(GetType(String));
Mike Stump083c25e2009-10-22 00:49:09 +00001780 if (unsigned String
1781 = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR])
1782 Context->setBlockDescriptorExtendedType(GetType(String));
Fariborz Jahanian2bb5dda2010-04-23 17:41:07 +00001783 if (unsigned ObjCSelRedef
1784 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION])
1785 Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef);
1786 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_NS_CONSTANT_STRING])
1787 Context->setNSConstantStringType(GetType(String));
Argyrios Kyrtzidis00611382010-07-04 21:44:19 +00001788
1789 if (SpecialTypes[pch::SPECIAL_TYPE_INT128_INSTALLED])
1790 Context->setInt128Installed();
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001791}
1792
Douglas Gregorb64c1932009-05-12 01:31:05 +00001793/// \brief Retrieve the name of the original source file name
1794/// directly from the PCH file, without actually loading the PCH
1795/// file.
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001796std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName,
1797 Diagnostic &Diags) {
Douglas Gregorb64c1932009-05-12 01:31:05 +00001798 // Open the PCH file.
1799 std::string ErrStr;
1800 llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
1801 Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr));
1802 if (!Buffer) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001803 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001804 return std::string();
1805 }
1806
1807 // Initialize the stream
1808 llvm::BitstreamReader StreamFile;
1809 llvm::BitstreamCursor Stream;
Mike Stump1eb44332009-09-09 15:08:12 +00001810 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregorb64c1932009-05-12 01:31:05 +00001811 (const unsigned char *)Buffer->getBufferEnd());
1812 Stream.init(StreamFile);
1813
1814 // Sniff for the signature.
1815 if (Stream.Read(8) != 'C' ||
1816 Stream.Read(8) != 'P' ||
1817 Stream.Read(8) != 'C' ||
1818 Stream.Read(8) != 'H') {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001819 Diags.Report(diag::err_fe_not_a_pch_file) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001820 return std::string();
1821 }
1822
1823 RecordData Record;
1824 while (!Stream.AtEndOfStream()) {
1825 unsigned Code = Stream.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001826
Douglas Gregorb64c1932009-05-12 01:31:05 +00001827 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1828 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump1eb44332009-09-09 15:08:12 +00001829
Douglas Gregorb64c1932009-05-12 01:31:05 +00001830 // We only know the PCH subblock ID.
1831 switch (BlockID) {
1832 case pch::PCH_BLOCK_ID:
1833 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001834 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001835 return std::string();
1836 }
1837 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Douglas Gregorb64c1932009-05-12 01:31:05 +00001839 default:
1840 if (Stream.SkipBlock()) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001841 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001842 return std::string();
1843 }
1844 break;
1845 }
1846 continue;
1847 }
1848
1849 if (Code == llvm::bitc::END_BLOCK) {
1850 if (Stream.ReadBlockEnd()) {
Daniel Dunbar93ebb1b2009-12-03 09:13:06 +00001851 Diags.Report(diag::err_fe_pch_error_at_end_block) << PCHFileName;
Douglas Gregorb64c1932009-05-12 01:31:05 +00001852 return std::string();
1853 }
1854 continue;
1855 }
1856
1857 if (Code == llvm::bitc::DEFINE_ABBREV) {
1858 Stream.ReadAbbrevRecord();
1859 continue;
1860 }
1861
1862 Record.clear();
1863 const char *BlobStart = 0;
1864 unsigned BlobLen = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001865 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Douglas Gregorb64c1932009-05-12 01:31:05 +00001866 == pch::ORIGINAL_FILE_NAME)
1867 return std::string(BlobStart, BlobLen);
Mike Stump1eb44332009-09-09 15:08:12 +00001868 }
Douglas Gregorb64c1932009-05-12 01:31:05 +00001869
1870 return std::string();
1871}
1872
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001873/// \brief Parse the record that corresponds to a LangOptions data
1874/// structure.
1875///
1876/// This routine compares the language options used to generate the
1877/// PCH file against the language options set for the current
1878/// compilation. For each option, we classify differences between the
1879/// two compiler states as either "benign" or "important". Benign
1880/// differences don't matter, and we accept them without complaint
1881/// (and without modifying the language options). Differences between
1882/// the states for important options cause the PCH file to be
1883/// unusable, so we emit a warning and return true to indicate that
1884/// there was an error.
1885///
1886/// \returns true if the PCH file is unacceptable, false otherwise.
1887bool PCHReader::ParseLanguageOptions(
1888 const llvm::SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001889 if (Listener) {
1890 LangOptions LangOpts;
Mike Stump1eb44332009-09-09 15:08:12 +00001891
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001892 #define PARSE_LANGOPT(Option) \
1893 LangOpts.Option = Record[Idx]; \
1894 ++Idx
Mike Stump1eb44332009-09-09 15:08:12 +00001895
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001896 unsigned Idx = 0;
1897 PARSE_LANGOPT(Trigraphs);
1898 PARSE_LANGOPT(BCPLComment);
1899 PARSE_LANGOPT(DollarIdents);
1900 PARSE_LANGOPT(AsmPreprocessor);
1901 PARSE_LANGOPT(GNUMode);
Chandler Carrutheb5d7b72010-04-17 20:17:31 +00001902 PARSE_LANGOPT(GNUKeywords);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001903 PARSE_LANGOPT(ImplicitInt);
1904 PARSE_LANGOPT(Digraphs);
1905 PARSE_LANGOPT(HexFloats);
1906 PARSE_LANGOPT(C99);
1907 PARSE_LANGOPT(Microsoft);
1908 PARSE_LANGOPT(CPlusPlus);
1909 PARSE_LANGOPT(CPlusPlus0x);
1910 PARSE_LANGOPT(CXXOperatorNames);
1911 PARSE_LANGOPT(ObjC1);
1912 PARSE_LANGOPT(ObjC2);
1913 PARSE_LANGOPT(ObjCNonFragileABI);
Fariborz Jahanian412e7982010-02-09 19:31:38 +00001914 PARSE_LANGOPT(ObjCNonFragileABI2);
Fariborz Jahanian4c9d8d02010-04-22 21:01:59 +00001915 PARSE_LANGOPT(NoConstantCFStrings);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001916 PARSE_LANGOPT(PascalStrings);
1917 PARSE_LANGOPT(WritableStrings);
1918 PARSE_LANGOPT(LaxVectorConversions);
Nate Begemanb9e7e632009-06-25 23:01:11 +00001919 PARSE_LANGOPT(AltiVec);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001920 PARSE_LANGOPT(Exceptions);
Daniel Dunbar73482882010-02-10 18:48:44 +00001921 PARSE_LANGOPT(SjLjExceptions);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001922 PARSE_LANGOPT(NeXTRuntime);
1923 PARSE_LANGOPT(Freestanding);
1924 PARSE_LANGOPT(NoBuiltin);
1925 PARSE_LANGOPT(ThreadsafeStatics);
Douglas Gregor972d9542009-09-03 14:36:33 +00001926 PARSE_LANGOPT(POSIXThreads);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001927 PARSE_LANGOPT(Blocks);
1928 PARSE_LANGOPT(EmitAllDecls);
1929 PARSE_LANGOPT(MathErrno);
Chris Lattnera4d71452010-06-26 21:25:03 +00001930 LangOpts.setSignedOverflowBehavior((LangOptions::SignedOverflowBehaviorTy)
1931 Record[Idx++]);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001932 PARSE_LANGOPT(HeinousExtensions);
1933 PARSE_LANGOPT(Optimize);
1934 PARSE_LANGOPT(OptimizeSize);
1935 PARSE_LANGOPT(Static);
1936 PARSE_LANGOPT(PICLevel);
1937 PARSE_LANGOPT(GNUInline);
1938 PARSE_LANGOPT(NoInline);
1939 PARSE_LANGOPT(AccessControl);
1940 PARSE_LANGOPT(CharIsSigned);
John Thompsona6fda122009-11-05 20:14:16 +00001941 PARSE_LANGOPT(ShortWChar);
Chris Lattnera4d71452010-06-26 21:25:03 +00001942 LangOpts.setGCMode((LangOptions::GCMode)Record[Idx++]);
1943 LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx++]);
Daniel Dunbarab8e2812009-09-21 04:16:19 +00001944 LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode)
Chris Lattnera4d71452010-06-26 21:25:03 +00001945 Record[Idx++]);
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001946 PARSE_LANGOPT(InstantiationDepth);
Nate Begemanb9e7e632009-06-25 23:01:11 +00001947 PARSE_LANGOPT(OpenCL);
Mike Stump9c276ae2009-12-12 01:27:46 +00001948 PARSE_LANGOPT(CatchUndefined);
1949 // FIXME: Missing ElideConstructors?!
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001950 #undef PARSE_LANGOPT
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001951
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00001952 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001953 }
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001954
1955 return false;
1956}
1957
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001958void PCHReader::ReadPreprocessedEntities() {
1959 ReadDefinedMacros();
1960}
1961
Douglas Gregor2cf26342009-04-09 22:27:44 +00001962/// \brief Read and return the type at the given offset.
1963///
1964/// This routine actually reads the record corresponding to the type
1965/// at the given offset in the bitstream. It is a helper routine for
1966/// GetType, which deals with reading type IDs.
1967QualType PCHReader::ReadTypeRecord(uint64_t Offset) {
Douglas Gregor0b748912009-04-14 21:18:50 +00001968 // Keep track of where we are in the stream, then jump back there
1969 // after reading this type.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001970 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00001971
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001972 ReadingKindTracker ReadingKind(Read_Type, *this);
1973
Douglas Gregord89275b2009-07-06 18:54:52 +00001974 // Note that we are loading a type record.
1975 LoadingTypeOrDecl Loading(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001976
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001977 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001978 RecordData Record;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001979 unsigned Code = DeclsCursor.ReadCode();
1980 switch ((pch::TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
Douglas Gregor6d473962009-04-15 22:00:08 +00001981 case pch::TYPE_EXT_QUAL: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001982 if (Record.size() != 2) {
1983 Error("Incorrect encoding of extended qualifier type");
1984 return QualType();
1985 }
Douglas Gregor6d473962009-04-15 22:00:08 +00001986 QualType Base = GetType(Record[0]);
John McCall0953e762009-09-24 19:53:00 +00001987 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]);
1988 return Context->getQualifiedType(Base, Quals);
Douglas Gregor6d473962009-04-15 22:00:08 +00001989 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00001990
Douglas Gregor2cf26342009-04-09 22:27:44 +00001991 case pch::TYPE_COMPLEX: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00001992 if (Record.size() != 1) {
1993 Error("Incorrect encoding of complex type");
1994 return QualType();
1995 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001996 QualType ElemType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001997 return Context->getComplexType(ElemType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001998 }
1999
2000 case pch::TYPE_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002001 if (Record.size() != 1) {
2002 Error("Incorrect encoding of pointer type");
2003 return QualType();
2004 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002005 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002006 return Context->getPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002007 }
2008
2009 case pch::TYPE_BLOCK_POINTER: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002010 if (Record.size() != 1) {
2011 Error("Incorrect encoding of block pointer type");
2012 return QualType();
2013 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002014 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002015 return Context->getBlockPointerType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002016 }
2017
2018 case pch::TYPE_LVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002019 if (Record.size() != 1) {
2020 Error("Incorrect encoding of lvalue reference type");
2021 return QualType();
2022 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002023 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002024 return Context->getLValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002025 }
2026
2027 case pch::TYPE_RVALUE_REFERENCE: {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002028 if (Record.size() != 1) {
2029 Error("Incorrect encoding of rvalue reference type");
2030 return QualType();
2031 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002032 QualType PointeeType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002033 return Context->getRValueReferenceType(PointeeType);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002034 }
2035
2036 case pch::TYPE_MEMBER_POINTER: {
Argyrios Kyrtzidis240437b2010-07-02 11:55:15 +00002037 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002038 Error("Incorrect encoding of member pointer type");
2039 return QualType();
2040 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002041 QualType PointeeType = GetType(Record[0]);
2042 QualType ClassType = GetType(Record[1]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002043 return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregor2cf26342009-04-09 22:27:44 +00002044 }
2045
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002046 case pch::TYPE_CONSTANT_ARRAY: {
2047 QualType ElementType = GetType(Record[0]);
2048 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2049 unsigned IndexTypeQuals = Record[2];
2050 unsigned Idx = 3;
2051 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002052 return Context->getConstantArrayType(ElementType, Size,
2053 ASM, IndexTypeQuals);
2054 }
2055
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002056 case pch::TYPE_INCOMPLETE_ARRAY: {
2057 QualType ElementType = GetType(Record[0]);
2058 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2059 unsigned IndexTypeQuals = Record[2];
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002060 return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002061 }
2062
2063 case pch::TYPE_VARIABLE_ARRAY: {
Douglas Gregor0b748912009-04-14 21:18:50 +00002064 QualType ElementType = GetType(Record[0]);
2065 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2066 unsigned IndexTypeQuals = Record[2];
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002067 SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]);
2068 SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]);
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002069 return Context->getVariableArrayType(ElementType, ReadExpr(),
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +00002070 ASM, IndexTypeQuals,
2071 SourceRange(LBLoc, RBLoc));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002072 }
2073
2074 case pch::TYPE_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00002075 if (Record.size() != 3) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002076 Error("incorrect encoding of vector type in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002077 return QualType();
2078 }
2079
2080 QualType ElementType = GetType(Record[0]);
2081 unsigned NumElements = Record[1];
Chris Lattner788b0fd2010-06-23 06:00:24 +00002082 unsigned AltiVecSpec = Record[2];
2083 return Context->getVectorType(ElementType, NumElements,
2084 (VectorType::AltiVecSpecific)AltiVecSpec);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002085 }
2086
2087 case pch::TYPE_EXT_VECTOR: {
Chris Lattner788b0fd2010-06-23 06:00:24 +00002088 if (Record.size() != 3) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002089 Error("incorrect encoding of extended vector type in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002090 return QualType();
2091 }
2092
2093 QualType ElementType = GetType(Record[0]);
2094 unsigned NumElements = Record[1];
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002095 return Context->getExtVectorType(ElementType, NumElements);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002096 }
2097
2098 case pch::TYPE_FUNCTION_NO_PROTO: {
Rafael Espindola425ef722010-03-30 22:15:11 +00002099 if (Record.size() != 4) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002100 Error("incorrect encoding of no-proto function type");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002101 return QualType();
2102 }
2103 QualType ResultType = GetType(Record[0]);
Rafael Espindola425ef722010-03-30 22:15:11 +00002104 FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]);
Rafael Espindola264ba482010-03-30 20:24:48 +00002105 return Context->getFunctionNoProtoType(ResultType, Info);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002106 }
2107
2108 case pch::TYPE_FUNCTION_PROTO: {
2109 QualType ResultType = GetType(Record[0]);
Douglas Gregor91236662009-12-22 18:11:50 +00002110 bool NoReturn = Record[1];
Rafael Espindola425ef722010-03-30 22:15:11 +00002111 unsigned RegParm = Record[2];
2112 CallingConv CallConv = (CallingConv)Record[3];
2113 unsigned Idx = 4;
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002114 unsigned NumParams = Record[Idx++];
2115 llvm::SmallVector<QualType, 16> ParamTypes;
2116 for (unsigned I = 0; I != NumParams; ++I)
2117 ParamTypes.push_back(GetType(Record[Idx++]));
2118 bool isVariadic = Record[Idx++];
2119 unsigned Quals = Record[Idx++];
Sebastian Redl465226e2009-05-27 22:11:52 +00002120 bool hasExceptionSpec = Record[Idx++];
2121 bool hasAnyExceptionSpec = Record[Idx++];
2122 unsigned NumExceptions = Record[Idx++];
2123 llvm::SmallVector<QualType, 2> Exceptions;
2124 for (unsigned I = 0; I != NumExceptions; ++I)
2125 Exceptions.push_back(GetType(Record[Idx++]));
Jay Foadbeaaccd2009-05-21 09:52:38 +00002126 return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams,
Sebastian Redl465226e2009-05-27 22:11:52 +00002127 isVariadic, Quals, hasExceptionSpec,
2128 hasAnyExceptionSpec, NumExceptions,
Rafael Espindola264ba482010-03-30 20:24:48 +00002129 Exceptions.data(),
Rafael Espindola425ef722010-03-30 22:15:11 +00002130 FunctionType::ExtInfo(NoReturn, RegParm,
2131 CallConv));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002132 }
2133
John McCalled976492009-12-04 22:46:56 +00002134 case pch::TYPE_UNRESOLVED_USING:
2135 return Context->getTypeDeclType(
2136 cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0])));
2137
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002138 case pch::TYPE_TYPEDEF: {
2139 if (Record.size() != 2) {
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002140 Error("incorrect encoding of typedef type");
2141 return QualType();
2142 }
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002143 TypedefDecl *Decl = cast<TypedefDecl>(GetDecl(Record[0]));
2144 QualType Canonical = GetType(Record[1]);
2145 return Context->getTypedefType(Decl, Canonical);
2146 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002147
2148 case pch::TYPE_TYPEOF_EXPR:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002149 return Context->getTypeOfExprType(ReadExpr());
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002150
2151 case pch::TYPE_TYPEOF: {
2152 if (Record.size() != 1) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002153 Error("incorrect encoding of typeof(type) in PCH file");
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002154 return QualType();
2155 }
2156 QualType UnderlyingType = GetType(Record[0]);
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002157 return Context->getTypeOfType(UnderlyingType);
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002158 }
Mike Stump1eb44332009-09-09 15:08:12 +00002159
Anders Carlsson395b4752009-06-24 19:06:50 +00002160 case pch::TYPE_DECLTYPE:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002161 return Context->getDecltypeType(ReadExpr());
Anders Carlsson395b4752009-06-24 19:06:50 +00002162
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002163 case pch::TYPE_RECORD:
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002164 if (Record.size() != 1) {
2165 Error("incorrect encoding of record type");
2166 return QualType();
2167 }
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002168 return Context->getRecordType(cast<RecordDecl>(GetDecl(Record[0])));
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002169
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002170 case pch::TYPE_ENUM:
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002171 if (Record.size() != 1) {
2172 Error("incorrect encoding of enum type");
2173 return QualType();
2174 }
Argyrios Kyrtzidis400f5122010-07-04 21:44:47 +00002175 return Context->getEnumType(cast<EnumDecl>(GetDecl(Record[0])));
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002176
John McCall7da24312009-09-05 00:15:47 +00002177 case pch::TYPE_ELABORATED: {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00002178 unsigned Idx = 0;
2179 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2180 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2181 QualType NamedType = GetType(Record[Idx++]);
2182 return Context->getElaboratedType(Keyword, NNS, NamedType);
John McCall7da24312009-09-05 00:15:47 +00002183 }
2184
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002185 case pch::TYPE_OBJC_INTERFACE: {
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002186 unsigned Idx = 0;
2187 ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
John McCallc12c5bb2010-05-15 11:32:37 +00002188 return Context->getObjCInterfaceType(ItfD);
2189 }
2190
2191 case pch::TYPE_OBJC_OBJECT: {
2192 unsigned Idx = 0;
2193 QualType Base = GetType(Record[Idx++]);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002194 unsigned NumProtos = Record[Idx++];
2195 llvm::SmallVector<ObjCProtocolDecl*, 4> Protos;
2196 for (unsigned I = 0; I != NumProtos; ++I)
2197 Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++])));
John McCallc12c5bb2010-05-15 11:32:37 +00002198 return Context->getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattnerc6fa4452009-04-22 06:45:28 +00002199 }
Douglas Gregorb4e715b2009-04-13 20:46:52 +00002200
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00002201 case pch::TYPE_OBJC_OBJECT_POINTER: {
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00002202 unsigned Idx = 0;
John McCallc12c5bb2010-05-15 11:32:37 +00002203 QualType Pointee = GetType(Record[Idx++]);
2204 return Context->getObjCObjectPointerType(Pointee);
Chris Lattnerd7a3fcd2009-04-22 06:40:03 +00002205 }
Argyrios Kyrtzidis24fab412009-09-29 19:42:55 +00002206
John McCall49a832b2009-10-18 09:09:24 +00002207 case pch::TYPE_SUBST_TEMPLATE_TYPE_PARM: {
2208 unsigned Idx = 0;
2209 QualType Parm = GetType(Record[Idx++]);
2210 QualType Replacement = GetType(Record[Idx++]);
2211 return
2212 Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
2213 Replacement);
2214 }
John McCall3cb0ebd2010-03-10 03:28:59 +00002215
2216 case pch::TYPE_INJECTED_CLASS_NAME: {
2217 CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0]));
2218 QualType TST = GetType(Record[1]); // probably derivable
Argyrios Kyrtzidis43921b52010-07-02 11:55:20 +00002219 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
2220 // for PCH reading, too much interdependencies.
2221 return
2222 QualType(new (*Context, TypeAlignment) InjectedClassNameType(D, TST), 0);
John McCall3cb0ebd2010-03-10 03:28:59 +00002223 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00002224
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002225 case pch::TYPE_TEMPLATE_TYPE_PARM: {
2226 unsigned Idx = 0;
2227 unsigned Depth = Record[Idx++];
2228 unsigned Index = Record[Idx++];
2229 bool Pack = Record[Idx++];
2230 IdentifierInfo *Name = GetIdentifierInfo(Record, Idx);
2231 return Context->getTemplateTypeParmType(Depth, Index, Pack, Name);
2232 }
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002233
2234 case pch::TYPE_DEPENDENT_NAME: {
2235 unsigned Idx = 0;
2236 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2237 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2238 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
Argyrios Kyrtzidisf48d45e2010-07-02 11:55:24 +00002239 QualType Canon = GetType(Record[Idx++]);
2240 return Context->getDependentNameType(Keyword, NNS, Name, Canon);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002241 }
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +00002242
2243 case pch::TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
2244 unsigned Idx = 0;
2245 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2246 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2247 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2248 unsigned NumArgs = Record[Idx++];
2249 llvm::SmallVector<TemplateArgument, 8> Args;
2250 Args.reserve(NumArgs);
2251 while (NumArgs--)
2252 Args.push_back(ReadTemplateArgument(Record, Idx));
2253 return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name,
2254 Args.size(), Args.data());
2255 }
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +00002256
2257 case pch::TYPE_DEPENDENT_SIZED_ARRAY: {
2258 unsigned Idx = 0;
2259
2260 // ArrayType
2261 QualType ElementType = GetType(Record[Idx++]);
2262 ArrayType::ArraySizeModifier ASM
2263 = (ArrayType::ArraySizeModifier)Record[Idx++];
2264 unsigned IndexTypeQuals = Record[Idx++];
2265
2266 // DependentSizedArrayType
2267 Expr *NumElts = ReadExpr();
2268 SourceRange Brackets = ReadSourceRange(Record, Idx);
2269
2270 return Context->getDependentSizedArrayType(ElementType, NumElts, ASM,
2271 IndexTypeQuals, Brackets);
2272 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00002273
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002274 case pch::TYPE_TEMPLATE_SPECIALIZATION: {
2275 unsigned Idx = 0;
2276 TemplateName Name = ReadTemplateName(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002277 llvm::SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00002278 ReadTemplateArgumentList(Args, Record, Idx);
2279 QualType Canon = GetType(Record[Idx++]);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +00002280 if (Canon.isNull())
2281 return Context->getCanonicalTemplateSpecializationType(Name, Args.data(),
2282 Args.size());
2283 else
2284 return Context->getTemplateSpecializationType(Name, Args.data(),
2285 Args.size(), Canon);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00002286 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002287 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002288 // Suppress a GCC warning
2289 return QualType();
2290}
2291
John McCalla1ee0c52009-10-16 21:56:05 +00002292namespace {
2293
2294class TypeLocReader : public TypeLocVisitor<TypeLocReader> {
2295 PCHReader &Reader;
2296 const PCHReader::RecordData &Record;
2297 unsigned &Idx;
2298
2299public:
2300 TypeLocReader(PCHReader &Reader, const PCHReader::RecordData &Record,
2301 unsigned &Idx)
2302 : Reader(Reader), Record(Record), Idx(Idx) { }
2303
John McCall51bd8032009-10-18 01:05:36 +00002304 // We want compile-time assurance that we've enumerated all of
2305 // these, so unfortunately we have to declare them first, then
2306 // define them out-of-line.
2307#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +00002308#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +00002309 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00002310#include "clang/AST/TypeLocNodes.def"
2311
John McCall51bd8032009-10-18 01:05:36 +00002312 void VisitFunctionTypeLoc(FunctionTypeLoc);
2313 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCalla1ee0c52009-10-16 21:56:05 +00002314};
2315
2316}
2317
John McCall51bd8032009-10-18 01:05:36 +00002318void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCalla1ee0c52009-10-16 21:56:05 +00002319 // nothing to do
2320}
John McCall51bd8032009-10-18 01:05:36 +00002321void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorddf889a2010-01-18 18:04:31 +00002322 TL.setBuiltinLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2323 if (TL.needsExtraLocalData()) {
2324 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
2325 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
2326 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
2327 TL.setModeAttr(Record[Idx++]);
2328 }
John McCalla1ee0c52009-10-16 21:56:05 +00002329}
John McCall51bd8032009-10-18 01:05:36 +00002330void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
2331 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002332}
John McCall51bd8032009-10-18 01:05:36 +00002333void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
2334 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002335}
John McCall51bd8032009-10-18 01:05:36 +00002336void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
2337 TL.setCaretLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002338}
John McCall51bd8032009-10-18 01:05:36 +00002339void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
2340 TL.setAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002341}
John McCall51bd8032009-10-18 01:05:36 +00002342void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
2343 TL.setAmpAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002344}
John McCall51bd8032009-10-18 01:05:36 +00002345void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
2346 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002347}
John McCall51bd8032009-10-18 01:05:36 +00002348void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
2349 TL.setLBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2350 TL.setRBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002351 if (Record[Idx++])
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002352 TL.setSizeExpr(Reader.ReadExpr());
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002353 else
John McCall51bd8032009-10-18 01:05:36 +00002354 TL.setSizeExpr(0);
2355}
2356void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
2357 VisitArrayTypeLoc(TL);
2358}
2359void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
2360 VisitArrayTypeLoc(TL);
2361}
2362void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
2363 VisitArrayTypeLoc(TL);
2364}
2365void TypeLocReader::VisitDependentSizedArrayTypeLoc(
2366 DependentSizedArrayTypeLoc TL) {
2367 VisitArrayTypeLoc(TL);
2368}
2369void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
2370 DependentSizedExtVectorTypeLoc TL) {
2371 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2372}
2373void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
2374 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2375}
2376void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
2377 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2378}
2379void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
2380 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2381 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2382 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
John McCall86acc2a2009-10-23 01:28:53 +00002383 TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
John McCall51bd8032009-10-18 01:05:36 +00002384 }
2385}
2386void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
2387 VisitFunctionTypeLoc(TL);
2388}
2389void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
2390 VisitFunctionTypeLoc(TL);
2391}
John McCalled976492009-12-04 22:46:56 +00002392void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
2393 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2394}
John McCall51bd8032009-10-18 01:05:36 +00002395void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
2396 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2397}
2398void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +00002399 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2400 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2401 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall51bd8032009-10-18 01:05:36 +00002402}
2403void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +00002404 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2405 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2406 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2407 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002408}
2409void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
2410 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2411}
2412void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
2413 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2414}
2415void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
2416 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2417}
John McCall51bd8032009-10-18 01:05:36 +00002418void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
2419 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2420}
John McCall49a832b2009-10-18 09:09:24 +00002421void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
2422 SubstTemplateTypeParmTypeLoc TL) {
2423 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2424}
John McCall51bd8032009-10-18 01:05:36 +00002425void TypeLocReader::VisitTemplateSpecializationTypeLoc(
2426 TemplateSpecializationTypeLoc TL) {
John McCall833ca992009-10-29 08:12:44 +00002427 TL.setTemplateNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2428 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2429 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2430 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
2431 TL.setArgLocInfo(i,
2432 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(i).getKind(),
2433 Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002434}
Abramo Bagnara465d41b2010-05-11 21:36:43 +00002435void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002436 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2437 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002438}
John McCall3cb0ebd2010-03-10 03:28:59 +00002439void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
2440 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2441}
Douglas Gregor4714c122010-03-31 17:34:00 +00002442void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +00002443 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2444 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall51bd8032009-10-18 01:05:36 +00002445 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2446}
John McCall33500952010-06-11 00:33:02 +00002447void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
2448 DependentTemplateSpecializationTypeLoc TL) {
2449 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2450 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
2451 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2452 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2453 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2454 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
2455 TL.setArgLocInfo(I,
2456 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(I).getKind(),
2457 Record, Idx));
2458}
John McCall51bd8032009-10-18 01:05:36 +00002459void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
2460 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallc12c5bb2010-05-15 11:32:37 +00002461}
2462void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
2463 TL.setHasBaseTypeAsWritten(Record[Idx++]);
John McCall51bd8032009-10-18 01:05:36 +00002464 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2465 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2466 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
2467 TL.setProtocolLoc(i, SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCalla1ee0c52009-10-16 21:56:05 +00002468}
John McCall54e14c42009-10-22 22:37:11 +00002469void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
2470 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall54e14c42009-10-22 22:37:11 +00002471}
John McCalla1ee0c52009-10-16 21:56:05 +00002472
John McCalla93c9342009-12-07 02:54:59 +00002473TypeSourceInfo *PCHReader::GetTypeSourceInfo(const RecordData &Record,
John McCalla1ee0c52009-10-16 21:56:05 +00002474 unsigned &Idx) {
2475 QualType InfoTy = GetType(Record[Idx++]);
2476 if (InfoTy.isNull())
2477 return 0;
2478
John McCalla93c9342009-12-07 02:54:59 +00002479 TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy);
John McCalla1ee0c52009-10-16 21:56:05 +00002480 TypeLocReader TLR(*this, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +00002481 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCalla1ee0c52009-10-16 21:56:05 +00002482 TLR.Visit(TL);
John McCalla93c9342009-12-07 02:54:59 +00002483 return TInfo;
John McCalla1ee0c52009-10-16 21:56:05 +00002484}
Douglas Gregor2cf26342009-04-09 22:27:44 +00002485
Douglas Gregor8038d512009-04-10 17:25:41 +00002486QualType PCHReader::GetType(pch::TypeID ID) {
John McCall0953e762009-09-24 19:53:00 +00002487 unsigned FastQuals = ID & Qualifiers::FastMask;
2488 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002489
2490 if (Index < pch::NUM_PREDEF_TYPE_IDS) {
2491 QualType T;
2492 switch ((pch::PredefinedTypeIDs)Index) {
2493 case pch::PREDEF_TYPE_NULL_ID: return QualType();
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002494 case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break;
2495 case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002496
2497 case pch::PREDEF_TYPE_CHAR_U_ID:
2498 case pch::PREDEF_TYPE_CHAR_S_ID:
2499 // FIXME: Check that the signedness of CharTy is correct!
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002500 T = Context->CharTy;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002501 break;
2502
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002503 case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break;
2504 case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break;
2505 case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break;
2506 case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break;
2507 case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002508 case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break;
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002509 case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break;
2510 case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break;
2511 case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break;
2512 case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break;
2513 case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break;
2514 case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002515 case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break;
Chris Lattnerd1d64a02009-04-27 21:45:14 +00002516 case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break;
2517 case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break;
2518 case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break;
2519 case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break;
2520 case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002521 case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002522 case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break;
2523 case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break;
Steve Naroffde2e22d2009-07-15 18:40:39 +00002524 case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break;
2525 case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break;
Fariborz Jahanian13dcd002009-11-21 19:53:08 +00002526 case pch::PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002527 }
2528
2529 assert(!T.isNull() && "Unknown predefined type");
John McCall0953e762009-09-24 19:53:00 +00002530 return T.withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002531 }
2532
2533 Index -= pch::NUM_PREDEF_TYPE_IDS;
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002534 //assert(Index < TypesLoaded.size() && "Type index out-of-range");
John McCall0953e762009-09-24 19:53:00 +00002535 if (TypesLoaded[Index].isNull())
2536 TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]);
Mike Stump1eb44332009-09-09 15:08:12 +00002537
John McCall0953e762009-09-24 19:53:00 +00002538 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002539}
2540
John McCall833ca992009-10-29 08:12:44 +00002541TemplateArgumentLocInfo
2542PCHReader::GetTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
2543 const RecordData &Record,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002544 unsigned &Index) {
John McCall833ca992009-10-29 08:12:44 +00002545 switch (Kind) {
2546 case TemplateArgument::Expression:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002547 return ReadExpr();
John McCall833ca992009-10-29 08:12:44 +00002548 case TemplateArgument::Type:
John McCalla93c9342009-12-07 02:54:59 +00002549 return GetTypeSourceInfo(Record, Index);
Douglas Gregor788cd062009-11-11 01:00:40 +00002550 case TemplateArgument::Template: {
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002551 SourceRange QualifierRange = ReadSourceRange(Record, Index);
2552 SourceLocation TemplateNameLoc = ReadSourceLocation(Record, Index);
2553 return TemplateArgumentLocInfo(QualifierRange, TemplateNameLoc);
Douglas Gregor788cd062009-11-11 01:00:40 +00002554 }
John McCall833ca992009-10-29 08:12:44 +00002555 case TemplateArgument::Null:
2556 case TemplateArgument::Integral:
2557 case TemplateArgument::Declaration:
2558 case TemplateArgument::Pack:
2559 return TemplateArgumentLocInfo();
2560 }
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +00002561 llvm_unreachable("unexpected template argument loc");
John McCall833ca992009-10-29 08:12:44 +00002562 return TemplateArgumentLocInfo();
2563}
2564
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002565TemplateArgumentLoc
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002566PCHReader::ReadTemplateArgumentLoc(const RecordData &Record, unsigned &Index) {
2567 TemplateArgument Arg = ReadTemplateArgument(Record, Index);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002568
2569 if (Arg.getKind() == TemplateArgument::Expression) {
2570 if (Record[Index++]) // bool InfoHasSameExpr.
2571 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
2572 }
2573 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(Arg.getKind(),
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002574 Record, Index));
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002575}
2576
John McCall76bd1f32010-06-01 09:23:16 +00002577Decl *PCHReader::GetExternalDecl(uint32_t ID) {
2578 return GetDecl(ID);
2579}
2580
Douglas Gregor8038d512009-04-10 17:25:41 +00002581Decl *PCHReader::GetDecl(pch::DeclID ID) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002582 if (ID == 0)
2583 return 0;
2584
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002585 if (ID > DeclsLoaded.size()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002586 Error("declaration ID out-of-range for PCH file");
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002587 return 0;
2588 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002589
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002590 unsigned Index = ID - 1;
2591 if (!DeclsLoaded[Index])
2592 ReadDeclRecord(DeclOffsets[Index], Index);
2593
2594 return DeclsLoaded[Index];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002595}
2596
Chris Lattner887e2b32009-04-27 05:46:25 +00002597/// \brief Resolve the offset of a statement into a statement.
2598///
2599/// This operation will read a new statement from the external
2600/// source each time it is called, and is meant to be used via a
2601/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
John McCall76bd1f32010-06-01 09:23:16 +00002602Stmt *PCHReader::GetExternalDeclStmt(uint64_t Offset) {
Chris Lattnerda930612009-04-27 05:58:23 +00002603 // Since we know tha this statement is part of a decl, make sure to use the
2604 // decl cursor to read it.
2605 DeclsCursor.JumpToBit(Offset);
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002606 return ReadStmtFromStream(DeclsCursor);
Douglas Gregor250fc9c2009-04-18 00:07:54 +00002607}
2608
John McCall76bd1f32010-06-01 09:23:16 +00002609bool PCHReader::FindExternalLexicalDecls(const DeclContext *DC,
2610 llvm::SmallVectorImpl<Decl*> &Decls) {
Mike Stump1eb44332009-09-09 15:08:12 +00002611 assert(DC->hasExternalLexicalStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00002612 "DeclContext has no lexical decls in storage");
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002613
Douglas Gregor2cf26342009-04-09 22:27:44 +00002614 uint64_t Offset = DeclContextOffsets[DC].first;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002615 if (Offset == 0) {
2616 Error("DeclContext has no lexical decls in storage");
2617 return true;
2618 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002619
Douglas Gregor0b748912009-04-14 21:18:50 +00002620 // Keep track of where we are in the stream, then jump back there
2621 // after reading this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002622 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00002623
Douglas Gregor2cf26342009-04-09 22:27:44 +00002624 // Load the record containing all of the declarations lexically in
2625 // this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002626 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002627 RecordData Record;
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002628 unsigned Code = DeclsCursor.ReadCode();
2629 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002630 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
2631 Error("Expected lexical block");
2632 return true;
2633 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002634
2635 // Load all of the declaration IDs
John McCall76bd1f32010-06-01 09:23:16 +00002636 for (RecordData::iterator I = Record.begin(), E = Record.end(); I != E; ++I)
2637 Decls.push_back(GetDecl(*I));
Douglas Gregor25123082009-04-22 22:34:57 +00002638 ++NumLexicalDeclContextsRead;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002639 return false;
2640}
2641
John McCall76bd1f32010-06-01 09:23:16 +00002642DeclContext::lookup_result
2643PCHReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
2644 DeclarationName Name) {
Mike Stump1eb44332009-09-09 15:08:12 +00002645 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +00002646 "DeclContext has no visible decls in storage");
2647 uint64_t Offset = DeclContextOffsets[DC].second;
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002648 if (Offset == 0) {
2649 Error("DeclContext has no visible decls in storage");
John McCall76bd1f32010-06-01 09:23:16 +00002650 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2651 DeclContext::lookup_iterator());
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002652 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002653
Douglas Gregor0b748912009-04-14 21:18:50 +00002654 // Keep track of where we are in the stream, then jump back there
2655 // after reading this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002656 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregor0b748912009-04-14 21:18:50 +00002657
Douglas Gregor2cf26342009-04-09 22:27:44 +00002658 // Load the record containing all of the declarations visible in
2659 // this context.
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002660 DeclsCursor.JumpToBit(Offset);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002661 RecordData Record;
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002662 unsigned Code = DeclsCursor.ReadCode();
2663 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002664 if (RecCode != pch::DECL_CONTEXT_VISIBLE) {
2665 Error("Expected visible block");
John McCall76bd1f32010-06-01 09:23:16 +00002666 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2667 DeclContext::lookup_iterator());
Ted Kremenekd5d7b3f2010-03-18 00:56:54 +00002668 }
2669
John McCall76bd1f32010-06-01 09:23:16 +00002670 llvm::SmallVector<VisibleDeclaration, 64> Decls;
2671 if (Record.empty()) {
2672 SetExternalVisibleDecls(DC, Decls);
2673 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2674 DeclContext::lookup_iterator());
2675 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002676
2677 unsigned Idx = 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002678 while (Idx < Record.size()) {
2679 Decls.push_back(VisibleDeclaration());
2680 Decls.back().Name = ReadDeclarationName(Record, Idx);
2681
Douglas Gregor2cf26342009-04-09 22:27:44 +00002682 unsigned Size = Record[Idx++];
Chris Lattnerc47be9e2009-04-27 07:35:40 +00002683 llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002684 LoadedDecls.reserve(Size);
2685 for (unsigned I = 0; I < Size; ++I)
2686 LoadedDecls.push_back(Record[Idx++]);
2687 }
2688
Douglas Gregor25123082009-04-22 22:34:57 +00002689 ++NumVisibleDeclContextsRead;
John McCall76bd1f32010-06-01 09:23:16 +00002690
2691 SetExternalVisibleDecls(DC, Decls);
2692 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002693}
2694
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00002695void PCHReader::PassInterestingDeclsToConsumer() {
2696 assert(Consumer);
2697 while (!InterestingDecls.empty()) {
2698 DeclGroupRef DG(InterestingDecls.front());
2699 InterestingDecls.pop_front();
2700 Consumer->HandleTopLevelDecl(DG);
2701 }
2702}
2703
Douglas Gregorfdd01722009-04-14 00:24:19 +00002704void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregor0af2ca42009-04-22 19:09:20 +00002705 this->Consumer = Consumer;
2706
Douglas Gregorfdd01722009-04-14 00:24:19 +00002707 if (!Consumer)
2708 return;
2709
2710 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00002711 // Force deserialization of this decl, which will cause it to be queued for
2712 // passing to the consumer.
Daniel Dunbar04a0b502009-09-17 03:06:44 +00002713 GetDecl(ExternalDefinitions[I]);
Douglas Gregorfdd01722009-04-14 00:24:19 +00002714 }
Douglas Gregorc62a2fe2009-04-25 00:41:30 +00002715
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00002716 PassInterestingDeclsToConsumer();
Douglas Gregorfdd01722009-04-14 00:24:19 +00002717}
2718
Douglas Gregor2cf26342009-04-09 22:27:44 +00002719void PCHReader::PrintStats() {
2720 std::fprintf(stderr, "*** PCH Statistics:\n");
2721
Mike Stump1eb44332009-09-09 15:08:12 +00002722 unsigned NumTypesLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002723 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall0953e762009-09-24 19:53:00 +00002724 QualType());
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002725 unsigned NumDeclsLoaded
2726 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
2727 (Decl *)0);
2728 unsigned NumIdentifiersLoaded
2729 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
2730 IdentifiersLoaded.end(),
2731 (IdentifierInfo *)0);
Mike Stump1eb44332009-09-09 15:08:12 +00002732 unsigned NumSelectorsLoaded
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002733 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
2734 SelectorsLoaded.end(),
2735 Selector());
Douglas Gregor2d41cc12009-04-13 20:50:16 +00002736
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002737 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
2738 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002739 if (TotalNumSLocEntries)
2740 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
2741 NumSLocEntriesRead, TotalNumSLocEntries,
2742 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002743 if (!TypesLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002744 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002745 NumTypesLoaded, (unsigned)TypesLoaded.size(),
2746 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
2747 if (!DeclsLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002748 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002749 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
2750 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002751 if (!IdentifiersLoaded.empty())
Douglas Gregor83941df2009-04-25 17:48:32 +00002752 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002753 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
2754 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregor83941df2009-04-25 17:48:32 +00002755 if (TotalNumSelectors)
2756 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
2757 NumSelectorsLoaded, TotalNumSelectors,
2758 ((float)NumSelectorsLoaded/TotalNumSelectors * 100));
2759 if (TotalNumStatements)
2760 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
2761 NumStatementsRead, TotalNumStatements,
2762 ((float)NumStatementsRead/TotalNumStatements * 100));
2763 if (TotalNumMacros)
2764 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
2765 NumMacrosRead, TotalNumMacros,
2766 ((float)NumMacrosRead/TotalNumMacros * 100));
2767 if (TotalLexicalDeclContexts)
2768 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
2769 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
2770 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
2771 * 100));
2772 if (TotalVisibleDeclContexts)
2773 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
2774 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
2775 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
2776 * 100));
2777 if (TotalSelectorsInMethodPool) {
2778 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
2779 NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool,
2780 ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool
2781 * 100));
2782 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
2783 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002784 std::fprintf(stderr, "\n");
2785}
2786
Douglas Gregor668c1a42009-04-21 22:25:48 +00002787void PCHReader::InitializeSema(Sema &S) {
2788 SemaObj = &S;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002789 S.ExternalSource = this;
2790
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00002791 // Makes sure any declarations that were deserialized "too early"
2792 // still get added to the identifier's declaration chains.
2793 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
2794 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I]));
2795 SemaObj->IdResolver.AddDecl(PreloadedDecls[I]);
Douglas Gregor668c1a42009-04-21 22:25:48 +00002796 }
Douglas Gregor6cfc1a82009-04-22 21:15:06 +00002797 PreloadedDecls.clear();
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002798
2799 // If there were any tentative definitions, deserialize them and add
Sebastian Redle9d12b62010-01-31 22:27:38 +00002800 // them to Sema's list of tentative definitions.
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002801 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
2802 VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I]));
Sebastian Redle9d12b62010-01-31 22:27:38 +00002803 SemaObj->TentativeDefinitions.push_back(Var);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002804 }
Kovarththanan Rajaratnam6b82f642010-03-07 19:10:13 +00002805
Tanya Lattnere6bbc012010-02-12 00:07:30 +00002806 // If there were any unused static functions, deserialize them and add to
2807 // Sema's list of unused static functions.
2808 for (unsigned I = 0, N = UnusedStaticFuncs.size(); I != N; ++I) {
2809 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(UnusedStaticFuncs[I]));
2810 SemaObj->UnusedStaticFuncs.push_back(FD);
2811 }
Douglas Gregor14c22f22009-04-22 22:18:58 +00002812
2813 // If there were any locally-scoped external declarations,
2814 // deserialize them and add them to Sema's table of locally-scoped
2815 // external declarations.
2816 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
2817 NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
2818 SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D;
2819 }
Douglas Gregorb81c1702009-04-27 20:06:05 +00002820
2821 // If there were any ext_vector type declarations, deserialize them
2822 // and add them to Sema's vector of such declarations.
2823 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I)
2824 SemaObj->ExtVectorDecls.push_back(
2825 cast<TypedefDecl>(GetDecl(ExtVectorDecls[I])));
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002826
2827 // FIXME: Do VTable uses and dynamic classes deserialize too much ?
2828 // Can we cut them down before writing them ?
2829
2830 // If there were any VTable uses, deserialize the information and add it
2831 // to Sema's vector and map of VTable uses.
2832 unsigned Idx = 0;
2833 for (unsigned I = 0, N = VTableUses[Idx++]; I != N; ++I) {
2834 CXXRecordDecl *Class = cast<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
2835 SourceLocation Loc = ReadSourceLocation(VTableUses, Idx);
2836 bool DefinitionRequired = VTableUses[Idx++];
2837 SemaObj->VTableUses.push_back(std::make_pair(Class, Loc));
2838 SemaObj->VTablesUsed[Class] = DefinitionRequired;
2839 }
2840
2841 // If there were any dynamic classes declarations, deserialize them
2842 // and add them to Sema's vector of such declarations.
2843 for (unsigned I = 0, N = DynamicClasses.size(); I != N; ++I)
2844 SemaObj->DynamicClasses.push_back(
2845 cast<CXXRecordDecl>(GetDecl(DynamicClasses[I])));
Douglas Gregor668c1a42009-04-21 22:25:48 +00002846}
2847
2848IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) {
2849 // Try to find this name within our on-disk hash table
Mike Stump1eb44332009-09-09 15:08:12 +00002850 PCHIdentifierLookupTable *IdTable
Douglas Gregor668c1a42009-04-21 22:25:48 +00002851 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
2852 std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart);
2853 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key);
2854 if (Pos == IdTable->end())
2855 return 0;
2856
2857 // Dereferencing the iterator has the effect of building the
2858 // IdentifierInfo node and populating it with the various
2859 // declarations it needs.
2860 return *Pos;
2861}
2862
Mike Stump1eb44332009-09-09 15:08:12 +00002863std::pair<ObjCMethodList, ObjCMethodList>
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002864PCHReader::ReadMethodPool(Selector Sel) {
2865 if (!MethodPoolLookupTable)
2866 return std::pair<ObjCMethodList, ObjCMethodList>();
2867
2868 // Try to find this selector within our on-disk hash table.
2869 PCHMethodPoolLookupTable *PoolTable
2870 = (PCHMethodPoolLookupTable*)MethodPoolLookupTable;
2871 PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel);
Douglas Gregor83941df2009-04-25 17:48:32 +00002872 if (Pos == PoolTable->end()) {
2873 ++NumMethodPoolMisses;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002874 return std::pair<ObjCMethodList, ObjCMethodList>();;
Douglas Gregor83941df2009-04-25 17:48:32 +00002875 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002876
Douglas Gregor83941df2009-04-25 17:48:32 +00002877 ++NumMethodPoolSelectorsRead;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002878 return *Pos;
2879}
2880
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002881void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) {
Douglas Gregor668c1a42009-04-21 22:25:48 +00002882 assert(ID && "Non-zero identifier ID required");
Douglas Gregora02b1472009-04-28 21:53:25 +00002883 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002884 IdentifiersLoaded[ID - 1] = II;
Douglas Gregor668c1a42009-04-21 22:25:48 +00002885}
2886
Douglas Gregord89275b2009-07-06 18:54:52 +00002887/// \brief Set the globally-visible declarations associated with the given
2888/// identifier.
2889///
2890/// If the PCH reader is currently in a state where the given declaration IDs
Mike Stump1eb44332009-09-09 15:08:12 +00002891/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregord89275b2009-07-06 18:54:52 +00002892/// them.
2893///
2894/// \param II an IdentifierInfo that refers to one or more globally-visible
2895/// declarations.
2896///
2897/// \param DeclIDs the set of declaration IDs with the name @p II that are
2898/// visible at global scope.
2899///
2900/// \param Nonrecursive should be true to indicate that the caller knows that
2901/// this call is non-recursive, and therefore the globally-visible declarations
2902/// will not be placed onto the pending queue.
Mike Stump1eb44332009-09-09 15:08:12 +00002903void
2904PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Douglas Gregord89275b2009-07-06 18:54:52 +00002905 const llvm::SmallVectorImpl<uint32_t> &DeclIDs,
2906 bool Nonrecursive) {
2907 if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) {
2908 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
2909 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
2910 PII.II = II;
2911 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I)
2912 PII.DeclIDs.push_back(DeclIDs[I]);
2913 return;
2914 }
Mike Stump1eb44332009-09-09 15:08:12 +00002915
Douglas Gregord89275b2009-07-06 18:54:52 +00002916 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
2917 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
2918 if (SemaObj) {
2919 // Introduce this declaration into the translation-unit scope
2920 // and add it to the declaration chain for this identifier, so
2921 // that (unqualified) name lookup will find it.
2922 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D));
2923 SemaObj->IdResolver.AddDeclToIdentifierChain(II, D);
2924 } else {
2925 // Queue this declaration so that it will be added to the
2926 // translation unit scope and identifier's declaration chain
2927 // once a Sema object is known.
2928 PreloadedDecls.push_back(D);
2929 }
2930 }
2931}
2932
Chris Lattner7356a312009-04-11 21:15:38 +00002933IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00002934 if (ID == 0)
2935 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002936
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002937 if (!IdentifierTableData || IdentifiersLoaded.empty()) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002938 Error("no identifier table in PCH file");
Douglas Gregorafaf3082009-04-11 00:14:32 +00002939 return 0;
2940 }
Mike Stump1eb44332009-09-09 15:08:12 +00002941
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00002942 assert(PP && "Forgot to set Preprocessor ?");
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002943 if (!IdentifiersLoaded[ID - 1]) {
2944 uint32_t Offset = IdentifierOffsets[ID - 1];
Douglas Gregor17e1c5e2009-04-25 21:21:38 +00002945 const char *Str = IdentifierTableData + Offset;
Douglas Gregord6595a42009-04-25 21:04:17 +00002946
Douglas Gregor02fc7512009-04-28 20:01:51 +00002947 // All of the strings in the PCH file are preceded by a 16-bit
2948 // length. Extract that 16-bit length to avoid having to execute
2949 // strlen().
Ted Kremenek231bc0b2009-10-23 04:45:31 +00002950 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
2951 // unsigned integers. This is important to avoid integer overflow when
2952 // we cast them to 'unsigned'.
Ted Kremenekff1ea462009-10-23 03:57:22 +00002953 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregor02fc7512009-04-28 20:01:51 +00002954 unsigned StrLen = (((unsigned) StrLenPtr[0])
2955 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Mike Stump1eb44332009-09-09 15:08:12 +00002956 IdentifiersLoaded[ID - 1]
Kovarththanan Rajaratnam811f4262010-03-12 10:32:27 +00002957 = &PP->getIdentifierTable().get(Str, StrLen);
Douglas Gregorafaf3082009-04-11 00:14:32 +00002958 }
Mike Stump1eb44332009-09-09 15:08:12 +00002959
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00002960 return IdentifiersLoaded[ID - 1];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002961}
2962
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00002963void PCHReader::ReadSLocEntry(unsigned ID) {
2964 ReadSLocEntryRecord(ID);
2965}
2966
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002967Selector PCHReader::DecodeSelector(unsigned ID) {
2968 if (ID == 0)
2969 return Selector();
Mike Stump1eb44332009-09-09 15:08:12 +00002970
Douglas Gregora02b1472009-04-28 21:53:25 +00002971 if (!MethodPoolLookupTableData)
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002972 return Selector();
Douglas Gregor83941df2009-04-25 17:48:32 +00002973
2974 if (ID > TotalNumSelectors) {
Douglas Gregora02b1472009-04-28 21:53:25 +00002975 Error("selector ID out of range in PCH file");
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002976 return Selector();
2977 }
Douglas Gregor83941df2009-04-25 17:48:32 +00002978
2979 unsigned Index = ID - 1;
2980 if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) {
2981 // Load this selector from the selector table.
2982 // FIXME: endianness portability issues with SelectorOffsets table
2983 PCHMethodPoolLookupTrait Trait(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002984 SelectorsLoaded[Index]
Douglas Gregor83941df2009-04-25 17:48:32 +00002985 = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0);
2986 }
2987
2988 return SelectorsLoaded[Index];
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002989}
2990
John McCall76bd1f32010-06-01 09:23:16 +00002991Selector PCHReader::GetExternalSelector(uint32_t ID) {
Douglas Gregor719770d2010-04-06 17:30:22 +00002992 return DecodeSelector(ID);
2993}
2994
John McCall76bd1f32010-06-01 09:23:16 +00002995uint32_t PCHReader::GetNumExternalSelectors() {
Douglas Gregor719770d2010-04-06 17:30:22 +00002996 return TotalNumSelectors + 1;
2997}
2998
Mike Stump1eb44332009-09-09 15:08:12 +00002999DeclarationName
Douglas Gregor2cf26342009-04-09 22:27:44 +00003000PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
3001 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
3002 switch (Kind) {
3003 case DeclarationName::Identifier:
3004 return DeclarationName(GetIdentifierInfo(Record, Idx));
3005
3006 case DeclarationName::ObjCZeroArgSelector:
3007 case DeclarationName::ObjCOneArgSelector:
3008 case DeclarationName::ObjCMultiArgSelector:
Steve Naroffa7503a72009-04-23 15:15:40 +00003009 return DeclarationName(GetSelector(Record, Idx));
Douglas Gregor2cf26342009-04-09 22:27:44 +00003010
3011 case DeclarationName::CXXConstructorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00003012 return Context->DeclarationNames.getCXXConstructorName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00003013 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00003014
3015 case DeclarationName::CXXDestructorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00003016 return Context->DeclarationNames.getCXXDestructorName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00003017 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00003018
3019 case DeclarationName::CXXConversionFunctionName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00003020 return Context->DeclarationNames.getCXXConversionFunctionName(
Douglas Gregor50d62d12009-08-05 05:36:45 +00003021 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregor2cf26342009-04-09 22:27:44 +00003022
3023 case DeclarationName::CXXOperatorName:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00003024 return Context->DeclarationNames.getCXXOperatorName(
Douglas Gregor2cf26342009-04-09 22:27:44 +00003025 (OverloadedOperatorKind)Record[Idx++]);
3026
Sean Hunt3e518bd2009-11-29 07:34:05 +00003027 case DeclarationName::CXXLiteralOperatorName:
3028 return Context->DeclarationNames.getCXXLiteralOperatorName(
3029 GetIdentifierInfo(Record, Idx));
3030
Douglas Gregor2cf26342009-04-09 22:27:44 +00003031 case DeclarationName::CXXUsingDirective:
3032 return DeclarationName::getUsingDirectiveName();
3033 }
3034
3035 // Required to silence GCC warning
3036 return DeclarationName();
3037}
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003038
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003039TemplateName
3040PCHReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) {
3041 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
3042 switch (Kind) {
3043 case TemplateName::Template:
3044 return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++])));
3045
3046 case TemplateName::OverloadedTemplate: {
3047 unsigned size = Record[Idx++];
3048 UnresolvedSet<8> Decls;
3049 while (size--)
3050 Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++])));
3051
3052 return Context->getOverloadedTemplateName(Decls.begin(), Decls.end());
3053 }
3054
3055 case TemplateName::QualifiedTemplate: {
3056 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3057 bool hasTemplKeyword = Record[Idx++];
3058 TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++]));
3059 return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
3060 }
3061
3062 case TemplateName::DependentTemplate: {
3063 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
3064 if (Record[Idx++]) // isIdentifier
3065 return Context->getDependentTemplateName(NNS,
3066 GetIdentifierInfo(Record, Idx));
3067 return Context->getDependentTemplateName(NNS,
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00003068 (OverloadedOperatorKind)Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003069 }
3070 }
3071
3072 assert(0 && "Unhandled template name kind!");
3073 return TemplateName();
3074}
3075
3076TemplateArgument
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003077PCHReader::ReadTemplateArgument(const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003078 switch ((TemplateArgument::ArgKind)Record[Idx++]) {
3079 case TemplateArgument::Null:
3080 return TemplateArgument();
3081 case TemplateArgument::Type:
3082 return TemplateArgument(GetType(Record[Idx++]));
3083 case TemplateArgument::Declaration:
3084 return TemplateArgument(GetDecl(Record[Idx++]));
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +00003085 case TemplateArgument::Integral: {
3086 llvm::APSInt Value = ReadAPSInt(Record, Idx);
3087 QualType T = GetType(Record[Idx++]);
3088 return TemplateArgument(Value, T);
3089 }
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003090 case TemplateArgument::Template:
3091 return TemplateArgument(ReadTemplateName(Record, Idx));
3092 case TemplateArgument::Expression:
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003093 return TemplateArgument(ReadExpr());
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003094 case TemplateArgument::Pack: {
3095 unsigned NumArgs = Record[Idx++];
3096 llvm::SmallVector<TemplateArgument, 8> Args;
3097 Args.reserve(NumArgs);
3098 while (NumArgs--)
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00003099 Args.push_back(ReadTemplateArgument(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00003100 TemplateArgument TemplArg;
3101 TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true);
3102 return TemplArg;
3103 }
3104 }
3105
3106 assert(0 && "Unhandled template argument kind!");
3107 return TemplateArgument();
3108}
3109
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003110TemplateParameterList *
3111PCHReader::ReadTemplateParameterList(const RecordData &Record, unsigned &Idx) {
3112 SourceLocation TemplateLoc = ReadSourceLocation(Record, Idx);
3113 SourceLocation LAngleLoc = ReadSourceLocation(Record, Idx);
3114 SourceLocation RAngleLoc = ReadSourceLocation(Record, Idx);
3115
3116 unsigned NumParams = Record[Idx++];
3117 llvm::SmallVector<NamedDecl *, 16> Params;
3118 Params.reserve(NumParams);
3119 while (NumParams--)
3120 Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++])));
3121
3122 TemplateParameterList* TemplateParams =
3123 TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc,
3124 Params.data(), Params.size(), RAngleLoc);
3125 return TemplateParams;
3126}
3127
3128void
3129PCHReader::
3130ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs,
3131 const RecordData &Record, unsigned &Idx) {
3132 unsigned NumTemplateArgs = Record[Idx++];
3133 TemplArgs.reserve(NumTemplateArgs);
3134 while (NumTemplateArgs--)
3135 TemplArgs.push_back(ReadTemplateArgument(Record, Idx));
3136}
3137
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00003138/// \brief Read a UnresolvedSet structure.
3139void PCHReader::ReadUnresolvedSet(UnresolvedSetImpl &Set,
3140 const RecordData &Record, unsigned &Idx) {
3141 unsigned NumDecls = Record[Idx++];
3142 while (NumDecls--) {
3143 NamedDecl *D = cast<NamedDecl>(GetDecl(Record[Idx++]));
3144 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
3145 Set.addDecl(D, AS);
3146 }
3147}
3148
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00003149CXXBaseSpecifier
3150PCHReader::ReadCXXBaseSpecifier(const RecordData &Record, unsigned &Idx) {
3151 bool isVirtual = static_cast<bool>(Record[Idx++]);
3152 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
3153 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
3154 QualType T = GetType(Record[Idx++]);
3155 SourceRange Range = ReadSourceRange(Record, Idx);
3156 return CXXBaseSpecifier(Range, isVirtual, isBaseOfClass, AS, T);
3157}
3158
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003159NestedNameSpecifier *
3160PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) {
3161 unsigned N = Record[Idx++];
3162 NestedNameSpecifier *NNS = 0, *Prev = 0;
3163 for (unsigned I = 0; I != N; ++I) {
3164 NestedNameSpecifier::SpecifierKind Kind
3165 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
3166 switch (Kind) {
3167 case NestedNameSpecifier::Identifier: {
3168 IdentifierInfo *II = GetIdentifierInfo(Record, Idx);
3169 NNS = NestedNameSpecifier::Create(*Context, Prev, II);
3170 break;
3171 }
3172
3173 case NestedNameSpecifier::Namespace: {
3174 NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++]));
3175 NNS = NestedNameSpecifier::Create(*Context, Prev, NS);
3176 break;
3177 }
3178
3179 case NestedNameSpecifier::TypeSpec:
3180 case NestedNameSpecifier::TypeSpecWithTemplate: {
3181 Type *T = GetType(Record[Idx++]).getTypePtr();
3182 bool Template = Record[Idx++];
3183 NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T);
3184 break;
3185 }
3186
3187 case NestedNameSpecifier::Global: {
3188 NNS = NestedNameSpecifier::GlobalSpecifier(*Context);
3189 // No associated value, and there can't be a prefix.
3190 break;
3191 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003192 }
Argyrios Kyrtzidisd2bb2c02010-07-07 15:46:30 +00003193 Prev = NNS;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003194 }
3195 return NNS;
3196}
3197
3198SourceRange
3199PCHReader::ReadSourceRange(const RecordData &Record, unsigned &Idx) {
Daniel Dunbar8ee59392010-06-02 15:47:10 +00003200 SourceLocation beg = SourceLocation::getFromRawEncoding(Record[Idx++]);
3201 SourceLocation end = SourceLocation::getFromRawEncoding(Record[Idx++]);
3202 return SourceRange(beg, end);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003203}
3204
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00003205/// \brief Read an integral value
3206llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
3207 unsigned BitWidth = Record[Idx++];
3208 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
3209 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
3210 Idx += NumWords;
3211 return Result;
3212}
3213
3214/// \brief Read a signed integral value
3215llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
3216 bool isUnsigned = Record[Idx++];
3217 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
3218}
3219
Douglas Gregor17fc2232009-04-14 21:55:33 +00003220/// \brief Read a floating-point value
3221llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00003222 return llvm::APFloat(ReadAPInt(Record, Idx));
3223}
3224
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003225// \brief Read a string
3226std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) {
3227 unsigned Len = Record[Idx++];
Jay Foadbeaaccd2009-05-21 09:52:38 +00003228 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003229 Idx += Len;
3230 return Result;
3231}
3232
Chris Lattnerd2598362010-05-10 00:25:06 +00003233CXXTemporary *PCHReader::ReadCXXTemporary(const RecordData &Record,
3234 unsigned &Idx) {
3235 CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++]));
3236 return CXXTemporary::Create(*Context, Decl);
3237}
3238
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003239DiagnosticBuilder PCHReader::Diag(unsigned DiagID) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00003240 return Diag(SourceLocation(), DiagID);
3241}
3242
3243DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003244 return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00003245}
Douglas Gregor025452f2009-04-17 00:04:06 +00003246
Douglas Gregor668c1a42009-04-21 22:25:48 +00003247/// \brief Retrieve the identifier table associated with the
3248/// preprocessor.
3249IdentifierTable &PCHReader::getIdentifierTable() {
Argyrios Kyrtzidis11e51102009-06-19 00:03:23 +00003250 assert(PP && "Forgot to set Preprocessor ?");
3251 return PP->getIdentifierTable();
Douglas Gregor668c1a42009-04-21 22:25:48 +00003252}
3253
Douglas Gregor025452f2009-04-17 00:04:06 +00003254/// \brief Record that the given ID maps to the given switch-case
3255/// statement.
3256void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
3257 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
3258 SwitchCaseStmts[ID] = SC;
3259}
3260
3261/// \brief Retrieve the switch-case statement with the given ID.
3262SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) {
3263 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
3264 return SwitchCaseStmts[ID];
3265}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003266
3267/// \brief Record that the given label statement has been
3268/// deserialized and has the given ID.
3269void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) {
Mike Stump1eb44332009-09-09 15:08:12 +00003270 assert(LabelStmts.find(ID) == LabelStmts.end() &&
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003271 "Deserialized label twice");
3272 LabelStmts[ID] = S;
3273
3274 // If we've already seen any goto statements that point to this
3275 // label, resolve them now.
3276 typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter;
3277 std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID);
3278 for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto)
3279 Goto->second->setLabel(S);
3280 UnresolvedGotoStmts.erase(Gotos.first, Gotos.second);
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003281
3282 // If we've already seen any address-label statements that point to
3283 // this label, resolve them now.
3284 typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter;
Mike Stump1eb44332009-09-09 15:08:12 +00003285 std::pair<AddrLabelIter, AddrLabelIter> AddrLabels
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003286 = UnresolvedAddrLabelExprs.equal_range(ID);
Mike Stump1eb44332009-09-09 15:08:12 +00003287 for (AddrLabelIter AddrLabel = AddrLabels.first;
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003288 AddrLabel != AddrLabels.second; ++AddrLabel)
3289 AddrLabel->second->setLabel(S);
3290 UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second);
Douglas Gregor1de05fe2009-04-17 18:18:49 +00003291}
3292
3293/// \brief Set the label of the given statement to the label
3294/// identified by ID.
3295///
3296/// Depending on the order in which the label and other statements
3297/// referencing that label occur, this operation may complete
3298/// immediately (updating the statement) or it may queue the
3299/// statement to be back-patched later.
3300void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) {
3301 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3302 if (Label != LabelStmts.end()) {
3303 // We've already seen this label, so set the label of the goto and
3304 // we're done.
3305 S->setLabel(Label->second);
3306 } else {
3307 // We haven't seen this label yet, so add this goto to the set of
3308 // unresolved goto statements.
3309 UnresolvedGotoStmts.insert(std::make_pair(ID, S));
3310 }
3311}
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00003312
3313/// \brief Set the label of the given expression to the label
3314/// identified by ID.
3315///
3316/// Depending on the order in which the label and other statements
3317/// referencing that label occur, this operation may complete
3318/// immediately (updating the statement) or it may queue the
3319/// statement to be back-patched later.
3320void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) {
3321 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3322 if (Label != LabelStmts.end()) {
3323 // We've already seen this label, so set the label of the
3324 // label-address expression and we're done.
3325 S->setLabel(Label->second);
3326 } else {
3327 // We haven't seen this label yet, so add this label-address
3328 // expression to the set of unresolved label-address expressions.
3329 UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S));
3330 }
3331}
Douglas Gregord89275b2009-07-06 18:54:52 +00003332
3333
Mike Stump1eb44332009-09-09 15:08:12 +00003334PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader)
Douglas Gregord89275b2009-07-06 18:54:52 +00003335 : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) {
3336 Reader.CurrentlyLoadingTypeOrDecl = this;
3337}
3338
3339PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() {
3340 if (!Parent) {
3341 // If any identifiers with corresponding top-level declarations have
3342 // been loaded, load those declarations now.
3343 while (!Reader.PendingIdentifierInfos.empty()) {
3344 Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II,
3345 Reader.PendingIdentifierInfos.front().DeclIDs,
3346 true);
3347 Reader.PendingIdentifierInfos.pop_front();
3348 }
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00003349
3350 // We are not in recursive loading, so it's safe to pass the "interesting"
3351 // decls to the consumer.
3352 if (Reader.Consumer)
3353 Reader.PassInterestingDeclsToConsumer();
Douglas Gregord89275b2009-07-06 18:54:52 +00003354 }
3355
Mike Stump1eb44332009-09-09 15:08:12 +00003356 Reader.CurrentlyLoadingTypeOrDecl = Parent;
Douglas Gregord89275b2009-07-06 18:54:52 +00003357}