blob: 8691b53d5658d1d20bb19811153cebd9b0ad6519 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SourceManager.cpp - Track and cache source files -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SourceManager interface.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Basic/SourceManager.h"
15#include "clang/Basic/FileManager.h"
Chris Lattner5e36a7a2007-07-24 05:57:19 +000016#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "llvm/Support/MemoryBuffer.h"
18#include "llvm/System/Path.h"
Ted Kremenek78d85f52007-10-30 21:08:08 +000019#include "llvm/Bitcode/Serialize.h"
20#include "llvm/Bitcode/Deserialize.h"
Ted Kremenek665dd4a2007-12-05 22:21:13 +000021#include "llvm/Support/Streams.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000023using namespace clang;
24using namespace SrcMgr;
25using llvm::MemoryBuffer;
26
Ted Kremenek5b034ad2009-01-06 22:43:04 +000027// This (temporary) directive toggles between lazy and eager creation of
28// MemBuffers. This directive is not permanent, and is here to test a few
29// potential optimizations in PTH. Once it is clear whether eager or lazy
30// creation of MemBuffers is better this directive will get removed.
31#define LAZY
32
Ted Kremenek78d85f52007-10-30 21:08:08 +000033ContentCache::~ContentCache() {
34 delete Buffer;
35 delete [] SourceLineCache;
Reid Spencer5f016e22007-07-11 17:01:13 +000036}
37
Ted Kremenekc16c2082009-01-06 01:55:26 +000038/// getSizeBytesMapped - Returns the number of bytes actually mapped for
39/// this ContentCache. This can be 0 if the MemBuffer was not actually
40/// instantiated.
41unsigned ContentCache::getSizeBytesMapped() const {
42 return Buffer ? Buffer->getBufferSize() : 0;
43}
44
45/// getSize - Returns the size of the content encapsulated by this ContentCache.
46/// This can be the size of the source file or the size of an arbitrary
47/// scratch buffer. If the ContentCache encapsulates a source file, that
48/// file is not lazily brought in from disk to satisfy this query.
49unsigned ContentCache::getSize() const {
50 return Entry ? Entry->getSize() : Buffer->getBufferSize();
51}
52
Ted Kremenek5b034ad2009-01-06 22:43:04 +000053const llvm::MemoryBuffer* ContentCache::getBuffer() const {
54#ifdef LAZY
55 // Lazily create the Buffer for ContentCaches that wrap files.
56 if (!Buffer && Entry) {
57 // FIXME: Should we support a way to not have to do this check over
58 // and over if we cannot open the file?
59 // FIXME: This const_cast is ugly. Should we make getBuffer() non-const?
60 const_cast<ContentCache*>(this)->Buffer =
61 MemoryBuffer::getFile(Entry->getName(), 0, Entry->getSize());
62 }
63#endif
Ted Kremenekc16c2082009-01-06 01:55:26 +000064 return Buffer;
65}
66
67
Reid Spencer5f016e22007-07-11 17:01:13 +000068/// getFileInfo - Create or return a cached FileInfo for the specified file.
69///
Ted Kremenek78d85f52007-10-30 21:08:08 +000070const ContentCache* SourceManager::getContentCache(const FileEntry *FileEnt) {
71
Reid Spencer5f016e22007-07-11 17:01:13 +000072 assert(FileEnt && "Didn't specify a file entry to use?");
73 // Do we already have information about this file?
Ted Kremenek78d85f52007-10-30 21:08:08 +000074 std::set<ContentCache>::iterator I =
75 FileInfos.lower_bound(ContentCache(FileEnt));
76
77 if (I != FileInfos.end() && I->Entry == FileEnt)
Reid Spencer5f016e22007-07-11 17:01:13 +000078 return &*I;
79
80 // Nope, get information.
Ted Kremenek5b034ad2009-01-06 22:43:04 +000081#ifndef LAZY
Chris Lattner3c1f7b62008-04-01 06:06:37 +000082 const MemoryBuffer *File =
Chris Lattner35de5122008-04-01 18:04:30 +000083 MemoryBuffer::getFile(FileEnt->getName(), 0, FileEnt->getSize());
Reid Spencer5f016e22007-07-11 17:01:13 +000084 if (File == 0)
85 return 0;
Ted Kremenek5b034ad2009-01-06 22:43:04 +000086#endif
87
Ted Kremenek78d85f52007-10-30 21:08:08 +000088 ContentCache& Entry = const_cast<ContentCache&>(*FileInfos.insert(I,FileEnt));
Ted Kremenek5b034ad2009-01-06 22:43:04 +000089#ifndef LAZY
Ted Kremenekc16c2082009-01-06 01:55:26 +000090 Entry.setBuffer(File);
Ted Kremenek5b034ad2009-01-06 22:43:04 +000091#endif
Ted Kremenek78d85f52007-10-30 21:08:08 +000092 Entry.SourceLineCache = 0;
93 Entry.NumLines = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +000094 return &Entry;
95}
96
97
Ted Kremenekd1c0eee2007-10-31 17:53:38 +000098/// createMemBufferContentCache - Create a new ContentCache for the specified
99/// memory buffer. This does no caching.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000100const ContentCache*
101SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
Ted Kremenek0d892d82007-10-30 22:57:35 +0000102 // Add a new ContentCache to the MemBufferInfos list and return it. We
103 // must default construct the object first that the instance actually
104 // stored within MemBufferInfos actually owns the Buffer, and not any
105 // temporary we would use in the call to "push_back".
Ted Kremenek78d85f52007-10-30 21:08:08 +0000106 MemBufferInfos.push_back(ContentCache());
107 ContentCache& Entry = const_cast<ContentCache&>(MemBufferInfos.back());
Ted Kremenekc16c2082009-01-06 01:55:26 +0000108 Entry.setBuffer(Buffer);
Ted Kremenek78d85f52007-10-30 21:08:08 +0000109 return &Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000110}
111
112
Nico Weber48002c82008-09-29 00:25:48 +0000113/// createFileID - Create a new fileID for the specified ContentCache and
Ted Kremenek0d892d82007-10-30 22:57:35 +0000114/// include position. This works regardless of whether the ContentCache
115/// corresponds to a file or some other input source.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000116unsigned SourceManager::createFileID(const ContentCache *File,
Nico Weber7bfaaae2008-08-10 19:59:06 +0000117 SourceLocation IncludePos,
Chris Lattner9d728512008-10-27 01:19:25 +0000118 SrcMgr::CharacteristicKind FileCharacter) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000119 // If FileEnt is really large (e.g. it's a large .i file), we may not be able
120 // to fit an arbitrary position in the file in the FilePos field. To handle
121 // this, we create one FileID for each chunk of the file that fits in a
122 // FilePos field.
Ted Kremenekc16c2082009-01-06 01:55:26 +0000123 unsigned FileSize = File->getSize();
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 if (FileSize+1 < (1 << SourceLocation::FilePosBits)) {
Chris Lattner0b9e7362008-09-26 21:18:42 +0000125 FileIDs.push_back(FileIDInfo::get(IncludePos, 0, File, FileCharacter));
Reid Spencer5f016e22007-07-11 17:01:13 +0000126 assert(FileIDs.size() < (1 << SourceLocation::FileIDBits) &&
127 "Ran out of file ID's!");
128 return FileIDs.size();
129 }
130
131 // Create one FileID for each chunk of the file.
132 unsigned Result = FileIDs.size()+1;
133
134 unsigned ChunkNo = 0;
135 while (1) {
Nico Weber7bfaaae2008-08-10 19:59:06 +0000136 FileIDs.push_back(FileIDInfo::get(IncludePos, ChunkNo++, File,
Chris Lattner0b9e7362008-09-26 21:18:42 +0000137 FileCharacter));
Reid Spencer5f016e22007-07-11 17:01:13 +0000138
139 if (FileSize+1 < (1 << SourceLocation::FilePosBits)) break;
140 FileSize -= (1 << SourceLocation::FilePosBits);
141 }
142
143 assert(FileIDs.size() < (1 << SourceLocation::FileIDBits) &&
144 "Ran out of file ID's!");
145 return Result;
146}
147
148/// getInstantiationLoc - Return a new SourceLocation that encodes the fact
149/// that a token from physloc PhysLoc should actually be referenced from
150/// InstantiationLoc.
Chris Lattner31bb8be2007-07-20 18:00:12 +0000151SourceLocation SourceManager::getInstantiationLoc(SourceLocation PhysLoc,
Reid Spencer5f016e22007-07-11 17:01:13 +0000152 SourceLocation InstantLoc) {
Chris Lattnerabca2bb2007-07-15 06:35:27 +0000153 // The specified source location may be a mapped location, due to a macro
154 // instantiation or #line directive. Strip off this information to find out
155 // where the characters are actually located.
Chris Lattner31bb8be2007-07-20 18:00:12 +0000156 PhysLoc = getPhysicalLoc(PhysLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000157
158 // Resolve InstantLoc down to a real logical location.
159 InstantLoc = getLogicalLoc(InstantLoc);
160
Chris Lattner31bb8be2007-07-20 18:00:12 +0000161
162 // If the last macro id is close to the currently requested location, try to
Chris Lattner991ae512007-08-02 03:55:37 +0000163 // reuse it. This implements a small cache.
164 for (int i = MacroIDs.size()-1, e = MacroIDs.size()-6; i >= 0 && i != e; --i){
165 MacroIDInfo &LastOne = MacroIDs[i];
Chris Lattnerd1623a82007-07-21 06:41:57 +0000166
Chris Lattner991ae512007-08-02 03:55:37 +0000167 // The instanitation point and source physloc have to exactly match to reuse
168 // (for now). We could allow "nearby" instantiations in the future.
Chris Lattner18807d22007-11-09 23:59:17 +0000169 if (LastOne.getVirtualLoc() != InstantLoc ||
Chris Lattner991ae512007-08-02 03:55:37 +0000170 LastOne.getPhysicalLoc().getFileID() != PhysLoc.getFileID())
171 continue;
172
173 // Check to see if the physloc of the token came from near enough to reuse.
174 int PhysDelta = PhysLoc.getRawFilePos() -
175 LastOne.getPhysicalLoc().getRawFilePos();
176 if (SourceLocation::isValidMacroPhysOffs(PhysDelta))
Chris Lattnerf8484542008-02-03 08:24:13 +0000177 return SourceLocation::getMacroLoc(i, PhysDelta);
Chris Lattner31bb8be2007-07-20 18:00:12 +0000178 }
179
Chris Lattner45011cf2007-07-20 18:26:45 +0000180
Chris Lattner9dc1f532007-07-20 16:37:10 +0000181 MacroIDs.push_back(MacroIDInfo::get(InstantLoc, PhysLoc));
Chris Lattnerf8484542008-02-03 08:24:13 +0000182 return SourceLocation::getMacroLoc(MacroIDs.size()-1, 0);
Reid Spencer5f016e22007-07-11 17:01:13 +0000183}
184
Chris Lattner8a12c272007-10-11 18:38:32 +0000185/// getBufferData - Return a pointer to the start and end of the character
186/// data for the specified FileID.
187std::pair<const char*, const char*>
188SourceManager::getBufferData(unsigned FileID) const {
189 const llvm::MemoryBuffer *Buf = getBuffer(FileID);
190 return std::make_pair(Buf->getBufferStart(), Buf->getBufferEnd());
191}
Reid Spencer5f016e22007-07-11 17:01:13 +0000192
193
194/// getCharacterData - Return a pointer to the start of the specified location
195/// in the appropriate MemoryBuffer.
196const char *SourceManager::getCharacterData(SourceLocation SL) const {
197 // Note that this is a hot function in the getSpelling() path, which is
198 // heavily used by -E mode.
Chris Lattner9dc1f532007-07-20 16:37:10 +0000199 SL = getPhysicalLoc(SL);
Reid Spencer5f016e22007-07-11 17:01:13 +0000200
Ted Kremenekc16c2082009-01-06 01:55:26 +0000201 // Note that calling 'getBuffer()' may lazily page in a source file.
202 return getContentCache(SL.getFileID())->getBuffer()->getBufferStart() +
Chris Lattner9dc1f532007-07-20 16:37:10 +0000203 getFullFilePos(SL);
Reid Spencer5f016e22007-07-11 17:01:13 +0000204}
205
Reid Spencer5f016e22007-07-11 17:01:13 +0000206
Chris Lattner9dc1f532007-07-20 16:37:10 +0000207/// getColumnNumber - Return the column # for the specified file position.
Reid Spencer5f016e22007-07-11 17:01:13 +0000208/// this is significantly cheaper to compute than the line number. This returns
209/// zero if the column number isn't known.
210unsigned SourceManager::getColumnNumber(SourceLocation Loc) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000211 unsigned FileID = Loc.getFileID();
212 if (FileID == 0) return 0;
213
Chris Lattner9dc1f532007-07-20 16:37:10 +0000214 unsigned FilePos = getFullFilePos(Loc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000215 const MemoryBuffer *Buffer = getBuffer(FileID);
216 const char *Buf = Buffer->getBufferStart();
217
218 unsigned LineStart = FilePos;
219 while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
220 --LineStart;
221 return FilePos-LineStart+1;
222}
223
224/// getSourceName - This method returns the name of the file or buffer that
225/// the SourceLocation specifies. This can be modified with #line directives,
226/// etc.
Chris Lattner8b6ca882007-08-30 05:59:30 +0000227const char *SourceManager::getSourceName(SourceLocation Loc) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000228 unsigned FileID = Loc.getFileID();
229 if (FileID == 0) return "";
Ted Kremenekc16c2082009-01-06 01:55:26 +0000230
231 // To get the source name, first consult the FileEntry (if one exists) before
232 // the MemBuffer as this will avoid unnecessarily paging in the MemBuffer.
233 const SrcMgr::ContentCache* C = getContentCache(FileID);
234 return C->Entry ? C->Entry->getName() : C->getBuffer()->getBufferIdentifier();
Reid Spencer5f016e22007-07-11 17:01:13 +0000235}
236
Ted Kremenek78d85f52007-10-30 21:08:08 +0000237static void ComputeLineNumbers(ContentCache* FI) DISABLE_INLINE;
Ted Kremenekc16c2082009-01-06 01:55:26 +0000238static void ComputeLineNumbers(ContentCache* FI) {
239 // Note that calling 'getBuffer()' may lazily page in the file.
240 const MemoryBuffer *Buffer = FI->getBuffer();
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000241
242 // Find the file offsets of all of the *physical* source lines. This does
243 // not look at trigraphs, escaped newlines, or anything else tricky.
244 std::vector<unsigned> LineOffsets;
245
246 // Line #1 starts at char 0.
247 LineOffsets.push_back(0);
248
249 const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
250 const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
251 unsigned Offs = 0;
252 while (1) {
253 // Skip over the contents of the line.
254 // TODO: Vectorize this? This is very performance sensitive for programs
255 // with lots of diagnostics and in -E mode.
256 const unsigned char *NextBuf = (const unsigned char *)Buf;
257 while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
258 ++NextBuf;
259 Offs += NextBuf-Buf;
260 Buf = NextBuf;
261
262 if (Buf[0] == '\n' || Buf[0] == '\r') {
263 // If this is \n\r or \r\n, skip both characters.
264 if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
265 ++Offs, ++Buf;
266 ++Offs, ++Buf;
267 LineOffsets.push_back(Offs);
268 } else {
269 // Otherwise, this is a null. If end of file, exit.
270 if (Buf == End) break;
271 // Otherwise, skip the null.
272 ++Offs, ++Buf;
273 }
274 }
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000275
276 // Copy the offsets into the FileInfo structure.
277 FI->NumLines = LineOffsets.size();
278 FI->SourceLineCache = new unsigned[LineOffsets.size()];
279 std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
280}
Reid Spencer5f016e22007-07-11 17:01:13 +0000281
282/// getLineNumber - Given a SourceLocation, return the physical line number
283/// for the position indicated. This requires building and caching a table of
284/// line offsets for the MemoryBuffer, so this is not cheap: use only when
285/// about to emit a diagnostic.
Chris Lattnerf812a452008-11-18 06:51:15 +0000286unsigned SourceManager::getLineNumber(SourceLocation Loc) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000287 unsigned FileID = Loc.getFileID();
288 if (FileID == 0) return 0;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000289
290 ContentCache* Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000291
292 if (LastLineNoFileIDQuery == FileID)
Ted Kremenek78d85f52007-10-30 21:08:08 +0000293 Content = LastLineNoContentCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000294 else
Ted Kremenek78d85f52007-10-30 21:08:08 +0000295 Content = const_cast<ContentCache*>(getContentCache(FileID));
Reid Spencer5f016e22007-07-11 17:01:13 +0000296
297 // If this is the first use of line information for this buffer, compute the
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000298 /// SourceLineCache for it on demand.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000299 if (Content->SourceLineCache == 0)
300 ComputeLineNumbers(Content);
Reid Spencer5f016e22007-07-11 17:01:13 +0000301
302 // Okay, we know we have a line number table. Do a binary search to find the
303 // line number that this character position lands on.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000304 unsigned *SourceLineCache = Content->SourceLineCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000305 unsigned *SourceLineCacheStart = SourceLineCache;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000306 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000307
308 unsigned QueriedFilePos = getFullFilePos(Loc)+1;
309
310 // If the previous query was to the same file, we know both the file pos from
311 // that query and the line number returned. This allows us to narrow the
312 // search space from the entire file to something near the match.
313 if (LastLineNoFileIDQuery == FileID) {
314 if (QueriedFilePos >= LastLineNoFilePos) {
315 SourceLineCache = SourceLineCache+LastLineNoResult-1;
316
317 // The query is likely to be nearby the previous one. Here we check to
318 // see if it is within 5, 10 or 20 lines. It can be far away in cases
319 // where big comment blocks and vertical whitespace eat up lines but
320 // contribute no tokens.
321 if (SourceLineCache+5 < SourceLineCacheEnd) {
322 if (SourceLineCache[5] > QueriedFilePos)
323 SourceLineCacheEnd = SourceLineCache+5;
324 else if (SourceLineCache+10 < SourceLineCacheEnd) {
325 if (SourceLineCache[10] > QueriedFilePos)
326 SourceLineCacheEnd = SourceLineCache+10;
327 else if (SourceLineCache+20 < SourceLineCacheEnd) {
328 if (SourceLineCache[20] > QueriedFilePos)
329 SourceLineCacheEnd = SourceLineCache+20;
330 }
331 }
332 }
333 } else {
334 SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
335 }
336 }
337
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000338 // If the spread is large, do a "radix" test as our initial guess, based on
339 // the assumption that lines average to approximately the same length.
340 // NOTE: This is currently disabled, as it does not appear to be profitable in
341 // initial measurements.
342 if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
Ted Kremenek78d85f52007-10-30 21:08:08 +0000343 unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000344
345 // Take a stab at guessing where it is.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000346 unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000347
348 // Check for -10 and +10 lines.
349 unsigned LowerBound = std::max(int(ApproxPos-10), 0);
350 unsigned UpperBound = std::min(ApproxPos+10, FileLen);
351
352 // If the computed lower bound is less than the query location, move it in.
353 if (SourceLineCache < SourceLineCacheStart+LowerBound &&
354 SourceLineCacheStart[LowerBound] < QueriedFilePos)
355 SourceLineCache = SourceLineCacheStart+LowerBound;
356
357 // If the computed upper bound is greater than the query location, move it.
358 if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
359 SourceLineCacheStart[UpperBound] >= QueriedFilePos)
360 SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
361 }
362
363 unsigned *Pos
364 = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000365 unsigned LineNo = Pos-SourceLineCacheStart;
366
367 LastLineNoFileIDQuery = FileID;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000368 LastLineNoContentCache = Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000369 LastLineNoFilePos = QueriedFilePos;
370 LastLineNoResult = LineNo;
371 return LineNo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000372}
373
Reid Spencer5f016e22007-07-11 17:01:13 +0000374/// PrintStats - Print statistics to stderr.
375///
376void SourceManager::PrintStats() const {
Ted Kremenek665dd4a2007-12-05 22:21:13 +0000377 llvm::cerr << "\n*** Source Manager Stats:\n";
378 llvm::cerr << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
379 << " mem buffers mapped, " << FileIDs.size()
380 << " file ID's allocated.\n";
381 llvm::cerr << " " << FileIDs.size() << " normal buffer FileID's, "
382 << MacroIDs.size() << " macro expansion FileID's.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000383
Reid Spencer5f016e22007-07-11 17:01:13 +0000384 unsigned NumLineNumsComputed = 0;
385 unsigned NumFileBytesMapped = 0;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000386 for (std::set<ContentCache>::const_iterator I =
Reid Spencer5f016e22007-07-11 17:01:13 +0000387 FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
Ted Kremenek78d85f52007-10-30 21:08:08 +0000388 NumLineNumsComputed += I->SourceLineCache != 0;
Ted Kremenekc16c2082009-01-06 01:55:26 +0000389 NumFileBytesMapped += I->getSizeBytesMapped();
Reid Spencer5f016e22007-07-11 17:01:13 +0000390 }
Ted Kremenek78d85f52007-10-30 21:08:08 +0000391
Ted Kremenek665dd4a2007-12-05 22:21:13 +0000392 llvm::cerr << NumFileBytesMapped << " bytes of files mapped, "
393 << NumLineNumsComputed << " files with line #'s computed.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +0000394}
Ted Kremeneke21272f2007-12-04 19:39:02 +0000395
396//===----------------------------------------------------------------------===//
397// Serialization.
398//===----------------------------------------------------------------------===//
Ted Kremenek099b4742007-12-05 00:14:18 +0000399
400void ContentCache::Emit(llvm::Serializer& S) const {
Ted Kremeneke21272f2007-12-04 19:39:02 +0000401 S.FlushRecord();
402 S.EmitPtr(this);
Ted Kremeneke21272f2007-12-04 19:39:02 +0000403
Ted Kremenek82dfaf72007-12-18 22:12:19 +0000404 if (Entry) {
405 llvm::sys::Path Fname(Buffer->getBufferIdentifier());
406
407 if (Fname.isAbsolute())
408 S.EmitCStr(Fname.c_str());
409 else {
410 // Create an absolute path.
411 // FIXME: This will potentially contain ".." and "." in the path.
412 llvm::sys::Path path = llvm::sys::Path::GetCurrentDirectory();
413 path.appendComponent(Fname.c_str());
414 S.EmitCStr(path.c_str());
415 }
416 }
Ted Kremenek099b4742007-12-05 00:14:18 +0000417 else {
Ted Kremeneke21272f2007-12-04 19:39:02 +0000418 const char* p = Buffer->getBufferStart();
419 const char* e = Buffer->getBufferEnd();
420
Ted Kremenek099b4742007-12-05 00:14:18 +0000421 S.EmitInt(e-p);
422
Ted Kremeneke21272f2007-12-04 19:39:02 +0000423 for ( ; p != e; ++p)
Ted Kremenek099b4742007-12-05 00:14:18 +0000424 S.EmitInt(*p);
Ted Kremeneke21272f2007-12-04 19:39:02 +0000425 }
426
Ted Kremenek099b4742007-12-05 00:14:18 +0000427 S.FlushRecord();
Ted Kremeneke21272f2007-12-04 19:39:02 +0000428}
Ted Kremenek099b4742007-12-05 00:14:18 +0000429
430void ContentCache::ReadToSourceManager(llvm::Deserializer& D,
431 SourceManager& SMgr,
432 FileManager* FMgr,
433 std::vector<char>& Buf) {
434 if (FMgr) {
435 llvm::SerializedPtrID PtrID = D.ReadPtrID();
436 D.ReadCStr(Buf,false);
437
438 // Create/fetch the FileEntry.
439 const char* start = &Buf[0];
440 const FileEntry* E = FMgr->getFile(start,start+Buf.size());
441
Ted Kremenekdb9c2292007-12-13 18:12:10 +0000442 // FIXME: Ideally we want a lazy materialization of the ContentCache
443 // anyway, because we don't want to read in source files unless this
444 // is absolutely needed.
445 if (!E)
446 D.RegisterPtr(PtrID,NULL);
Nico Weber48002c82008-09-29 00:25:48 +0000447 else
Ted Kremenekdb9c2292007-12-13 18:12:10 +0000448 // Get the ContextCache object and register it with the deserializer.
449 D.RegisterPtr(PtrID,SMgr.getContentCache(E));
Ted Kremenek099b4742007-12-05 00:14:18 +0000450 }
451 else {
452 // Register the ContextCache object with the deserializer.
453 SMgr.MemBufferInfos.push_back(ContentCache());
Nico Weber48002c82008-09-29 00:25:48 +0000454 ContentCache& Entry = const_cast<ContentCache&>(SMgr.MemBufferInfos.back());
Ted Kremenek099b4742007-12-05 00:14:18 +0000455 D.RegisterPtr(&Entry);
456
457 // Create the buffer.
458 unsigned Size = D.ReadInt();
459 Entry.Buffer = MemoryBuffer::getNewUninitMemBuffer(Size);
460
461 // Read the contents of the buffer.
462 char* p = const_cast<char*>(Entry.Buffer->getBufferStart());
463 for (unsigned i = 0; i < Size ; ++i)
464 p[i] = D.ReadInt();
465 }
466}
467
468void FileIDInfo::Emit(llvm::Serializer& S) const {
469 S.Emit(IncludeLoc);
470 S.EmitInt(ChunkNo);
471 S.EmitPtr(Content);
472}
473
474FileIDInfo FileIDInfo::ReadVal(llvm::Deserializer& D) {
475 FileIDInfo I;
476 I.IncludeLoc = SourceLocation::ReadVal(D);
477 I.ChunkNo = D.ReadInt();
478 D.ReadPtr(I.Content,false);
479 return I;
480}
481
482void MacroIDInfo::Emit(llvm::Serializer& S) const {
483 S.Emit(VirtualLoc);
484 S.Emit(PhysicalLoc);
485}
486
487MacroIDInfo MacroIDInfo::ReadVal(llvm::Deserializer& D) {
488 MacroIDInfo I;
489 I.VirtualLoc = SourceLocation::ReadVal(D);
490 I.PhysicalLoc = SourceLocation::ReadVal(D);
491 return I;
492}
493
494void SourceManager::Emit(llvm::Serializer& S) const {
Ted Kremenek1f941002007-12-05 00:19:51 +0000495 S.EnterBlock();
496 S.EmitPtr(this);
Ted Kremenek76edd0e2007-12-19 22:29:55 +0000497 S.EmitInt(MainFileID);
Ted Kremenek1f941002007-12-05 00:19:51 +0000498
Ted Kremenek099b4742007-12-05 00:14:18 +0000499 // Emit: FileInfos. Just emit the file name.
500 S.EnterBlock();
501
502 std::for_each(FileInfos.begin(),FileInfos.end(),
503 S.MakeEmitter<ContentCache>());
504
505 S.ExitBlock();
506
507 // Emit: MemBufferInfos
508 S.EnterBlock();
509
510 std::for_each(MemBufferInfos.begin(), MemBufferInfos.end(),
511 S.MakeEmitter<ContentCache>());
512
513 S.ExitBlock();
514
Nico Weber48002c82008-09-29 00:25:48 +0000515 // Emit: FileIDs
Ted Kremenek099b4742007-12-05 00:14:18 +0000516 S.EmitInt(FileIDs.size());
517 std::for_each(FileIDs.begin(), FileIDs.end(), S.MakeEmitter<FileIDInfo>());
518
519 // Emit: MacroIDs
520 S.EmitInt(MacroIDs.size());
521 std::for_each(MacroIDs.begin(), MacroIDs.end(), S.MakeEmitter<MacroIDInfo>());
Ted Kremenek1f941002007-12-05 00:19:51 +0000522
523 S.ExitBlock();
Ted Kremenek099b4742007-12-05 00:14:18 +0000524}
525
Ted Kremenek1f941002007-12-05 00:19:51 +0000526SourceManager*
527SourceManager::CreateAndRegister(llvm::Deserializer& D, FileManager& FMgr){
528 SourceManager *M = new SourceManager();
529 D.RegisterPtr(M);
530
Ted Kremenek76edd0e2007-12-19 22:29:55 +0000531 // Read: the FileID of the main source file of the translation unit.
532 M->MainFileID = D.ReadInt();
533
Ted Kremenek099b4742007-12-05 00:14:18 +0000534 std::vector<char> Buf;
535
536 { // Read: FileInfos.
537 llvm::Deserializer::Location BLoc = D.getCurrentBlockLocation();
538 while (!D.FinishedBlock(BLoc))
Ted Kremenek1f941002007-12-05 00:19:51 +0000539 ContentCache::ReadToSourceManager(D,*M,&FMgr,Buf);
Ted Kremenek099b4742007-12-05 00:14:18 +0000540 }
541
542 { // Read: MemBufferInfos.
543 llvm::Deserializer::Location BLoc = D.getCurrentBlockLocation();
544 while (!D.FinishedBlock(BLoc))
Ted Kremenek1f941002007-12-05 00:19:51 +0000545 ContentCache::ReadToSourceManager(D,*M,NULL,Buf);
Ted Kremenek099b4742007-12-05 00:14:18 +0000546 }
547
548 // Read: FileIDs.
549 unsigned Size = D.ReadInt();
Ted Kremenek1f941002007-12-05 00:19:51 +0000550 M->FileIDs.reserve(Size);
Ted Kremenek099b4742007-12-05 00:14:18 +0000551 for (; Size > 0 ; --Size)
Ted Kremenek1f941002007-12-05 00:19:51 +0000552 M->FileIDs.push_back(FileIDInfo::ReadVal(D));
Ted Kremenek099b4742007-12-05 00:14:18 +0000553
554 // Read: MacroIDs.
555 Size = D.ReadInt();
Ted Kremenek1f941002007-12-05 00:19:51 +0000556 M->MacroIDs.reserve(Size);
Ted Kremenek099b4742007-12-05 00:14:18 +0000557 for (; Size > 0 ; --Size)
Ted Kremenek1f941002007-12-05 00:19:51 +0000558 M->MacroIDs.push_back(MacroIDInfo::ReadVal(D));
559
560 return M;
Ted Kremenek1f2c7d12007-12-10 18:01:25 +0000561}