Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 1 | //===--- CacheTokens.cpp - Caching of lexer tokens for PTH support --------===// |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 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 | // |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 10 | // This provides a possible implementation of PTH support for Clang that is |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 11 | // based on caching lexed tokens and identifiers. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang.h" |
| 16 | #include "clang/Basic/FileManager.h" |
| 17 | #include "clang/Basic/SourceManager.h" |
| 18 | #include "clang/Basic/IdentifierTable.h" |
| 19 | #include "clang/Basic/Diagnostic.h" |
| 20 | #include "clang/Lex/Lexer.h" |
| 21 | #include "clang/Lex/Preprocessor.h" |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringMap.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 23 | #include "llvm/Support/MemoryBuffer.h" |
| 24 | #include "llvm/Support/raw_ostream.h" |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 25 | #include "llvm/System/Path.h" |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Compiler.h" |
Ted Kremenek | 72b1b15 | 2009-01-15 18:47:46 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Streams.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 28 | |
| 29 | using namespace clang; |
| 30 | |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 31 | typedef uint32_t Offset; |
| 32 | |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 33 | static void Emit8(llvm::raw_ostream& Out, uint32_t V) { |
| 34 | Out << (unsigned char)(V); |
| 35 | } |
| 36 | |
| 37 | static void Emit16(llvm::raw_ostream& Out, uint32_t V) { |
| 38 | Out << (unsigned char)(V); |
| 39 | Out << (unsigned char)(V >> 8); |
| 40 | assert((V >> 16) == 0); |
| 41 | } |
| 42 | |
| 43 | static void Emit32(llvm::raw_ostream& Out, uint32_t V) { |
| 44 | Out << (unsigned char)(V); |
| 45 | Out << (unsigned char)(V >> 8); |
| 46 | Out << (unsigned char)(V >> 16); |
| 47 | Out << (unsigned char)(V >> 24); |
| 48 | } |
| 49 | |
Ted Kremenek | 337edcd | 2009-02-12 03:26:59 +0000 | [diff] [blame] | 50 | static void Emit64(llvm::raw_ostream& Out, uint64_t V) { |
| 51 | Out << (unsigned char)(V); |
| 52 | Out << (unsigned char)(V >> 8); |
| 53 | Out << (unsigned char)(V >> 16); |
| 54 | Out << (unsigned char)(V >> 24); |
| 55 | Out << (unsigned char)(V >> 32); |
| 56 | Out << (unsigned char)(V >> 40); |
| 57 | Out << (unsigned char)(V >> 48); |
| 58 | Out << (unsigned char)(V >> 56); |
| 59 | } |
| 60 | |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 61 | static void Pad(llvm::raw_fd_ostream& Out, unsigned A) { |
| 62 | Offset off = (Offset) Out.tell(); |
| 63 | uint32_t n = ((uintptr_t)(off+A-1) & ~(uintptr_t)(A-1)) - off; |
| 64 | for ( ; n ; --n ) Emit8(Out, 0); |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 67 | // Bernstein hash function: |
| 68 | // This is basically copy-and-paste from StringMap. This likely won't |
| 69 | // stay here, which is why I didn't both to expose this function from |
| 70 | // String Map. |
| 71 | static unsigned BernsteinHash(const char* x) { |
| 72 | unsigned int R = 0; |
| 73 | for ( ; *x != '\0' ; ++x) R = R * 33 + *x; |
| 74 | return R + (R >> 5); |
| 75 | } |
| 76 | |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 77 | //===----------------------------------------------------------------------===// |
| 78 | // On Disk Hashtable Logic. This will eventually get refactored and put |
| 79 | // elsewhere. |
| 80 | //===----------------------------------------------------------------------===// |
| 81 | |
| 82 | template<typename Info> |
| 83 | class OnDiskChainedHashTableGenerator { |
| 84 | unsigned NumBuckets; |
| 85 | unsigned NumEntries; |
| 86 | llvm::BumpPtrAllocator BA; |
| 87 | |
| 88 | class Item { |
| 89 | public: |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 90 | typename Info::key_type key; |
| 91 | typename Info::data_type data; |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 92 | Item *next; |
| 93 | const uint32_t hash; |
| 94 | |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 95 | Item(typename Info::key_type_ref k, typename Info::data_type_ref d) |
| 96 | : key(k), data(d), next(0), hash(Info::ComputeHash(k)) {} |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | class Bucket { |
| 100 | public: |
| 101 | Offset off; |
| 102 | Item* head; |
| 103 | unsigned length; |
| 104 | |
| 105 | Bucket() {} |
| 106 | }; |
| 107 | |
| 108 | Bucket* Buckets; |
| 109 | |
| 110 | private: |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 111 | void insert(Bucket* b, size_t size, Item* E) { |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 112 | unsigned idx = E->hash & (size - 1); |
| 113 | Bucket& B = b[idx]; |
| 114 | E->next = B.head; |
| 115 | ++B.length; |
| 116 | B.head = E; |
| 117 | } |
| 118 | |
| 119 | void resize(size_t newsize) { |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 120 | Bucket* newBuckets = (Bucket*) calloc(newsize, sizeof(Bucket)); |
| 121 | // Populate newBuckets with the old entries. |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 122 | for (unsigned i = 0; i < NumBuckets; ++i) |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 123 | for (Item* E = Buckets[i].head; E ; ) { |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 124 | Item* N = E->next; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 125 | E->next = 0; |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 126 | insert(newBuckets, newsize, E); |
| 127 | E = N; |
| 128 | } |
| 129 | |
| 130 | free(Buckets); |
| 131 | NumBuckets = newsize; |
| 132 | Buckets = newBuckets; |
| 133 | } |
| 134 | |
| 135 | public: |
| 136 | |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 137 | void insert(typename Info::key_type_ref key, |
| 138 | typename Info::data_type_ref data) { |
| 139 | |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 140 | ++NumEntries; |
| 141 | if (4*NumEntries >= 3*NumBuckets) resize(NumBuckets*2); |
| 142 | insert(Buckets, NumBuckets, new (BA.Allocate<Item>()) Item(key, data)); |
| 143 | } |
| 144 | |
| 145 | Offset Emit(llvm::raw_fd_ostream& out) { |
| 146 | // Emit the payload of the table. |
| 147 | for (unsigned i = 0; i < NumBuckets; ++i) { |
| 148 | Bucket& B = Buckets[i]; |
| 149 | if (!B.head) continue; |
| 150 | |
| 151 | // Store the offset for the data of this bucket. |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 152 | B.off = out.tell(); |
| 153 | |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 154 | // Write out the number of items in the bucket. |
| 155 | Emit16(out, B.length); |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 156 | |
| 157 | // Write out the entries in the bucket. |
| 158 | for (Item *I = B.head; I ; I = I->next) { |
| 159 | Emit32(out, I->hash); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 160 | const std::pair<unsigned, unsigned>& Len = |
| 161 | Info::EmitKeyDataLength(out, I->key, I->data); |
| 162 | Info::EmitKey(out, I->key, Len.first); |
Ted Kremenek | 337edcd | 2009-02-12 03:26:59 +0000 | [diff] [blame] | 163 | Info::EmitData(out, I->key, I->data, Len.second); |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 164 | } |
| 165 | } |
| 166 | |
| 167 | // Emit the hashtable itself. |
| 168 | Pad(out, 4); |
| 169 | Offset TableOff = out.tell(); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 170 | Emit32(out, NumBuckets); |
| 171 | Emit32(out, NumEntries); |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 172 | for (unsigned i = 0; i < NumBuckets; ++i) Emit32(out, Buckets[i].off); |
| 173 | |
| 174 | return TableOff; |
| 175 | } |
| 176 | |
| 177 | OnDiskChainedHashTableGenerator() { |
| 178 | NumEntries = 0; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 179 | NumBuckets = 64; |
| 180 | // Note that we do not need to run the constructors of the individual |
| 181 | // Bucket objects since 'calloc' returns bytes that are all 0. |
| 182 | Buckets = (Bucket*) calloc(NumBuckets, sizeof(Bucket)); |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | ~OnDiskChainedHashTableGenerator() { |
| 186 | free(Buckets); |
| 187 | } |
| 188 | }; |
| 189 | |
| 190 | //===----------------------------------------------------------------------===// |
| 191 | // PTH-specific stuff. |
| 192 | //===----------------------------------------------------------------------===// |
| 193 | |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 194 | namespace { |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 195 | class VISIBILITY_HIDDEN PTHEntry { |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 196 | Offset TokenData, PPCondData; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 197 | |
| 198 | public: |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 199 | PTHEntry() {} |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 200 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 201 | PTHEntry(Offset td, Offset ppcd) |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 202 | : TokenData(td), PPCondData(ppcd) {} |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 203 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 204 | Offset getTokenOffset() const { return TokenData; } |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 205 | Offset getPPCondTableOffset() const { return PPCondData; } |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 206 | }; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 207 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 208 | |
| 209 | class VISIBILITY_HIDDEN PTHEntryKeyVariant { |
| 210 | union { const FileEntry* FE; const DirectoryEntry* DE; const char* Path; }; |
| 211 | enum { IsFE = 0x1, IsDE = 0x2, IsNoExist = 0x0 } Kind; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 212 | public: |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 213 | PTHEntryKeyVariant(const FileEntry *fe) : FE(fe), Kind(IsFE) {} |
| 214 | PTHEntryKeyVariant(const DirectoryEntry *de) : DE(de), Kind(IsDE) {} |
| 215 | PTHEntryKeyVariant(const char* path) : Path(path), Kind(IsNoExist) {} |
| 216 | |
| 217 | const FileEntry *getFile() const { return Kind == IsFE ? FE : 0; } |
| 218 | const DirectoryEntry *getDir() const { return Kind == IsDE ? DE : 0; } |
| 219 | const char* getNameOfNonExistantFile() const { |
| 220 | return Kind == IsNoExist ? Path : 0; |
| 221 | } |
| 222 | |
| 223 | const char* getCString() const { |
| 224 | switch (Kind) { |
| 225 | case IsFE: return FE->getName(); |
| 226 | case IsDE: return DE->getName(); |
| 227 | default: return Path; |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | unsigned getKind() const { return (unsigned) Kind; } |
| 232 | |
| 233 | void EmitData(llvm::raw_ostream& Out) { |
| 234 | switch (Kind) { |
| 235 | case IsFE: |
| 236 | // Emit stat information. |
| 237 | ::Emit32(Out, FE->getInode()); |
| 238 | ::Emit32(Out, FE->getDevice()); |
| 239 | ::Emit16(Out, FE->getFileMode()); |
| 240 | ::Emit64(Out, FE->getModificationTime()); |
| 241 | ::Emit64(Out, FE->getSize()); |
| 242 | break; |
| 243 | case IsDE: |
| 244 | // FIXME |
| 245 | default: break; |
| 246 | // Emit nothing. |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | unsigned getRepresentationLength() const { |
| 251 | switch (Kind) { |
| 252 | case IsFE: return 4 + 4 + 2 + 8 + 8; |
| 253 | case IsDE: // FIXME |
| 254 | default: return 0; |
| 255 | } |
| 256 | } |
| 257 | }; |
| 258 | |
| 259 | class VISIBILITY_HIDDEN FileEntryPTHEntryInfo { |
| 260 | public: |
| 261 | typedef PTHEntryKeyVariant key_type; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 262 | typedef key_type key_type_ref; |
| 263 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 264 | typedef PTHEntry data_type; |
| 265 | typedef const PTHEntry& data_type_ref; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 266 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 267 | static unsigned ComputeHash(PTHEntryKeyVariant V) { |
| 268 | return BernsteinHash(V.getCString()); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | static std::pair<unsigned,unsigned> |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 272 | EmitKeyDataLength(llvm::raw_ostream& Out, PTHEntryKeyVariant V, |
| 273 | const PTHEntry& E) { |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 274 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 275 | unsigned n = strlen(V.getCString()) + 1 + 1; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 276 | ::Emit16(Out, n); |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 277 | |
| 278 | unsigned m = V.getRepresentationLength() + (V.getFile() ? 4 + 4 : 0); |
| 279 | ::Emit8(Out, m); |
| 280 | |
| 281 | return std::make_pair(n, m); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 282 | } |
| 283 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 284 | static void EmitKey(llvm::raw_ostream& Out, PTHEntryKeyVariant V, unsigned n){ |
| 285 | // Emit the entry kind. |
| 286 | ::Emit8(Out, (unsigned) V.getKind()); |
| 287 | // Emit the string. |
| 288 | Out.write(V.getCString(), n - 1); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 291 | static void EmitData(llvm::raw_ostream& Out, PTHEntryKeyVariant V, |
| 292 | const PTHEntry& E, unsigned) { |
| 293 | |
| 294 | |
| 295 | // For file entries emit the offsets into the PTH file for token data |
| 296 | // and the preprocessor blocks table. |
| 297 | if (V.getFile()) { |
| 298 | ::Emit32(Out, E.getTokenOffset()); |
| 299 | ::Emit32(Out, E.getPPCondTableOffset()); |
| 300 | } |
| 301 | |
| 302 | // Emit any other data associated with the key (i.e., stat information). |
| 303 | V.EmitData(Out); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 304 | } |
| 305 | }; |
| 306 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 307 | class OffsetOpt { |
| 308 | bool valid; |
| 309 | Offset off; |
| 310 | public: |
| 311 | OffsetOpt() : valid(false) {} |
| 312 | bool hasOffset() const { return valid; } |
| 313 | Offset getOffset() const { assert(valid); return off; } |
| 314 | void setOffset(Offset o) { off = o; valid = true; } |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 315 | }; |
| 316 | } // end anonymous namespace |
| 317 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 318 | typedef OnDiskChainedHashTableGenerator<FileEntryPTHEntryInfo> PTHMap; |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 319 | typedef llvm::DenseMap<const IdentifierInfo*,uint32_t> IDMap; |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 320 | typedef llvm::StringMap<OffsetOpt, llvm::BumpPtrAllocator> CachedStrsTy; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 321 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 322 | namespace { |
| 323 | class VISIBILITY_HIDDEN PTHWriter { |
| 324 | IDMap IM; |
| 325 | llvm::raw_fd_ostream& Out; |
| 326 | Preprocessor& PP; |
| 327 | uint32_t idcount; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 328 | PTHMap PM; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 329 | CachedStrsTy CachedStrs; |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 330 | Offset CurStrOffset; |
| 331 | std::vector<llvm::StringMapEntry<OffsetOpt>*> StrEntries; |
Ted Kremenek | 8f174e1 | 2008-12-23 02:52:12 +0000 | [diff] [blame] | 332 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 333 | //// Get the persistent id for the given IdentifierInfo*. |
| 334 | uint32_t ResolveID(const IdentifierInfo* II); |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 335 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 336 | /// Emit a token to the PTH file. |
| 337 | void EmitToken(const Token& T); |
| 338 | |
| 339 | void Emit8(uint32_t V) { |
| 340 | Out << (unsigned char)(V); |
| 341 | } |
| 342 | |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 343 | void Emit16(uint32_t V) { ::Emit16(Out, V); } |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 344 | |
| 345 | void Emit24(uint32_t V) { |
| 346 | Out << (unsigned char)(V); |
| 347 | Out << (unsigned char)(V >> 8); |
| 348 | Out << (unsigned char)(V >> 16); |
| 349 | assert((V >> 24) == 0); |
| 350 | } |
| 351 | |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 352 | void Emit32(uint32_t V) { ::Emit32(Out, V); } |
| 353 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 354 | void EmitBuf(const char* I, const char* E) { |
| 355 | for ( ; I != E ; ++I) Out << *I; |
| 356 | } |
| 357 | |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 358 | /// EmitIdentifierTable - Emits two tables to the PTH file. The first is |
| 359 | /// a hashtable mapping from identifier strings to persistent IDs. |
| 360 | /// The second is a straight table mapping from persistent IDs to string data |
| 361 | /// (the keys of the first table). |
Ted Kremenek | f1de464 | 2009-02-11 16:06:55 +0000 | [diff] [blame] | 362 | std::pair<Offset, Offset> EmitIdentifierTable(); |
| 363 | |
| 364 | /// EmitFileTable - Emit a table mapping from file name strings to PTH |
| 365 | /// token data. |
| 366 | Offset EmitFileTable() { return PM.Emit(Out); } |
| 367 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 368 | PTHEntry LexTokens(Lexer& L); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 369 | Offset EmitCachedSpellings(); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 370 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 371 | public: |
| 372 | PTHWriter(llvm::raw_fd_ostream& out, Preprocessor& pp) |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 373 | : Out(out), PP(pp), idcount(0), CurStrOffset(0) {} |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 374 | |
| 375 | void GeneratePTH(); |
| 376 | }; |
| 377 | } // end anonymous namespace |
| 378 | |
| 379 | uint32_t PTHWriter::ResolveID(const IdentifierInfo* II) { |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 380 | // Null IdentifierInfo's map to the persistent ID 0. |
| 381 | if (!II) |
| 382 | return 0; |
| 383 | |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 384 | IDMap::iterator I = IM.find(II); |
| 385 | |
| 386 | if (I == IM.end()) { |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 387 | IM[II] = ++idcount; // Pre-increment since '0' is reserved for NULL. |
| 388 | return idcount; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 391 | return I->second; // We've already added 1. |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 394 | void PTHWriter::EmitToken(const Token& T) { |
Ted Kremenek | 7b78b7c | 2009-01-19 23:13:15 +0000 | [diff] [blame] | 395 | Emit32(((uint32_t) T.getKind()) | |
| 396 | (((uint32_t) T.getFlags()) << 8) | |
| 397 | (((uint32_t) T.getLength()) << 16)); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 398 | |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 399 | // Literals (strings, numbers, characters) get cached spellings. |
| 400 | if (T.isLiteral()) { |
| 401 | // FIXME: This uses the slow getSpelling(). Perhaps we do better |
| 402 | // in the future? This only slows down PTH generation. |
| 403 | const std::string &spelling = PP.getSpelling(T); |
| 404 | const char* s = spelling.c_str(); |
| 405 | |
| 406 | // Get the string entry. |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 407 | llvm::StringMapEntry<OffsetOpt> *E = |
| 408 | &CachedStrs.GetOrCreateValue(s, s+spelling.size()); |
| 409 | |
| 410 | if (!E->getValue().hasOffset()) { |
| 411 | E->getValue().setOffset(CurStrOffset); |
| 412 | StrEntries.push_back(E); |
| 413 | CurStrOffset += spelling.size() + 1; |
| 414 | } |
| 415 | |
| 416 | Emit32(E->getValue().getOffset()); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 417 | } |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 418 | else |
| 419 | Emit32(ResolveID(T.getIdentifierInfo())); |
| 420 | |
Chris Lattner | 52c2908 | 2009-01-27 06:27:13 +0000 | [diff] [blame] | 421 | Emit32(PP.getSourceManager().getFileOffset(T.getLocation())); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 424 | PTHEntry PTHWriter::LexTokens(Lexer& L) { |
Ted Kremenek | 7b78b7c | 2009-01-19 23:13:15 +0000 | [diff] [blame] | 425 | // Pad 0's so that we emit tokens to a 4-byte alignment. |
| 426 | // This speed up reading them back in. |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 427 | Pad(Out, 4); |
| 428 | Offset off = (Offset) Out.tell(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 429 | |
| 430 | // Keep track of matching '#if' ... '#endif'. |
| 431 | typedef std::vector<std::pair<Offset, unsigned> > PPCondTable; |
| 432 | PPCondTable PPCond; |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 433 | std::vector<unsigned> PPStartCond; |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 434 | bool ParsingPreprocessorDirective = false; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 435 | Token Tok; |
| 436 | |
| 437 | do { |
| 438 | L.LexFromRawLexer(Tok); |
Ted Kremenek | 726080d | 2009-02-10 22:43:16 +0000 | [diff] [blame] | 439 | NextToken: |
| 440 | |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 441 | if ((Tok.isAtStartOfLine() || Tok.is(tok::eof)) && |
| 442 | ParsingPreprocessorDirective) { |
| 443 | // Insert an eom token into the token cache. It has the same |
| 444 | // position as the next token that is not on the same line as the |
| 445 | // preprocessor directive. Observe that we continue processing |
| 446 | // 'Tok' when we exit this branch. |
| 447 | Token Tmp = Tok; |
| 448 | Tmp.setKind(tok::eom); |
| 449 | Tmp.clearFlag(Token::StartOfLine); |
| 450 | Tmp.setIdentifierInfo(0); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 451 | EmitToken(Tmp); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 452 | ParsingPreprocessorDirective = false; |
| 453 | } |
| 454 | |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 455 | if (Tok.is(tok::identifier)) { |
| 456 | Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok)); |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 457 | EmitToken(Tok); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 458 | continue; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 459 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 460 | |
| 461 | if (Tok.is(tok::hash) && Tok.isAtStartOfLine()) { |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 462 | // Special processing for #include. Store the '#' token and lex |
| 463 | // the next token. |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 464 | assert(!ParsingPreprocessorDirective); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 465 | Offset HashOff = (Offset) Out.tell(); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 466 | EmitToken(Tok); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 467 | |
| 468 | // Get the next token. |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 469 | L.LexFromRawLexer(Tok); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 470 | |
| 471 | assert(!Tok.isAtStartOfLine()); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 472 | |
| 473 | // Did we see 'include'/'import'/'include_next'? |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 474 | if (!Tok.is(tok::identifier)) { |
| 475 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 476 | continue; |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 477 | } |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 478 | |
| 479 | IdentifierInfo* II = PP.LookUpIdentifierInfo(Tok); |
| 480 | Tok.setIdentifierInfo(II); |
| 481 | tok::PPKeywordKind K = II->getPPKeywordID(); |
| 482 | |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 483 | assert(K != tok::pp_not_keyword); |
| 484 | ParsingPreprocessorDirective = true; |
| 485 | |
| 486 | switch (K) { |
| 487 | default: |
| 488 | break; |
| 489 | case tok::pp_include: |
| 490 | case tok::pp_import: |
| 491 | case tok::pp_include_next: { |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 492 | // Save the 'include' token. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 493 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 494 | // Lex the next token as an include string. |
| 495 | L.setParsingPreprocessorDirective(true); |
| 496 | L.LexIncludeFilename(Tok); |
| 497 | L.setParsingPreprocessorDirective(false); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 498 | assert(!Tok.isAtStartOfLine()); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 499 | if (Tok.is(tok::identifier)) |
| 500 | Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok)); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 501 | |
| 502 | break; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 503 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 504 | case tok::pp_if: |
| 505 | case tok::pp_ifdef: |
| 506 | case tok::pp_ifndef: { |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 507 | // Add an entry for '#if' and friends. We initially set the target |
| 508 | // index to 0. This will get backpatched when we hit #endif. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 509 | PPStartCond.push_back(PPCond.size()); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 510 | PPCond.push_back(std::make_pair(HashOff, 0U)); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 511 | break; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 512 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 513 | case tok::pp_endif: { |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 514 | // Add an entry for '#endif'. We set the target table index to itself. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 515 | // This will later be set to zero when emitting to the PTH file. We |
| 516 | // use 0 for uninitialized indices because that is easier to debug. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 517 | unsigned index = PPCond.size(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 518 | // Backpatch the opening '#if' entry. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 519 | assert(!PPStartCond.empty()); |
| 520 | assert(PPCond.size() > PPStartCond.back()); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 521 | assert(PPCond[PPStartCond.back()].second == 0); |
| 522 | PPCond[PPStartCond.back()].second = index; |
| 523 | PPStartCond.pop_back(); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 524 | // Add the new entry to PPCond. |
| 525 | PPCond.push_back(std::make_pair(HashOff, index)); |
Ted Kremenek | 726080d | 2009-02-10 22:43:16 +0000 | [diff] [blame] | 526 | EmitToken(Tok); |
| 527 | |
| 528 | // Some files have gibberish on the same line as '#endif'. |
| 529 | // Discard these tokens. |
| 530 | do L.LexFromRawLexer(Tok); while (!Tok.is(tok::eof) && |
| 531 | !Tok.isAtStartOfLine()); |
| 532 | // We have the next token in hand. |
| 533 | // Don't immediately lex the next one. |
| 534 | goto NextToken; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 535 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 536 | case tok::pp_elif: |
| 537 | case tok::pp_else: { |
| 538 | // Add an entry for #elif or #else. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 539 | // This serves as both a closing and opening of a conditional block. |
| 540 | // This means that its entry will get backpatched later. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 541 | unsigned index = PPCond.size(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 542 | // Backpatch the previous '#if' entry. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 543 | assert(!PPStartCond.empty()); |
| 544 | assert(PPCond.size() > PPStartCond.back()); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 545 | assert(PPCond[PPStartCond.back()].second == 0); |
| 546 | PPCond[PPStartCond.back()].second = index; |
| 547 | PPStartCond.pop_back(); |
| 548 | // Now add '#elif' as a new block opening. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 549 | PPCond.push_back(std::make_pair(HashOff, 0U)); |
| 550 | PPStartCond.push_back(index); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 551 | break; |
| 552 | } |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 553 | } |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 557 | } |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 558 | while (Tok.isNot(tok::eof)); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 559 | |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 560 | assert(PPStartCond.empty() && "Error: imblanced preprocessor conditionals."); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 561 | |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 562 | // Next write out PPCond. |
| 563 | Offset PPCondOff = (Offset) Out.tell(); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 564 | |
| 565 | // Write out the size of PPCond so that clients can identifer empty tables. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 566 | Emit32(PPCond.size()); |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 567 | |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 568 | for (unsigned i = 0, e = PPCond.size(); i!=e; ++i) { |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 569 | Emit32(PPCond[i].first - off); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 570 | uint32_t x = PPCond[i].second; |
| 571 | assert(x != 0 && "PPCond entry not backpatched."); |
| 572 | // Emit zero for #endifs. This allows us to do checking when |
| 573 | // we read the PTH file back in. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 574 | Emit32(x == i ? 0 : x); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 577 | return PTHEntry(off, PPCondOff); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 578 | } |
| 579 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 580 | Offset PTHWriter::EmitCachedSpellings() { |
| 581 | // Write each cached strings to the PTH file. |
| 582 | Offset SpellingsOff = Out.tell(); |
| 583 | |
| 584 | for (std::vector<llvm::StringMapEntry<OffsetOpt>*>::iterator |
| 585 | I = StrEntries.begin(), E = StrEntries.end(); I!=E; ++I) { |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 586 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 587 | const char* data = (*I)->getKeyData(); |
| 588 | EmitBuf(data, data + (*I)->getKeyLength()); |
| 589 | Emit8('\0'); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 590 | } |
| 591 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 592 | return SpellingsOff; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 593 | } |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 594 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 595 | void PTHWriter::GeneratePTH() { |
Ted Kremenek | e1b6498 | 2009-01-26 21:43:14 +0000 | [diff] [blame] | 596 | // Generate the prologue. |
| 597 | Out << "cfe-pth"; |
Ted Kremenek | 67d1505 | 2009-01-26 21:50:21 +0000 | [diff] [blame] | 598 | Emit32(PTHManager::Version); |
Ted Kremenek | a4bd8eb | 2009-02-11 23:34:32 +0000 | [diff] [blame] | 599 | |
| 600 | // Leave 4 words for the prologue. |
| 601 | Offset PrologueOffset = Out.tell(); |
| 602 | for (unsigned i = 0; i < 4 * sizeof(uint32_t); ++i) Emit8(0); |
Ted Kremenek | e1b6498 | 2009-01-26 21:43:14 +0000 | [diff] [blame] | 603 | |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 604 | // Iterate over all the files in SourceManager. Create a lexer |
| 605 | // for each file and cache the tokens. |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 606 | SourceManager &SM = PP.getSourceManager(); |
| 607 | const LangOptions &LOpts = PP.getLangOptions(); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 608 | |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 609 | for (SourceManager::fileinfo_iterator I = SM.fileinfo_begin(), |
| 610 | E = SM.fileinfo_end(); I != E; ++I) { |
Chris Lattner | 0d0bf8c | 2009-02-03 07:30:45 +0000 | [diff] [blame] | 611 | const SrcMgr::ContentCache &C = *I->second; |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 612 | const FileEntry *FE = C.Entry; |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 613 | |
| 614 | // FIXME: Handle files with non-absolute paths. |
| 615 | llvm::sys::Path P(FE->getName()); |
| 616 | if (!P.isAbsolute()) |
| 617 | continue; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 618 | |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 619 | const llvm::MemoryBuffer *B = C.getBuffer(); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 620 | if (!B) continue; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 621 | |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 622 | FileID FID = SM.createFileID(FE, SourceLocation(), SrcMgr::C_User); |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 623 | Lexer L(FID, SM, LOpts); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 624 | PM.insert(FE, LexTokens(L)); |
Daniel Dunbar | 31309ab | 2008-11-26 02:18:33 +0000 | [diff] [blame] | 625 | } |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 626 | |
| 627 | // Write out the identifier table. |
Ted Kremenek | f1de464 | 2009-02-11 16:06:55 +0000 | [diff] [blame] | 628 | const std::pair<Offset,Offset>& IdTableOff = EmitIdentifierTable(); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 629 | |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 630 | // Write out the cached strings table. |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 631 | Offset SpellingOff = EmitCachedSpellings(); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 632 | |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 633 | // Write out the file table. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 634 | Offset FileTableOff = EmitFileTable(); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 635 | |
Ted Kremenek | a4bd8eb | 2009-02-11 23:34:32 +0000 | [diff] [blame] | 636 | // Finally, write the prologue. |
| 637 | Out.seek(PrologueOffset); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 638 | Emit32(IdTableOff.first); |
Ted Kremenek | f1de464 | 2009-02-11 16:06:55 +0000 | [diff] [blame] | 639 | Emit32(IdTableOff.second); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 640 | Emit32(FileTableOff); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 641 | Emit32(SpellingOff); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 642 | } |
| 643 | |
| 644 | void clang::CacheTokens(Preprocessor& PP, const std::string& OutFile) { |
| 645 | // Lex through the entire file. This will populate SourceManager with |
| 646 | // all of the header information. |
| 647 | Token Tok; |
| 648 | PP.EnterMainSourceFile(); |
| 649 | do { PP.Lex(Tok); } while (Tok.isNot(tok::eof)); |
| 650 | |
| 651 | // Open up the PTH file. |
| 652 | std::string ErrMsg; |
| 653 | llvm::raw_fd_ostream Out(OutFile.c_str(), true, ErrMsg); |
| 654 | |
| 655 | if (!ErrMsg.empty()) { |
| 656 | llvm::errs() << "PTH error: " << ErrMsg << "\n"; |
| 657 | return; |
| 658 | } |
| 659 | |
| 660 | // Create the PTHWriter and generate the PTH file. |
| 661 | PTHWriter PW(Out, PP); |
| 662 | PW.GeneratePTH(); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 663 | } |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 664 | |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 665 | //===----------------------------------------------------------------------===// |
| 666 | |
| 667 | namespace { |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 668 | class VISIBILITY_HIDDEN PTHIdKey { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 669 | public: |
| 670 | const IdentifierInfo* II; |
| 671 | uint32_t FileOffset; |
| 672 | }; |
| 673 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 674 | class VISIBILITY_HIDDEN PTHIdentifierTableTrait { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 675 | public: |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 676 | typedef PTHIdKey* key_type; |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 677 | typedef key_type key_type_ref; |
| 678 | |
| 679 | typedef uint32_t data_type; |
| 680 | typedef data_type data_type_ref; |
| 681 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 682 | static unsigned ComputeHash(PTHIdKey* key) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 683 | return BernsteinHash(key->II->getName()); |
| 684 | } |
| 685 | |
| 686 | static std::pair<unsigned,unsigned> |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 687 | EmitKeyDataLength(llvm::raw_ostream& Out, const PTHIdKey* key, uint32_t) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 688 | unsigned n = strlen(key->II->getName()) + 1; |
| 689 | ::Emit16(Out, n); |
| 690 | return std::make_pair(n, sizeof(uint32_t)); |
| 691 | } |
| 692 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 693 | static void EmitKey(llvm::raw_fd_ostream& Out, PTHIdKey* key, unsigned n) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 694 | // Record the location of the key data. This is used when generating |
| 695 | // the mapping from persistent IDs to strings. |
| 696 | key->FileOffset = Out.tell(); |
| 697 | Out.write(key->II->getName(), n); |
| 698 | } |
| 699 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 700 | static void EmitData(llvm::raw_ostream& Out, PTHIdKey*, uint32_t pID, |
Ted Kremenek | 337edcd | 2009-02-12 03:26:59 +0000 | [diff] [blame] | 701 | unsigned) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 702 | ::Emit32(Out, pID); |
| 703 | } |
| 704 | }; |
| 705 | } // end anonymous namespace |
| 706 | |
| 707 | /// EmitIdentifierTable - Emits two tables to the PTH file. The first is |
| 708 | /// a hashtable mapping from identifier strings to persistent IDs. The second |
| 709 | /// is a straight table mapping from persistent IDs to string data (the |
| 710 | /// keys of the first table). |
| 711 | /// |
| 712 | std::pair<Offset,Offset> PTHWriter::EmitIdentifierTable() { |
| 713 | // Build two maps: |
| 714 | // (1) an inverse map from persistent IDs -> (IdentifierInfo*,Offset) |
| 715 | // (2) a map from (IdentifierInfo*, Offset)* -> persistent IDs |
| 716 | |
| 717 | // Note that we use 'calloc', so all the bytes are 0. |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 718 | PTHIdKey* IIDMap = (PTHIdKey*) calloc(idcount, sizeof(PTHIdKey)); |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 719 | |
| 720 | // Create the hashtable. |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame^] | 721 | OnDiskChainedHashTableGenerator<PTHIdentifierTableTrait> IIOffMap; |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 722 | |
| 723 | // Generate mapping from persistent IDs -> IdentifierInfo*. |
| 724 | for (IDMap::iterator I=IM.begin(), E=IM.end(); I!=E; ++I) { |
| 725 | // Decrement by 1 because we are using a vector for the lookup and |
| 726 | // 0 is reserved for NULL. |
| 727 | assert(I->second > 0); |
| 728 | assert(I->second-1 < idcount); |
| 729 | unsigned idx = I->second-1; |
| 730 | |
| 731 | // Store the mapping from persistent ID to IdentifierInfo* |
| 732 | IIDMap[idx].II = I->first; |
| 733 | |
| 734 | // Store the reverse mapping in a hashtable. |
| 735 | IIOffMap.insert(&IIDMap[idx], I->second); |
| 736 | } |
| 737 | |
| 738 | // Write out the inverse map first. This causes the PCIDKey entries to |
| 739 | // record PTH file offsets for the string data. This is used to write |
| 740 | // the second table. |
| 741 | Offset StringTableOffset = IIOffMap.Emit(Out); |
| 742 | |
| 743 | // Now emit the table mapping from persistent IDs to PTH file offsets. |
| 744 | Offset IDOff = Out.tell(); |
| 745 | Emit32(idcount); // Emit the number of identifiers. |
| 746 | for (unsigned i = 0 ; i < idcount; ++i) Emit32(IIDMap[i].FileOffset); |
| 747 | |
| 748 | // Finally, release the inverse map. |
| 749 | free(IIDMap); |
| 750 | |
| 751 | return std::make_pair(IDOff, StringTableOffset); |
| 752 | } |
| 753 | |
| 754 | |