PTHLexer.cpp revision d578569d50adc6e9b1a2f91931add6b471b2378e
1//===--- PTHLexer.cpp - Lex from a token stream ---------------------------===// 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 implements the PTHLexer interface. 11// 12//===----------------------------------------------------------------------===// 13 14#include "clang/Basic/TokenKinds.h" 15#include "clang/Basic/FileManager.h" 16#include "clang/Basic/IdentifierTable.h" 17#include "clang/Lex/PTHLexer.h" 18#include "clang/Lex/Preprocessor.h" 19#include "clang/Lex/PTHManager.h" 20#include "clang/Lex/Token.h" 21#include "clang/Lex/Preprocessor.h" 22#include "llvm/ADT/StringMap.h" 23#include "llvm/ADT/OwningPtr.h" 24#include "llvm/Support/Compiler.h" 25#include "llvm/Support/MathExtras.h" 26#include "llvm/Support/MemoryBuffer.h" 27#include "llvm/System/Host.h" 28#include <sys/stat.h> 29using namespace clang; 30 31#define DISK_TOKEN_SIZE (1+1+2+4+4) 32 33//===----------------------------------------------------------------------===// 34// Utility methods for reading from the mmap'ed PTH file. 35//===----------------------------------------------------------------------===// 36 37static inline uint16_t ReadUnalignedLE16(const unsigned char *&Data) { 38 uint16_t V = ((uint16_t)Data[0]) | 39 ((uint16_t)Data[1] << 8); 40 Data += 2; 41 return V; 42} 43 44static inline uint32_t ReadUnalignedLE32(const unsigned char *&Data) { 45 uint32_t V = ((uint32_t)Data[0]) | 46 ((uint32_t)Data[1] << 8) | 47 ((uint32_t)Data[2] << 16) | 48 ((uint32_t)Data[3] << 24); 49 Data += 4; 50 return V; 51} 52 53static inline uint64_t ReadUnalignedLE64(const unsigned char *&Data) { 54 uint64_t V = ((uint64_t)Data[0]) | 55 ((uint64_t)Data[1] << 8) | 56 ((uint64_t)Data[2] << 16) | 57 ((uint64_t)Data[3] << 24) | 58 ((uint64_t)Data[4] << 32) | 59 ((uint64_t)Data[5] << 40) | 60 ((uint64_t)Data[6] << 48) | 61 ((uint64_t)Data[7] << 56); 62 Data += 8; 63 return V; 64} 65 66static inline uint32_t ReadLE32(const unsigned char *&Data) { 67 // Hosts that directly support little-endian 32-bit loads can just 68 // use them. Big-endian hosts need a bswap. 69 uint32_t V = *((uint32_t*)Data); 70 if (llvm::sys::isBigEndianHost()) 71 V = llvm::ByteSwap_32(V); 72 Data += 4; 73 return V; 74} 75 76// Bernstein hash function: 77// This is basically copy-and-paste from StringMap. This likely won't 78// stay here, which is why I didn't both to expose this function from 79// String Map. 80static unsigned BernsteinHash(const char* x) { 81 unsigned int R = 0; 82 for ( ; *x != '\0' ; ++x) R = R * 33 + *x; 83 return R + (R >> 5); 84} 85 86static unsigned BernsteinHash(const char* x, unsigned n) { 87 unsigned int R = 0; 88 for (unsigned i = 0 ; i < n ; ++i, ++x) R = R * 33 + *x; 89 return R + (R >> 5); 90} 91 92//===----------------------------------------------------------------------===// 93// PTHLexer methods. 94//===----------------------------------------------------------------------===// 95 96PTHLexer::PTHLexer(Preprocessor &PP, FileID FID, const unsigned char *D, 97 const unsigned char *ppcond, PTHManager &PM) 98 : PreprocessorLexer(&PP, FID), TokBuf(D), CurPtr(D), LastHashTokPtr(0), 99 PPCond(ppcond), CurPPCondPtr(ppcond), PTHMgr(PM) { 100 101 FileStartLoc = PP.getSourceManager().getLocForStartOfFile(FID); 102} 103 104void PTHLexer::Lex(Token& Tok) { 105LexNextToken: 106 107 //===--------------------------------------==// 108 // Read the raw token data. 109 //===--------------------------------------==// 110 111 // Shadow CurPtr into an automatic variable. 112 const unsigned char *CurPtrShadow = CurPtr; 113 114 // Read in the data for the token. 115 unsigned Word0 = ReadLE32(CurPtrShadow); 116 uint32_t IdentifierID = ReadLE32(CurPtrShadow); 117 uint32_t FileOffset = ReadLE32(CurPtrShadow); 118 119 tok::TokenKind TKind = (tok::TokenKind) (Word0 & 0xFF); 120 Token::TokenFlags TFlags = (Token::TokenFlags) ((Word0 >> 8) & 0xFF); 121 uint32_t Len = Word0 >> 16; 122 123 CurPtr = CurPtrShadow; 124 125 //===--------------------------------------==// 126 // Construct the token itself. 127 //===--------------------------------------==// 128 129 Tok.startToken(); 130 Tok.setKind(TKind); 131 Tok.setFlag(TFlags); 132 assert(!LexingRawMode); 133 Tok.setLocation(FileStartLoc.getFileLocWithOffset(FileOffset)); 134 Tok.setLength(Len); 135 136 // Handle identifiers. 137 if (Tok.isLiteral()) { 138 Tok.setLiteralData((const char*) (PTHMgr.SpellingBase + IdentifierID)); 139 } 140 else if (IdentifierID) { 141 MIOpt.ReadToken(); 142 IdentifierInfo *II = PTHMgr.GetIdentifierInfo(IdentifierID-1); 143 144 Tok.setIdentifierInfo(II); 145 146 // Change the kind of this identifier to the appropriate token kind, e.g. 147 // turning "for" into a keyword. 148 Tok.setKind(II->getTokenID()); 149 150 if (II->isHandleIdentifierCase()) 151 PP->HandleIdentifier(Tok); 152 return; 153 } 154 155 //===--------------------------------------==// 156 // Process the token. 157 //===--------------------------------------==// 158#if 0 159 SourceManager& SM = PP->getSourceManager(); 160 llvm::cerr << SM.getFileEntryForID(FileID)->getName() 161 << ':' << SM.getLogicalLineNumber(Tok.getLocation()) 162 << ':' << SM.getLogicalColumnNumber(Tok.getLocation()) 163 << '\n'; 164#endif 165 166 if (TKind == tok::eof) { 167 // Save the end-of-file token. 168 EofToken = Tok; 169 170 Preprocessor *PPCache = PP; 171 172 assert(!ParsingPreprocessorDirective); 173 assert(!LexingRawMode); 174 175 // FIXME: Issue diagnostics similar to Lexer. 176 if (PP->HandleEndOfFile(Tok, false)) 177 return; 178 179 assert(PPCache && "Raw buffer::LexEndOfFile should return a token"); 180 return PPCache->Lex(Tok); 181 } 182 183 if (TKind == tok::hash && Tok.isAtStartOfLine()) { 184 LastHashTokPtr = CurPtr - DISK_TOKEN_SIZE; 185 assert(!LexingRawMode); 186 PP->HandleDirective(Tok); 187 188 if (PP->isCurrentLexer(this)) 189 goto LexNextToken; 190 191 return PP->Lex(Tok); 192 } 193 194 if (TKind == tok::eom) { 195 assert(ParsingPreprocessorDirective); 196 ParsingPreprocessorDirective = false; 197 return; 198 } 199 200 MIOpt.ReadToken(); 201} 202 203// FIXME: We can just grab the last token instead of storing a copy 204// into EofToken. 205void PTHLexer::getEOF(Token& Tok) { 206 assert(EofToken.is(tok::eof)); 207 Tok = EofToken; 208} 209 210void PTHLexer::DiscardToEndOfLine() { 211 assert(ParsingPreprocessorDirective && ParsingFilename == false && 212 "Must be in a preprocessing directive!"); 213 214 // We assume that if the preprocessor wishes to discard to the end of 215 // the line that it also means to end the current preprocessor directive. 216 ParsingPreprocessorDirective = false; 217 218 // Skip tokens by only peeking at their token kind and the flags. 219 // We don't need to actually reconstruct full tokens from the token buffer. 220 // This saves some copies and it also reduces IdentifierInfo* lookup. 221 const unsigned char* p = CurPtr; 222 while (1) { 223 // Read the token kind. Are we at the end of the file? 224 tok::TokenKind x = (tok::TokenKind) (uint8_t) *p; 225 if (x == tok::eof) break; 226 227 // Read the token flags. Are we at the start of the next line? 228 Token::TokenFlags y = (Token::TokenFlags) (uint8_t) p[1]; 229 if (y & Token::StartOfLine) break; 230 231 // Skip to the next token. 232 p += DISK_TOKEN_SIZE; 233 } 234 235 CurPtr = p; 236} 237 238/// SkipBlock - Used by Preprocessor to skip the current conditional block. 239bool PTHLexer::SkipBlock() { 240 assert(CurPPCondPtr && "No cached PP conditional information."); 241 assert(LastHashTokPtr && "No known '#' token."); 242 243 const unsigned char* HashEntryI = 0; 244 uint32_t Offset; 245 uint32_t TableIdx; 246 247 do { 248 // Read the token offset from the side-table. 249 Offset = ReadLE32(CurPPCondPtr); 250 251 // Read the target table index from the side-table. 252 TableIdx = ReadLE32(CurPPCondPtr); 253 254 // Compute the actual memory address of the '#' token data for this entry. 255 HashEntryI = TokBuf + Offset; 256 257 // Optmization: "Sibling jumping". #if...#else...#endif blocks can 258 // contain nested blocks. In the side-table we can jump over these 259 // nested blocks instead of doing a linear search if the next "sibling" 260 // entry is not at a location greater than LastHashTokPtr. 261 if (HashEntryI < LastHashTokPtr && TableIdx) { 262 // In the side-table we are still at an entry for a '#' token that 263 // is earlier than the last one we saw. Check if the location we would 264 // stride gets us closer. 265 const unsigned char* NextPPCondPtr = 266 PPCond + TableIdx*(sizeof(uint32_t)*2); 267 assert(NextPPCondPtr >= CurPPCondPtr); 268 // Read where we should jump to. 269 uint32_t TmpOffset = ReadLE32(NextPPCondPtr); 270 const unsigned char* HashEntryJ = TokBuf + TmpOffset; 271 272 if (HashEntryJ <= LastHashTokPtr) { 273 // Jump directly to the next entry in the side table. 274 HashEntryI = HashEntryJ; 275 Offset = TmpOffset; 276 TableIdx = ReadLE32(NextPPCondPtr); 277 CurPPCondPtr = NextPPCondPtr; 278 } 279 } 280 } 281 while (HashEntryI < LastHashTokPtr); 282 assert(HashEntryI == LastHashTokPtr && "No PP-cond entry found for '#'"); 283 assert(TableIdx && "No jumping from #endifs."); 284 285 // Update our side-table iterator. 286 const unsigned char* NextPPCondPtr = PPCond + TableIdx*(sizeof(uint32_t)*2); 287 assert(NextPPCondPtr >= CurPPCondPtr); 288 CurPPCondPtr = NextPPCondPtr; 289 290 // Read where we should jump to. 291 HashEntryI = TokBuf + ReadLE32(NextPPCondPtr); 292 uint32_t NextIdx = ReadLE32(NextPPCondPtr); 293 294 // By construction NextIdx will be zero if this is a #endif. This is useful 295 // to know to obviate lexing another token. 296 bool isEndif = NextIdx == 0; 297 298 // This case can occur when we see something like this: 299 // 300 // #if ... 301 // /* a comment or nothing */ 302 // #elif 303 // 304 // If we are skipping the first #if block it will be the case that CurPtr 305 // already points 'elif'. Just return. 306 307 if (CurPtr > HashEntryI) { 308 assert(CurPtr == HashEntryI + DISK_TOKEN_SIZE); 309 // Did we reach a #endif? If so, go ahead and consume that token as well. 310 if (isEndif) 311 CurPtr += DISK_TOKEN_SIZE*2; 312 else 313 LastHashTokPtr = HashEntryI; 314 315 return isEndif; 316 } 317 318 // Otherwise, we need to advance. Update CurPtr to point to the '#' token. 319 CurPtr = HashEntryI; 320 321 // Update the location of the last observed '#'. This is useful if we 322 // are skipping multiple blocks. 323 LastHashTokPtr = CurPtr; 324 325 // Skip the '#' token. 326 assert(((tok::TokenKind)*CurPtr) == tok::hash); 327 CurPtr += DISK_TOKEN_SIZE; 328 329 // Did we reach a #endif? If so, go ahead and consume that token as well. 330 if (isEndif) { CurPtr += DISK_TOKEN_SIZE*2; } 331 332 return isEndif; 333} 334 335SourceLocation PTHLexer::getSourceLocation() { 336 // getSourceLocation is not on the hot path. It is used to get the location 337 // of the next token when transitioning back to this lexer when done 338 // handling a #included file. Just read the necessary data from the token 339 // data buffer to construct the SourceLocation object. 340 // NOTE: This is a virtual function; hence it is defined out-of-line. 341 const unsigned char *OffsetPtr = CurPtr + (DISK_TOKEN_SIZE - 4); 342 uint32_t Offset = ReadLE32(OffsetPtr); 343 return FileStartLoc.getFileLocWithOffset(Offset); 344} 345 346//===----------------------------------------------------------------------===// 347// OnDiskChainedHashTable 348//===----------------------------------------------------------------------===// 349 350template<typename Info> 351class OnDiskChainedHashTable { 352 const unsigned NumBuckets; 353 const unsigned NumEntries; 354 const unsigned char* const Buckets; 355 const unsigned char* const Base; 356public: 357 typedef typename Info::internal_key_type internal_key_type; 358 typedef typename Info::external_key_type external_key_type; 359 typedef typename Info::data_type data_type; 360 361 OnDiskChainedHashTable(unsigned numBuckets, unsigned numEntries, 362 const unsigned char* buckets, 363 const unsigned char* base) 364 : NumBuckets(numBuckets), NumEntries(numEntries), 365 Buckets(buckets), Base(base) { 366 assert((reinterpret_cast<uintptr_t>(buckets) & 0x3) == 0 && 367 "'buckets' must have a 4-byte alignment"); 368 } 369 370 unsigned getNumBuckets() const { return NumBuckets; } 371 unsigned getNumEntries() const { return NumEntries; } 372 const unsigned char* getBase() const { return Base; } 373 const unsigned char* getBuckets() const { return Buckets; } 374 375 bool isEmpty() const { return NumEntries == 0; } 376 377 class iterator { 378 internal_key_type key; 379 const unsigned char* const data; 380 const unsigned len; 381 public: 382 iterator() : data(0), len(0) {} 383 iterator(const internal_key_type k, const unsigned char* d, unsigned l) 384 : key(k), data(d), len(l) {} 385 386 data_type operator*() const { return Info::ReadData(key, data, len); } 387 bool operator==(const iterator& X) const { return X.data == data; } 388 bool operator!=(const iterator& X) const { return X.data != data; } 389 }; 390 391 iterator find(const external_key_type& eKey) { 392 const internal_key_type& iKey = Info::GetInternalKey(eKey); 393 unsigned key_hash = Info::ComputeHash(iKey); 394 395 // Each bucket is just a 32-bit offset into the PTH file. 396 unsigned idx = key_hash & (NumBuckets - 1); 397 const unsigned char* Bucket = Buckets + sizeof(uint32_t)*idx; 398 399 unsigned offset = ReadLE32(Bucket); 400 if (offset == 0) return iterator(); // Empty bucket. 401 const unsigned char* Items = Base + offset; 402 403 // 'Items' starts with a 16-bit unsigned integer representing the 404 // number of items in this bucket. 405 unsigned len = ReadUnalignedLE16(Items); 406 407 for (unsigned i = 0; i < len; ++i) { 408 // Read the hash. 409 uint32_t item_hash = ReadUnalignedLE32(Items); 410 411 // Determine the length of the key and the data. 412 const std::pair<unsigned, unsigned>& L = Info::ReadKeyDataLength(Items); 413 unsigned item_len = L.first + L.second; 414 415 // Compare the hashes. If they are not the same, skip the entry entirely. 416 if (item_hash != key_hash) { 417 Items += item_len; 418 continue; 419 } 420 421 // Read the key. 422 const internal_key_type& X = 423 Info::ReadKey((const unsigned char* const) Items, L.first); 424 425 // If the key doesn't match just skip reading the value. 426 if (!Info::EqualKey(X, iKey)) { 427 Items += item_len; 428 continue; 429 } 430 431 // The key matches! 432 return iterator(X, Items + L.first, L.second); 433 } 434 435 return iterator(); 436 } 437 438 iterator end() const { return iterator(); } 439 440 441 static OnDiskChainedHashTable* Create(const unsigned char* buckets, 442 const unsigned char* const base) { 443 444 assert(buckets > base); 445 assert((reinterpret_cast<uintptr_t>(buckets) & 0x3) == 0 && 446 "buckets should be 4-byte aligned."); 447 448 unsigned numBuckets = ReadLE32(buckets); 449 unsigned numEntries = ReadLE32(buckets); 450 return new OnDiskChainedHashTable<Info>(numBuckets, numEntries, buckets, 451 base); 452 } 453}; 454 455//===----------------------------------------------------------------------===// 456// PTH file lookup: map from strings to file data. 457//===----------------------------------------------------------------------===// 458 459/// PTHFileLookup - This internal data structure is used by the PTHManager 460/// to map from FileEntry objects managed by FileManager to offsets within 461/// the PTH file. 462namespace { 463class VISIBILITY_HIDDEN PTHFileData { 464 const uint32_t TokenOff; 465 const uint32_t PPCondOff; 466public: 467 PTHFileData(uint32_t tokenOff, uint32_t ppCondOff) 468 : TokenOff(tokenOff), PPCondOff(ppCondOff) {} 469 470 uint32_t getTokenOffset() const { return TokenOff; } 471 uint32_t getPPCondOffset() const { return PPCondOff; } 472}; 473 474 475class VISIBILITY_HIDDEN PTHFileLookupCommonTrait { 476public: 477 typedef std::pair<unsigned char, const char*> internal_key_type; 478 479 static unsigned ComputeHash(internal_key_type x) { 480 return BernsteinHash(x.second); 481 } 482 483 static std::pair<unsigned, unsigned> 484 ReadKeyDataLength(const unsigned char*& d) { 485 unsigned keyLen = (unsigned) ReadUnalignedLE16(d); 486 unsigned dataLen = (unsigned) *(d++); 487 return std::make_pair(keyLen, dataLen); 488 } 489 490 static internal_key_type ReadKey(const unsigned char* d, unsigned) { 491 unsigned char k = *(d++); // Read the entry kind. 492 return std::make_pair(k, (const char*) d); 493 } 494}; 495 496class VISIBILITY_HIDDEN PTHFileLookupTrait : public PTHFileLookupCommonTrait { 497public: 498 typedef const FileEntry* external_key_type; 499 typedef PTHFileData data_type; 500 501 static internal_key_type GetInternalKey(const FileEntry* FE) { 502 return std::make_pair((unsigned char) 0x1, FE->getName()); 503 } 504 505 static bool EqualKey(internal_key_type a, internal_key_type b) { 506 return a.first == b.first && strcmp(a.second, b.second) == 0; 507 } 508 509 static PTHFileData ReadData(const internal_key_type& k, 510 const unsigned char* d, unsigned) { 511 assert(k.first == 0x1 && "Only file lookups can match!"); 512 uint32_t x = ::ReadUnalignedLE32(d); 513 uint32_t y = ::ReadUnalignedLE32(d); 514 return PTHFileData(x, y); 515 } 516}; 517 518class VISIBILITY_HIDDEN PTHStringLookupTrait { 519public: 520 typedef uint32_t 521 data_type; 522 523 typedef const std::pair<const char*, unsigned> 524 external_key_type; 525 526 typedef external_key_type internal_key_type; 527 528 static bool EqualKey(const internal_key_type& a, 529 const internal_key_type& b) { 530 return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0 531 : false; 532 } 533 534 static unsigned ComputeHash(const internal_key_type& a) { 535 return BernsteinHash(a.first, a.second); 536 } 537 538 // This hopefully will just get inlined and removed by the optimizer. 539 static const internal_key_type& 540 GetInternalKey(const external_key_type& x) { return x; } 541 542 static std::pair<unsigned, unsigned> 543 ReadKeyDataLength(const unsigned char*& d) { 544 return std::make_pair((unsigned) ReadUnalignedLE16(d), sizeof(uint32_t)); 545 } 546 547 static std::pair<const char*, unsigned> 548 ReadKey(const unsigned char* d, unsigned n) { 549 assert(n >= 2 && d[n-1] == '\0'); 550 return std::make_pair((const char*) d, n-1); 551 } 552 553 static uint32_t ReadData(const internal_key_type& k, const unsigned char* d, 554 unsigned) { 555 return ::ReadUnalignedLE32(d); 556 } 557}; 558 559} // end anonymous namespace 560 561typedef OnDiskChainedHashTable<PTHFileLookupTrait> PTHFileLookup; 562typedef OnDiskChainedHashTable<PTHStringLookupTrait> PTHStringIdLookup; 563 564//===----------------------------------------------------------------------===// 565// PTHManager methods. 566//===----------------------------------------------------------------------===// 567 568PTHManager::PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup, 569 const unsigned char* idDataTable, 570 IdentifierInfo** perIDCache, 571 void* stringIdLookup, unsigned numIds, 572 const unsigned char* spellingBase) 573: Buf(buf), PerIDCache(perIDCache), FileLookup(fileLookup), 574 IdDataTable(idDataTable), StringIdLookup(stringIdLookup), 575 NumIds(numIds), PP(0), SpellingBase(spellingBase) {} 576 577PTHManager::~PTHManager() { 578 delete Buf; 579 delete (PTHFileLookup*) FileLookup; 580 delete (PTHStringIdLookup*) StringIdLookup; 581 free(PerIDCache); 582} 583 584static void InvalidPTH(Diagnostic *Diags, const char* Msg = 0) { 585 if (!Diags) return; 586 if (!Msg) Msg = "Invalid or corrupted PTH file"; 587 unsigned DiagID = Diags->getCustomDiagID(Diagnostic::Warning, Msg); 588 Diags->Report(FullSourceLoc(), DiagID); 589} 590 591PTHManager* PTHManager::Create(const std::string& file, Diagnostic* Diags) { 592 // Memory map the PTH file. 593 llvm::OwningPtr<llvm::MemoryBuffer> 594 File(llvm::MemoryBuffer::getFile(file.c_str())); 595 596 if (!File) { 597 if (Diags) { 598 unsigned DiagID = Diags->getCustomDiagID(Diagnostic::Warning, 599 "PTH file %0 could not be read"); 600 Diags->Report(FullSourceLoc(), DiagID) << file; 601 } 602 603 return 0; 604 } 605 606 // Get the buffer ranges and check if there are at least three 32-bit 607 // words at the end of the file. 608 const unsigned char* BufBeg = (unsigned char*)File->getBufferStart(); 609 const unsigned char* BufEnd = (unsigned char*)File->getBufferEnd(); 610 611 // Check the prologue of the file. 612 if ((BufEnd - BufBeg) < (signed) (sizeof("cfe-pth") + 3 + 4) || 613 memcmp(BufBeg, "cfe-pth", sizeof("cfe-pth") - 1) != 0) { 614 InvalidPTH(Diags); 615 return 0; 616 } 617 618 // Read the PTH version. 619 const unsigned char *p = BufBeg + (sizeof("cfe-pth") - 1); 620 unsigned Version = ReadLE32(p); 621 622 if (Version != PTHManager::Version) { 623 InvalidPTH(Diags, 624 Version < PTHManager::Version 625 ? "PTH file uses an older PTH format that is no longer supported" 626 : "PTH file uses a newer PTH format that cannot be read"); 627 return 0; 628 } 629 630 // Compute the address of the index table at the end of the PTH file. 631 const unsigned char *PrologueOffset = p; 632 633 if (PrologueOffset >= BufEnd) { 634 InvalidPTH(Diags); 635 return 0; 636 } 637 638 // Construct the file lookup table. This will be used for mapping from 639 // FileEntry*'s to cached tokens. 640 const unsigned char* FileTableOffset = PrologueOffset + sizeof(uint32_t)*2; 641 const unsigned char* FileTable = BufBeg + ReadLE32(FileTableOffset); 642 643 if (!(FileTable > BufBeg && FileTable < BufEnd)) { 644 InvalidPTH(Diags); 645 return 0; // FIXME: Proper error diagnostic? 646 } 647 648 llvm::OwningPtr<PTHFileLookup> FL(PTHFileLookup::Create(FileTable, BufBeg)); 649 if (FL->isEmpty()) { 650 InvalidPTH(Diags, "PTH file contains no cached source data"); 651 return 0; 652 } 653 654 // Get the location of the table mapping from persistent ids to the 655 // data needed to reconstruct identifiers. 656 const unsigned char* IDTableOffset = PrologueOffset + sizeof(uint32_t)*0; 657 const unsigned char* IData = BufBeg + ReadLE32(IDTableOffset); 658 659 if (!(IData >= BufBeg && IData < BufEnd)) { 660 InvalidPTH(Diags); 661 return 0; 662 } 663 664 // Get the location of the hashtable mapping between strings and 665 // persistent IDs. 666 const unsigned char* StringIdTableOffset = PrologueOffset + sizeof(uint32_t)*1; 667 const unsigned char* StringIdTable = BufBeg + ReadLE32(StringIdTableOffset); 668 if (!(StringIdTable >= BufBeg && StringIdTable < BufEnd)) { 669 InvalidPTH(Diags); 670 return 0; 671 } 672 673 llvm::OwningPtr<PTHStringIdLookup> SL(PTHStringIdLookup::Create(StringIdTable, 674 BufBeg)); 675 if (SL->isEmpty()) { 676 InvalidPTH(Diags, "PTH file contains no identifiers."); 677 return 0; 678 } 679 680 // Get the location of the spelling cache. 681 const unsigned char* spellingBaseOffset = PrologueOffset + sizeof(uint32_t)*3; 682 const unsigned char* spellingBase = BufBeg + ReadLE32(spellingBaseOffset); 683 if (!(spellingBase >= BufBeg && spellingBase < BufEnd)) { 684 InvalidPTH(Diags); 685 return 0; 686 } 687 688 // Get the number of IdentifierInfos and pre-allocate the identifier cache. 689 uint32_t NumIds = ReadLE32(IData); 690 691 // Pre-allocate the peristent ID -> IdentifierInfo* cache. We use calloc() 692 // so that we in the best case only zero out memory once when the OS returns 693 // us new pages. 694 IdentifierInfo** PerIDCache = 0; 695 696 if (NumIds) { 697 PerIDCache = (IdentifierInfo**)calloc(NumIds, sizeof(*PerIDCache)); 698 if (!PerIDCache) { 699 InvalidPTH(Diags, "Could not allocate memory for processing PTH file"); 700 return 0; 701 } 702 } 703 704 // Create the new PTHManager. 705 return new PTHManager(File.take(), FL.take(), IData, PerIDCache, 706 SL.take(), NumIds, spellingBase); 707} 708IdentifierInfo* PTHManager::LazilyCreateIdentifierInfo(unsigned PersistentID) { 709 // Look in the PTH file for the string data for the IdentifierInfo object. 710 const unsigned char* TableEntry = IdDataTable + sizeof(uint32_t)*PersistentID; 711 const unsigned char* IDData = 712 (const unsigned char*)Buf->getBufferStart() + ReadLE32(TableEntry); 713 assert(IDData < (const unsigned char*)Buf->getBufferEnd()); 714 715 // Allocate the object. 716 std::pair<IdentifierInfo,const unsigned char*> *Mem = 717 Alloc.Allocate<std::pair<IdentifierInfo,const unsigned char*> >(); 718 719 Mem->second = IDData; 720 assert(IDData[0] != '\0'); 721 IdentifierInfo *II = new ((void*) Mem) IdentifierInfo(); 722 723 // Store the new IdentifierInfo in the cache. 724 PerIDCache[PersistentID] = II; 725 assert(II->getName() && II->getName()[0] != '\0'); 726 return II; 727} 728 729IdentifierInfo* PTHManager::get(const char *NameStart, const char *NameEnd) { 730 PTHStringIdLookup& SL = *((PTHStringIdLookup*)StringIdLookup); 731 // Double check our assumption that the last character isn't '\0'. 732 assert(NameEnd==NameStart || NameStart[NameEnd-NameStart-1] != '\0'); 733 PTHStringIdLookup::iterator I = SL.find(std::make_pair(NameStart, 734 NameEnd - NameStart)); 735 if (I == SL.end()) // No identifier found? 736 return 0; 737 738 // Match found. Return the identifier! 739 assert(*I > 0); 740 return GetIdentifierInfo(*I-1); 741} 742 743PTHLexer *PTHManager::CreateLexer(FileID FID) { 744 const FileEntry *FE = PP->getSourceManager().getFileEntryForID(FID); 745 if (!FE) 746 return 0; 747 748 // Lookup the FileEntry object in our file lookup data structure. It will 749 // return a variant that indicates whether or not there is an offset within 750 // the PTH file that contains cached tokens. 751 PTHFileLookup& PFL = *((PTHFileLookup*)FileLookup); 752 PTHFileLookup::iterator I = PFL.find(FE); 753 754 if (I == PFL.end()) // No tokens available? 755 return 0; 756 757 const PTHFileData& FileData = *I; 758 759 const unsigned char *BufStart = (const unsigned char *)Buf->getBufferStart(); 760 // Compute the offset of the token data within the buffer. 761 const unsigned char* data = BufStart + FileData.getTokenOffset(); 762 763 // Get the location of pp-conditional table. 764 const unsigned char* ppcond = BufStart + FileData.getPPCondOffset(); 765 uint32_t Len = ReadLE32(ppcond); 766 if (Len == 0) ppcond = 0; 767 768 assert(PP && "No preprocessor set yet!"); 769 return new PTHLexer(*PP, FID, data, ppcond, *this); 770} 771 772//===----------------------------------------------------------------------===// 773// 'stat' caching. 774//===----------------------------------------------------------------------===// 775 776namespace { 777class VISIBILITY_HIDDEN PTHStatData { 778public: 779 const bool hasStat; 780 const ino_t ino; 781 const dev_t dev; 782 const mode_t mode; 783 const time_t mtime; 784 const off_t size; 785 786 PTHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s) 787 : hasStat(true), ino(i), dev(d), mode(mo), mtime(m), size(s) {} 788 789 PTHStatData() 790 : hasStat(false), ino(0), dev(0), mode(0), mtime(0), size(0) {} 791}; 792 793class VISIBILITY_HIDDEN PTHStatLookupTrait : public PTHFileLookupCommonTrait { 794public: 795 typedef const char* external_key_type; // const char* 796 typedef PTHStatData data_type; 797 798 static internal_key_type GetInternalKey(const char *path) { 799 // The key 'kind' doesn't matter here because it is ignored in EqualKey. 800 return std::make_pair((unsigned char) 0x0, path); 801 } 802 803 static bool EqualKey(internal_key_type a, internal_key_type b) { 804 // When doing 'stat' lookups we don't care about the kind of 'a' and 'b', 805 // just the paths. 806 return strcmp(a.second, b.second) == 0; 807 } 808 809 static data_type ReadData(const internal_key_type& k, const unsigned char* d, 810 unsigned) { 811 812 if (k.first /* File or Directory */) { 813 if (k.first == 0x1 /* File */) d += 4 * 2; // Skip the first 2 words. 814 ino_t ino = (ino_t) ReadUnalignedLE32(d); 815 dev_t dev = (dev_t) ReadUnalignedLE32(d); 816 mode_t mode = (mode_t) ReadUnalignedLE16(d); 817 time_t mtime = (time_t) ReadUnalignedLE64(d); 818 return data_type(ino, dev, mode, mtime, (off_t) ReadUnalignedLE64(d)); 819 } 820 821 // Negative stat. Don't read anything. 822 return data_type(); 823 } 824}; 825 826class VISIBILITY_HIDDEN PTHStatCache : public StatSysCallCache { 827 typedef OnDiskChainedHashTable<PTHStatLookupTrait> CacheTy; 828 CacheTy Cache; 829 830public: 831 PTHStatCache(PTHFileLookup &FL) : 832 Cache(FL.getNumBuckets(), FL.getNumEntries(), FL.getBuckets(), 833 FL.getBase()) {} 834 835 ~PTHStatCache() {} 836 837 int stat(const char *path, struct stat *buf) { 838 // Do the lookup for the file's data in the PTH file. 839 CacheTy::iterator I = Cache.find(path); 840 841 // If we don't get a hit in the PTH file just forward to 'stat'. 842 if (I == Cache.end()) return ::stat(path, buf); 843 844 const PTHStatData& Data = *I; 845 846 if (!Data.hasStat) 847 return 1; 848 849 buf->st_ino = Data.ino; 850 buf->st_dev = Data.dev; 851 buf->st_mtime = Data.mtime; 852 buf->st_mode = Data.mode; 853 buf->st_size = Data.size; 854 return 0; 855 } 856}; 857} // end anonymous namespace 858 859StatSysCallCache *PTHManager::createStatCache() { 860 return new PTHStatCache(*((PTHFileLookup*) FileLookup)); 861} 862