blob: 4648ac8ee4926011306a7ebf6eb33e5247ed19df [file] [log] [blame]
Ted Kremenek274b2082008-11-12 21:37:15 +00001//===--- 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
Ted Kremenek0c6a77b2008-12-03 00:38:03 +000014#include "clang/Basic/TokenKinds.h"
15#include "clang/Basic/FileManager.h"
16#include "clang/Basic/IdentifierTable.h"
Ted Kremenek274b2082008-11-12 21:37:15 +000017#include "clang/Lex/PTHLexer.h"
18#include "clang/Lex/Preprocessor.h"
Ted Kremenek0c6a77b2008-12-03 00:38:03 +000019#include "clang/Lex/PTHManager.h"
20#include "clang/Lex/Token.h"
21#include "clang/Lex/Preprocessor.h"
Ted Kremenek0c6a77b2008-12-03 00:38:03 +000022#include "llvm/ADT/StringMap.h"
23#include "llvm/ADT/OwningPtr.h"
Chris Lattner6f78c3b2009-01-22 23:50:07 +000024#include "llvm/Support/Compiler.h"
25#include "llvm/Support/MathExtras.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/System/Host.h"
Ted Kremenek337edcd2009-02-12 03:26:59 +000028#include <sys/stat.h>
Ted Kremenek274b2082008-11-12 21:37:15 +000029using namespace clang;
30
Ted Kremenek7b78b7c2009-01-19 23:13:15 +000031#define DISK_TOKEN_SIZE (1+1+2+4+4)
Ted Kremenek268ee702008-12-12 18:34:08 +000032
Ted Kremenek0c6a77b2008-12-03 00:38:03 +000033//===----------------------------------------------------------------------===//
34// Utility methods for reading from the mmap'ed PTH file.
35//===----------------------------------------------------------------------===//
36
Chris Lattner5ff43172009-01-22 19:48:26 +000037static inline uint16_t ReadUnalignedLE16(const unsigned char *&Data) {
Ted Kremenekd8c02922009-02-10 22:16:22 +000038 uint16_t V = ((uint16_t)Data[0]) |
Chris Lattnerda9d61c2009-01-18 01:57:14 +000039 ((uint16_t)Data[1] << 8);
40 Data += 2;
41 return V;
42}
43
Ted Kremenekd8c02922009-02-10 22:16:22 +000044static 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
Ted Kremenek337edcd2009-02-12 03:26:59 +000053static 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) |
Ted Kremenekd69ab872009-02-12 03:39:55 +000058 ((uint64_t)Data[4] << 32) |
59 ((uint64_t)Data[5] << 40) |
60 ((uint64_t)Data[6] << 48) |
61 ((uint64_t)Data[7] << 56);
Ted Kremenek337edcd2009-02-12 03:26:59 +000062 Data += 8;
63 return V;
64}
65
Chris Lattner5ff43172009-01-22 19:48:26 +000066static inline uint32_t ReadLE32(const unsigned char *&Data) {
Chris Lattnerfbc33382009-01-23 00:13:28 +000067 // Hosts that directly support little-endian 32-bit loads can just
68 // use them. Big-endian hosts need a bswap.
Chris Lattnerf15674c2009-01-18 02:19:16 +000069 uint32_t V = *((uint32_t*)Data);
Chris Lattner6f78c3b2009-01-22 23:50:07 +000070 if (llvm::sys::isBigEndianHost())
71 V = llvm::ByteSwap_32(V);
Chris Lattnerda9d61c2009-01-18 01:57:14 +000072 Data += 4;
73 return V;
74}
75
Ted Kremenek7e3a0042009-02-11 21:29:16 +000076// 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}
Chris Lattnerda9d61c2009-01-18 01:57:14 +000091
Ted Kremeneke5680f32008-12-23 01:30:52 +000092//===----------------------------------------------------------------------===//
93// PTHLexer methods.
94//===----------------------------------------------------------------------===//
95
Chris Lattnerda9d61c2009-01-18 01:57:14 +000096PTHLexer::PTHLexer(Preprocessor &PP, FileID FID, const unsigned char *D,
Ted Kremenek277faca2009-01-27 00:01:05 +000097 const unsigned char *ppcond, PTHManager &PM)
Chris Lattner2b2453a2009-01-17 06:22:33 +000098 : PreprocessorLexer(&PP, FID), TokBuf(D), CurPtr(D), LastHashTokPtr(0),
Ted Kremenek277faca2009-01-27 00:01:05 +000099 PPCond(ppcond), CurPPCondPtr(ppcond), PTHMgr(PM) {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000100
101 FileStartLoc = PP.getSourceManager().getLocForStartOfFile(FID);
Ted Kremenek5f074262009-01-09 22:05:30 +0000102}
Ted Kremeneke5680f32008-12-23 01:30:52 +0000103
104void PTHLexer::Lex(Token& Tok) {
105LexNextToken:
Ted Kremeneke5680f32008-12-23 01:30:52 +0000106
Ted Kremenek866bdf72008-12-23 02:30:15 +0000107 //===--------------------------------------==//
108 // Read the raw token data.
109 //===--------------------------------------==//
110
111 // Shadow CurPtr into an automatic variable.
Chris Lattneraff6ef82009-01-21 07:21:56 +0000112 const unsigned char *CurPtrShadow = CurPtr;
Ted Kremenek866bdf72008-12-23 02:30:15 +0000113
Chris Lattner1b5285e2009-01-18 02:10:31 +0000114 // Read in the data for the token.
Chris Lattner5ff43172009-01-22 19:48:26 +0000115 unsigned Word0 = ReadLE32(CurPtrShadow);
116 uint32_t IdentifierID = ReadLE32(CurPtrShadow);
117 uint32_t FileOffset = ReadLE32(CurPtrShadow);
Ted Kremenek7b78b7c2009-01-19 23:13:15 +0000118
119 tok::TokenKind TKind = (tok::TokenKind) (Word0 & 0xFF);
120 Token::TokenFlags TFlags = (Token::TokenFlags) ((Word0 >> 8) & 0xFF);
Chris Lattneraff6ef82009-01-21 07:21:56 +0000121 uint32_t Len = Word0 >> 16;
Ted Kremenek7b78b7c2009-01-19 23:13:15 +0000122
Chris Lattneraff6ef82009-01-21 07:21:56 +0000123 CurPtr = CurPtrShadow;
Ted Kremenek866bdf72008-12-23 02:30:15 +0000124
125 //===--------------------------------------==//
126 // Construct the token itself.
127 //===--------------------------------------==//
128
129 Tok.startToken();
Chris Lattner898a0bb2009-01-18 02:34:01 +0000130 Tok.setKind(TKind);
131 Tok.setFlag(TFlags);
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000132 assert(!LexingRawMode);
Chris Lattner2b2453a2009-01-17 06:22:33 +0000133 Tok.setLocation(FileStartLoc.getFileLocWithOffset(FileOffset));
Ted Kremenek866bdf72008-12-23 02:30:15 +0000134 Tok.setLength(Len);
135
Chris Lattnerd0a69692009-01-21 07:50:06 +0000136 // Handle identifiers.
Ted Kremenek277faca2009-01-27 00:01:05 +0000137 if (Tok.isLiteral()) {
138 Tok.setLiteralData((const char*) (PTHMgr.SpellingBase + IdentifierID));
139 }
140 else if (IdentifierID) {
Chris Lattnerd0a69692009-01-21 07:50:06 +0000141 MIOpt.ReadToken();
142 IdentifierInfo *II = PTHMgr.GetIdentifierInfo(IdentifierID-1);
Chris Lattner863c4862009-01-23 18:35:48 +0000143
Chris Lattnerd0a69692009-01-21 07:50:06 +0000144 Tok.setIdentifierInfo(II);
Chris Lattner863c4862009-01-23 18:35:48 +0000145
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
Chris Lattnerd0a69692009-01-21 07:50:06 +0000150 if (II->isHandleIdentifierCase())
151 PP->HandleIdentifier(Tok);
152 return;
153 }
154
Ted Kremenek866bdf72008-12-23 02:30:15 +0000155 //===--------------------------------------==//
156 // Process the token.
157 //===--------------------------------------==//
Ted Kremenek5f074262009-01-09 22:05:30 +0000158#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
Ted Kremeneke5680f32008-12-23 01:30:52 +0000165
Chris Lattner898a0bb2009-01-18 02:34:01 +0000166 if (TKind == tok::eof) {
Ted Kremeneke5680f32008-12-23 01:30:52 +0000167 // Save the end-of-file token.
168 EofToken = Tok;
169
170 Preprocessor *PPCache = PP;
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000171
172 assert(!ParsingPreprocessorDirective);
173 assert(!LexingRawMode);
174
175 // FIXME: Issue diagnostics similar to Lexer.
176 if (PP->HandleEndOfFile(Tok, false))
Ted Kremeneke5680f32008-12-23 01:30:52 +0000177 return;
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000178
Ted Kremeneke5680f32008-12-23 01:30:52 +0000179 assert(PPCache && "Raw buffer::LexEndOfFile should return a token");
180 return PPCache->Lex(Tok);
181 }
Ted Kremeneke5680f32008-12-23 01:30:52 +0000182
Chris Lattner898a0bb2009-01-18 02:34:01 +0000183 if (TKind == tok::hash && Tok.isAtStartOfLine()) {
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000184 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
Chris Lattner898a0bb2009-01-18 02:34:01 +0000194 if (TKind == tok::eom) {
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000195 assert(ParsingPreprocessorDirective);
Ted Kremeneke5680f32008-12-23 01:30:52 +0000196 ParsingPreprocessorDirective = false;
197 return;
198 }
Ted Kremeneke5680f32008-12-23 01:30:52 +0000199
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000200 MIOpt.ReadToken();
Ted Kremeneke5680f32008-12-23 01:30:52 +0000201}
202
203// FIXME: We can just grab the last token instead of storing a copy
204// into EofToken.
Ted Kremenek59d08cb2008-12-23 19:24:24 +0000205void PTHLexer::getEOF(Token& Tok) {
Ted Kremenekdefb7092009-01-09 00:36:11 +0000206 assert(EofToken.is(tok::eof));
Ted Kremeneke5680f32008-12-23 01:30:52 +0000207 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.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000221 const unsigned char* p = CurPtr;
Ted Kremeneke5680f32008-12-23 01:30:52 +0000222 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
Ted Kremenek268ee702008-12-12 18:34:08 +0000238/// 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
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000243 const unsigned char* HashEntryI = 0;
Ted Kremenek268ee702008-12-12 18:34:08 +0000244 uint32_t Offset;
245 uint32_t TableIdx;
246
247 do {
Ted Kremenek41a26602008-12-12 22:05:38 +0000248 // Read the token offset from the side-table.
Chris Lattner5ff43172009-01-22 19:48:26 +0000249 Offset = ReadLE32(CurPPCondPtr);
Ted Kremenek41a26602008-12-12 22:05:38 +0000250
251 // Read the target table index from the side-table.
Chris Lattner5ff43172009-01-22 19:48:26 +0000252 TableIdx = ReadLE32(CurPPCondPtr);
Ted Kremenek41a26602008-12-12 22:05:38 +0000253
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.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000265 const unsigned char* NextPPCondPtr =
266 PPCond + TableIdx*(sizeof(uint32_t)*2);
Ted Kremenek41a26602008-12-12 22:05:38 +0000267 assert(NextPPCondPtr >= CurPPCondPtr);
268 // Read where we should jump to.
Chris Lattner5ff43172009-01-22 19:48:26 +0000269 uint32_t TmpOffset = ReadLE32(NextPPCondPtr);
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000270 const unsigned char* HashEntryJ = TokBuf + TmpOffset;
Ted Kremenek41a26602008-12-12 22:05:38 +0000271
272 if (HashEntryJ <= LastHashTokPtr) {
273 // Jump directly to the next entry in the side table.
274 HashEntryI = HashEntryJ;
275 Offset = TmpOffset;
Chris Lattner5ff43172009-01-22 19:48:26 +0000276 TableIdx = ReadLE32(NextPPCondPtr);
Ted Kremenek41a26602008-12-12 22:05:38 +0000277 CurPPCondPtr = NextPPCondPtr;
278 }
279 }
Ted Kremenek268ee702008-12-12 18:34:08 +0000280 }
Ted Kremenek41a26602008-12-12 22:05:38 +0000281 while (HashEntryI < LastHashTokPtr);
282 assert(HashEntryI == LastHashTokPtr && "No PP-cond entry found for '#'");
Ted Kremenek268ee702008-12-12 18:34:08 +0000283 assert(TableIdx && "No jumping from #endifs.");
284
285 // Update our side-table iterator.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000286 const unsigned char* NextPPCondPtr = PPCond + TableIdx*(sizeof(uint32_t)*2);
Ted Kremenek268ee702008-12-12 18:34:08 +0000287 assert(NextPPCondPtr >= CurPPCondPtr);
288 CurPPCondPtr = NextPPCondPtr;
289
290 // Read where we should jump to.
Chris Lattner5ff43172009-01-22 19:48:26 +0000291 HashEntryI = TokBuf + ReadLE32(NextPPCondPtr);
292 uint32_t NextIdx = ReadLE32(NextPPCondPtr);
Ted Kremenek268ee702008-12-12 18:34:08 +0000293
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;
Ted Kremenek268ee702008-12-12 18:34:08 +0000297
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
Ted Kremenek41a26602008-12-12 22:05:38 +0000307 if (CurPtr > HashEntryI) {
308 assert(CurPtr == HashEntryI + DISK_TOKEN_SIZE);
Ted Kremenek268ee702008-12-12 18:34:08 +0000309 // Did we reach a #endif? If so, go ahead and consume that token as well.
310 if (isEndif)
Ted Kremeneke5680f32008-12-23 01:30:52 +0000311 CurPtr += DISK_TOKEN_SIZE*2;
Ted Kremenek268ee702008-12-12 18:34:08 +0000312 else
Ted Kremenek41a26602008-12-12 22:05:38 +0000313 LastHashTokPtr = HashEntryI;
Ted Kremenek268ee702008-12-12 18:34:08 +0000314
315 return isEndif;
316 }
317
318 // Otherwise, we need to advance. Update CurPtr to point to the '#' token.
Ted Kremenek41a26602008-12-12 22:05:38 +0000319 CurPtr = HashEntryI;
Ted Kremenek268ee702008-12-12 18:34:08 +0000320
321 // Update the location of the last observed '#'. This is useful if we
322 // are skipping multiple blocks.
323 LastHashTokPtr = CurPtr;
Ted Kremenek268ee702008-12-12 18:34:08 +0000324
Ted Kremeneke5680f32008-12-23 01:30:52 +0000325 // Skip the '#' token.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000326 assert(((tok::TokenKind)*CurPtr) == tok::hash);
Ted Kremeneke5680f32008-12-23 01:30:52 +0000327 CurPtr += DISK_TOKEN_SIZE;
328
Ted Kremenek268ee702008-12-12 18:34:08 +0000329 // Did we reach a #endif? If so, go ahead and consume that token as well.
Ted Kremeneke5680f32008-12-23 01:30:52 +0000330 if (isEndif) { CurPtr += DISK_TOKEN_SIZE*2; }
Ted Kremenek268ee702008-12-12 18:34:08 +0000331
332 return isEndif;
333}
334
Ted Kremenek30a12ec2008-12-17 23:36:32 +0000335SourceLocation PTHLexer::getSourceLocation() {
Chris Lattner1b5285e2009-01-18 02:10:31 +0000336 // 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
Ted Kremenek30a12ec2008-12-17 23:36:32 +0000338 // 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.
Ted Kremenekb248d532009-01-21 22:41:38 +0000341 const unsigned char *OffsetPtr = CurPtr + (DISK_TOKEN_SIZE - 4);
Chris Lattner5ff43172009-01-22 19:48:26 +0000342 uint32_t Offset = ReadLE32(OffsetPtr);
Chris Lattner1b5285e2009-01-18 02:10:31 +0000343 return FileStartLoc.getFileLocWithOffset(Offset);
Ted Kremenek30a12ec2008-12-17 23:36:32 +0000344}
345
Ted Kremenek5f074262009-01-09 22:05:30 +0000346//===----------------------------------------------------------------------===//
Ted Kremenekd8c02922009-02-10 22:16:22 +0000347// OnDiskChainedHashTable
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000348//===----------------------------------------------------------------------===//
349
Ted Kremenekd8c02922009-02-10 22:16:22 +0000350template<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
Ted Kremenek337edcd2009-02-12 03:26:59 +0000370 unsigned getNumBuckets() const { return NumBuckets; }
371 unsigned getNumEntries() const { return NumEntries; }
372 const unsigned char* const getBase() const { return Base; }
373 const unsigned char* const getBuckets() const { return Buckets; }
374
Ted Kremenekd8c02922009-02-10 22:16:22 +0000375 bool isEmpty() const { return NumEntries == 0; }
376
377 class iterator {
378 const unsigned char* const data;
379 const unsigned len;
380 public:
381 iterator() : data(0), len(0) {}
382 iterator(const unsigned char* d, unsigned l) : data(d), len(l) {}
383
384 data_type operator*() const { return Info::ReadData(data, len); }
385 bool operator==(const iterator& X) const { return X.data == data; }
386 bool operator!=(const iterator& X) const { return X.data != data; }
387 };
388
389 iterator find(const external_key_type& eKey) {
390 const internal_key_type& iKey = Info::GetInternalKey(eKey);
391 unsigned key_hash = Info::ComputeHash(iKey);
392
393 // Each bucket is just a 32-bit offset into the PTH file.
394 unsigned idx = key_hash & (NumBuckets - 1);
395 const unsigned char* Bucket = Buckets + sizeof(uint32_t)*idx;
396
397 unsigned offset = ReadLE32(Bucket);
398 if (offset == 0) return iterator(); // Empty bucket.
399 const unsigned char* Items = Base + offset;
400
401 // 'Items' starts with a 16-bit unsigned integer representing the
402 // number of items in this bucket.
403 unsigned len = ReadUnalignedLE16(Items);
404
405 for (unsigned i = 0; i < len; ++i) {
406 // Read the hash.
407 uint32_t item_hash = ReadUnalignedLE32(Items);
408
409 // Determine the length of the key and the data.
410 const std::pair<unsigned, unsigned>& L = Info::ReadKeyDataLength(Items);
411 unsigned item_len = L.first + L.second;
412
413 // Compare the hashes. If they are not the same, skip the entry entirely.
414 if (item_hash != key_hash) {
415 Items += item_len;
416 continue;
417 }
418
419 // Read the key.
420 const internal_key_type& X =
421 Info::ReadKey((const unsigned char* const) Items, L.first);
422
423 // If the key doesn't match just skip reading the value.
424 if (!Info::EqualKey(X, iKey)) {
425 Items += item_len;
426 continue;
427 }
428
429 // The key matches!
430 return iterator(Items + L.first, L.second);
431 }
432
433 return iterator();
434 }
435
436 iterator end() const { return iterator(); }
437
438
439 static OnDiskChainedHashTable* Create(const unsigned char* buckets,
440 const unsigned char* const base) {
441
442 assert(buckets > base);
443 assert((reinterpret_cast<uintptr_t>(buckets) & 0x3) == 0 &&
444 "buckets should be 4-byte aligned.");
445
446 unsigned numBuckets = ReadLE32(buckets);
447 unsigned numEntries = ReadLE32(buckets);
448 return new OnDiskChainedHashTable<Info>(numBuckets, numEntries, buckets,
449 base);
450 }
451};
452
453//===----------------------------------------------------------------------===//
454// PTH file lookup: map from strings to file data.
455//===----------------------------------------------------------------------===//
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000456
457/// PTHFileLookup - This internal data structure is used by the PTHManager
458/// to map from FileEntry objects managed by FileManager to offsets within
459/// the PTH file.
460namespace {
Ted Kremenekd8c02922009-02-10 22:16:22 +0000461class VISIBILITY_HIDDEN PTHFileData {
462 const uint32_t TokenOff;
463 const uint32_t PPCondOff;
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000464public:
Ted Kremenekd8c02922009-02-10 22:16:22 +0000465 PTHFileData(uint32_t tokenOff, uint32_t ppCondOff)
466 : TokenOff(tokenOff), PPCondOff(ppCondOff) {}
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000467
Ted Kremenekd8c02922009-02-10 22:16:22 +0000468 uint32_t getTokenOffset() const { return TokenOff; }
469 uint32_t getPPCondOffset() const { return PPCondOff; }
470};
471
Ted Kremenek337edcd2009-02-12 03:26:59 +0000472
473class VISIBILITY_HIDDEN PTHFileLookupCommonTrait {
Ted Kremenekd8c02922009-02-10 22:16:22 +0000474public:
Ted Kremenekd8c02922009-02-10 22:16:22 +0000475 typedef const char* internal_key_type;
476
477 static bool EqualKey(const char* a, const char* b) {
478 return strcmp(a, b) == 0;
479 }
Ted Kremenek337edcd2009-02-12 03:26:59 +0000480
Ted Kremenekd8c02922009-02-10 22:16:22 +0000481 static unsigned ComputeHash(const char* x) {
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000482 return BernsteinHash(x);
Ted Kremenekd8c02922009-02-10 22:16:22 +0000483 }
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000484
Ted Kremenekd8c02922009-02-10 22:16:22 +0000485 static std::pair<unsigned, unsigned>
486 ReadKeyDataLength(const unsigned char*& d) {
Ted Kremenek337edcd2009-02-12 03:26:59 +0000487 return std::make_pair((unsigned) ReadUnalignedLE16(d), 8U + (4+4+2+8+8));
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000488 }
489
Ted Kremenekd8c02922009-02-10 22:16:22 +0000490 static const char* ReadKey(const unsigned char* d, unsigned) {
491 return (const char*) d;
492 }
Ted Kremenek337edcd2009-02-12 03:26:59 +0000493};
494
495class VISIBILITY_HIDDEN PTHFileLookupTrait : public PTHFileLookupCommonTrait {
496public:
497 typedef const FileEntry* external_key_type;
498 typedef PTHFileData data_type;
499
500 static const char* GetInternalKey(const FileEntry* FE) {
501 return FE->getName();
502 }
Ted Kremenekd8c02922009-02-10 22:16:22 +0000503
504 static PTHFileData ReadData(const unsigned char* d, unsigned) {
505 uint32_t x = ::ReadUnalignedLE32(d);
506 uint32_t y = ::ReadUnalignedLE32(d);
507 return PTHFileData(x, y);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000508 }
509};
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000510
511class VISIBILITY_HIDDEN PTHStringLookupTrait {
512public:
513 typedef uint32_t
514 data_type;
515
516 typedef const std::pair<const char*, unsigned>
517 external_key_type;
518
519 typedef external_key_type internal_key_type;
520
521 static bool EqualKey(const internal_key_type& a,
522 const internal_key_type& b) {
523 return (a.second == b.second) ? memcmp(a.first, b.first, a.second) == 0
524 : false;
525 }
526
527 static unsigned ComputeHash(const internal_key_type& a) {
528 return BernsteinHash(a.first, a.second);
529 }
530
531 // This hopefully will just get inlined and removed by the optimizer.
532 static const internal_key_type&
533 GetInternalKey(const external_key_type& x) { return x; }
534
535 static std::pair<unsigned, unsigned>
536 ReadKeyDataLength(const unsigned char*& d) {
537 return std::make_pair((unsigned) ReadUnalignedLE16(d), sizeof(uint32_t));
538 }
539
540 static std::pair<const char*, unsigned>
541 ReadKey(const unsigned char* d, unsigned n) {
542 assert(n >= 2 && d[n-1] == '\0');
543 return std::make_pair((const char*) d, n-1);
544 }
545
546 static uint32_t ReadData(const unsigned char* d, unsigned) {
547 return ::ReadUnalignedLE32(d);
548 }
549};
550
Ted Kremenekd8c02922009-02-10 22:16:22 +0000551} // end anonymous namespace
552
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000553typedef OnDiskChainedHashTable<PTHFileLookupTrait> PTHFileLookup;
554typedef OnDiskChainedHashTable<PTHStringLookupTrait> PTHStringIdLookup;
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000555
556//===----------------------------------------------------------------------===//
557// PTHManager methods.
558//===----------------------------------------------------------------------===//
559
560PTHManager::PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup,
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000561 const unsigned char* idDataTable,
562 IdentifierInfo** perIDCache,
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000563 void* stringIdLookup, unsigned numIds,
Ted Kremenek277faca2009-01-27 00:01:05 +0000564 const unsigned char* spellingBase)
Ted Kremenek6183e482008-12-03 01:16:39 +0000565: Buf(buf), PerIDCache(perIDCache), FileLookup(fileLookup),
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000566 IdDataTable(idDataTable), StringIdLookup(stringIdLookup),
Ted Kremenek277faca2009-01-27 00:01:05 +0000567 NumIds(numIds), PP(0), SpellingBase(spellingBase) {}
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000568
569PTHManager::~PTHManager() {
570 delete Buf;
571 delete (PTHFileLookup*) FileLookup;
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000572 delete (PTHStringIdLookup*) StringIdLookup;
Ted Kremenek0e50b6e2008-12-04 22:47:11 +0000573 free(PerIDCache);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000574}
575
Ted Kremenek26555b12009-01-28 21:02:43 +0000576static void InvalidPTH(Diagnostic *Diags, const char* Msg = 0) {
577 if (!Diags) return;
578 if (!Msg) Msg = "Invalid or corrupted PTH file";
579 unsigned DiagID = Diags->getCustomDiagID(Diagnostic::Note, Msg);
580 Diags->Report(FullSourceLoc(), DiagID);
581}
582
Ted Kremenek8a6aec62009-01-28 20:49:33 +0000583PTHManager* PTHManager::Create(const std::string& file, Diagnostic* Diags) {
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000584 // Memory map the PTH file.
585 llvm::OwningPtr<llvm::MemoryBuffer>
586 File(llvm::MemoryBuffer::getFile(file.c_str()));
587
Ted Kremenek8a6aec62009-01-28 20:49:33 +0000588 if (!File) {
589 if (Diags) {
590 unsigned DiagID = Diags->getCustomDiagID(Diagnostic::Note,
591 "PTH file %0 could not be read");
592 Diags->Report(FullSourceLoc(), DiagID) << file;
593 }
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000594
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000595 return 0;
Ted Kremenek8a6aec62009-01-28 20:49:33 +0000596 }
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000597
598 // Get the buffer ranges and check if there are at least three 32-bit
599 // words at the end of the file.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000600 const unsigned char* BufBeg = (unsigned char*)File->getBufferStart();
601 const unsigned char* BufEnd = (unsigned char*)File->getBufferEnd();
Ted Kremeneke1b64982009-01-26 21:43:14 +0000602
603 // Check the prologue of the file.
Ted Kremenek4adc71a2009-01-26 22:16:12 +0000604 if ((BufEnd - BufBeg) < (signed) (sizeof("cfe-pth") + 3 + 4) ||
Ted Kremenek26555b12009-01-28 21:02:43 +0000605 memcmp(BufBeg, "cfe-pth", sizeof("cfe-pth") - 1) != 0) {
606 InvalidPTH(Diags);
Ted Kremeneke1b64982009-01-26 21:43:14 +0000607 return 0;
Ted Kremenek26555b12009-01-28 21:02:43 +0000608 }
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000609
Ted Kremenek67d15052009-01-26 21:50:21 +0000610 // Read the PTH version.
Ted Kremeneke1b64982009-01-26 21:43:14 +0000611 const unsigned char *p = BufBeg + (sizeof("cfe-pth") - 1);
Ted Kremenek67d15052009-01-26 21:50:21 +0000612 unsigned Version = ReadLE32(p);
613
Ted Kremenek26555b12009-01-28 21:02:43 +0000614 if (Version != PTHManager::Version) {
615 InvalidPTH(Diags,
616 Version < PTHManager::Version
617 ? "PTH file uses an older PTH format that is no longer supported"
618 : "PTH file uses a newer PTH format that cannot be read");
Ted Kremenek67d15052009-01-26 21:50:21 +0000619 return 0;
Ted Kremenek26555b12009-01-28 21:02:43 +0000620 }
Ted Kremenek67d15052009-01-26 21:50:21 +0000621
622 // Compute the address of the index table at the end of the PTH file.
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000623 const unsigned char *PrologueOffset = p;
Ted Kremeneke1b64982009-01-26 21:43:14 +0000624
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000625 if (PrologueOffset >= BufEnd) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000626 InvalidPTH(Diags);
Ted Kremeneke1b64982009-01-26 21:43:14 +0000627 return 0;
Ted Kremenek26555b12009-01-28 21:02:43 +0000628 }
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000629
630 // Construct the file lookup table. This will be used for mapping from
631 // FileEntry*'s to cached tokens.
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000632 const unsigned char* FileTableOffset = PrologueOffset + sizeof(uint32_t)*2;
Chris Lattner5ff43172009-01-22 19:48:26 +0000633 const unsigned char* FileTable = BufBeg + ReadLE32(FileTableOffset);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000634
635 if (!(FileTable > BufBeg && FileTable < BufEnd)) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000636 InvalidPTH(Diags);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000637 return 0; // FIXME: Proper error diagnostic?
638 }
639
Ted Kremenekd8c02922009-02-10 22:16:22 +0000640 llvm::OwningPtr<PTHFileLookup> FL(PTHFileLookup::Create(FileTable, BufBeg));
Ted Kremenek26555b12009-01-28 21:02:43 +0000641 if (FL->isEmpty()) {
642 InvalidPTH(Diags, "PTH file contains no cached source data");
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000643 return 0;
Ted Kremenek26555b12009-01-28 21:02:43 +0000644 }
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000645
646 // Get the location of the table mapping from persistent ids to the
647 // data needed to reconstruct identifiers.
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000648 const unsigned char* IDTableOffset = PrologueOffset + sizeof(uint32_t)*0;
Chris Lattner5ff43172009-01-22 19:48:26 +0000649 const unsigned char* IData = BufBeg + ReadLE32(IDTableOffset);
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000650
651 if (!(IData >= BufBeg && IData < BufEnd)) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000652 InvalidPTH(Diags);
653 return 0;
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000654 }
655
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000656 // Get the location of the hashtable mapping between strings and
657 // persistent IDs.
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000658 const unsigned char* StringIdTableOffset = PrologueOffset + sizeof(uint32_t)*1;
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000659 const unsigned char* StringIdTable = BufBeg + ReadLE32(StringIdTableOffset);
660 if (!(StringIdTable >= BufBeg && StringIdTable < BufEnd)) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000661 InvalidPTH(Diags);
662 return 0;
Ted Kremenek72b1b152009-01-15 18:47:46 +0000663 }
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000664
665 llvm::OwningPtr<PTHStringIdLookup> SL(PTHStringIdLookup::Create(StringIdTable,
666 BufBeg));
667 if (SL->isEmpty()) {
668 InvalidPTH(Diags, "PTH file contains no identifiers.");
669 return 0;
670 }
Ted Kremenek72b1b152009-01-15 18:47:46 +0000671
Ted Kremenek277faca2009-01-27 00:01:05 +0000672 // Get the location of the spelling cache.
Ted Kremeneka4bd8eb2009-02-11 23:34:32 +0000673 const unsigned char* spellingBaseOffset = PrologueOffset + sizeof(uint32_t)*3;
Ted Kremenek277faca2009-01-27 00:01:05 +0000674 const unsigned char* spellingBase = BufBeg + ReadLE32(spellingBaseOffset);
675 if (!(spellingBase >= BufBeg && spellingBase < BufEnd)) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000676 InvalidPTH(Diags);
Ted Kremenek277faca2009-01-27 00:01:05 +0000677 return 0;
678 }
679
Ted Kremenek6183e482008-12-03 01:16:39 +0000680 // Get the number of IdentifierInfos and pre-allocate the identifier cache.
Chris Lattner5ff43172009-01-22 19:48:26 +0000681 uint32_t NumIds = ReadLE32(IData);
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000682
Ted Kremenek6183e482008-12-03 01:16:39 +0000683 // Pre-allocate the peristent ID -> IdentifierInfo* cache. We use calloc()
684 // so that we in the best case only zero out memory once when the OS returns
685 // us new pages.
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000686 IdentifierInfo** PerIDCache = 0;
Ted Kremenek6183e482008-12-03 01:16:39 +0000687
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000688 if (NumIds) {
689 PerIDCache = (IdentifierInfo**)calloc(NumIds, sizeof(*PerIDCache));
690 if (!PerIDCache) {
Ted Kremenek26555b12009-01-28 21:02:43 +0000691 InvalidPTH(Diags, "Could not allocate memory for processing PTH file");
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000692 return 0;
693 }
Ted Kremenek6183e482008-12-03 01:16:39 +0000694 }
Ted Kremenekcdd8f212009-01-21 07:34:28 +0000695
Ted Kremenek72b1b152009-01-15 18:47:46 +0000696 // Create the new PTHManager.
697 return new PTHManager(File.take(), FL.take(), IData, PerIDCache,
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000698 SL.take(), NumIds, spellingBase);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000699}
Chris Lattner77ecb3a2009-01-18 02:57:21 +0000700IdentifierInfo* PTHManager::LazilyCreateIdentifierInfo(unsigned PersistentID) {
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000701 // Look in the PTH file for the string data for the IdentifierInfo object.
Chris Lattner77ecb3a2009-01-18 02:57:21 +0000702 const unsigned char* TableEntry = IdDataTable + sizeof(uint32_t)*PersistentID;
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000703 const unsigned char* IDData =
Chris Lattner5ff43172009-01-22 19:48:26 +0000704 (const unsigned char*)Buf->getBufferStart() + ReadLE32(TableEntry);
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000705 assert(IDData < (const unsigned char*)Buf->getBufferEnd());
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000706
Ted Kremenek72b1b152009-01-15 18:47:46 +0000707 // Allocate the object.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000708 std::pair<IdentifierInfo,const unsigned char*> *Mem =
709 Alloc.Allocate<std::pair<IdentifierInfo,const unsigned char*> >();
Ted Kremenek72b1b152009-01-15 18:47:46 +0000710
711 Mem->second = IDData;
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000712 assert(IDData[0] != '\0');
Ted Kremenekea9c26b2009-01-20 23:28:34 +0000713 IdentifierInfo *II = new ((void*) Mem) IdentifierInfo();
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000714
Ted Kremenek72b1b152009-01-15 18:47:46 +0000715 // Store the new IdentifierInfo in the cache.
Chris Lattner77ecb3a2009-01-18 02:57:21 +0000716 PerIDCache[PersistentID] = II;
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000717 assert(II->getName() && II->getName()[0] != '\0');
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000718 return II;
719}
720
Ted Kremenek72b1b152009-01-15 18:47:46 +0000721IdentifierInfo* PTHManager::get(const char *NameStart, const char *NameEnd) {
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000722 PTHStringIdLookup& SL = *((PTHStringIdLookup*)StringIdLookup);
723 // Double check our assumption that the last character isn't '\0'.
724 assert(NameStart[NameEnd-NameStart-1] != '\0');
725 PTHStringIdLookup::iterator I = SL.find(std::make_pair(NameStart,
726 NameEnd - NameStart));
727 if (I == SL.end()) // No identifier found?
728 return 0;
Ted Kremenek72b1b152009-01-15 18:47:46 +0000729
Ted Kremenek7e3a0042009-02-11 21:29:16 +0000730 // Match found. Return the identifier!
731 assert(*I > 0);
732 return GetIdentifierInfo(*I-1);
733}
Ted Kremenek72b1b152009-01-15 18:47:46 +0000734
Chris Lattnerf056d922009-01-17 08:06:50 +0000735PTHLexer *PTHManager::CreateLexer(FileID FID) {
736 const FileEntry *FE = PP->getSourceManager().getFileEntryForID(FID);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000737 if (!FE)
738 return 0;
739
740 // Lookup the FileEntry object in our file lookup data structure. It will
741 // return a variant that indicates whether or not there is an offset within
742 // the PTH file that contains cached tokens.
Ted Kremenekd8c02922009-02-10 22:16:22 +0000743 PTHFileLookup& PFL = *((PTHFileLookup*)FileLookup);
744 PTHFileLookup::iterator I = PFL.find(FE);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000745
Ted Kremenekd8c02922009-02-10 22:16:22 +0000746 if (I == PFL.end()) // No tokens available?
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000747 return 0;
748
Ted Kremenekd8c02922009-02-10 22:16:22 +0000749 const PTHFileData& FileData = *I;
750
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000751 const unsigned char *BufStart = (const unsigned char *)Buf->getBufferStart();
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000752 // Compute the offset of the token data within the buffer.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000753 const unsigned char* data = BufStart + FileData.getTokenOffset();
Ted Kremenek268ee702008-12-12 18:34:08 +0000754
755 // Get the location of pp-conditional table.
Chris Lattnerda9d61c2009-01-18 01:57:14 +0000756 const unsigned char* ppcond = BufStart + FileData.getPPCondOffset();
Chris Lattner5ff43172009-01-22 19:48:26 +0000757 uint32_t Len = ReadLE32(ppcond);
Chris Lattner1b5285e2009-01-18 02:10:31 +0000758 if (Len == 0) ppcond = 0;
Ted Kremenek32a8ad52009-01-08 04:30:32 +0000759
Ted Kremenek72b1b152009-01-15 18:47:46 +0000760 assert(PP && "No preprocessor set yet!");
Ted Kremenek277faca2009-01-27 00:01:05 +0000761 return new PTHLexer(*PP, FID, data, ppcond, *this);
Ted Kremenek0c6a77b2008-12-03 00:38:03 +0000762}
Ted Kremenek337edcd2009-02-12 03:26:59 +0000763
764//===----------------------------------------------------------------------===//
765// 'stat' caching.
766//===----------------------------------------------------------------------===//
767
768namespace {
769class VISIBILITY_HIDDEN PTHStatData {
770public:
771 const ino_t ino;
772 const dev_t dev;
773 const mode_t mode;
774 const time_t mtime;
775 const off_t size;
776
777 PTHStatData(ino_t i, dev_t d, mode_t mo, time_t m, off_t s)
778 : ino(i), dev(d), mode(mo), mtime(m), size(s) {}
779};
780
781class VISIBILITY_HIDDEN PTHStatLookupTrait : public PTHFileLookupCommonTrait {
782public:
783 typedef internal_key_type external_key_type; // const char*
784 typedef PTHStatData data_type;
785
786 static const char* GetInternalKey(external_key_type x) { return x; }
787
788 static data_type ReadData(const unsigned char* d, unsigned) {
789 d += 4 * 2; // Skip the first 2 words.
790 ino_t ino = (ino_t) ReadUnalignedLE32(d);
791 dev_t dev = (dev_t) ReadUnalignedLE32(d);
792 mode_t mode = (mode_t) ReadUnalignedLE16(d);
793 time_t mtime = (time_t) ReadUnalignedLE64(d);
794 return data_type(ino, dev, mode, mtime, (off_t) ReadUnalignedLE64(d));
795 }
796};
797}
798
799class VISIBILITY_HIDDEN PTHStatCache : public StatSysCallCache {
800 typedef OnDiskChainedHashTable<PTHStatLookupTrait> CacheTy;
801 CacheTy Cache;
802
803public:
804 PTHStatCache(PTHFileLookup &FL) :
805 Cache(FL.getNumBuckets(), FL.getNumEntries(), FL.getBuckets(),
806 FL.getBase()) {}
807
808 ~PTHStatCache() {}
809
810 int stat(const char *path, struct stat *buf) {
811 // Do the lookup for the file's data in the PTH file.
812 CacheTy::iterator I = Cache.find(path);
813
814 // If we don't get a hit in the PTH file just forward to 'stat'.
815 if (I == Cache.end()) return ::stat(path, buf);
816
817 const PTHStatData& Data = *I;
818 buf->st_ino = Data.ino;
819 buf->st_dev = Data.dev;
820 buf->st_mtime = Data.mtime;
821 buf->st_mode = Data.mode;
822 buf->st_size = Data.size;
823 return 0;
824 }
825};
826
827StatSysCallCache *PTHManager::createStatCache() {
Ted Kremenek5f747d12009-02-12 03:45:39 +0000828 return new PTHStatCache(*((PTHFileLookup*) FileLookup));
Ted Kremenek337edcd2009-02-12 03:26:59 +0000829}