blob: 5bd3c0481a0e8d23e328e211ed9e480dd9a20e55 [file] [log] [blame]
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001//===--- PCHReader.cpp - Precompiled Headers Reader -------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the PCHReader class, which reads a precompiled header.
11//
12//===----------------------------------------------------------------------===//
Chris Lattner92ba5ff2009-04-27 05:14:47 +000013
Douglas Gregoref84c4b2009-04-09 22:27:44 +000014#include "clang/Frontend/PCHReader.h"
Douglas Gregor55abb232009-04-10 20:39:37 +000015#include "clang/Frontend/FrontendDiagnostic.h"
Daniel Dunbar732ef8a2009-11-11 23:58:53 +000016#include "clang/Frontend/Utils.h"
Douglas Gregora868bbd2009-04-21 22:25:48 +000017#include "../Sema/Sema.h" // FIXME: move Sema headers elsewhere
Douglas Gregor1a0d0b92009-04-14 00:24:19 +000018#include "clang/AST/ASTConsumer.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000019#include "clang/AST/ASTContext.h"
Douglas Gregorfeb84b02009-04-14 21:18:50 +000020#include "clang/AST/Expr.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000021#include "clang/AST/Type.h"
John McCall8f115c62009-10-16 21:56:05 +000022#include "clang/AST/TypeLocVisitor.h"
Chris Lattner34321bc2009-04-10 21:41:48 +000023#include "clang/Lex/MacroInfo.h"
Douglas Gregoraae92242010-03-19 21:51:54 +000024#include "clang/Lex/PreprocessingRecord.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000025#include "clang/Lex/Preprocessor.h"
Steve Naroff3fa455a2009-04-24 20:03:17 +000026#include "clang/Lex/HeaderSearch.h"
Douglas Gregora868bbd2009-04-21 22:25:48 +000027#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000028#include "clang/Basic/SourceManager.h"
Douglas Gregor4c7626e2009-04-13 16:31:14 +000029#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000030#include "clang/Basic/FileManager.h"
Douglas Gregorbfbde532009-04-10 21:16:55 +000031#include "clang/Basic/TargetInfo.h"
Douglas Gregord54f3a12009-10-05 21:07:28 +000032#include "clang/Basic/Version.h"
Daniel Dunbarf8502d52009-10-17 23:52:28 +000033#include "llvm/ADT/StringExtras.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000034#include "llvm/Bitcode/BitstreamReader.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000035#include "llvm/Support/MemoryBuffer.h"
John McCall0ad16662009-10-29 08:12:44 +000036#include "llvm/Support/ErrorHandling.h"
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +000037#include "llvm/System/Path.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000038#include <algorithm>
Douglas Gregorc379c072009-04-28 18:58:38 +000039#include <iterator>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000040#include <cstdio>
Douglas Gregorc5046832009-04-27 18:38:38 +000041#include <sys/stat.h>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000042using namespace clang;
43
44//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000045// PCH reader validator implementation
46//===----------------------------------------------------------------------===//
47
48PCHReaderListener::~PCHReaderListener() {}
49
50bool
51PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts) {
52 const LangOptions &PPLangOpts = PP.getLangOptions();
53#define PARSE_LANGOPT_BENIGN(Option)
54#define PARSE_LANGOPT_IMPORTANT(Option, DiagID) \
55 if (PPLangOpts.Option != LangOpts.Option) { \
56 Reader.Diag(DiagID) << LangOpts.Option << PPLangOpts.Option; \
57 return true; \
58 }
59
60 PARSE_LANGOPT_BENIGN(Trigraphs);
61 PARSE_LANGOPT_BENIGN(BCPLComment);
62 PARSE_LANGOPT_BENIGN(DollarIdents);
63 PARSE_LANGOPT_BENIGN(AsmPreprocessor);
64 PARSE_LANGOPT_IMPORTANT(GNUMode, diag::warn_pch_gnu_extensions);
Chandler Carruthe03aa552010-04-17 20:17:31 +000065 PARSE_LANGOPT_IMPORTANT(GNUKeywords, diag::warn_pch_gnu_keywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000066 PARSE_LANGOPT_BENIGN(ImplicitInt);
67 PARSE_LANGOPT_BENIGN(Digraphs);
68 PARSE_LANGOPT_BENIGN(HexFloats);
69 PARSE_LANGOPT_IMPORTANT(C99, diag::warn_pch_c99);
70 PARSE_LANGOPT_IMPORTANT(Microsoft, diag::warn_pch_microsoft_extensions);
71 PARSE_LANGOPT_IMPORTANT(CPlusPlus, diag::warn_pch_cplusplus);
72 PARSE_LANGOPT_IMPORTANT(CPlusPlus0x, diag::warn_pch_cplusplus0x);
73 PARSE_LANGOPT_BENIGN(CXXOperatorName);
74 PARSE_LANGOPT_IMPORTANT(ObjC1, diag::warn_pch_objective_c);
75 PARSE_LANGOPT_IMPORTANT(ObjC2, diag::warn_pch_objective_c2);
76 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI, diag::warn_pch_nonfragile_abi);
Fariborz Jahanian45878032010-02-09 19:31:38 +000077 PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI2, diag::warn_pch_nonfragile_abi2);
Fariborz Jahanian62c56022010-04-22 21:01:59 +000078 PARSE_LANGOPT_IMPORTANT(NoConstantCFStrings,
79 diag::warn_pch_no_constant_cfstrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000080 PARSE_LANGOPT_BENIGN(PascalStrings);
81 PARSE_LANGOPT_BENIGN(WritableStrings);
Mike Stump11289f42009-09-09 15:08:12 +000082 PARSE_LANGOPT_IMPORTANT(LaxVectorConversions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000083 diag::warn_pch_lax_vector_conversions);
Nate Begeman9d905792009-06-25 22:57:40 +000084 PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000085 PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +000086 PARSE_LANGOPT_IMPORTANT(SjLjExceptions, diag::warn_pch_sjlj_exceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000087 PARSE_LANGOPT_IMPORTANT(NeXTRuntime, diag::warn_pch_objc_runtime);
88 PARSE_LANGOPT_IMPORTANT(Freestanding, diag::warn_pch_freestanding);
89 PARSE_LANGOPT_IMPORTANT(NoBuiltin, diag::warn_pch_builtins);
Mike Stump11289f42009-09-09 15:08:12 +000090 PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000091 diag::warn_pch_thread_safe_statics);
Daniel Dunbara77eaeb2009-09-03 04:54:28 +000092 PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000093 PARSE_LANGOPT_IMPORTANT(Blocks, diag::warn_pch_blocks);
94 PARSE_LANGOPT_BENIGN(EmitAllDecls);
95 PARSE_LANGOPT_IMPORTANT(MathErrno, diag::warn_pch_math_errno);
96 PARSE_LANGOPT_IMPORTANT(OverflowChecking, diag::warn_pch_overflow_checking);
Mike Stump11289f42009-09-09 15:08:12 +000097 PARSE_LANGOPT_IMPORTANT(HeinousExtensions,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +000098 diag::warn_pch_heinous_extensions);
99 // FIXME: Most of the options below are benign if the macro wasn't
100 // used. Unfortunately, this means that a PCH compiled without
101 // optimization can't be used with optimization turned on, even
102 // though the only thing that changes is whether __OPTIMIZE__ was
103 // defined... but if __OPTIMIZE__ never showed up in the header, it
104 // doesn't matter. We could consider making this some special kind
105 // of check.
106 PARSE_LANGOPT_IMPORTANT(Optimize, diag::warn_pch_optimize);
107 PARSE_LANGOPT_IMPORTANT(OptimizeSize, diag::warn_pch_optimize_size);
108 PARSE_LANGOPT_IMPORTANT(Static, diag::warn_pch_static);
109 PARSE_LANGOPT_IMPORTANT(PICLevel, diag::warn_pch_pic_level);
110 PARSE_LANGOPT_IMPORTANT(GNUInline, diag::warn_pch_gnu_inline);
111 PARSE_LANGOPT_IMPORTANT(NoInline, diag::warn_pch_no_inline);
112 PARSE_LANGOPT_IMPORTANT(AccessControl, diag::warn_pch_access_control);
113 PARSE_LANGOPT_IMPORTANT(CharIsSigned, diag::warn_pch_char_signed);
John Thompsoned4e2952009-11-05 20:14:16 +0000114 PARSE_LANGOPT_IMPORTANT(ShortWChar, diag::warn_pch_short_wchar);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000115 if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) {
Mike Stump11289f42009-09-09 15:08:12 +0000116 Reader.Diag(diag::warn_pch_gc_mode)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000117 << LangOpts.getGCMode() << PPLangOpts.getGCMode();
118 return true;
119 }
120 PARSE_LANGOPT_BENIGN(getVisibilityMode());
Daniel Dunbar143021e2009-09-21 04:16:19 +0000121 PARSE_LANGOPT_IMPORTANT(getStackProtectorMode(),
122 diag::warn_pch_stack_protector);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000123 PARSE_LANGOPT_BENIGN(InstantiationDepth);
Nate Begeman9d905792009-06-25 22:57:40 +0000124 PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl);
Mike Stumpd9546382009-12-12 01:27:46 +0000125 PARSE_LANGOPT_BENIGN(CatchUndefined);
Daniel Dunbar143021e2009-09-21 04:16:19 +0000126 PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_pch_elide_constructors);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +0000127#undef PARSE_LANGOPT_IMPORTANT
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000128#undef PARSE_LANGOPT_BENIGN
129
130 return false;
131}
132
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000133bool PCHValidator::ReadTargetTriple(llvm::StringRef Triple) {
134 if (Triple == PP.getTargetInfo().getTriple().str())
135 return false;
136
137 Reader.Diag(diag::warn_pch_target_triple)
138 << Triple << PP.getTargetInfo().getTriple().str();
139 return true;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000140}
141
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000142bool PCHValidator::ReadPredefinesBuffer(llvm::StringRef PCHPredef,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000143 FileID PCHBufferID,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000144 llvm::StringRef OriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000145 std::string &SuggestedPredefines) {
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000146 // We are in the context of an implicit include, so the predefines buffer will
147 // have a #include entry for the PCH file itself (as normalized by the
148 // preprocessor initialization). Find it and skip over it in the checking
149 // below.
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000150 llvm::SmallString<256> PCHInclude;
151 PCHInclude += "#include \"";
Daniel Dunbar732ef8a2009-11-11 23:58:53 +0000152 PCHInclude += NormalizeDashIncludePath(OriginalFileName);
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000153 PCHInclude += "\"\n";
154 std::pair<llvm::StringRef,llvm::StringRef> Split =
155 llvm::StringRef(PP.getPredefines()).split(PCHInclude.str());
156 llvm::StringRef Left = Split.first, Right = Split.second;
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000157 if (Left == PP.getPredefines()) {
158 Error("Missing PCH include entry!");
159 return true;
160 }
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000161
162 // If the predefines is equal to the joined left and right halves, we're done!
163 if (Left.size() + Right.size() == PCHPredef.size() &&
164 PCHPredef.startswith(Left) && PCHPredef.endswith(Right))
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000165 return false;
166
167 SourceManager &SourceMgr = PP.getSourceManager();
Mike Stump11289f42009-09-09 15:08:12 +0000168
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000169 // The predefines buffers are different. Determine what the differences are,
170 // and whether they require us to reject the PCH file.
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000171 llvm::SmallVector<llvm::StringRef, 8> PCHLines;
172 PCHPredef.split(PCHLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
173
174 llvm::SmallVector<llvm::StringRef, 8> CmdLineLines;
175 Left.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
176 Right.split(CmdLineLines, "\n", /*MaxSplit=*/-1, /*KeepEmpty=*/false);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000177
Daniel Dunbar499baed2009-11-11 05:26:28 +0000178 // Sort both sets of predefined buffer lines, since we allow some extra
179 // definitions and they may appear at any point in the output.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000180 std::sort(CmdLineLines.begin(), CmdLineLines.end());
181 std::sort(PCHLines.begin(), PCHLines.end());
182
Daniel Dunbar499baed2009-11-11 05:26:28 +0000183 // Determine which predefines that were used to build the PCH file are missing
184 // from the command line.
185 std::vector<llvm::StringRef> MissingPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000186 std::set_difference(PCHLines.begin(), PCHLines.end(),
187 CmdLineLines.begin(), CmdLineLines.end(),
188 std::back_inserter(MissingPredefines));
189
190 bool MissingDefines = false;
191 bool ConflictingDefines = false;
192 for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000193 llvm::StringRef Missing = MissingPredefines[I];
194 if (!Missing.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000195 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
196 return true;
197 }
Mike Stump11289f42009-09-09 15:08:12 +0000198
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000199 // This is a macro definition. Determine the name of the macro we're
200 // defining.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000201 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000202 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000203 = Missing.find_first_of("( \n\r", StartOfMacroName);
204 assert(EndOfMacroName != std::string::npos &&
205 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000206 llvm::StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000207
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000208 // Determine whether this macro was given a different definition on the
209 // command line.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000210 std::string MacroDefStart = "#define " + MacroName.str();
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000211 std::string::size_type MacroDefLen = MacroDefStart.size();
Daniel Dunbar045f917e2009-11-13 16:46:11 +0000212 llvm::SmallVector<llvm::StringRef, 8>::iterator ConflictPos
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000213 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
214 MacroDefStart);
215 for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) {
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000216 if (!ConflictPos->startswith(MacroDefStart)) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000217 // Different macro; we're done.
218 ConflictPos = CmdLineLines.end();
Mike Stump11289f42009-09-09 15:08:12 +0000219 break;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000220 }
Mike Stump11289f42009-09-09 15:08:12 +0000221
222 assert(ConflictPos->size() > MacroDefLen &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000223 "Invalid #define in predefines buffer?");
Mike Stump11289f42009-09-09 15:08:12 +0000224 if ((*ConflictPos)[MacroDefLen] != ' ' &&
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000225 (*ConflictPos)[MacroDefLen] != '(')
226 continue; // Longer macro name; keep trying.
Mike Stump11289f42009-09-09 15:08:12 +0000227
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000228 // We found a conflicting macro definition.
229 break;
230 }
Mike Stump11289f42009-09-09 15:08:12 +0000231
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000232 if (ConflictPos != CmdLineLines.end()) {
233 Reader.Diag(diag::warn_cmdline_conflicting_macro_def)
234 << MacroName;
235
236 // Show the definition of this macro within the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000237 llvm::StringRef::size_type Offset = PCHPredef.find(Missing);
238 assert(Offset != llvm::StringRef::npos && "Unable to find macro!");
239 SourceLocation PCHMissingLoc = SourceMgr.getLocForStartOfFile(PCHBufferID)
240 .getFileLocWithOffset(Offset);
241 Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) << MacroName;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000242
243 ConflictingDefines = true;
244 continue;
245 }
Mike Stump11289f42009-09-09 15:08:12 +0000246
Daniel Dunbar8665c7e2009-11-11 03:45:59 +0000247 // If the macro doesn't conflict, then we'll just pick up the macro
248 // definition from the PCH file. Warn the user that they made a mistake.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000249 if (ConflictingDefines)
250 continue; // Don't complain if there are already conflicting defs
Mike Stump11289f42009-09-09 15:08:12 +0000251
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000252 if (!MissingDefines) {
253 Reader.Diag(diag::warn_cmdline_missing_macro_defs);
254 MissingDefines = true;
255 }
256
257 // Show the definition of this macro within the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000258 llvm::StringRef::size_type Offset = PCHPredef.find(Missing);
259 assert(Offset != llvm::StringRef::npos && "Unable to find macro!");
260 SourceLocation PCHMissingLoc = SourceMgr.getLocForStartOfFile(PCHBufferID)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000261 .getFileLocWithOffset(Offset);
262 Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch);
263 }
Mike Stump11289f42009-09-09 15:08:12 +0000264
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000265 if (ConflictingDefines)
266 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000267
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000268 // Determine what predefines were introduced based on command-line
269 // parameters that were not present when building the PCH
270 // file. Extra #defines are okay, so long as the identifiers being
271 // defined were not used within the precompiled header.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000272 std::vector<llvm::StringRef> ExtraPredefines;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000273 std::set_difference(CmdLineLines.begin(), CmdLineLines.end(),
274 PCHLines.begin(), PCHLines.end(),
Mike Stump11289f42009-09-09 15:08:12 +0000275 std::back_inserter(ExtraPredefines));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000276 for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) {
Daniel Dunbar499baed2009-11-11 05:26:28 +0000277 llvm::StringRef &Extra = ExtraPredefines[I];
278 if (!Extra.startswith("#define ")) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000279 Reader.Diag(diag::warn_pch_compiler_options_mismatch);
280 return true;
281 }
282
283 // This is an extra macro definition. Determine the name of the
284 // macro we're defining.
285 std::string::size_type StartOfMacroName = strlen("#define ");
Mike Stump11289f42009-09-09 15:08:12 +0000286 std::string::size_type EndOfMacroName
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000287 = Extra.find_first_of("( \n\r", StartOfMacroName);
288 assert(EndOfMacroName != std::string::npos &&
289 "Couldn't find the end of the macro name");
Daniel Dunbar499baed2009-11-11 05:26:28 +0000290 llvm::StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000291
292 // Check whether this name was used somewhere in the PCH file. If
293 // so, defining it as a macro could change behavior, so we reject
294 // the PCH file.
Daniel Dunbar499baed2009-11-11 05:26:28 +0000295 if (IdentifierInfo *II = Reader.get(MacroName)) {
Daniel Dunbar045c92f2009-11-11 00:52:00 +0000296 Reader.Diag(diag::warn_macro_name_used_in_pch) << II;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000297 return true;
298 }
299
300 // Add this definition to the suggested predefines buffer.
301 SuggestedPredefines += Extra;
302 SuggestedPredefines += '\n';
303 }
304
305 // If we get here, it's because the predefines buffer had compatible
306 // contents. Accept the PCH file.
307 return false;
308}
309
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000310void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI,
311 unsigned ID) {
312 PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID);
313 ++NumHeaderInfos;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000314}
315
316void PCHValidator::ReadCounter(unsigned Value) {
317 PP.setCounterValue(Value);
318}
319
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000320//===----------------------------------------------------------------------===//
Douglas Gregora868bbd2009-04-21 22:25:48 +0000321// PCH reader implementation
322//===----------------------------------------------------------------------===//
323
Mike Stump11289f42009-09-09 15:08:12 +0000324PCHReader::PCHReader(Preprocessor &PP, ASTContext *Context,
325 const char *isysroot)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000326 : Listener(new PCHValidator(PP, *this)), SourceMgr(PP.getSourceManager()),
327 FileMgr(PP.getFileManager()), Diags(PP.getDiagnostics()),
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000328 SemaObj(0), PP(&PP), Context(Context), StatCache(0), Consumer(0),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000329 IdentifierTableData(0), IdentifierLookupTable(0),
330 IdentifierOffsets(0),
331 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
332 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000333 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregor9507d462010-03-19 22:13:20 +0000334 NumPreallocatedPreprocessingEntities(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000335 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump11289f42009-09-09 15:08:12 +0000336 NumSLocEntriesRead(0), NumStatementsRead(0),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000337 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000338 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump11289f42009-09-09 15:08:12 +0000339 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000340 RelocatablePCH = false;
341}
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000342
343PCHReader::PCHReader(SourceManager &SourceMgr, FileManager &FileMgr,
Mike Stump11289f42009-09-09 15:08:12 +0000344 Diagnostic &Diags, const char *isysroot)
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000345 : SourceMgr(SourceMgr), FileMgr(FileMgr), Diags(Diags),
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000346 SemaObj(0), PP(0), Context(0), StatCache(0), Consumer(0),
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000347 IdentifierTableData(0), IdentifierLookupTable(0),
348 IdentifierOffsets(0),
349 MethodPoolLookupTable(0), MethodPoolLookupTableData(0),
350 TotalSelectorsInMethodPool(0), SelectorOffsets(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000351 TotalNumSelectors(0), MacroDefinitionOffsets(0),
Douglas Gregor9507d462010-03-19 22:13:20 +0000352 NumPreallocatedPreprocessingEntities(0),
Douglas Gregoraae92242010-03-19 21:51:54 +0000353 isysroot(isysroot), NumStatHits(0), NumStatMisses(0),
Mike Stump11289f42009-09-09 15:08:12 +0000354 NumSLocEntriesRead(0), NumStatementsRead(0),
Douglas Gregor258ae542009-04-27 06:38:32 +0000355 NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0),
Douglas Gregor1342e842009-07-06 18:54:52 +0000356 NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0),
Mike Stump11289f42009-09-09 15:08:12 +0000357 CurrentlyLoadingTypeOrDecl(0) {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000358 RelocatablePCH = false;
359}
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000360
361PCHReader::~PCHReader() {}
362
Chris Lattner1de76db2009-04-27 05:58:23 +0000363Expr *PCHReader::ReadDeclExpr() {
364 return dyn_cast_or_null<Expr>(ReadStmt(DeclsCursor));
365}
366
367Expr *PCHReader::ReadTypeExpr() {
Douglas Gregor12bfa382009-10-17 00:13:19 +0000368 return dyn_cast_or_null<Expr>(ReadStmt(DeclsCursor));
Chris Lattner92ba5ff2009-04-27 05:14:47 +0000369}
370
371
Douglas Gregora868bbd2009-04-21 22:25:48 +0000372namespace {
Benjamin Kramer16634c22009-11-28 10:07:24 +0000373class PCHMethodPoolLookupTrait {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000374 PCHReader &Reader;
375
376public:
377 typedef std::pair<ObjCMethodList, ObjCMethodList> data_type;
378
379 typedef Selector external_key_type;
380 typedef external_key_type internal_key_type;
381
382 explicit PCHMethodPoolLookupTrait(PCHReader &Reader) : Reader(Reader) { }
Mike Stump11289f42009-09-09 15:08:12 +0000383
Douglas Gregorc78d3462009-04-24 21:10:55 +0000384 static bool EqualKey(const internal_key_type& a,
385 const internal_key_type& b) {
386 return a == b;
387 }
Mike Stump11289f42009-09-09 15:08:12 +0000388
Douglas Gregorc78d3462009-04-24 21:10:55 +0000389 static unsigned ComputeHash(Selector Sel) {
390 unsigned N = Sel.getNumArgs();
391 if (N == 0)
392 ++N;
393 unsigned R = 5381;
394 for (unsigned I = 0; I != N; ++I)
395 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000396 R = llvm::HashString(II->getName(), R);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000397 return R;
398 }
Mike Stump11289f42009-09-09 15:08:12 +0000399
Douglas Gregorc78d3462009-04-24 21:10:55 +0000400 // This hopefully will just get inlined and removed by the optimizer.
401 static const internal_key_type&
402 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000403
Douglas Gregorc78d3462009-04-24 21:10:55 +0000404 static std::pair<unsigned, unsigned>
405 ReadKeyDataLength(const unsigned char*& d) {
406 using namespace clang::io;
407 unsigned KeyLen = ReadUnalignedLE16(d);
408 unsigned DataLen = ReadUnalignedLE16(d);
409 return std::make_pair(KeyLen, DataLen);
410 }
Mike Stump11289f42009-09-09 15:08:12 +0000411
Douglas Gregor95c13f52009-04-25 17:48:32 +0000412 internal_key_type ReadKey(const unsigned char* d, unsigned) {
Douglas Gregorc78d3462009-04-24 21:10:55 +0000413 using namespace clang::io;
Chris Lattner8575daa2009-04-27 21:45:14 +0000414 SelectorTable &SelTable = Reader.getContext()->Selectors;
Douglas Gregorc78d3462009-04-24 21:10:55 +0000415 unsigned N = ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +0000416 IdentifierInfo *FirstII
Douglas Gregorc78d3462009-04-24 21:10:55 +0000417 = Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d));
418 if (N == 0)
419 return SelTable.getNullarySelector(FirstII);
420 else if (N == 1)
421 return SelTable.getUnarySelector(FirstII);
422
423 llvm::SmallVector<IdentifierInfo *, 16> Args;
424 Args.push_back(FirstII);
425 for (unsigned I = 1; I != N; ++I)
426 Args.push_back(Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d)));
427
Douglas Gregor038c3382009-05-22 22:45:36 +0000428 return SelTable.getSelector(N, Args.data());
Douglas Gregorc78d3462009-04-24 21:10:55 +0000429 }
Mike Stump11289f42009-09-09 15:08:12 +0000430
Douglas Gregorc78d3462009-04-24 21:10:55 +0000431 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen) {
432 using namespace clang::io;
433 unsigned NumInstanceMethods = ReadUnalignedLE16(d);
434 unsigned NumFactoryMethods = ReadUnalignedLE16(d);
435
436 data_type Result;
437
438 // Load instance methods
439 ObjCMethodList *Prev = 0;
440 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000441 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000442 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
443 if (!Result.first.Method) {
444 // This is the first method, which is the easy case.
445 Result.first.Method = Method;
446 Prev = &Result.first;
447 continue;
448 }
449
Ted Kremenekda4abf12010-02-11 00:53:01 +0000450 ObjCMethodList *Mem =
451 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
452 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000453 Prev = Prev->Next;
454 }
455
456 // Load factory methods
457 Prev = 0;
458 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +0000459 ObjCMethodDecl *Method
Douglas Gregorc78d3462009-04-24 21:10:55 +0000460 = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d)));
461 if (!Result.second.Method) {
462 // This is the first method, which is the easy case.
463 Result.second.Method = Method;
464 Prev = &Result.second;
465 continue;
466 }
467
Ted Kremenekda4abf12010-02-11 00:53:01 +0000468 ObjCMethodList *Mem =
469 Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>();
470 Prev->Next = new (Mem) ObjCMethodList(Method, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +0000471 Prev = Prev->Next;
472 }
473
474 return Result;
475 }
476};
Mike Stump11289f42009-09-09 15:08:12 +0000477
478} // end anonymous namespace
Douglas Gregorc78d3462009-04-24 21:10:55 +0000479
480/// \brief The on-disk hash table used for the global method pool.
Mike Stump11289f42009-09-09 15:08:12 +0000481typedef OnDiskChainedHashTable<PCHMethodPoolLookupTrait>
Douglas Gregorc78d3462009-04-24 21:10:55 +0000482 PCHMethodPoolLookupTable;
483
484namespace {
Benjamin Kramer16634c22009-11-28 10:07:24 +0000485class PCHIdentifierLookupTrait {
Douglas Gregora868bbd2009-04-21 22:25:48 +0000486 PCHReader &Reader;
487
488 // If we know the IdentifierInfo in advance, it is here and we will
489 // not build a new one. Used when deserializing information about an
490 // identifier that was constructed before the PCH file was read.
491 IdentifierInfo *KnownII;
492
493public:
494 typedef IdentifierInfo * data_type;
495
496 typedef const std::pair<const char*, unsigned> external_key_type;
497
498 typedef external_key_type internal_key_type;
499
Mike Stump11289f42009-09-09 15:08:12 +0000500 explicit PCHIdentifierLookupTrait(PCHReader &Reader, IdentifierInfo *II = 0)
Douglas Gregora868bbd2009-04-21 22:25:48 +0000501 : Reader(Reader), KnownII(II) { }
Mike Stump11289f42009-09-09 15:08:12 +0000502
Douglas Gregora868bbd2009-04-21 22:25:48 +0000503 static bool EqualKey(const internal_key_type& a,
504 const internal_key_type& b) {
505 return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0
506 : false;
507 }
Mike Stump11289f42009-09-09 15:08:12 +0000508
Douglas Gregora868bbd2009-04-21 22:25:48 +0000509 static unsigned ComputeHash(const internal_key_type& a) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000510 return llvm::HashString(llvm::StringRef(a.first, a.second));
Douglas Gregora868bbd2009-04-21 22:25:48 +0000511 }
Mike Stump11289f42009-09-09 15:08:12 +0000512
Douglas Gregora868bbd2009-04-21 22:25:48 +0000513 // This hopefully will just get inlined and removed by the optimizer.
514 static const internal_key_type&
515 GetInternalKey(const external_key_type& x) { return x; }
Mike Stump11289f42009-09-09 15:08:12 +0000516
Douglas Gregora868bbd2009-04-21 22:25:48 +0000517 static std::pair<unsigned, unsigned>
518 ReadKeyDataLength(const unsigned char*& d) {
519 using namespace clang::io;
Douglas Gregor6b7bf5a2009-04-25 20:26:24 +0000520 unsigned DataLen = ReadUnalignedLE16(d);
Douglas Gregor5287b4e2009-04-25 21:04:17 +0000521 unsigned KeyLen = ReadUnalignedLE16(d);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000522 return std::make_pair(KeyLen, DataLen);
523 }
Mike Stump11289f42009-09-09 15:08:12 +0000524
Douglas Gregora868bbd2009-04-21 22:25:48 +0000525 static std::pair<const char*, unsigned>
526 ReadKey(const unsigned char* d, unsigned n) {
527 assert(n >= 2 && d[n-1] == '\0');
528 return std::make_pair((const char*) d, n-1);
529 }
Mike Stump11289f42009-09-09 15:08:12 +0000530
531 IdentifierInfo *ReadData(const internal_key_type& k,
Douglas Gregora868bbd2009-04-21 22:25:48 +0000532 const unsigned char* d,
533 unsigned DataLen) {
534 using namespace clang::io;
Douglas Gregor1d583f22009-04-28 21:18:29 +0000535 pch::IdentID ID = ReadUnalignedLE32(d);
536 bool IsInteresting = ID & 0x01;
537
538 // Wipe out the "is interesting" bit.
539 ID = ID >> 1;
540
541 if (!IsInteresting) {
542 // For unintersting identifiers, just build the IdentifierInfo
543 // and associate it with the persistent ID.
544 IdentifierInfo *II = KnownII;
545 if (!II)
546 II = &Reader.getIdentifierTable().CreateIdentifierInfo(
547 k.first, k.first + k.second);
548 Reader.SetIdentifierInfo(ID, II);
549 return II;
550 }
551
Douglas Gregorb9256522009-04-28 21:32:13 +0000552 unsigned Bits = ReadUnalignedLE16(d);
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000553 bool CPlusPlusOperatorKeyword = Bits & 0x01;
554 Bits >>= 1;
555 bool Poisoned = Bits & 0x01;
556 Bits >>= 1;
557 bool ExtensionToken = Bits & 0x01;
558 Bits >>= 1;
559 bool hasMacroDefinition = Bits & 0x01;
560 Bits >>= 1;
561 unsigned ObjCOrBuiltinID = Bits & 0x3FF;
562 Bits >>= 10;
Mike Stump11289f42009-09-09 15:08:12 +0000563
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000564 assert(Bits == 0 && "Extra bits in the identifier?");
Douglas Gregorb9256522009-04-28 21:32:13 +0000565 DataLen -= 6;
Douglas Gregora868bbd2009-04-21 22:25:48 +0000566
567 // Build the IdentifierInfo itself and link the identifier ID with
568 // the new IdentifierInfo.
569 IdentifierInfo *II = KnownII;
570 if (!II)
Douglas Gregor6b7bf5a2009-04-25 20:26:24 +0000571 II = &Reader.getIdentifierTable().CreateIdentifierInfo(
572 k.first, k.first + k.second);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000573 Reader.SetIdentifierInfo(ID, II);
574
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000575 // Set or check the various bits in the IdentifierInfo structure.
576 // FIXME: Load token IDs lazily, too?
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000577 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
Mike Stump11289f42009-09-09 15:08:12 +0000578 assert(II->isExtensionToken() == ExtensionToken &&
Douglas Gregor4621c6a2009-04-22 18:49:13 +0000579 "Incorrect extension token flag");
580 (void)ExtensionToken;
581 II->setIsPoisoned(Poisoned);
582 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
583 "Incorrect C++ operator keyword flag");
584 (void)CPlusPlusOperatorKeyword;
585
Douglas Gregorc3366a52009-04-21 23:56:24 +0000586 // If this identifier is a macro, deserialize the macro
587 // definition.
588 if (hasMacroDefinition) {
Douglas Gregorb9256522009-04-28 21:32:13 +0000589 uint32_t Offset = ReadUnalignedLE32(d);
Douglas Gregorc3366a52009-04-21 23:56:24 +0000590 Reader.ReadMacroRecord(Offset);
Douglas Gregorb9256522009-04-28 21:32:13 +0000591 DataLen -= 4;
Douglas Gregorc3366a52009-04-21 23:56:24 +0000592 }
Douglas Gregora868bbd2009-04-21 22:25:48 +0000593
594 // Read all of the declarations visible at global scope with this
595 // name.
Chris Lattner1d728882009-04-27 22:17:41 +0000596 if (Reader.getContext() == 0) return II;
Douglas Gregor1342e842009-07-06 18:54:52 +0000597 if (DataLen > 0) {
598 llvm::SmallVector<uint32_t, 4> DeclIDs;
599 for (; DataLen > 0; DataLen -= 4)
600 DeclIDs.push_back(ReadUnalignedLE32(d));
601 Reader.SetGloballyVisibleDecls(II, DeclIDs);
Douglas Gregora868bbd2009-04-21 22:25:48 +0000602 }
Mike Stump11289f42009-09-09 15:08:12 +0000603
Douglas Gregora868bbd2009-04-21 22:25:48 +0000604 return II;
605 }
606};
Mike Stump11289f42009-09-09 15:08:12 +0000607
608} // end anonymous namespace
Douglas Gregora868bbd2009-04-21 22:25:48 +0000609
610/// \brief The on-disk hash table used to contain information about
611/// all of the identifiers in the program.
Mike Stump11289f42009-09-09 15:08:12 +0000612typedef OnDiskChainedHashTable<PCHIdentifierLookupTrait>
Douglas Gregora868bbd2009-04-21 22:25:48 +0000613 PCHIdentifierLookupTable;
614
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000615void PCHReader::Error(const char *Msg) {
616 Diag(diag::err_fe_pch_malformed) << Msg;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000617}
618
Douglas Gregor92863e42009-04-10 23:10:45 +0000619/// \brief Check the contents of the predefines buffer against the
620/// contents of the predefines buffer used to build the PCH file.
621///
622/// The contents of the two predefines buffers should be the same. If
623/// not, then some command-line option changed the preprocessor state
624/// and we must reject the PCH file.
625///
626/// \param PCHPredef The start of the predefines buffer in the PCH
627/// file.
628///
629/// \param PCHPredefLen The length of the predefines buffer in the PCH
630/// file.
631///
632/// \param PCHBufferID The FileID for the PCH predefines buffer.
633///
634/// \returns true if there was a mismatch (in which case the PCH file
635/// should be ignored), or false otherwise.
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000636bool PCHReader::CheckPredefinesBuffer(llvm::StringRef PCHPredef,
Douglas Gregor92863e42009-04-10 23:10:45 +0000637 FileID PCHBufferID) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000638 if (Listener)
Daniel Dunbar20a682d2009-11-11 00:52:11 +0000639 return Listener->ReadPredefinesBuffer(PCHPredef, PCHBufferID,
Daniel Dunbar000c4ff2009-11-11 05:29:04 +0000640 ActualOriginalFileName,
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +0000641 SuggestedPredefines);
Douglas Gregorc379c072009-04-28 18:58:38 +0000642 return false;
Douglas Gregor92863e42009-04-10 23:10:45 +0000643}
644
Douglas Gregorc5046832009-04-27 18:38:38 +0000645//===----------------------------------------------------------------------===//
646// Source Manager Deserialization
647//===----------------------------------------------------------------------===//
648
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000649/// \brief Read the line table in the source manager block.
650/// \returns true if ther was an error.
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000651bool PCHReader::ParseLineTable(llvm::SmallVectorImpl<uint64_t> &Record) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000652 unsigned Idx = 0;
653 LineTableInfo &LineTable = SourceMgr.getLineTable();
654
655 // Parse the file names
Douglas Gregora8854652009-04-13 17:12:42 +0000656 std::map<int, int> FileIDs;
657 for (int I = 0, N = Record[Idx++]; I != N; ++I) {
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000658 // Extract the file name
659 unsigned FilenameLen = Record[Idx++];
660 std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen);
661 Idx += FilenameLen;
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000662 MaybeAddSystemRootToFilename(Filename);
Mike Stump11289f42009-09-09 15:08:12 +0000663 FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(),
Douglas Gregora8854652009-04-13 17:12:42 +0000664 Filename.size());
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000665 }
666
667 // Parse the line entries
668 std::vector<LineEntry> Entries;
669 while (Idx < Record.size()) {
Douglas Gregora8854652009-04-13 17:12:42 +0000670 int FID = FileIDs[Record[Idx++]];
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000671
672 // Extract the line entries
673 unsigned NumEntries = Record[Idx++];
674 Entries.clear();
675 Entries.reserve(NumEntries);
676 for (unsigned I = 0; I != NumEntries; ++I) {
677 unsigned FileOffset = Record[Idx++];
678 unsigned LineNo = Record[Idx++];
679 int FilenameID = Record[Idx++];
Mike Stump11289f42009-09-09 15:08:12 +0000680 SrcMgr::CharacteristicKind FileKind
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000681 = (SrcMgr::CharacteristicKind)Record[Idx++];
682 unsigned IncludeOffset = Record[Idx++];
683 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
684 FileKind, IncludeOffset));
685 }
686 LineTable.AddEntry(FID, Entries);
687 }
688
689 return false;
690}
691
Douglas Gregorc5046832009-04-27 18:38:38 +0000692namespace {
693
Benjamin Kramer16634c22009-11-28 10:07:24 +0000694class PCHStatData {
Douglas Gregorc5046832009-04-27 18:38:38 +0000695public:
696 const bool hasStat;
697 const ino_t ino;
698 const dev_t dev;
699 const mode_t mode;
700 const time_t mtime;
701 const off_t size;
Mike Stump11289f42009-09-09 15:08:12 +0000702
Douglas Gregorc5046832009-04-27 18:38:38 +0000703 PCHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
Mike Stump11289f42009-09-09 15:08:12 +0000704 : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {}
705
Douglas Gregorc5046832009-04-27 18:38:38 +0000706 PCHStatData()
707 : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {}
708};
709
Benjamin Kramer16634c22009-11-28 10:07:24 +0000710class PCHStatLookupTrait {
Douglas Gregorc5046832009-04-27 18:38:38 +0000711 public:
712 typedef const char *external_key_type;
713 typedef const char *internal_key_type;
714
715 typedef PCHStatData data_type;
716
717 static unsigned ComputeHash(const char *path) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000718 return llvm::HashString(path);
Douglas Gregorc5046832009-04-27 18:38:38 +0000719 }
720
721 static internal_key_type GetInternalKey(const char *path) { return path; }
722
723 static bool EqualKey(internal_key_type a, internal_key_type b) {
724 return strcmp(a, b) == 0;
725 }
726
727 static std::pair<unsigned, unsigned>
728 ReadKeyDataLength(const unsigned char*& d) {
729 unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d);
730 unsigned DataLen = (unsigned) *d++;
731 return std::make_pair(KeyLen + 1, DataLen);
732 }
733
734 static internal_key_type ReadKey(const unsigned char *d, unsigned) {
735 return (const char *)d;
736 }
737
738 static data_type ReadData(const internal_key_type, const unsigned char *d,
739 unsigned /*DataLen*/) {
740 using namespace clang::io;
741
742 if (*d++ == 1)
743 return data_type();
744
745 ino_t ino = (ino_t) ReadUnalignedLE32(d);
746 dev_t dev = (dev_t) ReadUnalignedLE32(d);
747 mode_t mode = (mode_t) ReadUnalignedLE16(d);
Mike Stump11289f42009-09-09 15:08:12 +0000748 time_t mtime = (time_t) ReadUnalignedLE64(d);
Douglas Gregorc5046832009-04-27 18:38:38 +0000749 off_t size = (off_t) ReadUnalignedLE64(d);
750 return data_type(ino, dev, mode, mtime, size);
751 }
752};
753
754/// \brief stat() cache for precompiled headers.
755///
756/// This cache is very similar to the stat cache used by pretokenized
757/// headers.
Benjamin Kramer16634c22009-11-28 10:07:24 +0000758class PCHStatCache : public StatSysCallCache {
Douglas Gregorc5046832009-04-27 18:38:38 +0000759 typedef OnDiskChainedHashTable<PCHStatLookupTrait> CacheTy;
760 CacheTy *Cache;
761
762 unsigned &NumStatHits, &NumStatMisses;
Mike Stump11289f42009-09-09 15:08:12 +0000763public:
Douglas Gregorc5046832009-04-27 18:38:38 +0000764 PCHStatCache(const unsigned char *Buckets,
765 const unsigned char *Base,
766 unsigned &NumStatHits,
Mike Stump11289f42009-09-09 15:08:12 +0000767 unsigned &NumStatMisses)
Douglas Gregorc5046832009-04-27 18:38:38 +0000768 : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) {
769 Cache = CacheTy::Create(Buckets, Base);
770 }
771
772 ~PCHStatCache() { delete Cache; }
Mike Stump11289f42009-09-09 15:08:12 +0000773
Douglas Gregorc5046832009-04-27 18:38:38 +0000774 int stat(const char *path, struct stat *buf) {
775 // Do the lookup for the file's data in the PCH file.
776 CacheTy::iterator I = Cache->find(path);
777
778 // If we don't get a hit in the PCH file just forward to 'stat'.
779 if (I == Cache->end()) {
780 ++NumStatMisses;
Douglas Gregord2eb58a2009-10-16 18:18:30 +0000781 return StatSysCallCache::stat(path, buf);
Douglas Gregorc5046832009-04-27 18:38:38 +0000782 }
Mike Stump11289f42009-09-09 15:08:12 +0000783
Douglas Gregorc5046832009-04-27 18:38:38 +0000784 ++NumStatHits;
785 PCHStatData Data = *I;
Mike Stump11289f42009-09-09 15:08:12 +0000786
Douglas Gregorc5046832009-04-27 18:38:38 +0000787 if (!Data.hasStat)
788 return 1;
789
790 buf->st_ino = Data.ino;
791 buf->st_dev = Data.dev;
792 buf->st_mtime = Data.mtime;
793 buf->st_mode = Data.mode;
794 buf->st_size = Data.size;
795 return 0;
796 }
797};
798} // end anonymous namespace
799
800
Douglas Gregora7f71a92009-04-10 03:52:48 +0000801/// \brief Read the source manager block
Douglas Gregor92863e42009-04-10 23:10:45 +0000802PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() {
Douglas Gregora7f71a92009-04-10 03:52:48 +0000803 using namespace SrcMgr;
Douglas Gregor258ae542009-04-27 06:38:32 +0000804
805 // Set the source-location entry cursor to the current position in
806 // the stream. This cursor will be used to read the contents of the
807 // source manager block initially, and then lazily read
808 // source-location entries as needed.
809 SLocEntryCursor = Stream;
810
811 // The stream itself is going to skip over the source manager block.
812 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000813 Error("malformed block record in PCH file");
Douglas Gregor258ae542009-04-27 06:38:32 +0000814 return Failure;
815 }
816
817 // Enter the source manager block.
818 if (SLocEntryCursor.EnterSubBlock(pch::SOURCE_MANAGER_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000819 Error("malformed source manager block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000820 return Failure;
821 }
Douglas Gregora7f71a92009-04-10 03:52:48 +0000822
Douglas Gregora7f71a92009-04-10 03:52:48 +0000823 RecordData Record;
824 while (true) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000825 unsigned Code = SLocEntryCursor.ReadCode();
Douglas Gregora7f71a92009-04-10 03:52:48 +0000826 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000827 if (SLocEntryCursor.ReadBlockEnd()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000828 Error("error at end of Source Manager block in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000829 return Failure;
830 }
Douglas Gregor92863e42009-04-10 23:10:45 +0000831 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +0000832 }
Mike Stump11289f42009-09-09 15:08:12 +0000833
Douglas Gregora7f71a92009-04-10 03:52:48 +0000834 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
835 // No known subblocks, always skip them.
Douglas Gregor258ae542009-04-27 06:38:32 +0000836 SLocEntryCursor.ReadSubBlockID();
837 if (SLocEntryCursor.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000838 Error("malformed block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +0000839 return Failure;
840 }
Douglas Gregora7f71a92009-04-10 03:52:48 +0000841 continue;
842 }
Mike Stump11289f42009-09-09 15:08:12 +0000843
Douglas Gregora7f71a92009-04-10 03:52:48 +0000844 if (Code == llvm::bitc::DEFINE_ABBREV) {
Douglas Gregor258ae542009-04-27 06:38:32 +0000845 SLocEntryCursor.ReadAbbrevRecord();
Douglas Gregora7f71a92009-04-10 03:52:48 +0000846 continue;
847 }
Mike Stump11289f42009-09-09 15:08:12 +0000848
Douglas Gregora7f71a92009-04-10 03:52:48 +0000849 // Read a record.
850 const char *BlobStart;
851 unsigned BlobLen;
852 Record.clear();
Douglas Gregor258ae542009-04-27 06:38:32 +0000853 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
Douglas Gregora7f71a92009-04-10 03:52:48 +0000854 default: // Default behavior: ignore.
855 break;
856
Chris Lattner184e65d2009-04-14 23:22:57 +0000857 case pch::SM_LINE_TABLE:
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000858 if (ParseLineTable(Record))
Douglas Gregor4c7626e2009-04-13 16:31:14 +0000859 return Failure;
Chris Lattner184e65d2009-04-14 23:22:57 +0000860 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +0000861
Douglas Gregor258ae542009-04-27 06:38:32 +0000862 case pch::SM_SLOC_FILE_ENTRY:
863 case pch::SM_SLOC_BUFFER_ENTRY:
864 case pch::SM_SLOC_INSTANTIATION_ENTRY:
865 // Once we hit one of the source location entries, we're done.
866 return Success;
Douglas Gregora7f71a92009-04-10 03:52:48 +0000867 }
868 }
869}
870
Douglas Gregor258ae542009-04-27 06:38:32 +0000871/// \brief Read in the source location entry with the given ID.
872PCHReader::PCHReadResult PCHReader::ReadSLocEntryRecord(unsigned ID) {
873 if (ID == 0)
874 return Success;
875
876 if (ID > TotalNumSLocEntries) {
877 Error("source location entry ID out-of-range for PCH file");
878 return Failure;
879 }
880
881 ++NumSLocEntriesRead;
882 SLocEntryCursor.JumpToBit(SLocOffsets[ID - 1]);
883 unsigned Code = SLocEntryCursor.ReadCode();
884 if (Code == llvm::bitc::END_BLOCK ||
885 Code == llvm::bitc::ENTER_SUBBLOCK ||
886 Code == llvm::bitc::DEFINE_ABBREV) {
887 Error("incorrectly-formatted source location entry in PCH file");
888 return Failure;
889 }
890
Douglas Gregor258ae542009-04-27 06:38:32 +0000891 RecordData Record;
892 const char *BlobStart;
893 unsigned BlobLen;
894 switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
895 default:
896 Error("incorrectly-formatted source location entry in PCH file");
897 return Failure;
898
899 case pch::SM_SLOC_FILE_ENTRY: {
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000900 std::string Filename(BlobStart, BlobStart + BlobLen);
901 MaybeAddSystemRootToFilename(Filename);
902 const FileEntry *File = FileMgr.getFile(Filename);
Chris Lattnerd20dc872009-06-15 04:35:16 +0000903 if (File == 0) {
904 std::string ErrorStr = "could not find file '";
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000905 ErrorStr += Filename;
Chris Lattnerd20dc872009-06-15 04:35:16 +0000906 ErrorStr += "' referenced by PCH file";
907 Error(ErrorStr.c_str());
908 return Failure;
909 }
Mike Stump11289f42009-09-09 15:08:12 +0000910
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000911 if (Record.size() < 10) {
Ted Kremenekabb1ddd2010-03-18 21:23:05 +0000912 Error("source location entry is incorrect");
913 return Failure;
914 }
915
Douglas Gregor08288f22010-04-09 15:54:22 +0000916 if ((off_t)Record[4] != File->getSize()
917#if !defined(LLVM_ON_WIN32)
918 // In our regression testing, the Windows file system seems to
919 // have inconsistent modification times that sometimes
920 // erroneously trigger this error-handling path.
921 || (time_t)Record[5] != File->getModificationTime()
922#endif
923 ) {
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000924 Diag(diag::err_fe_pch_file_modified)
925 << Filename;
926 return Failure;
927 }
928
Douglas Gregor258ae542009-04-27 06:38:32 +0000929 FileID FID = SourceMgr.createFileID(File,
930 SourceLocation::getFromRawEncoding(Record[1]),
931 (SrcMgr::CharacteristicKind)Record[2],
932 ID, Record[0]);
933 if (Record[3])
934 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile())
935 .setHasLineDirectives();
936
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000937 // Reconstruct header-search information for this file.
938 HeaderFileInfo HFI;
Douglas Gregorb41ca8f2010-03-21 22:49:54 +0000939 HFI.isImport = Record[6];
940 HFI.DirInfo = Record[7];
941 HFI.NumIncludes = Record[8];
942 HFI.ControllingMacroID = Record[9];
Douglas Gregor5712ebc2010-03-16 16:35:32 +0000943 if (Listener)
944 Listener->ReadHeaderFileInfo(HFI, File->getUID());
Douglas Gregor258ae542009-04-27 06:38:32 +0000945 break;
946 }
947
948 case pch::SM_SLOC_BUFFER_ENTRY: {
949 const char *Name = BlobStart;
950 unsigned Offset = Record[0];
951 unsigned Code = SLocEntryCursor.ReadCode();
952 Record.clear();
Mike Stump11289f42009-09-09 15:08:12 +0000953 unsigned RecCode
Douglas Gregor258ae542009-04-27 06:38:32 +0000954 = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen);
Ted Kremenek1ff615c2010-03-18 00:56:54 +0000955
956 if (RecCode != pch::SM_SLOC_BUFFER_BLOB) {
957 Error("PCH record has invalid code");
958 return Failure;
959 }
960
Douglas Gregor258ae542009-04-27 06:38:32 +0000961 llvm::MemoryBuffer *Buffer
Chris Lattner58c79342010-04-05 22:42:27 +0000962 = llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(BlobStart, BlobLen - 1),
963 Name);
Douglas Gregor258ae542009-04-27 06:38:32 +0000964 FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset);
Mike Stump11289f42009-09-09 15:08:12 +0000965
Douglas Gregore6648fb2009-04-28 20:33:11 +0000966 if (strcmp(Name, "<built-in>") == 0) {
967 PCHPredefinesBufferID = BufferID;
968 PCHPredefines = BlobStart;
969 PCHPredefinesLen = BlobLen - 1;
970 }
Douglas Gregor258ae542009-04-27 06:38:32 +0000971
972 break;
973 }
974
975 case pch::SM_SLOC_INSTANTIATION_ENTRY: {
Mike Stump11289f42009-09-09 15:08:12 +0000976 SourceLocation SpellingLoc
Douglas Gregor258ae542009-04-27 06:38:32 +0000977 = SourceLocation::getFromRawEncoding(Record[1]);
978 SourceMgr.createInstantiationLoc(SpellingLoc,
979 SourceLocation::getFromRawEncoding(Record[2]),
980 SourceLocation::getFromRawEncoding(Record[3]),
981 Record[4],
982 ID,
983 Record[0]);
984 break;
Mike Stump11289f42009-09-09 15:08:12 +0000985 }
Douglas Gregor258ae542009-04-27 06:38:32 +0000986 }
987
988 return Success;
989}
990
Chris Lattnere78a6be2009-04-27 01:05:14 +0000991/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
992/// specified cursor. Read the abbreviations that are at the top of the block
993/// and then leave the cursor pointing into the block.
994bool PCHReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor,
995 unsigned BlockID) {
996 if (Cursor.EnterSubBlock(BlockID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +0000997 Error("malformed block record in PCH file");
Chris Lattnere78a6be2009-04-27 01:05:14 +0000998 return Failure;
999 }
Mike Stump11289f42009-09-09 15:08:12 +00001000
Chris Lattnere78a6be2009-04-27 01:05:14 +00001001 while (true) {
1002 unsigned Code = Cursor.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00001003
Chris Lattnere78a6be2009-04-27 01:05:14 +00001004 // We expect all abbrevs to be at the start of the block.
1005 if (Code != llvm::bitc::DEFINE_ABBREV)
1006 return false;
1007 Cursor.ReadAbbrevRecord();
1008 }
1009}
1010
Douglas Gregorc3366a52009-04-21 23:56:24 +00001011void PCHReader::ReadMacroRecord(uint64_t Offset) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001012 assert(PP && "Forgot to set Preprocessor ?");
Mike Stump11289f42009-09-09 15:08:12 +00001013
Douglas Gregorc3366a52009-04-21 23:56:24 +00001014 // Keep track of where we are in the stream, then jump back there
1015 // after reading this macro.
1016 SavedStreamPosition SavedPosition(Stream);
1017
1018 Stream.JumpToBit(Offset);
1019 RecordData Record;
1020 llvm::SmallVector<IdentifierInfo*, 16> MacroArgs;
1021 MacroInfo *Macro = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001022
Douglas Gregorc3366a52009-04-21 23:56:24 +00001023 while (true) {
1024 unsigned Code = Stream.ReadCode();
1025 switch (Code) {
1026 case llvm::bitc::END_BLOCK:
1027 return;
1028
1029 case llvm::bitc::ENTER_SUBBLOCK:
1030 // No known subblocks, always skip them.
1031 Stream.ReadSubBlockID();
1032 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001033 Error("malformed block record in PCH file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001034 return;
1035 }
1036 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001037
Douglas Gregorc3366a52009-04-21 23:56:24 +00001038 case llvm::bitc::DEFINE_ABBREV:
1039 Stream.ReadAbbrevRecord();
1040 continue;
1041 default: break;
1042 }
1043
1044 // Read a record.
1045 Record.clear();
1046 pch::PreprocessorRecordTypes RecType =
1047 (pch::PreprocessorRecordTypes)Stream.ReadRecord(Code, Record);
1048 switch (RecType) {
Douglas Gregorc3366a52009-04-21 23:56:24 +00001049 case pch::PP_MACRO_OBJECT_LIKE:
1050 case pch::PP_MACRO_FUNCTION_LIKE: {
1051 // If we already have a macro, that means that we've hit the end
1052 // of the definition of the macro we were looking for. We're
1053 // done.
1054 if (Macro)
1055 return;
1056
1057 IdentifierInfo *II = DecodeIdentifierInfo(Record[0]);
1058 if (II == 0) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001059 Error("macro must have a name in PCH file");
Douglas Gregorc3366a52009-04-21 23:56:24 +00001060 return;
1061 }
1062 SourceLocation Loc = SourceLocation::getFromRawEncoding(Record[1]);
1063 bool isUsed = Record[2];
Mike Stump11289f42009-09-09 15:08:12 +00001064
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001065 MacroInfo *MI = PP->AllocateMacroInfo(Loc);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001066 MI->setIsUsed(isUsed);
Mike Stump11289f42009-09-09 15:08:12 +00001067
Douglas Gregoraae92242010-03-19 21:51:54 +00001068 unsigned NextIndex = 3;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001069 if (RecType == pch::PP_MACRO_FUNCTION_LIKE) {
1070 // Decode function-like macro info.
1071 bool isC99VarArgs = Record[3];
1072 bool isGNUVarArgs = Record[4];
1073 MacroArgs.clear();
1074 unsigned NumArgs = Record[5];
Douglas Gregoraae92242010-03-19 21:51:54 +00001075 NextIndex = 6 + NumArgs;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001076 for (unsigned i = 0; i != NumArgs; ++i)
1077 MacroArgs.push_back(DecodeIdentifierInfo(Record[6+i]));
1078
1079 // Install function-like macro info.
1080 MI->setIsFunctionLike();
1081 if (isC99VarArgs) MI->setIsC99Varargs();
1082 if (isGNUVarArgs) MI->setIsGNUVarargs();
Douglas Gregor038c3382009-05-22 22:45:36 +00001083 MI->setArgumentList(MacroArgs.data(), MacroArgs.size(),
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001084 PP->getPreprocessorAllocator());
Douglas Gregorc3366a52009-04-21 23:56:24 +00001085 }
1086
1087 // Finally, install the macro.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001088 PP->setMacroInfo(II, MI);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001089
1090 // Remember that we saw this macro last so that we add the tokens that
1091 // form its body to it.
1092 Macro = MI;
Douglas Gregoraae92242010-03-19 21:51:54 +00001093
1094 if (NextIndex + 1 == Record.size() && PP->getPreprocessingRecord()) {
1095 // We have a macro definition. Load it now.
1096 PP->getPreprocessingRecord()->RegisterMacroDefinition(Macro,
1097 getMacroDefinition(Record[NextIndex]));
1098 }
1099
Douglas Gregorc3366a52009-04-21 23:56:24 +00001100 ++NumMacrosRead;
1101 break;
1102 }
Mike Stump11289f42009-09-09 15:08:12 +00001103
Douglas Gregorc3366a52009-04-21 23:56:24 +00001104 case pch::PP_TOKEN: {
1105 // If we see a TOKEN before a PP_MACRO_*, then the file is
1106 // erroneous, just pretend we didn't see this.
1107 if (Macro == 0) break;
Mike Stump11289f42009-09-09 15:08:12 +00001108
Douglas Gregorc3366a52009-04-21 23:56:24 +00001109 Token Tok;
1110 Tok.startToken();
1111 Tok.setLocation(SourceLocation::getFromRawEncoding(Record[0]));
1112 Tok.setLength(Record[1]);
1113 if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2]))
1114 Tok.setIdentifierInfo(II);
1115 Tok.setKind((tok::TokenKind)Record[3]);
1116 Tok.setFlag((Token::TokenFlags)Record[4]);
1117 Macro->AddTokenToBody(Tok);
1118 break;
1119 }
Douglas Gregoraae92242010-03-19 21:51:54 +00001120
1121 case pch::PP_MACRO_INSTANTIATION: {
1122 // If we already have a macro, that means that we've hit the end
1123 // of the definition of the macro we were looking for. We're
1124 // done.
1125 if (Macro)
1126 return;
1127
1128 if (!PP->getPreprocessingRecord()) {
1129 Error("missing preprocessing record in PCH file");
1130 return;
1131 }
1132
1133 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1134 if (PPRec.getPreprocessedEntity(Record[0]))
1135 return;
1136
1137 MacroInstantiation *MI
1138 = new (PPRec) MacroInstantiation(DecodeIdentifierInfo(Record[3]),
1139 SourceRange(
1140 SourceLocation::getFromRawEncoding(Record[1]),
1141 SourceLocation::getFromRawEncoding(Record[2])),
1142 getMacroDefinition(Record[4]));
1143 PPRec.SetPreallocatedEntity(Record[0], MI);
1144 return;
1145 }
1146
1147 case pch::PP_MACRO_DEFINITION: {
1148 // If we already have a macro, that means that we've hit the end
1149 // of the definition of the macro we were looking for. We're
1150 // done.
1151 if (Macro)
1152 return;
1153
1154 if (!PP->getPreprocessingRecord()) {
1155 Error("missing preprocessing record in PCH file");
1156 return;
1157 }
1158
1159 PreprocessingRecord &PPRec = *PP->getPreprocessingRecord();
1160 if (PPRec.getPreprocessedEntity(Record[0]))
1161 return;
1162
1163 if (Record[1] >= MacroDefinitionsLoaded.size()) {
1164 Error("out-of-bounds macro definition record");
1165 return;
1166 }
1167
1168 MacroDefinition *MD
1169 = new (PPRec) MacroDefinition(DecodeIdentifierInfo(Record[4]),
1170 SourceLocation::getFromRawEncoding(Record[5]),
1171 SourceRange(
1172 SourceLocation::getFromRawEncoding(Record[2]),
1173 SourceLocation::getFromRawEncoding(Record[3])));
1174 PPRec.SetPreallocatedEntity(Record[0], MD);
1175 MacroDefinitionsLoaded[Record[1]] = MD;
1176 return;
1177 }
Steve Naroff3fa455a2009-04-24 20:03:17 +00001178 }
Douglas Gregorc3366a52009-04-21 23:56:24 +00001179 }
1180}
1181
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001182void PCHReader::ReadDefinedMacros() {
1183 // If there was no preprocessor block, do nothing.
1184 if (!MacroCursor.getBitStreamReader())
1185 return;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001186
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001187 llvm::BitstreamCursor Cursor = MacroCursor;
1188 if (Cursor.EnterSubBlock(pch::PREPROCESSOR_BLOCK_ID)) {
1189 Error("malformed preprocessor block record in PCH file");
1190 return;
1191 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001192
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001193 RecordData Record;
1194 while (true) {
1195 unsigned Code = Cursor.ReadCode();
1196 if (Code == llvm::bitc::END_BLOCK) {
1197 if (Cursor.ReadBlockEnd())
1198 Error("error at end of preprocessor block in PCH file");
1199 return;
1200 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001201
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001202 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1203 // No known subblocks, always skip them.
1204 Cursor.ReadSubBlockID();
1205 if (Cursor.SkipBlock()) {
1206 Error("malformed block record in PCH file");
1207 return;
1208 }
1209 continue;
1210 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001211
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001212 if (Code == llvm::bitc::DEFINE_ABBREV) {
1213 Cursor.ReadAbbrevRecord();
1214 continue;
1215 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001216
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001217 // Read a record.
1218 const char *BlobStart;
1219 unsigned BlobLen;
1220 Record.clear();
1221 switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) {
1222 default: // Default behavior: ignore.
1223 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001224
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001225 case pch::PP_MACRO_OBJECT_LIKE:
1226 case pch::PP_MACRO_FUNCTION_LIKE:
Douglas Gregoraae92242010-03-19 21:51:54 +00001227 DecodeIdentifierInfo(Record[0]);
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001228 break;
1229
1230 case pch::PP_TOKEN:
1231 // Ignore tokens.
1232 break;
Douglas Gregoraae92242010-03-19 21:51:54 +00001233
1234 case pch::PP_MACRO_INSTANTIATION:
1235 case pch::PP_MACRO_DEFINITION:
1236 // Read the macro record.
1237 ReadMacroRecord(Cursor.GetCurrentBitNo());
1238 break;
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001239 }
1240 }
1241}
1242
Douglas Gregoraae92242010-03-19 21:51:54 +00001243MacroDefinition *PCHReader::getMacroDefinition(pch::IdentID ID) {
1244 if (ID == 0 || ID >= MacroDefinitionsLoaded.size())
1245 return 0;
1246
1247 if (!MacroDefinitionsLoaded[ID])
1248 ReadMacroRecord(MacroDefinitionOffsets[ID]);
1249
1250 return MacroDefinitionsLoaded[ID];
1251}
1252
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001253/// \brief If we are loading a relocatable PCH file, and the filename is
1254/// not an absolute path, add the system root to the beginning of the file
1255/// name.
1256void PCHReader::MaybeAddSystemRootToFilename(std::string &Filename) {
1257 // If this is not a relocatable PCH file, there's nothing to do.
1258 if (!RelocatablePCH)
1259 return;
Mike Stump11289f42009-09-09 15:08:12 +00001260
Daniel Dunbarf2ce9a22009-11-18 19:50:41 +00001261 if (Filename.empty() || llvm::sys::Path(Filename).isAbsolute())
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001262 return;
1263
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001264 if (isysroot == 0) {
1265 // If no system root was given, default to '/'
1266 Filename.insert(Filename.begin(), '/');
1267 return;
1268 }
Mike Stump11289f42009-09-09 15:08:12 +00001269
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001270 unsigned Length = strlen(isysroot);
1271 if (isysroot[Length - 1] != '/')
1272 Filename.insert(Filename.begin(), '/');
Mike Stump11289f42009-09-09 15:08:12 +00001273
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001274 Filename.insert(Filename.begin(), isysroot, isysroot + Length);
1275}
1276
Mike Stump11289f42009-09-09 15:08:12 +00001277PCHReader::PCHReadResult
Douglas Gregoreda6a892009-04-26 00:07:37 +00001278PCHReader::ReadPCHBlock() {
Douglas Gregor55abb232009-04-10 20:39:37 +00001279 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001280 Error("malformed block record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001281 return Failure;
1282 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001283
1284 // Read all of the records and blocks for the PCH file.
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001285 RecordData Record;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001286 while (!Stream.AtEndOfStream()) {
1287 unsigned Code = Stream.ReadCode();
1288 if (Code == llvm::bitc::END_BLOCK) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001289 if (Stream.ReadBlockEnd()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001290 Error("error at end of module block in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001291 return Failure;
1292 }
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001293
Douglas Gregor55abb232009-04-10 20:39:37 +00001294 return Success;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001295 }
1296
1297 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1298 switch (Stream.ReadSubBlockID()) {
Douglas Gregor12bfa382009-10-17 00:13:19 +00001299 case pch::DECLTYPES_BLOCK_ID:
Chris Lattnere78a6be2009-04-27 01:05:14 +00001300 // We lazily load the decls block, but we want to set up the
1301 // DeclsCursor cursor to point into it. Clone our current bitcode
1302 // cursor to it, enter the block and read the abbrevs in that block.
1303 // With the main cursor, we just skip over it.
1304 DeclsCursor = Stream;
1305 if (Stream.SkipBlock() || // Skip with the main cursor.
1306 // Read the abbrevs.
Douglas Gregor12bfa382009-10-17 00:13:19 +00001307 ReadBlockAbbrevs(DeclsCursor, pch::DECLTYPES_BLOCK_ID)) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001308 Error("malformed block record in PCH file");
Chris Lattnere78a6be2009-04-27 01:05:14 +00001309 return Failure;
1310 }
1311 break;
Mike Stump11289f42009-09-09 15:08:12 +00001312
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001313 case pch::PREPROCESSOR_BLOCK_ID:
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001314 MacroCursor = Stream;
1315 if (PP)
1316 PP->setExternalSource(this);
1317
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001318 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001319 Error("malformed block record in PCH file");
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001320 return Failure;
1321 }
1322 break;
Steve Naroff2ddea052009-04-23 10:39:46 +00001323
Douglas Gregora7f71a92009-04-10 03:52:48 +00001324 case pch::SOURCE_MANAGER_BLOCK_ID:
Douglas Gregor92863e42009-04-10 23:10:45 +00001325 switch (ReadSourceManagerBlock()) {
1326 case Success:
1327 break;
1328
1329 case Failure:
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001330 Error("malformed source manager block in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001331 return Failure;
Douglas Gregor92863e42009-04-10 23:10:45 +00001332
1333 case IgnorePCH:
1334 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00001335 }
Douglas Gregora7f71a92009-04-10 03:52:48 +00001336 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001337 }
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001338 continue;
1339 }
1340
1341 if (Code == llvm::bitc::DEFINE_ABBREV) {
1342 Stream.ReadAbbrevRecord();
1343 continue;
1344 }
1345
1346 // Read and process a record.
1347 Record.clear();
Douglas Gregorbfbde532009-04-10 21:16:55 +00001348 const char *BlobStart = 0;
1349 unsigned BlobLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001350 switch ((pch::PCHRecordTypes)Stream.ReadRecord(Code, Record,
Douglas Gregorbfbde532009-04-10 21:16:55 +00001351 &BlobStart, &BlobLen)) {
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001352 default: // Default behavior: ignore.
1353 break;
1354
1355 case pch::TYPE_OFFSET:
Douglas Gregor745ed142009-04-25 18:35:21 +00001356 if (!TypesLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001357 Error("duplicate TYPE_OFFSET record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001358 return Failure;
1359 }
Chris Lattnereeb05692009-04-27 18:24:17 +00001360 TypeOffsets = (const uint32_t *)BlobStart;
Douglas Gregor745ed142009-04-25 18:35:21 +00001361 TypesLoaded.resize(Record[0]);
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001362 break;
1363
1364 case pch::DECL_OFFSET:
Douglas Gregor745ed142009-04-25 18:35:21 +00001365 if (!DeclsLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001366 Error("duplicate DECL_OFFSET record in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001367 return Failure;
1368 }
Chris Lattnereeb05692009-04-27 18:24:17 +00001369 DeclOffsets = (const uint32_t *)BlobStart;
Douglas Gregor745ed142009-04-25 18:35:21 +00001370 DeclsLoaded.resize(Record[0]);
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00001371 break;
Douglas Gregor55abb232009-04-10 20:39:37 +00001372
1373 case pch::LANGUAGE_OPTIONS:
1374 if (ParseLanguageOptions(Record))
1375 return IgnorePCH;
1376 break;
Douglas Gregorbfbde532009-04-10 21:16:55 +00001377
Douglas Gregor7b71e632009-04-27 22:23:34 +00001378 case pch::METADATA: {
1379 if (Record[0] != pch::VERSION_MAJOR) {
1380 Diag(Record[0] < pch::VERSION_MAJOR? diag::warn_pch_version_too_old
1381 : diag::warn_pch_version_too_new);
1382 return IgnorePCH;
1383 }
1384
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001385 RelocatablePCH = Record[4];
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001386 if (Listener) {
1387 std::string TargetTriple(BlobStart, BlobLen);
1388 if (Listener->ReadTargetTriple(TargetTriple))
1389 return IgnorePCH;
Douglas Gregorbfbde532009-04-10 21:16:55 +00001390 }
1391 break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001392 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001393
1394 case pch::IDENTIFIER_TABLE:
Douglas Gregora868bbd2009-04-21 22:25:48 +00001395 IdentifierTableData = BlobStart;
Douglas Gregor0e149972009-04-25 19:10:14 +00001396 if (Record[0]) {
Mike Stump11289f42009-09-09 15:08:12 +00001397 IdentifierLookupTable
Douglas Gregor0e149972009-04-25 19:10:14 +00001398 = PCHIdentifierLookupTable::Create(
Douglas Gregora868bbd2009-04-21 22:25:48 +00001399 (const unsigned char *)IdentifierTableData + Record[0],
Mike Stump11289f42009-09-09 15:08:12 +00001400 (const unsigned char *)IdentifierTableData,
Douglas Gregora868bbd2009-04-21 22:25:48 +00001401 PCHIdentifierLookupTrait(*this));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001402 if (PP)
1403 PP->getIdentifierTable().setExternalIdentifierLookup(this);
Douglas Gregor0e149972009-04-25 19:10:14 +00001404 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001405 break;
1406
1407 case pch::IDENTIFIER_OFFSET:
Douglas Gregor0e149972009-04-25 19:10:14 +00001408 if (!IdentifiersLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001409 Error("duplicate IDENTIFIER_OFFSET record in PCH file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001410 return Failure;
1411 }
Douglas Gregor0e149972009-04-25 19:10:14 +00001412 IdentifierOffsets = (const uint32_t *)BlobStart;
1413 IdentifiersLoaded.resize(Record[0]);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001414 if (PP)
1415 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001416 break;
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001417
1418 case pch::EXTERNAL_DEFINITIONS:
1419 if (!ExternalDefinitions.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001420 Error("duplicate EXTERNAL_DEFINITIONS record in PCH file");
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00001421 return Failure;
1422 }
1423 ExternalDefinitions.swap(Record);
1424 break;
Douglas Gregor08f01292009-04-17 22:13:46 +00001425
Douglas Gregor652d82a2009-04-18 05:55:16 +00001426 case pch::SPECIAL_TYPES:
1427 SpecialTypes.swap(Record);
1428 break;
1429
Douglas Gregor08f01292009-04-17 22:13:46 +00001430 case pch::STATISTICS:
1431 TotalNumStatements = Record[0];
Douglas Gregorc3366a52009-04-21 23:56:24 +00001432 TotalNumMacros = Record[1];
Douglas Gregora57c3ab2009-04-22 22:34:57 +00001433 TotalLexicalDeclContexts = Record[2];
1434 TotalVisibleDeclContexts = Record[3];
Douglas Gregor08f01292009-04-17 22:13:46 +00001435 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001436
Douglas Gregord4df8652009-04-22 22:02:47 +00001437 case pch::TENTATIVE_DEFINITIONS:
1438 if (!TentativeDefinitions.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001439 Error("duplicate TENTATIVE_DEFINITIONS record in PCH file");
Douglas Gregord4df8652009-04-22 22:02:47 +00001440 return Failure;
1441 }
1442 TentativeDefinitions.swap(Record);
1443 break;
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001444
Tanya Lattner90073802010-02-12 00:07:30 +00001445 case pch::UNUSED_STATIC_FUNCS:
1446 if (!UnusedStaticFuncs.empty()) {
1447 Error("duplicate UNUSED_STATIC_FUNCS record in PCH file");
1448 return Failure;
1449 }
1450 UnusedStaticFuncs.swap(Record);
1451 break;
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001452
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001453 case pch::LOCALLY_SCOPED_EXTERNAL_DECLS:
1454 if (!LocallyScopedExternalDecls.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001455 Error("duplicate LOCALLY_SCOPED_EXTERNAL_DECLS record in PCH file");
Douglas Gregoracfc76c2009-04-22 22:18:58 +00001456 return Failure;
1457 }
1458 LocallyScopedExternalDecls.swap(Record);
1459 break;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001460
Douglas Gregor95c13f52009-04-25 17:48:32 +00001461 case pch::SELECTOR_OFFSETS:
1462 SelectorOffsets = (const uint32_t *)BlobStart;
1463 TotalNumSelectors = Record[0];
1464 SelectorsLoaded.resize(TotalNumSelectors);
1465 break;
1466
Douglas Gregorc78d3462009-04-24 21:10:55 +00001467 case pch::METHOD_POOL:
Douglas Gregor95c13f52009-04-25 17:48:32 +00001468 MethodPoolLookupTableData = (const unsigned char *)BlobStart;
1469 if (Record[0])
Mike Stump11289f42009-09-09 15:08:12 +00001470 MethodPoolLookupTable
Douglas Gregor95c13f52009-04-25 17:48:32 +00001471 = PCHMethodPoolLookupTable::Create(
1472 MethodPoolLookupTableData + Record[0],
Mike Stump11289f42009-09-09 15:08:12 +00001473 MethodPoolLookupTableData,
Douglas Gregorc78d3462009-04-24 21:10:55 +00001474 PCHMethodPoolLookupTrait(*this));
Douglas Gregor95c13f52009-04-25 17:48:32 +00001475 TotalSelectorsInMethodPool = Record[1];
Douglas Gregorc78d3462009-04-24 21:10:55 +00001476 break;
Douglas Gregoreda6a892009-04-26 00:07:37 +00001477
1478 case pch::PP_COUNTER_VALUE:
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001479 if (!Record.empty() && Listener)
1480 Listener->ReadCounter(Record[0]);
Douglas Gregoreda6a892009-04-26 00:07:37 +00001481 break;
Douglas Gregor258ae542009-04-27 06:38:32 +00001482
1483 case pch::SOURCE_LOCATION_OFFSETS:
Chris Lattner12d61d32009-04-27 19:01:47 +00001484 SLocOffsets = (const uint32_t *)BlobStart;
Douglas Gregor258ae542009-04-27 06:38:32 +00001485 TotalNumSLocEntries = Record[0];
Douglas Gregord54f3a12009-10-05 21:07:28 +00001486 SourceMgr.PreallocateSLocEntries(this, TotalNumSLocEntries, Record[1]);
Douglas Gregor258ae542009-04-27 06:38:32 +00001487 break;
1488
1489 case pch::SOURCE_LOCATION_PRELOADS:
1490 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
1491 PCHReadResult Result = ReadSLocEntryRecord(Record[I]);
1492 if (Result != Success)
1493 return Result;
1494 }
1495 break;
Douglas Gregorc5046832009-04-27 18:38:38 +00001496
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001497 case pch::STAT_CACHE: {
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001498 PCHStatCache *MyStatCache =
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001499 new PCHStatCache((const unsigned char *)BlobStart + Record[0],
1500 (const unsigned char *)BlobStart,
1501 NumStatHits, NumStatMisses);
1502 FileMgr.addStatCache(MyStatCache);
1503 StatCache = MyStatCache;
Douglas Gregorc5046832009-04-27 18:38:38 +00001504 break;
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001505 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001506
Douglas Gregor61cac2b2009-04-27 20:06:05 +00001507 case pch::EXT_VECTOR_DECLS:
1508 if (!ExtVectorDecls.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001509 Error("duplicate EXT_VECTOR_DECLS record in PCH file");
Douglas Gregor61cac2b2009-04-27 20:06:05 +00001510 return Failure;
1511 }
1512 ExtVectorDecls.swap(Record);
1513 break;
1514
Douglas Gregor45fe0362009-05-12 01:31:05 +00001515 case pch::ORIGINAL_FILE_NAME:
Daniel Dunbar000c4ff2009-11-11 05:29:04 +00001516 ActualOriginalFileName.assign(BlobStart, BlobLen);
1517 OriginalFileName = ActualOriginalFileName;
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001518 MaybeAddSystemRootToFilename(OriginalFileName);
Douglas Gregor45fe0362009-05-12 01:31:05 +00001519 break;
Mike Stump11289f42009-09-09 15:08:12 +00001520
Ted Kremenek17437132010-01-22 20:59:36 +00001521 case pch::VERSION_CONTROL_BRANCH_REVISION: {
Ted Kremenek8bd09292010-02-12 23:31:14 +00001522 const std::string &CurBranch = getClangFullRepositoryVersion();
Ted Kremenek2377a0e2010-01-22 20:55:35 +00001523 llvm::StringRef PCHBranch(BlobStart, BlobLen);
Ted Kremenek8bd09292010-02-12 23:31:14 +00001524 if (llvm::StringRef(CurBranch) != PCHBranch) {
Douglas Gregord54f3a12009-10-05 21:07:28 +00001525 Diag(diag::warn_pch_different_branch) << PCHBranch << CurBranch;
1526 return IgnorePCH;
1527 }
1528 break;
1529 }
Douglas Gregoraae92242010-03-19 21:51:54 +00001530
1531 case pch::MACRO_DEFINITION_OFFSETS:
1532 MacroDefinitionOffsets = (const uint32_t *)BlobStart;
1533 if (PP) {
1534 if (!PP->getPreprocessingRecord())
1535 PP->createPreprocessingRecord();
1536 PP->getPreprocessingRecord()->SetExternalSource(*this, Record[0]);
1537 } else {
1538 NumPreallocatedPreprocessingEntities = Record[0];
1539 }
1540
1541 MacroDefinitionsLoaded.resize(Record[1]);
1542 break;
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001543 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001544 }
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001545 Error("premature end of bitstream in PCH file");
Douglas Gregor55abb232009-04-10 20:39:37 +00001546 return Failure;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001547}
1548
Douglas Gregor92863e42009-04-10 23:10:45 +00001549PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001550 // Set the PCH file name.
1551 this->FileName = FileName;
1552
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001553 // Open the PCH file.
Daniel Dunbar2d925eb2009-09-22 05:38:01 +00001554 //
1555 // FIXME: This shouldn't be here, we should just take a raw_ostream.
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001556 std::string ErrStr;
Daniel Dunbar69914f42009-11-10 00:46:19 +00001557 Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr));
Douglas Gregor92863e42009-04-10 23:10:45 +00001558 if (!Buffer) {
1559 Error(ErrStr.c_str());
1560 return IgnorePCH;
1561 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001562
1563 // Initialize the stream
Mike Stump11289f42009-09-09 15:08:12 +00001564 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Chris Lattner9356ace2009-04-26 20:59:20 +00001565 (const unsigned char *)Buffer->getBufferEnd());
1566 Stream.init(StreamFile);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001567
1568 // Sniff for the signature.
1569 if (Stream.Read(8) != 'C' ||
1570 Stream.Read(8) != 'P' ||
1571 Stream.Read(8) != 'C' ||
Douglas Gregor92863e42009-04-10 23:10:45 +00001572 Stream.Read(8) != 'H') {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001573 Diag(diag::err_not_a_pch_file) << FileName;
1574 return Failure;
Douglas Gregor92863e42009-04-10 23:10:45 +00001575 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001576
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001577 while (!Stream.AtEndOfStream()) {
1578 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00001579
Douglas Gregor92863e42009-04-10 23:10:45 +00001580 if (Code != llvm::bitc::ENTER_SUBBLOCK) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001581 Error("invalid record at top-level of PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001582 return Failure;
1583 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001584
1585 unsigned BlockID = Stream.ReadSubBlockID();
Douglas Gregora868bbd2009-04-21 22:25:48 +00001586
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001587 // We only know the PCH subblock ID.
1588 switch (BlockID) {
1589 case llvm::bitc::BLOCKINFO_BLOCK_ID:
Douglas Gregor92863e42009-04-10 23:10:45 +00001590 if (Stream.ReadBlockInfoBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001591 Error("malformed BlockInfoBlock in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001592 return Failure;
1593 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001594 break;
1595 case pch::PCH_BLOCK_ID:
Douglas Gregoreda6a892009-04-26 00:07:37 +00001596 switch (ReadPCHBlock()) {
Douglas Gregor55abb232009-04-10 20:39:37 +00001597 case Success:
1598 break;
1599
1600 case Failure:
Douglas Gregor92863e42009-04-10 23:10:45 +00001601 return Failure;
Douglas Gregor55abb232009-04-10 20:39:37 +00001602
1603 case IgnorePCH:
Douglas Gregorbfbde532009-04-10 21:16:55 +00001604 // FIXME: We could consider reading through to the end of this
1605 // PCH block, skipping subblocks, to see if there are other
1606 // PCH blocks elsewhere.
Douglas Gregor0bc12932009-04-27 21:28:04 +00001607
1608 // Clear out any preallocated source location entries, so that
1609 // the source manager does not try to resolve them later.
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001610 SourceMgr.ClearPreallocatedSLocEntries();
Douglas Gregor0bc12932009-04-27 21:28:04 +00001611
1612 // Remove the stat cache.
Douglas Gregord2eb58a2009-10-16 18:18:30 +00001613 if (StatCache)
1614 FileMgr.removeStatCache((PCHStatCache*)StatCache);
Douglas Gregor0bc12932009-04-27 21:28:04 +00001615
Douglas Gregor92863e42009-04-10 23:10:45 +00001616 return IgnorePCH;
Douglas Gregor55abb232009-04-10 20:39:37 +00001617 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001618 break;
1619 default:
Douglas Gregor92863e42009-04-10 23:10:45 +00001620 if (Stream.SkipBlock()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00001621 Error("malformed block record in PCH file");
Douglas Gregor92863e42009-04-10 23:10:45 +00001622 return Failure;
1623 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001624 break;
1625 }
Mike Stump11289f42009-09-09 15:08:12 +00001626 }
1627
Douglas Gregore6648fb2009-04-28 20:33:11 +00001628 // Check the predefines buffer.
Daniel Dunbar20a682d2009-11-11 00:52:11 +00001629 if (CheckPredefinesBuffer(llvm::StringRef(PCHPredefines, PCHPredefinesLen),
Douglas Gregore6648fb2009-04-28 20:33:11 +00001630 PCHPredefinesBufferID))
1631 return IgnorePCH;
Mike Stump11289f42009-09-09 15:08:12 +00001632
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001633 if (PP) {
Zhongxing Xu3f51f412009-07-18 09:26:51 +00001634 // Initialization of keywords and pragmas occurs before the
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001635 // PCH file is read, so there may be some identifiers that were
1636 // loaded into the IdentifierTable before we intercepted the
1637 // creation of identifiers. Iterate through the list of known
1638 // identifiers and determine whether we have to establish
1639 // preprocessor definitions or top-level identifier declaration
1640 // chains for those identifiers.
1641 //
1642 // We copy the IdentifierInfo pointers to a small vector first,
1643 // since de-serializing declarations or macro definitions can add
1644 // new entries into the identifier table, invalidating the
1645 // iterators.
1646 llvm::SmallVector<IdentifierInfo *, 128> Identifiers;
1647 for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(),
1648 IdEnd = PP->getIdentifierTable().end();
1649 Id != IdEnd; ++Id)
1650 Identifiers.push_back(Id->second);
Mike Stump11289f42009-09-09 15:08:12 +00001651 PCHIdentifierLookupTable *IdTable
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001652 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
1653 for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) {
1654 IdentifierInfo *II = Identifiers[I];
1655 // Look in the on-disk hash table for an entry for
1656 PCHIdentifierLookupTrait Info(*this, II);
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001657 std::pair<const char*, unsigned> Key(II->getNameStart(), II->getLength());
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001658 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info);
1659 if (Pos == IdTable->end())
1660 continue;
Mike Stump11289f42009-09-09 15:08:12 +00001661
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001662 // Dereferencing the iterator has the effect of populating the
1663 // IdentifierInfo node with the various declarations it needs.
1664 (void)*Pos;
1665 }
Douglas Gregora868bbd2009-04-21 22:25:48 +00001666 }
1667
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001668 if (Context)
1669 InitializeContext(*Context);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001670
Douglas Gregora868bbd2009-04-21 22:25:48 +00001671 return Success;
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001672}
1673
Douglas Gregoraae92242010-03-19 21:51:54 +00001674void PCHReader::setPreprocessor(Preprocessor &pp) {
1675 PP = &pp;
1676
1677 if (NumPreallocatedPreprocessingEntities) {
1678 if (!PP->getPreprocessingRecord())
1679 PP->createPreprocessingRecord();
1680 PP->getPreprocessingRecord()->SetExternalSource(*this,
1681 NumPreallocatedPreprocessingEntities);
1682 NumPreallocatedPreprocessingEntities = 0;
1683 }
1684}
1685
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001686void PCHReader::InitializeContext(ASTContext &Ctx) {
1687 Context = &Ctx;
1688 assert(Context && "Passed null context!");
1689
1690 assert(PP && "Forgot to set Preprocessor ?");
1691 PP->getIdentifierTable().setExternalIdentifierLookup(this);
1692 PP->getHeaderSearchInfo().SetExternalLookup(this);
Douglas Gregor9882a5a2010-01-04 19:18:44 +00001693 PP->setExternalSource(this);
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00001694
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001695 // Load the translation unit declaration
1696 ReadDeclRecord(DeclOffsets[0], 0);
1697
1698 // Load the special types.
1699 Context->setBuiltinVaListType(
1700 GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST]));
1701 if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID])
1702 Context->setObjCIdType(GetType(Id));
1703 if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR])
1704 Context->setObjCSelType(GetType(Sel));
1705 if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL])
1706 Context->setObjCProtoType(GetType(Proto));
1707 if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS])
1708 Context->setObjCClassType(GetType(Class));
Steve Naroff7cae42b2009-07-10 23:34:53 +00001709
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001710 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING])
1711 Context->setCFConstantStringType(GetType(String));
Mike Stump11289f42009-09-09 15:08:12 +00001712 if (unsigned FastEnum
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001713 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE])
1714 Context->setObjCFastEnumerationStateType(GetType(FastEnum));
Douglas Gregor27821ce2009-07-07 16:35:42 +00001715 if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) {
1716 QualType FileType = GetType(File);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001717 if (FileType.isNull()) {
1718 Error("FILE type is NULL");
1719 return;
1720 }
John McCall9dd450b2009-09-21 23:43:11 +00001721 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
Douglas Gregor27821ce2009-07-07 16:35:42 +00001722 Context->setFILEDecl(Typedef->getDecl());
1723 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001724 const TagType *Tag = FileType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001725 if (!Tag) {
1726 Error("Invalid FILE type in PCH file");
1727 return;
1728 }
Douglas Gregor27821ce2009-07-07 16:35:42 +00001729 Context->setFILEDecl(Tag->getDecl());
1730 }
1731 }
Mike Stumpa4de80b2009-07-28 02:25:19 +00001732 if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) {
1733 QualType Jmp_bufType = GetType(Jmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001734 if (Jmp_bufType.isNull()) {
1735 Error("jmp_bug type is NULL");
1736 return;
1737 }
John McCall9dd450b2009-09-21 23:43:11 +00001738 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00001739 Context->setjmp_bufDecl(Typedef->getDecl());
1740 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001741 const TagType *Tag = Jmp_bufType->getAs<TagType>();
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001742 if (!Tag) {
1743 Error("Invalid jmp_bug type in PCH file");
1744 return;
1745 }
Mike Stumpa4de80b2009-07-28 02:25:19 +00001746 Context->setjmp_bufDecl(Tag->getDecl());
1747 }
1748 }
1749 if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) {
1750 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001751 if (Sigjmp_bufType.isNull()) {
1752 Error("sigjmp_buf type is NULL");
1753 return;
1754 }
John McCall9dd450b2009-09-21 23:43:11 +00001755 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
Mike Stumpa4de80b2009-07-28 02:25:19 +00001756 Context->setsigjmp_bufDecl(Typedef->getDecl());
1757 else {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001758 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
Mike Stumpa4de80b2009-07-28 02:25:19 +00001759 assert(Tag && "Invalid sigjmp_buf type in PCH file");
1760 Context->setsigjmp_bufDecl(Tag->getDecl());
1761 }
1762 }
Mike Stump11289f42009-09-09 15:08:12 +00001763 if (unsigned ObjCIdRedef
Douglas Gregora8eed7d2009-08-21 00:27:50 +00001764 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION])
1765 Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef);
Mike Stump11289f42009-09-09 15:08:12 +00001766 if (unsigned ObjCClassRedef
Douglas Gregora8eed7d2009-08-21 00:27:50 +00001767 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION])
1768 Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef);
Mike Stumpd0153282009-10-20 02:12:22 +00001769 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR])
1770 Context->setBlockDescriptorType(GetType(String));
Mike Stumpe1b19ba2009-10-22 00:49:09 +00001771 if (unsigned String
1772 = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR])
1773 Context->setBlockDescriptorExtendedType(GetType(String));
Fariborz Jahaniane804c282010-04-23 17:41:07 +00001774 if (unsigned ObjCSelRedef
1775 = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION])
1776 Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef);
1777 if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_NS_CONSTANT_STRING])
1778 Context->setNSConstantStringType(GetType(String));
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001779}
1780
Douglas Gregor45fe0362009-05-12 01:31:05 +00001781/// \brief Retrieve the name of the original source file name
1782/// directly from the PCH file, without actually loading the PCH
1783/// file.
Daniel Dunbar3b951482009-12-03 09:13:06 +00001784std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName,
1785 Diagnostic &Diags) {
Douglas Gregor45fe0362009-05-12 01:31:05 +00001786 // Open the PCH file.
1787 std::string ErrStr;
1788 llvm::OwningPtr<llvm::MemoryBuffer> Buffer;
1789 Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr));
1790 if (!Buffer) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001791 Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001792 return std::string();
1793 }
1794
1795 // Initialize the stream
1796 llvm::BitstreamReader StreamFile;
1797 llvm::BitstreamCursor Stream;
Mike Stump11289f42009-09-09 15:08:12 +00001798 StreamFile.init((const unsigned char *)Buffer->getBufferStart(),
Douglas Gregor45fe0362009-05-12 01:31:05 +00001799 (const unsigned char *)Buffer->getBufferEnd());
1800 Stream.init(StreamFile);
1801
1802 // Sniff for the signature.
1803 if (Stream.Read(8) != 'C' ||
1804 Stream.Read(8) != 'P' ||
1805 Stream.Read(8) != 'C' ||
1806 Stream.Read(8) != 'H') {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001807 Diags.Report(diag::err_fe_not_a_pch_file) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001808 return std::string();
1809 }
1810
1811 RecordData Record;
1812 while (!Stream.AtEndOfStream()) {
1813 unsigned Code = Stream.ReadCode();
Mike Stump11289f42009-09-09 15:08:12 +00001814
Douglas Gregor45fe0362009-05-12 01:31:05 +00001815 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1816 unsigned BlockID = Stream.ReadSubBlockID();
Mike Stump11289f42009-09-09 15:08:12 +00001817
Douglas Gregor45fe0362009-05-12 01:31:05 +00001818 // We only know the PCH subblock ID.
1819 switch (BlockID) {
1820 case pch::PCH_BLOCK_ID:
1821 if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001822 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001823 return std::string();
1824 }
1825 break;
Mike Stump11289f42009-09-09 15:08:12 +00001826
Douglas Gregor45fe0362009-05-12 01:31:05 +00001827 default:
1828 if (Stream.SkipBlock()) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001829 Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001830 return std::string();
1831 }
1832 break;
1833 }
1834 continue;
1835 }
1836
1837 if (Code == llvm::bitc::END_BLOCK) {
1838 if (Stream.ReadBlockEnd()) {
Daniel Dunbar3b951482009-12-03 09:13:06 +00001839 Diags.Report(diag::err_fe_pch_error_at_end_block) << PCHFileName;
Douglas Gregor45fe0362009-05-12 01:31:05 +00001840 return std::string();
1841 }
1842 continue;
1843 }
1844
1845 if (Code == llvm::bitc::DEFINE_ABBREV) {
1846 Stream.ReadAbbrevRecord();
1847 continue;
1848 }
1849
1850 Record.clear();
1851 const char *BlobStart = 0;
1852 unsigned BlobLen = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001853 if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen)
Douglas Gregor45fe0362009-05-12 01:31:05 +00001854 == pch::ORIGINAL_FILE_NAME)
1855 return std::string(BlobStart, BlobLen);
Mike Stump11289f42009-09-09 15:08:12 +00001856 }
Douglas Gregor45fe0362009-05-12 01:31:05 +00001857
1858 return std::string();
1859}
1860
Douglas Gregor55abb232009-04-10 20:39:37 +00001861/// \brief Parse the record that corresponds to a LangOptions data
1862/// structure.
1863///
1864/// This routine compares the language options used to generate the
1865/// PCH file against the language options set for the current
1866/// compilation. For each option, we classify differences between the
1867/// two compiler states as either "benign" or "important". Benign
1868/// differences don't matter, and we accept them without complaint
1869/// (and without modifying the language options). Differences between
1870/// the states for important options cause the PCH file to be
1871/// unusable, so we emit a warning and return true to indicate that
1872/// there was an error.
1873///
1874/// \returns true if the PCH file is unacceptable, false otherwise.
1875bool PCHReader::ParseLanguageOptions(
1876 const llvm::SmallVectorImpl<uint64_t> &Record) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001877 if (Listener) {
1878 LangOptions LangOpts;
Mike Stump11289f42009-09-09 15:08:12 +00001879
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001880 #define PARSE_LANGOPT(Option) \
1881 LangOpts.Option = Record[Idx]; \
1882 ++Idx
Mike Stump11289f42009-09-09 15:08:12 +00001883
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001884 unsigned Idx = 0;
1885 PARSE_LANGOPT(Trigraphs);
1886 PARSE_LANGOPT(BCPLComment);
1887 PARSE_LANGOPT(DollarIdents);
1888 PARSE_LANGOPT(AsmPreprocessor);
1889 PARSE_LANGOPT(GNUMode);
Chandler Carruthe03aa552010-04-17 20:17:31 +00001890 PARSE_LANGOPT(GNUKeywords);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001891 PARSE_LANGOPT(ImplicitInt);
1892 PARSE_LANGOPT(Digraphs);
1893 PARSE_LANGOPT(HexFloats);
1894 PARSE_LANGOPT(C99);
1895 PARSE_LANGOPT(Microsoft);
1896 PARSE_LANGOPT(CPlusPlus);
1897 PARSE_LANGOPT(CPlusPlus0x);
1898 PARSE_LANGOPT(CXXOperatorNames);
1899 PARSE_LANGOPT(ObjC1);
1900 PARSE_LANGOPT(ObjC2);
1901 PARSE_LANGOPT(ObjCNonFragileABI);
Fariborz Jahanian45878032010-02-09 19:31:38 +00001902 PARSE_LANGOPT(ObjCNonFragileABI2);
Fariborz Jahanian62c56022010-04-22 21:01:59 +00001903 PARSE_LANGOPT(NoConstantCFStrings);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001904 PARSE_LANGOPT(PascalStrings);
1905 PARSE_LANGOPT(WritableStrings);
1906 PARSE_LANGOPT(LaxVectorConversions);
Nate Begemanf2911662009-06-25 23:01:11 +00001907 PARSE_LANGOPT(AltiVec);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001908 PARSE_LANGOPT(Exceptions);
Daniel Dunbar925152c2010-02-10 18:48:44 +00001909 PARSE_LANGOPT(SjLjExceptions);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001910 PARSE_LANGOPT(NeXTRuntime);
1911 PARSE_LANGOPT(Freestanding);
1912 PARSE_LANGOPT(NoBuiltin);
1913 PARSE_LANGOPT(ThreadsafeStatics);
Douglas Gregorb3286fe2009-09-03 14:36:33 +00001914 PARSE_LANGOPT(POSIXThreads);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001915 PARSE_LANGOPT(Blocks);
1916 PARSE_LANGOPT(EmitAllDecls);
1917 PARSE_LANGOPT(MathErrno);
1918 PARSE_LANGOPT(OverflowChecking);
1919 PARSE_LANGOPT(HeinousExtensions);
1920 PARSE_LANGOPT(Optimize);
1921 PARSE_LANGOPT(OptimizeSize);
1922 PARSE_LANGOPT(Static);
1923 PARSE_LANGOPT(PICLevel);
1924 PARSE_LANGOPT(GNUInline);
1925 PARSE_LANGOPT(NoInline);
1926 PARSE_LANGOPT(AccessControl);
1927 PARSE_LANGOPT(CharIsSigned);
John Thompsoned4e2952009-11-05 20:14:16 +00001928 PARSE_LANGOPT(ShortWChar);
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001929 LangOpts.setGCMode((LangOptions::GCMode)Record[Idx]);
1930 ++Idx;
1931 LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx]);
1932 ++Idx;
Daniel Dunbar143021e2009-09-21 04:16:19 +00001933 LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode)
1934 Record[Idx]);
1935 ++Idx;
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001936 PARSE_LANGOPT(InstantiationDepth);
Nate Begemanf2911662009-06-25 23:01:11 +00001937 PARSE_LANGOPT(OpenCL);
Mike Stumpd9546382009-12-12 01:27:46 +00001938 PARSE_LANGOPT(CatchUndefined);
1939 // FIXME: Missing ElideConstructors?!
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001940 #undef PARSE_LANGOPT
Douglas Gregor55abb232009-04-10 20:39:37 +00001941
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00001942 return Listener->ReadLanguageOptions(LangOpts);
Douglas Gregor55abb232009-04-10 20:39:37 +00001943 }
Douglas Gregor55abb232009-04-10 20:39:37 +00001944
1945 return false;
1946}
1947
Douglas Gregoraae92242010-03-19 21:51:54 +00001948void PCHReader::ReadPreprocessedEntities() {
1949 ReadDefinedMacros();
1950}
1951
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001952/// \brief Read and return the type at the given offset.
1953///
1954/// This routine actually reads the record corresponding to the type
1955/// at the given offset in the bitstream. It is a helper routine for
1956/// GetType, which deals with reading type IDs.
1957QualType PCHReader::ReadTypeRecord(uint64_t Offset) {
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001958 // Keep track of where we are in the stream, then jump back there
1959 // after reading this type.
Douglas Gregor12bfa382009-10-17 00:13:19 +00001960 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001961
Douglas Gregor1342e842009-07-06 18:54:52 +00001962 // Note that we are loading a type record.
1963 LoadingTypeOrDecl Loading(*this);
Mike Stump11289f42009-09-09 15:08:12 +00001964
Douglas Gregor12bfa382009-10-17 00:13:19 +00001965 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001966 RecordData Record;
Douglas Gregor12bfa382009-10-17 00:13:19 +00001967 unsigned Code = DeclsCursor.ReadCode();
1968 switch ((pch::TypeCode)DeclsCursor.ReadRecord(Code, Record)) {
Douglas Gregor455b8f42009-04-15 22:00:08 +00001969 case pch::TYPE_EXT_QUAL: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001970 if (Record.size() != 2) {
1971 Error("Incorrect encoding of extended qualifier type");
1972 return QualType();
1973 }
Douglas Gregor455b8f42009-04-15 22:00:08 +00001974 QualType Base = GetType(Record[0]);
John McCall8ccfcb52009-09-24 19:53:00 +00001975 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]);
1976 return Context->getQualifiedType(Base, Quals);
Douglas Gregor455b8f42009-04-15 22:00:08 +00001977 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00001978
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001979 case pch::TYPE_COMPLEX: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001980 if (Record.size() != 1) {
1981 Error("Incorrect encoding of complex type");
1982 return QualType();
1983 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001984 QualType ElemType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00001985 return Context->getComplexType(ElemType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001986 }
1987
1988 case pch::TYPE_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001989 if (Record.size() != 1) {
1990 Error("Incorrect encoding of pointer type");
1991 return QualType();
1992 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001993 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00001994 return Context->getPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001995 }
1996
1997 case pch::TYPE_BLOCK_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00001998 if (Record.size() != 1) {
1999 Error("Incorrect encoding of block pointer type");
2000 return QualType();
2001 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002002 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002003 return Context->getBlockPointerType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002004 }
2005
2006 case pch::TYPE_LVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002007 if (Record.size() != 1) {
2008 Error("Incorrect encoding of lvalue reference type");
2009 return QualType();
2010 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002011 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002012 return Context->getLValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002013 }
2014
2015 case pch::TYPE_RVALUE_REFERENCE: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002016 if (Record.size() != 1) {
2017 Error("Incorrect encoding of rvalue reference type");
2018 return QualType();
2019 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002020 QualType PointeeType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002021 return Context->getRValueReferenceType(PointeeType);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002022 }
2023
2024 case pch::TYPE_MEMBER_POINTER: {
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002025 if (Record.size() != 1) {
2026 Error("Incorrect encoding of member pointer type");
2027 return QualType();
2028 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002029 QualType PointeeType = GetType(Record[0]);
2030 QualType ClassType = GetType(Record[1]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002031 return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr());
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002032 }
2033
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002034 case pch::TYPE_CONSTANT_ARRAY: {
2035 QualType ElementType = GetType(Record[0]);
2036 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2037 unsigned IndexTypeQuals = Record[2];
2038 unsigned Idx = 3;
2039 llvm::APInt Size = ReadAPInt(Record, Idx);
Douglas Gregor04318252009-07-06 15:59:29 +00002040 return Context->getConstantArrayType(ElementType, Size,
2041 ASM, IndexTypeQuals);
2042 }
2043
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002044 case pch::TYPE_INCOMPLETE_ARRAY: {
2045 QualType ElementType = GetType(Record[0]);
2046 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2047 unsigned IndexTypeQuals = Record[2];
Chris Lattner8575daa2009-04-27 21:45:14 +00002048 return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002049 }
2050
2051 case pch::TYPE_VARIABLE_ARRAY: {
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002052 QualType ElementType = GetType(Record[0]);
2053 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
2054 unsigned IndexTypeQuals = Record[2];
Douglas Gregor04318252009-07-06 15:59:29 +00002055 SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]);
2056 SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002057 return Context->getVariableArrayType(ElementType, ReadTypeExpr(),
Douglas Gregor04318252009-07-06 15:59:29 +00002058 ASM, IndexTypeQuals,
2059 SourceRange(LBLoc, RBLoc));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002060 }
2061
2062 case pch::TYPE_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002063 if (Record.size() != 3) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002064 Error("incorrect encoding of vector type in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002065 return QualType();
2066 }
2067
2068 QualType ElementType = GetType(Record[0]);
2069 unsigned NumElements = Record[1];
Chris Lattner37141f42010-06-23 06:00:24 +00002070 unsigned AltiVecSpec = Record[2];
2071 return Context->getVectorType(ElementType, NumElements,
2072 (VectorType::AltiVecSpecific)AltiVecSpec);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002073 }
2074
2075 case pch::TYPE_EXT_VECTOR: {
Chris Lattner37141f42010-06-23 06:00:24 +00002076 if (Record.size() != 3) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002077 Error("incorrect encoding of extended vector type in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002078 return QualType();
2079 }
2080
2081 QualType ElementType = GetType(Record[0]);
2082 unsigned NumElements = Record[1];
Chris Lattner8575daa2009-04-27 21:45:14 +00002083 return Context->getExtVectorType(ElementType, NumElements);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002084 }
2085
2086 case pch::TYPE_FUNCTION_NO_PROTO: {
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002087 if (Record.size() != 4) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002088 Error("incorrect encoding of no-proto function type");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002089 return QualType();
2090 }
2091 QualType ResultType = GetType(Record[0]);
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002092 FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]);
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002093 return Context->getFunctionNoProtoType(ResultType, Info);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002094 }
2095
2096 case pch::TYPE_FUNCTION_PROTO: {
2097 QualType ResultType = GetType(Record[0]);
Douglas Gregordc728752009-12-22 18:11:50 +00002098 bool NoReturn = Record[1];
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002099 unsigned RegParm = Record[2];
2100 CallingConv CallConv = (CallingConv)Record[3];
2101 unsigned Idx = 4;
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002102 unsigned NumParams = Record[Idx++];
2103 llvm::SmallVector<QualType, 16> ParamTypes;
2104 for (unsigned I = 0; I != NumParams; ++I)
2105 ParamTypes.push_back(GetType(Record[Idx++]));
2106 bool isVariadic = Record[Idx++];
2107 unsigned Quals = Record[Idx++];
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002108 bool hasExceptionSpec = Record[Idx++];
2109 bool hasAnyExceptionSpec = Record[Idx++];
2110 unsigned NumExceptions = Record[Idx++];
2111 llvm::SmallVector<QualType, 2> Exceptions;
2112 for (unsigned I = 0; I != NumExceptions; ++I)
2113 Exceptions.push_back(GetType(Record[Idx++]));
Jay Foad7d0479f2009-05-21 09:52:38 +00002114 return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams,
Sebastian Redl5068f77ac2009-05-27 22:11:52 +00002115 isVariadic, Quals, hasExceptionSpec,
2116 hasAnyExceptionSpec, NumExceptions,
Rafael Espindolac50c27c2010-03-30 20:24:48 +00002117 Exceptions.data(),
Rafael Espindola49b85ab2010-03-30 22:15:11 +00002118 FunctionType::ExtInfo(NoReturn, RegParm,
2119 CallConv));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002120 }
2121
John McCallb96ec562009-12-04 22:46:56 +00002122 case pch::TYPE_UNRESOLVED_USING:
2123 return Context->getTypeDeclType(
2124 cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0])));
2125
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002126 case pch::TYPE_TYPEDEF:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002127 if (Record.size() != 1) {
2128 Error("incorrect encoding of typedef type");
2129 return QualType();
2130 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002131 return Context->getTypeDeclType(cast<TypedefDecl>(GetDecl(Record[0])));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002132
2133 case pch::TYPE_TYPEOF_EXPR:
Chris Lattner8575daa2009-04-27 21:45:14 +00002134 return Context->getTypeOfExprType(ReadTypeExpr());
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002135
2136 case pch::TYPE_TYPEOF: {
2137 if (Record.size() != 1) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002138 Error("incorrect encoding of typeof(type) in PCH file");
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002139 return QualType();
2140 }
2141 QualType UnderlyingType = GetType(Record[0]);
Chris Lattner8575daa2009-04-27 21:45:14 +00002142 return Context->getTypeOfType(UnderlyingType);
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002143 }
Mike Stump11289f42009-09-09 15:08:12 +00002144
Anders Carlsson81df7b82009-06-24 19:06:50 +00002145 case pch::TYPE_DECLTYPE:
2146 return Context->getDecltypeType(ReadTypeExpr());
2147
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002148 case pch::TYPE_RECORD:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002149 if (Record.size() != 1) {
2150 Error("incorrect encoding of record type");
2151 return QualType();
2152 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002153 return Context->getTypeDeclType(cast<RecordDecl>(GetDecl(Record[0])));
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002154
Douglas Gregor1daeb692009-04-13 18:14:40 +00002155 case pch::TYPE_ENUM:
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002156 if (Record.size() != 1) {
2157 Error("incorrect encoding of enum type");
2158 return QualType();
2159 }
Chris Lattner8575daa2009-04-27 21:45:14 +00002160 return Context->getTypeDeclType(cast<EnumDecl>(GetDecl(Record[0])));
Douglas Gregor1daeb692009-04-13 18:14:40 +00002161
John McCallfcc33b02009-09-05 00:15:47 +00002162 case pch::TYPE_ELABORATED: {
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002163 unsigned Idx = 0;
2164 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2165 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2166 QualType NamedType = GetType(Record[Idx++]);
2167 return Context->getElaboratedType(Keyword, NNS, NamedType);
John McCallfcc33b02009-09-05 00:15:47 +00002168 }
2169
Steve Naroffc277ad12009-07-18 15:33:26 +00002170 case pch::TYPE_OBJC_INTERFACE: {
Chris Lattner587cbe12009-04-22 06:45:28 +00002171 unsigned Idx = 0;
2172 ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
John McCall8b07ec22010-05-15 11:32:37 +00002173 return Context->getObjCInterfaceType(ItfD);
2174 }
2175
2176 case pch::TYPE_OBJC_OBJECT: {
2177 unsigned Idx = 0;
2178 QualType Base = GetType(Record[Idx++]);
Chris Lattner587cbe12009-04-22 06:45:28 +00002179 unsigned NumProtos = Record[Idx++];
2180 llvm::SmallVector<ObjCProtocolDecl*, 4> Protos;
2181 for (unsigned I = 0; I != NumProtos; ++I)
2182 Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++])));
John McCall8b07ec22010-05-15 11:32:37 +00002183 return Context->getObjCObjectType(Base, Protos.data(), NumProtos);
Chris Lattner587cbe12009-04-22 06:45:28 +00002184 }
Douglas Gregor85c0fcd2009-04-13 20:46:52 +00002185
Steve Narofffb4330f2009-06-17 22:40:22 +00002186 case pch::TYPE_OBJC_OBJECT_POINTER: {
Chris Lattner6e054af2009-04-22 06:40:03 +00002187 unsigned Idx = 0;
John McCall8b07ec22010-05-15 11:32:37 +00002188 QualType Pointee = GetType(Record[Idx++]);
2189 return Context->getObjCObjectPointerType(Pointee);
Chris Lattner6e054af2009-04-22 06:40:03 +00002190 }
Argyrios Kyrtzidisa7a36df2009-09-29 19:42:55 +00002191
John McCallcebee162009-10-18 09:09:24 +00002192 case pch::TYPE_SUBST_TEMPLATE_TYPE_PARM: {
2193 unsigned Idx = 0;
2194 QualType Parm = GetType(Record[Idx++]);
2195 QualType Replacement = GetType(Record[Idx++]);
2196 return
2197 Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm),
2198 Replacement);
2199 }
John McCalle78aac42010-03-10 03:28:59 +00002200
2201 case pch::TYPE_INJECTED_CLASS_NAME: {
2202 CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0]));
2203 QualType TST = GetType(Record[1]); // probably derivable
2204 return Context->getInjectedClassNameType(D, TST);
2205 }
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00002206
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002207 case pch::TYPE_TEMPLATE_TYPE_PARM: {
2208 unsigned Idx = 0;
2209 unsigned Depth = Record[Idx++];
2210 unsigned Index = Record[Idx++];
2211 bool Pack = Record[Idx++];
2212 IdentifierInfo *Name = GetIdentifierInfo(Record, Idx);
2213 return Context->getTemplateTypeParmType(Depth, Index, Pack, Name);
2214 }
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +00002215
2216 case pch::TYPE_DEPENDENT_NAME: {
2217 unsigned Idx = 0;
2218 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2219 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2220 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2221 return Context->getDependentNameType(Keyword, NNS, Name, QualType());
2222 }
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +00002223
2224 case pch::TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
2225 unsigned Idx = 0;
2226 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
2227 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2228 const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx);
2229 unsigned NumArgs = Record[Idx++];
2230 llvm::SmallVector<TemplateArgument, 8> Args;
2231 Args.reserve(NumArgs);
2232 while (NumArgs--)
2233 Args.push_back(ReadTemplateArgument(Record, Idx));
2234 return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name,
2235 Args.size(), Args.data());
2236 }
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00002237
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002238 case pch::TYPE_TEMPLATE_SPECIALIZATION: {
2239 unsigned Idx = 0;
2240 TemplateName Name = ReadTemplateName(Record, Idx);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002241 llvm::SmallVector<TemplateArgument, 8> Args;
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00002242 ReadTemplateArgumentList(Args, Record, Idx);
2243 QualType Canon = GetType(Record[Idx++]);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002244 return Context->getTemplateSpecializationType(Name, Args.data(),Args.size(),
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00002245 Canon);
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002246 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002247 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002248 // Suppress a GCC warning
2249 return QualType();
2250}
2251
John McCall8f115c62009-10-16 21:56:05 +00002252namespace {
2253
2254class TypeLocReader : public TypeLocVisitor<TypeLocReader> {
2255 PCHReader &Reader;
2256 const PCHReader::RecordData &Record;
2257 unsigned &Idx;
2258
2259public:
2260 TypeLocReader(PCHReader &Reader, const PCHReader::RecordData &Record,
2261 unsigned &Idx)
2262 : Reader(Reader), Record(Record), Idx(Idx) { }
2263
John McCall17001972009-10-18 01:05:36 +00002264 // We want compile-time assurance that we've enumerated all of
2265 // these, so unfortunately we have to declare them first, then
2266 // define them out-of-line.
2267#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCall8f115c62009-10-16 21:56:05 +00002268#define TYPELOC(CLASS, PARENT) \
John McCall17001972009-10-18 01:05:36 +00002269 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCall8f115c62009-10-16 21:56:05 +00002270#include "clang/AST/TypeLocNodes.def"
2271
John McCall17001972009-10-18 01:05:36 +00002272 void VisitFunctionTypeLoc(FunctionTypeLoc);
2273 void VisitArrayTypeLoc(ArrayTypeLoc);
John McCall8f115c62009-10-16 21:56:05 +00002274};
2275
2276}
2277
John McCall17001972009-10-18 01:05:36 +00002278void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
John McCall8f115c62009-10-16 21:56:05 +00002279 // nothing to do
2280}
John McCall17001972009-10-18 01:05:36 +00002281void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +00002282 TL.setBuiltinLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2283 if (TL.needsExtraLocalData()) {
2284 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
2285 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
2286 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
2287 TL.setModeAttr(Record[Idx++]);
2288 }
John McCall8f115c62009-10-16 21:56:05 +00002289}
John McCall17001972009-10-18 01:05:36 +00002290void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
2291 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002292}
John McCall17001972009-10-18 01:05:36 +00002293void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
2294 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002295}
John McCall17001972009-10-18 01:05:36 +00002296void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
2297 TL.setCaretLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002298}
John McCall17001972009-10-18 01:05:36 +00002299void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
2300 TL.setAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002301}
John McCall17001972009-10-18 01:05:36 +00002302void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
2303 TL.setAmpAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002304}
John McCall17001972009-10-18 01:05:36 +00002305void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
2306 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002307}
John McCall17001972009-10-18 01:05:36 +00002308void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
2309 TL.setLBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2310 TL.setRBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002311 if (Record[Idx++])
John McCall17001972009-10-18 01:05:36 +00002312 TL.setSizeExpr(Reader.ReadDeclExpr());
Douglas Gregor12bfa382009-10-17 00:13:19 +00002313 else
John McCall17001972009-10-18 01:05:36 +00002314 TL.setSizeExpr(0);
2315}
2316void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
2317 VisitArrayTypeLoc(TL);
2318}
2319void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
2320 VisitArrayTypeLoc(TL);
2321}
2322void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
2323 VisitArrayTypeLoc(TL);
2324}
2325void TypeLocReader::VisitDependentSizedArrayTypeLoc(
2326 DependentSizedArrayTypeLoc TL) {
2327 VisitArrayTypeLoc(TL);
2328}
2329void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
2330 DependentSizedExtVectorTypeLoc TL) {
2331 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2332}
2333void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
2334 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2335}
2336void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
2337 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2338}
2339void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
2340 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2341 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2342 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) {
John McCalle6347002009-10-23 01:28:53 +00002343 TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
John McCall17001972009-10-18 01:05:36 +00002344 }
2345}
2346void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
2347 VisitFunctionTypeLoc(TL);
2348}
2349void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
2350 VisitFunctionTypeLoc(TL);
2351}
John McCallb96ec562009-12-04 22:46:56 +00002352void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
2353 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2354}
John McCall17001972009-10-18 01:05:36 +00002355void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
2356 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2357}
2358void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +00002359 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2360 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2361 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall17001972009-10-18 01:05:36 +00002362}
2363void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +00002364 TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2365 TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2366 TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2367 TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002368}
2369void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
2370 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2371}
2372void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
2373 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2374}
2375void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
2376 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2377}
John McCall17001972009-10-18 01:05:36 +00002378void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
2379 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2380}
John McCallcebee162009-10-18 09:09:24 +00002381void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
2382 SubstTemplateTypeParmTypeLoc TL) {
2383 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2384}
John McCall17001972009-10-18 01:05:36 +00002385void TypeLocReader::VisitTemplateSpecializationTypeLoc(
2386 TemplateSpecializationTypeLoc TL) {
John McCall0ad16662009-10-29 08:12:44 +00002387 TL.setTemplateNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2388 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2389 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2390 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
2391 TL.setArgLocInfo(i,
2392 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(i).getKind(),
2393 Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002394}
Abramo Bagnara6150c882010-05-11 21:36:43 +00002395void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +00002396 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2397 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002398}
John McCalle78aac42010-03-10 03:28:59 +00002399void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
2400 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2401}
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +00002402void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +00002403 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2404 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
John McCall17001972009-10-18 01:05:36 +00002405 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2406}
John McCallc392f372010-06-11 00:33:02 +00002407void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
2408 DependentTemplateSpecializationTypeLoc TL) {
2409 TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2410 TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx));
2411 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2412 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2413 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2414 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
2415 TL.setArgLocInfo(I,
2416 Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(I).getKind(),
2417 Record, Idx));
2418}
John McCall17001972009-10-18 01:05:36 +00002419void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
2420 TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8b07ec22010-05-15 11:32:37 +00002421}
2422void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
2423 TL.setHasBaseTypeAsWritten(Record[Idx++]);
John McCall17001972009-10-18 01:05:36 +00002424 TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2425 TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
2426 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
2427 TL.setProtocolLoc(i, SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCall8f115c62009-10-16 21:56:05 +00002428}
John McCallfc93cf92009-10-22 22:37:11 +00002429void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
2430 TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallfc93cf92009-10-22 22:37:11 +00002431}
John McCall8f115c62009-10-16 21:56:05 +00002432
John McCallbcd03502009-12-07 02:54:59 +00002433TypeSourceInfo *PCHReader::GetTypeSourceInfo(const RecordData &Record,
John McCall8f115c62009-10-16 21:56:05 +00002434 unsigned &Idx) {
2435 QualType InfoTy = GetType(Record[Idx++]);
2436 if (InfoTy.isNull())
2437 return 0;
2438
John McCallbcd03502009-12-07 02:54:59 +00002439 TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy);
John McCall8f115c62009-10-16 21:56:05 +00002440 TypeLocReader TLR(*this, Record, Idx);
John McCallbcd03502009-12-07 02:54:59 +00002441 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
John McCall8f115c62009-10-16 21:56:05 +00002442 TLR.Visit(TL);
John McCallbcd03502009-12-07 02:54:59 +00002443 return TInfo;
John McCall8f115c62009-10-16 21:56:05 +00002444}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002445
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00002446QualType PCHReader::GetType(pch::TypeID ID) {
John McCall8ccfcb52009-09-24 19:53:00 +00002447 unsigned FastQuals = ID & Qualifiers::FastMask;
2448 unsigned Index = ID >> Qualifiers::FastWidth;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002449
2450 if (Index < pch::NUM_PREDEF_TYPE_IDS) {
2451 QualType T;
2452 switch ((pch::PredefinedTypeIDs)Index) {
2453 case pch::PREDEF_TYPE_NULL_ID: return QualType();
Chris Lattner8575daa2009-04-27 21:45:14 +00002454 case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break;
2455 case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002456
2457 case pch::PREDEF_TYPE_CHAR_U_ID:
2458 case pch::PREDEF_TYPE_CHAR_S_ID:
2459 // FIXME: Check that the signedness of CharTy is correct!
Chris Lattner8575daa2009-04-27 21:45:14 +00002460 T = Context->CharTy;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002461 break;
2462
Chris Lattner8575daa2009-04-27 21:45:14 +00002463 case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break;
2464 case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break;
2465 case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break;
2466 case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break;
2467 case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break;
Chris Lattnerf122cef2009-04-30 02:43:43 +00002468 case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break;
Chris Lattner8575daa2009-04-27 21:45:14 +00002469 case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break;
2470 case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break;
2471 case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break;
2472 case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break;
2473 case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break;
2474 case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break;
Chris Lattnerf122cef2009-04-30 02:43:43 +00002475 case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break;
Chris Lattner8575daa2009-04-27 21:45:14 +00002476 case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break;
2477 case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break;
2478 case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break;
2479 case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break;
2480 case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break;
Sebastian Redl576fd422009-05-10 18:38:11 +00002481 case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break;
Alisdair Mereditha9ad47d2009-07-14 06:30:34 +00002482 case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break;
2483 case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break;
Steve Naroff1329fa02009-07-15 18:40:39 +00002484 case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break;
2485 case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break;
Fariborz Jahanian252ba5f2009-11-21 19:53:08 +00002486 case pch::PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002487 }
2488
2489 assert(!T.isNull() && "Unknown predefined type");
John McCall8ccfcb52009-09-24 19:53:00 +00002490 return T.withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002491 }
2492
2493 Index -= pch::NUM_PREDEF_TYPE_IDS;
Steve Naroffc277ad12009-07-18 15:33:26 +00002494 //assert(Index < TypesLoaded.size() && "Type index out-of-range");
John McCall8ccfcb52009-09-24 19:53:00 +00002495 if (TypesLoaded[Index].isNull())
2496 TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]);
Mike Stump11289f42009-09-09 15:08:12 +00002497
John McCall8ccfcb52009-09-24 19:53:00 +00002498 return TypesLoaded[Index].withFastQualifiers(FastQuals);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002499}
2500
John McCall0ad16662009-10-29 08:12:44 +00002501TemplateArgumentLocInfo
2502PCHReader::GetTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
2503 const RecordData &Record,
2504 unsigned &Index) {
2505 switch (Kind) {
2506 case TemplateArgument::Expression:
2507 return ReadDeclExpr();
2508 case TemplateArgument::Type:
John McCallbcd03502009-12-07 02:54:59 +00002509 return GetTypeSourceInfo(Record, Index);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002510 case TemplateArgument::Template: {
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00002511 SourceLocation
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002512 QualStart = SourceLocation::getFromRawEncoding(Record[Index++]),
2513 QualEnd = SourceLocation::getFromRawEncoding(Record[Index++]),
2514 TemplateNameLoc = SourceLocation::getFromRawEncoding(Record[Index++]);
2515 return TemplateArgumentLocInfo(SourceRange(QualStart, QualEnd),
2516 TemplateNameLoc);
2517 }
John McCall0ad16662009-10-29 08:12:44 +00002518 case TemplateArgument::Null:
2519 case TemplateArgument::Integral:
2520 case TemplateArgument::Declaration:
2521 case TemplateArgument::Pack:
2522 return TemplateArgumentLocInfo();
2523 }
Jeffrey Yasskin1615d452009-12-12 05:05:38 +00002524 llvm_unreachable("unexpected template argument loc");
John McCall0ad16662009-10-29 08:12:44 +00002525 return TemplateArgumentLocInfo();
2526}
2527
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002528TemplateArgumentLoc
2529PCHReader::ReadTemplateArgumentLoc(const RecordData &Record, unsigned &Index) {
2530 TemplateArgument Arg = ReadTemplateArgument(Record, Index);
2531 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(Arg.getKind(),
2532 Record, Index));
2533}
2534
John McCall75b960e2010-06-01 09:23:16 +00002535Decl *PCHReader::GetExternalDecl(uint32_t ID) {
2536 return GetDecl(ID);
2537}
2538
Douglas Gregor1e9bf3b2009-04-10 17:25:41 +00002539Decl *PCHReader::GetDecl(pch::DeclID ID) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002540 if (ID == 0)
2541 return 0;
2542
Douglas Gregor745ed142009-04-25 18:35:21 +00002543 if (ID > DeclsLoaded.size()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002544 Error("declaration ID out-of-range for PCH file");
Douglas Gregor745ed142009-04-25 18:35:21 +00002545 return 0;
2546 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002547
Douglas Gregor745ed142009-04-25 18:35:21 +00002548 unsigned Index = ID - 1;
2549 if (!DeclsLoaded[Index])
2550 ReadDeclRecord(DeclOffsets[Index], Index);
2551
2552 return DeclsLoaded[Index];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002553}
2554
Chris Lattner9c28af02009-04-27 05:46:25 +00002555/// \brief Resolve the offset of a statement into a statement.
2556///
2557/// This operation will read a new statement from the external
2558/// source each time it is called, and is meant to be used via a
2559/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
John McCall75b960e2010-06-01 09:23:16 +00002560Stmt *PCHReader::GetExternalDeclStmt(uint64_t Offset) {
Chris Lattner1de76db2009-04-27 05:58:23 +00002561 // Since we know tha this statement is part of a decl, make sure to use the
2562 // decl cursor to read it.
2563 DeclsCursor.JumpToBit(Offset);
2564 return ReadStmt(DeclsCursor);
Douglas Gregor3c3aa612009-04-18 00:07:54 +00002565}
2566
John McCall75b960e2010-06-01 09:23:16 +00002567bool PCHReader::FindExternalLexicalDecls(const DeclContext *DC,
2568 llvm::SmallVectorImpl<Decl*> &Decls) {
Mike Stump11289f42009-09-09 15:08:12 +00002569 assert(DC->hasExternalLexicalStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002570 "DeclContext has no lexical decls in storage");
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002571
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002572 uint64_t Offset = DeclContextOffsets[DC].first;
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002573 if (Offset == 0) {
2574 Error("DeclContext has no lexical decls in storage");
2575 return true;
2576 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002577
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002578 // Keep track of where we are in the stream, then jump back there
2579 // after reading this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002580 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002581
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002582 // Load the record containing all of the declarations lexically in
2583 // this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002584 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002585 RecordData Record;
Chris Lattner72405d62009-04-27 07:35:40 +00002586 unsigned Code = DeclsCursor.ReadCode();
2587 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002588 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
2589 Error("Expected lexical block");
2590 return true;
2591 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002592
2593 // Load all of the declaration IDs
John McCall75b960e2010-06-01 09:23:16 +00002594 for (RecordData::iterator I = Record.begin(), E = Record.end(); I != E; ++I)
2595 Decls.push_back(GetDecl(*I));
Douglas Gregora57c3ab2009-04-22 22:34:57 +00002596 ++NumLexicalDeclContextsRead;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002597 return false;
2598}
2599
John McCall75b960e2010-06-01 09:23:16 +00002600DeclContext::lookup_result
2601PCHReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
2602 DeclarationName Name) {
Mike Stump11289f42009-09-09 15:08:12 +00002603 assert(DC->hasExternalVisibleStorage() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002604 "DeclContext has no visible decls in storage");
2605 uint64_t Offset = DeclContextOffsets[DC].second;
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002606 if (Offset == 0) {
2607 Error("DeclContext has no visible decls in storage");
John McCall75b960e2010-06-01 09:23:16 +00002608 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2609 DeclContext::lookup_iterator());
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002610 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002611
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002612 // Keep track of where we are in the stream, then jump back there
2613 // after reading this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002614 SavedStreamPosition SavedPosition(DeclsCursor);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00002615
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002616 // Load the record containing all of the declarations visible in
2617 // this context.
Chris Lattner72405d62009-04-27 07:35:40 +00002618 DeclsCursor.JumpToBit(Offset);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002619 RecordData Record;
Chris Lattner72405d62009-04-27 07:35:40 +00002620 unsigned Code = DeclsCursor.ReadCode();
2621 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002622 if (RecCode != pch::DECL_CONTEXT_VISIBLE) {
2623 Error("Expected visible block");
John McCall75b960e2010-06-01 09:23:16 +00002624 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2625 DeclContext::lookup_iterator());
Ted Kremenek1ff615c2010-03-18 00:56:54 +00002626 }
2627
John McCall75b960e2010-06-01 09:23:16 +00002628 llvm::SmallVector<VisibleDeclaration, 64> Decls;
2629 if (Record.empty()) {
2630 SetExternalVisibleDecls(DC, Decls);
2631 return DeclContext::lookup_result(DeclContext::lookup_iterator(),
2632 DeclContext::lookup_iterator());
2633 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002634
2635 unsigned Idx = 0;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002636 while (Idx < Record.size()) {
2637 Decls.push_back(VisibleDeclaration());
2638 Decls.back().Name = ReadDeclarationName(Record, Idx);
2639
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002640 unsigned Size = Record[Idx++];
Chris Lattner72405d62009-04-27 07:35:40 +00002641 llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002642 LoadedDecls.reserve(Size);
2643 for (unsigned I = 0; I < Size; ++I)
2644 LoadedDecls.push_back(Record[Idx++]);
2645 }
2646
Douglas Gregora57c3ab2009-04-22 22:34:57 +00002647 ++NumVisibleDeclContextsRead;
John McCall75b960e2010-06-01 09:23:16 +00002648
2649 SetExternalVisibleDecls(DC, Decls);
2650 return const_cast<DeclContext*>(DC)->lookup(Name);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002651}
2652
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002653void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) {
Douglas Gregorb985eeb2009-04-22 19:09:20 +00002654 this->Consumer = Consumer;
2655
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002656 if (!Consumer)
2657 return;
2658
2659 for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) {
Daniel Dunbar865c2a72009-09-17 03:06:44 +00002660 // Force deserialization of this decl, which will cause it to be passed to
2661 // the consumer (or queued).
2662 GetDecl(ExternalDefinitions[I]);
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002663 }
Douglas Gregorf005eac2009-04-25 00:41:30 +00002664
2665 for (unsigned I = 0, N = InterestingDecls.size(); I != N; ++I) {
2666 DeclGroupRef DG(InterestingDecls[I]);
2667 Consumer->HandleTopLevelDecl(DG);
2668 }
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002669}
2670
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002671void PCHReader::PrintStats() {
2672 std::fprintf(stderr, "*** PCH Statistics:\n");
2673
Mike Stump11289f42009-09-09 15:08:12 +00002674 unsigned NumTypesLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00002675 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
John McCall8ccfcb52009-09-24 19:53:00 +00002676 QualType());
Douglas Gregor0e149972009-04-25 19:10:14 +00002677 unsigned NumDeclsLoaded
2678 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
2679 (Decl *)0);
2680 unsigned NumIdentifiersLoaded
2681 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
2682 IdentifiersLoaded.end(),
2683 (IdentifierInfo *)0);
Mike Stump11289f42009-09-09 15:08:12 +00002684 unsigned NumSelectorsLoaded
Douglas Gregor0e149972009-04-25 19:10:14 +00002685 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
2686 SelectorsLoaded.end(),
2687 Selector());
Douglas Gregorc3b1dd12009-04-13 20:50:16 +00002688
Douglas Gregorc5046832009-04-27 18:38:38 +00002689 std::fprintf(stderr, " %u stat cache hits\n", NumStatHits);
2690 std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses);
Douglas Gregor258ae542009-04-27 06:38:32 +00002691 if (TotalNumSLocEntries)
2692 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
2693 NumSLocEntriesRead, TotalNumSLocEntries,
2694 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
Douglas Gregor745ed142009-04-25 18:35:21 +00002695 if (!TypesLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002696 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00002697 NumTypesLoaded, (unsigned)TypesLoaded.size(),
2698 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
2699 if (!DeclsLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002700 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
Douglas Gregor745ed142009-04-25 18:35:21 +00002701 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
2702 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
Douglas Gregor0e149972009-04-25 19:10:14 +00002703 if (!IdentifiersLoaded.empty())
Douglas Gregor95c13f52009-04-25 17:48:32 +00002704 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
Douglas Gregor0e149972009-04-25 19:10:14 +00002705 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
2706 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
Douglas Gregor95c13f52009-04-25 17:48:32 +00002707 if (TotalNumSelectors)
2708 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
2709 NumSelectorsLoaded, TotalNumSelectors,
2710 ((float)NumSelectorsLoaded/TotalNumSelectors * 100));
2711 if (TotalNumStatements)
2712 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
2713 NumStatementsRead, TotalNumStatements,
2714 ((float)NumStatementsRead/TotalNumStatements * 100));
2715 if (TotalNumMacros)
2716 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
2717 NumMacrosRead, TotalNumMacros,
2718 ((float)NumMacrosRead/TotalNumMacros * 100));
2719 if (TotalLexicalDeclContexts)
2720 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
2721 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
2722 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
2723 * 100));
2724 if (TotalVisibleDeclContexts)
2725 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
2726 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
2727 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
2728 * 100));
2729 if (TotalSelectorsInMethodPool) {
2730 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
2731 NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool,
2732 ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool
2733 * 100));
2734 std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses);
2735 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002736 std::fprintf(stderr, "\n");
2737}
2738
Douglas Gregora868bbd2009-04-21 22:25:48 +00002739void PCHReader::InitializeSema(Sema &S) {
2740 SemaObj = &S;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002741 S.ExternalSource = this;
2742
Douglas Gregor7cd60f72009-04-22 21:15:06 +00002743 // Makes sure any declarations that were deserialized "too early"
2744 // still get added to the identifier's declaration chains.
2745 for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) {
2746 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I]));
2747 SemaObj->IdResolver.AddDecl(PreloadedDecls[I]);
Douglas Gregora868bbd2009-04-21 22:25:48 +00002748 }
Douglas Gregor7cd60f72009-04-22 21:15:06 +00002749 PreloadedDecls.clear();
Douglas Gregord4df8652009-04-22 22:02:47 +00002750
2751 // If there were any tentative definitions, deserialize them and add
Sebastian Redl35351a92010-01-31 22:27:38 +00002752 // them to Sema's list of tentative definitions.
Douglas Gregord4df8652009-04-22 22:02:47 +00002753 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
2754 VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I]));
Sebastian Redl35351a92010-01-31 22:27:38 +00002755 SemaObj->TentativeDefinitions.push_back(Var);
Douglas Gregord4df8652009-04-22 22:02:47 +00002756 }
Kovarththanan Rajaratnam39f2fbd12010-03-07 19:10:13 +00002757
Tanya Lattner90073802010-02-12 00:07:30 +00002758 // If there were any unused static functions, deserialize them and add to
2759 // Sema's list of unused static functions.
2760 for (unsigned I = 0, N = UnusedStaticFuncs.size(); I != N; ++I) {
2761 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(UnusedStaticFuncs[I]));
2762 SemaObj->UnusedStaticFuncs.push_back(FD);
2763 }
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002764
2765 // If there were any locally-scoped external declarations,
2766 // deserialize them and add them to Sema's table of locally-scoped
2767 // external declarations.
2768 for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) {
2769 NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I]));
2770 SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D;
2771 }
Douglas Gregor61cac2b2009-04-27 20:06:05 +00002772
2773 // If there were any ext_vector type declarations, deserialize them
2774 // and add them to Sema's vector of such declarations.
2775 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I)
2776 SemaObj->ExtVectorDecls.push_back(
2777 cast<TypedefDecl>(GetDecl(ExtVectorDecls[I])));
Douglas Gregora868bbd2009-04-21 22:25:48 +00002778}
2779
2780IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) {
2781 // Try to find this name within our on-disk hash table
Mike Stump11289f42009-09-09 15:08:12 +00002782 PCHIdentifierLookupTable *IdTable
Douglas Gregora868bbd2009-04-21 22:25:48 +00002783 = (PCHIdentifierLookupTable *)IdentifierLookupTable;
2784 std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart);
2785 PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key);
2786 if (Pos == IdTable->end())
2787 return 0;
2788
2789 // Dereferencing the iterator has the effect of building the
2790 // IdentifierInfo node and populating it with the various
2791 // declarations it needs.
2792 return *Pos;
2793}
2794
Mike Stump11289f42009-09-09 15:08:12 +00002795std::pair<ObjCMethodList, ObjCMethodList>
Douglas Gregorc78d3462009-04-24 21:10:55 +00002796PCHReader::ReadMethodPool(Selector Sel) {
2797 if (!MethodPoolLookupTable)
2798 return std::pair<ObjCMethodList, ObjCMethodList>();
2799
2800 // Try to find this selector within our on-disk hash table.
2801 PCHMethodPoolLookupTable *PoolTable
2802 = (PCHMethodPoolLookupTable*)MethodPoolLookupTable;
2803 PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel);
Douglas Gregor95c13f52009-04-25 17:48:32 +00002804 if (Pos == PoolTable->end()) {
2805 ++NumMethodPoolMisses;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002806 return std::pair<ObjCMethodList, ObjCMethodList>();;
Douglas Gregor95c13f52009-04-25 17:48:32 +00002807 }
Douglas Gregorc78d3462009-04-24 21:10:55 +00002808
Douglas Gregor95c13f52009-04-25 17:48:32 +00002809 ++NumMethodPoolSelectorsRead;
Douglas Gregorc78d3462009-04-24 21:10:55 +00002810 return *Pos;
2811}
2812
Douglas Gregor0e149972009-04-25 19:10:14 +00002813void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) {
Douglas Gregora868bbd2009-04-21 22:25:48 +00002814 assert(ID && "Non-zero identifier ID required");
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002815 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
Douglas Gregor0e149972009-04-25 19:10:14 +00002816 IdentifiersLoaded[ID - 1] = II;
Douglas Gregora868bbd2009-04-21 22:25:48 +00002817}
2818
Douglas Gregor1342e842009-07-06 18:54:52 +00002819/// \brief Set the globally-visible declarations associated with the given
2820/// identifier.
2821///
2822/// If the PCH reader is currently in a state where the given declaration IDs
Mike Stump11289f42009-09-09 15:08:12 +00002823/// cannot safely be resolved, they are queued until it is safe to resolve
Douglas Gregor1342e842009-07-06 18:54:52 +00002824/// them.
2825///
2826/// \param II an IdentifierInfo that refers to one or more globally-visible
2827/// declarations.
2828///
2829/// \param DeclIDs the set of declaration IDs with the name @p II that are
2830/// visible at global scope.
2831///
2832/// \param Nonrecursive should be true to indicate that the caller knows that
2833/// this call is non-recursive, and therefore the globally-visible declarations
2834/// will not be placed onto the pending queue.
Mike Stump11289f42009-09-09 15:08:12 +00002835void
2836PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II,
Douglas Gregor1342e842009-07-06 18:54:52 +00002837 const llvm::SmallVectorImpl<uint32_t> &DeclIDs,
2838 bool Nonrecursive) {
2839 if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) {
2840 PendingIdentifierInfos.push_back(PendingIdentifierInfo());
2841 PendingIdentifierInfo &PII = PendingIdentifierInfos.back();
2842 PII.II = II;
2843 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I)
2844 PII.DeclIDs.push_back(DeclIDs[I]);
2845 return;
2846 }
Mike Stump11289f42009-09-09 15:08:12 +00002847
Douglas Gregor1342e842009-07-06 18:54:52 +00002848 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
2849 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
2850 if (SemaObj) {
2851 // Introduce this declaration into the translation-unit scope
2852 // and add it to the declaration chain for this identifier, so
2853 // that (unqualified) name lookup will find it.
2854 SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D));
2855 SemaObj->IdResolver.AddDeclToIdentifierChain(II, D);
2856 } else {
2857 // Queue this declaration so that it will be added to the
2858 // translation unit scope and identifier's declaration chain
2859 // once a Sema object is known.
2860 PreloadedDecls.push_back(D);
2861 }
2862 }
2863}
2864
Chris Lattnerc523d8e2009-04-11 21:15:38 +00002865IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) {
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002866 if (ID == 0)
2867 return 0;
Mike Stump11289f42009-09-09 15:08:12 +00002868
Douglas Gregor0e149972009-04-25 19:10:14 +00002869 if (!IdentifierTableData || IdentifiersLoaded.empty()) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002870 Error("no identifier table in PCH file");
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002871 return 0;
2872 }
Mike Stump11289f42009-09-09 15:08:12 +00002873
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00002874 assert(PP && "Forgot to set Preprocessor ?");
Douglas Gregor0e149972009-04-25 19:10:14 +00002875 if (!IdentifiersLoaded[ID - 1]) {
2876 uint32_t Offset = IdentifierOffsets[ID - 1];
Douglas Gregor95272492009-04-25 21:21:38 +00002877 const char *Str = IdentifierTableData + Offset;
Douglas Gregor5287b4e2009-04-25 21:04:17 +00002878
Douglas Gregorab4df582009-04-28 20:01:51 +00002879 // All of the strings in the PCH file are preceded by a 16-bit
2880 // length. Extract that 16-bit length to avoid having to execute
2881 // strlen().
Ted Kremenekca42a512009-10-23 04:45:31 +00002882 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
2883 // unsigned integers. This is important to avoid integer overflow when
2884 // we cast them to 'unsigned'.
Ted Kremenek49c52322009-10-23 03:57:22 +00002885 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
Douglas Gregorab4df582009-04-28 20:01:51 +00002886 unsigned StrLen = (((unsigned) StrLenPtr[0])
2887 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Mike Stump11289f42009-09-09 15:08:12 +00002888 IdentifiersLoaded[ID - 1]
Kovarththanan Rajaratnama3b09592010-03-12 10:32:27 +00002889 = &PP->getIdentifierTable().get(Str, StrLen);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002890 }
Mike Stump11289f42009-09-09 15:08:12 +00002891
Douglas Gregor0e149972009-04-25 19:10:14 +00002892 return IdentifiersLoaded[ID - 1];
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002893}
2894
Douglas Gregor258ae542009-04-27 06:38:32 +00002895void PCHReader::ReadSLocEntry(unsigned ID) {
2896 ReadSLocEntryRecord(ID);
2897}
2898
Steve Naroff2ddea052009-04-23 10:39:46 +00002899Selector PCHReader::DecodeSelector(unsigned ID) {
2900 if (ID == 0)
2901 return Selector();
Mike Stump11289f42009-09-09 15:08:12 +00002902
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002903 if (!MethodPoolLookupTableData)
Steve Naroff2ddea052009-04-23 10:39:46 +00002904 return Selector();
Douglas Gregor95c13f52009-04-25 17:48:32 +00002905
2906 if (ID > TotalNumSelectors) {
Douglas Gregor6f00bf82009-04-28 21:53:25 +00002907 Error("selector ID out of range in PCH file");
Steve Naroff2ddea052009-04-23 10:39:46 +00002908 return Selector();
2909 }
Douglas Gregor95c13f52009-04-25 17:48:32 +00002910
2911 unsigned Index = ID - 1;
2912 if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) {
2913 // Load this selector from the selector table.
2914 // FIXME: endianness portability issues with SelectorOffsets table
2915 PCHMethodPoolLookupTrait Trait(*this);
Mike Stump11289f42009-09-09 15:08:12 +00002916 SelectorsLoaded[Index]
Douglas Gregor95c13f52009-04-25 17:48:32 +00002917 = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0);
2918 }
2919
2920 return SelectorsLoaded[Index];
Steve Naroff2ddea052009-04-23 10:39:46 +00002921}
2922
John McCall75b960e2010-06-01 09:23:16 +00002923Selector PCHReader::GetExternalSelector(uint32_t ID) {
Douglas Gregord720daf2010-04-06 17:30:22 +00002924 return DecodeSelector(ID);
2925}
2926
John McCall75b960e2010-06-01 09:23:16 +00002927uint32_t PCHReader::GetNumExternalSelectors() {
Douglas Gregord720daf2010-04-06 17:30:22 +00002928 return TotalNumSelectors + 1;
2929}
2930
Mike Stump11289f42009-09-09 15:08:12 +00002931DeclarationName
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002932PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) {
2933 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
2934 switch (Kind) {
2935 case DeclarationName::Identifier:
2936 return DeclarationName(GetIdentifierInfo(Record, Idx));
2937
2938 case DeclarationName::ObjCZeroArgSelector:
2939 case DeclarationName::ObjCOneArgSelector:
2940 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff3c301dc2009-04-23 15:15:40 +00002941 return DeclarationName(GetSelector(Record, Idx));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002942
2943 case DeclarationName::CXXConstructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002944 return Context->DeclarationNames.getCXXConstructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002945 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002946
2947 case DeclarationName::CXXDestructorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002948 return Context->DeclarationNames.getCXXDestructorName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002949 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002950
2951 case DeclarationName::CXXConversionFunctionName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002952 return Context->DeclarationNames.getCXXConversionFunctionName(
Douglas Gregor2211d342009-08-05 05:36:45 +00002953 Context->getCanonicalType(GetType(Record[Idx++])));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002954
2955 case DeclarationName::CXXOperatorName:
Chris Lattner8575daa2009-04-27 21:45:14 +00002956 return Context->DeclarationNames.getCXXOperatorName(
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002957 (OverloadedOperatorKind)Record[Idx++]);
2958
Alexis Hunt3d221f22009-11-29 07:34:05 +00002959 case DeclarationName::CXXLiteralOperatorName:
2960 return Context->DeclarationNames.getCXXLiteralOperatorName(
2961 GetIdentifierInfo(Record, Idx));
2962
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002963 case DeclarationName::CXXUsingDirective:
2964 return DeclarationName::getUsingDirectiveName();
2965 }
2966
2967 // Required to silence GCC warning
2968 return DeclarationName();
2969}
Douglas Gregor55abb232009-04-10 20:39:37 +00002970
Argyrios Kyrtzidis95c04ca2010-06-19 19:29:09 +00002971TemplateName
2972PCHReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) {
2973 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
2974 switch (Kind) {
2975 case TemplateName::Template:
2976 return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++])));
2977
2978 case TemplateName::OverloadedTemplate: {
2979 unsigned size = Record[Idx++];
2980 UnresolvedSet<8> Decls;
2981 while (size--)
2982 Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++])));
2983
2984 return Context->getOverloadedTemplateName(Decls.begin(), Decls.end());
2985 }
2986
2987 case TemplateName::QualifiedTemplate: {
2988 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2989 bool hasTemplKeyword = Record[Idx++];
2990 TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++]));
2991 return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
2992 }
2993
2994 case TemplateName::DependentTemplate: {
2995 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx);
2996 if (Record[Idx++]) // isIdentifier
2997 return Context->getDependentTemplateName(NNS,
2998 GetIdentifierInfo(Record, Idx));
2999 return Context->getDependentTemplateName(NNS,
3000 (OverloadedOperatorKind)Record[Idx++]);
3001 }
3002 }
3003
3004 assert(0 && "Unhandled template name kind!");
3005 return TemplateName();
3006}
3007
3008TemplateArgument
3009PCHReader::ReadTemplateArgument(const RecordData &Record, unsigned &Idx) {
3010 switch ((TemplateArgument::ArgKind)Record[Idx++]) {
3011 case TemplateArgument::Null:
3012 return TemplateArgument();
3013 case TemplateArgument::Type:
3014 return TemplateArgument(GetType(Record[Idx++]));
3015 case TemplateArgument::Declaration:
3016 return TemplateArgument(GetDecl(Record[Idx++]));
3017 case TemplateArgument::Integral:
3018 return TemplateArgument(ReadAPSInt(Record, Idx), GetType(Record[Idx++]));
3019 case TemplateArgument::Template:
3020 return TemplateArgument(ReadTemplateName(Record, Idx));
3021 case TemplateArgument::Expression:
3022 return TemplateArgument(ReadDeclExpr());
3023 case TemplateArgument::Pack: {
3024 unsigned NumArgs = Record[Idx++];
3025 llvm::SmallVector<TemplateArgument, 8> Args;
3026 Args.reserve(NumArgs);
3027 while (NumArgs--)
3028 Args.push_back(ReadTemplateArgument(Record, Idx));
3029 TemplateArgument TemplArg;
3030 TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true);
3031 return TemplArg;
3032 }
3033 }
3034
3035 assert(0 && "Unhandled template argument kind!");
3036 return TemplateArgument();
3037}
3038
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00003039TemplateParameterList *
3040PCHReader::ReadTemplateParameterList(const RecordData &Record, unsigned &Idx) {
3041 SourceLocation TemplateLoc = ReadSourceLocation(Record, Idx);
3042 SourceLocation LAngleLoc = ReadSourceLocation(Record, Idx);
3043 SourceLocation RAngleLoc = ReadSourceLocation(Record, Idx);
3044
3045 unsigned NumParams = Record[Idx++];
3046 llvm::SmallVector<NamedDecl *, 16> Params;
3047 Params.reserve(NumParams);
3048 while (NumParams--)
3049 Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++])));
3050
3051 TemplateParameterList* TemplateParams =
3052 TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc,
3053 Params.data(), Params.size(), RAngleLoc);
3054 return TemplateParams;
3055}
3056
3057void
3058PCHReader::
3059ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs,
3060 const RecordData &Record, unsigned &Idx) {
3061 unsigned NumTemplateArgs = Record[Idx++];
3062 TemplArgs.reserve(NumTemplateArgs);
3063 while (NumTemplateArgs--)
3064 TemplArgs.push_back(ReadTemplateArgument(Record, Idx));
3065}
3066
Chris Lattnerca025db2010-05-07 21:43:38 +00003067NestedNameSpecifier *
3068PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) {
3069 unsigned N = Record[Idx++];
3070 NestedNameSpecifier *NNS = 0, *Prev = 0;
3071 for (unsigned I = 0; I != N; ++I) {
3072 NestedNameSpecifier::SpecifierKind Kind
3073 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
3074 switch (Kind) {
3075 case NestedNameSpecifier::Identifier: {
3076 IdentifierInfo *II = GetIdentifierInfo(Record, Idx);
3077 NNS = NestedNameSpecifier::Create(*Context, Prev, II);
3078 break;
3079 }
3080
3081 case NestedNameSpecifier::Namespace: {
3082 NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++]));
3083 NNS = NestedNameSpecifier::Create(*Context, Prev, NS);
3084 break;
3085 }
3086
3087 case NestedNameSpecifier::TypeSpec:
3088 case NestedNameSpecifier::TypeSpecWithTemplate: {
3089 Type *T = GetType(Record[Idx++]).getTypePtr();
3090 bool Template = Record[Idx++];
3091 NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T);
3092 break;
3093 }
3094
3095 case NestedNameSpecifier::Global: {
3096 NNS = NestedNameSpecifier::GlobalSpecifier(*Context);
3097 // No associated value, and there can't be a prefix.
3098 break;
3099 }
3100 Prev = NNS;
3101 }
3102 }
3103 return NNS;
3104}
3105
3106SourceRange
3107PCHReader::ReadSourceRange(const RecordData &Record, unsigned &Idx) {
Daniel Dunbar6d3bc082010-06-02 15:47:10 +00003108 SourceLocation beg = SourceLocation::getFromRawEncoding(Record[Idx++]);
3109 SourceLocation end = SourceLocation::getFromRawEncoding(Record[Idx++]);
3110 return SourceRange(beg, end);
Chris Lattnerca025db2010-05-07 21:43:38 +00003111}
3112
Douglas Gregor1daeb692009-04-13 18:14:40 +00003113/// \brief Read an integral value
3114llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
3115 unsigned BitWidth = Record[Idx++];
3116 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
3117 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
3118 Idx += NumWords;
3119 return Result;
3120}
3121
3122/// \brief Read a signed integral value
3123llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
3124 bool isUnsigned = Record[Idx++];
3125 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
3126}
3127
Douglas Gregore0a3a512009-04-14 21:55:33 +00003128/// \brief Read a floating-point value
3129llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) {
Douglas Gregore0a3a512009-04-14 21:55:33 +00003130 return llvm::APFloat(ReadAPInt(Record, Idx));
3131}
3132
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00003133// \brief Read a string
3134std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) {
3135 unsigned Len = Record[Idx++];
Jay Foad7d0479f2009-05-21 09:52:38 +00003136 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00003137 Idx += Len;
3138 return Result;
3139}
3140
Chris Lattnercba86142010-05-10 00:25:06 +00003141CXXTemporary *PCHReader::ReadCXXTemporary(const RecordData &Record,
3142 unsigned &Idx) {
3143 CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++]));
3144 return CXXTemporary::Create(*Context, Decl);
3145}
3146
Douglas Gregor55abb232009-04-10 20:39:37 +00003147DiagnosticBuilder PCHReader::Diag(unsigned DiagID) {
Douglas Gregor92863e42009-04-10 23:10:45 +00003148 return Diag(SourceLocation(), DiagID);
3149}
3150
3151DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00003152 return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID);
Douglas Gregor55abb232009-04-10 20:39:37 +00003153}
Douglas Gregora9af1d12009-04-17 00:04:06 +00003154
Douglas Gregora868bbd2009-04-21 22:25:48 +00003155/// \brief Retrieve the identifier table associated with the
3156/// preprocessor.
3157IdentifierTable &PCHReader::getIdentifierTable() {
Argyrios Kyrtzidis366985d2009-06-19 00:03:23 +00003158 assert(PP && "Forgot to set Preprocessor ?");
3159 return PP->getIdentifierTable();
Douglas Gregora868bbd2009-04-21 22:25:48 +00003160}
3161
Douglas Gregora9af1d12009-04-17 00:04:06 +00003162/// \brief Record that the given ID maps to the given switch-case
3163/// statement.
3164void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
3165 assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID");
3166 SwitchCaseStmts[ID] = SC;
3167}
3168
3169/// \brief Retrieve the switch-case statement with the given ID.
3170SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) {
3171 assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID");
3172 return SwitchCaseStmts[ID];
3173}
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003174
3175/// \brief Record that the given label statement has been
3176/// deserialized and has the given ID.
3177void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) {
Mike Stump11289f42009-09-09 15:08:12 +00003178 assert(LabelStmts.find(ID) == LabelStmts.end() &&
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003179 "Deserialized label twice");
3180 LabelStmts[ID] = S;
3181
3182 // If we've already seen any goto statements that point to this
3183 // label, resolve them now.
3184 typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter;
3185 std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID);
3186 for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto)
3187 Goto->second->setLabel(S);
3188 UnresolvedGotoStmts.erase(Gotos.first, Gotos.second);
Douglas Gregor779d8652009-04-17 18:58:21 +00003189
3190 // If we've already seen any address-label statements that point to
3191 // this label, resolve them now.
3192 typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter;
Mike Stump11289f42009-09-09 15:08:12 +00003193 std::pair<AddrLabelIter, AddrLabelIter> AddrLabels
Douglas Gregor779d8652009-04-17 18:58:21 +00003194 = UnresolvedAddrLabelExprs.equal_range(ID);
Mike Stump11289f42009-09-09 15:08:12 +00003195 for (AddrLabelIter AddrLabel = AddrLabels.first;
Douglas Gregor779d8652009-04-17 18:58:21 +00003196 AddrLabel != AddrLabels.second; ++AddrLabel)
3197 AddrLabel->second->setLabel(S);
3198 UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second);
Douglas Gregor6cc68a42009-04-17 18:18:49 +00003199}
3200
3201/// \brief Set the label of the given statement to the label
3202/// identified by ID.
3203///
3204/// Depending on the order in which the label and other statements
3205/// referencing that label occur, this operation may complete
3206/// immediately (updating the statement) or it may queue the
3207/// statement to be back-patched later.
3208void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) {
3209 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3210 if (Label != LabelStmts.end()) {
3211 // We've already seen this label, so set the label of the goto and
3212 // we're done.
3213 S->setLabel(Label->second);
3214 } else {
3215 // We haven't seen this label yet, so add this goto to the set of
3216 // unresolved goto statements.
3217 UnresolvedGotoStmts.insert(std::make_pair(ID, S));
3218 }
3219}
Douglas Gregor779d8652009-04-17 18:58:21 +00003220
3221/// \brief Set the label of the given expression to the label
3222/// identified by ID.
3223///
3224/// Depending on the order in which the label and other statements
3225/// referencing that label occur, this operation may complete
3226/// immediately (updating the statement) or it may queue the
3227/// statement to be back-patched later.
3228void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) {
3229 std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID);
3230 if (Label != LabelStmts.end()) {
3231 // We've already seen this label, so set the label of the
3232 // label-address expression and we're done.
3233 S->setLabel(Label->second);
3234 } else {
3235 // We haven't seen this label yet, so add this label-address
3236 // expression to the set of unresolved label-address expressions.
3237 UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S));
3238 }
3239}
Douglas Gregor1342e842009-07-06 18:54:52 +00003240
3241
Mike Stump11289f42009-09-09 15:08:12 +00003242PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader)
Douglas Gregor1342e842009-07-06 18:54:52 +00003243 : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) {
3244 Reader.CurrentlyLoadingTypeOrDecl = this;
3245}
3246
3247PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() {
3248 if (!Parent) {
3249 // If any identifiers with corresponding top-level declarations have
3250 // been loaded, load those declarations now.
3251 while (!Reader.PendingIdentifierInfos.empty()) {
3252 Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II,
3253 Reader.PendingIdentifierInfos.front().DeclIDs,
3254 true);
3255 Reader.PendingIdentifierInfos.pop_front();
3256 }
3257 }
3258
Mike Stump11289f42009-09-09 15:08:12 +00003259 Reader.CurrentlyLoadingTypeOrDecl = Parent;
Douglas Gregor1342e842009-07-06 18:54:52 +00003260}