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" |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 16 | #include "../Sema/Sema.h" // FIXME: move Sema headers elsewhere |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTConsumer.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 19 | #include "clang/AST/Expr.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 20 | #include "clang/AST/Type.h" |
Chris Lattner | 42d42b5 | 2009-04-10 21:41:48 +0000 | [diff] [blame] | 21 | #include "clang/Lex/MacroInfo.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 22 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 23 | #include "clang/Lex/HeaderSearch.h" |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 24 | #include "clang/Basic/OnDiskHashTable.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 25 | #include "clang/Basic/SourceManager.h" |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 26 | #include "clang/Basic/SourceManagerInternals.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 27 | #include "clang/Basic/FileManager.h" |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 28 | #include "clang/Basic/TargetInfo.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 29 | #include "llvm/Bitcode/BitstreamReader.h" |
| 30 | #include "llvm/Support/Compiler.h" |
| 31 | #include "llvm/Support/MemoryBuffer.h" |
| 32 | #include <algorithm> |
Douglas Gregor | e721f95 | 2009-04-28 18:58:38 +0000 | [diff] [blame] | 33 | #include <iterator> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 34 | #include <cstdio> |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 35 | #include <sys/stat.h> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 36 | using namespace clang; |
| 37 | |
| 38 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 39 | // PCH reader validator implementation |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
| 42 | PCHReaderListener::~PCHReaderListener() {} |
| 43 | |
| 44 | bool |
| 45 | PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts) { |
| 46 | const LangOptions &PPLangOpts = PP.getLangOptions(); |
| 47 | #define PARSE_LANGOPT_BENIGN(Option) |
| 48 | #define PARSE_LANGOPT_IMPORTANT(Option, DiagID) \ |
| 49 | if (PPLangOpts.Option != LangOpts.Option) { \ |
| 50 | Reader.Diag(DiagID) << LangOpts.Option << PPLangOpts.Option; \ |
| 51 | return true; \ |
| 52 | } |
| 53 | |
| 54 | PARSE_LANGOPT_BENIGN(Trigraphs); |
| 55 | PARSE_LANGOPT_BENIGN(BCPLComment); |
| 56 | PARSE_LANGOPT_BENIGN(DollarIdents); |
| 57 | PARSE_LANGOPT_BENIGN(AsmPreprocessor); |
| 58 | PARSE_LANGOPT_IMPORTANT(GNUMode, diag::warn_pch_gnu_extensions); |
| 59 | PARSE_LANGOPT_BENIGN(ImplicitInt); |
| 60 | PARSE_LANGOPT_BENIGN(Digraphs); |
| 61 | PARSE_LANGOPT_BENIGN(HexFloats); |
| 62 | PARSE_LANGOPT_IMPORTANT(C99, diag::warn_pch_c99); |
| 63 | PARSE_LANGOPT_IMPORTANT(Microsoft, diag::warn_pch_microsoft_extensions); |
| 64 | PARSE_LANGOPT_IMPORTANT(CPlusPlus, diag::warn_pch_cplusplus); |
| 65 | PARSE_LANGOPT_IMPORTANT(CPlusPlus0x, diag::warn_pch_cplusplus0x); |
| 66 | PARSE_LANGOPT_BENIGN(CXXOperatorName); |
| 67 | PARSE_LANGOPT_IMPORTANT(ObjC1, diag::warn_pch_objective_c); |
| 68 | PARSE_LANGOPT_IMPORTANT(ObjC2, diag::warn_pch_objective_c2); |
| 69 | PARSE_LANGOPT_IMPORTANT(ObjCNonFragileABI, diag::warn_pch_nonfragile_abi); |
| 70 | PARSE_LANGOPT_BENIGN(PascalStrings); |
| 71 | PARSE_LANGOPT_BENIGN(WritableStrings); |
| 72 | PARSE_LANGOPT_IMPORTANT(LaxVectorConversions, |
| 73 | diag::warn_pch_lax_vector_conversions); |
Nate Begeman | 69cfb9b | 2009-06-25 22:57:40 +0000 | [diff] [blame] | 74 | PARSE_LANGOPT_IMPORTANT(AltiVec, diag::warn_pch_altivec); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 75 | PARSE_LANGOPT_IMPORTANT(Exceptions, diag::warn_pch_exceptions); |
| 76 | PARSE_LANGOPT_IMPORTANT(NeXTRuntime, diag::warn_pch_objc_runtime); |
| 77 | PARSE_LANGOPT_IMPORTANT(Freestanding, diag::warn_pch_freestanding); |
| 78 | PARSE_LANGOPT_IMPORTANT(NoBuiltin, diag::warn_pch_builtins); |
| 79 | PARSE_LANGOPT_IMPORTANT(ThreadsafeStatics, |
| 80 | diag::warn_pch_thread_safe_statics); |
Daniel Dunbar | 5345c39 | 2009-09-03 04:54:28 +0000 | [diff] [blame] | 81 | PARSE_LANGOPT_IMPORTANT(POSIXThreads, diag::warn_pch_posix_threads); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 82 | PARSE_LANGOPT_IMPORTANT(Blocks, diag::warn_pch_blocks); |
| 83 | PARSE_LANGOPT_BENIGN(EmitAllDecls); |
| 84 | PARSE_LANGOPT_IMPORTANT(MathErrno, diag::warn_pch_math_errno); |
| 85 | PARSE_LANGOPT_IMPORTANT(OverflowChecking, diag::warn_pch_overflow_checking); |
| 86 | PARSE_LANGOPT_IMPORTANT(HeinousExtensions, |
| 87 | diag::warn_pch_heinous_extensions); |
| 88 | // FIXME: Most of the options below are benign if the macro wasn't |
| 89 | // used. Unfortunately, this means that a PCH compiled without |
| 90 | // optimization can't be used with optimization turned on, even |
| 91 | // though the only thing that changes is whether __OPTIMIZE__ was |
| 92 | // defined... but if __OPTIMIZE__ never showed up in the header, it |
| 93 | // doesn't matter. We could consider making this some special kind |
| 94 | // of check. |
| 95 | PARSE_LANGOPT_IMPORTANT(Optimize, diag::warn_pch_optimize); |
| 96 | PARSE_LANGOPT_IMPORTANT(OptimizeSize, diag::warn_pch_optimize_size); |
| 97 | PARSE_LANGOPT_IMPORTANT(Static, diag::warn_pch_static); |
| 98 | PARSE_LANGOPT_IMPORTANT(PICLevel, diag::warn_pch_pic_level); |
| 99 | PARSE_LANGOPT_IMPORTANT(GNUInline, diag::warn_pch_gnu_inline); |
| 100 | PARSE_LANGOPT_IMPORTANT(NoInline, diag::warn_pch_no_inline); |
| 101 | PARSE_LANGOPT_IMPORTANT(AccessControl, diag::warn_pch_access_control); |
| 102 | PARSE_LANGOPT_IMPORTANT(CharIsSigned, diag::warn_pch_char_signed); |
| 103 | if ((PPLangOpts.getGCMode() != 0) != (LangOpts.getGCMode() != 0)) { |
| 104 | Reader.Diag(diag::warn_pch_gc_mode) |
| 105 | << LangOpts.getGCMode() << PPLangOpts.getGCMode(); |
| 106 | return true; |
| 107 | } |
| 108 | PARSE_LANGOPT_BENIGN(getVisibilityMode()); |
| 109 | PARSE_LANGOPT_BENIGN(InstantiationDepth); |
Nate Begeman | 69cfb9b | 2009-06-25 22:57:40 +0000 | [diff] [blame] | 110 | PARSE_LANGOPT_IMPORTANT(OpenCL, diag::warn_pch_opencl); |
Anders Carlsson | 92f5822 | 2009-08-22 22:30:33 +0000 | [diff] [blame] | 111 | PARSE_LANGOPT_IMPORTANT(ElideConstructors, diag::warn_elide_constructors); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 112 | #undef PARSE_LANGOPT_IRRELEVANT |
| 113 | #undef PARSE_LANGOPT_BENIGN |
| 114 | |
| 115 | return false; |
| 116 | } |
| 117 | |
| 118 | bool PCHValidator::ReadTargetTriple(const std::string &Triple) { |
Daniel Dunbar | 1752ee4 | 2009-08-24 09:10:05 +0000 | [diff] [blame] | 119 | if (Triple != PP.getTargetInfo().getTriple().getTriple()) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 120 | Reader.Diag(diag::warn_pch_target_triple) |
Daniel Dunbar | 1752ee4 | 2009-08-24 09:10:05 +0000 | [diff] [blame] | 121 | << Triple << PP.getTargetInfo().getTriple().getTriple(); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 122 | return true; |
| 123 | } |
| 124 | return false; |
| 125 | } |
| 126 | |
| 127 | /// \brief Split the given string into a vector of lines, eliminating |
| 128 | /// any empty lines in the process. |
| 129 | /// |
| 130 | /// \param Str the string to split. |
| 131 | /// \param Len the length of Str. |
| 132 | /// \param KeepEmptyLines true if empty lines should be included |
| 133 | /// \returns a vector of lines, with the line endings removed |
| 134 | static std::vector<std::string> splitLines(const char *Str, unsigned Len, |
| 135 | bool KeepEmptyLines = false) { |
| 136 | std::vector<std::string> Lines; |
| 137 | for (unsigned LineStart = 0; LineStart < Len; ++LineStart) { |
| 138 | unsigned LineEnd = LineStart; |
| 139 | while (LineEnd < Len && Str[LineEnd] != '\n') |
| 140 | ++LineEnd; |
| 141 | if (LineStart != LineEnd || KeepEmptyLines) |
| 142 | Lines.push_back(std::string(&Str[LineStart], &Str[LineEnd])); |
| 143 | LineStart = LineEnd; |
| 144 | } |
| 145 | return Lines; |
| 146 | } |
| 147 | |
| 148 | /// \brief Determine whether the string Haystack starts with the |
| 149 | /// substring Needle. |
| 150 | static bool startsWith(const std::string &Haystack, const char *Needle) { |
| 151 | for (unsigned I = 0, N = Haystack.size(); Needle[I] != 0; ++I) { |
| 152 | if (I == N) |
| 153 | return false; |
| 154 | if (Haystack[I] != Needle[I]) |
| 155 | return false; |
| 156 | } |
| 157 | |
| 158 | return true; |
| 159 | } |
| 160 | |
| 161 | /// \brief Determine whether the string Haystack starts with the |
| 162 | /// substring Needle. |
| 163 | static inline bool startsWith(const std::string &Haystack, |
| 164 | const std::string &Needle) { |
| 165 | return startsWith(Haystack, Needle.c_str()); |
| 166 | } |
| 167 | |
| 168 | bool PCHValidator::ReadPredefinesBuffer(const char *PCHPredef, |
| 169 | unsigned PCHPredefLen, |
| 170 | FileID PCHBufferID, |
| 171 | std::string &SuggestedPredefines) { |
| 172 | const char *Predef = PP.getPredefines().c_str(); |
| 173 | unsigned PredefLen = PP.getPredefines().size(); |
| 174 | |
| 175 | // If the two predefines buffers compare equal, we're done! |
| 176 | if (PredefLen == PCHPredefLen && |
| 177 | strncmp(Predef, PCHPredef, PCHPredefLen) == 0) |
| 178 | return false; |
| 179 | |
| 180 | SourceManager &SourceMgr = PP.getSourceManager(); |
| 181 | |
| 182 | // The predefines buffers are different. Determine what the |
| 183 | // differences are, and whether they require us to reject the PCH |
| 184 | // file. |
| 185 | std::vector<std::string> CmdLineLines = splitLines(Predef, PredefLen); |
| 186 | std::vector<std::string> PCHLines = splitLines(PCHPredef, PCHPredefLen); |
| 187 | |
| 188 | // Sort both sets of predefined buffer lines, since |
| 189 | std::sort(CmdLineLines.begin(), CmdLineLines.end()); |
| 190 | std::sort(PCHLines.begin(), PCHLines.end()); |
| 191 | |
| 192 | // Determine which predefines that where used to build the PCH file |
| 193 | // are missing from the command line. |
| 194 | std::vector<std::string> MissingPredefines; |
| 195 | std::set_difference(PCHLines.begin(), PCHLines.end(), |
| 196 | CmdLineLines.begin(), CmdLineLines.end(), |
| 197 | std::back_inserter(MissingPredefines)); |
| 198 | |
| 199 | bool MissingDefines = false; |
| 200 | bool ConflictingDefines = false; |
| 201 | for (unsigned I = 0, N = MissingPredefines.size(); I != N; ++I) { |
| 202 | const std::string &Missing = MissingPredefines[I]; |
| 203 | if (!startsWith(Missing, "#define ") != 0) { |
| 204 | Reader.Diag(diag::warn_pch_compiler_options_mismatch); |
| 205 | return true; |
| 206 | } |
| 207 | |
| 208 | // This is a macro definition. Determine the name of the macro |
| 209 | // we're defining. |
| 210 | std::string::size_type StartOfMacroName = strlen("#define "); |
| 211 | std::string::size_type EndOfMacroName |
| 212 | = Missing.find_first_of("( \n\r", StartOfMacroName); |
| 213 | assert(EndOfMacroName != std::string::npos && |
| 214 | "Couldn't find the end of the macro name"); |
| 215 | std::string MacroName = Missing.substr(StartOfMacroName, |
| 216 | EndOfMacroName - StartOfMacroName); |
| 217 | |
| 218 | // Determine whether this macro was given a different definition |
| 219 | // on the command line. |
| 220 | std::string MacroDefStart = "#define " + MacroName; |
| 221 | std::string::size_type MacroDefLen = MacroDefStart.size(); |
| 222 | std::vector<std::string>::iterator ConflictPos |
| 223 | = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(), |
| 224 | MacroDefStart); |
| 225 | for (; ConflictPos != CmdLineLines.end(); ++ConflictPos) { |
| 226 | if (!startsWith(*ConflictPos, MacroDefStart)) { |
| 227 | // Different macro; we're done. |
| 228 | ConflictPos = CmdLineLines.end(); |
| 229 | break; |
| 230 | } |
| 231 | |
| 232 | assert(ConflictPos->size() > MacroDefLen && |
| 233 | "Invalid #define in predefines buffer?"); |
| 234 | if ((*ConflictPos)[MacroDefLen] != ' ' && |
| 235 | (*ConflictPos)[MacroDefLen] != '(') |
| 236 | continue; // Longer macro name; keep trying. |
| 237 | |
| 238 | // We found a conflicting macro definition. |
| 239 | break; |
| 240 | } |
| 241 | |
| 242 | if (ConflictPos != CmdLineLines.end()) { |
| 243 | Reader.Diag(diag::warn_cmdline_conflicting_macro_def) |
| 244 | << MacroName; |
| 245 | |
| 246 | // Show the definition of this macro within the PCH file. |
| 247 | const char *MissingDef = strstr(PCHPredef, Missing.c_str()); |
| 248 | unsigned Offset = MissingDef - PCHPredef; |
| 249 | SourceLocation PCHMissingLoc |
| 250 | = SourceMgr.getLocForStartOfFile(PCHBufferID) |
| 251 | .getFileLocWithOffset(Offset); |
| 252 | Reader.Diag(PCHMissingLoc, diag::note_pch_macro_defined_as) |
| 253 | << MacroName; |
| 254 | |
| 255 | ConflictingDefines = true; |
| 256 | continue; |
| 257 | } |
| 258 | |
| 259 | // If the macro doesn't conflict, then we'll just pick up the |
| 260 | // macro definition from the PCH file. Warn the user that they |
| 261 | // made a mistake. |
| 262 | if (ConflictingDefines) |
| 263 | continue; // Don't complain if there are already conflicting defs |
| 264 | |
| 265 | if (!MissingDefines) { |
| 266 | Reader.Diag(diag::warn_cmdline_missing_macro_defs); |
| 267 | MissingDefines = true; |
| 268 | } |
| 269 | |
| 270 | // Show the definition of this macro within the PCH file. |
| 271 | const char *MissingDef = strstr(PCHPredef, Missing.c_str()); |
| 272 | unsigned Offset = MissingDef - PCHPredef; |
| 273 | SourceLocation PCHMissingLoc |
| 274 | = SourceMgr.getLocForStartOfFile(PCHBufferID) |
| 275 | .getFileLocWithOffset(Offset); |
| 276 | Reader.Diag(PCHMissingLoc, diag::note_using_macro_def_from_pch); |
| 277 | } |
| 278 | |
| 279 | if (ConflictingDefines) |
| 280 | return true; |
| 281 | |
| 282 | // Determine what predefines were introduced based on command-line |
| 283 | // parameters that were not present when building the PCH |
| 284 | // file. Extra #defines are okay, so long as the identifiers being |
| 285 | // defined were not used within the precompiled header. |
| 286 | std::vector<std::string> ExtraPredefines; |
| 287 | std::set_difference(CmdLineLines.begin(), CmdLineLines.end(), |
| 288 | PCHLines.begin(), PCHLines.end(), |
| 289 | std::back_inserter(ExtraPredefines)); |
| 290 | for (unsigned I = 0, N = ExtraPredefines.size(); I != N; ++I) { |
| 291 | const std::string &Extra = ExtraPredefines[I]; |
| 292 | if (!startsWith(Extra, "#define ") != 0) { |
| 293 | Reader.Diag(diag::warn_pch_compiler_options_mismatch); |
| 294 | return true; |
| 295 | } |
| 296 | |
| 297 | // This is an extra macro definition. Determine the name of the |
| 298 | // macro we're defining. |
| 299 | std::string::size_type StartOfMacroName = strlen("#define "); |
| 300 | std::string::size_type EndOfMacroName |
| 301 | = Extra.find_first_of("( \n\r", StartOfMacroName); |
| 302 | assert(EndOfMacroName != std::string::npos && |
| 303 | "Couldn't find the end of the macro name"); |
| 304 | std::string MacroName = Extra.substr(StartOfMacroName, |
| 305 | EndOfMacroName - StartOfMacroName); |
| 306 | |
| 307 | // Check whether this name was used somewhere in the PCH file. If |
| 308 | // so, defining it as a macro could change behavior, so we reject |
| 309 | // the PCH file. |
| 310 | if (IdentifierInfo *II = Reader.get(MacroName.c_str(), |
| 311 | MacroName.c_str() + MacroName.size())) { |
| 312 | Reader.Diag(diag::warn_macro_name_used_in_pch) |
| 313 | << II; |
| 314 | return true; |
| 315 | } |
| 316 | |
| 317 | // Add this definition to the suggested predefines buffer. |
| 318 | SuggestedPredefines += Extra; |
| 319 | SuggestedPredefines += '\n'; |
| 320 | } |
| 321 | |
| 322 | // If we get here, it's because the predefines buffer had compatible |
| 323 | // contents. Accept the PCH file. |
| 324 | return false; |
| 325 | } |
| 326 | |
| 327 | void PCHValidator::ReadHeaderFileInfo(const HeaderFileInfo &HFI) { |
| 328 | PP.getHeaderSearchInfo().setHeaderFileInfoForUID(HFI, NumHeaderInfos++); |
| 329 | } |
| 330 | |
| 331 | void PCHValidator::ReadCounter(unsigned Value) { |
| 332 | PP.setCounterValue(Value); |
| 333 | } |
| 334 | |
| 335 | |
| 336 | |
| 337 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 338 | // PCH reader implementation |
| 339 | //===----------------------------------------------------------------------===// |
| 340 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 341 | PCHReader::PCHReader(Preprocessor &PP, ASTContext *Context, |
| 342 | const char *isysroot) |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 343 | : Listener(new PCHValidator(PP, *this)), SourceMgr(PP.getSourceManager()), |
| 344 | FileMgr(PP.getFileManager()), Diags(PP.getDiagnostics()), |
| 345 | SemaObj(0), PP(&PP), Context(Context), Consumer(0), |
| 346 | IdentifierTableData(0), IdentifierLookupTable(0), |
| 347 | IdentifierOffsets(0), |
| 348 | MethodPoolLookupTable(0), MethodPoolLookupTableData(0), |
| 349 | TotalSelectorsInMethodPool(0), SelectorOffsets(0), |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 350 | TotalNumSelectors(0), Comments(0), NumComments(0), isysroot(isysroot), |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 351 | NumStatHits(0), NumStatMisses(0), |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 352 | NumSLocEntriesRead(0), NumStatementsRead(0), |
| 353 | NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0), |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 354 | NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0), |
| 355 | CurrentlyLoadingTypeOrDecl(0) { |
| 356 | RelocatablePCH = false; |
| 357 | } |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 358 | |
| 359 | PCHReader::PCHReader(SourceManager &SourceMgr, FileManager &FileMgr, |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 360 | Diagnostic &Diags, const char *isysroot) |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 361 | : SourceMgr(SourceMgr), FileMgr(FileMgr), Diags(Diags), |
Argyrios Kyrtzidis | 5710211 | 2009-06-19 07:55:35 +0000 | [diff] [blame] | 362 | SemaObj(0), PP(0), Context(0), Consumer(0), |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 363 | IdentifierTableData(0), IdentifierLookupTable(0), |
| 364 | IdentifierOffsets(0), |
| 365 | MethodPoolLookupTable(0), MethodPoolLookupTableData(0), |
| 366 | TotalSelectorsInMethodPool(0), SelectorOffsets(0), |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 367 | TotalNumSelectors(0), Comments(0), NumComments(0), isysroot(isysroot), |
| 368 | NumStatHits(0), NumStatMisses(0), |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 369 | NumSLocEntriesRead(0), NumStatementsRead(0), |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 370 | NumMacrosRead(0), NumMethodPoolSelectorsRead(0), NumMethodPoolMisses(0), |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 371 | NumLexicalDeclContextsRead(0), NumVisibleDeclContextsRead(0), |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 372 | CurrentlyLoadingTypeOrDecl(0) { |
| 373 | RelocatablePCH = false; |
| 374 | } |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 375 | |
| 376 | PCHReader::~PCHReader() {} |
| 377 | |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 378 | Expr *PCHReader::ReadDeclExpr() { |
| 379 | return dyn_cast_or_null<Expr>(ReadStmt(DeclsCursor)); |
| 380 | } |
| 381 | |
| 382 | Expr *PCHReader::ReadTypeExpr() { |
Chris Lattner | 52e97d1 | 2009-04-27 05:41:06 +0000 | [diff] [blame] | 383 | return dyn_cast_or_null<Expr>(ReadStmt(Stream)); |
Chris Lattner | 4c6f952 | 2009-04-27 05:14:47 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 387 | namespace { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 388 | class VISIBILITY_HIDDEN PCHMethodPoolLookupTrait { |
| 389 | PCHReader &Reader; |
| 390 | |
| 391 | public: |
| 392 | typedef std::pair<ObjCMethodList, ObjCMethodList> data_type; |
| 393 | |
| 394 | typedef Selector external_key_type; |
| 395 | typedef external_key_type internal_key_type; |
| 396 | |
| 397 | explicit PCHMethodPoolLookupTrait(PCHReader &Reader) : Reader(Reader) { } |
| 398 | |
| 399 | static bool EqualKey(const internal_key_type& a, |
| 400 | const internal_key_type& b) { |
| 401 | return a == b; |
| 402 | } |
| 403 | |
| 404 | static unsigned ComputeHash(Selector Sel) { |
| 405 | unsigned N = Sel.getNumArgs(); |
| 406 | if (N == 0) |
| 407 | ++N; |
| 408 | unsigned R = 5381; |
| 409 | for (unsigned I = 0; I != N; ++I) |
| 410 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I)) |
| 411 | R = clang::BernsteinHashPartial(II->getName(), II->getLength(), R); |
| 412 | return R; |
| 413 | } |
| 414 | |
| 415 | // This hopefully will just get inlined and removed by the optimizer. |
| 416 | static const internal_key_type& |
| 417 | GetInternalKey(const external_key_type& x) { return x; } |
| 418 | |
| 419 | static std::pair<unsigned, unsigned> |
| 420 | ReadKeyDataLength(const unsigned char*& d) { |
| 421 | using namespace clang::io; |
| 422 | unsigned KeyLen = ReadUnalignedLE16(d); |
| 423 | unsigned DataLen = ReadUnalignedLE16(d); |
| 424 | return std::make_pair(KeyLen, DataLen); |
| 425 | } |
| 426 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 427 | internal_key_type ReadKey(const unsigned char* d, unsigned) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 428 | using namespace clang::io; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 429 | SelectorTable &SelTable = Reader.getContext()->Selectors; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 430 | unsigned N = ReadUnalignedLE16(d); |
| 431 | IdentifierInfo *FirstII |
| 432 | = Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d)); |
| 433 | if (N == 0) |
| 434 | return SelTable.getNullarySelector(FirstII); |
| 435 | else if (N == 1) |
| 436 | return SelTable.getUnarySelector(FirstII); |
| 437 | |
| 438 | llvm::SmallVector<IdentifierInfo *, 16> Args; |
| 439 | Args.push_back(FirstII); |
| 440 | for (unsigned I = 1; I != N; ++I) |
| 441 | Args.push_back(Reader.DecodeIdentifierInfo(ReadUnalignedLE32(d))); |
| 442 | |
Douglas Gregor | 75fdb23 | 2009-05-22 22:45:36 +0000 | [diff] [blame] | 443 | return SelTable.getSelector(N, Args.data()); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 444 | } |
| 445 | |
| 446 | data_type ReadData(Selector, const unsigned char* d, unsigned DataLen) { |
| 447 | using namespace clang::io; |
| 448 | unsigned NumInstanceMethods = ReadUnalignedLE16(d); |
| 449 | unsigned NumFactoryMethods = ReadUnalignedLE16(d); |
| 450 | |
| 451 | data_type Result; |
| 452 | |
| 453 | // Load instance methods |
| 454 | ObjCMethodList *Prev = 0; |
| 455 | for (unsigned I = 0; I != NumInstanceMethods; ++I) { |
| 456 | ObjCMethodDecl *Method |
| 457 | = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d))); |
| 458 | if (!Result.first.Method) { |
| 459 | // This is the first method, which is the easy case. |
| 460 | Result.first.Method = Method; |
| 461 | Prev = &Result.first; |
| 462 | continue; |
| 463 | } |
| 464 | |
| 465 | Prev->Next = new ObjCMethodList(Method, 0); |
| 466 | Prev = Prev->Next; |
| 467 | } |
| 468 | |
| 469 | // Load factory methods |
| 470 | Prev = 0; |
| 471 | for (unsigned I = 0; I != NumFactoryMethods; ++I) { |
| 472 | ObjCMethodDecl *Method |
| 473 | = cast<ObjCMethodDecl>(Reader.GetDecl(ReadUnalignedLE32(d))); |
| 474 | if (!Result.second.Method) { |
| 475 | // This is the first method, which is the easy case. |
| 476 | Result.second.Method = Method; |
| 477 | Prev = &Result.second; |
| 478 | continue; |
| 479 | } |
| 480 | |
| 481 | Prev->Next = new ObjCMethodList(Method, 0); |
| 482 | Prev = Prev->Next; |
| 483 | } |
| 484 | |
| 485 | return Result; |
| 486 | } |
| 487 | }; |
| 488 | |
| 489 | } // end anonymous namespace |
| 490 | |
| 491 | /// \brief The on-disk hash table used for the global method pool. |
| 492 | typedef OnDiskChainedHashTable<PCHMethodPoolLookupTrait> |
| 493 | PCHMethodPoolLookupTable; |
| 494 | |
| 495 | namespace { |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 496 | class VISIBILITY_HIDDEN PCHIdentifierLookupTrait { |
| 497 | PCHReader &Reader; |
| 498 | |
| 499 | // If we know the IdentifierInfo in advance, it is here and we will |
| 500 | // not build a new one. Used when deserializing information about an |
| 501 | // identifier that was constructed before the PCH file was read. |
| 502 | IdentifierInfo *KnownII; |
| 503 | |
| 504 | public: |
| 505 | typedef IdentifierInfo * data_type; |
| 506 | |
| 507 | typedef const std::pair<const char*, unsigned> external_key_type; |
| 508 | |
| 509 | typedef external_key_type internal_key_type; |
| 510 | |
| 511 | explicit PCHIdentifierLookupTrait(PCHReader &Reader, IdentifierInfo *II = 0) |
| 512 | : Reader(Reader), KnownII(II) { } |
| 513 | |
| 514 | static bool EqualKey(const internal_key_type& a, |
| 515 | const internal_key_type& b) { |
| 516 | return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0 |
| 517 | : false; |
| 518 | } |
| 519 | |
| 520 | static unsigned ComputeHash(const internal_key_type& a) { |
| 521 | return BernsteinHash(a.first, a.second); |
| 522 | } |
| 523 | |
| 524 | // This hopefully will just get inlined and removed by the optimizer. |
| 525 | static const internal_key_type& |
| 526 | GetInternalKey(const external_key_type& x) { return x; } |
| 527 | |
| 528 | static std::pair<unsigned, unsigned> |
| 529 | ReadKeyDataLength(const unsigned char*& d) { |
| 530 | using namespace clang::io; |
Douglas Gregor | 5f8e330 | 2009-04-25 20:26:24 +0000 | [diff] [blame] | 531 | unsigned DataLen = ReadUnalignedLE16(d); |
Douglas Gregor | d6595a4 | 2009-04-25 21:04:17 +0000 | [diff] [blame] | 532 | unsigned KeyLen = ReadUnalignedLE16(d); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 533 | return std::make_pair(KeyLen, DataLen); |
| 534 | } |
| 535 | |
| 536 | static std::pair<const char*, unsigned> |
| 537 | ReadKey(const unsigned char* d, unsigned n) { |
| 538 | assert(n >= 2 && d[n-1] == '\0'); |
| 539 | return std::make_pair((const char*) d, n-1); |
| 540 | } |
| 541 | |
| 542 | IdentifierInfo *ReadData(const internal_key_type& k, |
| 543 | const unsigned char* d, |
| 544 | unsigned DataLen) { |
| 545 | using namespace clang::io; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 546 | pch::IdentID ID = ReadUnalignedLE32(d); |
| 547 | bool IsInteresting = ID & 0x01; |
| 548 | |
| 549 | // Wipe out the "is interesting" bit. |
| 550 | ID = ID >> 1; |
| 551 | |
| 552 | if (!IsInteresting) { |
| 553 | // For unintersting identifiers, just build the IdentifierInfo |
| 554 | // and associate it with the persistent ID. |
| 555 | IdentifierInfo *II = KnownII; |
| 556 | if (!II) |
| 557 | II = &Reader.getIdentifierTable().CreateIdentifierInfo( |
| 558 | k.first, k.first + k.second); |
| 559 | Reader.SetIdentifierInfo(ID, II); |
| 560 | return II; |
| 561 | } |
| 562 | |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 563 | unsigned Bits = ReadUnalignedLE16(d); |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 564 | bool CPlusPlusOperatorKeyword = Bits & 0x01; |
| 565 | Bits >>= 1; |
| 566 | bool Poisoned = Bits & 0x01; |
| 567 | Bits >>= 1; |
| 568 | bool ExtensionToken = Bits & 0x01; |
| 569 | Bits >>= 1; |
| 570 | bool hasMacroDefinition = Bits & 0x01; |
| 571 | Bits >>= 1; |
| 572 | unsigned ObjCOrBuiltinID = Bits & 0x3FF; |
| 573 | Bits >>= 10; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 574 | |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 575 | assert(Bits == 0 && "Extra bits in the identifier?"); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 576 | DataLen -= 6; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 577 | |
| 578 | // Build the IdentifierInfo itself and link the identifier ID with |
| 579 | // the new IdentifierInfo. |
| 580 | IdentifierInfo *II = KnownII; |
| 581 | if (!II) |
Douglas Gregor | 5f8e330 | 2009-04-25 20:26:24 +0000 | [diff] [blame] | 582 | II = &Reader.getIdentifierTable().CreateIdentifierInfo( |
| 583 | k.first, k.first + k.second); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 584 | Reader.SetIdentifierInfo(ID, II); |
| 585 | |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 586 | // Set or check the various bits in the IdentifierInfo structure. |
| 587 | // FIXME: Load token IDs lazily, too? |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 588 | II->setObjCOrBuiltinID(ObjCOrBuiltinID); |
| 589 | assert(II->isExtensionToken() == ExtensionToken && |
| 590 | "Incorrect extension token flag"); |
| 591 | (void)ExtensionToken; |
| 592 | II->setIsPoisoned(Poisoned); |
| 593 | assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword && |
| 594 | "Incorrect C++ operator keyword flag"); |
| 595 | (void)CPlusPlusOperatorKeyword; |
| 596 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 597 | // If this identifier is a macro, deserialize the macro |
| 598 | // definition. |
| 599 | if (hasMacroDefinition) { |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 600 | uint32_t Offset = ReadUnalignedLE32(d); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 601 | Reader.ReadMacroRecord(Offset); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 602 | DataLen -= 4; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 603 | } |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 604 | |
| 605 | // Read all of the declarations visible at global scope with this |
| 606 | // name. |
Chris Lattner | 6bf690f | 2009-04-27 22:17:41 +0000 | [diff] [blame] | 607 | if (Reader.getContext() == 0) return II; |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 608 | if (DataLen > 0) { |
| 609 | llvm::SmallVector<uint32_t, 4> DeclIDs; |
| 610 | for (; DataLen > 0; DataLen -= 4) |
| 611 | DeclIDs.push_back(ReadUnalignedLE32(d)); |
| 612 | Reader.SetGloballyVisibleDecls(II, DeclIDs); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 613 | } |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 614 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 615 | return II; |
| 616 | } |
| 617 | }; |
| 618 | |
| 619 | } // end anonymous namespace |
| 620 | |
| 621 | /// \brief The on-disk hash table used to contain information about |
| 622 | /// all of the identifiers in the program. |
| 623 | typedef OnDiskChainedHashTable<PCHIdentifierLookupTrait> |
| 624 | PCHIdentifierLookupTable; |
| 625 | |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 626 | bool PCHReader::Error(const char *Msg) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 627 | unsigned DiagID = Diags.getCustomDiagID(Diagnostic::Fatal, Msg); |
| 628 | Diag(DiagID); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 629 | return true; |
| 630 | } |
| 631 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 632 | /// \brief Check the contents of the predefines buffer against the |
| 633 | /// contents of the predefines buffer used to build the PCH file. |
| 634 | /// |
| 635 | /// The contents of the two predefines buffers should be the same. If |
| 636 | /// not, then some command-line option changed the preprocessor state |
| 637 | /// and we must reject the PCH file. |
| 638 | /// |
| 639 | /// \param PCHPredef The start of the predefines buffer in the PCH |
| 640 | /// file. |
| 641 | /// |
| 642 | /// \param PCHPredefLen The length of the predefines buffer in the PCH |
| 643 | /// file. |
| 644 | /// |
| 645 | /// \param PCHBufferID The FileID for the PCH predefines buffer. |
| 646 | /// |
| 647 | /// \returns true if there was a mismatch (in which case the PCH file |
| 648 | /// should be ignored), or false otherwise. |
| 649 | bool PCHReader::CheckPredefinesBuffer(const char *PCHPredef, |
| 650 | unsigned PCHPredefLen, |
| 651 | FileID PCHBufferID) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 652 | if (Listener) |
| 653 | return Listener->ReadPredefinesBuffer(PCHPredef, PCHPredefLen, PCHBufferID, |
| 654 | SuggestedPredefines); |
Douglas Gregor | e721f95 | 2009-04-28 18:58:38 +0000 | [diff] [blame] | 655 | return false; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 658 | //===----------------------------------------------------------------------===// |
| 659 | // Source Manager Deserialization |
| 660 | //===----------------------------------------------------------------------===// |
| 661 | |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 662 | /// \brief Read the line table in the source manager block. |
| 663 | /// \returns true if ther was an error. |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 664 | bool PCHReader::ParseLineTable(llvm::SmallVectorImpl<uint64_t> &Record) { |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 665 | unsigned Idx = 0; |
| 666 | LineTableInfo &LineTable = SourceMgr.getLineTable(); |
| 667 | |
| 668 | // Parse the file names |
Douglas Gregor | ff0a987 | 2009-04-13 17:12:42 +0000 | [diff] [blame] | 669 | std::map<int, int> FileIDs; |
| 670 | for (int I = 0, N = Record[Idx++]; I != N; ++I) { |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 671 | // Extract the file name |
| 672 | unsigned FilenameLen = Record[Idx++]; |
| 673 | std::string Filename(&Record[Idx], &Record[Idx] + FilenameLen); |
| 674 | Idx += FilenameLen; |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 675 | MaybeAddSystemRootToFilename(Filename); |
Douglas Gregor | ff0a987 | 2009-04-13 17:12:42 +0000 | [diff] [blame] | 676 | FileIDs[I] = LineTable.getLineTableFilenameID(Filename.c_str(), |
| 677 | Filename.size()); |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | // Parse the line entries |
| 681 | std::vector<LineEntry> Entries; |
| 682 | while (Idx < Record.size()) { |
Douglas Gregor | ff0a987 | 2009-04-13 17:12:42 +0000 | [diff] [blame] | 683 | int FID = FileIDs[Record[Idx++]]; |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 684 | |
| 685 | // Extract the line entries |
| 686 | unsigned NumEntries = Record[Idx++]; |
| 687 | Entries.clear(); |
| 688 | Entries.reserve(NumEntries); |
| 689 | for (unsigned I = 0; I != NumEntries; ++I) { |
| 690 | unsigned FileOffset = Record[Idx++]; |
| 691 | unsigned LineNo = Record[Idx++]; |
| 692 | int FilenameID = Record[Idx++]; |
| 693 | SrcMgr::CharacteristicKind FileKind |
| 694 | = (SrcMgr::CharacteristicKind)Record[Idx++]; |
| 695 | unsigned IncludeOffset = Record[Idx++]; |
| 696 | Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID, |
| 697 | FileKind, IncludeOffset)); |
| 698 | } |
| 699 | LineTable.AddEntry(FID, Entries); |
| 700 | } |
| 701 | |
| 702 | return false; |
| 703 | } |
| 704 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 705 | namespace { |
| 706 | |
| 707 | class VISIBILITY_HIDDEN PCHStatData { |
| 708 | public: |
| 709 | const bool hasStat; |
| 710 | const ino_t ino; |
| 711 | const dev_t dev; |
| 712 | const mode_t mode; |
| 713 | const time_t mtime; |
| 714 | const off_t size; |
| 715 | |
| 716 | PCHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s) |
| 717 | : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {} |
| 718 | |
| 719 | PCHStatData() |
| 720 | : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {} |
| 721 | }; |
| 722 | |
| 723 | class VISIBILITY_HIDDEN PCHStatLookupTrait { |
| 724 | public: |
| 725 | typedef const char *external_key_type; |
| 726 | typedef const char *internal_key_type; |
| 727 | |
| 728 | typedef PCHStatData data_type; |
| 729 | |
| 730 | static unsigned ComputeHash(const char *path) { |
| 731 | return BernsteinHash(path); |
| 732 | } |
| 733 | |
| 734 | static internal_key_type GetInternalKey(const char *path) { return path; } |
| 735 | |
| 736 | static bool EqualKey(internal_key_type a, internal_key_type b) { |
| 737 | return strcmp(a, b) == 0; |
| 738 | } |
| 739 | |
| 740 | static std::pair<unsigned, unsigned> |
| 741 | ReadKeyDataLength(const unsigned char*& d) { |
| 742 | unsigned KeyLen = (unsigned) clang::io::ReadUnalignedLE16(d); |
| 743 | unsigned DataLen = (unsigned) *d++; |
| 744 | return std::make_pair(KeyLen + 1, DataLen); |
| 745 | } |
| 746 | |
| 747 | static internal_key_type ReadKey(const unsigned char *d, unsigned) { |
| 748 | return (const char *)d; |
| 749 | } |
| 750 | |
| 751 | static data_type ReadData(const internal_key_type, const unsigned char *d, |
| 752 | unsigned /*DataLen*/) { |
| 753 | using namespace clang::io; |
| 754 | |
| 755 | if (*d++ == 1) |
| 756 | return data_type(); |
| 757 | |
| 758 | ino_t ino = (ino_t) ReadUnalignedLE32(d); |
| 759 | dev_t dev = (dev_t) ReadUnalignedLE32(d); |
| 760 | mode_t mode = (mode_t) ReadUnalignedLE16(d); |
| 761 | time_t mtime = (time_t) ReadUnalignedLE64(d); |
| 762 | off_t size = (off_t) ReadUnalignedLE64(d); |
| 763 | return data_type(ino, dev, mode, mtime, size); |
| 764 | } |
| 765 | }; |
| 766 | |
| 767 | /// \brief stat() cache for precompiled headers. |
| 768 | /// |
| 769 | /// This cache is very similar to the stat cache used by pretokenized |
| 770 | /// headers. |
| 771 | class VISIBILITY_HIDDEN PCHStatCache : public StatSysCallCache { |
| 772 | typedef OnDiskChainedHashTable<PCHStatLookupTrait> CacheTy; |
| 773 | CacheTy *Cache; |
| 774 | |
| 775 | unsigned &NumStatHits, &NumStatMisses; |
| 776 | public: |
| 777 | PCHStatCache(const unsigned char *Buckets, |
| 778 | const unsigned char *Base, |
| 779 | unsigned &NumStatHits, |
| 780 | unsigned &NumStatMisses) |
| 781 | : Cache(0), NumStatHits(NumStatHits), NumStatMisses(NumStatMisses) { |
| 782 | Cache = CacheTy::Create(Buckets, Base); |
| 783 | } |
| 784 | |
| 785 | ~PCHStatCache() { delete Cache; } |
| 786 | |
| 787 | int stat(const char *path, struct stat *buf) { |
| 788 | // Do the lookup for the file's data in the PCH file. |
| 789 | CacheTy::iterator I = Cache->find(path); |
| 790 | |
| 791 | // If we don't get a hit in the PCH file just forward to 'stat'. |
| 792 | if (I == Cache->end()) { |
| 793 | ++NumStatMisses; |
| 794 | return ::stat(path, buf); |
| 795 | } |
| 796 | |
| 797 | ++NumStatHits; |
| 798 | PCHStatData Data = *I; |
| 799 | |
| 800 | if (!Data.hasStat) |
| 801 | return 1; |
| 802 | |
| 803 | buf->st_ino = Data.ino; |
| 804 | buf->st_dev = Data.dev; |
| 805 | buf->st_mtime = Data.mtime; |
| 806 | buf->st_mode = Data.mode; |
| 807 | buf->st_size = Data.size; |
| 808 | return 0; |
| 809 | } |
| 810 | }; |
| 811 | } // end anonymous namespace |
| 812 | |
| 813 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 814 | /// \brief Read the source manager block |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 815 | PCHReader::PCHReadResult PCHReader::ReadSourceManagerBlock() { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 816 | using namespace SrcMgr; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 817 | |
| 818 | // Set the source-location entry cursor to the current position in |
| 819 | // the stream. This cursor will be used to read the contents of the |
| 820 | // source manager block initially, and then lazily read |
| 821 | // source-location entries as needed. |
| 822 | SLocEntryCursor = Stream; |
| 823 | |
| 824 | // The stream itself is going to skip over the source manager block. |
| 825 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 826 | Error("malformed block record in PCH file"); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 827 | return Failure; |
| 828 | } |
| 829 | |
| 830 | // Enter the source manager block. |
| 831 | if (SLocEntryCursor.EnterSubBlock(pch::SOURCE_MANAGER_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 832 | Error("malformed source manager block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 833 | return Failure; |
| 834 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 835 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 836 | RecordData Record; |
| 837 | while (true) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 838 | unsigned Code = SLocEntryCursor.ReadCode(); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 839 | if (Code == llvm::bitc::END_BLOCK) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 840 | if (SLocEntryCursor.ReadBlockEnd()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 841 | Error("error at end of Source Manager block in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 842 | return Failure; |
| 843 | } |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 844 | return Success; |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 848 | // No known subblocks, always skip them. |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 849 | SLocEntryCursor.ReadSubBlockID(); |
| 850 | if (SLocEntryCursor.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 851 | Error("malformed block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 852 | return Failure; |
| 853 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 854 | continue; |
| 855 | } |
| 856 | |
| 857 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 858 | SLocEntryCursor.ReadAbbrevRecord(); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 859 | continue; |
| 860 | } |
| 861 | |
| 862 | // Read a record. |
| 863 | const char *BlobStart; |
| 864 | unsigned BlobLen; |
| 865 | Record.clear(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 866 | switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 867 | default: // Default behavior: ignore. |
| 868 | break; |
| 869 | |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 870 | case pch::SM_LINE_TABLE: |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 871 | if (ParseLineTable(Record)) |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 872 | return Failure; |
Chris Lattner | 2c78b87 | 2009-04-14 23:22:57 +0000 | [diff] [blame] | 873 | break; |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 874 | |
| 875 | case pch::SM_HEADER_FILE_INFO: { |
| 876 | HeaderFileInfo HFI; |
| 877 | HFI.isImport = Record[0]; |
| 878 | HFI.DirInfo = Record[1]; |
| 879 | HFI.NumIncludes = Record[2]; |
| 880 | HFI.ControllingMacroID = Record[3]; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 881 | if (Listener) |
| 882 | Listener->ReadHeaderFileInfo(HFI); |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 883 | break; |
| 884 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 885 | |
| 886 | case pch::SM_SLOC_FILE_ENTRY: |
| 887 | case pch::SM_SLOC_BUFFER_ENTRY: |
| 888 | case pch::SM_SLOC_INSTANTIATION_ENTRY: |
| 889 | // Once we hit one of the source location entries, we're done. |
| 890 | return Success; |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 891 | } |
| 892 | } |
| 893 | } |
| 894 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 895 | /// \brief Read in the source location entry with the given ID. |
| 896 | PCHReader::PCHReadResult PCHReader::ReadSLocEntryRecord(unsigned ID) { |
| 897 | if (ID == 0) |
| 898 | return Success; |
| 899 | |
| 900 | if (ID > TotalNumSLocEntries) { |
| 901 | Error("source location entry ID out-of-range for PCH file"); |
| 902 | return Failure; |
| 903 | } |
| 904 | |
| 905 | ++NumSLocEntriesRead; |
| 906 | SLocEntryCursor.JumpToBit(SLocOffsets[ID - 1]); |
| 907 | unsigned Code = SLocEntryCursor.ReadCode(); |
| 908 | if (Code == llvm::bitc::END_BLOCK || |
| 909 | Code == llvm::bitc::ENTER_SUBBLOCK || |
| 910 | Code == llvm::bitc::DEFINE_ABBREV) { |
| 911 | Error("incorrectly-formatted source location entry in PCH file"); |
| 912 | return Failure; |
| 913 | } |
| 914 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 915 | RecordData Record; |
| 916 | const char *BlobStart; |
| 917 | unsigned BlobLen; |
| 918 | switch (SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen)) { |
| 919 | default: |
| 920 | Error("incorrectly-formatted source location entry in PCH file"); |
| 921 | return Failure; |
| 922 | |
| 923 | case pch::SM_SLOC_FILE_ENTRY: { |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 924 | std::string Filename(BlobStart, BlobStart + BlobLen); |
| 925 | MaybeAddSystemRootToFilename(Filename); |
| 926 | const FileEntry *File = FileMgr.getFile(Filename); |
Chris Lattner | d3555ae | 2009-06-15 04:35:16 +0000 | [diff] [blame] | 927 | if (File == 0) { |
| 928 | std::string ErrorStr = "could not find file '"; |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 929 | ErrorStr += Filename; |
Chris Lattner | d3555ae | 2009-06-15 04:35:16 +0000 | [diff] [blame] | 930 | ErrorStr += "' referenced by PCH file"; |
| 931 | Error(ErrorStr.c_str()); |
| 932 | return Failure; |
| 933 | } |
| 934 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 935 | FileID FID = SourceMgr.createFileID(File, |
| 936 | SourceLocation::getFromRawEncoding(Record[1]), |
| 937 | (SrcMgr::CharacteristicKind)Record[2], |
| 938 | ID, Record[0]); |
| 939 | if (Record[3]) |
| 940 | const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile()) |
| 941 | .setHasLineDirectives(); |
| 942 | |
| 943 | break; |
| 944 | } |
| 945 | |
| 946 | case pch::SM_SLOC_BUFFER_ENTRY: { |
| 947 | const char *Name = BlobStart; |
| 948 | unsigned Offset = Record[0]; |
| 949 | unsigned Code = SLocEntryCursor.ReadCode(); |
| 950 | Record.clear(); |
| 951 | unsigned RecCode |
| 952 | = SLocEntryCursor.ReadRecord(Code, Record, &BlobStart, &BlobLen); |
| 953 | assert(RecCode == pch::SM_SLOC_BUFFER_BLOB && "Ill-formed PCH file"); |
| 954 | (void)RecCode; |
| 955 | llvm::MemoryBuffer *Buffer |
| 956 | = llvm::MemoryBuffer::getMemBuffer(BlobStart, |
| 957 | BlobStart + BlobLen - 1, |
| 958 | Name); |
| 959 | FileID BufferID = SourceMgr.createFileIDForMemBuffer(Buffer, ID, Offset); |
| 960 | |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 961 | if (strcmp(Name, "<built-in>") == 0) { |
| 962 | PCHPredefinesBufferID = BufferID; |
| 963 | PCHPredefines = BlobStart; |
| 964 | PCHPredefinesLen = BlobLen - 1; |
| 965 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 966 | |
| 967 | break; |
| 968 | } |
| 969 | |
| 970 | case pch::SM_SLOC_INSTANTIATION_ENTRY: { |
| 971 | SourceLocation SpellingLoc |
| 972 | = SourceLocation::getFromRawEncoding(Record[1]); |
| 973 | SourceMgr.createInstantiationLoc(SpellingLoc, |
| 974 | SourceLocation::getFromRawEncoding(Record[2]), |
| 975 | SourceLocation::getFromRawEncoding(Record[3]), |
| 976 | Record[4], |
| 977 | ID, |
| 978 | Record[0]); |
| 979 | break; |
| 980 | } |
| 981 | } |
| 982 | |
| 983 | return Success; |
| 984 | } |
| 985 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 986 | /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the |
| 987 | /// specified cursor. Read the abbreviations that are at the top of the block |
| 988 | /// and then leave the cursor pointing into the block. |
| 989 | bool PCHReader::ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, |
| 990 | unsigned BlockID) { |
| 991 | if (Cursor.EnterSubBlock(BlockID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 992 | Error("malformed block record in PCH file"); |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 993 | return Failure; |
| 994 | } |
| 995 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 996 | while (true) { |
| 997 | unsigned Code = Cursor.ReadCode(); |
| 998 | |
| 999 | // We expect all abbrevs to be at the start of the block. |
| 1000 | if (Code != llvm::bitc::DEFINE_ABBREV) |
| 1001 | return false; |
| 1002 | Cursor.ReadAbbrevRecord(); |
| 1003 | } |
| 1004 | } |
| 1005 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1006 | void PCHReader::ReadMacroRecord(uint64_t Offset) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1007 | assert(PP && "Forgot to set Preprocessor ?"); |
| 1008 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1009 | // Keep track of where we are in the stream, then jump back there |
| 1010 | // after reading this macro. |
| 1011 | SavedStreamPosition SavedPosition(Stream); |
| 1012 | |
| 1013 | Stream.JumpToBit(Offset); |
| 1014 | RecordData Record; |
| 1015 | llvm::SmallVector<IdentifierInfo*, 16> MacroArgs; |
| 1016 | MacroInfo *Macro = 0; |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 1017 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1018 | while (true) { |
| 1019 | unsigned Code = Stream.ReadCode(); |
| 1020 | switch (Code) { |
| 1021 | case llvm::bitc::END_BLOCK: |
| 1022 | return; |
| 1023 | |
| 1024 | case llvm::bitc::ENTER_SUBBLOCK: |
| 1025 | // No known subblocks, always skip them. |
| 1026 | Stream.ReadSubBlockID(); |
| 1027 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1028 | Error("malformed block record in PCH file"); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1029 | return; |
| 1030 | } |
| 1031 | continue; |
| 1032 | |
| 1033 | case llvm::bitc::DEFINE_ABBREV: |
| 1034 | Stream.ReadAbbrevRecord(); |
| 1035 | continue; |
| 1036 | default: break; |
| 1037 | } |
| 1038 | |
| 1039 | // Read a record. |
| 1040 | Record.clear(); |
| 1041 | pch::PreprocessorRecordTypes RecType = |
| 1042 | (pch::PreprocessorRecordTypes)Stream.ReadRecord(Code, Record); |
| 1043 | switch (RecType) { |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1044 | case pch::PP_MACRO_OBJECT_LIKE: |
| 1045 | case pch::PP_MACRO_FUNCTION_LIKE: { |
| 1046 | // If we already have a macro, that means that we've hit the end |
| 1047 | // of the definition of the macro we were looking for. We're |
| 1048 | // done. |
| 1049 | if (Macro) |
| 1050 | return; |
| 1051 | |
| 1052 | IdentifierInfo *II = DecodeIdentifierInfo(Record[0]); |
| 1053 | if (II == 0) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1054 | Error("macro must have a name in PCH file"); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1055 | return; |
| 1056 | } |
| 1057 | SourceLocation Loc = SourceLocation::getFromRawEncoding(Record[1]); |
| 1058 | bool isUsed = Record[2]; |
| 1059 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1060 | MacroInfo *MI = PP->AllocateMacroInfo(Loc); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1061 | MI->setIsUsed(isUsed); |
| 1062 | |
| 1063 | if (RecType == pch::PP_MACRO_FUNCTION_LIKE) { |
| 1064 | // Decode function-like macro info. |
| 1065 | bool isC99VarArgs = Record[3]; |
| 1066 | bool isGNUVarArgs = Record[4]; |
| 1067 | MacroArgs.clear(); |
| 1068 | unsigned NumArgs = Record[5]; |
| 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; |
| 1086 | ++NumMacrosRead; |
| 1087 | break; |
| 1088 | } |
| 1089 | |
| 1090 | case pch::PP_TOKEN: { |
| 1091 | // If we see a TOKEN before a PP_MACRO_*, then the file is |
| 1092 | // erroneous, just pretend we didn't see this. |
| 1093 | if (Macro == 0) break; |
| 1094 | |
| 1095 | Token Tok; |
| 1096 | Tok.startToken(); |
| 1097 | Tok.setLocation(SourceLocation::getFromRawEncoding(Record[0])); |
| 1098 | Tok.setLength(Record[1]); |
| 1099 | if (IdentifierInfo *II = DecodeIdentifierInfo(Record[2])) |
| 1100 | Tok.setIdentifierInfo(II); |
| 1101 | Tok.setKind((tok::TokenKind)Record[3]); |
| 1102 | Tok.setFlag((Token::TokenFlags)Record[4]); |
| 1103 | Macro->AddTokenToBody(Tok); |
| 1104 | break; |
| 1105 | } |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 1106 | } |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1107 | } |
| 1108 | } |
| 1109 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1110 | /// \brief If we are loading a relocatable PCH file, and the filename is |
| 1111 | /// not an absolute path, add the system root to the beginning of the file |
| 1112 | /// name. |
| 1113 | void PCHReader::MaybeAddSystemRootToFilename(std::string &Filename) { |
| 1114 | // If this is not a relocatable PCH file, there's nothing to do. |
| 1115 | if (!RelocatablePCH) |
| 1116 | return; |
| 1117 | |
| 1118 | if (Filename.empty() || Filename[0] == '/' || Filename[0] == '<') |
| 1119 | return; |
| 1120 | |
| 1121 | std::string FIXME = Filename; |
| 1122 | |
| 1123 | if (isysroot == 0) { |
| 1124 | // If no system root was given, default to '/' |
| 1125 | Filename.insert(Filename.begin(), '/'); |
| 1126 | return; |
| 1127 | } |
| 1128 | |
| 1129 | unsigned Length = strlen(isysroot); |
| 1130 | if (isysroot[Length - 1] != '/') |
| 1131 | Filename.insert(Filename.begin(), '/'); |
| 1132 | |
| 1133 | Filename.insert(Filename.begin(), isysroot, isysroot + Length); |
| 1134 | } |
| 1135 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1136 | PCHReader::PCHReadResult |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1137 | PCHReader::ReadPCHBlock() { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1138 | if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1139 | Error("malformed block record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1140 | return Failure; |
| 1141 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1142 | |
| 1143 | // Read all of the records and blocks for the PCH file. |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1144 | RecordData Record; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1145 | while (!Stream.AtEndOfStream()) { |
| 1146 | unsigned Code = Stream.ReadCode(); |
| 1147 | if (Code == llvm::bitc::END_BLOCK) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1148 | if (Stream.ReadBlockEnd()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1149 | Error("error at end of module block in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1150 | return Failure; |
| 1151 | } |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1152 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1153 | return Success; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
| 1156 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 1157 | switch (Stream.ReadSubBlockID()) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1158 | case pch::TYPES_BLOCK_ID: // Skip types block (lazily loaded) |
| 1159 | default: // Skip unknown content. |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1160 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1161 | Error("malformed block record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1162 | return Failure; |
| 1163 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1164 | break; |
| 1165 | |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 1166 | case pch::DECLS_BLOCK_ID: |
| 1167 | // We lazily load the decls block, but we want to set up the |
| 1168 | // DeclsCursor cursor to point into it. Clone our current bitcode |
| 1169 | // cursor to it, enter the block and read the abbrevs in that block. |
| 1170 | // With the main cursor, we just skip over it. |
| 1171 | DeclsCursor = Stream; |
| 1172 | if (Stream.SkipBlock() || // Skip with the main cursor. |
| 1173 | // Read the abbrevs. |
| 1174 | ReadBlockAbbrevs(DeclsCursor, pch::DECLS_BLOCK_ID)) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1175 | Error("malformed block record in PCH file"); |
Chris Lattner | 6367f6d | 2009-04-27 01:05:14 +0000 | [diff] [blame] | 1176 | return Failure; |
| 1177 | } |
| 1178 | break; |
| 1179 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1180 | case pch::PREPROCESSOR_BLOCK_ID: |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1181 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1182 | Error("malformed block record in PCH file"); |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1183 | return Failure; |
| 1184 | } |
| 1185 | break; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 1186 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1187 | case pch::SOURCE_MANAGER_BLOCK_ID: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1188 | switch (ReadSourceManagerBlock()) { |
| 1189 | case Success: |
| 1190 | break; |
| 1191 | |
| 1192 | case Failure: |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1193 | Error("malformed source manager block in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1194 | return Failure; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1195 | |
| 1196 | case IgnorePCH: |
| 1197 | return IgnorePCH; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1198 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1199 | break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1200 | } |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1201 | continue; |
| 1202 | } |
| 1203 | |
| 1204 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
| 1205 | Stream.ReadAbbrevRecord(); |
| 1206 | continue; |
| 1207 | } |
| 1208 | |
| 1209 | // Read and process a record. |
| 1210 | Record.clear(); |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1211 | const char *BlobStart = 0; |
| 1212 | unsigned BlobLen = 0; |
| 1213 | switch ((pch::PCHRecordTypes)Stream.ReadRecord(Code, Record, |
| 1214 | &BlobStart, &BlobLen)) { |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1215 | default: // Default behavior: ignore. |
| 1216 | break; |
| 1217 | |
| 1218 | case pch::TYPE_OFFSET: |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1219 | if (!TypesLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1220 | Error("duplicate TYPE_OFFSET record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1221 | return Failure; |
| 1222 | } |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 1223 | TypeOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1224 | TypesLoaded.resize(Record[0]); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1225 | break; |
| 1226 | |
| 1227 | case pch::DECL_OFFSET: |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1228 | if (!DeclsLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1229 | Error("duplicate DECL_OFFSET record in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1230 | return Failure; |
| 1231 | } |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 1232 | DeclOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 1233 | DeclsLoaded.resize(Record[0]); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1234 | break; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1235 | |
| 1236 | case pch::LANGUAGE_OPTIONS: |
| 1237 | if (ParseLanguageOptions(Record)) |
| 1238 | return IgnorePCH; |
| 1239 | break; |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1240 | |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 1241 | case pch::METADATA: { |
| 1242 | if (Record[0] != pch::VERSION_MAJOR) { |
| 1243 | Diag(Record[0] < pch::VERSION_MAJOR? diag::warn_pch_version_too_old |
| 1244 | : diag::warn_pch_version_too_new); |
| 1245 | return IgnorePCH; |
| 1246 | } |
| 1247 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1248 | RelocatablePCH = Record[4]; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1249 | if (Listener) { |
| 1250 | std::string TargetTriple(BlobStart, BlobLen); |
| 1251 | if (Listener->ReadTargetTriple(TargetTriple)) |
| 1252 | return IgnorePCH; |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1253 | } |
| 1254 | break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1255 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1256 | |
| 1257 | case pch::IDENTIFIER_TABLE: |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1258 | IdentifierTableData = BlobStart; |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1259 | if (Record[0]) { |
| 1260 | IdentifierLookupTable |
| 1261 | = PCHIdentifierLookupTable::Create( |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1262 | (const unsigned char *)IdentifierTableData + Record[0], |
| 1263 | (const unsigned char *)IdentifierTableData, |
| 1264 | PCHIdentifierLookupTrait(*this)); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1265 | if (PP) |
| 1266 | PP->getIdentifierTable().setExternalIdentifierLookup(this); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1267 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1268 | break; |
| 1269 | |
| 1270 | case pch::IDENTIFIER_OFFSET: |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1271 | if (!IdentifiersLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1272 | Error("duplicate IDENTIFIER_OFFSET record in PCH file"); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1273 | return Failure; |
| 1274 | } |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1275 | IdentifierOffsets = (const uint32_t *)BlobStart; |
| 1276 | IdentifiersLoaded.resize(Record[0]); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1277 | if (PP) |
| 1278 | PP->getHeaderSearchInfo().SetExternalLookup(this); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1279 | break; |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 1280 | |
| 1281 | case pch::EXTERNAL_DEFINITIONS: |
| 1282 | if (!ExternalDefinitions.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1283 | Error("duplicate EXTERNAL_DEFINITIONS record in PCH file"); |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 1284 | return Failure; |
| 1285 | } |
| 1286 | ExternalDefinitions.swap(Record); |
| 1287 | break; |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1288 | |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 1289 | case pch::SPECIAL_TYPES: |
| 1290 | SpecialTypes.swap(Record); |
| 1291 | break; |
| 1292 | |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1293 | case pch::STATISTICS: |
| 1294 | TotalNumStatements = Record[0]; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1295 | TotalNumMacros = Record[1]; |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 1296 | TotalLexicalDeclContexts = Record[2]; |
| 1297 | TotalVisibleDeclContexts = Record[3]; |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 1298 | break; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1299 | |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 1300 | case pch::TENTATIVE_DEFINITIONS: |
| 1301 | if (!TentativeDefinitions.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1302 | Error("duplicate TENTATIVE_DEFINITIONS record in PCH file"); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 1303 | return Failure; |
| 1304 | } |
| 1305 | TentativeDefinitions.swap(Record); |
| 1306 | break; |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 1307 | |
| 1308 | case pch::LOCALLY_SCOPED_EXTERNAL_DECLS: |
| 1309 | if (!LocallyScopedExternalDecls.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1310 | Error("duplicate LOCALLY_SCOPED_EXTERNAL_DECLS record in PCH file"); |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 1311 | return Failure; |
| 1312 | } |
| 1313 | LocallyScopedExternalDecls.swap(Record); |
| 1314 | break; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1315 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1316 | case pch::SELECTOR_OFFSETS: |
| 1317 | SelectorOffsets = (const uint32_t *)BlobStart; |
| 1318 | TotalNumSelectors = Record[0]; |
| 1319 | SelectorsLoaded.resize(TotalNumSelectors); |
| 1320 | break; |
| 1321 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1322 | case pch::METHOD_POOL: |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1323 | MethodPoolLookupTableData = (const unsigned char *)BlobStart; |
| 1324 | if (Record[0]) |
| 1325 | MethodPoolLookupTable |
| 1326 | = PCHMethodPoolLookupTable::Create( |
| 1327 | MethodPoolLookupTableData + Record[0], |
| 1328 | MethodPoolLookupTableData, |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1329 | PCHMethodPoolLookupTrait(*this)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1330 | TotalSelectorsInMethodPool = Record[1]; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1331 | break; |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1332 | |
| 1333 | case pch::PP_COUNTER_VALUE: |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1334 | if (!Record.empty() && Listener) |
| 1335 | Listener->ReadCounter(Record[0]); |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1336 | break; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1337 | |
| 1338 | case pch::SOURCE_LOCATION_OFFSETS: |
Chris Lattner | 090d9b5 | 2009-04-27 19:01:47 +0000 | [diff] [blame] | 1339 | SLocOffsets = (const uint32_t *)BlobStart; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1340 | TotalNumSLocEntries = Record[0]; |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1341 | SourceMgr.PreallocateSLocEntries(this, |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1342 | TotalNumSLocEntries, |
| 1343 | Record[1]); |
| 1344 | break; |
| 1345 | |
| 1346 | case pch::SOURCE_LOCATION_PRELOADS: |
| 1347 | for (unsigned I = 0, N = Record.size(); I != N; ++I) { |
| 1348 | PCHReadResult Result = ReadSLocEntryRecord(Record[I]); |
| 1349 | if (Result != Success) |
| 1350 | return Result; |
| 1351 | } |
| 1352 | break; |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1353 | |
| 1354 | case pch::STAT_CACHE: |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1355 | FileMgr.setStatCache( |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1356 | new PCHStatCache((const unsigned char *)BlobStart + Record[0], |
| 1357 | (const unsigned char *)BlobStart, |
| 1358 | NumStatHits, NumStatMisses)); |
| 1359 | break; |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 1360 | |
| 1361 | case pch::EXT_VECTOR_DECLS: |
| 1362 | if (!ExtVectorDecls.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1363 | Error("duplicate EXT_VECTOR_DECLS record in PCH file"); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 1364 | return Failure; |
| 1365 | } |
| 1366 | ExtVectorDecls.swap(Record); |
| 1367 | break; |
| 1368 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1369 | case pch::ORIGINAL_FILE_NAME: |
| 1370 | OriginalFileName.assign(BlobStart, BlobLen); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1371 | MaybeAddSystemRootToFilename(OriginalFileName); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1372 | break; |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 1373 | |
| 1374 | case pch::COMMENT_RANGES: |
| 1375 | Comments = (SourceRange *)BlobStart; |
| 1376 | NumComments = BlobLen / sizeof(SourceRange); |
| 1377 | break; |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1378 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1379 | } |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1380 | Error("premature end of bitstream in PCH file"); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1381 | return Failure; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1382 | } |
| 1383 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1384 | PCHReader::PCHReadResult PCHReader::ReadPCH(const std::string &FileName) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1385 | // Set the PCH file name. |
| 1386 | this->FileName = FileName; |
| 1387 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1388 | // Open the PCH file. |
| 1389 | std::string ErrStr; |
| 1390 | Buffer.reset(llvm::MemoryBuffer::getFile(FileName.c_str(), &ErrStr)); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1391 | if (!Buffer) { |
| 1392 | Error(ErrStr.c_str()); |
| 1393 | return IgnorePCH; |
| 1394 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1395 | |
| 1396 | // Initialize the stream |
Chris Lattner | b9fa917 | 2009-04-26 20:59:20 +0000 | [diff] [blame] | 1397 | StreamFile.init((const unsigned char *)Buffer->getBufferStart(), |
| 1398 | (const unsigned char *)Buffer->getBufferEnd()); |
| 1399 | Stream.init(StreamFile); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1400 | |
| 1401 | // Sniff for the signature. |
| 1402 | if (Stream.Read(8) != 'C' || |
| 1403 | Stream.Read(8) != 'P' || |
| 1404 | Stream.Read(8) != 'C' || |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1405 | Stream.Read(8) != 'H') { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1406 | Diag(diag::err_not_a_pch_file) << FileName; |
| 1407 | return Failure; |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1408 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1409 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1410 | while (!Stream.AtEndOfStream()) { |
| 1411 | unsigned Code = Stream.ReadCode(); |
| 1412 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1413 | if (Code != llvm::bitc::ENTER_SUBBLOCK) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1414 | Error("invalid record at top-level of PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1415 | return Failure; |
| 1416 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1417 | |
| 1418 | unsigned BlockID = Stream.ReadSubBlockID(); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1419 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1420 | // We only know the PCH subblock ID. |
| 1421 | switch (BlockID) { |
| 1422 | case llvm::bitc::BLOCKINFO_BLOCK_ID: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1423 | if (Stream.ReadBlockInfoBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1424 | Error("malformed BlockInfoBlock in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1425 | return Failure; |
| 1426 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1427 | break; |
| 1428 | case pch::PCH_BLOCK_ID: |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1429 | switch (ReadPCHBlock()) { |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1430 | case Success: |
| 1431 | break; |
| 1432 | |
| 1433 | case Failure: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1434 | return Failure; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1435 | |
| 1436 | case IgnorePCH: |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1437 | // FIXME: We could consider reading through to the end of this |
| 1438 | // PCH block, skipping subblocks, to see if there are other |
| 1439 | // PCH blocks elsewhere. |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1440 | |
| 1441 | // Clear out any preallocated source location entries, so that |
| 1442 | // the source manager does not try to resolve them later. |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1443 | SourceMgr.ClearPreallocatedSLocEntries(); |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1444 | |
| 1445 | // Remove the stat cache. |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1446 | FileMgr.setStatCache(0); |
Douglas Gregor | 2bf1eb0 | 2009-04-27 21:28:04 +0000 | [diff] [blame] | 1447 | |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1448 | return IgnorePCH; |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1449 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1450 | break; |
| 1451 | default: |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1452 | if (Stream.SkipBlock()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1453 | Error("malformed block record in PCH file"); |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 1454 | return Failure; |
| 1455 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1456 | break; |
| 1457 | } |
| 1458 | } |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 1459 | |
| 1460 | // Check the predefines buffer. |
| 1461 | if (CheckPredefinesBuffer(PCHPredefines, PCHPredefinesLen, |
| 1462 | PCHPredefinesBufferID)) |
| 1463 | return IgnorePCH; |
| 1464 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1465 | if (PP) { |
Zhongxing Xu | 0899621 | 2009-07-18 09:26:51 +0000 | [diff] [blame] | 1466 | // Initialization of keywords and pragmas occurs before the |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1467 | // PCH file is read, so there may be some identifiers that were |
| 1468 | // loaded into the IdentifierTable before we intercepted the |
| 1469 | // creation of identifiers. Iterate through the list of known |
| 1470 | // identifiers and determine whether we have to establish |
| 1471 | // preprocessor definitions or top-level identifier declaration |
| 1472 | // chains for those identifiers. |
| 1473 | // |
| 1474 | // We copy the IdentifierInfo pointers to a small vector first, |
| 1475 | // since de-serializing declarations or macro definitions can add |
| 1476 | // new entries into the identifier table, invalidating the |
| 1477 | // iterators. |
| 1478 | llvm::SmallVector<IdentifierInfo *, 128> Identifiers; |
| 1479 | for (IdentifierTable::iterator Id = PP->getIdentifierTable().begin(), |
| 1480 | IdEnd = PP->getIdentifierTable().end(); |
| 1481 | Id != IdEnd; ++Id) |
| 1482 | Identifiers.push_back(Id->second); |
| 1483 | PCHIdentifierLookupTable *IdTable |
| 1484 | = (PCHIdentifierLookupTable *)IdentifierLookupTable; |
| 1485 | for (unsigned I = 0, N = Identifiers.size(); I != N; ++I) { |
| 1486 | IdentifierInfo *II = Identifiers[I]; |
| 1487 | // Look in the on-disk hash table for an entry for |
| 1488 | PCHIdentifierLookupTrait Info(*this, II); |
| 1489 | std::pair<const char*, unsigned> Key(II->getName(), II->getLength()); |
| 1490 | PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key, &Info); |
| 1491 | if (Pos == IdTable->end()) |
| 1492 | continue; |
| 1493 | |
| 1494 | // Dereferencing the iterator has the effect of populating the |
| 1495 | // IdentifierInfo node with the various declarations it needs. |
| 1496 | (void)*Pos; |
| 1497 | } |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1500 | if (Context) |
| 1501 | InitializeContext(*Context); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1502 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1503 | return Success; |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1504 | } |
| 1505 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1506 | void PCHReader::InitializeContext(ASTContext &Ctx) { |
| 1507 | Context = &Ctx; |
| 1508 | assert(Context && "Passed null context!"); |
| 1509 | |
| 1510 | assert(PP && "Forgot to set Preprocessor ?"); |
| 1511 | PP->getIdentifierTable().setExternalIdentifierLookup(this); |
| 1512 | PP->getHeaderSearchInfo().SetExternalLookup(this); |
| 1513 | |
| 1514 | // Load the translation unit declaration |
| 1515 | ReadDeclRecord(DeclOffsets[0], 0); |
| 1516 | |
| 1517 | // Load the special types. |
| 1518 | Context->setBuiltinVaListType( |
| 1519 | GetType(SpecialTypes[pch::SPECIAL_TYPE_BUILTIN_VA_LIST])); |
| 1520 | if (unsigned Id = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID]) |
| 1521 | Context->setObjCIdType(GetType(Id)); |
| 1522 | if (unsigned Sel = SpecialTypes[pch::SPECIAL_TYPE_OBJC_SELECTOR]) |
| 1523 | Context->setObjCSelType(GetType(Sel)); |
| 1524 | if (unsigned Proto = SpecialTypes[pch::SPECIAL_TYPE_OBJC_PROTOCOL]) |
| 1525 | Context->setObjCProtoType(GetType(Proto)); |
| 1526 | if (unsigned Class = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS]) |
| 1527 | Context->setObjCClassType(GetType(Class)); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1528 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1529 | if (unsigned String = SpecialTypes[pch::SPECIAL_TYPE_CF_CONSTANT_STRING]) |
| 1530 | Context->setCFConstantStringType(GetType(String)); |
| 1531 | if (unsigned FastEnum |
| 1532 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_FAST_ENUMERATION_STATE]) |
| 1533 | Context->setObjCFastEnumerationStateType(GetType(FastEnum)); |
Douglas Gregor | c29f77b | 2009-07-07 16:35:42 +0000 | [diff] [blame] | 1534 | if (unsigned File = SpecialTypes[pch::SPECIAL_TYPE_FILE]) { |
| 1535 | QualType FileType = GetType(File); |
| 1536 | assert(!FileType.isNull() && "FILE type is NULL"); |
| 1537 | if (const TypedefType *Typedef = FileType->getAsTypedefType()) |
| 1538 | Context->setFILEDecl(Typedef->getDecl()); |
| 1539 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1540 | const TagType *Tag = FileType->getAs<TagType>(); |
Douglas Gregor | c29f77b | 2009-07-07 16:35:42 +0000 | [diff] [blame] | 1541 | assert(Tag && "Invalid FILE type in PCH file"); |
| 1542 | Context->setFILEDecl(Tag->getDecl()); |
| 1543 | } |
| 1544 | } |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1545 | if (unsigned Jmp_buf = SpecialTypes[pch::SPECIAL_TYPE_jmp_buf]) { |
| 1546 | QualType Jmp_bufType = GetType(Jmp_buf); |
| 1547 | assert(!Jmp_bufType.isNull() && "jmp_bug type is NULL"); |
| 1548 | if (const TypedefType *Typedef = Jmp_bufType->getAsTypedefType()) |
| 1549 | Context->setjmp_bufDecl(Typedef->getDecl()); |
| 1550 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1551 | const TagType *Tag = Jmp_bufType->getAs<TagType>(); |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1552 | assert(Tag && "Invalid jmp_bug type in PCH file"); |
| 1553 | Context->setjmp_bufDecl(Tag->getDecl()); |
| 1554 | } |
| 1555 | } |
| 1556 | if (unsigned Sigjmp_buf = SpecialTypes[pch::SPECIAL_TYPE_sigjmp_buf]) { |
| 1557 | QualType Sigjmp_bufType = GetType(Sigjmp_buf); |
| 1558 | assert(!Sigjmp_bufType.isNull() && "sigjmp_buf type is NULL"); |
| 1559 | if (const TypedefType *Typedef = Sigjmp_bufType->getAsTypedefType()) |
| 1560 | Context->setsigjmp_bufDecl(Typedef->getDecl()); |
| 1561 | else { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1562 | const TagType *Tag = Sigjmp_bufType->getAs<TagType>(); |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 1563 | assert(Tag && "Invalid sigjmp_buf type in PCH file"); |
| 1564 | Context->setsigjmp_bufDecl(Tag->getDecl()); |
| 1565 | } |
| 1566 | } |
Douglas Gregor | d1571ac | 2009-08-21 00:27:50 +0000 | [diff] [blame] | 1567 | if (unsigned ObjCIdRedef |
| 1568 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_ID_REDEFINITION]) |
| 1569 | Context->ObjCIdRedefinitionType = GetType(ObjCIdRedef); |
| 1570 | if (unsigned ObjCClassRedef |
| 1571 | = SpecialTypes[pch::SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) |
| 1572 | Context->ObjCClassRedefinitionType = GetType(ObjCClassRedef); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1573 | } |
| 1574 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1575 | /// \brief Retrieve the name of the original source file name |
| 1576 | /// directly from the PCH file, without actually loading the PCH |
| 1577 | /// file. |
| 1578 | std::string PCHReader::getOriginalSourceFile(const std::string &PCHFileName) { |
| 1579 | // Open the PCH file. |
| 1580 | std::string ErrStr; |
| 1581 | llvm::OwningPtr<llvm::MemoryBuffer> Buffer; |
| 1582 | Buffer.reset(llvm::MemoryBuffer::getFile(PCHFileName.c_str(), &ErrStr)); |
| 1583 | if (!Buffer) { |
| 1584 | fprintf(stderr, "error: %s\n", ErrStr.c_str()); |
| 1585 | return std::string(); |
| 1586 | } |
| 1587 | |
| 1588 | // Initialize the stream |
| 1589 | llvm::BitstreamReader StreamFile; |
| 1590 | llvm::BitstreamCursor Stream; |
| 1591 | StreamFile.init((const unsigned char *)Buffer->getBufferStart(), |
| 1592 | (const unsigned char *)Buffer->getBufferEnd()); |
| 1593 | Stream.init(StreamFile); |
| 1594 | |
| 1595 | // Sniff for the signature. |
| 1596 | if (Stream.Read(8) != 'C' || |
| 1597 | Stream.Read(8) != 'P' || |
| 1598 | Stream.Read(8) != 'C' || |
| 1599 | Stream.Read(8) != 'H') { |
| 1600 | fprintf(stderr, |
| 1601 | "error: '%s' does not appear to be a precompiled header file\n", |
| 1602 | PCHFileName.c_str()); |
| 1603 | return std::string(); |
| 1604 | } |
| 1605 | |
| 1606 | RecordData Record; |
| 1607 | while (!Stream.AtEndOfStream()) { |
| 1608 | unsigned Code = Stream.ReadCode(); |
| 1609 | |
| 1610 | if (Code == llvm::bitc::ENTER_SUBBLOCK) { |
| 1611 | unsigned BlockID = Stream.ReadSubBlockID(); |
| 1612 | |
| 1613 | // We only know the PCH subblock ID. |
| 1614 | switch (BlockID) { |
| 1615 | case pch::PCH_BLOCK_ID: |
| 1616 | if (Stream.EnterSubBlock(pch::PCH_BLOCK_ID)) { |
| 1617 | fprintf(stderr, "error: malformed block record in PCH file\n"); |
| 1618 | return std::string(); |
| 1619 | } |
| 1620 | break; |
| 1621 | |
| 1622 | default: |
| 1623 | if (Stream.SkipBlock()) { |
| 1624 | fprintf(stderr, "error: malformed block record in PCH file\n"); |
| 1625 | return std::string(); |
| 1626 | } |
| 1627 | break; |
| 1628 | } |
| 1629 | continue; |
| 1630 | } |
| 1631 | |
| 1632 | if (Code == llvm::bitc::END_BLOCK) { |
| 1633 | if (Stream.ReadBlockEnd()) { |
| 1634 | fprintf(stderr, "error: error at end of module block in PCH file\n"); |
| 1635 | return std::string(); |
| 1636 | } |
| 1637 | continue; |
| 1638 | } |
| 1639 | |
| 1640 | if (Code == llvm::bitc::DEFINE_ABBREV) { |
| 1641 | Stream.ReadAbbrevRecord(); |
| 1642 | continue; |
| 1643 | } |
| 1644 | |
| 1645 | Record.clear(); |
| 1646 | const char *BlobStart = 0; |
| 1647 | unsigned BlobLen = 0; |
| 1648 | if (Stream.ReadRecord(Code, Record, &BlobStart, &BlobLen) |
| 1649 | == pch::ORIGINAL_FILE_NAME) |
| 1650 | return std::string(BlobStart, BlobLen); |
| 1651 | } |
| 1652 | |
| 1653 | return std::string(); |
| 1654 | } |
| 1655 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1656 | /// \brief Parse the record that corresponds to a LangOptions data |
| 1657 | /// structure. |
| 1658 | /// |
| 1659 | /// This routine compares the language options used to generate the |
| 1660 | /// PCH file against the language options set for the current |
| 1661 | /// compilation. For each option, we classify differences between the |
| 1662 | /// two compiler states as either "benign" or "important". Benign |
| 1663 | /// differences don't matter, and we accept them without complaint |
| 1664 | /// (and without modifying the language options). Differences between |
| 1665 | /// the states for important options cause the PCH file to be |
| 1666 | /// unusable, so we emit a warning and return true to indicate that |
| 1667 | /// there was an error. |
| 1668 | /// |
| 1669 | /// \returns true if the PCH file is unacceptable, false otherwise. |
| 1670 | bool PCHReader::ParseLanguageOptions( |
| 1671 | const llvm::SmallVectorImpl<uint64_t> &Record) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1672 | if (Listener) { |
| 1673 | LangOptions LangOpts; |
| 1674 | |
| 1675 | #define PARSE_LANGOPT(Option) \ |
| 1676 | LangOpts.Option = Record[Idx]; \ |
| 1677 | ++Idx |
| 1678 | |
| 1679 | unsigned Idx = 0; |
| 1680 | PARSE_LANGOPT(Trigraphs); |
| 1681 | PARSE_LANGOPT(BCPLComment); |
| 1682 | PARSE_LANGOPT(DollarIdents); |
| 1683 | PARSE_LANGOPT(AsmPreprocessor); |
| 1684 | PARSE_LANGOPT(GNUMode); |
| 1685 | PARSE_LANGOPT(ImplicitInt); |
| 1686 | PARSE_LANGOPT(Digraphs); |
| 1687 | PARSE_LANGOPT(HexFloats); |
| 1688 | PARSE_LANGOPT(C99); |
| 1689 | PARSE_LANGOPT(Microsoft); |
| 1690 | PARSE_LANGOPT(CPlusPlus); |
| 1691 | PARSE_LANGOPT(CPlusPlus0x); |
| 1692 | PARSE_LANGOPT(CXXOperatorNames); |
| 1693 | PARSE_LANGOPT(ObjC1); |
| 1694 | PARSE_LANGOPT(ObjC2); |
| 1695 | PARSE_LANGOPT(ObjCNonFragileABI); |
| 1696 | PARSE_LANGOPT(PascalStrings); |
| 1697 | PARSE_LANGOPT(WritableStrings); |
| 1698 | PARSE_LANGOPT(LaxVectorConversions); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 1699 | PARSE_LANGOPT(AltiVec); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1700 | PARSE_LANGOPT(Exceptions); |
| 1701 | PARSE_LANGOPT(NeXTRuntime); |
| 1702 | PARSE_LANGOPT(Freestanding); |
| 1703 | PARSE_LANGOPT(NoBuiltin); |
| 1704 | PARSE_LANGOPT(ThreadsafeStatics); |
Douglas Gregor | 972d954 | 2009-09-03 14:36:33 +0000 | [diff] [blame] | 1705 | PARSE_LANGOPT(POSIXThreads); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1706 | PARSE_LANGOPT(Blocks); |
| 1707 | PARSE_LANGOPT(EmitAllDecls); |
| 1708 | PARSE_LANGOPT(MathErrno); |
| 1709 | PARSE_LANGOPT(OverflowChecking); |
| 1710 | PARSE_LANGOPT(HeinousExtensions); |
| 1711 | PARSE_LANGOPT(Optimize); |
| 1712 | PARSE_LANGOPT(OptimizeSize); |
| 1713 | PARSE_LANGOPT(Static); |
| 1714 | PARSE_LANGOPT(PICLevel); |
| 1715 | PARSE_LANGOPT(GNUInline); |
| 1716 | PARSE_LANGOPT(NoInline); |
| 1717 | PARSE_LANGOPT(AccessControl); |
| 1718 | PARSE_LANGOPT(CharIsSigned); |
| 1719 | LangOpts.setGCMode((LangOptions::GCMode)Record[Idx]); |
| 1720 | ++Idx; |
| 1721 | LangOpts.setVisibilityMode((LangOptions::VisibilityMode)Record[Idx]); |
| 1722 | ++Idx; |
| 1723 | PARSE_LANGOPT(InstantiationDepth); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 1724 | PARSE_LANGOPT(OpenCL); |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1725 | #undef PARSE_LANGOPT |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1726 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 1727 | return Listener->ReadLanguageOptions(LangOpts); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1728 | } |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1729 | |
| 1730 | return false; |
| 1731 | } |
| 1732 | |
Douglas Gregor | 2e22253 | 2009-07-02 17:08:52 +0000 | [diff] [blame] | 1733 | void PCHReader::ReadComments(std::vector<SourceRange> &Comments) { |
| 1734 | Comments.resize(NumComments); |
| 1735 | std::copy(this->Comments, this->Comments + NumComments, |
| 1736 | Comments.begin()); |
| 1737 | } |
| 1738 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1739 | /// \brief Read and return the type at the given offset. |
| 1740 | /// |
| 1741 | /// This routine actually reads the record corresponding to the type |
| 1742 | /// at the given offset in the bitstream. It is a helper routine for |
| 1743 | /// GetType, which deals with reading type IDs. |
| 1744 | QualType PCHReader::ReadTypeRecord(uint64_t Offset) { |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1745 | // Keep track of where we are in the stream, then jump back there |
| 1746 | // after reading this type. |
| 1747 | SavedStreamPosition SavedPosition(Stream); |
| 1748 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 1749 | // Note that we are loading a type record. |
| 1750 | LoadingTypeOrDecl Loading(*this); |
| 1751 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1752 | Stream.JumpToBit(Offset); |
| 1753 | RecordData Record; |
| 1754 | unsigned Code = Stream.ReadCode(); |
| 1755 | switch ((pch::TypeCode)Stream.ReadRecord(Code, Record)) { |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1756 | case pch::TYPE_EXT_QUAL: { |
| 1757 | assert(Record.size() == 3 && |
| 1758 | "Incorrect encoding of extended qualifier type"); |
| 1759 | QualType Base = GetType(Record[0]); |
| 1760 | QualType::GCAttrTypes GCAttr = (QualType::GCAttrTypes)Record[1]; |
| 1761 | unsigned AddressSpace = Record[2]; |
| 1762 | |
| 1763 | QualType T = Base; |
| 1764 | if (GCAttr != QualType::GCNone) |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1765 | T = Context->getObjCGCQualType(T, GCAttr); |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1766 | if (AddressSpace) |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1767 | T = Context->getAddrSpaceQualType(T, AddressSpace); |
Douglas Gregor | 6d47396 | 2009-04-15 22:00:08 +0000 | [diff] [blame] | 1768 | return T; |
| 1769 | } |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1770 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1771 | case pch::TYPE_FIXED_WIDTH_INT: { |
| 1772 | assert(Record.size() == 2 && "Incorrect encoding of fixed-width int type"); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1773 | return Context->getFixedWidthIntType(Record[0], Record[1]); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1774 | } |
| 1775 | |
| 1776 | case pch::TYPE_COMPLEX: { |
| 1777 | assert(Record.size() == 1 && "Incorrect encoding of complex type"); |
| 1778 | QualType ElemType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1779 | return Context->getComplexType(ElemType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1780 | } |
| 1781 | |
| 1782 | case pch::TYPE_POINTER: { |
| 1783 | assert(Record.size() == 1 && "Incorrect encoding of pointer type"); |
| 1784 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1785 | return Context->getPointerType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1786 | } |
| 1787 | |
| 1788 | case pch::TYPE_BLOCK_POINTER: { |
| 1789 | assert(Record.size() == 1 && "Incorrect encoding of block pointer type"); |
| 1790 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1791 | return Context->getBlockPointerType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | case pch::TYPE_LVALUE_REFERENCE: { |
| 1795 | assert(Record.size() == 1 && "Incorrect encoding of lvalue reference type"); |
| 1796 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1797 | return Context->getLValueReferenceType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | case pch::TYPE_RVALUE_REFERENCE: { |
| 1801 | assert(Record.size() == 1 && "Incorrect encoding of rvalue reference type"); |
| 1802 | QualType PointeeType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1803 | return Context->getRValueReferenceType(PointeeType); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1804 | } |
| 1805 | |
| 1806 | case pch::TYPE_MEMBER_POINTER: { |
| 1807 | assert(Record.size() == 1 && "Incorrect encoding of member pointer type"); |
| 1808 | QualType PointeeType = GetType(Record[0]); |
| 1809 | QualType ClassType = GetType(Record[1]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1810 | return Context->getMemberPointerType(PointeeType, ClassType.getTypePtr()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1813 | case pch::TYPE_CONSTANT_ARRAY: { |
| 1814 | QualType ElementType = GetType(Record[0]); |
| 1815 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 1816 | unsigned IndexTypeQuals = Record[2]; |
| 1817 | unsigned Idx = 3; |
| 1818 | llvm::APInt Size = ReadAPInt(Record, Idx); |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 1819 | return Context->getConstantArrayType(ElementType, Size, |
| 1820 | ASM, IndexTypeQuals); |
| 1821 | } |
| 1822 | |
| 1823 | case pch::TYPE_CONSTANT_ARRAY_WITH_EXPR: { |
| 1824 | QualType ElementType = GetType(Record[0]); |
| 1825 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 1826 | unsigned IndexTypeQuals = Record[2]; |
| 1827 | SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]); |
| 1828 | SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]); |
| 1829 | unsigned Idx = 5; |
| 1830 | llvm::APInt Size = ReadAPInt(Record, Idx); |
| 1831 | return Context->getConstantArrayWithExprType(ElementType, |
| 1832 | Size, ReadTypeExpr(), |
| 1833 | ASM, IndexTypeQuals, |
| 1834 | SourceRange(LBLoc, RBLoc)); |
| 1835 | } |
| 1836 | |
| 1837 | case pch::TYPE_CONSTANT_ARRAY_WITHOUT_EXPR: { |
| 1838 | QualType ElementType = GetType(Record[0]); |
| 1839 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 1840 | unsigned IndexTypeQuals = Record[2]; |
| 1841 | unsigned Idx = 3; |
| 1842 | llvm::APInt Size = ReadAPInt(Record, Idx); |
| 1843 | return Context->getConstantArrayWithoutExprType(ElementType, Size, |
| 1844 | ASM, IndexTypeQuals); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1845 | } |
| 1846 | |
| 1847 | case pch::TYPE_INCOMPLETE_ARRAY: { |
| 1848 | QualType ElementType = GetType(Record[0]); |
| 1849 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 1850 | unsigned IndexTypeQuals = Record[2]; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1851 | return Context->getIncompleteArrayType(ElementType, ASM, IndexTypeQuals); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1852 | } |
| 1853 | |
| 1854 | case pch::TYPE_VARIABLE_ARRAY: { |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1855 | QualType ElementType = GetType(Record[0]); |
| 1856 | ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1]; |
| 1857 | unsigned IndexTypeQuals = Record[2]; |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 1858 | SourceLocation LBLoc = SourceLocation::getFromRawEncoding(Record[3]); |
| 1859 | SourceLocation RBLoc = SourceLocation::getFromRawEncoding(Record[4]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1860 | return Context->getVariableArrayType(ElementType, ReadTypeExpr(), |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 1861 | ASM, IndexTypeQuals, |
| 1862 | SourceRange(LBLoc, RBLoc)); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1863 | } |
| 1864 | |
| 1865 | case pch::TYPE_VECTOR: { |
| 1866 | if (Record.size() != 2) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1867 | Error("incorrect encoding of vector type in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1868 | return QualType(); |
| 1869 | } |
| 1870 | |
| 1871 | QualType ElementType = GetType(Record[0]); |
| 1872 | unsigned NumElements = Record[1]; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1873 | return Context->getVectorType(ElementType, NumElements); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1874 | } |
| 1875 | |
| 1876 | case pch::TYPE_EXT_VECTOR: { |
| 1877 | if (Record.size() != 2) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1878 | Error("incorrect encoding of extended vector type in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1879 | return QualType(); |
| 1880 | } |
| 1881 | |
| 1882 | QualType ElementType = GetType(Record[0]); |
| 1883 | unsigned NumElements = Record[1]; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1884 | return Context->getExtVectorType(ElementType, NumElements); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1885 | } |
| 1886 | |
| 1887 | case pch::TYPE_FUNCTION_NO_PROTO: { |
| 1888 | if (Record.size() != 1) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1889 | Error("incorrect encoding of no-proto function type"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1890 | return QualType(); |
| 1891 | } |
| 1892 | QualType ResultType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1893 | return Context->getFunctionNoProtoType(ResultType); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1894 | } |
| 1895 | |
| 1896 | case pch::TYPE_FUNCTION_PROTO: { |
| 1897 | QualType ResultType = GetType(Record[0]); |
| 1898 | unsigned Idx = 1; |
| 1899 | unsigned NumParams = Record[Idx++]; |
| 1900 | llvm::SmallVector<QualType, 16> ParamTypes; |
| 1901 | for (unsigned I = 0; I != NumParams; ++I) |
| 1902 | ParamTypes.push_back(GetType(Record[Idx++])); |
| 1903 | bool isVariadic = Record[Idx++]; |
| 1904 | unsigned Quals = Record[Idx++]; |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 1905 | bool hasExceptionSpec = Record[Idx++]; |
| 1906 | bool hasAnyExceptionSpec = Record[Idx++]; |
| 1907 | unsigned NumExceptions = Record[Idx++]; |
| 1908 | llvm::SmallVector<QualType, 2> Exceptions; |
| 1909 | for (unsigned I = 0; I != NumExceptions; ++I) |
| 1910 | Exceptions.push_back(GetType(Record[Idx++])); |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 1911 | return Context->getFunctionType(ResultType, ParamTypes.data(), NumParams, |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 1912 | isVariadic, Quals, hasExceptionSpec, |
| 1913 | hasAnyExceptionSpec, NumExceptions, |
| 1914 | Exceptions.data()); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | case pch::TYPE_TYPEDEF: |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1918 | assert(Record.size() == 1 && "incorrect encoding of typedef type"); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1919 | return Context->getTypeDeclType(cast<TypedefDecl>(GetDecl(Record[0]))); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1920 | |
| 1921 | case pch::TYPE_TYPEOF_EXPR: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1922 | return Context->getTypeOfExprType(ReadTypeExpr()); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1923 | |
| 1924 | case pch::TYPE_TYPEOF: { |
| 1925 | if (Record.size() != 1) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1926 | Error("incorrect encoding of typeof(type) in PCH file"); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1927 | return QualType(); |
| 1928 | } |
| 1929 | QualType UnderlyingType = GetType(Record[0]); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1930 | return Context->getTypeOfType(UnderlyingType); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1931 | } |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 1932 | |
| 1933 | case pch::TYPE_DECLTYPE: |
| 1934 | return Context->getDecltypeType(ReadTypeExpr()); |
| 1935 | |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1936 | case pch::TYPE_RECORD: |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1937 | assert(Record.size() == 1 && "incorrect encoding of record type"); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1938 | return Context->getTypeDeclType(cast<RecordDecl>(GetDecl(Record[0]))); |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1939 | |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 1940 | case pch::TYPE_ENUM: |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 1941 | assert(Record.size() == 1 && "incorrect encoding of enum type"); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1942 | return Context->getTypeDeclType(cast<EnumDecl>(GetDecl(Record[0]))); |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 1943 | |
John McCall | 7da2431 | 2009-09-05 00:15:47 +0000 | [diff] [blame] | 1944 | case pch::TYPE_ELABORATED: { |
| 1945 | assert(Record.size() == 2 && "incorrect encoding of elaborated type"); |
| 1946 | unsigned Tag = Record[1]; |
| 1947 | return Context->getElaboratedType(GetType(Record[0]), |
| 1948 | (ElaboratedType::TagKind) Tag); |
| 1949 | } |
| 1950 | |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 1951 | case pch::TYPE_OBJC_INTERFACE: { |
Chris Lattner | c6fa445 | 2009-04-22 06:45:28 +0000 | [diff] [blame] | 1952 | unsigned Idx = 0; |
| 1953 | ObjCInterfaceDecl *ItfD = cast<ObjCInterfaceDecl>(GetDecl(Record[Idx++])); |
| 1954 | unsigned NumProtos = Record[Idx++]; |
| 1955 | llvm::SmallVector<ObjCProtocolDecl*, 4> Protos; |
| 1956 | for (unsigned I = 0; I != NumProtos; ++I) |
| 1957 | Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++]))); |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 1958 | return Context->getObjCInterfaceType(ItfD, Protos.data(), NumProtos); |
Chris Lattner | c6fa445 | 2009-04-22 06:45:28 +0000 | [diff] [blame] | 1959 | } |
Douglas Gregor | b4e715b | 2009-04-13 20:46:52 +0000 | [diff] [blame] | 1960 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1961 | case pch::TYPE_OBJC_OBJECT_POINTER: { |
Chris Lattner | d7a3fcd | 2009-04-22 06:40:03 +0000 | [diff] [blame] | 1962 | unsigned Idx = 0; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1963 | QualType OIT = GetType(Record[Idx++]); |
Chris Lattner | d7a3fcd | 2009-04-22 06:40:03 +0000 | [diff] [blame] | 1964 | unsigned NumProtos = Record[Idx++]; |
| 1965 | llvm::SmallVector<ObjCProtocolDecl*, 4> Protos; |
| 1966 | for (unsigned I = 0; I != NumProtos; ++I) |
| 1967 | Protos.push_back(cast<ObjCProtocolDecl>(GetDecl(Record[Idx++]))); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1968 | return Context->getObjCObjectPointerType(OIT, Protos.data(), NumProtos); |
Chris Lattner | d7a3fcd | 2009-04-22 06:40:03 +0000 | [diff] [blame] | 1969 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1970 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1971 | // Suppress a GCC warning |
| 1972 | return QualType(); |
| 1973 | } |
| 1974 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1975 | |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1976 | QualType PCHReader::GetType(pch::TypeID ID) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1977 | unsigned Quals = ID & 0x07; |
| 1978 | unsigned Index = ID >> 3; |
| 1979 | |
| 1980 | if (Index < pch::NUM_PREDEF_TYPE_IDS) { |
| 1981 | QualType T; |
| 1982 | switch ((pch::PredefinedTypeIDs)Index) { |
| 1983 | case pch::PREDEF_TYPE_NULL_ID: return QualType(); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1984 | case pch::PREDEF_TYPE_VOID_ID: T = Context->VoidTy; break; |
| 1985 | case pch::PREDEF_TYPE_BOOL_ID: T = Context->BoolTy; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1986 | |
| 1987 | case pch::PREDEF_TYPE_CHAR_U_ID: |
| 1988 | case pch::PREDEF_TYPE_CHAR_S_ID: |
| 1989 | // FIXME: Check that the signedness of CharTy is correct! |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1990 | T = Context->CharTy; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1991 | break; |
| 1992 | |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1993 | case pch::PREDEF_TYPE_UCHAR_ID: T = Context->UnsignedCharTy; break; |
| 1994 | case pch::PREDEF_TYPE_USHORT_ID: T = Context->UnsignedShortTy; break; |
| 1995 | case pch::PREDEF_TYPE_UINT_ID: T = Context->UnsignedIntTy; break; |
| 1996 | case pch::PREDEF_TYPE_ULONG_ID: T = Context->UnsignedLongTy; break; |
| 1997 | case pch::PREDEF_TYPE_ULONGLONG_ID: T = Context->UnsignedLongLongTy; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 1998 | case pch::PREDEF_TYPE_UINT128_ID: T = Context->UnsignedInt128Ty; break; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1999 | case pch::PREDEF_TYPE_SCHAR_ID: T = Context->SignedCharTy; break; |
| 2000 | case pch::PREDEF_TYPE_WCHAR_ID: T = Context->WCharTy; break; |
| 2001 | case pch::PREDEF_TYPE_SHORT_ID: T = Context->ShortTy; break; |
| 2002 | case pch::PREDEF_TYPE_INT_ID: T = Context->IntTy; break; |
| 2003 | case pch::PREDEF_TYPE_LONG_ID: T = Context->LongTy; break; |
| 2004 | case pch::PREDEF_TYPE_LONGLONG_ID: T = Context->LongLongTy; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 2005 | case pch::PREDEF_TYPE_INT128_ID: T = Context->Int128Ty; break; |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2006 | case pch::PREDEF_TYPE_FLOAT_ID: T = Context->FloatTy; break; |
| 2007 | case pch::PREDEF_TYPE_DOUBLE_ID: T = Context->DoubleTy; break; |
| 2008 | case pch::PREDEF_TYPE_LONGDOUBLE_ID: T = Context->LongDoubleTy; break; |
| 2009 | case pch::PREDEF_TYPE_OVERLOAD_ID: T = Context->OverloadTy; break; |
| 2010 | case pch::PREDEF_TYPE_DEPENDENT_ID: T = Context->DependentTy; break; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2011 | case pch::PREDEF_TYPE_NULLPTR_ID: T = Context->NullPtrTy; break; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2012 | case pch::PREDEF_TYPE_CHAR16_ID: T = Context->Char16Ty; break; |
| 2013 | case pch::PREDEF_TYPE_CHAR32_ID: T = Context->Char32Ty; break; |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2014 | case pch::PREDEF_TYPE_OBJC_ID: T = Context->ObjCBuiltinIdTy; break; |
| 2015 | case pch::PREDEF_TYPE_OBJC_CLASS: T = Context->ObjCBuiltinClassTy; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2016 | } |
| 2017 | |
| 2018 | assert(!T.isNull() && "Unknown predefined type"); |
| 2019 | return T.getQualifiedType(Quals); |
| 2020 | } |
| 2021 | |
| 2022 | Index -= pch::NUM_PREDEF_TYPE_IDS; |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2023 | //assert(Index < TypesLoaded.size() && "Type index out-of-range"); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2024 | if (!TypesLoaded[Index]) |
| 2025 | TypesLoaded[Index] = ReadTypeRecord(TypeOffsets[Index]).getTypePtr(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2026 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2027 | return QualType(TypesLoaded[Index], Quals); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2028 | } |
| 2029 | |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 2030 | Decl *PCHReader::GetDecl(pch::DeclID ID) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2031 | if (ID == 0) |
| 2032 | return 0; |
| 2033 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2034 | if (ID > DeclsLoaded.size()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2035 | Error("declaration ID out-of-range for PCH file"); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2036 | return 0; |
| 2037 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2038 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2039 | unsigned Index = ID - 1; |
| 2040 | if (!DeclsLoaded[Index]) |
| 2041 | ReadDeclRecord(DeclOffsets[Index], Index); |
| 2042 | |
| 2043 | return DeclsLoaded[Index]; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2044 | } |
| 2045 | |
Chris Lattner | 887e2b3 | 2009-04-27 05:46:25 +0000 | [diff] [blame] | 2046 | /// \brief Resolve the offset of a statement into a statement. |
| 2047 | /// |
| 2048 | /// This operation will read a new statement from the external |
| 2049 | /// source each time it is called, and is meant to be used via a |
| 2050 | /// LazyOffsetPtr (which is used by Decls for the body of functions, etc). |
| 2051 | Stmt *PCHReader::GetDeclStmt(uint64_t Offset) { |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 2052 | // Since we know tha this statement is part of a decl, make sure to use the |
| 2053 | // decl cursor to read it. |
| 2054 | DeclsCursor.JumpToBit(Offset); |
| 2055 | return ReadStmt(DeclsCursor); |
Douglas Gregor | 250fc9c | 2009-04-18 00:07:54 +0000 | [diff] [blame] | 2056 | } |
| 2057 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2058 | bool PCHReader::ReadDeclsLexicallyInContext(DeclContext *DC, |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 2059 | llvm::SmallVectorImpl<pch::DeclID> &Decls) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2060 | assert(DC->hasExternalLexicalStorage() && |
| 2061 | "DeclContext has no lexical decls in storage"); |
| 2062 | uint64_t Offset = DeclContextOffsets[DC].first; |
| 2063 | assert(Offset && "DeclContext has no lexical decls in storage"); |
| 2064 | |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2065 | // Keep track of where we are in the stream, then jump back there |
| 2066 | // after reading this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2067 | SavedStreamPosition SavedPosition(DeclsCursor); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2068 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2069 | // Load the record containing all of the declarations lexically in |
| 2070 | // this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2071 | DeclsCursor.JumpToBit(Offset); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2072 | RecordData Record; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2073 | unsigned Code = DeclsCursor.ReadCode(); |
| 2074 | unsigned RecCode = DeclsCursor.ReadRecord(Code, Record); |
Douglas Gregor | 6a2bfb2 | 2009-04-15 18:43:11 +0000 | [diff] [blame] | 2075 | (void)RecCode; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2076 | assert(RecCode == pch::DECL_CONTEXT_LEXICAL && "Expected lexical block"); |
| 2077 | |
| 2078 | // Load all of the declaration IDs |
| 2079 | Decls.clear(); |
| 2080 | Decls.insert(Decls.end(), Record.begin(), Record.end()); |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2081 | ++NumLexicalDeclContextsRead; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2082 | return false; |
| 2083 | } |
| 2084 | |
| 2085 | bool PCHReader::ReadDeclsVisibleInContext(DeclContext *DC, |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2086 | llvm::SmallVectorImpl<VisibleDeclaration> &Decls) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2087 | assert(DC->hasExternalVisibleStorage() && |
| 2088 | "DeclContext has no visible decls in storage"); |
| 2089 | uint64_t Offset = DeclContextOffsets[DC].second; |
| 2090 | assert(Offset && "DeclContext has no visible decls in storage"); |
| 2091 | |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2092 | // Keep track of where we are in the stream, then jump back there |
| 2093 | // after reading this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2094 | SavedStreamPosition SavedPosition(DeclsCursor); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2095 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2096 | // Load the record containing all of the declarations visible in |
| 2097 | // this context. |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2098 | DeclsCursor.JumpToBit(Offset); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2099 | RecordData Record; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2100 | unsigned Code = DeclsCursor.ReadCode(); |
| 2101 | unsigned RecCode = DeclsCursor.ReadRecord(Code, Record); |
Douglas Gregor | 6a2bfb2 | 2009-04-15 18:43:11 +0000 | [diff] [blame] | 2102 | (void)RecCode; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2103 | assert(RecCode == pch::DECL_CONTEXT_VISIBLE && "Expected visible block"); |
| 2104 | if (Record.size() == 0) |
| 2105 | return false; |
| 2106 | |
| 2107 | Decls.clear(); |
| 2108 | |
| 2109 | unsigned Idx = 0; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2110 | while (Idx < Record.size()) { |
| 2111 | Decls.push_back(VisibleDeclaration()); |
| 2112 | Decls.back().Name = ReadDeclarationName(Record, Idx); |
| 2113 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2114 | unsigned Size = Record[Idx++]; |
Chris Lattner | c47be9e | 2009-04-27 07:35:40 +0000 | [diff] [blame] | 2115 | llvm::SmallVector<unsigned, 4> &LoadedDecls = Decls.back().Declarations; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2116 | LoadedDecls.reserve(Size); |
| 2117 | for (unsigned I = 0; I < Size; ++I) |
| 2118 | LoadedDecls.push_back(Record[Idx++]); |
| 2119 | } |
| 2120 | |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2121 | ++NumVisibleDeclContextsRead; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2122 | return false; |
| 2123 | } |
| 2124 | |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2125 | void PCHReader::StartTranslationUnit(ASTConsumer *Consumer) { |
Douglas Gregor | 0af2ca4 | 2009-04-22 19:09:20 +0000 | [diff] [blame] | 2126 | this->Consumer = Consumer; |
| 2127 | |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2128 | if (!Consumer) |
| 2129 | return; |
| 2130 | |
| 2131 | for (unsigned I = 0, N = ExternalDefinitions.size(); I != N; ++I) { |
| 2132 | Decl *D = GetDecl(ExternalDefinitions[I]); |
| 2133 | DeclGroupRef DG(D); |
| 2134 | Consumer->HandleTopLevelDecl(DG); |
| 2135 | } |
Douglas Gregor | c62a2fe | 2009-04-25 00:41:30 +0000 | [diff] [blame] | 2136 | |
| 2137 | for (unsigned I = 0, N = InterestingDecls.size(); I != N; ++I) { |
| 2138 | DeclGroupRef DG(InterestingDecls[I]); |
| 2139 | Consumer->HandleTopLevelDecl(DG); |
| 2140 | } |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2141 | } |
| 2142 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2143 | void PCHReader::PrintStats() { |
| 2144 | std::fprintf(stderr, "*** PCH Statistics:\n"); |
| 2145 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2146 | unsigned NumTypesLoaded |
| 2147 | = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(), |
| 2148 | (Type *)0); |
| 2149 | unsigned NumDeclsLoaded |
| 2150 | = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(), |
| 2151 | (Decl *)0); |
| 2152 | unsigned NumIdentifiersLoaded |
| 2153 | = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(), |
| 2154 | IdentifiersLoaded.end(), |
| 2155 | (IdentifierInfo *)0); |
| 2156 | unsigned NumSelectorsLoaded |
| 2157 | = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(), |
| 2158 | SelectorsLoaded.end(), |
| 2159 | Selector()); |
Douglas Gregor | 2d41cc1 | 2009-04-13 20:50:16 +0000 | [diff] [blame] | 2160 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2161 | std::fprintf(stderr, " %u stat cache hits\n", NumStatHits); |
| 2162 | std::fprintf(stderr, " %u stat cache misses\n", NumStatMisses); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 2163 | if (TotalNumSLocEntries) |
| 2164 | std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n", |
| 2165 | NumSLocEntriesRead, TotalNumSLocEntries, |
| 2166 | ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100)); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2167 | if (!TypesLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2168 | std::fprintf(stderr, " %u/%u types read (%f%%)\n", |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2169 | NumTypesLoaded, (unsigned)TypesLoaded.size(), |
| 2170 | ((float)NumTypesLoaded/TypesLoaded.size() * 100)); |
| 2171 | if (!DeclsLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2172 | std::fprintf(stderr, " %u/%u declarations read (%f%%)\n", |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2173 | NumDeclsLoaded, (unsigned)DeclsLoaded.size(), |
| 2174 | ((float)NumDeclsLoaded/DeclsLoaded.size() * 100)); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2175 | if (!IdentifiersLoaded.empty()) |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2176 | std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n", |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2177 | NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(), |
| 2178 | ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2179 | if (TotalNumSelectors) |
| 2180 | std::fprintf(stderr, " %u/%u selectors read (%f%%)\n", |
| 2181 | NumSelectorsLoaded, TotalNumSelectors, |
| 2182 | ((float)NumSelectorsLoaded/TotalNumSelectors * 100)); |
| 2183 | if (TotalNumStatements) |
| 2184 | std::fprintf(stderr, " %u/%u statements read (%f%%)\n", |
| 2185 | NumStatementsRead, TotalNumStatements, |
| 2186 | ((float)NumStatementsRead/TotalNumStatements * 100)); |
| 2187 | if (TotalNumMacros) |
| 2188 | std::fprintf(stderr, " %u/%u macros read (%f%%)\n", |
| 2189 | NumMacrosRead, TotalNumMacros, |
| 2190 | ((float)NumMacrosRead/TotalNumMacros * 100)); |
| 2191 | if (TotalLexicalDeclContexts) |
| 2192 | std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n", |
| 2193 | NumLexicalDeclContextsRead, TotalLexicalDeclContexts, |
| 2194 | ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts |
| 2195 | * 100)); |
| 2196 | if (TotalVisibleDeclContexts) |
| 2197 | std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n", |
| 2198 | NumVisibleDeclContextsRead, TotalVisibleDeclContexts, |
| 2199 | ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts |
| 2200 | * 100)); |
| 2201 | if (TotalSelectorsInMethodPool) { |
| 2202 | std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n", |
| 2203 | NumMethodPoolSelectorsRead, TotalSelectorsInMethodPool, |
| 2204 | ((float)NumMethodPoolSelectorsRead/TotalSelectorsInMethodPool |
| 2205 | * 100)); |
| 2206 | std::fprintf(stderr, " %u method pool misses\n", NumMethodPoolMisses); |
| 2207 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2208 | std::fprintf(stderr, "\n"); |
| 2209 | } |
| 2210 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2211 | void PCHReader::InitializeSema(Sema &S) { |
| 2212 | SemaObj = &S; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2213 | S.ExternalSource = this; |
| 2214 | |
Douglas Gregor | 6cfc1a8 | 2009-04-22 21:15:06 +0000 | [diff] [blame] | 2215 | // Makes sure any declarations that were deserialized "too early" |
| 2216 | // still get added to the identifier's declaration chains. |
| 2217 | for (unsigned I = 0, N = PreloadedDecls.size(); I != N; ++I) { |
| 2218 | SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(PreloadedDecls[I])); |
| 2219 | SemaObj->IdResolver.AddDecl(PreloadedDecls[I]); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2220 | } |
Douglas Gregor | 6cfc1a8 | 2009-04-22 21:15:06 +0000 | [diff] [blame] | 2221 | PreloadedDecls.clear(); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2222 | |
| 2223 | // If there were any tentative definitions, deserialize them and add |
| 2224 | // them to Sema's table of tentative definitions. |
| 2225 | for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) { |
| 2226 | VarDecl *Var = cast<VarDecl>(GetDecl(TentativeDefinitions[I])); |
| 2227 | SemaObj->TentativeDefinitions[Var->getDeclName()] = Var; |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 2228 | SemaObj->TentativeDefinitionList.push_back(Var->getDeclName()); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2229 | } |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2230 | |
| 2231 | // If there were any locally-scoped external declarations, |
| 2232 | // deserialize them and add them to Sema's table of locally-scoped |
| 2233 | // external declarations. |
| 2234 | for (unsigned I = 0, N = LocallyScopedExternalDecls.size(); I != N; ++I) { |
| 2235 | NamedDecl *D = cast<NamedDecl>(GetDecl(LocallyScopedExternalDecls[I])); |
| 2236 | SemaObj->LocallyScopedExternalDecls[D->getDeclName()] = D; |
| 2237 | } |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 2238 | |
| 2239 | // If there were any ext_vector type declarations, deserialize them |
| 2240 | // and add them to Sema's vector of such declarations. |
| 2241 | for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) |
| 2242 | SemaObj->ExtVectorDecls.push_back( |
| 2243 | cast<TypedefDecl>(GetDecl(ExtVectorDecls[I]))); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2244 | } |
| 2245 | |
| 2246 | IdentifierInfo* PCHReader::get(const char *NameStart, const char *NameEnd) { |
| 2247 | // Try to find this name within our on-disk hash table |
| 2248 | PCHIdentifierLookupTable *IdTable |
| 2249 | = (PCHIdentifierLookupTable *)IdentifierLookupTable; |
| 2250 | std::pair<const char*, unsigned> Key(NameStart, NameEnd - NameStart); |
| 2251 | PCHIdentifierLookupTable::iterator Pos = IdTable->find(Key); |
| 2252 | if (Pos == IdTable->end()) |
| 2253 | return 0; |
| 2254 | |
| 2255 | // Dereferencing the iterator has the effect of building the |
| 2256 | // IdentifierInfo node and populating it with the various |
| 2257 | // declarations it needs. |
| 2258 | return *Pos; |
| 2259 | } |
| 2260 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2261 | std::pair<ObjCMethodList, ObjCMethodList> |
| 2262 | PCHReader::ReadMethodPool(Selector Sel) { |
| 2263 | if (!MethodPoolLookupTable) |
| 2264 | return std::pair<ObjCMethodList, ObjCMethodList>(); |
| 2265 | |
| 2266 | // Try to find this selector within our on-disk hash table. |
| 2267 | PCHMethodPoolLookupTable *PoolTable |
| 2268 | = (PCHMethodPoolLookupTable*)MethodPoolLookupTable; |
| 2269 | PCHMethodPoolLookupTable::iterator Pos = PoolTable->find(Sel); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2270 | if (Pos == PoolTable->end()) { |
| 2271 | ++NumMethodPoolMisses; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2272 | return std::pair<ObjCMethodList, ObjCMethodList>();; |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2273 | } |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2274 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2275 | ++NumMethodPoolSelectorsRead; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2276 | return *Pos; |
| 2277 | } |
| 2278 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2279 | void PCHReader::SetIdentifierInfo(unsigned ID, IdentifierInfo *II) { |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2280 | assert(ID && "Non-zero identifier ID required"); |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2281 | assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range"); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2282 | IdentifiersLoaded[ID - 1] = II; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2283 | } |
| 2284 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2285 | /// \brief Set the globally-visible declarations associated with the given |
| 2286 | /// identifier. |
| 2287 | /// |
| 2288 | /// If the PCH reader is currently in a state where the given declaration IDs |
| 2289 | /// cannot safely be resolved, they are queued until it is safe to resolve |
| 2290 | /// them. |
| 2291 | /// |
| 2292 | /// \param II an IdentifierInfo that refers to one or more globally-visible |
| 2293 | /// declarations. |
| 2294 | /// |
| 2295 | /// \param DeclIDs the set of declaration IDs with the name @p II that are |
| 2296 | /// visible at global scope. |
| 2297 | /// |
| 2298 | /// \param Nonrecursive should be true to indicate that the caller knows that |
| 2299 | /// this call is non-recursive, and therefore the globally-visible declarations |
| 2300 | /// will not be placed onto the pending queue. |
| 2301 | void |
| 2302 | PCHReader::SetGloballyVisibleDecls(IdentifierInfo *II, |
| 2303 | const llvm::SmallVectorImpl<uint32_t> &DeclIDs, |
| 2304 | bool Nonrecursive) { |
| 2305 | if (CurrentlyLoadingTypeOrDecl && !Nonrecursive) { |
| 2306 | PendingIdentifierInfos.push_back(PendingIdentifierInfo()); |
| 2307 | PendingIdentifierInfo &PII = PendingIdentifierInfos.back(); |
| 2308 | PII.II = II; |
| 2309 | for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) |
| 2310 | PII.DeclIDs.push_back(DeclIDs[I]); |
| 2311 | return; |
| 2312 | } |
| 2313 | |
| 2314 | for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { |
| 2315 | NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); |
| 2316 | if (SemaObj) { |
| 2317 | // Introduce this declaration into the translation-unit scope |
| 2318 | // and add it to the declaration chain for this identifier, so |
| 2319 | // that (unqualified) name lookup will find it. |
| 2320 | SemaObj->TUScope->AddDecl(Action::DeclPtrTy::make(D)); |
| 2321 | SemaObj->IdResolver.AddDeclToIdentifierChain(II, D); |
| 2322 | } else { |
| 2323 | // Queue this declaration so that it will be added to the |
| 2324 | // translation unit scope and identifier's declaration chain |
| 2325 | // once a Sema object is known. |
| 2326 | PreloadedDecls.push_back(D); |
| 2327 | } |
| 2328 | } |
| 2329 | } |
| 2330 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 2331 | IdentifierInfo *PCHReader::DecodeIdentifierInfo(unsigned ID) { |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2332 | if (ID == 0) |
| 2333 | return 0; |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 2334 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2335 | if (!IdentifierTableData || IdentifiersLoaded.empty()) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2336 | Error("no identifier table in PCH file"); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2337 | return 0; |
| 2338 | } |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 2339 | |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 2340 | assert(PP && "Forgot to set Preprocessor ?"); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2341 | if (!IdentifiersLoaded[ID - 1]) { |
| 2342 | uint32_t Offset = IdentifierOffsets[ID - 1]; |
Douglas Gregor | 17e1c5e | 2009-04-25 21:21:38 +0000 | [diff] [blame] | 2343 | const char *Str = IdentifierTableData + Offset; |
Douglas Gregor | d6595a4 | 2009-04-25 21:04:17 +0000 | [diff] [blame] | 2344 | |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 2345 | // All of the strings in the PCH file are preceded by a 16-bit |
| 2346 | // length. Extract that 16-bit length to avoid having to execute |
| 2347 | // strlen(). |
| 2348 | const char *StrLenPtr = Str - 2; |
| 2349 | unsigned StrLen = (((unsigned) StrLenPtr[0]) |
| 2350 | | (((unsigned) StrLenPtr[1]) << 8)) - 1; |
| 2351 | IdentifiersLoaded[ID - 1] |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 2352 | = &PP->getIdentifierTable().get(Str, Str + StrLen); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2353 | } |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 2354 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 2355 | return IdentifiersLoaded[ID - 1]; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2356 | } |
| 2357 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 2358 | void PCHReader::ReadSLocEntry(unsigned ID) { |
| 2359 | ReadSLocEntryRecord(ID); |
| 2360 | } |
| 2361 | |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2362 | Selector PCHReader::DecodeSelector(unsigned ID) { |
| 2363 | if (ID == 0) |
| 2364 | return Selector(); |
| 2365 | |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2366 | if (!MethodPoolLookupTableData) |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2367 | return Selector(); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2368 | |
| 2369 | if (ID > TotalNumSelectors) { |
Douglas Gregor | a02b147 | 2009-04-28 21:53:25 +0000 | [diff] [blame] | 2370 | Error("selector ID out of range in PCH file"); |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2371 | return Selector(); |
| 2372 | } |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2373 | |
| 2374 | unsigned Index = ID - 1; |
| 2375 | if (SelectorsLoaded[Index].getAsOpaquePtr() == 0) { |
| 2376 | // Load this selector from the selector table. |
| 2377 | // FIXME: endianness portability issues with SelectorOffsets table |
| 2378 | PCHMethodPoolLookupTrait Trait(*this); |
| 2379 | SelectorsLoaded[Index] |
| 2380 | = Trait.ReadKey(MethodPoolLookupTableData + SelectorOffsets[Index], 0); |
| 2381 | } |
| 2382 | |
| 2383 | return SelectorsLoaded[Index]; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2384 | } |
| 2385 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2386 | DeclarationName |
| 2387 | PCHReader::ReadDeclarationName(const RecordData &Record, unsigned &Idx) { |
| 2388 | DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++]; |
| 2389 | switch (Kind) { |
| 2390 | case DeclarationName::Identifier: |
| 2391 | return DeclarationName(GetIdentifierInfo(Record, Idx)); |
| 2392 | |
| 2393 | case DeclarationName::ObjCZeroArgSelector: |
| 2394 | case DeclarationName::ObjCOneArgSelector: |
| 2395 | case DeclarationName::ObjCMultiArgSelector: |
Steve Naroff | a7503a7 | 2009-04-23 15:15:40 +0000 | [diff] [blame] | 2396 | return DeclarationName(GetSelector(Record, Idx)); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2397 | |
| 2398 | case DeclarationName::CXXConstructorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2399 | return Context->DeclarationNames.getCXXConstructorName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2400 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2401 | |
| 2402 | case DeclarationName::CXXDestructorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2403 | return Context->DeclarationNames.getCXXDestructorName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2404 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2405 | |
| 2406 | case DeclarationName::CXXConversionFunctionName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2407 | return Context->DeclarationNames.getCXXConversionFunctionName( |
Douglas Gregor | 50d62d1 | 2009-08-05 05:36:45 +0000 | [diff] [blame] | 2408 | Context->getCanonicalType(GetType(Record[Idx++]))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2409 | |
| 2410 | case DeclarationName::CXXOperatorName: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 2411 | return Context->DeclarationNames.getCXXOperatorName( |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2412 | (OverloadedOperatorKind)Record[Idx++]); |
| 2413 | |
| 2414 | case DeclarationName::CXXUsingDirective: |
| 2415 | return DeclarationName::getUsingDirectiveName(); |
| 2416 | } |
| 2417 | |
| 2418 | // Required to silence GCC warning |
| 2419 | return DeclarationName(); |
| 2420 | } |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 2421 | |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 2422 | /// \brief Read an integral value |
| 2423 | llvm::APInt PCHReader::ReadAPInt(const RecordData &Record, unsigned &Idx) { |
| 2424 | unsigned BitWidth = Record[Idx++]; |
| 2425 | unsigned NumWords = llvm::APInt::getNumWords(BitWidth); |
| 2426 | llvm::APInt Result(BitWidth, NumWords, &Record[Idx]); |
| 2427 | Idx += NumWords; |
| 2428 | return Result; |
| 2429 | } |
| 2430 | |
| 2431 | /// \brief Read a signed integral value |
| 2432 | llvm::APSInt PCHReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) { |
| 2433 | bool isUnsigned = Record[Idx++]; |
| 2434 | return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned); |
| 2435 | } |
| 2436 | |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 2437 | /// \brief Read a floating-point value |
| 2438 | llvm::APFloat PCHReader::ReadAPFloat(const RecordData &Record, unsigned &Idx) { |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 2439 | return llvm::APFloat(ReadAPInt(Record, Idx)); |
| 2440 | } |
| 2441 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 2442 | // \brief Read a string |
| 2443 | std::string PCHReader::ReadString(const RecordData &Record, unsigned &Idx) { |
| 2444 | unsigned Len = Record[Idx++]; |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 2445 | std::string Result(Record.data() + Idx, Record.data() + Idx + Len); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 2446 | Idx += Len; |
| 2447 | return Result; |
| 2448 | } |
| 2449 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 2450 | DiagnosticBuilder PCHReader::Diag(unsigned DiagID) { |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 2451 | return Diag(SourceLocation(), DiagID); |
| 2452 | } |
| 2453 | |
| 2454 | DiagnosticBuilder PCHReader::Diag(SourceLocation Loc, unsigned DiagID) { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 2455 | return Diags.Report(FullSourceLoc(Loc, SourceMgr), DiagID); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 2456 | } |
Douglas Gregor | 025452f | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 2457 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2458 | /// \brief Retrieve the identifier table associated with the |
| 2459 | /// preprocessor. |
| 2460 | IdentifierTable &PCHReader::getIdentifierTable() { |
Argyrios Kyrtzidis | 11e5110 | 2009-06-19 00:03:23 +0000 | [diff] [blame] | 2461 | assert(PP && "Forgot to set Preprocessor ?"); |
| 2462 | return PP->getIdentifierTable(); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 2463 | } |
| 2464 | |
Douglas Gregor | 025452f | 2009-04-17 00:04:06 +0000 | [diff] [blame] | 2465 | /// \brief Record that the given ID maps to the given switch-case |
| 2466 | /// statement. |
| 2467 | void PCHReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) { |
| 2468 | assert(SwitchCaseStmts[ID] == 0 && "Already have a SwitchCase with this ID"); |
| 2469 | SwitchCaseStmts[ID] = SC; |
| 2470 | } |
| 2471 | |
| 2472 | /// \brief Retrieve the switch-case statement with the given ID. |
| 2473 | SwitchCase *PCHReader::getSwitchCaseWithID(unsigned ID) { |
| 2474 | assert(SwitchCaseStmts[ID] != 0 && "No SwitchCase with this ID"); |
| 2475 | return SwitchCaseStmts[ID]; |
| 2476 | } |
Douglas Gregor | 1de05fe | 2009-04-17 18:18:49 +0000 | [diff] [blame] | 2477 | |
| 2478 | /// \brief Record that the given label statement has been |
| 2479 | /// deserialized and has the given ID. |
| 2480 | void PCHReader::RecordLabelStmt(LabelStmt *S, unsigned ID) { |
| 2481 | assert(LabelStmts.find(ID) == LabelStmts.end() && |
| 2482 | "Deserialized label twice"); |
| 2483 | LabelStmts[ID] = S; |
| 2484 | |
| 2485 | // If we've already seen any goto statements that point to this |
| 2486 | // label, resolve them now. |
| 2487 | typedef std::multimap<unsigned, GotoStmt *>::iterator GotoIter; |
| 2488 | std::pair<GotoIter, GotoIter> Gotos = UnresolvedGotoStmts.equal_range(ID); |
| 2489 | for (GotoIter Goto = Gotos.first; Goto != Gotos.second; ++Goto) |
| 2490 | Goto->second->setLabel(S); |
| 2491 | UnresolvedGotoStmts.erase(Gotos.first, Gotos.second); |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 2492 | |
| 2493 | // If we've already seen any address-label statements that point to |
| 2494 | // this label, resolve them now. |
| 2495 | typedef std::multimap<unsigned, AddrLabelExpr *>::iterator AddrLabelIter; |
| 2496 | std::pair<AddrLabelIter, AddrLabelIter> AddrLabels |
| 2497 | = UnresolvedAddrLabelExprs.equal_range(ID); |
| 2498 | for (AddrLabelIter AddrLabel = AddrLabels.first; |
| 2499 | AddrLabel != AddrLabels.second; ++AddrLabel) |
| 2500 | AddrLabel->second->setLabel(S); |
| 2501 | UnresolvedAddrLabelExprs.erase(AddrLabels.first, AddrLabels.second); |
Douglas Gregor | 1de05fe | 2009-04-17 18:18:49 +0000 | [diff] [blame] | 2502 | } |
| 2503 | |
| 2504 | /// \brief Set the label of the given statement to the label |
| 2505 | /// identified by ID. |
| 2506 | /// |
| 2507 | /// Depending on the order in which the label and other statements |
| 2508 | /// referencing that label occur, this operation may complete |
| 2509 | /// immediately (updating the statement) or it may queue the |
| 2510 | /// statement to be back-patched later. |
| 2511 | void PCHReader::SetLabelOf(GotoStmt *S, unsigned ID) { |
| 2512 | std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID); |
| 2513 | if (Label != LabelStmts.end()) { |
| 2514 | // We've already seen this label, so set the label of the goto and |
| 2515 | // we're done. |
| 2516 | S->setLabel(Label->second); |
| 2517 | } else { |
| 2518 | // We haven't seen this label yet, so add this goto to the set of |
| 2519 | // unresolved goto statements. |
| 2520 | UnresolvedGotoStmts.insert(std::make_pair(ID, S)); |
| 2521 | } |
| 2522 | } |
Douglas Gregor | 7d5c2f2 | 2009-04-17 18:58:21 +0000 | [diff] [blame] | 2523 | |
| 2524 | /// \brief Set the label of the given expression to the label |
| 2525 | /// identified by ID. |
| 2526 | /// |
| 2527 | /// Depending on the order in which the label and other statements |
| 2528 | /// referencing that label occur, this operation may complete |
| 2529 | /// immediately (updating the statement) or it may queue the |
| 2530 | /// statement to be back-patched later. |
| 2531 | void PCHReader::SetLabelOf(AddrLabelExpr *S, unsigned ID) { |
| 2532 | std::map<unsigned, LabelStmt *>::iterator Label = LabelStmts.find(ID); |
| 2533 | if (Label != LabelStmts.end()) { |
| 2534 | // We've already seen this label, so set the label of the |
| 2535 | // label-address expression and we're done. |
| 2536 | S->setLabel(Label->second); |
| 2537 | } else { |
| 2538 | // We haven't seen this label yet, so add this label-address |
| 2539 | // expression to the set of unresolved label-address expressions. |
| 2540 | UnresolvedAddrLabelExprs.insert(std::make_pair(ID, S)); |
| 2541 | } |
| 2542 | } |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 2543 | |
| 2544 | |
| 2545 | PCHReader::LoadingTypeOrDecl::LoadingTypeOrDecl(PCHReader &Reader) |
| 2546 | : Reader(Reader), Parent(Reader.CurrentlyLoadingTypeOrDecl) { |
| 2547 | Reader.CurrentlyLoadingTypeOrDecl = this; |
| 2548 | } |
| 2549 | |
| 2550 | PCHReader::LoadingTypeOrDecl::~LoadingTypeOrDecl() { |
| 2551 | if (!Parent) { |
| 2552 | // If any identifiers with corresponding top-level declarations have |
| 2553 | // been loaded, load those declarations now. |
| 2554 | while (!Reader.PendingIdentifierInfos.empty()) { |
| 2555 | Reader.SetGloballyVisibleDecls(Reader.PendingIdentifierInfos.front().II, |
| 2556 | Reader.PendingIdentifierInfos.front().DeclIDs, |
| 2557 | true); |
| 2558 | Reader.PendingIdentifierInfos.pop_front(); |
| 2559 | } |
| 2560 | } |
| 2561 | |
| 2562 | Reader.CurrentlyLoadingTypeOrDecl = Parent; |
| 2563 | } |