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 | |
Eli Friedman | b09f6e1 | 2009-05-19 04:14:29 +0000 | [diff] [blame^] | 15 | #include "clang/Frontend/Utils.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 16 | #include "clang/Basic/FileManager.h" |
| 17 | #include "clang/Basic/SourceManager.h" |
| 18 | #include "clang/Basic/IdentifierTable.h" |
| 19 | #include "clang/Basic/Diagnostic.h" |
Douglas Gregor | 9378ba4 | 2009-04-20 07:08:21 +0000 | [diff] [blame] | 20 | #include "clang/Basic/OnDiskHashTable.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 21 | #include "clang/Lex/Lexer.h" |
| 22 | #include "clang/Lex/Preprocessor.h" |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringMap.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 24 | #include "llvm/Support/MemoryBuffer.h" |
| 25 | #include "llvm/Support/raw_ostream.h" |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 26 | #include "llvm/System/Path.h" |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 27 | #include "llvm/Support/Compiler.h" |
Ted Kremenek | 72b1b15 | 2009-01-15 18:47:46 +0000 | [diff] [blame] | 28 | #include "llvm/Support/Streams.h" |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 29 | |
Cedric Venet | ea684e6 | 2009-02-14 16:15:20 +0000 | [diff] [blame] | 30 | // FIXME: put this somewhere else? |
| 31 | #ifndef S_ISDIR |
| 32 | #define S_ISDIR(x) (((x)&_S_IFDIR)!=0) |
| 33 | #endif |
| 34 | |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 35 | using namespace clang; |
Douglas Gregor | 9378ba4 | 2009-04-20 07:08:21 +0000 | [diff] [blame] | 36 | using namespace clang::io; |
Ted Kremenek | f0e1f79 | 2009-02-10 01:14:45 +0000 | [diff] [blame] | 37 | |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | // PTH-specific stuff. |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 42 | namespace { |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 43 | class VISIBILITY_HIDDEN PTHEntry { |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 44 | Offset TokenData, PPCondData; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 45 | |
| 46 | public: |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 47 | PTHEntry() {} |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 48 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 49 | PTHEntry(Offset td, Offset ppcd) |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 50 | : TokenData(td), PPCondData(ppcd) {} |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 51 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 52 | Offset getTokenOffset() const { return TokenData; } |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 53 | Offset getPPCondTableOffset() const { return PPCondData; } |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 54 | }; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 55 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 56 | |
| 57 | class VISIBILITY_HIDDEN PTHEntryKeyVariant { |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 58 | union { const FileEntry* FE; const char* Path; }; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 59 | enum { IsFE = 0x1, IsDE = 0x2, IsNoExist = 0x0 } Kind; |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 60 | struct stat *StatBuf; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 61 | public: |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 62 | PTHEntryKeyVariant(const FileEntry *fe) |
| 63 | : FE(fe), Kind(IsFE), StatBuf(0) {} |
| 64 | |
| 65 | PTHEntryKeyVariant(struct stat* statbuf, const char* path) |
| 66 | : Path(path), Kind(IsDE), StatBuf(new struct stat(*statbuf)) {} |
| 67 | |
| 68 | PTHEntryKeyVariant(const char* path) |
| 69 | : Path(path), Kind(IsNoExist), StatBuf(0) {} |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 70 | |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 71 | bool isFile() const { return Kind == IsFE; } |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 72 | |
| 73 | const char* getCString() const { |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 74 | return Kind == IsFE ? FE->getName() : Path; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | unsigned getKind() const { return (unsigned) Kind; } |
| 78 | |
| 79 | void EmitData(llvm::raw_ostream& Out) { |
| 80 | switch (Kind) { |
| 81 | case IsFE: |
| 82 | // Emit stat information. |
| 83 | ::Emit32(Out, FE->getInode()); |
| 84 | ::Emit32(Out, FE->getDevice()); |
| 85 | ::Emit16(Out, FE->getFileMode()); |
| 86 | ::Emit64(Out, FE->getModificationTime()); |
| 87 | ::Emit64(Out, FE->getSize()); |
| 88 | break; |
| 89 | case IsDE: |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 90 | // Emit stat information. |
| 91 | ::Emit32(Out, (uint32_t) StatBuf->st_ino); |
| 92 | ::Emit32(Out, (uint32_t) StatBuf->st_dev); |
| 93 | ::Emit16(Out, (uint16_t) StatBuf->st_mode); |
| 94 | ::Emit64(Out, (uint64_t) StatBuf->st_mtime); |
| 95 | ::Emit64(Out, (uint64_t) StatBuf->st_size); |
| 96 | delete StatBuf; |
| 97 | break; |
| 98 | default: |
| 99 | break; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
| 103 | unsigned getRepresentationLength() const { |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 104 | return Kind == IsNoExist ? 0 : 4 + 4 + 2 + 8 + 8; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 105 | } |
| 106 | }; |
| 107 | |
| 108 | class VISIBILITY_HIDDEN FileEntryPTHEntryInfo { |
| 109 | public: |
| 110 | typedef PTHEntryKeyVariant key_type; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 111 | typedef key_type key_type_ref; |
| 112 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 113 | typedef PTHEntry data_type; |
| 114 | typedef const PTHEntry& data_type_ref; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 115 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 116 | static unsigned ComputeHash(PTHEntryKeyVariant V) { |
| 117 | return BernsteinHash(V.getCString()); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | static std::pair<unsigned,unsigned> |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 121 | EmitKeyDataLength(llvm::raw_ostream& Out, PTHEntryKeyVariant V, |
| 122 | const PTHEntry& E) { |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 123 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 124 | unsigned n = strlen(V.getCString()) + 1 + 1; |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 125 | ::Emit16(Out, n); |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 126 | |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 127 | unsigned m = V.getRepresentationLength() + (V.isFile() ? 4 + 4 : 0); |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 128 | ::Emit8(Out, m); |
| 129 | |
| 130 | return std::make_pair(n, m); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 131 | } |
| 132 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 133 | static void EmitKey(llvm::raw_ostream& Out, PTHEntryKeyVariant V, unsigned n){ |
| 134 | // Emit the entry kind. |
| 135 | ::Emit8(Out, (unsigned) V.getKind()); |
| 136 | // Emit the string. |
| 137 | Out.write(V.getCString(), n - 1); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 140 | static void EmitData(llvm::raw_ostream& Out, PTHEntryKeyVariant V, |
| 141 | const PTHEntry& E, unsigned) { |
| 142 | |
| 143 | |
| 144 | // For file entries emit the offsets into the PTH file for token data |
| 145 | // and the preprocessor blocks table. |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 146 | if (V.isFile()) { |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 147 | ::Emit32(Out, E.getTokenOffset()); |
| 148 | ::Emit32(Out, E.getPPCondTableOffset()); |
| 149 | } |
| 150 | |
| 151 | // Emit any other data associated with the key (i.e., stat information). |
| 152 | V.EmitData(Out); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 153 | } |
| 154 | }; |
| 155 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 156 | class OffsetOpt { |
| 157 | bool valid; |
| 158 | Offset off; |
| 159 | public: |
| 160 | OffsetOpt() : valid(false) {} |
| 161 | bool hasOffset() const { return valid; } |
| 162 | Offset getOffset() const { assert(valid); return off; } |
| 163 | void setOffset(Offset o) { off = o; valid = true; } |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 164 | }; |
| 165 | } // end anonymous namespace |
| 166 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 167 | typedef OnDiskChainedHashTableGenerator<FileEntryPTHEntryInfo> PTHMap; |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 168 | typedef llvm::DenseMap<const IdentifierInfo*,uint32_t> IDMap; |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 169 | typedef llvm::StringMap<OffsetOpt, llvm::BumpPtrAllocator> CachedStrsTy; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 170 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 171 | namespace { |
| 172 | class VISIBILITY_HIDDEN PTHWriter { |
| 173 | IDMap IM; |
| 174 | llvm::raw_fd_ostream& Out; |
| 175 | Preprocessor& PP; |
| 176 | uint32_t idcount; |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 177 | PTHMap PM; |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 178 | CachedStrsTy CachedStrs; |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 179 | Offset CurStrOffset; |
| 180 | std::vector<llvm::StringMapEntry<OffsetOpt>*> StrEntries; |
Ted Kremenek | 8f174e1 | 2008-12-23 02:52:12 +0000 | [diff] [blame] | 181 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 182 | //// Get the persistent id for the given IdentifierInfo*. |
| 183 | uint32_t ResolveID(const IdentifierInfo* II); |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 184 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 185 | /// Emit a token to the PTH file. |
| 186 | void EmitToken(const Token& T); |
| 187 | |
| 188 | void Emit8(uint32_t V) { |
| 189 | Out << (unsigned char)(V); |
| 190 | } |
| 191 | |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 192 | void Emit16(uint32_t V) { ::Emit16(Out, V); } |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 193 | |
| 194 | void Emit24(uint32_t V) { |
| 195 | Out << (unsigned char)(V); |
| 196 | Out << (unsigned char)(V >> 8); |
| 197 | Out << (unsigned char)(V >> 16); |
| 198 | assert((V >> 24) == 0); |
| 199 | } |
| 200 | |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 201 | void Emit32(uint32_t V) { ::Emit32(Out, V); } |
| 202 | |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 203 | void EmitBuf(const char *Ptr, unsigned NumBytes) { |
| 204 | Out.write(Ptr, NumBytes); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 207 | /// EmitIdentifierTable - Emits two tables to the PTH file. The first is |
| 208 | /// a hashtable mapping from identifier strings to persistent IDs. |
| 209 | /// The second is a straight table mapping from persistent IDs to string data |
| 210 | /// (the keys of the first table). |
Ted Kremenek | f1de464 | 2009-02-11 16:06:55 +0000 | [diff] [blame] | 211 | std::pair<Offset, Offset> EmitIdentifierTable(); |
| 212 | |
| 213 | /// EmitFileTable - Emit a table mapping from file name strings to PTH |
| 214 | /// token data. |
| 215 | Offset EmitFileTable() { return PM.Emit(Out); } |
| 216 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 217 | PTHEntry LexTokens(Lexer& L); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 218 | Offset EmitCachedSpellings(); |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 219 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 220 | public: |
| 221 | PTHWriter(llvm::raw_fd_ostream& out, Preprocessor& pp) |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 222 | : Out(out), PP(pp), idcount(0), CurStrOffset(0) {} |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 223 | |
Chris Lattner | 52ba870 | 2009-03-28 00:55:35 +0000 | [diff] [blame] | 224 | PTHMap &getPM() { return PM; } |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 225 | void GeneratePTH(const std::string *MainFile = 0); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 226 | }; |
| 227 | } // end anonymous namespace |
| 228 | |
| 229 | uint32_t PTHWriter::ResolveID(const IdentifierInfo* II) { |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 230 | // Null IdentifierInfo's map to the persistent ID 0. |
| 231 | if (!II) |
| 232 | return 0; |
| 233 | |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 234 | IDMap::iterator I = IM.find(II); |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 235 | if (I != IM.end()) |
| 236 | return I->second; // We've already added 1. |
| 237 | |
| 238 | IM[II] = ++idcount; // Pre-increment since '0' is reserved for NULL. |
| 239 | return idcount; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 242 | void PTHWriter::EmitToken(const Token& T) { |
Ted Kremenek | f2a223f | 2009-02-24 01:26:56 +0000 | [diff] [blame] | 243 | // Emit the token kind, flags, and length. |
| 244 | Emit32(((uint32_t) T.getKind()) | ((((uint32_t) T.getFlags())) << 8)| |
| 245 | (((uint32_t) T.getLength()) << 16)); |
| 246 | |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 247 | if (!T.isLiteral()) { |
| 248 | Emit32(ResolveID(T.getIdentifierInfo())); |
| 249 | } else { |
Ted Kremenek | f2a223f | 2009-02-24 01:26:56 +0000 | [diff] [blame] | 250 | // We cache *un-cleaned* spellings. This gives us 100% fidelity with the |
| 251 | // source code. |
| 252 | const char* s = T.getLiteralData(); |
| 253 | unsigned len = T.getLength(); |
Ted Kremenek | 25cbd9f | 2009-02-24 00:30:21 +0000 | [diff] [blame] | 254 | |
Chris Lattner | 47246be | 2009-01-26 19:29:26 +0000 | [diff] [blame] | 255 | // Get the string entry. |
Ted Kremenek | f2a223f | 2009-02-24 01:26:56 +0000 | [diff] [blame] | 256 | llvm::StringMapEntry<OffsetOpt> *E = &CachedStrs.GetOrCreateValue(s, s+len); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 257 | |
Ted Kremenek | f2a223f | 2009-02-24 01:26:56 +0000 | [diff] [blame] | 258 | // If this is a new string entry, bump the PTH offset. |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 259 | if (!E->getValue().hasOffset()) { |
| 260 | E->getValue().setOffset(CurStrOffset); |
| 261 | StrEntries.push_back(E); |
Ted Kremenek | f2a223f | 2009-02-24 01:26:56 +0000 | [diff] [blame] | 262 | CurStrOffset += len + 1; |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Ted Kremenek | 25cbd9f | 2009-02-24 00:30:21 +0000 | [diff] [blame] | 265 | // Emit the relative offset into the PTH file for the spelling string. |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 266 | Emit32(E->getValue().getOffset()); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 267 | } |
Ted Kremenek | 25cbd9f | 2009-02-24 00:30:21 +0000 | [diff] [blame] | 268 | |
| 269 | // Emit the offset into the original source file of this token so that we |
| 270 | // can reconstruct its SourceLocation. |
Chris Lattner | 52c2908 | 2009-01-27 06:27:13 +0000 | [diff] [blame] | 271 | Emit32(PP.getSourceManager().getFileOffset(T.getLocation())); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 274 | PTHEntry PTHWriter::LexTokens(Lexer& L) { |
Ted Kremenek | 7b78b7c | 2009-01-19 23:13:15 +0000 | [diff] [blame] | 275 | // Pad 0's so that we emit tokens to a 4-byte alignment. |
| 276 | // This speed up reading them back in. |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 277 | Pad(Out, 4); |
| 278 | Offset off = (Offset) Out.tell(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 279 | |
| 280 | // Keep track of matching '#if' ... '#endif'. |
| 281 | typedef std::vector<std::pair<Offset, unsigned> > PPCondTable; |
| 282 | PPCondTable PPCond; |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 283 | std::vector<unsigned> PPStartCond; |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 284 | bool ParsingPreprocessorDirective = false; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 285 | Token Tok; |
| 286 | |
| 287 | do { |
| 288 | L.LexFromRawLexer(Tok); |
Ted Kremenek | 726080d | 2009-02-10 22:43:16 +0000 | [diff] [blame] | 289 | NextToken: |
| 290 | |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 291 | if ((Tok.isAtStartOfLine() || Tok.is(tok::eof)) && |
| 292 | ParsingPreprocessorDirective) { |
| 293 | // Insert an eom token into the token cache. It has the same |
| 294 | // position as the next token that is not on the same line as the |
| 295 | // preprocessor directive. Observe that we continue processing |
| 296 | // 'Tok' when we exit this branch. |
| 297 | Token Tmp = Tok; |
| 298 | Tmp.setKind(tok::eom); |
| 299 | Tmp.clearFlag(Token::StartOfLine); |
| 300 | Tmp.setIdentifierInfo(0); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 301 | EmitToken(Tmp); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 302 | ParsingPreprocessorDirective = false; |
| 303 | } |
| 304 | |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 305 | if (Tok.is(tok::identifier)) { |
| 306 | Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok)); |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 307 | EmitToken(Tok); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 308 | continue; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 309 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 310 | |
| 311 | if (Tok.is(tok::hash) && Tok.isAtStartOfLine()) { |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 312 | // Special processing for #include. Store the '#' token and lex |
| 313 | // the next token. |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 314 | assert(!ParsingPreprocessorDirective); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 315 | Offset HashOff = (Offset) Out.tell(); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 316 | EmitToken(Tok); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 317 | |
| 318 | // Get the next token. |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 319 | L.LexFromRawLexer(Tok); |
Chris Lattner | 2135619 | 2009-04-19 07:25:40 +0000 | [diff] [blame] | 320 | |
| 321 | // If we see the start of line, then we had a null directive "#". |
| 322 | if (Tok.isAtStartOfLine()) |
| 323 | goto NextToken; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 324 | |
| 325 | // Did we see 'include'/'import'/'include_next'? |
Chris Lattner | d4b1446 | 2009-04-19 07:15:51 +0000 | [diff] [blame] | 326 | if (Tok.isNot(tok::identifier)) { |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 327 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 328 | continue; |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 329 | } |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 330 | |
| 331 | IdentifierInfo* II = PP.LookUpIdentifierInfo(Tok); |
| 332 | Tok.setIdentifierInfo(II); |
| 333 | tok::PPKeywordKind K = II->getPPKeywordID(); |
| 334 | |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 335 | ParsingPreprocessorDirective = true; |
| 336 | |
| 337 | switch (K) { |
Chris Lattner | aa269c2 | 2009-04-19 07:32:03 +0000 | [diff] [blame] | 338 | case tok::pp_not_keyword: |
| 339 | // Invalid directives "#foo" can occur in #if 0 blocks etc, just pass |
| 340 | // them through. |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 341 | default: |
| 342 | break; |
Chris Lattner | aa269c2 | 2009-04-19 07:32:03 +0000 | [diff] [blame] | 343 | |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 344 | case tok::pp_include: |
| 345 | case tok::pp_import: |
| 346 | case tok::pp_include_next: { |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 347 | // Save the 'include' token. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 348 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 349 | // Lex the next token as an include string. |
| 350 | L.setParsingPreprocessorDirective(true); |
| 351 | L.LexIncludeFilename(Tok); |
| 352 | L.setParsingPreprocessorDirective(false); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 353 | assert(!Tok.isAtStartOfLine()); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 354 | if (Tok.is(tok::identifier)) |
| 355 | Tok.setIdentifierInfo(PP.LookUpIdentifierInfo(Tok)); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 356 | |
| 357 | break; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 358 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 359 | case tok::pp_if: |
| 360 | case tok::pp_ifdef: |
| 361 | case tok::pp_ifndef: { |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 362 | // Add an entry for '#if' and friends. We initially set the target |
| 363 | // index to 0. This will get backpatched when we hit #endif. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 364 | PPStartCond.push_back(PPCond.size()); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 365 | PPCond.push_back(std::make_pair(HashOff, 0U)); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 366 | break; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 367 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 368 | case tok::pp_endif: { |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 369 | // 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] | 370 | // This will later be set to zero when emitting to the PTH file. We |
| 371 | // use 0 for uninitialized indices because that is easier to debug. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 372 | unsigned index = PPCond.size(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 373 | // Backpatch the opening '#if' entry. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 374 | assert(!PPStartCond.empty()); |
| 375 | assert(PPCond.size() > PPStartCond.back()); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 376 | assert(PPCond[PPStartCond.back()].second == 0); |
| 377 | PPCond[PPStartCond.back()].second = index; |
| 378 | PPStartCond.pop_back(); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 379 | // Add the new entry to PPCond. |
| 380 | PPCond.push_back(std::make_pair(HashOff, index)); |
Ted Kremenek | 726080d | 2009-02-10 22:43:16 +0000 | [diff] [blame] | 381 | EmitToken(Tok); |
| 382 | |
| 383 | // Some files have gibberish on the same line as '#endif'. |
| 384 | // Discard these tokens. |
Chris Lattner | d4b1446 | 2009-04-19 07:15:51 +0000 | [diff] [blame] | 385 | do |
| 386 | L.LexFromRawLexer(Tok); |
| 387 | while (Tok.isNot(tok::eof) && !Tok.isAtStartOfLine()); |
Ted Kremenek | 726080d | 2009-02-10 22:43:16 +0000 | [diff] [blame] | 388 | // We have the next token in hand. |
| 389 | // Don't immediately lex the next one. |
| 390 | goto NextToken; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 391 | } |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 392 | case tok::pp_elif: |
| 393 | case tok::pp_else: { |
| 394 | // Add an entry for #elif or #else. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 395 | // This serves as both a closing and opening of a conditional block. |
| 396 | // This means that its entry will get backpatched later. |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 397 | unsigned index = PPCond.size(); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 398 | // Backpatch the previous '#if' entry. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 399 | assert(!PPStartCond.empty()); |
| 400 | assert(PPCond.size() > PPStartCond.back()); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 401 | assert(PPCond[PPStartCond.back()].second == 0); |
| 402 | PPCond[PPStartCond.back()].second = index; |
| 403 | PPStartCond.pop_back(); |
| 404 | // Now add '#elif' as a new block opening. |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 405 | PPCond.push_back(std::make_pair(HashOff, 0U)); |
| 406 | PPStartCond.push_back(index); |
Ted Kremenek | e5680f3 | 2008-12-23 01:30:52 +0000 | [diff] [blame] | 407 | break; |
| 408 | } |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 409 | } |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | EmitToken(Tok); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 413 | } |
Ted Kremenek | e4f6b1e | 2009-02-10 22:27:09 +0000 | [diff] [blame] | 414 | while (Tok.isNot(tok::eof)); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 415 | |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 416 | assert(PPStartCond.empty() && "Error: imblanced preprocessor conditionals."); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 417 | |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 418 | // Next write out PPCond. |
| 419 | Offset PPCondOff = (Offset) Out.tell(); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 420 | |
| 421 | // 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] | 422 | Emit32(PPCond.size()); |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 423 | |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 424 | for (unsigned i = 0, e = PPCond.size(); i!=e; ++i) { |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 425 | Emit32(PPCond[i].first - off); |
Ted Kremenek | dad7b34 | 2008-12-12 18:31:09 +0000 | [diff] [blame] | 426 | uint32_t x = PPCond[i].second; |
| 427 | assert(x != 0 && "PPCond entry not backpatched."); |
| 428 | // Emit zero for #endifs. This allows us to do checking when |
| 429 | // we read the PTH file back in. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 430 | Emit32(x == i ? 0 : x); |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 433 | return PTHEntry(off, PPCondOff); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 434 | } |
| 435 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 436 | Offset PTHWriter::EmitCachedSpellings() { |
| 437 | // Write each cached strings to the PTH file. |
| 438 | Offset SpellingsOff = Out.tell(); |
| 439 | |
| 440 | for (std::vector<llvm::StringMapEntry<OffsetOpt>*>::iterator |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 441 | I = StrEntries.begin(), E = StrEntries.end(); I!=E; ++I) |
| 442 | EmitBuf((*I)->getKeyData(), (*I)->getKeyLength()+1 /*nul included*/); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 443 | |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 444 | return SpellingsOff; |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 445 | } |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 446 | |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 447 | void PTHWriter::GeneratePTH(const std::string *MainFile) { |
Ted Kremenek | e1b6498 | 2009-01-26 21:43:14 +0000 | [diff] [blame] | 448 | // Generate the prologue. |
| 449 | Out << "cfe-pth"; |
Ted Kremenek | 67d1505 | 2009-01-26 21:50:21 +0000 | [diff] [blame] | 450 | Emit32(PTHManager::Version); |
Ted Kremenek | a4bd8eb | 2009-02-11 23:34:32 +0000 | [diff] [blame] | 451 | |
| 452 | // Leave 4 words for the prologue. |
| 453 | Offset PrologueOffset = Out.tell(); |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 454 | for (unsigned i = 0; i < 4; ++i) |
| 455 | Emit32(0); |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 456 | |
| 457 | // Write the name of the MainFile. |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 458 | if (MainFile && !MainFile->empty()) { |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 459 | Emit16(MainFile->length()); |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 460 | EmitBuf(MainFile->data(), MainFile->length()); |
| 461 | } else { |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 462 | // String with 0 bytes. |
| 463 | Emit16(0); |
| 464 | } |
| 465 | Emit8(0); |
Ted Kremenek | e1b6498 | 2009-01-26 21:43:14 +0000 | [diff] [blame] | 466 | |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 467 | // Iterate over all the files in SourceManager. Create a lexer |
| 468 | // for each file and cache the tokens. |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 469 | SourceManager &SM = PP.getSourceManager(); |
| 470 | const LangOptions &LOpts = PP.getLangOptions(); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 471 | |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 472 | for (SourceManager::fileinfo_iterator I = SM.fileinfo_begin(), |
| 473 | E = SM.fileinfo_end(); I != E; ++I) { |
Chris Lattner | 0d0bf8c | 2009-02-03 07:30:45 +0000 | [diff] [blame] | 474 | const SrcMgr::ContentCache &C = *I->second; |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 475 | const FileEntry *FE = C.Entry; |
Ted Kremenek | fc7e2ea | 2008-12-02 19:44:08 +0000 | [diff] [blame] | 476 | |
| 477 | // FIXME: Handle files with non-absolute paths. |
| 478 | llvm::sys::Path P(FE->getName()); |
| 479 | if (!P.isAbsolute()) |
| 480 | continue; |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 481 | |
Chris Lattner | c6fe32a | 2009-01-17 03:48:08 +0000 | [diff] [blame] | 482 | const llvm::MemoryBuffer *B = C.getBuffer(); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 483 | if (!B) continue; |
Ted Kremenek | fb645b6 | 2008-12-11 23:36:38 +0000 | [diff] [blame] | 484 | |
Chris Lattner | 2b2453a | 2009-01-17 06:22:33 +0000 | [diff] [blame] | 485 | FileID FID = SM.createFileID(FE, SourceLocation(), SrcMgr::C_User); |
Chris Lattner | 025c3a6 | 2009-01-17 07:35:14 +0000 | [diff] [blame] | 486 | Lexer L(FID, SM, LOpts); |
Ted Kremenek | d8c0292 | 2009-02-10 22:16:22 +0000 | [diff] [blame] | 487 | PM.insert(FE, LexTokens(L)); |
Daniel Dunbar | 31309ab | 2008-11-26 02:18:33 +0000 | [diff] [blame] | 488 | } |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 489 | |
| 490 | // Write out the identifier table. |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 491 | const std::pair<Offset,Offset> &IdTableOff = EmitIdentifierTable(); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 492 | |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 493 | // Write out the cached strings table. |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 494 | Offset SpellingOff = EmitCachedSpellings(); |
Ted Kremenek | be29533 | 2009-01-08 02:44:06 +0000 | [diff] [blame] | 495 | |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 496 | // Write out the file table. |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 497 | Offset FileTableOff = EmitFileTable(); |
Ted Kremenek | a3d764c | 2008-11-26 03:36:26 +0000 | [diff] [blame] | 498 | |
Ted Kremenek | a4bd8eb | 2009-02-11 23:34:32 +0000 | [diff] [blame] | 499 | // Finally, write the prologue. |
| 500 | Out.seek(PrologueOffset); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 501 | Emit32(IdTableOff.first); |
Ted Kremenek | f1de464 | 2009-02-11 16:06:55 +0000 | [diff] [blame] | 502 | Emit32(IdTableOff.second); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 503 | Emit32(FileTableOff); |
Ted Kremenek | 277faca | 2009-01-27 00:01:05 +0000 | [diff] [blame] | 504 | Emit32(SpellingOff); |
Ted Kremenek | b978c66 | 2009-01-08 01:17:37 +0000 | [diff] [blame] | 505 | } |
| 506 | |
Chris Lattner | 52ba870 | 2009-03-28 00:55:35 +0000 | [diff] [blame] | 507 | namespace { |
| 508 | /// StatListener - A simple "interpose" object used to monitor stat calls |
| 509 | /// invoked by FileManager while processing the original sources used |
| 510 | /// as input to PTH generation. StatListener populates the PTHWriter's |
| 511 | /// file map with stat information for directories as well as negative stats. |
| 512 | /// Stat information for files are populated elsewhere. |
| 513 | class StatListener : public StatSysCallCache { |
| 514 | PTHMap &PM; |
| 515 | public: |
| 516 | StatListener(PTHMap &pm) : PM(pm) {} |
| 517 | ~StatListener() {} |
| 518 | |
| 519 | int stat(const char *path, struct stat *buf) { |
| 520 | int result = ::stat(path, buf); |
| 521 | |
| 522 | if (result != 0) // Failed 'stat'. |
| 523 | PM.insert(path, PTHEntry()); |
| 524 | else if (S_ISDIR(buf->st_mode)) { |
| 525 | // Only cache directories with absolute paths. |
| 526 | if (!llvm::sys::Path(path).isAbsolute()) |
| 527 | return result; |
| 528 | |
| 529 | PM.insert(PTHEntryKeyVariant(buf, path), PTHEntry()); |
| 530 | } |
| 531 | |
| 532 | return result; |
| 533 | } |
| 534 | }; |
| 535 | } // end anonymous namespace |
| 536 | |
| 537 | |
Eli Friedman | f54fce8 | 2009-05-19 01:02:07 +0000 | [diff] [blame] | 538 | void clang::CacheTokens(Preprocessor &PP, llvm::raw_fd_ostream* OS) { |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 539 | // Get the name of the main file. |
| 540 | const SourceManager &SrcMgr = PP.getSourceManager(); |
| 541 | const FileEntry *MainFile = SrcMgr.getFileEntryForID(SrcMgr.getMainFileID()); |
| 542 | llvm::sys::Path MainFilePath(MainFile->getName()); |
| 543 | std::string MainFileName; |
| 544 | |
| 545 | if (!MainFilePath.isAbsolute()) { |
| 546 | llvm::sys::Path P = llvm::sys::Path::GetCurrentDirectory(); |
| 547 | P.appendComponent(MainFilePath.toString()); |
| 548 | MainFileName = P.toString(); |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 549 | } else { |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 550 | MainFileName = MainFilePath.toString(); |
| 551 | } |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 552 | |
| 553 | // Create the PTHWriter. |
Eli Friedman | f54fce8 | 2009-05-19 01:02:07 +0000 | [diff] [blame] | 554 | PTHWriter PW(*OS, PP); |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 555 | |
| 556 | // Install the 'stat' system call listener in the FileManager. |
Chris Lattner | 52ba870 | 2009-03-28 00:55:35 +0000 | [diff] [blame] | 557 | PP.getFileManager().setStatCache(new StatListener(PW.getPM())); |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 558 | |
| 559 | // Lex through the entire file. This will populate SourceManager with |
| 560 | // all of the header information. |
| 561 | Token Tok; |
| 562 | PP.EnterMainSourceFile(); |
| 563 | do { PP.Lex(Tok); } while (Tok.isNot(tok::eof)); |
| 564 | |
Ted Kremenek | ad6ce5c | 2009-02-13 22:07:44 +0000 | [diff] [blame] | 565 | // Generate the PTH file. |
| 566 | PP.getFileManager().setStatCache(0); |
Ted Kremenek | d5cded4 | 2009-03-19 22:10:38 +0000 | [diff] [blame] | 567 | PW.GeneratePTH(&MainFileName); |
Ted Kremenek | 8588896 | 2008-10-21 00:54:44 +0000 | [diff] [blame] | 568 | } |
Ted Kremenek | e0ea5dc | 2009-02-10 01:06:17 +0000 | [diff] [blame] | 569 | |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 570 | //===----------------------------------------------------------------------===// |
| 571 | |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 572 | class PTHIdKey { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 573 | public: |
| 574 | const IdentifierInfo* II; |
| 575 | uint32_t FileOffset; |
| 576 | }; |
| 577 | |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 578 | namespace { |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 579 | class VISIBILITY_HIDDEN PTHIdentifierTableTrait { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 580 | public: |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 581 | typedef PTHIdKey* key_type; |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 582 | typedef key_type key_type_ref; |
| 583 | |
| 584 | typedef uint32_t data_type; |
| 585 | typedef data_type data_type_ref; |
| 586 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 587 | static unsigned ComputeHash(PTHIdKey* key) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 588 | return BernsteinHash(key->II->getName()); |
| 589 | } |
| 590 | |
| 591 | static std::pair<unsigned,unsigned> |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 592 | EmitKeyDataLength(llvm::raw_ostream& Out, const PTHIdKey* key, uint32_t) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 593 | unsigned n = strlen(key->II->getName()) + 1; |
| 594 | ::Emit16(Out, n); |
| 595 | return std::make_pair(n, sizeof(uint32_t)); |
| 596 | } |
| 597 | |
Douglas Gregor | 3432fa5 | 2009-04-20 07:36:26 +0000 | [diff] [blame] | 598 | static void EmitKey(llvm::raw_ostream& Out, PTHIdKey* key, unsigned n) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 599 | // Record the location of the key data. This is used when generating |
| 600 | // the mapping from persistent IDs to strings. |
| 601 | key->FileOffset = Out.tell(); |
| 602 | Out.write(key->II->getName(), n); |
| 603 | } |
| 604 | |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 605 | static void EmitData(llvm::raw_ostream& Out, PTHIdKey*, uint32_t pID, |
Ted Kremenek | 337edcd | 2009-02-12 03:26:59 +0000 | [diff] [blame] | 606 | unsigned) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 607 | ::Emit32(Out, pID); |
| 608 | } |
| 609 | }; |
| 610 | } // end anonymous namespace |
| 611 | |
| 612 | /// EmitIdentifierTable - Emits two tables to the PTH file. The first is |
| 613 | /// a hashtable mapping from identifier strings to persistent IDs. The second |
| 614 | /// is a straight table mapping from persistent IDs to string data (the |
| 615 | /// keys of the first table). |
| 616 | /// |
| 617 | std::pair<Offset,Offset> PTHWriter::EmitIdentifierTable() { |
| 618 | // Build two maps: |
| 619 | // (1) an inverse map from persistent IDs -> (IdentifierInfo*,Offset) |
| 620 | // (2) a map from (IdentifierInfo*, Offset)* -> persistent IDs |
| 621 | |
| 622 | // Note that we use 'calloc', so all the bytes are 0. |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 623 | PTHIdKey *IIDMap = (PTHIdKey*)calloc(idcount, sizeof(PTHIdKey)); |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 624 | |
| 625 | // Create the hashtable. |
Ted Kremenek | a4b44dd | 2009-02-13 19:13:46 +0000 | [diff] [blame] | 626 | OnDiskChainedHashTableGenerator<PTHIdentifierTableTrait> IIOffMap; |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 627 | |
| 628 | // Generate mapping from persistent IDs -> IdentifierInfo*. |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 629 | for (IDMap::iterator I = IM.begin(), E = IM.end(); I != E; ++I) { |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 630 | // Decrement by 1 because we are using a vector for the lookup and |
| 631 | // 0 is reserved for NULL. |
| 632 | assert(I->second > 0); |
| 633 | assert(I->second-1 < idcount); |
| 634 | unsigned idx = I->second-1; |
| 635 | |
| 636 | // Store the mapping from persistent ID to IdentifierInfo* |
| 637 | IIDMap[idx].II = I->first; |
| 638 | |
| 639 | // Store the reverse mapping in a hashtable. |
| 640 | IIOffMap.insert(&IIDMap[idx], I->second); |
| 641 | } |
| 642 | |
| 643 | // Write out the inverse map first. This causes the PCIDKey entries to |
| 644 | // record PTH file offsets for the string data. This is used to write |
| 645 | // the second table. |
| 646 | Offset StringTableOffset = IIOffMap.Emit(Out); |
| 647 | |
| 648 | // Now emit the table mapping from persistent IDs to PTH file offsets. |
| 649 | Offset IDOff = Out.tell(); |
| 650 | Emit32(idcount); // Emit the number of identifiers. |
Chris Lattner | f239036 | 2009-03-28 00:16:20 +0000 | [diff] [blame] | 651 | for (unsigned i = 0 ; i < idcount; ++i) |
| 652 | Emit32(IIDMap[i].FileOffset); |
Ted Kremenek | 7e3a004 | 2009-02-11 21:29:16 +0000 | [diff] [blame] | 653 | |
| 654 | // Finally, release the inverse map. |
| 655 | free(IIDMap); |
| 656 | |
| 657 | return std::make_pair(IDOff, StringTableOffset); |
| 658 | } |