Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1 | //===--- 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 Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 13 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 14 | #include "clang/Frontend/PCHReader.h" |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 15 | #include "clang/Frontend/FrontendDiagnostic.h" |
Daniel Dunbar | c716293 | 2009-11-11 23:58:53 +0000 | [diff] [blame] | 16 | #include "clang/Frontend/Utils.h" |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 17 | #include "../Sema/Sema.h" // FIXME: move Sema headers elsewhere |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 19 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 20 | #include "clang/AST/Expr.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 21 | #include "clang/AST/Type.h" |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeLocVisitor.h" |
Chris Lattner | 42d42b5 | 2009-04-10 21:41:48 +0000 | [diff] [blame] | 23 | #include "clang/Lex/MacroInfo.h" |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 24 | #include "clang/Lex/PreprocessingRecord.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 25 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 26 | #include "clang/Lex/HeaderSearch.h" |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 27 | #include "clang/Basic/OnDiskHashTable.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 28 | #include "clang/Basic/SourceManager.h" |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 29 | #include "clang/Basic/SourceManagerInternals.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 30 | #include "clang/Basic/FileManager.h" |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 31 | #include "clang/Basic/TargetInfo.h" |
Douglas Gregor | 445e23e | 2009-10-05 21:07:28 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Version.h" |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 34 | #include "llvm/Bitcode/BitstreamReader.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 35 | #include "llvm/Support/MemoryBuffer.h" |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | d5b2197 | 2009-11-18 19:50:41 +0000 | [diff] [blame] | 37 | #include "llvm/System/Path.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 38 | #include <algorithm> |
Douglas Gregor | e721f95 | 2009-04-28 18:58:38 +0000 | [diff] [blame] | 39 | #include <iterator> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 40 | #include <cstdio> |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 41 | #include <sys/stat.h> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 42 | using namespace clang; |
| 43 | |
| 44 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 45 | // PCH reader validator implementation |
| 46 | //===----------------------------------------------------------------------===// |
| 47 | |
| 48 | PCHReaderListener::~PCHReaderListener() {} |
| 49 | |
| 50 | bool |
| 51 | PCHValidator::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 Carruth | eb5d7b7 | 2010-04-17 20:17:31 +0000 | [diff] [blame] | 65 | PARSE_LANGOPT_IMPORTANT(GNUKeywords, diag::warn_pch_gnu_keywords); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 66 | 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 Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 77 | PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI2, diag::warn_pch_nonfragile_abi2); |
Fariborz Jahanian | 4c9d8d0 | 2010-04-22 21:01:59 +0000 | [diff] [blame] | 78 | PARSE_LANGOPT_IMPORTANT(NoConstantCFStrings, |
| 79 | diag::warn_pch_no_constant_cfstrings); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 80 | PARSE_LANGOPT_BENIGN(PascalStrings); |
| 81 | PARSE_LANGOPT_BENIGN(WritableStrings); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 82 | PARSE_LANGOPT_IMPORTANT(LaxVectorConversions, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 83 | diag::warn_pch_lax_vector_conversions); |
Nate Begeman | 69cfb9b | 2009-06-25 22:57:40 +0000 | [diff] [blame] | 84 | PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 85 | PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions); |
Daniel Dunbar | 7348288 | 2010-02-10 18:48:44 +0000 | [diff] [blame] | 86 | PARSE_LANGOPT_IMPORTANT(SjLjExceptions, diag::warn_pch_sjlj_exceptions); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 87 | 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 Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 90 | PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 91 | diag::warn_pch_thread_safe_statics); |
Daniel Dunbar | 5345c39 | 2009-09-03 04:54:28 +0000 | [diff] [blame] | 92 | PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 93 | PARSE_LANGOPT_IMPORTANT(Blocks, diag::warn_pch_blocks); |
| 94 | PARSE_LANGOPT_BENIGN(EmitAllDecls); |
| 95 | PARSE_LANGOPT_IMPORTANT(MathErrno, diag::warn_pch_math_errno); |
Chris Lattner | a4d7145 | 2010-06-26 21:25:03 +0000 | [diff] [blame] | 96 | PARSE_LANGOPT_BENIGN(getSignedOverflowBehavior()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 97 | PARSE_LANGOPT_IMPORTANT(HeinousExtensions, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 98 | 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 Thompson | a6fda12 | 2009-11-05 20:14:16 +0000 | [diff] [blame] | 114 | PARSE_LANGOPT_IMPORTANT(ShortWChar, diag::warn_pch_short_wchar); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 115 | if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 116 | Reader.Diag(diag::warn_pch_gc_mode) |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 117 | << LangOpts.getGCMode() << PPLangOpts.getGCMode(); |
| 118 | return true; |
| 119 | } |
| 120 | PARSE_LANGOPT_BENIGN(getVisibilityMode()); |
Daniel Dunbar | ab8e281 | 2009-09-21 04:16:19 +0000 | [diff] [blame] | 121 | PARSE_LANGOPT_IMPORTANT(getStackProtectorMode(), |
| 122 | diag::warn_pch_stack_protector); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 123 | PARSE_LANGOPT_BENIGN(InstantiationDepth); |
Nate Begeman | 69cfb9b | 2009-06-25 22:57:40 +0000 | [diff] [blame] | 124 | PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl); |
Mike Stump | 9c276ae | 2009-12-12 01:27:46 +0000 | [diff] [blame] | 125 | PARSE_LANGOPT_BENIGN(CatchUndefined); |
Daniel Dunbar | ab8e281 | 2009-09-21 04:16:19 +0000 | [diff] [blame] | 126 | PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_pch_elide_constructors); |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 127 | #undef PARSE_LANGOPT_IMPORTANT |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 128 | #undef PARSE_LANGOPT_BENIGN |
| 129 | |
| 130 | return false; |
| 131 | } |
| 132 | |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 133 | bool 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 142 | bool PCHValidator::ReadPredefinesBuffer(llvm::StringRef PCHPredef, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 143 | FileID PCHBufferID, |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 144 | llvm::StringRef OriginalFileName, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 145 | std::string &SuggestedPredefines) { |
Daniel Dunbar | c716293 | 2009-11-11 23:58:53 +0000 | [diff] [blame] | 146 | // 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 Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 150 | llvm::SmallString<256> PCHInclude; |
| 151 | PCHInclude += "#include \""; |
Daniel Dunbar | c716293 | 2009-11-11 23:58:53 +0000 | [diff] [blame] | 152 | PCHInclude += NormalizeDashIncludePath(OriginalFileName); |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 153 | 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 Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 157 | if (Left == PP.getPredefines()) { |
| 158 | Error("Missing PCH include entry!"); |
| 159 | return true; |
| 160 | } |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 161 | |
| 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 165 | return false; |
| 166 | |
| 167 | SourceManager &SourceMgr = PP.getSourceManager(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 168 | |
Daniel Dunbar | 10014aa | 2009-11-11 03:45:59 +0000 | [diff] [blame] | 169 | // The predefines buffers are different. Determine what the differences are, |
| 170 | // and whether they require us to reject the PCH file. |
Daniel Dunbar | e675049 | 2009-11-13 16:46:11 +0000 | [diff] [blame] | 171 | 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 177 | |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 178 | // 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 180 | std::sort(CmdLineLines.begin(), CmdLineLines.end()); |
| 181 | std::sort(PCHLines.begin(), PCHLines.end()); |
| 182 | |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 183 | // 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 186 | 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 Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 193 | llvm::StringRef Missing = MissingPredefines[I]; |
| 194 | if (!Missing.startswith("#define ")) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 195 | Reader.Diag(diag::warn_pch_compiler_options_mismatch); |
| 196 | return true; |
| 197 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 198 | |
Daniel Dunbar | 10014aa | 2009-11-11 03:45:59 +0000 | [diff] [blame] | 199 | // This is a macro definition. Determine the name of the macro we're |
| 200 | // defining. |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 201 | std::string::size_type StartOfMacroName = strlen("#define "); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 202 | std::string::size_type EndOfMacroName |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 203 | = Missing.find_first_of("( \n\r", StartOfMacroName); |
| 204 | assert(EndOfMacroName != std::string::npos && |
| 205 | "Couldn't find the end of the macro name"); |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 206 | llvm::StringRef MacroName = Missing.slice(StartOfMacroName, EndOfMacroName); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 207 | |
Daniel Dunbar | 10014aa | 2009-11-11 03:45:59 +0000 | [diff] [blame] | 208 | // Determine whether this macro was given a different definition on the |
| 209 | // command line. |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 210 | std::string MacroDefStart = "#define " + MacroName.str(); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 211 | std::string::size_type MacroDefLen = MacroDefStart.size(); |
Daniel Dunbar | e675049 | 2009-11-13 16:46:11 +0000 | [diff] [blame] | 212 | llvm::SmallVector<llvm::StringRef, 8>::iterator ConflictPos |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 213 | = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(), |
| 214 | MacroDefStart); |
| 215 | for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) { |
Daniel Dunbar | 10014aa | 2009-11-11 03:45:59 +0000 | [diff] [blame] | 216 | if (!ConflictPos->startswith(MacroDefStart)) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 217 | // Different macro; we're done. |
| 218 | ConflictPos = CmdLineLines.end(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 219 | break; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 220 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 221 | |
| 222 | assert(ConflictPos->size() > MacroDefLen && |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 223 | "Invalid #define in predefines buffer?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 224 | if ((*ConflictPos)[MacroDefLen] != ' ' && |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 225 | (*ConflictPos)[MacroDefLen] != '(') |
| 226 | continue; // Longer macro name; keep trying. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 227 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 228 | // We found a conflicting macro definition. |
| 229 | break; |
| 230 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 231 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 232 | 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 Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 237 | 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 242 | |
| 243 | ConflictingDefines = true; |
| 244 | continue; |
| 245 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 246 | |
Daniel Dunbar | 10014aa | 2009-11-11 03:45:59 +0000 | [diff] [blame] | 247 | // 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 249 | if (ConflictingDefines) |
| 250 | continue; // Don't complain if there are already conflicting defs |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 251 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 252 | 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 Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 258 | 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 Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 261 | .getFileLocWithOffset(Offset); |
| 262 | Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch); |
| 263 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 264 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 265 | if (ConflictingDefines) |
| 266 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 267 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 268 | // 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 Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 272 | std::vector<llvm::StringRef> ExtraPredefines; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 273 | std::set_difference(CmdLineLines.begin(), CmdLineLines.end(), |
| 274 | PCHLines.begin(), PCHLines.end(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 275 | std::back_inserter(ExtraPredefines)); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 276 | for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) { |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 277 | llvm::StringRef &Extra = ExtraPredefines[I]; |
| 278 | if (!Extra.startswith("#define ")) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 279 | 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 Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | std::string::size_type EndOfMacroName |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 287 | = Extra.find_first_of("( \n\r", StartOfMacroName); |
| 288 | assert(EndOfMacroName != std::string::npos && |
| 289 | "Couldn't find the end of the macro name"); |
Daniel Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 290 | llvm::StringRef MacroName = Extra.slice(StartOfMacroName, EndOfMacroName); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 291 | |
| 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 Dunbar | 4d5936a | 2009-11-11 05:26:28 +0000 | [diff] [blame] | 295 | if (IdentifierInfo *II = Reader.get(MacroName)) { |
Daniel Dunbar | 4fda42e | 2009-11-11 00:52:00 +0000 | [diff] [blame] | 296 | Reader.Diag(diag::warn_macro_name_used_in_pch) << II; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 297 | 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 Gregor | 12fab31 | 2010-03-16 16:35:32 +0000 | [diff] [blame] | 310 | void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI, |
| 311 | unsigned ID) { |
| 312 | PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, ID); |
| 313 | ++NumHeaderInfos; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | void PCHValidator::ReadCounter(unsigned Value) { |
| 317 | PP.setCounterValue(Value); |
| 318 | } |
| 319 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 320 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 321 | // PCH reader implementation |
| 322 | //===----------------------------------------------------------------------===// |
| 323 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 324 | PCHReader::PCHReader(Preprocessor &PP, ASTContext *Context, |
| 325 | const char *isysroot) |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 326 | : Listener(new PCHValidator(PP, *this)), SourceMgr(PP.getSourceManager()), |
| 327 | FileMgr(PP.getFileManager()), Diags(PP.getDiagnostics()), |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 328 | SemaObj(0), PP(&PP), Context(Context), StatCache(0), Consumer(0), |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 329 | IdentifierTableData(0), IdentifierLookupTable(0), |
| 330 | IdentifierOffsets(0), |
| 331 | MethodPoolLookupTable(0), MethodPoolLookupTableData(0), |
| 332 | TotalSelectorsInMethodPool(0), SelectorOffsets(0), |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 333 | TotalNumSelectors(0), MacroDefinitionOffsets(0), |
Douglas Gregor | c6fbbed | 2010-03-19 22:13:20 +0000 | [diff] [blame] | 334 | NumPreallocatedPreprocessingEntities(0), |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 335 | isysroot(isysroot), NumStatHits(0), NumStatMisses(0), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 336 | NumSLocEntriesRead(0), NumStatementsRead(0), |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 337 | NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0), |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 338 | NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 | CurrentlyLoadingTypeOrDecl(0) { |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 340 | RelocatablePCH = false; |
| 341 | } |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 342 | |
| 343 | PCHReader::PCHReader(SourceManager &SourceMgr, FileManager &FileMgr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 344 | Diagnostic &Diags, const char *isysroot) |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 345 | : SourceMgr(SourceMgr), FileMgr(FileMgr), Diags(Diags), |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 346 | SemaObj(0), PP(0), Context(0), StatCache(0), Consumer(0), |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 347 | IdentifierTableData(0), IdentifierLookupTable(0), |
| 348 | IdentifierOffsets(0), |
| 349 | MethodPoolLookupTable(0), MethodPoolLookupTableData(0), |
| 350 | TotalSelectorsInMethodPool(0), SelectorOffsets(0), |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 351 | TotalNumSelectors(0), MacroDefinitionOffsets(0), |
Douglas Gregor | c6fbbed | 2010-03-19 22:13:20 +0000 | [diff] [blame] | 352 | NumPreallocatedPreprocessingEntities(0), |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 353 | isysroot(isysroot), NumStatHits(0), NumStatMisses(0), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 354 | NumSLocEntriesRead(0), NumStatementsRead(0), |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 355 | NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0), |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 356 | NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 357 | CurrentlyLoadingTypeOrDecl(0) { |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 358 | RelocatablePCH = false; |
| 359 | } |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 360 | |
| 361 | PCHReader::~PCHReader() {} |
| 362 | |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 363 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 364 | namespace { |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 365 | class PCHMethodPoolLookupTrait { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 366 | PCHReader &Reader; |
| 367 | |
| 368 | public: |
| 369 | typedef std::pair<ObjCMethodList, ObjCMethodList> data_type; |
| 370 | |
| 371 | typedef Selector external_key_type; |
| 372 | typedef external_key_type internal_key_type; |
| 373 | |
| 374 | explicit PCHMethodPoolLookupTrait(PCHReader &Reader) : Reader(Reader) { } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 375 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 376 | static bool EqualKey(const internal_key_type& a, |
| 377 | const internal_key_type& b) { |
| 378 | return a == b; |
| 379 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 381 | static unsigned ComputeHash(Selector Sel) { |
| 382 | unsigned N = Sel.getNumArgs(); |
| 383 | if (N == 0) |
| 384 | ++N; |
| 385 | unsigned R = 5381; |
| 386 | for (unsigned I = 0; I != N; ++I) |
| 387 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I)) |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 388 | R = llvm::HashString(II->getName(), R); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 389 | return R; |
| 390 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 391 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 392 | // This hopefully will just get inlined and removed by the optimizer. |
| 393 | static const internal_key_type& |
| 394 | GetInternalKey(const external_key_type& x) { return x; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 395 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 396 | static std::pair<unsigned, unsigned> |
| 397 | ReadKeyDataLength(const unsigned char*& d) { |
| 398 | using namespace clang::io; |
| 399 | unsigned KeyLen = ReadUnalignedLE16(d); |
| 400 | unsigned DataLen = ReadUnalignedLE16(d); |
| 401 | return std::make_pair(KeyLen, DataLen); |
| 402 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 403 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 404 | internal_key_type ReadKey(const unsigned char* d, unsigned) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 405 | using namespace clang::io; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 406 | SelectorTable &SelTable = Reader.getContext()->Selectors; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 407 | unsigned N = ReadUnalignedLE16(d); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 408 | IdentifierInfo *FirstII |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 409 | = Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d)); |
| 410 | if (N == 0) |
| 411 | return SelTable.getNullarySelector(FirstII); |
| 412 | else if (N == 1) |
| 413 | return SelTable.getUnarySelector(FirstII); |
| 414 | |
| 415 | llvm::SmallVector<IdentifierInfo *, 16> Args; |
| 416 | Args.push_back(FirstII); |
| 417 | for (unsigned I = 1; I != N; ++I) |
| 418 | Args.push_back(Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d))); |
| 419 | |
Douglas Gregor | 75fdb23 | 2009-05-22 22:45:36 +0000 | [diff] [blame] | 420 | return SelTable.getSelector(N, Args.data()); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 421 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 422 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 423 | data_type ReadData(Selector, const unsigned char* d, unsigned DataLen) { |
| 424 | using namespace clang::io; |
| 425 | unsigned NumInstanceMethods = ReadUnalignedLE16(d); |
| 426 | unsigned NumFactoryMethods = ReadUnalignedLE16(d); |
| 427 | |
| 428 | data_type Result; |
| 429 | |
| 430 | // Load instance methods |
| 431 | ObjCMethodList *Prev = 0; |
| 432 | for (unsigned I = 0; I != NumInstanceMethods; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | ObjCMethodDecl *Method |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 434 | = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d))); |
| 435 | if (!Result.first.Method) { |
| 436 | // This is the first method, which is the easy case. |
| 437 | Result.first.Method = Method; |
| 438 | Prev = &Result.first; |
| 439 | continue; |
| 440 | } |
| 441 | |
Ted Kremenek | 298ed87 | 2010-02-11 00:53:01 +0000 | [diff] [blame] | 442 | ObjCMethodList *Mem = |
| 443 | Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>(); |
| 444 | Prev->Next = new (Mem) ObjCMethodList(Method, 0); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 445 | Prev = Prev->Next; |
| 446 | } |
| 447 | |
| 448 | // Load factory methods |
| 449 | Prev = 0; |
| 450 | for (unsigned I = 0; I != NumFactoryMethods; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 451 | ObjCMethodDecl *Method |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 452 | = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d))); |
| 453 | if (!Result.second.Method) { |
| 454 | // This is the first method, which is the easy case. |
| 455 | Result.second.Method = Method; |
| 456 | Prev = &Result.second; |
| 457 | continue; |
| 458 | } |
| 459 | |
Ted Kremenek | 298ed87 | 2010-02-11 00:53:01 +0000 | [diff] [blame] | 460 | ObjCMethodList *Mem = |
| 461 | Reader.getSema()->BumpAlloc.Allocate<ObjCMethodList>(); |
| 462 | Prev->Next = new (Mem) ObjCMethodList(Method, 0); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 463 | Prev = Prev->Next; |
| 464 | } |
| 465 | |
| 466 | return Result; |
| 467 | } |
| 468 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 469 | |
| 470 | } // end anonymous namespace |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 471 | |
| 472 | /// \brief The on-disk hash table used for the global method pool. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 473 | typedef OnDiskChainedHashTable<PCHMethodPoolLookupTrait> |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 474 | PCHMethodPoolLookupTable; |
| 475 | |
| 476 | namespace { |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 477 | class PCHIdentifierLookupTrait { |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 478 | PCHReader &Reader; |
| 479 | |
| 480 | // If we know the IdentifierInfo in advance, it is here and we will |
| 481 | // not build a new one. Used when deserializing information about an |
| 482 | // identifier that was constructed before the PCH file was read. |
| 483 | IdentifierInfo *KnownII; |
| 484 | |
| 485 | public: |
| 486 | typedef IdentifierInfo * data_type; |
| 487 | |
| 488 | typedef const std::pair<const char*, unsigned> external_key_type; |
| 489 | |
| 490 | typedef external_key_type internal_key_type; |
| 491 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 492 | explicit PCHIdentifierLookupTrait(PCHReader &Reader, IdentifierInfo *II = 0) |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 493 | : Reader(Reader), KnownII(II) { } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 494 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 495 | static bool EqualKey(const internal_key_type& a, |
| 496 | const internal_key_type& b) { |
| 497 | return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0 |
| 498 | : false; |
| 499 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 500 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 501 | static unsigned ComputeHash(const internal_key_type& a) { |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 502 | return llvm::HashString(llvm::StringRef(a.first, a.second)); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 503 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 504 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 505 | // This hopefully will just get inlined and removed by the optimizer. |
| 506 | static const internal_key_type& |
| 507 | GetInternalKey(const external_key_type& x) { return x; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 508 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 509 | static std::pair<unsigned, unsigned> |
| 510 | ReadKeyDataLength(const unsigned char*& d) { |
| 511 | using namespace clang::io; |
Douglas Gregor | 5f8e330 | 2009-04-25 20:26:24 +0000 | [diff] [blame] | 512 | unsigned DataLen = ReadUnalignedLE16(d); |
Douglas Gregor | d6595a4 | 2009-04-25 21:04:17 +0000 | [diff] [blame] | 513 | unsigned KeyLen = ReadUnalignedLE16(d); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 514 | return std::make_pair(KeyLen, DataLen); |
| 515 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 516 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 517 | static std::pair<const char*, unsigned> |
| 518 | ReadKey(const unsigned char* d, unsigned n) { |
| 519 | assert(n >= 2 && d[n-1] == '\0'); |
| 520 | return std::make_pair((const char*) d, n-1); |
| 521 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 522 | |
| 523 | IdentifierInfo *ReadData(const internal_key_type& k, |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 524 | const unsigned char* d, |
| 525 | unsigned DataLen) { |
| 526 | using namespace clang::io; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 527 | pch::IdentID ID = ReadUnalignedLE32(d); |
| 528 | bool IsInteresting = ID & 0x01; |
| 529 | |
| 530 | // Wipe out the "is interesting" bit. |
| 531 | ID = ID >> 1; |
| 532 | |
| 533 | if (!IsInteresting) { |
| 534 | // For unintersting identifiers, just build the IdentifierInfo |
| 535 | // and associate it with the persistent ID. |
| 536 | IdentifierInfo *II = KnownII; |
| 537 | if (!II) |
| 538 | II = &Reader.getIdentifierTable().CreateIdentifierInfo( |
| 539 | k.first, k.first + k.second); |
| 540 | Reader.SetIdentifierInfo(ID, II); |
| 541 | return II; |
| 542 | } |
| 543 | |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 544 | unsigned Bits = ReadUnalignedLE16(d); |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 545 | bool CPlusPlusOperatorKeyword = Bits & 0x01; |
| 546 | Bits >>= 1; |
| 547 | bool Poisoned = Bits & 0x01; |
| 548 | Bits >>= 1; |
| 549 | bool ExtensionToken = Bits & 0x01; |
| 550 | Bits >>= 1; |
| 551 | bool hasMacroDefinition = Bits & 0x01; |
| 552 | Bits >>= 1; |
| 553 | unsigned ObjCOrBuiltinID = Bits & 0x3FF; |
| 554 | Bits >>= 10; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 555 | |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 556 | assert(Bits == 0 && "Extra bits in the identifier?"); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 557 | DataLen -= 6; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 558 | |
| 559 | // Build the IdentifierInfo itself and link the identifier ID with |
| 560 | // the new IdentifierInfo. |
| 561 | IdentifierInfo *II = KnownII; |
| 562 | if (!II) |
Douglas Gregor | 5f8e330 | 2009-04-25 20:26:24 +0000 | [diff] [blame] | 563 | II = &Reader.getIdentifierTable().CreateIdentifierInfo( |
| 564 | k.first, k.first + k.second); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 565 | Reader.SetIdentifierInfo(ID, II); |
| 566 | |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 567 | // Set or check the various bits in the IdentifierInfo structure. |
| 568 | // FIXME: Load token IDs lazily, too? |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 569 | II->setObjCOrBuiltinID(ObjCOrBuiltinID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 570 | assert(II->isExtensionToken() == ExtensionToken && |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 571 | "Incorrect extension token flag"); |
| 572 | (void)ExtensionToken; |
| 573 | II->setIsPoisoned(Poisoned); |
| 574 | assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword && |
| 575 | "Incorrect C++ operator keyword flag"); |
| 576 | (void)CPlusPlusOperatorKeyword; |
| 577 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 578 | // If this identifier is a macro, deserialize the macro |
| 579 | // definition. |
| 580 | if (hasMacroDefinition) { |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 581 | uint32_t Offset = ReadUnalignedLE32(d); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 582 | Reader.ReadMacroRecord(Offset); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 583 | DataLen -= 4; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 584 | } |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 585 | |
| 586 | // Read all of the declarations visible at global scope with this |
| 587 | // name. |
Chris Lattner | 6bf690f | 2009-04-27 22:17:41 +0000 | [diff] [blame] | 588 | if (Reader.getContext() == 0) return II; |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 589 | if (DataLen > 0) { |
| 590 | llvm::SmallVector<uint32_t, 4> DeclIDs; |
| 591 | for (; DataLen > 0; DataLen -= 4) |
| 592 | DeclIDs.push_back(ReadUnalignedLE32(d)); |
| 593 | Reader.SetGloballyVisibleDecls(II, DeclIDs); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 594 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 595 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 596 | return II; |
| 597 | } |
| 598 | }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 599 | |
| 600 | } // end anonymous namespace |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 601 | |
| 602 | /// \brief The on-disk hash table used to contain information about |
| 603 | /// all of the identifiers in the program. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 604 | typedef OnDiskChainedHashTable<PCHIdentifierLookupTrait> |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 605 | PCHIdentifierLookupTable; |
| 606 | |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 607 | void PCHReader::Error(const char *Msg) { |
| 608 | Diag(diag::err_fe_pch_malformed) << Msg; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 609 | } |
| 610 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 611 | /// \brief Check the contents of the predefines buffer against the |
| 612 | /// contents of the predefines buffer used to build the PCH file. |
| 613 | /// |
| 614 | /// The contents of the two predefines buffers should be the same. If |
| 615 | /// not, then some command-line option changed the preprocessor state |
| 616 | /// and we must reject the PCH file. |
| 617 | /// |
| 618 | /// \param PCHPredef The start of the predefines buffer in the PCH |
| 619 | /// file. |
| 620 | /// |
| 621 | /// \param PCHPredefLen The length of the predefines buffer in the PCH |
| 622 | /// file. |
| 623 | /// |
| 624 | /// \param PCHBufferID The FileID for the PCH predefines buffer. |
| 625 | /// |
| 626 | /// \returns true if there was a mismatch (in which case the PCH file |
| 627 | /// should be ignored), or false otherwise. |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 628 | bool PCHReader::CheckPredefinesBuffer(llvm::StringRef PCHPredef, |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 629 | FileID PCHBufferID) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 630 | if (Listener) |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 631 | return Listener->ReadPredefinesBuffer(PCHPredef, PCHBufferID, |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 632 | ActualOriginalFileName, |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 633 | SuggestedPredefines); |
Douglas Gregor | e721f95 | 2009-04-28 18:58:38 +0000 | [diff] [blame] | 634 | return false; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 635 | } |
| 636 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 637 | //===----------------------------------------------------------------------===// |
| 638 | // Source Manager Deserialization |
| 639 | //===----------------------------------------------------------------------===// |
| 640 | |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 641 | /// \brief Read the line table in the source manager block. |
| 642 | /// \returns true if ther was an error. |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 643 | bool PCHReader::ParseLineTable(llvm::SmallVectorImpl<uint64_t> &Record) { |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 644 | unsigned Idx = 0; |
| 645 | LineTableInfo &LineTable = SourceMgr.getLineTable(); |
| 646 | |
| 647 | // Parse the file names |
Douglas Gregor | ff0a987 | 2009-04-13 17:12:42 +0000 | [diff] [blame] | 648 | std::map<int, int> FileIDs; |
| 649 | for (int I = 0, N = Record[Idx++]; I != N; ++I) { |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 650 | // Extract the file name |
| 651 | unsigned FilenameLen = Record[Idx++]; |
| 652 | std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen); |
| 653 | Idx += FilenameLen; |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 654 | MaybeAddSystemRootToFilename(Filename); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 655 | FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(), |
Douglas Gregor | ff0a987 | 2009-04-13 17:12:42 +0000 | [diff] [blame] | 656 | Filename.size()); |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 657 | } |
| 658 | |
| 659 | // Parse the line entries |
| 660 | std::vector<LineEntry> Entries; |
| 661 | while (Idx < Record.size()) { |
Argyrios Kyrtzidis | f52a5d2 | 2010-07-02 11:55:05 +0000 | [diff] [blame] | 662 | int FID = Record[Idx++]; |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 663 | |
| 664 | // Extract the line entries |
| 665 | unsigned NumEntries = Record[Idx++]; |
Argyrios Kyrtzidis | f52a5d2 | 2010-07-02 11:55:05 +0000 | [diff] [blame] | 666 | assert(NumEntries && "Numentries is 00000"); |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 667 | Entries.clear(); |
| 668 | Entries.reserve(NumEntries); |
| 669 | for (unsigned I = 0; I != NumEntries; ++I) { |
| 670 | unsigned FileOffset = Record[Idx++]; |
| 671 | unsigned LineNo = Record[Idx++]; |
Argyrios Kyrtzidis | f52a5d2 | 2010-07-02 11:55:05 +0000 | [diff] [blame] | 672 | int FilenameID = FileIDs[Record[Idx++]]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 673 | SrcMgr::CharacteristicKind FileKind |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 674 | = (SrcMgr::CharacteristicKind)Record[Idx++]; |
| 675 | unsigned IncludeOffset = Record[Idx++]; |
| 676 | Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID, |
| 677 | FileKind, IncludeOffset)); |
| 678 | } |
| 679 | LineTable.AddEntry(FID, Entries); |
| 680 | } |
| 681 | |
| 682 | return false; |
| 683 | } |
| 684 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 685 | namespace { |
| 686 | |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 687 | class PCHStatData { |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 688 | public: |
| 689 | const bool hasStat; |
| 690 | const ino_t ino; |
| 691 | const dev_t dev; |
| 692 | const mode_t mode; |
| 693 | const time_t mtime; |
| 694 | const off_t size; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 695 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 696 | PCHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 697 | : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {} |
| 698 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 699 | PCHStatData() |
| 700 | : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {} |
| 701 | }; |
| 702 | |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 703 | class PCHStatLookupTrait { |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 704 | public: |
| 705 | typedef const char *external_key_type; |
| 706 | typedef const char *internal_key_type; |
| 707 | |
| 708 | typedef PCHStatData data_type; |
| 709 | |
| 710 | static unsigned ComputeHash(const char *path) { |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 711 | return llvm::HashString(path); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | static internal_key_type GetInternalKey(const char *path) { return path; } |
| 715 | |
| 716 | static bool EqualKey(internal_key_type a, internal_key_type b) { |
| 717 | return strcmp(a, b) == 0; |
| 718 | } |
| 719 | |
| 720 | static std::pair<unsigned, unsigned> |
| 721 | ReadKeyDataLength(const unsigned char*& d) { |
| 722 | unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d); |
| 723 | unsigned DataLen = (unsigned) *d++; |
| 724 | return std::make_pair(KeyLen + 1, DataLen); |
| 725 | } |
| 726 | |
| 727 | static internal_key_type ReadKey(const unsigned char *d, unsigned) { |
| 728 | return (const char *)d; |
| 729 | } |
| 730 | |
| 731 | static data_type ReadData(const internal_key_type, const unsigned char *d, |
| 732 | unsigned /*DataLen*/) { |
| 733 | using namespace clang::io; |
| 734 | |
| 735 | if (*d++ == 1) |
| 736 | return data_type(); |
| 737 | |
| 738 | ino_t ino = (ino_t) ReadUnalignedLE32(d); |
| 739 | dev_t dev = (dev_t) ReadUnalignedLE32(d); |
| 740 | mode_t mode = (mode_t) ReadUnalignedLE16(d); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 741 | time_t mtime = (time_t) ReadUnalignedLE64(d); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 742 | off_t size = (off_t) ReadUnalignedLE64(d); |
| 743 | return data_type(ino, dev, mode, mtime, size); |
| 744 | } |
| 745 | }; |
| 746 | |
| 747 | /// \brief stat() cache for precompiled headers. |
| 748 | /// |
| 749 | /// This cache is very similar to the stat cache used by pretokenized |
| 750 | /// headers. |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 751 | class PCHStatCache : public StatSysCallCache { |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 752 | typedef OnDiskChainedHashTable<PCHStatLookupTrait> CacheTy; |
| 753 | CacheTy *Cache; |
| 754 | |
| 755 | unsigned &NumStatHits, &NumStatMisses; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 756 | public: |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 757 | PCHStatCache(const unsigned char *Buckets, |
| 758 | const unsigned char *Base, |
| 759 | unsigned &NumStatHits, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 760 | unsigned &NumStatMisses) |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 761 | : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) { |
| 762 | Cache = CacheTy::Create(Buckets, Base); |
| 763 | } |
| 764 | |
| 765 | ~PCHStatCache() { delete Cache; } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 766 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 767 | int stat(const char *path, struct stat *buf) { |
| 768 | // Do the lookup for the file's data in the PCH file. |
| 769 | CacheTy::iterator I = Cache->find(path); |
| 770 | |
| 771 | // If we don't get a hit in the PCH file just forward to 'stat'. |
| 772 | if (I == Cache->end()) { |
| 773 | ++NumStatMisses; |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 774 | return StatSysCallCache::stat(path, buf); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 775 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 776 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 777 | ++NumStatHits; |
| 778 | PCHStatData Data = *I; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 779 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 780 | if (!Data.hasStat) |
| 781 | return 1; |
| 782 | |
| 783 | buf->st_ino = Data.ino; |
| 784 | buf->st_dev = Data.dev; |
| 785 | buf->st_mtime = Data.mtime; |
| 786 | buf->st_mode = Data.mode; |
| 787 | buf->st_size = Data.size; |
| 788 | return 0; |
| 789 | } |
| 790 | }; |
| 791 | } // end anonymous namespace |
| 792 | |
| 793 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 794 | /// \brief Read the source manager block |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 795 | PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 796 | using namespace SrcMgr; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 797 | |
| 798 | // Set the source-location entry cursor to the current position in |
| 799 | // the stream. This cursor will be used to read the contents of the |
| 800 | // source manager block initially, and then lazily read |
| 801 | // source-location entries as needed. |
| 802 | SLocEntryCursor = Stream; |
| 803 | |
| 804 | // The stream itself is going to skip over the source manager block. |
| 805 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 806 | Error("malformed block record in PCH file"); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 807 | return Failure; |
| 808 | } |
| 809 | |
| 810 | // Enter the source manager block. |
| 811 | if (SLocEntryCursor.EnterSubBlock(pch::SOURCE_MANAGER_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 812 | Error("malformed source manager block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 813 | return Failure; |
| 814 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 815 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 816 | RecordData Record; |
| 817 | while (true) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 818 | unsigned Code = SLocEntryCursor.ReadCode(); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 819 | if (Code == llvm::bitc::END_BLOCK) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 820 | if (SLocEntryCursor.ReadBlockEnd()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 821 | Error("error at end of Source Manager block in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 822 | return Failure; |
| 823 | } |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 824 | return Success; |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 825 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 826 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 827 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 828 | // No known subblocks, always skip them. |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 829 | SLocEntryCursor.ReadSubBlockID(); |
| 830 | if (SLocEntryCursor.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 831 | Error("malformed block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 832 | return Failure; |
| 833 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 834 | continue; |
| 835 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 836 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 837 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 838 | SLocEntryCursor.ReadAbbrevRecord(); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 839 | continue; |
| 840 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 841 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 842 | // Read a record. |
| 843 | const char *BlobStart; |
| 844 | unsigned BlobLen; |
| 845 | Record.clear(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 846 | switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 847 | default: // Default behavior: ignore. |
| 848 | break; |
| 849 | |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 850 | case pch::SM_LINE_TABLE: |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 851 | if (ParseLineTable(Record)) |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 852 | return Failure; |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 853 | break; |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 854 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 855 | case pch::SM_SLOC_FILE_ENTRY: |
| 856 | case pch::SM_SLOC_BUFFER_ENTRY: |
| 857 | case pch::SM_SLOC_INSTANTIATION_ENTRY: |
| 858 | // Once we hit one of the source location entries, we're done. |
| 859 | return Success; |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 860 | } |
| 861 | } |
| 862 | } |
| 863 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 864 | /// \brief Read in the source location entry with the given ID. |
| 865 | PCHReader::PCHReadResult PCHReader::ReadSLocEntryRecord(unsigned ID) { |
| 866 | if (ID == 0) |
| 867 | return Success; |
| 868 | |
| 869 | if (ID > TotalNumSLocEntries) { |
| 870 | Error("source location entry ID out-of-range for PCH file"); |
| 871 | return Failure; |
| 872 | } |
| 873 | |
| 874 | ++NumSLocEntriesRead; |
| 875 | SLocEntryCursor.JumpToBit(SLocOffsets[ID - 1]); |
| 876 | unsigned Code = SLocEntryCursor.ReadCode(); |
| 877 | if (Code == llvm::bitc::END_BLOCK || |
| 878 | Code == llvm::bitc::ENTER_SUBBLOCK || |
| 879 | Code == llvm::bitc::DEFINE_ABBREV) { |
| 880 | Error("incorrectly-formatted source location entry in PCH file"); |
| 881 | return Failure; |
| 882 | } |
| 883 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 884 | RecordData Record; |
| 885 | const char *BlobStart; |
| 886 | unsigned BlobLen; |
| 887 | switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) { |
| 888 | default: |
| 889 | Error("incorrectly-formatted source location entry in PCH file"); |
| 890 | return Failure; |
| 891 | |
| 892 | case pch::SM_SLOC_FILE_ENTRY: { |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 893 | std::string Filename(BlobStart, BlobStart + BlobLen); |
| 894 | MaybeAddSystemRootToFilename(Filename); |
| 895 | const FileEntry *File = FileMgr.getFile(Filename); |
Chris Lattner | d3555ae | 2009-06-15 04:35:16 +0000 | [diff] [blame] | 896 | if (File == 0) { |
| 897 | std::string ErrorStr = "could not find file '"; |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 898 | ErrorStr += Filename; |
Chris Lattner | d3555ae | 2009-06-15 04:35:16 +0000 | [diff] [blame] | 899 | ErrorStr += "' referenced by PCH file"; |
| 900 | Error(ErrorStr.c_str()); |
| 901 | return Failure; |
| 902 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 903 | |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 904 | if (Record.size() < 10) { |
Ted Kremenek | 1857f62 | 2010-03-18 21:23:05 +0000 | [diff] [blame] | 905 | Error("source location entry is incorrect"); |
| 906 | return Failure; |
| 907 | } |
| 908 | |
Douglas Gregor | 9f692a0 | 2010-04-09 15:54:22 +0000 | [diff] [blame] | 909 | if ((off_t)Record[4] != File->getSize() |
| 910 | #if !defined(LLVM_ON_WIN32) |
| 911 | // In our regression testing, the Windows file system seems to |
| 912 | // have inconsistent modification times that sometimes |
| 913 | // erroneously trigger this error-handling path. |
| 914 | || (time_t)Record[5] != File->getModificationTime() |
| 915 | #endif |
| 916 | ) { |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 917 | Diag(diag::err_fe_pch_file_modified) |
| 918 | << Filename; |
| 919 | return Failure; |
| 920 | } |
| 921 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 922 | FileID FID = SourceMgr.createFileID(File, |
| 923 | SourceLocation::getFromRawEncoding(Record[1]), |
| 924 | (SrcMgr::CharacteristicKind)Record[2], |
| 925 | ID, Record[0]); |
| 926 | if (Record[3]) |
| 927 | const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile()) |
| 928 | .setHasLineDirectives(); |
| 929 | |
Douglas Gregor | 12fab31 | 2010-03-16 16:35:32 +0000 | [diff] [blame] | 930 | // Reconstruct header-search information for this file. |
| 931 | HeaderFileInfo HFI; |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 932 | HFI.isImport = Record[6]; |
| 933 | HFI.DirInfo = Record[7]; |
| 934 | HFI.NumIncludes = Record[8]; |
| 935 | HFI.ControllingMacroID = Record[9]; |
Douglas Gregor | 12fab31 | 2010-03-16 16:35:32 +0000 | [diff] [blame] | 936 | if (Listener) |
| 937 | Listener->ReadHeaderFileInfo(HFI, File->getUID()); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 938 | break; |
| 939 | } |
| 940 | |
| 941 | case pch::SM_SLOC_BUFFER_ENTRY: { |
| 942 | const char *Name = BlobStart; |
| 943 | unsigned Offset = Record[0]; |
| 944 | unsigned Code = SLocEntryCursor.ReadCode(); |
| 945 | Record.clear(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 946 | unsigned RecCode |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 947 | = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 948 | |
| 949 | if (RecCode != pch::SM_SLOC_BUFFER_BLOB) { |
| 950 | Error("PCH record has invalid code"); |
| 951 | return Failure; |
| 952 | } |
| 953 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 954 | llvm::MemoryBuffer *Buffer |
Chris Lattner | a0a270c | 2010-04-05 22:42:27 +0000 | [diff] [blame] | 955 | = llvm::MemoryBuffer::getMemBuffer(llvm::StringRef(BlobStart, BlobLen - 1), |
| 956 | Name); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 957 | FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 958 | |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 959 | if (strcmp(Name, "<built-in>") == 0) { |
| 960 | PCHPredefinesBufferID = BufferID; |
| 961 | PCHPredefines = BlobStart; |
| 962 | PCHPredefinesLen = BlobLen - 1; |
| 963 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 964 | |
| 965 | break; |
| 966 | } |
| 967 | |
| 968 | case pch::SM_SLOC_INSTANTIATION_ENTRY: { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 969 | SourceLocation SpellingLoc |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 970 | = SourceLocation::getFromRawEncoding(Record[1]); |
| 971 | SourceMgr.createInstantiationLoc(SpellingLoc, |
| 972 | SourceLocation::getFromRawEncoding(Record[2]), |
| 973 | SourceLocation::getFromRawEncoding(Record[3]), |
| 974 | Record[4], |
| 975 | ID, |
| 976 | Record[0]); |
| 977 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 978 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | return Success; |
| 982 | } |
| 983 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 984 | /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the |
| 985 | /// specified cursor. Read the abbreviations that are at the top of the block |
| 986 | /// and then leave the cursor pointing into the block. |
| 987 | bool PCHReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, |
| 988 | unsigned BlockID) { |
| 989 | if (Cursor.EnterSubBlock(BlockID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 990 | Error("malformed block record in PCH file"); |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 991 | return Failure; |
| 992 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 993 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 994 | while (true) { |
| 995 | unsigned Code = Cursor.ReadCode(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 996 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 997 | // We expect all abbrevs to be at the start of the block. |
| 998 | if (Code != llvm::bitc::DEFINE_ABBREV) |
| 999 | return false; |
| 1000 | Cursor.ReadAbbrevRecord(); |
| 1001 | } |
| 1002 | } |
| 1003 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1004 | void PCHReader::ReadMacroRecord(uint64_t Offset) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1005 | assert(PP && "Forgot to set Preprocessor ?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1006 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1007 | // Keep track of where we are in the stream, then jump back there |
| 1008 | // after reading this macro. |
| 1009 | SavedStreamPosition SavedPosition(Stream); |
| 1010 | |
| 1011 | Stream.JumpToBit(Offset); |
| 1012 | RecordData Record; |
| 1013 | llvm::SmallVector<IdentifierInfo*, 16> MacroArgs; |
| 1014 | MacroInfo *Macro = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1015 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1016 | while (true) { |
| 1017 | unsigned Code = Stream.ReadCode(); |
| 1018 | switch (Code) { |
| 1019 | case llvm::bitc::END_BLOCK: |
| 1020 | return; |
| 1021 | |
| 1022 | case llvm::bitc::ENTER_SUBBLOCK: |
| 1023 | // No known subblocks, always skip them. |
| 1024 | Stream.ReadSubBlockID(); |
| 1025 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1026 | Error("malformed block record in PCH file"); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1027 | return; |
| 1028 | } |
| 1029 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1030 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1031 | case llvm::bitc::DEFINE_ABBREV: |
| 1032 | Stream.ReadAbbrevRecord(); |
| 1033 | continue; |
| 1034 | default: break; |
| 1035 | } |
| 1036 | |
| 1037 | // Read a record. |
| 1038 | Record.clear(); |
| 1039 | pch::PreprocessorRecordTypes RecType = |
| 1040 | (pch::PreprocessorRecordTypes)Stream.ReadRecord(Code, Record); |
| 1041 | switch (RecType) { |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1042 | case pch::PP_MACRO_OBJECT_LIKE: |
| 1043 | case pch::PP_MACRO_FUNCTION_LIKE: { |
| 1044 | // If we already have a macro, that means that we've hit the end |
| 1045 | // of the definition of the macro we were looking for. We're |
| 1046 | // done. |
| 1047 | if (Macro) |
| 1048 | return; |
| 1049 | |
| 1050 | IdentifierInfo *II = DecodeIdentifierInfo(Record[0]); |
| 1051 | if (II == 0) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1052 | Error("macro must have a name in PCH file"); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1053 | return; |
| 1054 | } |
| 1055 | SourceLocation Loc = SourceLocation::getFromRawEncoding(Record[1]); |
| 1056 | bool isUsed = Record[2]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1057 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1058 | MacroInfo *MI = PP->AllocateMacroInfo(Loc); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1059 | MI->setIsUsed(isUsed); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1060 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1061 | unsigned NextIndex = 3; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1062 | if (RecType == pch::PP_MACRO_FUNCTION_LIKE) { |
| 1063 | // Decode function-like macro info. |
| 1064 | bool isC99VarArgs = Record[3]; |
| 1065 | bool isGNUVarArgs = Record[4]; |
| 1066 | MacroArgs.clear(); |
| 1067 | unsigned NumArgs = Record[5]; |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1068 | NextIndex = 6 + NumArgs; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1069 | for (unsigned i = 0; i != NumArgs; ++i) |
| 1070 | MacroArgs.push_back(DecodeIdentifierInfo(Record[6+i])); |
| 1071 | |
| 1072 | // Install function-like macro info. |
| 1073 | MI->setIsFunctionLike(); |
| 1074 | if (isC99VarArgs) MI->setIsC99Varargs(); |
| 1075 | if (isGNUVarArgs) MI->setIsGNUVarargs(); |
Douglas Gregor | 75fdb23 | 2009-05-22 22:45:36 +0000 | [diff] [blame] | 1076 | MI->setArgumentList(MacroArgs.data(), MacroArgs.size(), |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1077 | PP->getPreprocessorAllocator()); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | // Finally, install the macro. |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1081 | PP->setMacroInfo(II, MI); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1082 | |
| 1083 | // Remember that we saw this macro last so that we add the tokens that |
| 1084 | // form its body to it. |
| 1085 | Macro = MI; |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1086 | |
| 1087 | if (NextIndex + 1 == Record.size() && PP->getPreprocessingRecord()) { |
| 1088 | // We have a macro definition. Load it now. |
| 1089 | PP->getPreprocessingRecord()->RegisterMacroDefinition(Macro, |
| 1090 | getMacroDefinition(Record[NextIndex])); |
| 1091 | } |
| 1092 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1093 | ++NumMacrosRead; |
| 1094 | break; |
| 1095 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1096 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1097 | case pch::PP_TOKEN: { |
| 1098 | // If we see a TOKEN before a PP_MACRO_*, then the file is |
| 1099 | // erroneous, just pretend we didn't see this. |
| 1100 | if (Macro == 0) break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1101 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1102 | Token Tok; |
| 1103 | Tok.startToken(); |
| 1104 | Tok.setLocation(SourceLocation::getFromRawEncoding(Record[0])); |
| 1105 | Tok.setLength(Record[1]); |
| 1106 | if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2])) |
| 1107 | Tok.setIdentifierInfo(II); |
| 1108 | Tok.setKind((tok::TokenKind)Record[3]); |
| 1109 | Tok.setFlag((Token::TokenFlags)Record[4]); |
| 1110 | Macro->AddTokenToBody(Tok); |
| 1111 | break; |
| 1112 | } |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1113 | |
| 1114 | case pch::PP_MACRO_INSTANTIATION: { |
| 1115 | // If we already have a macro, that means that we've hit the end |
| 1116 | // of the definition of the macro we were looking for. We're |
| 1117 | // done. |
| 1118 | if (Macro) |
| 1119 | return; |
| 1120 | |
| 1121 | if (!PP->getPreprocessingRecord()) { |
| 1122 | Error("missing preprocessing record in PCH file"); |
| 1123 | return; |
| 1124 | } |
| 1125 | |
| 1126 | PreprocessingRecord &PPRec = *PP->getPreprocessingRecord(); |
| 1127 | if (PPRec.getPreprocessedEntity(Record[0])) |
| 1128 | return; |
| 1129 | |
| 1130 | MacroInstantiation *MI |
| 1131 | = new (PPRec) MacroInstantiation(DecodeIdentifierInfo(Record[3]), |
| 1132 | SourceRange( |
| 1133 | SourceLocation::getFromRawEncoding(Record[1]), |
| 1134 | SourceLocation::getFromRawEncoding(Record[2])), |
| 1135 | getMacroDefinition(Record[4])); |
| 1136 | PPRec.SetPreallocatedEntity(Record[0], MI); |
| 1137 | return; |
| 1138 | } |
| 1139 | |
| 1140 | case pch::PP_MACRO_DEFINITION: { |
| 1141 | // If we already have a macro, that means that we've hit the end |
| 1142 | // of the definition of the macro we were looking for. We're |
| 1143 | // done. |
| 1144 | if (Macro) |
| 1145 | return; |
| 1146 | |
| 1147 | if (!PP->getPreprocessingRecord()) { |
| 1148 | Error("missing preprocessing record in PCH file"); |
| 1149 | return; |
| 1150 | } |
| 1151 | |
| 1152 | PreprocessingRecord &PPRec = *PP->getPreprocessingRecord(); |
| 1153 | if (PPRec.getPreprocessedEntity(Record[0])) |
| 1154 | return; |
| 1155 | |
| 1156 | if (Record[1] >= MacroDefinitionsLoaded.size()) { |
| 1157 | Error("out-of-bounds macro definition record"); |
| 1158 | return; |
| 1159 | } |
| 1160 | |
| 1161 | MacroDefinition *MD |
| 1162 | = new (PPRec) MacroDefinition(DecodeIdentifierInfo(Record[4]), |
| 1163 | SourceLocation::getFromRawEncoding(Record[5]), |
| 1164 | SourceRange( |
| 1165 | SourceLocation::getFromRawEncoding(Record[2]), |
| 1166 | SourceLocation::getFromRawEncoding(Record[3]))); |
| 1167 | PPRec.SetPreallocatedEntity(Record[0], MD); |
| 1168 | MacroDefinitionsLoaded[Record[1]] = MD; |
| 1169 | return; |
| 1170 | } |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 1171 | } |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1172 | } |
| 1173 | } |
| 1174 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1175 | void PCHReader::ReadDefinedMacros() { |
| 1176 | // If there was no preprocessor block, do nothing. |
| 1177 | if (!MacroCursor.getBitStreamReader()) |
| 1178 | return; |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1179 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1180 | llvm::BitstreamCursor Cursor = MacroCursor; |
| 1181 | if (Cursor.EnterSubBlock(pch::PREPROCESSOR_BLOCK_ID)) { |
| 1182 | Error("malformed preprocessor block record in PCH file"); |
| 1183 | return; |
| 1184 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1185 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1186 | RecordData Record; |
| 1187 | while (true) { |
| 1188 | unsigned Code = Cursor.ReadCode(); |
| 1189 | if (Code == llvm::bitc::END_BLOCK) { |
| 1190 | if (Cursor.ReadBlockEnd()) |
| 1191 | Error("error at end of preprocessor block in PCH file"); |
| 1192 | return; |
| 1193 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1194 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1195 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 1196 | // No known subblocks, always skip them. |
| 1197 | Cursor.ReadSubBlockID(); |
| 1198 | if (Cursor.SkipBlock()) { |
| 1199 | Error("malformed block record in PCH file"); |
| 1200 | return; |
| 1201 | } |
| 1202 | continue; |
| 1203 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1204 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1205 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
| 1206 | Cursor.ReadAbbrevRecord(); |
| 1207 | continue; |
| 1208 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1209 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1210 | // Read a record. |
| 1211 | const char *BlobStart; |
| 1212 | unsigned BlobLen; |
| 1213 | Record.clear(); |
| 1214 | switch (Cursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) { |
| 1215 | default: // Default behavior: ignore. |
| 1216 | break; |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1217 | |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1218 | case pch::PP_MACRO_OBJECT_LIKE: |
| 1219 | case pch::PP_MACRO_FUNCTION_LIKE: |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1220 | DecodeIdentifierInfo(Record[0]); |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1221 | break; |
| 1222 | |
| 1223 | case pch::PP_TOKEN: |
| 1224 | // Ignore tokens. |
| 1225 | break; |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1226 | |
| 1227 | case pch::PP_MACRO_INSTANTIATION: |
| 1228 | case pch::PP_MACRO_DEFINITION: |
| 1229 | // Read the macro record. |
| 1230 | ReadMacroRecord(Cursor.GetCurrentBitNo()); |
| 1231 | break; |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1232 | } |
| 1233 | } |
| 1234 | } |
| 1235 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1236 | MacroDefinition *PCHReader::getMacroDefinition(pch::IdentID ID) { |
| 1237 | if (ID == 0 || ID >= MacroDefinitionsLoaded.size()) |
| 1238 | return 0; |
| 1239 | |
| 1240 | if (!MacroDefinitionsLoaded[ID]) |
| 1241 | ReadMacroRecord(MacroDefinitionOffsets[ID]); |
| 1242 | |
| 1243 | return MacroDefinitionsLoaded[ID]; |
| 1244 | } |
| 1245 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1246 | /// \brief If we are loading a relocatable PCH file, and the filename is |
| 1247 | /// not an absolute path, add the system root to the beginning of the file |
| 1248 | /// name. |
| 1249 | void PCHReader::MaybeAddSystemRootToFilename(std::string &Filename) { |
| 1250 | // If this is not a relocatable PCH file, there's nothing to do. |
| 1251 | if (!RelocatablePCH) |
| 1252 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1253 | |
Daniel Dunbar | d5b2197 | 2009-11-18 19:50:41 +0000 | [diff] [blame] | 1254 | if (Filename.empty() || llvm::sys::Path(Filename).isAbsolute()) |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1255 | return; |
| 1256 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1257 | if (isysroot == 0) { |
| 1258 | // If no system root was given, default to '/' |
| 1259 | Filename.insert(Filename.begin(), '/'); |
| 1260 | return; |
| 1261 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1262 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1263 | unsigned Length = strlen(isysroot); |
| 1264 | if (isysroot[Length - 1] != '/') |
| 1265 | Filename.insert(Filename.begin(), '/'); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1266 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1267 | Filename.insert(Filename.begin(), isysroot, isysroot + Length); |
| 1268 | } |
| 1269 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1270 | PCHReader::PCHReadResult |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1271 | PCHReader::ReadPCHBlock() { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1272 | if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1273 | Error("malformed block record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1274 | return Failure; |
| 1275 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1276 | |
| 1277 | // Read all of the records and blocks for the PCH file. |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1278 | RecordData Record; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1279 | while (!Stream.AtEndOfStream()) { |
| 1280 | unsigned Code = Stream.ReadCode(); |
| 1281 | if (Code == llvm::bitc::END_BLOCK) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1282 | if (Stream.ReadBlockEnd()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1283 | Error("error at end of module block in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1284 | return Failure; |
| 1285 | } |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1286 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1287 | return Success; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1288 | } |
| 1289 | |
| 1290 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 1291 | switch (Stream.ReadSubBlockID()) { |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 1292 | case pch::DECLTYPES_BLOCK_ID: |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 1293 | // We lazily load the decls block, but we want to set up the |
| 1294 | // DeclsCursor cursor to point into it. Clone our current bitcode |
| 1295 | // cursor to it, enter the block and read the abbrevs in that block. |
| 1296 | // With the main cursor, we just skip over it. |
| 1297 | DeclsCursor = Stream; |
| 1298 | if (Stream.SkipBlock() || // Skip with the main cursor. |
| 1299 | // Read the abbrevs. |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 1300 | ReadBlockAbbrevs(DeclsCursor, pch::DECLTYPES_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1301 | Error("malformed block record in PCH file"); |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 1302 | return Failure; |
| 1303 | } |
| 1304 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1305 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1306 | case pch::PREPROCESSOR_BLOCK_ID: |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1307 | MacroCursor = Stream; |
| 1308 | if (PP) |
| 1309 | PP->setExternalSource(this); |
| 1310 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1311 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1312 | Error("malformed block record in PCH file"); |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1313 | return Failure; |
| 1314 | } |
| 1315 | break; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 1316 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1317 | case pch::SOURCE_MANAGER_BLOCK_ID: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1318 | switch (ReadSourceManagerBlock()) { |
| 1319 | case Success: |
| 1320 | break; |
| 1321 | |
| 1322 | case Failure: |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1323 | Error("malformed source manager block in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1324 | return Failure; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1325 | |
| 1326 | case IgnorePCH: |
| 1327 | return IgnorePCH; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1328 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1329 | break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1330 | } |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1331 | continue; |
| 1332 | } |
| 1333 | |
| 1334 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
| 1335 | Stream.ReadAbbrevRecord(); |
| 1336 | continue; |
| 1337 | } |
| 1338 | |
| 1339 | // Read and process a record. |
| 1340 | Record.clear(); |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1341 | const char *BlobStart = 0; |
| 1342 | unsigned BlobLen = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1343 | switch ((pch::PCHRecordTypes)Stream.ReadRecord(Code, Record, |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1344 | &BlobStart, &BlobLen)) { |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1345 | default: // Default behavior: ignore. |
| 1346 | break; |
| 1347 | |
| 1348 | case pch::TYPE_OFFSET: |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1349 | if (!TypesLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1350 | Error("duplicate TYPE_OFFSET record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1351 | return Failure; |
| 1352 | } |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 1353 | TypeOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1354 | TypesLoaded.resize(Record[0]); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1355 | break; |
| 1356 | |
| 1357 | case pch::DECL_OFFSET: |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1358 | if (!DeclsLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1359 | Error("duplicate DECL_OFFSET record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1360 | return Failure; |
| 1361 | } |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 1362 | DeclOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1363 | DeclsLoaded.resize(Record[0]); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1364 | break; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1365 | |
| 1366 | case pch::LANGUAGE_OPTIONS: |
| 1367 | if (ParseLanguageOptions(Record)) |
| 1368 | return IgnorePCH; |
| 1369 | break; |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1370 | |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 1371 | case pch::METADATA: { |
| 1372 | if (Record[0] != pch::VERSION_MAJOR) { |
| 1373 | Diag(Record[0] < pch::VERSION_MAJOR? diag::warn_pch_version_too_old |
| 1374 | : diag::warn_pch_version_too_new); |
| 1375 | return IgnorePCH; |
| 1376 | } |
| 1377 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1378 | RelocatablePCH = Record[4]; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1379 | if (Listener) { |
| 1380 | std::string TargetTriple(BlobStart, BlobLen); |
| 1381 | if (Listener->ReadTargetTriple(TargetTriple)) |
| 1382 | return IgnorePCH; |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1383 | } |
| 1384 | break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1385 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1386 | |
| 1387 | case pch::IDENTIFIER_TABLE: |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1388 | IdentifierTableData = BlobStart; |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1389 | if (Record[0]) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1390 | IdentifierLookupTable |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1391 | = PCHIdentifierLookupTable::Create( |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1392 | (const unsigned char *)IdentifierTableData + Record[0], |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1393 | (const unsigned char *)IdentifierTableData, |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1394 | PCHIdentifierLookupTrait(*this)); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1395 | if (PP) |
| 1396 | PP->getIdentifierTable().setExternalIdentifierLookup(this); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1397 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1398 | break; |
| 1399 | |
| 1400 | case pch::IDENTIFIER_OFFSET: |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1401 | if (!IdentifiersLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1402 | Error("duplicate IDENTIFIER_OFFSET record in PCH file"); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1403 | return Failure; |
| 1404 | } |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1405 | IdentifierOffsets = (const uint32_t *)BlobStart; |
| 1406 | IdentifiersLoaded.resize(Record[0]); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1407 | if (PP) |
| 1408 | PP->getHeaderSearchInfo().SetExternalLookup(this); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1409 | break; |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 1410 | |
| 1411 | case pch::EXTERNAL_DEFINITIONS: |
| 1412 | if (!ExternalDefinitions.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1413 | Error("duplicate EXTERNAL_DEFINITIONS record in PCH file"); |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 1414 | return Failure; |
| 1415 | } |
| 1416 | ExternalDefinitions.swap(Record); |
| 1417 | break; |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1418 | |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 1419 | case pch::SPECIAL_TYPES: |
| 1420 | SpecialTypes.swap(Record); |
| 1421 | break; |
| 1422 | |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1423 | case pch::STATISTICS: |
| 1424 | TotalNumStatements = Record[0]; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1425 | TotalNumMacros = Record[1]; |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 1426 | TotalLexicalDeclContexts = Record[2]; |
| 1427 | TotalVisibleDeclContexts = Record[3]; |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1428 | break; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1429 | |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 1430 | case pch::TENTATIVE_DEFINITIONS: |
| 1431 | if (!TentativeDefinitions.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1432 | Error("duplicate TENTATIVE_DEFINITIONS record in PCH file"); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 1433 | return Failure; |
| 1434 | } |
| 1435 | TentativeDefinitions.swap(Record); |
| 1436 | break; |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 1437 | |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 1438 | case pch::UNUSED_STATIC_FUNCS: |
| 1439 | if (!UnusedStaticFuncs.empty()) { |
| 1440 | Error("duplicate UNUSED_STATIC_FUNCS record in PCH file"); |
| 1441 | return Failure; |
| 1442 | } |
| 1443 | UnusedStaticFuncs.swap(Record); |
| 1444 | break; |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1445 | |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 1446 | case pch::LOCALLY_SCOPED_EXTERNAL_DECLS: |
| 1447 | if (!LocallyScopedExternalDecls.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1448 | Error("duplicate LOCALLY_SCOPED_EXTERNAL_DECLS record in PCH file"); |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 1449 | return Failure; |
| 1450 | } |
| 1451 | LocallyScopedExternalDecls.swap(Record); |
| 1452 | break; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1453 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1454 | case pch::SELECTOR_OFFSETS: |
| 1455 | SelectorOffsets = (const uint32_t *)BlobStart; |
| 1456 | TotalNumSelectors = Record[0]; |
| 1457 | SelectorsLoaded.resize(TotalNumSelectors); |
| 1458 | break; |
| 1459 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1460 | case pch::METHOD_POOL: |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1461 | MethodPoolLookupTableData = (const unsigned char *)BlobStart; |
| 1462 | if (Record[0]) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1463 | MethodPoolLookupTable |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1464 | = PCHMethodPoolLookupTable::Create( |
| 1465 | MethodPoolLookupTableData + Record[0], |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1466 | MethodPoolLookupTableData, |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1467 | PCHMethodPoolLookupTrait(*this)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1468 | TotalSelectorsInMethodPool = Record[1]; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1469 | break; |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1470 | |
| 1471 | case pch::PP_COUNTER_VALUE: |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1472 | if (!Record.empty() && Listener) |
| 1473 | Listener->ReadCounter(Record[0]); |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1474 | break; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1475 | |
| 1476 | case pch::SOURCE_LOCATION_OFFSETS: |
Chris Lattner | 090d9b5 | 2009-04-27 19:01:47 +0000 | [diff] [blame] | 1477 | SLocOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1478 | TotalNumSLocEntries = Record[0]; |
Douglas Gregor | 445e23e | 2009-10-05 21:07:28 +0000 | [diff] [blame] | 1479 | SourceMgr.PreallocateSLocEntries(this, TotalNumSLocEntries, Record[1]); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1480 | break; |
| 1481 | |
| 1482 | case pch::SOURCE_LOCATION_PRELOADS: |
| 1483 | for (unsigned I = 0, N = Record.size(); I != N; ++I) { |
| 1484 | PCHReadResult Result = ReadSLocEntryRecord(Record[I]); |
| 1485 | if (Result != Success) |
| 1486 | return Result; |
| 1487 | } |
| 1488 | break; |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1489 | |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 1490 | case pch::STAT_CACHE: { |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1491 | PCHStatCache *MyStatCache = |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 1492 | new PCHStatCache((const unsigned char *)BlobStart + Record[0], |
| 1493 | (const unsigned char *)BlobStart, |
| 1494 | NumStatHits, NumStatMisses); |
| 1495 | FileMgr.addStatCache(MyStatCache); |
| 1496 | StatCache = MyStatCache; |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1497 | break; |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 1498 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1499 | |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 1500 | case pch::EXT_VECTOR_DECLS: |
| 1501 | if (!ExtVectorDecls.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1502 | Error("duplicate EXT_VECTOR_DECLS record in PCH file"); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 1503 | return Failure; |
| 1504 | } |
| 1505 | ExtVectorDecls.swap(Record); |
| 1506 | break; |
| 1507 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1508 | case pch::ORIGINAL_FILE_NAME: |
Daniel Dunbar | 7b5a121 | 2009-11-11 05:29:04 +0000 | [diff] [blame] | 1509 | ActualOriginalFileName.assign(BlobStart, BlobLen); |
| 1510 | OriginalFileName = ActualOriginalFileName; |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1511 | MaybeAddSystemRootToFilename(OriginalFileName); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1512 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1513 | |
Ted Kremenek | 5b4ec63 | 2010-01-22 20:59:36 +0000 | [diff] [blame] | 1514 | case pch::VERSION_CONTROL_BRANCH_REVISION: { |
Ted Kremenek | 974be4d | 2010-02-12 23:31:14 +0000 | [diff] [blame] | 1515 | const std::string &CurBranch = getClangFullRepositoryVersion(); |
Ted Kremenek | 517e676 | 2010-01-22 20:55:35 +0000 | [diff] [blame] | 1516 | llvm::StringRef PCHBranch(BlobStart, BlobLen); |
Ted Kremenek | 974be4d | 2010-02-12 23:31:14 +0000 | [diff] [blame] | 1517 | if (llvm::StringRef(CurBranch) != PCHBranch) { |
Douglas Gregor | 445e23e | 2009-10-05 21:07:28 +0000 | [diff] [blame] | 1518 | Diag(diag::warn_pch_different_branch) << PCHBranch << CurBranch; |
| 1519 | return IgnorePCH; |
| 1520 | } |
| 1521 | break; |
| 1522 | } |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1523 | |
| 1524 | case pch::MACRO_DEFINITION_OFFSETS: |
| 1525 | MacroDefinitionOffsets = (const uint32_t *)BlobStart; |
| 1526 | if (PP) { |
| 1527 | if (!PP->getPreprocessingRecord()) |
| 1528 | PP->createPreprocessingRecord(); |
| 1529 | PP->getPreprocessingRecord()->SetExternalSource(*this, Record[0]); |
| 1530 | } else { |
| 1531 | NumPreallocatedPreprocessingEntities = Record[0]; |
| 1532 | } |
| 1533 | |
| 1534 | MacroDefinitionsLoaded.resize(Record[1]); |
| 1535 | break; |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1536 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1537 | } |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1538 | Error("premature end of bitstream in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1539 | return Failure; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1540 | } |
| 1541 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1542 | PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1543 | // Set the PCH file name. |
| 1544 | this->FileName = FileName; |
| 1545 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1546 | // Open the PCH file. |
Daniel Dunbar | f3c740e | 2009-09-22 05:38:01 +0000 | [diff] [blame] | 1547 | // |
| 1548 | // FIXME: This shouldn't be here, we should just take a raw_ostream. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1549 | std::string ErrStr; |
Daniel Dunbar | 731ad8f | 2009-11-10 00:46:19 +0000 | [diff] [blame] | 1550 | Buffer.reset(llvm::MemoryBuffer::getFileOrSTDIN(FileName, &ErrStr)); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1551 | if (!Buffer) { |
| 1552 | Error(ErrStr.c_str()); |
| 1553 | return IgnorePCH; |
| 1554 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1555 | |
| 1556 | // Initialize the stream |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1557 | StreamFile.init((const unsigned char *)Buffer->getBufferStart(), |
Chris Lattner | b9fa917 | 2009-04-26 20:59:20 +0000 | [diff] [blame] | 1558 | (const unsigned char *)Buffer->getBufferEnd()); |
| 1559 | Stream.init(StreamFile); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1560 | |
| 1561 | // Sniff for the signature. |
| 1562 | if (Stream.Read(8) != 'C' || |
| 1563 | Stream.Read(8) != 'P' || |
| 1564 | Stream.Read(8) != 'C' || |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1565 | Stream.Read(8) != 'H') { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1566 | Diag(diag::err_not_a_pch_file) << FileName; |
| 1567 | return Failure; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1568 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1569 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1570 | while (!Stream.AtEndOfStream()) { |
| 1571 | unsigned Code = Stream.ReadCode(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1572 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1573 | if (Code != llvm::bitc::ENTER_SUBBLOCK) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1574 | Error("invalid record at top-level of PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1575 | return Failure; |
| 1576 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1577 | |
| 1578 | unsigned BlockID = Stream.ReadSubBlockID(); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1579 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1580 | // We only know the PCH subblock ID. |
| 1581 | switch (BlockID) { |
| 1582 | case llvm::bitc::BLOCKINFO_BLOCK_ID: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1583 | if (Stream.ReadBlockInfoBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1584 | Error("malformed BlockInfoBlock in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1585 | return Failure; |
| 1586 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1587 | break; |
| 1588 | case pch::PCH_BLOCK_ID: |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1589 | switch (ReadPCHBlock()) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1590 | case Success: |
| 1591 | break; |
| 1592 | |
| 1593 | case Failure: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1594 | return Failure; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1595 | |
| 1596 | case IgnorePCH: |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1597 | // FIXME: We could consider reading through to the end of this |
| 1598 | // PCH block, skipping subblocks, to see if there are other |
| 1599 | // PCH blocks elsewhere. |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1600 | |
| 1601 | // Clear out any preallocated source location entries, so that |
| 1602 | // the source manager does not try to resolve them later. |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1603 | SourceMgr.ClearPreallocatedSLocEntries(); |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1604 | |
| 1605 | // Remove the stat cache. |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 1606 | if (StatCache) |
| 1607 | FileMgr.removeStatCache((PCHStatCache*)StatCache); |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1608 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1609 | return IgnorePCH; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1610 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1611 | break; |
| 1612 | default: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1613 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1614 | Error("malformed block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1615 | return Failure; |
| 1616 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1617 | break; |
| 1618 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1619 | } |
| 1620 | |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 1621 | // Check the predefines buffer. |
Daniel Dunbar | dc3c0d2 | 2009-11-11 00:52:11 +0000 | [diff] [blame] | 1622 | if (CheckPredefinesBuffer(llvm::StringRef(PCHPredefines, PCHPredefinesLen), |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 1623 | PCHPredefinesBufferID)) |
| 1624 | return IgnorePCH; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1625 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1626 | if (PP) { |
Zhongxing Xu | 0899621 | 2009-07-18 09:26:51 +0000 | [diff] [blame] | 1627 | // Initialization of keywords and pragmas occurs before the |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1628 | // PCH file is read, so there may be some identifiers that were |
| 1629 | // loaded into the IdentifierTable before we intercepted the |
| 1630 | // creation of identifiers. Iterate through the list of known |
| 1631 | // identifiers and determine whether we have to establish |
| 1632 | // preprocessor definitions or top-level identifier declaration |
| 1633 | // chains for those identifiers. |
| 1634 | // |
| 1635 | // We copy the IdentifierInfo pointers to a small vector first, |
| 1636 | // since de-serializing declarations or macro definitions can add |
| 1637 | // new entries into the identifier table, invalidating the |
| 1638 | // iterators. |
| 1639 | llvm::SmallVector<IdentifierInfo *, 128> Identifiers; |
| 1640 | for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(), |
| 1641 | IdEnd = PP->getIdentifierTable().end(); |
| 1642 | Id != IdEnd; ++Id) |
| 1643 | Identifiers.push_back(Id->second); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1644 | PCHIdentifierLookupTable *IdTable |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1645 | = (PCHIdentifierLookupTable *)IdentifierLookupTable; |
| 1646 | for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) { |
| 1647 | IdentifierInfo *II = Identifiers[I]; |
| 1648 | // Look in the on-disk hash table for an entry for |
| 1649 | PCHIdentifierLookupTrait Info(*this, II); |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1650 | std::pair<const char*, unsigned> Key(II->getNameStart(), II->getLength()); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1651 | PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info); |
| 1652 | if (Pos == IdTable->end()) |
| 1653 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1654 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1655 | // Dereferencing the iterator has the effect of populating the |
| 1656 | // IdentifierInfo node with the various declarations it needs. |
| 1657 | (void)*Pos; |
| 1658 | } |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1661 | if (Context) |
| 1662 | InitializeContext(*Context); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1663 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1664 | return Success; |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1665 | } |
| 1666 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1667 | void PCHReader::setPreprocessor(Preprocessor &pp) { |
| 1668 | PP = &pp; |
| 1669 | |
| 1670 | if (NumPreallocatedPreprocessingEntities) { |
| 1671 | if (!PP->getPreprocessingRecord()) |
| 1672 | PP->createPreprocessingRecord(); |
| 1673 | PP->getPreprocessingRecord()->SetExternalSource(*this, |
| 1674 | NumPreallocatedPreprocessingEntities); |
| 1675 | NumPreallocatedPreprocessingEntities = 0; |
| 1676 | } |
| 1677 | } |
| 1678 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1679 | void PCHReader::InitializeContext(ASTContext &Ctx) { |
| 1680 | Context = &Ctx; |
| 1681 | assert(Context && "Passed null context!"); |
| 1682 | |
| 1683 | assert(PP && "Forgot to set Preprocessor ?"); |
| 1684 | PP->getIdentifierTable().setExternalIdentifierLookup(this); |
| 1685 | PP->getHeaderSearchInfo().SetExternalLookup(this); |
Douglas Gregor | 88a3586 | 2010-01-04 19:18:44 +0000 | [diff] [blame] | 1686 | PP->setExternalSource(this); |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 1687 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1688 | // Load the translation unit declaration |
| 1689 | ReadDeclRecord(DeclOffsets[0], 0); |
| 1690 | |
| 1691 | // Load the special types. |
| 1692 | Context->setBuiltinVaListType( |
| 1693 | GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST])); |
| 1694 | if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID]) |
| 1695 | Context->setObjCIdType(GetType(Id)); |
| 1696 | if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR]) |
| 1697 | Context->setObjCSelType(GetType(Sel)); |
| 1698 | if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL]) |
| 1699 | Context->setObjCProtoType(GetType(Proto)); |
| 1700 | if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS]) |
| 1701 | Context->setObjCClassType(GetType(Class)); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1702 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1703 | if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING]) |
| 1704 | Context->setCFConstantStringType(GetType(String)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1705 | if (unsigned FastEnum |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1706 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE]) |
| 1707 | Context->setObjCFastEnumerationStateType(GetType(FastEnum)); |
Douglas Gregor | c29f77b | 2009-07-07 16:35:42 +0000 | [diff] [blame] | 1708 | if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) { |
| 1709 | QualType FileType = GetType(File); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1710 | if (FileType.isNull()) { |
| 1711 | Error("FILE type is NULL"); |
| 1712 | return; |
| 1713 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1714 | if (const TypedefType *Typedef = FileType->getAs<TypedefType>()) |
Douglas Gregor | c29f77b | 2009-07-07 16:35:42 +0000 | [diff] [blame] | 1715 | Context->setFILEDecl(Typedef->getDecl()); |
| 1716 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1717 | const TagType *Tag = FileType->getAs<TagType>(); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1718 | if (!Tag) { |
| 1719 | Error("Invalid FILE type in PCH file"); |
| 1720 | return; |
| 1721 | } |
Douglas Gregor | c29f77b | 2009-07-07 16:35:42 +0000 | [diff] [blame] | 1722 | Context->setFILEDecl(Tag->getDecl()); |
| 1723 | } |
| 1724 | } |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1725 | if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) { |
| 1726 | QualType Jmp_bufType = GetType(Jmp_buf); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1727 | if (Jmp_bufType.isNull()) { |
| 1728 | Error("jmp_bug type is NULL"); |
| 1729 | return; |
| 1730 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1731 | if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>()) |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1732 | Context->setjmp_bufDecl(Typedef->getDecl()); |
| 1733 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1734 | const TagType *Tag = Jmp_bufType->getAs<TagType>(); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1735 | if (!Tag) { |
| 1736 | Error("Invalid jmp_bug type in PCH file"); |
| 1737 | return; |
| 1738 | } |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1739 | Context->setjmp_bufDecl(Tag->getDecl()); |
| 1740 | } |
| 1741 | } |
| 1742 | if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) { |
| 1743 | QualType Sigjmp_bufType = GetType(Sigjmp_buf); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1744 | if (Sigjmp_bufType.isNull()) { |
| 1745 | Error("sigjmp_buf type is NULL"); |
| 1746 | return; |
| 1747 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1748 | if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>()) |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1749 | Context->setsigjmp_bufDecl(Typedef->getDecl()); |
| 1750 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1751 | const TagType *Tag = Sigjmp_bufType->getAs<TagType>(); |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1752 | assert(Tag && "Invalid sigjmp_buf type in PCH file"); |
| 1753 | Context->setsigjmp_bufDecl(Tag->getDecl()); |
| 1754 | } |
| 1755 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1756 | if (unsigned ObjCIdRedef |
Douglas Gregor | d1571ac | 2009-08-21 00:27:50 +0000 | [diff] [blame] | 1757 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION]) |
| 1758 | Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1759 | if (unsigned ObjCClassRedef |
Douglas Gregor | d1571ac | 2009-08-21 00:27:50 +0000 | [diff] [blame] | 1760 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) |
| 1761 | Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef); |
Mike Stump | adaaad3 | 2009-10-20 02:12:22 +0000 | [diff] [blame] | 1762 | if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_DESCRIPTOR]) |
| 1763 | Context->setBlockDescriptorType(GetType(String)); |
Mike Stump | 083c25e | 2009-10-22 00:49:09 +0000 | [diff] [blame] | 1764 | if (unsigned String |
| 1765 | = SpecialTypes[pch::SPECIAL_TYPE_BLOCK_EXTENDED_DESCRIPTOR]) |
| 1766 | Context->setBlockDescriptorExtendedType(GetType(String)); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1767 | if (unsigned ObjCSelRedef |
| 1768 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) |
| 1769 | Context->ObjCSelRedefinitionType = GetType(ObjCSelRedef); |
| 1770 | if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_NS_CONSTANT_STRING]) |
| 1771 | Context->setNSConstantStringType(GetType(String)); |
Argyrios Kyrtzidis | 0061138 | 2010-07-04 21:44:19 +0000 | [diff] [blame^] | 1772 | |
| 1773 | if (SpecialTypes[pch::SPECIAL_TYPE_INT128_INSTALLED]) |
| 1774 | Context->setInt128Installed(); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1775 | } |
| 1776 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1777 | /// \brief Retrieve the name of the original source file name |
| 1778 | /// directly from the PCH file, without actually loading the PCH |
| 1779 | /// file. |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1780 | std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName, |
| 1781 | Diagnostic &Diags) { |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1782 | // Open the PCH file. |
| 1783 | std::string ErrStr; |
| 1784 | llvm::OwningPtr<llvm::MemoryBuffer> Buffer; |
| 1785 | Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr)); |
| 1786 | if (!Buffer) { |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1787 | Diags.Report(diag::err_fe_unable_to_read_pch_file) << ErrStr; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1788 | return std::string(); |
| 1789 | } |
| 1790 | |
| 1791 | // Initialize the stream |
| 1792 | llvm::BitstreamReader StreamFile; |
| 1793 | llvm::BitstreamCursor Stream; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1794 | StreamFile.init((const unsigned char *)Buffer->getBufferStart(), |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1795 | (const unsigned char *)Buffer->getBufferEnd()); |
| 1796 | Stream.init(StreamFile); |
| 1797 | |
| 1798 | // Sniff for the signature. |
| 1799 | if (Stream.Read(8) != 'C' || |
| 1800 | Stream.Read(8) != 'P' || |
| 1801 | Stream.Read(8) != 'C' || |
| 1802 | Stream.Read(8) != 'H') { |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1803 | Diags.Report(diag::err_fe_not_a_pch_file) << PCHFileName; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1804 | return std::string(); |
| 1805 | } |
| 1806 | |
| 1807 | RecordData Record; |
| 1808 | while (!Stream.AtEndOfStream()) { |
| 1809 | unsigned Code = Stream.ReadCode(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1810 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1811 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 1812 | unsigned BlockID = Stream.ReadSubBlockID(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1813 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1814 | // We only know the PCH subblock ID. |
| 1815 | switch (BlockID) { |
| 1816 | case pch::PCH_BLOCK_ID: |
| 1817 | if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) { |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1818 | Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1819 | return std::string(); |
| 1820 | } |
| 1821 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1822 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1823 | default: |
| 1824 | if (Stream.SkipBlock()) { |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1825 | Diags.Report(diag::err_fe_pch_malformed_block) << PCHFileName; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1826 | return std::string(); |
| 1827 | } |
| 1828 | break; |
| 1829 | } |
| 1830 | continue; |
| 1831 | } |
| 1832 | |
| 1833 | if (Code == llvm::bitc::END_BLOCK) { |
| 1834 | if (Stream.ReadBlockEnd()) { |
Daniel Dunbar | 93ebb1b | 2009-12-03 09:13:06 +0000 | [diff] [blame] | 1835 | Diags.Report(diag::err_fe_pch_error_at_end_block) << PCHFileName; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1836 | return std::string(); |
| 1837 | } |
| 1838 | continue; |
| 1839 | } |
| 1840 | |
| 1841 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
| 1842 | Stream.ReadAbbrevRecord(); |
| 1843 | continue; |
| 1844 | } |
| 1845 | |
| 1846 | Record.clear(); |
| 1847 | const char *BlobStart = 0; |
| 1848 | unsigned BlobLen = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1849 | if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen) |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1850 | == pch::ORIGINAL_FILE_NAME) |
| 1851 | return std::string(BlobStart, BlobLen); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1852 | } |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1853 | |
| 1854 | return std::string(); |
| 1855 | } |
| 1856 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1857 | /// \brief Parse the record that corresponds to a LangOptions data |
| 1858 | /// structure. |
| 1859 | /// |
| 1860 | /// This routine compares the language options used to generate the |
| 1861 | /// PCH file against the language options set for the current |
| 1862 | /// compilation. For each option, we classify differences between the |
| 1863 | /// two compiler states as either "benign" or "important". Benign |
| 1864 | /// differences don't matter, and we accept them without complaint |
| 1865 | /// (and without modifying the language options). Differences between |
| 1866 | /// the states for important options cause the PCH file to be |
| 1867 | /// unusable, so we emit a warning and return true to indicate that |
| 1868 | /// there was an error. |
| 1869 | /// |
| 1870 | /// \returns true if the PCH file is unacceptable, false otherwise. |
| 1871 | bool PCHReader::ParseLanguageOptions( |
| 1872 | const llvm::SmallVectorImpl<uint64_t> &Record) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1873 | if (Listener) { |
| 1874 | LangOptions LangOpts; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1875 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1876 | #define PARSE_LANGOPT(Option) \ |
| 1877 | LangOpts.Option = Record[Idx]; \ |
| 1878 | ++Idx |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1879 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1880 | unsigned Idx = 0; |
| 1881 | PARSE_LANGOPT(Trigraphs); |
| 1882 | PARSE_LANGOPT(BCPLComment); |
| 1883 | PARSE_LANGOPT(DollarIdents); |
| 1884 | PARSE_LANGOPT(AsmPreprocessor); |
| 1885 | PARSE_LANGOPT(GNUMode); |
Chandler Carruth | eb5d7b7 | 2010-04-17 20:17:31 +0000 | [diff] [blame] | 1886 | PARSE_LANGOPT(GNUKeywords); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1887 | PARSE_LANGOPT(ImplicitInt); |
| 1888 | PARSE_LANGOPT(Digraphs); |
| 1889 | PARSE_LANGOPT(HexFloats); |
| 1890 | PARSE_LANGOPT(C99); |
| 1891 | PARSE_LANGOPT(Microsoft); |
| 1892 | PARSE_LANGOPT(CPlusPlus); |
| 1893 | PARSE_LANGOPT(CPlusPlus0x); |
| 1894 | PARSE_LANGOPT(CXXOperatorNames); |
| 1895 | PARSE_LANGOPT(ObjC1); |
| 1896 | PARSE_LANGOPT(ObjC2); |
| 1897 | PARSE_LANGOPT(ObjCNonFragileABI); |
Fariborz Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 1898 | PARSE_LANGOPT(ObjCNonFragileABI2); |
Fariborz Jahanian | 4c9d8d0 | 2010-04-22 21:01:59 +0000 | [diff] [blame] | 1899 | PARSE_LANGOPT(NoConstantCFStrings); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1900 | PARSE_LANGOPT(PascalStrings); |
| 1901 | PARSE_LANGOPT(WritableStrings); |
| 1902 | PARSE_LANGOPT(LaxVectorConversions); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 1903 | PARSE_LANGOPT(AltiVec); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1904 | PARSE_LANGOPT(Exceptions); |
Daniel Dunbar | 7348288 | 2010-02-10 18:48:44 +0000 | [diff] [blame] | 1905 | PARSE_LANGOPT(SjLjExceptions); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1906 | PARSE_LANGOPT(NeXTRuntime); |
| 1907 | PARSE_LANGOPT(Freestanding); |
| 1908 | PARSE_LANGOPT(NoBuiltin); |
| 1909 | PARSE_LANGOPT(ThreadsafeStatics); |
Douglas Gregor | 972d954 | 2009-09-03 14:36:33 +0000 | [diff] [blame] | 1910 | PARSE_LANGOPT(POSIXThreads); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1911 | PARSE_LANGOPT(Blocks); |
| 1912 | PARSE_LANGOPT(EmitAllDecls); |
| 1913 | PARSE_LANGOPT(MathErrno); |
Chris Lattner | a4d7145 | 2010-06-26 21:25:03 +0000 | [diff] [blame] | 1914 | LangOpts.setSignedOverflowBehavior((LangOptions::SignedOverflowBehaviorTy) |
| 1915 | Record[Idx++]); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1916 | PARSE_LANGOPT(HeinousExtensions); |
| 1917 | PARSE_LANGOPT(Optimize); |
| 1918 | PARSE_LANGOPT(OptimizeSize); |
| 1919 | PARSE_LANGOPT(Static); |
| 1920 | PARSE_LANGOPT(PICLevel); |
| 1921 | PARSE_LANGOPT(GNUInline); |
| 1922 | PARSE_LANGOPT(NoInline); |
| 1923 | PARSE_LANGOPT(AccessControl); |
| 1924 | PARSE_LANGOPT(CharIsSigned); |
John Thompson | a6fda12 | 2009-11-05 20:14:16 +0000 | [diff] [blame] | 1925 | PARSE_LANGOPT(ShortWChar); |
Chris Lattner | a4d7145 | 2010-06-26 21:25:03 +0000 | [diff] [blame] | 1926 | LangOpts.setGCMode((LangOptions::GCMode)Record[Idx++]); |
| 1927 | LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx++]); |
Daniel Dunbar | ab8e281 | 2009-09-21 04:16:19 +0000 | [diff] [blame] | 1928 | LangOpts.setStackProtectorMode((LangOptions::StackProtectorMode) |
Chris Lattner | a4d7145 | 2010-06-26 21:25:03 +0000 | [diff] [blame] | 1929 | Record[Idx++]); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1930 | PARSE_LANGOPT(InstantiationDepth); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 1931 | PARSE_LANGOPT(OpenCL); |
Mike Stump | 9c276ae | 2009-12-12 01:27:46 +0000 | [diff] [blame] | 1932 | PARSE_LANGOPT(CatchUndefined); |
| 1933 | // FIXME: Missing ElideConstructors?! |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1934 | #undef PARSE_LANGOPT |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1935 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1936 | return Listener->ReadLanguageOptions(LangOpts); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1937 | } |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1938 | |
| 1939 | return false; |
| 1940 | } |
| 1941 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1942 | void PCHReader::ReadPreprocessedEntities() { |
| 1943 | ReadDefinedMacros(); |
| 1944 | } |
| 1945 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1946 | /// \brief Read and return the type at the given offset. |
| 1947 | /// |
| 1948 | /// This routine actually reads the record corresponding to the type |
| 1949 | /// at the given offset in the bitstream. It is a helper routine for |
| 1950 | /// GetType, which deals with reading type IDs. |
| 1951 | QualType PCHReader::ReadTypeRecord(uint64_t Offset) { |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1952 | // Keep track of where we are in the stream, then jump back there |
| 1953 | // after reading this type. |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 1954 | SavedStreamPosition SavedPosition(DeclsCursor); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1955 | |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 1956 | ReadingKindTracker ReadingKind(Read_Type, *this); |
| 1957 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 1958 | // Note that we are loading a type record. |
| 1959 | LoadingTypeOrDecl Loading(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1960 | |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 1961 | DeclsCursor.JumpToBit(Offset); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1962 | RecordData Record; |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 1963 | unsigned Code = DeclsCursor.ReadCode(); |
| 1964 | switch ((pch::TypeCode)DeclsCursor.ReadRecord(Code, Record)) { |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1965 | case pch::TYPE_EXT_QUAL: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1966 | if (Record.size() != 2) { |
| 1967 | Error("Incorrect encoding of extended qualifier type"); |
| 1968 | return QualType(); |
| 1969 | } |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1970 | QualType Base = GetType(Record[0]); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1971 | Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[1]); |
| 1972 | return Context->getQualifiedType(Base, Quals); |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1973 | } |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1974 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1975 | case pch::TYPE_COMPLEX: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1976 | if (Record.size() != 1) { |
| 1977 | Error("Incorrect encoding of complex type"); |
| 1978 | return QualType(); |
| 1979 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1980 | QualType ElemType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1981 | return Context->getComplexType(ElemType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1982 | } |
| 1983 | |
| 1984 | case pch::TYPE_POINTER: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1985 | if (Record.size() != 1) { |
| 1986 | Error("Incorrect encoding of pointer type"); |
| 1987 | return QualType(); |
| 1988 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1989 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1990 | return Context->getPointerType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
| 1993 | case pch::TYPE_BLOCK_POINTER: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 1994 | if (Record.size() != 1) { |
| 1995 | Error("Incorrect encoding of block pointer type"); |
| 1996 | return QualType(); |
| 1997 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1998 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1999 | return Context->getBlockPointerType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2000 | } |
| 2001 | |
| 2002 | case pch::TYPE_LVALUE_REFERENCE: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2003 | if (Record.size() != 1) { |
| 2004 | Error("Incorrect encoding of lvalue reference type"); |
| 2005 | return QualType(); |
| 2006 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2007 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2008 | return Context->getLValueReferenceType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2009 | } |
| 2010 | |
| 2011 | case pch::TYPE_RVALUE_REFERENCE: { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2012 | if (Record.size() != 1) { |
| 2013 | Error("Incorrect encoding of rvalue reference type"); |
| 2014 | return QualType(); |
| 2015 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2016 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2017 | return Context->getRValueReferenceType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2018 | } |
| 2019 | |
| 2020 | case pch::TYPE_MEMBER_POINTER: { |
Argyrios Kyrtzidis | 240437b | 2010-07-02 11:55:15 +0000 | [diff] [blame] | 2021 | if (Record.size() != 2) { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2022 | Error("Incorrect encoding of member pointer type"); |
| 2023 | return QualType(); |
| 2024 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2025 | QualType PointeeType = GetType(Record[0]); |
| 2026 | QualType ClassType = GetType(Record[1]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2027 | return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2028 | } |
| 2029 | |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2030 | case pch::TYPE_CONSTANT_ARRAY: { |
| 2031 | QualType ElementType = GetType(Record[0]); |
| 2032 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 2033 | unsigned IndexTypeQuals = Record[2]; |
| 2034 | unsigned Idx = 3; |
| 2035 | llvm::APInt Size = ReadAPInt(Record, Idx); |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 2036 | return Context->getConstantArrayType(ElementType, Size, |
| 2037 | ASM, IndexTypeQuals); |
| 2038 | } |
| 2039 | |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2040 | case pch::TYPE_INCOMPLETE_ARRAY: { |
| 2041 | QualType ElementType = GetType(Record[0]); |
| 2042 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 2043 | unsigned IndexTypeQuals = Record[2]; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2044 | return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2045 | } |
| 2046 | |
| 2047 | case pch::TYPE_VARIABLE_ARRAY: { |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2048 | QualType ElementType = GetType(Record[0]); |
| 2049 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 2050 | unsigned IndexTypeQuals = Record[2]; |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 2051 | SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]); |
| 2052 | SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]); |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2053 | return Context->getVariableArrayType(ElementType, ReadExpr(), |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 2054 | ASM, IndexTypeQuals, |
| 2055 | SourceRange(LBLoc, RBLoc)); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2056 | } |
| 2057 | |
| 2058 | case pch::TYPE_VECTOR: { |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 2059 | if (Record.size() != 3) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2060 | Error("incorrect encoding of vector type in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2061 | return QualType(); |
| 2062 | } |
| 2063 | |
| 2064 | QualType ElementType = GetType(Record[0]); |
| 2065 | unsigned NumElements = Record[1]; |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 2066 | unsigned AltiVecSpec = Record[2]; |
| 2067 | return Context->getVectorType(ElementType, NumElements, |
| 2068 | (VectorType::AltiVecSpecific)AltiVecSpec); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2069 | } |
| 2070 | |
| 2071 | case pch::TYPE_EXT_VECTOR: { |
Chris Lattner | 788b0fd | 2010-06-23 06:00:24 +0000 | [diff] [blame] | 2072 | if (Record.size() != 3) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2073 | Error("incorrect encoding of extended vector type in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2074 | return QualType(); |
| 2075 | } |
| 2076 | |
| 2077 | QualType ElementType = GetType(Record[0]); |
| 2078 | unsigned NumElements = Record[1]; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2079 | return Context->getExtVectorType(ElementType, NumElements); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2080 | } |
| 2081 | |
| 2082 | case pch::TYPE_FUNCTION_NO_PROTO: { |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 2083 | if (Record.size() != 4) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2084 | Error("incorrect encoding of no-proto function type"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2085 | return QualType(); |
| 2086 | } |
| 2087 | QualType ResultType = GetType(Record[0]); |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 2088 | FunctionType::ExtInfo Info(Record[1], Record[2], (CallingConv)Record[3]); |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 2089 | return Context->getFunctionNoProtoType(ResultType, Info); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2090 | } |
| 2091 | |
| 2092 | case pch::TYPE_FUNCTION_PROTO: { |
| 2093 | QualType ResultType = GetType(Record[0]); |
Douglas Gregor | 9123666 | 2009-12-22 18:11:50 +0000 | [diff] [blame] | 2094 | bool NoReturn = Record[1]; |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 2095 | unsigned RegParm = Record[2]; |
| 2096 | CallingConv CallConv = (CallingConv)Record[3]; |
| 2097 | unsigned Idx = 4; |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2098 | unsigned NumParams = Record[Idx++]; |
| 2099 | llvm::SmallVector<QualType, 16> ParamTypes; |
| 2100 | for (unsigned I = 0; I != NumParams; ++I) |
| 2101 | ParamTypes.push_back(GetType(Record[Idx++])); |
| 2102 | bool isVariadic = Record[Idx++]; |
| 2103 | unsigned Quals = Record[Idx++]; |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 2104 | bool hasExceptionSpec = Record[Idx++]; |
| 2105 | bool hasAnyExceptionSpec = Record[Idx++]; |
| 2106 | unsigned NumExceptions = Record[Idx++]; |
| 2107 | llvm::SmallVector<QualType, 2> Exceptions; |
| 2108 | for (unsigned I = 0; I != NumExceptions; ++I) |
| 2109 | Exceptions.push_back(GetType(Record[Idx++])); |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 2110 | return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams, |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 2111 | isVariadic, Quals, hasExceptionSpec, |
| 2112 | hasAnyExceptionSpec, NumExceptions, |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 2113 | Exceptions.data(), |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 2114 | FunctionType::ExtInfo(NoReturn, RegParm, |
| 2115 | CallConv)); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2116 | } |
| 2117 | |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2118 | case pch::TYPE_UNRESOLVED_USING: |
| 2119 | return Context->getTypeDeclType( |
| 2120 | cast<UnresolvedUsingTypenameDecl>(GetDecl(Record[0]))); |
| 2121 | |
Argyrios Kyrtzidis | 9763e22 | 2010-07-02 11:55:11 +0000 | [diff] [blame] | 2122 | case pch::TYPE_TYPEDEF: { |
| 2123 | if (Record.size() != 2) { |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2124 | Error("incorrect encoding of typedef type"); |
| 2125 | return QualType(); |
| 2126 | } |
Argyrios Kyrtzidis | 9763e22 | 2010-07-02 11:55:11 +0000 | [diff] [blame] | 2127 | TypedefDecl *Decl = cast<TypedefDecl>(GetDecl(Record[0])); |
| 2128 | QualType Canonical = GetType(Record[1]); |
| 2129 | return Context->getTypedefType(Decl, Canonical); |
| 2130 | } |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2131 | |
| 2132 | case pch::TYPE_TYPEOF_EXPR: |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2133 | return Context->getTypeOfExprType(ReadExpr()); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2134 | |
| 2135 | case pch::TYPE_TYPEOF: { |
| 2136 | if (Record.size() != 1) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2137 | Error("incorrect encoding of typeof(type) in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2138 | return QualType(); |
| 2139 | } |
| 2140 | QualType UnderlyingType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2141 | return Context->getTypeOfType(UnderlyingType); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2142 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2143 | |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 2144 | case pch::TYPE_DECLTYPE: |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2145 | return Context->getDecltypeType(ReadExpr()); |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 2146 | |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2147 | case pch::TYPE_RECORD: |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2148 | if (Record.size() != 1) { |
| 2149 | Error("incorrect encoding of record type"); |
| 2150 | return QualType(); |
| 2151 | } |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2152 | return Context->getTypeDeclType(cast<RecordDecl>(GetDecl(Record[0]))); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2153 | |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 2154 | case pch::TYPE_ENUM: |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2155 | if (Record.size() != 1) { |
| 2156 | Error("incorrect encoding of enum type"); |
| 2157 | return QualType(); |
| 2158 | } |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2159 | return Context->getTypeDeclType(cast<EnumDecl>(GetDecl(Record[0]))); |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 2160 | |
John McCall | 7da2431 | 2009-09-05 00:15:47 +0000 | [diff] [blame] | 2161 | case pch::TYPE_ELABORATED: { |
Argyrios Kyrtzidis | 3acad62 | 2010-06-25 16:24:58 +0000 | [diff] [blame] | 2162 | unsigned Idx = 0; |
| 2163 | ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; |
| 2164 | NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx); |
| 2165 | QualType NamedType = GetType(Record[Idx++]); |
| 2166 | return Context->getElaboratedType(Keyword, NNS, NamedType); |
John McCall | 7da2431 | 2009-09-05 00:15:47 +0000 | [diff] [blame] | 2167 | } |
| 2168 | |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2169 | case pch::TYPE_OBJC_INTERFACE: { |
Chris Lattner | c6fa445 | 2009-04-22 06:45:28 +0000 | [diff] [blame] | 2170 | unsigned Idx = 0; |
| 2171 | ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++])); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2172 | return Context->getObjCInterfaceType(ItfD); |
| 2173 | } |
| 2174 | |
| 2175 | case pch::TYPE_OBJC_OBJECT: { |
| 2176 | unsigned Idx = 0; |
| 2177 | QualType Base = GetType(Record[Idx++]); |
Chris Lattner | c6fa445 | 2009-04-22 06:45:28 +0000 | [diff] [blame] | 2178 | unsigned NumProtos = Record[Idx++]; |
| 2179 | llvm::SmallVector<ObjCProtocolDecl*, 4> Protos; |
| 2180 | for (unsigned I = 0; I != NumProtos; ++I) |
| 2181 | Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++]))); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2182 | return Context->getObjCObjectType(Base, Protos.data(), NumProtos); |
Chris Lattner | c6fa445 | 2009-04-22 06:45:28 +0000 | [diff] [blame] | 2183 | } |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 2184 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2185 | case pch::TYPE_OBJC_OBJECT_POINTER: { |
Chris Lattner | d7a3fcd | 2009-04-22 06:40:03 +0000 | [diff] [blame] | 2186 | unsigned Idx = 0; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2187 | QualType Pointee = GetType(Record[Idx++]); |
| 2188 | return Context->getObjCObjectPointerType(Pointee); |
Chris Lattner | d7a3fcd | 2009-04-22 06:40:03 +0000 | [diff] [blame] | 2189 | } |
Argyrios Kyrtzidis | 24fab41 | 2009-09-29 19:42:55 +0000 | [diff] [blame] | 2190 | |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 2191 | case pch::TYPE_SUBST_TEMPLATE_TYPE_PARM: { |
| 2192 | unsigned Idx = 0; |
| 2193 | QualType Parm = GetType(Record[Idx++]); |
| 2194 | QualType Replacement = GetType(Record[Idx++]); |
| 2195 | return |
| 2196 | Context->getSubstTemplateTypeParmType(cast<TemplateTypeParmType>(Parm), |
| 2197 | Replacement); |
| 2198 | } |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 2199 | |
| 2200 | case pch::TYPE_INJECTED_CLASS_NAME: { |
| 2201 | CXXRecordDecl *D = cast<CXXRecordDecl>(GetDecl(Record[0])); |
| 2202 | QualType TST = GetType(Record[1]); // probably derivable |
Argyrios Kyrtzidis | 43921b5 | 2010-07-02 11:55:20 +0000 | [diff] [blame] | 2203 | // FIXME: ASTContext::getInjectedClassNameType is not currently suitable |
| 2204 | // for PCH reading, too much interdependencies. |
| 2205 | return |
| 2206 | QualType(new (*Context, TypeAlignment) InjectedClassNameType(D, TST), 0); |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 2207 | } |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 2208 | |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 2209 | case pch::TYPE_TEMPLATE_TYPE_PARM: { |
| 2210 | unsigned Idx = 0; |
| 2211 | unsigned Depth = Record[Idx++]; |
| 2212 | unsigned Index = Record[Idx++]; |
| 2213 | bool Pack = Record[Idx++]; |
| 2214 | IdentifierInfo *Name = GetIdentifierInfo(Record, Idx); |
| 2215 | return Context->getTemplateTypeParmType(Depth, Index, Pack, Name); |
| 2216 | } |
Argyrios Kyrtzidis | 8dfbd8b | 2010-06-24 08:57:31 +0000 | [diff] [blame] | 2217 | |
| 2218 | case pch::TYPE_DEPENDENT_NAME: { |
| 2219 | unsigned Idx = 0; |
| 2220 | ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; |
| 2221 | NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx); |
| 2222 | const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx); |
Argyrios Kyrtzidis | f48d45e | 2010-07-02 11:55:24 +0000 | [diff] [blame] | 2223 | QualType Canon = GetType(Record[Idx++]); |
| 2224 | return Context->getDependentNameType(Keyword, NNS, Name, Canon); |
Argyrios Kyrtzidis | 8dfbd8b | 2010-06-24 08:57:31 +0000 | [diff] [blame] | 2225 | } |
Argyrios Kyrtzidis | 3acad62 | 2010-06-25 16:24:58 +0000 | [diff] [blame] | 2226 | |
| 2227 | case pch::TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: { |
| 2228 | unsigned Idx = 0; |
| 2229 | ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; |
| 2230 | NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx); |
| 2231 | const IdentifierInfo *Name = this->GetIdentifierInfo(Record, Idx); |
| 2232 | unsigned NumArgs = Record[Idx++]; |
| 2233 | llvm::SmallVector<TemplateArgument, 8> Args; |
| 2234 | Args.reserve(NumArgs); |
| 2235 | while (NumArgs--) |
| 2236 | Args.push_back(ReadTemplateArgument(Record, Idx)); |
| 2237 | return Context->getDependentTemplateSpecializationType(Keyword, NNS, Name, |
| 2238 | Args.size(), Args.data()); |
| 2239 | } |
Argyrios Kyrtzidis | ae8b17f | 2010-06-30 08:49:25 +0000 | [diff] [blame] | 2240 | |
| 2241 | case pch::TYPE_DEPENDENT_SIZED_ARRAY: { |
| 2242 | unsigned Idx = 0; |
| 2243 | |
| 2244 | // ArrayType |
| 2245 | QualType ElementType = GetType(Record[Idx++]); |
| 2246 | ArrayType::ArraySizeModifier ASM |
| 2247 | = (ArrayType::ArraySizeModifier)Record[Idx++]; |
| 2248 | unsigned IndexTypeQuals = Record[Idx++]; |
| 2249 | |
| 2250 | // DependentSizedArrayType |
| 2251 | Expr *NumElts = ReadExpr(); |
| 2252 | SourceRange Brackets = ReadSourceRange(Record, Idx); |
| 2253 | |
| 2254 | return Context->getDependentSizedArrayType(ElementType, NumElts, ASM, |
| 2255 | IndexTypeQuals, Brackets); |
| 2256 | } |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 2257 | |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 2258 | case pch::TYPE_TEMPLATE_SPECIALIZATION: { |
| 2259 | unsigned Idx = 0; |
| 2260 | TemplateName Name = ReadTemplateName(Record, Idx); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 2261 | llvm::SmallVector<TemplateArgument, 8> Args; |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 2262 | ReadTemplateArgumentList(Args, Record, Idx); |
| 2263 | QualType Canon = GetType(Record[Idx++]); |
Argyrios Kyrtzidis | 9763e22 | 2010-07-02 11:55:11 +0000 | [diff] [blame] | 2264 | if (Canon.isNull()) |
| 2265 | return Context->getCanonicalTemplateSpecializationType(Name, Args.data(), |
| 2266 | Args.size()); |
| 2267 | else |
| 2268 | return Context->getTemplateSpecializationType(Name, Args.data(), |
| 2269 | Args.size(), Canon); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 2270 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2271 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2272 | // Suppress a GCC warning |
| 2273 | return QualType(); |
| 2274 | } |
| 2275 | |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2276 | namespace { |
| 2277 | |
| 2278 | class TypeLocReader : public TypeLocVisitor<TypeLocReader> { |
| 2279 | PCHReader &Reader; |
| 2280 | const PCHReader::RecordData &Record; |
| 2281 | unsigned &Idx; |
| 2282 | |
| 2283 | public: |
| 2284 | TypeLocReader(PCHReader &Reader, const PCHReader::RecordData &Record, |
| 2285 | unsigned &Idx) |
| 2286 | : Reader(Reader), Record(Record), Idx(Idx) { } |
| 2287 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2288 | // We want compile-time assurance that we've enumerated all of |
| 2289 | // these, so unfortunately we have to declare them first, then |
| 2290 | // define them out-of-line. |
| 2291 | #define ABSTRACT_TYPELOC(CLASS, PARENT) |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2292 | #define TYPELOC(CLASS, PARENT) \ |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2293 | void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2294 | #include "clang/AST/TypeLocNodes.def" |
| 2295 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2296 | void VisitFunctionTypeLoc(FunctionTypeLoc); |
| 2297 | void VisitArrayTypeLoc(ArrayTypeLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2298 | }; |
| 2299 | |
| 2300 | } |
| 2301 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2302 | void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2303 | // nothing to do |
| 2304 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2305 | void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 2306 | TL.setBuiltinLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2307 | if (TL.needsExtraLocalData()) { |
| 2308 | TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++])); |
| 2309 | TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++])); |
| 2310 | TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++])); |
| 2311 | TL.setModeAttr(Record[Idx++]); |
| 2312 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2313 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2314 | void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) { |
| 2315 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2316 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2317 | void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) { |
| 2318 | TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2319 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2320 | void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) { |
| 2321 | TL.setCaretLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2322 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2323 | void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) { |
| 2324 | TL.setAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2325 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2326 | void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) { |
| 2327 | TL.setAmpAmpLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2328 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2329 | void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) { |
| 2330 | TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2331 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2332 | void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) { |
| 2333 | TL.setLBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2334 | TL.setRBracketLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2335 | if (Record[Idx++]) |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2336 | TL.setSizeExpr(Reader.ReadExpr()); |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2337 | else |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2338 | TL.setSizeExpr(0); |
| 2339 | } |
| 2340 | void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) { |
| 2341 | VisitArrayTypeLoc(TL); |
| 2342 | } |
| 2343 | void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) { |
| 2344 | VisitArrayTypeLoc(TL); |
| 2345 | } |
| 2346 | void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) { |
| 2347 | VisitArrayTypeLoc(TL); |
| 2348 | } |
| 2349 | void TypeLocReader::VisitDependentSizedArrayTypeLoc( |
| 2350 | DependentSizedArrayTypeLoc TL) { |
| 2351 | VisitArrayTypeLoc(TL); |
| 2352 | } |
| 2353 | void TypeLocReader::VisitDependentSizedExtVectorTypeLoc( |
| 2354 | DependentSizedExtVectorTypeLoc TL) { |
| 2355 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2356 | } |
| 2357 | void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) { |
| 2358 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2359 | } |
| 2360 | void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) { |
| 2361 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2362 | } |
| 2363 | void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) { |
| 2364 | TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2365 | TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2366 | for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) { |
John McCall | 86acc2a | 2009-10-23 01:28:53 +0000 | [diff] [blame] | 2367 | TL.setArg(i, cast_or_null<ParmVarDecl>(Reader.GetDecl(Record[Idx++]))); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2368 | } |
| 2369 | } |
| 2370 | void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) { |
| 2371 | VisitFunctionTypeLoc(TL); |
| 2372 | } |
| 2373 | void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) { |
| 2374 | VisitFunctionTypeLoc(TL); |
| 2375 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 2376 | void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) { |
| 2377 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2378 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2379 | void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) { |
| 2380 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2381 | } |
| 2382 | void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 2383 | TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2384 | TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2385 | TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2386 | } |
| 2387 | void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 2388 | TL.setTypeofLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2389 | TL.setLParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2390 | TL.setRParenLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2391 | TL.setUnderlyingTInfo(Reader.GetTypeSourceInfo(Record, Idx)); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2392 | } |
| 2393 | void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) { |
| 2394 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2395 | } |
| 2396 | void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) { |
| 2397 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2398 | } |
| 2399 | void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) { |
| 2400 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2401 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2402 | void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { |
| 2403 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2404 | } |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 2405 | void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc( |
| 2406 | SubstTemplateTypeParmTypeLoc TL) { |
| 2407 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2408 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2409 | void TypeLocReader::VisitTemplateSpecializationTypeLoc( |
| 2410 | TemplateSpecializationTypeLoc TL) { |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2411 | TL.setTemplateNameLoc(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)); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2418 | } |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 2419 | void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) { |
Abramo Bagnara | e4da7a0 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 2420 | TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2421 | TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx)); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2422 | } |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 2423 | void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) { |
| 2424 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2425 | } |
Douglas Gregor | 4714c12 | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 2426 | void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) { |
Abramo Bagnara | e4da7a0 | 2010-05-19 21:37:53 +0000 | [diff] [blame] | 2427 | TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2428 | TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx)); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2429 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2430 | } |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 2431 | void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc( |
| 2432 | DependentTemplateSpecializationTypeLoc TL) { |
| 2433 | TL.setKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2434 | TL.setQualifierRange(Reader.ReadSourceRange(Record, Idx)); |
| 2435 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2436 | TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2437 | TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2438 | for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) |
| 2439 | TL.setArgLocInfo(I, |
| 2440 | Reader.GetTemplateArgumentLocInfo(TL.getTypePtr()->getArg(I).getKind(), |
| 2441 | Record, Idx)); |
| 2442 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2443 | void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { |
| 2444 | TL.setNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 2445 | } |
| 2446 | void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) { |
| 2447 | TL.setHasBaseTypeAsWritten(Record[Idx++]); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 2448 | TL.setLAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2449 | TL.setRAngleLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 2450 | for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) |
| 2451 | TL.setProtocolLoc(i, SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2452 | } |
John McCall | 54e14c4 | 2009-10-22 22:37:11 +0000 | [diff] [blame] | 2453 | void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) { |
| 2454 | TL.setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | 54e14c4 | 2009-10-22 22:37:11 +0000 | [diff] [blame] | 2455 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2456 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2457 | TypeSourceInfo *PCHReader::GetTypeSourceInfo(const RecordData &Record, |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2458 | unsigned &Idx) { |
| 2459 | QualType InfoTy = GetType(Record[Idx++]); |
| 2460 | if (InfoTy.isNull()) |
| 2461 | return 0; |
| 2462 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2463 | TypeSourceInfo *TInfo = getContext()->CreateTypeSourceInfo(InfoTy); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2464 | TypeLocReader TLR(*this, Record, Idx); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2465 | for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc()) |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2466 | TLR.Visit(TL); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2467 | return TInfo; |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2468 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2469 | |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 2470 | QualType PCHReader::GetType(pch::TypeID ID) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2471 | unsigned FastQuals = ID & Qualifiers::FastMask; |
| 2472 | unsigned Index = ID >> Qualifiers::FastWidth; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2473 | |
| 2474 | if (Index < pch::NUM_PREDEF_TYPE_IDS) { |
| 2475 | QualType T; |
| 2476 | switch ((pch::PredefinedTypeIDs)Index) { |
| 2477 | case pch::PREDEF_TYPE_NULL_ID: return QualType(); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2478 | case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break; |
| 2479 | case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2480 | |
| 2481 | case pch::PREDEF_TYPE_CHAR_U_ID: |
| 2482 | case pch::PREDEF_TYPE_CHAR_S_ID: |
| 2483 | // FIXME: Check that the signedness of CharTy is correct! |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2484 | T = Context->CharTy; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2485 | break; |
| 2486 | |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2487 | case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break; |
| 2488 | case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break; |
| 2489 | case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break; |
| 2490 | case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break; |
| 2491 | case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 2492 | case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2493 | case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break; |
| 2494 | case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break; |
| 2495 | case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break; |
| 2496 | case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break; |
| 2497 | case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break; |
| 2498 | case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 2499 | case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2500 | case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break; |
| 2501 | case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break; |
| 2502 | case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break; |
| 2503 | case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break; |
| 2504 | case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2505 | case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2506 | case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break; |
| 2507 | case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break; |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2508 | case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break; |
| 2509 | case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break; |
Fariborz Jahanian | 13dcd00 | 2009-11-21 19:53:08 +0000 | [diff] [blame] | 2510 | case pch::PREDEF_TYPE_OBJC_SEL: T = Context->ObjCBuiltinSelTy; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2511 | } |
| 2512 | |
| 2513 | assert(!T.isNull() && "Unknown predefined type"); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2514 | return T.withFastQualifiers(FastQuals); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2515 | } |
| 2516 | |
| 2517 | Index -= pch::NUM_PREDEF_TYPE_IDS; |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2518 | //assert(Index < TypesLoaded.size() && "Type index out-of-range"); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2519 | if (TypesLoaded[Index].isNull()) |
| 2520 | TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2521 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2522 | return TypesLoaded[Index].withFastQualifiers(FastQuals); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2523 | } |
| 2524 | |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2525 | TemplateArgumentLocInfo |
| 2526 | PCHReader::GetTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind, |
| 2527 | const RecordData &Record, |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2528 | unsigned &Index) { |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2529 | switch (Kind) { |
| 2530 | case TemplateArgument::Expression: |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2531 | return ReadExpr(); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2532 | case TemplateArgument::Type: |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2533 | return GetTypeSourceInfo(Record, Index); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2534 | case TemplateArgument::Template: { |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 2535 | SourceRange QualifierRange = ReadSourceRange(Record, Index); |
| 2536 | SourceLocation TemplateNameLoc = ReadSourceLocation(Record, Index); |
| 2537 | return TemplateArgumentLocInfo(QualifierRange, TemplateNameLoc); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2538 | } |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2539 | case TemplateArgument::Null: |
| 2540 | case TemplateArgument::Integral: |
| 2541 | case TemplateArgument::Declaration: |
| 2542 | case TemplateArgument::Pack: |
| 2543 | return TemplateArgumentLocInfo(); |
| 2544 | } |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 2545 | llvm_unreachable("unexpected template argument loc"); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2546 | return TemplateArgumentLocInfo(); |
| 2547 | } |
| 2548 | |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 2549 | TemplateArgumentLoc |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2550 | PCHReader::ReadTemplateArgumentLoc(const RecordData &Record, unsigned &Index) { |
| 2551 | TemplateArgument Arg = ReadTemplateArgument(Record, Index); |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 2552 | |
| 2553 | if (Arg.getKind() == TemplateArgument::Expression) { |
| 2554 | if (Record[Index++]) // bool InfoHasSameExpr. |
| 2555 | return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr())); |
| 2556 | } |
| 2557 | return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(Arg.getKind(), |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2558 | Record, Index)); |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 2559 | } |
| 2560 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2561 | Decl *PCHReader::GetExternalDecl(uint32_t ID) { |
| 2562 | return GetDecl(ID); |
| 2563 | } |
| 2564 | |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 2565 | Decl *PCHReader::GetDecl(pch::DeclID ID) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2566 | if (ID == 0) |
| 2567 | return 0; |
| 2568 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2569 | if (ID > DeclsLoaded.size()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2570 | Error("declaration ID out-of-range for PCH file"); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2571 | return 0; |
| 2572 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2573 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2574 | unsigned Index = ID - 1; |
| 2575 | if (!DeclsLoaded[Index]) |
| 2576 | ReadDeclRecord(DeclOffsets[Index], Index); |
| 2577 | |
| 2578 | return DeclsLoaded[Index]; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2579 | } |
| 2580 | |
Chris Lattner | 887e2b3 | 2009-04-27 05:46:25 +0000 | [diff] [blame] | 2581 | /// \brief Resolve the offset of a statement into a statement. |
| 2582 | /// |
| 2583 | /// This operation will read a new statement from the external |
| 2584 | /// source each time it is called, and is meant to be used via a |
| 2585 | /// LazyOffsetPtr (which is used by Decls for the body of functions, etc). |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2586 | Stmt *PCHReader::GetExternalDeclStmt(uint64_t Offset) { |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 2587 | // Since we know tha this statement is part of a decl, make sure to use the |
| 2588 | // decl cursor to read it. |
| 2589 | DeclsCursor.JumpToBit(Offset); |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 2590 | return ReadStmtFromStream(DeclsCursor); |
Douglas Gregor | 250fc9c | 2009-04-18 00:07:54 +0000 | [diff] [blame] | 2591 | } |
| 2592 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2593 | bool PCHReader::FindExternalLexicalDecls(const DeclContext *DC, |
| 2594 | llvm::SmallVectorImpl<Decl*> &Decls) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2595 | assert(DC->hasExternalLexicalStorage() && |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2596 | "DeclContext has no lexical decls in storage"); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2597 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2598 | uint64_t Offset = DeclContextOffsets[DC].first; |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2599 | if (Offset == 0) { |
| 2600 | Error("DeclContext has no lexical decls in storage"); |
| 2601 | return true; |
| 2602 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2603 | |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2604 | // Keep track of where we are in the stream, then jump back there |
| 2605 | // after reading this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2606 | SavedStreamPosition SavedPosition(DeclsCursor); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2607 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2608 | // Load the record containing all of the declarations lexically in |
| 2609 | // this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2610 | DeclsCursor.JumpToBit(Offset); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2611 | RecordData Record; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2612 | unsigned Code = DeclsCursor.ReadCode(); |
| 2613 | unsigned RecCode = DeclsCursor.ReadRecord(Code, Record); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2614 | if (RecCode != pch::DECL_CONTEXT_LEXICAL) { |
| 2615 | Error("Expected lexical block"); |
| 2616 | return true; |
| 2617 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2618 | |
| 2619 | // Load all of the declaration IDs |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2620 | for (RecordData::iterator I = Record.begin(), E = Record.end(); I != E; ++I) |
| 2621 | Decls.push_back(GetDecl(*I)); |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2622 | ++NumLexicalDeclContextsRead; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2623 | return false; |
| 2624 | } |
| 2625 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2626 | DeclContext::lookup_result |
| 2627 | PCHReader::FindExternalVisibleDeclsByName(const DeclContext *DC, |
| 2628 | DeclarationName Name) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2629 | assert(DC->hasExternalVisibleStorage() && |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2630 | "DeclContext has no visible decls in storage"); |
| 2631 | uint64_t Offset = DeclContextOffsets[DC].second; |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2632 | if (Offset == 0) { |
| 2633 | Error("DeclContext has no visible decls in storage"); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2634 | return DeclContext::lookup_result(DeclContext::lookup_iterator(), |
| 2635 | DeclContext::lookup_iterator()); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2636 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2637 | |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2638 | // Keep track of where we are in the stream, then jump back there |
| 2639 | // after reading this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2640 | SavedStreamPosition SavedPosition(DeclsCursor); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2641 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2642 | // Load the record containing all of the declarations visible in |
| 2643 | // this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2644 | DeclsCursor.JumpToBit(Offset); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2645 | RecordData Record; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2646 | unsigned Code = DeclsCursor.ReadCode(); |
| 2647 | unsigned RecCode = DeclsCursor.ReadRecord(Code, Record); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2648 | if (RecCode != pch::DECL_CONTEXT_VISIBLE) { |
| 2649 | Error("Expected visible block"); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2650 | return DeclContext::lookup_result(DeclContext::lookup_iterator(), |
| 2651 | DeclContext::lookup_iterator()); |
Ted Kremenek | d5d7b3f | 2010-03-18 00:56:54 +0000 | [diff] [blame] | 2652 | } |
| 2653 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2654 | llvm::SmallVector<VisibleDeclaration, 64> Decls; |
| 2655 | if (Record.empty()) { |
| 2656 | SetExternalVisibleDecls(DC, Decls); |
| 2657 | return DeclContext::lookup_result(DeclContext::lookup_iterator(), |
| 2658 | DeclContext::lookup_iterator()); |
| 2659 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2660 | |
| 2661 | unsigned Idx = 0; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2662 | while (Idx < Record.size()) { |
| 2663 | Decls.push_back(VisibleDeclaration()); |
| 2664 | Decls.back().Name = ReadDeclarationName(Record, Idx); |
| 2665 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2666 | unsigned Size = Record[Idx++]; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2667 | llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2668 | LoadedDecls.reserve(Size); |
| 2669 | for (unsigned I = 0; I < Size; ++I) |
| 2670 | LoadedDecls.push_back(Record[Idx++]); |
| 2671 | } |
| 2672 | |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2673 | ++NumVisibleDeclContextsRead; |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2674 | |
| 2675 | SetExternalVisibleDecls(DC, Decls); |
| 2676 | return const_cast<DeclContext*>(DC)->lookup(Name); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2677 | } |
| 2678 | |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2679 | void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) { |
Douglas Gregor | 0af2ca4 | 2009-04-22 19:09:20 +0000 | [diff] [blame] | 2680 | this->Consumer = Consumer; |
| 2681 | |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2682 | if (!Consumer) |
| 2683 | return; |
| 2684 | |
| 2685 | for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) { |
Daniel Dunbar | 04a0b50 | 2009-09-17 03:06:44 +0000 | [diff] [blame] | 2686 | // Force deserialization of this decl, which will cause it to be passed to |
| 2687 | // the consumer (or queued). |
| 2688 | GetDecl(ExternalDefinitions[I]); |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2689 | } |
Douglas Gregor | c62a2fe | 2009-04-25 00:41:30 +0000 | [diff] [blame] | 2690 | |
| 2691 | for (unsigned I = 0, N = InterestingDecls.size(); I != N; ++I) { |
| 2692 | DeclGroupRef DG(InterestingDecls[I]); |
| 2693 | Consumer->HandleTopLevelDecl(DG); |
| 2694 | } |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2695 | } |
| 2696 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2697 | void PCHReader::PrintStats() { |
| 2698 | std::fprintf(stderr, "*** PCH Statistics:\n"); |
| 2699 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2700 | unsigned NumTypesLoaded |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2701 | = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(), |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2702 | QualType()); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2703 | unsigned NumDeclsLoaded |
| 2704 | = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(), |
| 2705 | (Decl *)0); |
| 2706 | unsigned NumIdentifiersLoaded |
| 2707 | = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(), |
| 2708 | IdentifiersLoaded.end(), |
| 2709 | (IdentifierInfo *)0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2710 | unsigned NumSelectorsLoaded |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2711 | = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(), |
| 2712 | SelectorsLoaded.end(), |
| 2713 | Selector()); |
Douglas Gregor | 2d41cc1 | 2009-04-13 20:50:16 +0000 | [diff] [blame] | 2714 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2715 | std::fprintf(stderr, " %u stat cache hits\n", NumStatHits); |
| 2716 | std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 2717 | if (TotalNumSLocEntries) |
| 2718 | std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n", |
| 2719 | NumSLocEntriesRead, TotalNumSLocEntries, |
| 2720 | ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100)); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2721 | if (!TypesLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2722 | std::fprintf(stderr, " %u/%u types read (%f%%)\n", |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2723 | NumTypesLoaded, (unsigned)TypesLoaded.size(), |
| 2724 | ((float)NumTypesLoaded/TypesLoaded.size() * 100)); |
| 2725 | if (!DeclsLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2726 | std::fprintf(stderr, " %u/%u declarations read (%f%%)\n", |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2727 | NumDeclsLoaded, (unsigned)DeclsLoaded.size(), |
| 2728 | ((float)NumDeclsLoaded/DeclsLoaded.size() * 100)); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2729 | if (!IdentifiersLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2730 | std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n", |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2731 | NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(), |
| 2732 | ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2733 | if (TotalNumSelectors) |
| 2734 | std::fprintf(stderr, " %u/%u selectors read (%f%%)\n", |
| 2735 | NumSelectorsLoaded, TotalNumSelectors, |
| 2736 | ((float)NumSelectorsLoaded/TotalNumSelectors * 100)); |
| 2737 | if (TotalNumStatements) |
| 2738 | std::fprintf(stderr, " %u/%u statements read (%f%%)\n", |
| 2739 | NumStatementsRead, TotalNumStatements, |
| 2740 | ((float)NumStatementsRead/TotalNumStatements * 100)); |
| 2741 | if (TotalNumMacros) |
| 2742 | std::fprintf(stderr, " %u/%u macros read (%f%%)\n", |
| 2743 | NumMacrosRead, TotalNumMacros, |
| 2744 | ((float)NumMacrosRead/TotalNumMacros * 100)); |
| 2745 | if (TotalLexicalDeclContexts) |
| 2746 | std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n", |
| 2747 | NumLexicalDeclContextsRead, TotalLexicalDeclContexts, |
| 2748 | ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts |
| 2749 | * 100)); |
| 2750 | if (TotalVisibleDeclContexts) |
| 2751 | std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n", |
| 2752 | NumVisibleDeclContextsRead, TotalVisibleDeclContexts, |
| 2753 | ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts |
| 2754 | * 100)); |
| 2755 | if (TotalSelectorsInMethodPool) { |
| 2756 | std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n", |
| 2757 | NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool, |
| 2758 | ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool |
| 2759 | * 100)); |
| 2760 | std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses); |
| 2761 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2762 | std::fprintf(stderr, "\n"); |
| 2763 | } |
| 2764 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2765 | void PCHReader::InitializeSema(Sema &S) { |
| 2766 | SemaObj = &S; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2767 | S.ExternalSource = this; |
| 2768 | |
Douglas Gregor | 6cfc1a8 | 2009-04-22 21:15:06 +0000 | [diff] [blame] | 2769 | // Makes sure any declarations that were deserialized "too early" |
| 2770 | // still get added to the identifier's declaration chains. |
| 2771 | for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) { |
| 2772 | SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I])); |
| 2773 | SemaObj->IdResolver.AddDecl(PreloadedDecls[I]); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2774 | } |
Douglas Gregor | 6cfc1a8 | 2009-04-22 21:15:06 +0000 | [diff] [blame] | 2775 | PreloadedDecls.clear(); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2776 | |
| 2777 | // If there were any tentative definitions, deserialize them and add |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 2778 | // them to Sema's list of tentative definitions. |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2779 | for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) { |
| 2780 | VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I])); |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 2781 | SemaObj->TentativeDefinitions.push_back(Var); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2782 | } |
Kovarththanan Rajaratnam | 6b82f64 | 2010-03-07 19:10:13 +0000 | [diff] [blame] | 2783 | |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 2784 | // If there were any unused static functions, deserialize them and add to |
| 2785 | // Sema's list of unused static functions. |
| 2786 | for (unsigned I = 0, N = UnusedStaticFuncs.size(); I != N; ++I) { |
| 2787 | FunctionDecl *FD = cast<FunctionDecl>(GetDecl(UnusedStaticFuncs[I])); |
| 2788 | SemaObj->UnusedStaticFuncs.push_back(FD); |
| 2789 | } |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2790 | |
| 2791 | // If there were any locally-scoped external declarations, |
| 2792 | // deserialize them and add them to Sema's table of locally-scoped |
| 2793 | // external declarations. |
| 2794 | for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) { |
| 2795 | NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I])); |
| 2796 | SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D; |
| 2797 | } |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 2798 | |
| 2799 | // If there were any ext_vector type declarations, deserialize them |
| 2800 | // and add them to Sema's vector of such declarations. |
| 2801 | for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) |
| 2802 | SemaObj->ExtVectorDecls.push_back( |
| 2803 | cast<TypedefDecl>(GetDecl(ExtVectorDecls[I]))); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
| 2806 | IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) { |
| 2807 | // Try to find this name within our on-disk hash table |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2808 | PCHIdentifierLookupTable *IdTable |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2809 | = (PCHIdentifierLookupTable *)IdentifierLookupTable; |
| 2810 | std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart); |
| 2811 | PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key); |
| 2812 | if (Pos == IdTable->end()) |
| 2813 | return 0; |
| 2814 | |
| 2815 | // Dereferencing the iterator has the effect of building the |
| 2816 | // IdentifierInfo node and populating it with the various |
| 2817 | // declarations it needs. |
| 2818 | return *Pos; |
| 2819 | } |
| 2820 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2821 | std::pair<ObjCMethodList, ObjCMethodList> |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2822 | PCHReader::ReadMethodPool(Selector Sel) { |
| 2823 | if (!MethodPoolLookupTable) |
| 2824 | return std::pair<ObjCMethodList, ObjCMethodList>(); |
| 2825 | |
| 2826 | // Try to find this selector within our on-disk hash table. |
| 2827 | PCHMethodPoolLookupTable *PoolTable |
| 2828 | = (PCHMethodPoolLookupTable*)MethodPoolLookupTable; |
| 2829 | PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2830 | if (Pos == PoolTable->end()) { |
| 2831 | ++NumMethodPoolMisses; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2832 | return std::pair<ObjCMethodList, ObjCMethodList>();; |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2833 | } |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2834 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2835 | ++NumMethodPoolSelectorsRead; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2836 | return *Pos; |
| 2837 | } |
| 2838 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2839 | void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) { |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2840 | assert(ID && "Non-zero identifier ID required"); |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2841 | assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range"); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2842 | IdentifiersLoaded[ID - 1] = II; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2843 | } |
| 2844 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2845 | /// \brief Set the globally-visible declarations associated with the given |
| 2846 | /// identifier. |
| 2847 | /// |
| 2848 | /// If the PCH reader is currently in a state where the given declaration IDs |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2849 | /// cannot safely be resolved, they are queued until it is safe to resolve |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2850 | /// them. |
| 2851 | /// |
| 2852 | /// \param II an IdentifierInfo that refers to one or more globally-visible |
| 2853 | /// declarations. |
| 2854 | /// |
| 2855 | /// \param DeclIDs the set of declaration IDs with the name @p II that are |
| 2856 | /// visible at global scope. |
| 2857 | /// |
| 2858 | /// \param Nonrecursive should be true to indicate that the caller knows that |
| 2859 | /// this call is non-recursive, and therefore the globally-visible declarations |
| 2860 | /// will not be placed onto the pending queue. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2861 | void |
| 2862 | PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II, |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2863 | const llvm::SmallVectorImpl<uint32_t> &DeclIDs, |
| 2864 | bool Nonrecursive) { |
| 2865 | if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) { |
| 2866 | PendingIdentifierInfos.push_back(PendingIdentifierInfo()); |
| 2867 | PendingIdentifierInfo &PII = PendingIdentifierInfos.back(); |
| 2868 | PII.II = II; |
| 2869 | for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) |
| 2870 | PII.DeclIDs.push_back(DeclIDs[I]); |
| 2871 | return; |
| 2872 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2873 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2874 | for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { |
| 2875 | NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); |
| 2876 | if (SemaObj) { |
| 2877 | // Introduce this declaration into the translation-unit scope |
| 2878 | // and add it to the declaration chain for this identifier, so |
| 2879 | // that (unqualified) name lookup will find it. |
| 2880 | SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D)); |
| 2881 | SemaObj->IdResolver.AddDeclToIdentifierChain(II, D); |
| 2882 | } else { |
| 2883 | // Queue this declaration so that it will be added to the |
| 2884 | // translation unit scope and identifier's declaration chain |
| 2885 | // once a Sema object is known. |
| 2886 | PreloadedDecls.push_back(D); |
| 2887 | } |
| 2888 | } |
| 2889 | } |
| 2890 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 2891 | IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) { |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2892 | if (ID == 0) |
| 2893 | return 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2894 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2895 | if (!IdentifierTableData || IdentifiersLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2896 | Error("no identifier table in PCH file"); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2897 | return 0; |
| 2898 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2899 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 2900 | assert(PP && "Forgot to set Preprocessor ?"); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2901 | if (!IdentifiersLoaded[ID - 1]) { |
| 2902 | uint32_t Offset = IdentifierOffsets[ID - 1]; |
Douglas Gregor | 17e1c5e | 2009-04-25 21:21:38 +0000 | [diff] [blame] | 2903 | const char *Str = IdentifierTableData + Offset; |
Douglas Gregor | d6595a4 | 2009-04-25 21:04:17 +0000 | [diff] [blame] | 2904 | |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 2905 | // All of the strings in the PCH file are preceded by a 16-bit |
| 2906 | // length. Extract that 16-bit length to avoid having to execute |
| 2907 | // strlen(). |
Ted Kremenek | 231bc0b | 2009-10-23 04:45:31 +0000 | [diff] [blame] | 2908 | // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as |
| 2909 | // unsigned integers. This is important to avoid integer overflow when |
| 2910 | // we cast them to 'unsigned'. |
Ted Kremenek | ff1ea46 | 2009-10-23 03:57:22 +0000 | [diff] [blame] | 2911 | const unsigned char *StrLenPtr = (const unsigned char*) Str - 2; |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 2912 | unsigned StrLen = (((unsigned) StrLenPtr[0]) |
| 2913 | | (((unsigned) StrLenPtr[1]) << 8)) - 1; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2914 | IdentifiersLoaded[ID - 1] |
Kovarththanan Rajaratnam | 811f426 | 2010-03-12 10:32:27 +0000 | [diff] [blame] | 2915 | = &PP->getIdentifierTable().get(Str, StrLen); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2916 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2917 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2918 | return IdentifiersLoaded[ID - 1]; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2919 | } |
| 2920 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 2921 | void PCHReader::ReadSLocEntry(unsigned ID) { |
| 2922 | ReadSLocEntryRecord(ID); |
| 2923 | } |
| 2924 | |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2925 | Selector PCHReader::DecodeSelector(unsigned ID) { |
| 2926 | if (ID == 0) |
| 2927 | return Selector(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2928 | |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2929 | if (!MethodPoolLookupTableData) |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2930 | return Selector(); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2931 | |
| 2932 | if (ID > TotalNumSelectors) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2933 | Error("selector ID out of range in PCH file"); |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2934 | return Selector(); |
| 2935 | } |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2936 | |
| 2937 | unsigned Index = ID - 1; |
| 2938 | if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) { |
| 2939 | // Load this selector from the selector table. |
| 2940 | // FIXME: endianness portability issues with SelectorOffsets table |
| 2941 | PCHMethodPoolLookupTrait Trait(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2942 | SelectorsLoaded[Index] |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2943 | = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0); |
| 2944 | } |
| 2945 | |
| 2946 | return SelectorsLoaded[Index]; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2947 | } |
| 2948 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2949 | Selector PCHReader::GetExternalSelector(uint32_t ID) { |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 2950 | return DecodeSelector(ID); |
| 2951 | } |
| 2952 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 2953 | uint32_t PCHReader::GetNumExternalSelectors() { |
Douglas Gregor | 719770d | 2010-04-06 17:30:22 +0000 | [diff] [blame] | 2954 | return TotalNumSelectors + 1; |
| 2955 | } |
| 2956 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2957 | DeclarationName |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2958 | PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) { |
| 2959 | DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++]; |
| 2960 | switch (Kind) { |
| 2961 | case DeclarationName::Identifier: |
| 2962 | return DeclarationName(GetIdentifierInfo(Record, Idx)); |
| 2963 | |
| 2964 | case DeclarationName::ObjCZeroArgSelector: |
| 2965 | case DeclarationName::ObjCOneArgSelector: |
| 2966 | case DeclarationName::ObjCMultiArgSelector: |
Steve Naroff | a7503a7 | 2009-04-23 15:15:40 +0000 | [diff] [blame] | 2967 | return DeclarationName(GetSelector(Record, Idx)); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2968 | |
| 2969 | case DeclarationName::CXXConstructorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2970 | return Context->DeclarationNames.getCXXConstructorName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2971 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2972 | |
| 2973 | case DeclarationName::CXXDestructorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2974 | return Context->DeclarationNames.getCXXDestructorName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2975 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2976 | |
| 2977 | case DeclarationName::CXXConversionFunctionName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2978 | return Context->DeclarationNames.getCXXConversionFunctionName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2979 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2980 | |
| 2981 | case DeclarationName::CXXOperatorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2982 | return Context->DeclarationNames.getCXXOperatorName( |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2983 | (OverloadedOperatorKind)Record[Idx++]); |
| 2984 | |
Sean Hunt | 3e518bd | 2009-11-29 07:34:05 +0000 | [diff] [blame] | 2985 | case DeclarationName::CXXLiteralOperatorName: |
| 2986 | return Context->DeclarationNames.getCXXLiteralOperatorName( |
| 2987 | GetIdentifierInfo(Record, Idx)); |
| 2988 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2989 | case DeclarationName::CXXUsingDirective: |
| 2990 | return DeclarationName::getUsingDirectiveName(); |
| 2991 | } |
| 2992 | |
| 2993 | // Required to silence GCC warning |
| 2994 | return DeclarationName(); |
| 2995 | } |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 2996 | |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 2997 | TemplateName |
| 2998 | PCHReader::ReadTemplateName(const RecordData &Record, unsigned &Idx) { |
| 2999 | TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++]; |
| 3000 | switch (Kind) { |
| 3001 | case TemplateName::Template: |
| 3002 | return TemplateName(cast_or_null<TemplateDecl>(GetDecl(Record[Idx++]))); |
| 3003 | |
| 3004 | case TemplateName::OverloadedTemplate: { |
| 3005 | unsigned size = Record[Idx++]; |
| 3006 | UnresolvedSet<8> Decls; |
| 3007 | while (size--) |
| 3008 | Decls.addDecl(cast<NamedDecl>(GetDecl(Record[Idx++]))); |
| 3009 | |
| 3010 | return Context->getOverloadedTemplateName(Decls.begin(), Decls.end()); |
| 3011 | } |
| 3012 | |
| 3013 | case TemplateName::QualifiedTemplate: { |
| 3014 | NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx); |
| 3015 | bool hasTemplKeyword = Record[Idx++]; |
| 3016 | TemplateDecl *Template = cast<TemplateDecl>(GetDecl(Record[Idx++])); |
| 3017 | return Context->getQualifiedTemplateName(NNS, hasTemplKeyword, Template); |
| 3018 | } |
| 3019 | |
| 3020 | case TemplateName::DependentTemplate: { |
| 3021 | NestedNameSpecifier *NNS = ReadNestedNameSpecifier(Record, Idx); |
| 3022 | if (Record[Idx++]) // isIdentifier |
| 3023 | return Context->getDependentTemplateName(NNS, |
| 3024 | GetIdentifierInfo(Record, Idx)); |
| 3025 | return Context->getDependentTemplateName(NNS, |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 3026 | (OverloadedOperatorKind)Record[Idx++]); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 3027 | } |
| 3028 | } |
| 3029 | |
| 3030 | assert(0 && "Unhandled template name kind!"); |
| 3031 | return TemplateName(); |
| 3032 | } |
| 3033 | |
| 3034 | TemplateArgument |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 3035 | PCHReader::ReadTemplateArgument(const RecordData &Record, unsigned &Idx) { |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 3036 | switch ((TemplateArgument::ArgKind)Record[Idx++]) { |
| 3037 | case TemplateArgument::Null: |
| 3038 | return TemplateArgument(); |
| 3039 | case TemplateArgument::Type: |
| 3040 | return TemplateArgument(GetType(Record[Idx++])); |
| 3041 | case TemplateArgument::Declaration: |
| 3042 | return TemplateArgument(GetDecl(Record[Idx++])); |
Argyrios Kyrtzidis | dc767e3 | 2010-06-28 09:31:34 +0000 | [diff] [blame] | 3043 | case TemplateArgument::Integral: { |
| 3044 | llvm::APSInt Value = ReadAPSInt(Record, Idx); |
| 3045 | QualType T = GetType(Record[Idx++]); |
| 3046 | return TemplateArgument(Value, T); |
| 3047 | } |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 3048 | case TemplateArgument::Template: |
| 3049 | return TemplateArgument(ReadTemplateName(Record, Idx)); |
| 3050 | case TemplateArgument::Expression: |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 3051 | return TemplateArgument(ReadExpr()); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 3052 | case TemplateArgument::Pack: { |
| 3053 | unsigned NumArgs = Record[Idx++]; |
| 3054 | llvm::SmallVector<TemplateArgument, 8> Args; |
| 3055 | Args.reserve(NumArgs); |
| 3056 | while (NumArgs--) |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 3057 | Args.push_back(ReadTemplateArgument(Record, Idx)); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 3058 | TemplateArgument TemplArg; |
| 3059 | TemplArg.setArgumentPack(Args.data(), Args.size(), /*CopyArgs=*/true); |
| 3060 | return TemplArg; |
| 3061 | } |
| 3062 | } |
| 3063 | |
| 3064 | assert(0 && "Unhandled template argument kind!"); |
| 3065 | return TemplateArgument(); |
| 3066 | } |
| 3067 | |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 3068 | TemplateParameterList * |
| 3069 | PCHReader::ReadTemplateParameterList(const RecordData &Record, unsigned &Idx) { |
| 3070 | SourceLocation TemplateLoc = ReadSourceLocation(Record, Idx); |
| 3071 | SourceLocation LAngleLoc = ReadSourceLocation(Record, Idx); |
| 3072 | SourceLocation RAngleLoc = ReadSourceLocation(Record, Idx); |
| 3073 | |
| 3074 | unsigned NumParams = Record[Idx++]; |
| 3075 | llvm::SmallVector<NamedDecl *, 16> Params; |
| 3076 | Params.reserve(NumParams); |
| 3077 | while (NumParams--) |
| 3078 | Params.push_back(cast<NamedDecl>(GetDecl(Record[Idx++]))); |
| 3079 | |
| 3080 | TemplateParameterList* TemplateParams = |
| 3081 | TemplateParameterList::Create(*Context, TemplateLoc, LAngleLoc, |
| 3082 | Params.data(), Params.size(), RAngleLoc); |
| 3083 | return TemplateParams; |
| 3084 | } |
| 3085 | |
| 3086 | void |
| 3087 | PCHReader:: |
| 3088 | ReadTemplateArgumentList(llvm::SmallVector<TemplateArgument, 8> &TemplArgs, |
| 3089 | const RecordData &Record, unsigned &Idx) { |
| 3090 | unsigned NumTemplateArgs = Record[Idx++]; |
| 3091 | TemplArgs.reserve(NumTemplateArgs); |
| 3092 | while (NumTemplateArgs--) |
| 3093 | TemplArgs.push_back(ReadTemplateArgument(Record, Idx)); |
| 3094 | } |
| 3095 | |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 3096 | /// \brief Read a UnresolvedSet structure. |
| 3097 | void PCHReader::ReadUnresolvedSet(UnresolvedSetImpl &Set, |
| 3098 | const RecordData &Record, unsigned &Idx) { |
| 3099 | unsigned NumDecls = Record[Idx++]; |
| 3100 | while (NumDecls--) { |
| 3101 | NamedDecl *D = cast<NamedDecl>(GetDecl(Record[Idx++])); |
| 3102 | AccessSpecifier AS = (AccessSpecifier)Record[Idx++]; |
| 3103 | Set.addDecl(D, AS); |
| 3104 | } |
| 3105 | } |
| 3106 | |
Argyrios Kyrtzidis | 0745d0a | 2010-07-02 23:30:27 +0000 | [diff] [blame] | 3107 | CXXBaseSpecifier |
| 3108 | PCHReader::ReadCXXBaseSpecifier(const RecordData &Record, unsigned &Idx) { |
| 3109 | bool isVirtual = static_cast<bool>(Record[Idx++]); |
| 3110 | bool isBaseOfClass = static_cast<bool>(Record[Idx++]); |
| 3111 | AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]); |
| 3112 | QualType T = GetType(Record[Idx++]); |
| 3113 | SourceRange Range = ReadSourceRange(Record, Idx); |
| 3114 | return CXXBaseSpecifier(Range, isVirtual, isBaseOfClass, AS, T); |
| 3115 | } |
| 3116 | |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 3117 | NestedNameSpecifier * |
| 3118 | PCHReader::ReadNestedNameSpecifier(const RecordData &Record, unsigned &Idx) { |
| 3119 | unsigned N = Record[Idx++]; |
| 3120 | NestedNameSpecifier *NNS = 0, *Prev = 0; |
| 3121 | for (unsigned I = 0; I != N; ++I) { |
| 3122 | NestedNameSpecifier::SpecifierKind Kind |
| 3123 | = (NestedNameSpecifier::SpecifierKind)Record[Idx++]; |
| 3124 | switch (Kind) { |
| 3125 | case NestedNameSpecifier::Identifier: { |
| 3126 | IdentifierInfo *II = GetIdentifierInfo(Record, Idx); |
| 3127 | NNS = NestedNameSpecifier::Create(*Context, Prev, II); |
| 3128 | break; |
| 3129 | } |
| 3130 | |
| 3131 | case NestedNameSpecifier::Namespace: { |
| 3132 | NamespaceDecl *NS = cast<NamespaceDecl>(GetDecl(Record[Idx++])); |
| 3133 | NNS = NestedNameSpecifier::Create(*Context, Prev, NS); |
| 3134 | break; |
| 3135 | } |
| 3136 | |
| 3137 | case NestedNameSpecifier::TypeSpec: |
| 3138 | case NestedNameSpecifier::TypeSpecWithTemplate: { |
| 3139 | Type *T = GetType(Record[Idx++]).getTypePtr(); |
| 3140 | bool Template = Record[Idx++]; |
| 3141 | NNS = NestedNameSpecifier::Create(*Context, Prev, Template, T); |
| 3142 | break; |
| 3143 | } |
| 3144 | |
| 3145 | case NestedNameSpecifier::Global: { |
| 3146 | NNS = NestedNameSpecifier::GlobalSpecifier(*Context); |
| 3147 | // No associated value, and there can't be a prefix. |
| 3148 | break; |
| 3149 | } |
| 3150 | Prev = NNS; |
| 3151 | } |
| 3152 | } |
| 3153 | return NNS; |
| 3154 | } |
| 3155 | |
| 3156 | SourceRange |
| 3157 | PCHReader::ReadSourceRange(const RecordData &Record, unsigned &Idx) { |
Daniel Dunbar | 8ee5939 | 2010-06-02 15:47:10 +0000 | [diff] [blame] | 3158 | SourceLocation beg = SourceLocation::getFromRawEncoding(Record[Idx++]); |
| 3159 | SourceLocation end = SourceLocation::getFromRawEncoding(Record[Idx++]); |
| 3160 | return SourceRange(beg, end); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 3161 | } |
| 3162 | |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 3163 | /// \brief Read an integral value |
| 3164 | llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) { |
| 3165 | unsigned BitWidth = Record[Idx++]; |
| 3166 | unsigned NumWords = llvm::APInt::getNumWords(BitWidth); |
| 3167 | llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); |
| 3168 | Idx += NumWords; |
| 3169 | return Result; |
| 3170 | } |
| 3171 | |
| 3172 | /// \brief Read a signed integral value |
| 3173 | llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) { |
| 3174 | bool isUnsigned = Record[Idx++]; |
| 3175 | return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned); |
| 3176 | } |
| 3177 | |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 3178 | /// \brief Read a floating-point value |
| 3179 | llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) { |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 3180 | return llvm::APFloat(ReadAPInt(Record, Idx)); |
| 3181 | } |
| 3182 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3183 | // \brief Read a string |
| 3184 | std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) { |
| 3185 | unsigned Len = Record[Idx++]; |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 3186 | std::string Result(Record.data() + Idx, Record.data() + Idx + Len); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3187 | Idx += Len; |
| 3188 | return Result; |
| 3189 | } |
| 3190 | |
Chris Lattner | d259836 | 2010-05-10 00:25:06 +0000 | [diff] [blame] | 3191 | CXXTemporary *PCHReader::ReadCXXTemporary(const RecordData &Record, |
| 3192 | unsigned &Idx) { |
| 3193 | CXXDestructorDecl *Decl = cast<CXXDestructorDecl>(GetDecl(Record[Idx++])); |
| 3194 | return CXXTemporary::Create(*Context, Decl); |
| 3195 | } |
| 3196 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 3197 | DiagnosticBuilder PCHReader::Diag(unsigned DiagID) { |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 3198 | return Diag(SourceLocation(), DiagID); |
| 3199 | } |
| 3200 | |
| 3201 | DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 3202 | return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 3203 | } |
Douglas Gregor | 025452f | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 3204 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3205 | /// \brief Retrieve the identifier table associated with the |
| 3206 | /// preprocessor. |
| 3207 | IdentifierTable &PCHReader::getIdentifierTable() { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 3208 | assert(PP && "Forgot to set Preprocessor ?"); |
| 3209 | return PP->getIdentifierTable(); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3210 | } |
| 3211 | |
Douglas Gregor | 025452f | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 3212 | /// \brief Record that the given ID maps to the given switch-case |
| 3213 | /// statement. |
| 3214 | void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) { |
| 3215 | assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID"); |
| 3216 | SwitchCaseStmts[ID] = SC; |
| 3217 | } |
| 3218 | |
| 3219 | /// \brief Retrieve the switch-case statement with the given ID. |
| 3220 | SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) { |
| 3221 | assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID"); |
| 3222 | return SwitchCaseStmts[ID]; |
| 3223 | } |
Douglas Gregor | 1de05fe | 2009-04-17 18:18:49 +0000 | [diff] [blame] | 3224 | |
| 3225 | /// \brief Record that the given label statement has been |
| 3226 | /// deserialized and has the given ID. |
| 3227 | void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3228 | assert(LabelStmts.find(ID) == LabelStmts.end() && |
Douglas Gregor | 1de05fe | 2009-04-17 18:18:49 +0000 | [diff] [blame] | 3229 | "Deserialized label twice"); |
| 3230 | LabelStmts[ID] = S; |
| 3231 | |
| 3232 | // If we've already seen any goto statements that point to this |
| 3233 | // label, resolve them now. |
| 3234 | typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter; |
| 3235 | std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID); |
| 3236 | for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto) |
| 3237 | Goto->second->setLabel(S); |
| 3238 | UnresolvedGotoStmts.erase(Gotos.first, Gotos.second); |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 3239 | |
| 3240 | // If we've already seen any address-label statements that point to |
| 3241 | // this label, resolve them now. |
| 3242 | typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3243 | std::pair<AddrLabelIter, AddrLabelIter> AddrLabels |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 3244 | = UnresolvedAddrLabelExprs.equal_range(ID); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3245 | for (AddrLabelIter AddrLabel = AddrLabels.first; |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 3246 | AddrLabel != AddrLabels.second; ++AddrLabel) |
| 3247 | AddrLabel->second->setLabel(S); |
| 3248 | UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second); |
Douglas Gregor | 1de05fe | 2009-04-17 18:18:49 +0000 | [diff] [blame] | 3249 | } |
| 3250 | |
| 3251 | /// \brief Set the label of the given statement to the label |
| 3252 | /// identified by ID. |
| 3253 | /// |
| 3254 | /// Depending on the order in which the label and other statements |
| 3255 | /// referencing that label occur, this operation may complete |
| 3256 | /// immediately (updating the statement) or it may queue the |
| 3257 | /// statement to be back-patched later. |
| 3258 | void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) { |
| 3259 | std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID); |
| 3260 | if (Label != LabelStmts.end()) { |
| 3261 | // We've already seen this label, so set the label of the goto and |
| 3262 | // we're done. |
| 3263 | S->setLabel(Label->second); |
| 3264 | } else { |
| 3265 | // We haven't seen this label yet, so add this goto to the set of |
| 3266 | // unresolved goto statements. |
| 3267 | UnresolvedGotoStmts.insert(std::make_pair(ID, S)); |
| 3268 | } |
| 3269 | } |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 3270 | |
| 3271 | /// \brief Set the label of the given expression to the label |
| 3272 | /// identified by ID. |
| 3273 | /// |
| 3274 | /// Depending on the order in which the label and other statements |
| 3275 | /// referencing that label occur, this operation may complete |
| 3276 | /// immediately (updating the statement) or it may queue the |
| 3277 | /// statement to be back-patched later. |
| 3278 | void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) { |
| 3279 | std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID); |
| 3280 | if (Label != LabelStmts.end()) { |
| 3281 | // We've already seen this label, so set the label of the |
| 3282 | // label-address expression and we're done. |
| 3283 | S->setLabel(Label->second); |
| 3284 | } else { |
| 3285 | // We haven't seen this label yet, so add this label-address |
| 3286 | // expression to the set of unresolved label-address expressions. |
| 3287 | UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S)); |
| 3288 | } |
| 3289 | } |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 3290 | |
| 3291 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3292 | PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader) |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 3293 | : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) { |
| 3294 | Reader.CurrentlyLoadingTypeOrDecl = this; |
| 3295 | } |
| 3296 | |
| 3297 | PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() { |
| 3298 | if (!Parent) { |
| 3299 | // If any identifiers with corresponding top-level declarations have |
| 3300 | // been loaded, load those declarations now. |
| 3301 | while (!Reader.PendingIdentifierInfos.empty()) { |
| 3302 | Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II, |
| 3303 | Reader.PendingIdentifierInfos.front().DeclIDs, |
| 3304 | true); |
| 3305 | Reader.PendingIdentifierInfos.pop_front(); |
| 3306 | } |
| 3307 | } |
| 3308 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3309 | Reader.CurrentlyLoadingTypeOrDecl = Parent; |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 3310 | } |