blob: 354bf7befbb3b99fa41692d1eed53139489c8a1a [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"
Douglas Gregord4f77aa2009-04-13 15:31:25 +000015#include "clang/Basic/SourceManagerInternals.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000016#include "clang/Basic/FileManager.h"
Chris Lattner5e36a7a2007-07-24 05:57:19 +000017#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000019#include "llvm/Support/raw_ostream.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/System/Path.h"
21#include <algorithm>
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23using namespace SrcMgr;
24using llvm::MemoryBuffer;
25
Chris Lattner23b5dc62009-02-04 00:40:31 +000026//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000027// SourceManager Helper Classes
Chris Lattner23b5dc62009-02-04 00:40:31 +000028//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000029
Ted Kremenek78d85f52007-10-30 21:08:08 +000030ContentCache::~ContentCache() {
31 delete Buffer;
Reid Spencer5f016e22007-07-11 17:01:13 +000032}
33
Ted Kremenekc16c2082009-01-06 01:55:26 +000034/// getSizeBytesMapped - Returns the number of bytes actually mapped for
35/// this ContentCache. This can be 0 if the MemBuffer was not actually
36/// instantiated.
37unsigned ContentCache::getSizeBytesMapped() const {
38 return Buffer ? Buffer->getBufferSize() : 0;
39}
40
41/// getSize - Returns the size of the content encapsulated by this ContentCache.
42/// This can be the size of the source file or the size of an arbitrary
43/// scratch buffer. If the ContentCache encapsulates a source file, that
Douglas Gregor29684422009-12-02 06:49:09 +000044/// file is not lazily brought in from disk to satisfy this query.
Ted Kremenekc16c2082009-01-06 01:55:26 +000045unsigned ContentCache::getSize() const {
Douglas Gregorb657f112009-09-22 21:11:38 +000046 return Buffer ? Buffer->getBufferSize() : Entry->getSize();
Ted Kremenekc16c2082009-01-06 01:55:26 +000047}
48
Douglas Gregor29684422009-12-02 06:49:09 +000049void ContentCache::replaceBuffer(const llvm::MemoryBuffer *B) {
Douglas Gregor109ae732009-12-03 17:05:59 +000050 assert(B != Buffer);
Douglas Gregor29684422009-12-02 06:49:09 +000051
52 delete Buffer;
53 Buffer = B;
54}
55
Chris Lattner39d98412009-12-01 22:52:33 +000056const llvm::MemoryBuffer *ContentCache::getBuffer(std::string *ErrorStr) const {
Ted Kremenek5b034ad2009-01-06 22:43:04 +000057 // Lazily create the Buffer for ContentCaches that wrap files.
58 if (!Buffer && Entry) {
Chris Lattner39d98412009-12-01 22:52:33 +000059 Buffer = MemoryBuffer::getFile(Entry->getName(), ErrorStr,Entry->getSize());
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000060
61 // If we were unable to open the file, then we are in an inconsistent
62 // situation where the content cache referenced a file which no longer
63 // exists. Most likely, we were using a stat cache with an invalid entry but
64 // the file could also have been removed during processing. Since we can't
65 // really deal with this situation, just create an empty buffer.
66 //
67 // FIXME: This is definitely not ideal, but our immediate clients can't
68 // currently handle returning a null entry here. Ideally we should detect
69 // that we are in an inconsistent situation and error out as quickly as
70 // possible.
71 if (!Buffer) {
72 const llvm::StringRef FillStr("<<<MISSING SOURCE FILE>>>\n");
73 Buffer = MemoryBuffer::getNewMemBuffer(Entry->getSize(), "<invalid>");
74 char *Ptr = const_cast<char*>(Buffer->getBufferStart());
75 for (unsigned i = 0, e = Entry->getSize(); i != e; ++i)
76 Ptr[i] = FillStr[i % FillStr.size()];
77 }
Ted Kremenek5b034ad2009-01-06 22:43:04 +000078 }
Ted Kremenekc16c2082009-01-06 01:55:26 +000079 return Buffer;
80}
81
Chris Lattner5b9a5042009-01-26 07:57:50 +000082unsigned LineTableInfo::getLineTableFilenameID(const char *Ptr, unsigned Len) {
83 // Look up the filename in the string table, returning the pre-existing value
84 // if it exists.
Mike Stump1eb44332009-09-09 15:08:12 +000085 llvm::StringMapEntry<unsigned> &Entry =
Chris Lattner5b9a5042009-01-26 07:57:50 +000086 FilenameIDs.GetOrCreateValue(Ptr, Ptr+Len, ~0U);
87 if (Entry.getValue() != ~0U)
88 return Entry.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +000089
Chris Lattner5b9a5042009-01-26 07:57:50 +000090 // Otherwise, assign this the next available ID.
91 Entry.setValue(FilenamesByID.size());
92 FilenamesByID.push_back(&Entry);
93 return FilenamesByID.size()-1;
94}
95
Chris Lattnerac50e342009-02-03 22:13:05 +000096/// AddLineNote - Add a line note to the line table that indicates that there
97/// is a #line at the specified FID/Offset location which changes the presumed
98/// location to LineNo/FilenameID.
Chris Lattner23b5dc62009-02-04 00:40:31 +000099void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
Chris Lattnerac50e342009-02-03 22:13:05 +0000100 unsigned LineNo, int FilenameID) {
Chris Lattner23b5dc62009-02-04 00:40:31 +0000101 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Chris Lattner23b5dc62009-02-04 00:40:31 +0000103 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
104 "Adding line entries out of order!");
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Chris Lattner9d79eba2009-02-04 05:21:58 +0000106 SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
Chris Lattner137b6a62009-02-04 06:25:26 +0000107 unsigned IncludeOffset = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000108
Chris Lattner9d79eba2009-02-04 05:21:58 +0000109 if (!Entries.empty()) {
110 // If this is a '#line 4' after '#line 42 "foo.h"', make sure to remember
111 // that we are still in "foo.h".
112 if (FilenameID == -1)
113 FilenameID = Entries.back().FilenameID;
Mike Stump1eb44332009-09-09 15:08:12 +0000114
Chris Lattner137b6a62009-02-04 06:25:26 +0000115 // If we are after a line marker that switched us to system header mode, or
116 // that set #include information, preserve it.
Chris Lattner9d79eba2009-02-04 05:21:58 +0000117 Kind = Entries.back().FileKind;
Chris Lattner137b6a62009-02-04 06:25:26 +0000118 IncludeOffset = Entries.back().IncludeOffset;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000119 }
Mike Stump1eb44332009-09-09 15:08:12 +0000120
Chris Lattner137b6a62009-02-04 06:25:26 +0000121 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
122 IncludeOffset));
Chris Lattnerac50e342009-02-03 22:13:05 +0000123}
124
Chris Lattner9d79eba2009-02-04 05:21:58 +0000125/// AddLineNote This is the same as the previous version of AddLineNote, but is
126/// used for GNU line markers. If EntryExit is 0, then this doesn't change the
127/// presumed #include stack. If it is 1, this is a file entry, if it is 2 then
128/// this is a file exit. FileKind specifies whether this is a system header or
129/// extern C system header.
130void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
131 unsigned LineNo, int FilenameID,
132 unsigned EntryExit,
133 SrcMgr::CharacteristicKind FileKind) {
134 assert(FilenameID != -1 && "Unspecified filename should use other accessor");
Mike Stump1eb44332009-09-09 15:08:12 +0000135
Chris Lattner9d79eba2009-02-04 05:21:58 +0000136 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000137
Chris Lattner9d79eba2009-02-04 05:21:58 +0000138 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
139 "Adding line entries out of order!");
140
Chris Lattner137b6a62009-02-04 06:25:26 +0000141 unsigned IncludeOffset = 0;
142 if (EntryExit == 0) { // No #include stack change.
143 IncludeOffset = Entries.empty() ? 0 : Entries.back().IncludeOffset;
144 } else if (EntryExit == 1) {
145 IncludeOffset = Offset-1;
146 } else if (EntryExit == 2) {
147 assert(!Entries.empty() && Entries.back().IncludeOffset &&
148 "PPDirectives should have caught case when popping empty include stack");
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Chris Lattner137b6a62009-02-04 06:25:26 +0000150 // Get the include loc of the last entries' include loc as our include loc.
151 IncludeOffset = 0;
152 if (const LineEntry *PrevEntry =
153 FindNearestLineEntry(FID, Entries.back().IncludeOffset))
154 IncludeOffset = PrevEntry->IncludeOffset;
155 }
Mike Stump1eb44332009-09-09 15:08:12 +0000156
Chris Lattner137b6a62009-02-04 06:25:26 +0000157 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
158 IncludeOffset));
Chris Lattner9d79eba2009-02-04 05:21:58 +0000159}
160
161
Chris Lattner3cd949c2009-02-04 01:55:42 +0000162/// FindNearestLineEntry - Find the line entry nearest to FID that is before
163/// it. If there is no line entry before Offset in FID, return null.
Mike Stump1eb44332009-09-09 15:08:12 +0000164const LineEntry *LineTableInfo::FindNearestLineEntry(unsigned FID,
Chris Lattner3cd949c2009-02-04 01:55:42 +0000165 unsigned Offset) {
166 const std::vector<LineEntry> &Entries = LineEntries[FID];
167 assert(!Entries.empty() && "No #line entries for this FID after all!");
168
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000169 // It is very common for the query to be after the last #line, check this
170 // first.
171 if (Entries.back().FileOffset <= Offset)
172 return &Entries.back();
Chris Lattner3cd949c2009-02-04 01:55:42 +0000173
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000174 // Do a binary search to find the maximal element that is still before Offset.
175 std::vector<LineEntry>::const_iterator I =
176 std::upper_bound(Entries.begin(), Entries.end(), Offset);
177 if (I == Entries.begin()) return 0;
178 return &*--I;
Chris Lattner3cd949c2009-02-04 01:55:42 +0000179}
Chris Lattnerac50e342009-02-03 22:13:05 +0000180
Douglas Gregorbd945002009-04-13 16:31:14 +0000181/// \brief Add a new line entry that has already been encoded into
182/// the internal representation of the line table.
Mike Stump1eb44332009-09-09 15:08:12 +0000183void LineTableInfo::AddEntry(unsigned FID,
Douglas Gregorbd945002009-04-13 16:31:14 +0000184 const std::vector<LineEntry> &Entries) {
185 LineEntries[FID] = Entries;
186}
Chris Lattnerac50e342009-02-03 22:13:05 +0000187
Chris Lattner5b9a5042009-01-26 07:57:50 +0000188/// getLineTableFilenameID - Return the uniqued ID for the specified filename.
Mike Stump1eb44332009-09-09 15:08:12 +0000189///
Chris Lattner5b9a5042009-01-26 07:57:50 +0000190unsigned SourceManager::getLineTableFilenameID(const char *Ptr, unsigned Len) {
191 if (LineTable == 0)
192 LineTable = new LineTableInfo();
193 return LineTable->getLineTableFilenameID(Ptr, Len);
194}
195
196
Chris Lattner4c4ea172009-02-03 21:52:55 +0000197/// AddLineNote - Add a line note to the line table for the FileID and offset
198/// specified by Loc. If FilenameID is -1, it is considered to be
199/// unspecified.
200void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
201 int FilenameID) {
Chris Lattnerac50e342009-02-03 22:13:05 +0000202 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000203
Chris Lattnerac50e342009-02-03 22:13:05 +0000204 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
205
206 // Remember that this file has #line directives now if it doesn't already.
207 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Chris Lattnerac50e342009-02-03 22:13:05 +0000209 if (LineTable == 0)
210 LineTable = new LineTableInfo();
Chris Lattner23b5dc62009-02-04 00:40:31 +0000211 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
Chris Lattner4c4ea172009-02-03 21:52:55 +0000212}
213
Chris Lattner9d79eba2009-02-04 05:21:58 +0000214/// AddLineNote - Add a GNU line marker to the line table.
215void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
216 int FilenameID, bool IsFileEntry,
217 bool IsFileExit, bool IsSystemHeader,
218 bool IsExternCHeader) {
219 // If there is no filename and no flags, this is treated just like a #line,
220 // which does not change the flags of the previous line marker.
221 if (FilenameID == -1) {
222 assert(!IsFileEntry && !IsFileExit && !IsSystemHeader && !IsExternCHeader &&
223 "Can't set flags without setting the filename!");
224 return AddLineNote(Loc, LineNo, FilenameID);
225 }
Mike Stump1eb44332009-09-09 15:08:12 +0000226
Chris Lattner9d79eba2009-02-04 05:21:58 +0000227 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
228 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Chris Lattner9d79eba2009-02-04 05:21:58 +0000230 // Remember that this file has #line directives now if it doesn't already.
231 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000232
Chris Lattner9d79eba2009-02-04 05:21:58 +0000233 if (LineTable == 0)
234 LineTable = new LineTableInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000235
Chris Lattner9d79eba2009-02-04 05:21:58 +0000236 SrcMgr::CharacteristicKind FileKind;
237 if (IsExternCHeader)
238 FileKind = SrcMgr::C_ExternCSystem;
239 else if (IsSystemHeader)
240 FileKind = SrcMgr::C_System;
241 else
242 FileKind = SrcMgr::C_User;
Mike Stump1eb44332009-09-09 15:08:12 +0000243
Chris Lattner9d79eba2009-02-04 05:21:58 +0000244 unsigned EntryExit = 0;
245 if (IsFileEntry)
246 EntryExit = 1;
247 else if (IsFileExit)
248 EntryExit = 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Chris Lattner9d79eba2009-02-04 05:21:58 +0000250 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
251 EntryExit, FileKind);
252}
253
Douglas Gregorbd945002009-04-13 16:31:14 +0000254LineTableInfo &SourceManager::getLineTable() {
255 if (LineTable == 0)
256 LineTable = new LineTableInfo();
257 return *LineTable;
258}
Chris Lattner4c4ea172009-02-03 21:52:55 +0000259
Chris Lattner23b5dc62009-02-04 00:40:31 +0000260//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000261// Private 'Create' methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000262//===----------------------------------------------------------------------===//
Ted Kremenekc16c2082009-01-06 01:55:26 +0000263
Chris Lattner5b9a5042009-01-26 07:57:50 +0000264SourceManager::~SourceManager() {
265 delete LineTable;
Mike Stump1eb44332009-09-09 15:08:12 +0000266
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000267 // Delete FileEntry objects corresponding to content caches. Since the actual
268 // content cache objects are bump pointer allocated, we just have to run the
269 // dtors, but we call the deallocate method for completeness.
270 for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i) {
271 MemBufferInfos[i]->~ContentCache();
272 ContentCacheAlloc.Deallocate(MemBufferInfos[i]);
273 }
274 for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator
275 I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
276 I->second->~ContentCache();
277 ContentCacheAlloc.Deallocate(I->second);
278 }
Chris Lattner5b9a5042009-01-26 07:57:50 +0000279}
280
281void SourceManager::clearIDTables() {
282 MainFileID = FileID();
283 SLocEntryTable.clear();
284 LastLineNoFileIDQuery = FileID();
285 LastLineNoContentCache = 0;
286 LastFileIDLookup = FileID();
Mike Stump1eb44332009-09-09 15:08:12 +0000287
Chris Lattner5b9a5042009-01-26 07:57:50 +0000288 if (LineTable)
289 LineTable->clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattner5b9a5042009-01-26 07:57:50 +0000291 // Use up FileID #0 as an invalid instantiation.
292 NextOffset = 0;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000293 createInstantiationLoc(SourceLocation(),SourceLocation(),SourceLocation(), 1);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000294}
295
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000296/// getOrCreateContentCache - Create or return a cached ContentCache for the
297/// specified file.
298const ContentCache *
299SourceManager::getOrCreateContentCache(const FileEntry *FileEnt) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000300 assert(FileEnt && "Didn't specify a file entry to use?");
Mike Stump1eb44332009-09-09 15:08:12 +0000301
Reid Spencer5f016e22007-07-11 17:01:13 +0000302 // Do we already have information about this file?
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000303 ContentCache *&Entry = FileInfos[FileEnt];
304 if (Entry) return Entry;
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattner00282d62009-02-03 07:41:46 +0000306 // Nope, create a new Cache entry. Make sure it is at least 8-byte aligned
307 // so that FileInfo can use the low 3 bits of the pointer for its own
308 // nefarious purposes.
309 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
310 EntryAlign = std::max(8U, EntryAlign);
311 Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000312 new (Entry) ContentCache(FileEnt);
313 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000314}
315
316
Ted Kremenekd1c0eee2007-10-31 17:53:38 +0000317/// createMemBufferContentCache - Create a new ContentCache for the specified
318/// memory buffer. This does no caching.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000319const ContentCache*
320SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
Chris Lattner00282d62009-02-03 07:41:46 +0000321 // Add a new ContentCache to the MemBufferInfos list and return it. Make sure
322 // it is at least 8-byte aligned so that FileInfo can use the low 3 bits of
323 // the pointer for its own nefarious purposes.
324 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
325 EntryAlign = std::max(8U, EntryAlign);
326 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000327 new (Entry) ContentCache();
328 MemBufferInfos.push_back(Entry);
329 Entry->setBuffer(Buffer);
330 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000331}
332
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000333void SourceManager::PreallocateSLocEntries(ExternalSLocEntrySource *Source,
334 unsigned NumSLocEntries,
335 unsigned NextOffset) {
336 ExternalSLocEntries = Source;
337 this->NextOffset = NextOffset;
338 SLocEntryLoaded.resize(NumSLocEntries + 1);
339 SLocEntryLoaded[0] = true;
340 SLocEntryTable.resize(SLocEntryTable.size() + NumSLocEntries);
341}
342
Douglas Gregor2bf1eb02009-04-27 21:28:04 +0000343void SourceManager::ClearPreallocatedSLocEntries() {
344 unsigned I = 0;
345 for (unsigned N = SLocEntryLoaded.size(); I != N; ++I)
346 if (!SLocEntryLoaded[I])
347 break;
348
349 // We've already loaded all preallocated source location entries.
350 if (I == SLocEntryLoaded.size())
351 return;
352
353 // Remove everything from location I onward.
354 SLocEntryTable.resize(I);
355 SLocEntryLoaded.clear();
356 ExternalSLocEntries = 0;
357}
358
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000359
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000360//===----------------------------------------------------------------------===//
361// Methods to create new FileID's and instantiations.
362//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000363
Nico Weber48002c82008-09-29 00:25:48 +0000364/// createFileID - Create a new fileID for the specified ContentCache and
Ted Kremenek0d892d82007-10-30 22:57:35 +0000365/// include position. This works regardless of whether the ContentCache
366/// corresponds to a file or some other input source.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000367FileID SourceManager::createFileID(const ContentCache *File,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000368 SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000369 SrcMgr::CharacteristicKind FileCharacter,
370 unsigned PreallocatedID,
371 unsigned Offset) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000372 if (PreallocatedID) {
373 // If we're filling in a preallocated ID, just load in the file
374 // entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000375 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000376 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000377 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000378 "Source location entry already loaded");
379 assert(Offset && "Preallocate source location cannot have zero offset");
Mike Stump1eb44332009-09-09 15:08:12 +0000380 SLocEntryTable[PreallocatedID]
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000381 = SLocEntry::get(Offset, FileInfo::get(IncludePos, File, FileCharacter));
382 SLocEntryLoaded[PreallocatedID] = true;
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000383 FileID FID = FileID::get(PreallocatedID);
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000384 return LastFileIDLookup = FID;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000385 }
386
Mike Stump1eb44332009-09-09 15:08:12 +0000387 SLocEntryTable.push_back(SLocEntry::get(NextOffset,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000388 FileInfo::get(IncludePos, File,
389 FileCharacter)));
Ted Kremenekc16c2082009-01-06 01:55:26 +0000390 unsigned FileSize = File->getSize();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000391 assert(NextOffset+FileSize+1 > NextOffset && "Ran out of source locations!");
392 NextOffset += FileSize+1;
Mike Stump1eb44332009-09-09 15:08:12 +0000393
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000394 // Set LastFileIDLookup to the newly created file. The next getFileID call is
395 // almost guaranteed to be from that file.
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000396 FileID FID = FileID::get(SLocEntryTable.size()-1);
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000397 return LastFileIDLookup = FID;
Reid Spencer5f016e22007-07-11 17:01:13 +0000398}
399
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000400/// createInstantiationLoc - Return a new SourceLocation that encodes the fact
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000401/// that a token from SpellingLoc should actually be referenced from
Reid Spencer5f016e22007-07-11 17:01:13 +0000402/// InstantiationLoc.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000403SourceLocation SourceManager::createInstantiationLoc(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000404 SourceLocation ILocStart,
405 SourceLocation ILocEnd,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000406 unsigned TokLength,
407 unsigned PreallocatedID,
408 unsigned Offset) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000409 InstantiationInfo II = InstantiationInfo::get(ILocStart,ILocEnd, SpellingLoc);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000410 if (PreallocatedID) {
411 // If we're filling in a preallocated ID, just load in the
412 // instantiation entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000413 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000414 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000415 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000416 "Source location entry already loaded");
417 assert(Offset && "Preallocate source location cannot have zero offset");
418 SLocEntryTable[PreallocatedID] = SLocEntry::get(Offset, II);
419 SLocEntryLoaded[PreallocatedID] = true;
420 return SourceLocation::getMacroLoc(Offset);
421 }
Chris Lattnere7fb4842009-02-15 20:52:18 +0000422 SLocEntryTable.push_back(SLocEntry::get(NextOffset, II));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000423 assert(NextOffset+TokLength+1 > NextOffset && "Ran out of source locations!");
424 NextOffset += TokLength+1;
425 return SourceLocation::getMacroLoc(NextOffset-(TokLength+1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000426}
427
Douglas Gregor29684422009-12-02 06:49:09 +0000428const llvm::MemoryBuffer *
429SourceManager::getMemoryBufferForFile(const FileEntry *File) {
430 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
431 if (IR == 0)
432 return 0;
433
434 return IR->getBuffer();
435}
436
437bool SourceManager::overrideFileContents(const FileEntry *SourceFile,
438 const llvm::MemoryBuffer *Buffer) {
439 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
440 if (IR == 0)
441 return true;
442
443 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer);
444 return false;
445}
446
Chris Lattner31530ba2009-01-19 07:32:13 +0000447/// getBufferData - Return a pointer to the start and end of the source buffer
448/// data for the specified FileID.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000449std::pair<const char*, const char*>
450SourceManager::getBufferData(FileID FID) const {
451 const llvm::MemoryBuffer *Buf = getBuffer(FID);
452 return std::make_pair(Buf->getBufferStart(), Buf->getBufferEnd());
453}
454
455
Chris Lattner23b5dc62009-02-04 00:40:31 +0000456//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000457// SourceLocation manipulation methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000458//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000459
460/// getFileIDSlow - Return the FileID for a SourceLocation. This is a very hot
461/// method that is used for all SourceManager queries that start with a
462/// SourceLocation object. It is responsible for finding the entry in
463/// SLocEntryTable which contains the specified location.
464///
465FileID SourceManager::getFileIDSlow(unsigned SLocOffset) const {
466 assert(SLocOffset && "Invalid FileID");
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000468 // After the first and second level caches, I see two common sorts of
469 // behavior: 1) a lot of searched FileID's are "near" the cached file location
470 // or are "near" the cached instantiation location. 2) others are just
471 // completely random and may be a very long way away.
472 //
473 // To handle this, we do a linear search for up to 8 steps to catch #1 quickly
474 // then we fall back to a less cache efficient, but more scalable, binary
475 // search to find the location.
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000477 // See if this is near the file point - worst case we start scanning from the
478 // most newly created FileID.
479 std::vector<SrcMgr::SLocEntry>::const_iterator I;
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000481 if (SLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) {
482 // Neither loc prunes our search.
483 I = SLocEntryTable.end();
484 } else {
485 // Perhaps it is near the file point.
486 I = SLocEntryTable.begin()+LastFileIDLookup.ID;
487 }
488
489 // Find the FileID that contains this. "I" is an iterator that points to a
490 // FileID whose offset is known to be larger than SLocOffset.
491 unsigned NumProbes = 0;
492 while (1) {
493 --I;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000494 if (ExternalSLocEntries)
495 getSLocEntry(FileID::get(I - SLocEntryTable.begin()));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000496 if (I->getOffset() <= SLocOffset) {
497#if 0
498 printf("lin %d -> %d [%s] %d %d\n", SLocOffset,
499 I-SLocEntryTable.begin(),
500 I->isInstantiation() ? "inst" : "file",
501 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
502#endif
503 FileID Res = FileID::get(I-SLocEntryTable.begin());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000504
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000505 // If this isn't an instantiation, remember it. We have good locality
506 // across FileID lookups.
507 if (!I->isInstantiation())
508 LastFileIDLookup = Res;
509 NumLinearScans += NumProbes+1;
510 return Res;
511 }
512 if (++NumProbes == 8)
513 break;
514 }
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000516 // Convert "I" back into an index. We know that it is an entry whose index is
517 // larger than the offset we are looking for.
518 unsigned GreaterIndex = I-SLocEntryTable.begin();
519 // LessIndex - This is the lower bound of the range that we're searching.
520 // We know that the offset corresponding to the FileID is is less than
521 // SLocOffset.
522 unsigned LessIndex = 0;
523 NumProbes = 0;
524 while (1) {
525 unsigned MiddleIndex = (GreaterIndex-LessIndex)/2+LessIndex;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000526 unsigned MidOffset = getSLocEntry(FileID::get(MiddleIndex)).getOffset();
Mike Stump1eb44332009-09-09 15:08:12 +0000527
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000528 ++NumProbes;
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000530 // If the offset of the midpoint is too large, chop the high side of the
531 // range to the midpoint.
532 if (MidOffset > SLocOffset) {
533 GreaterIndex = MiddleIndex;
534 continue;
535 }
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000537 // If the middle index contains the value, succeed and return.
538 if (isOffsetInFileID(FileID::get(MiddleIndex), SLocOffset)) {
539#if 0
540 printf("bin %d -> %d [%s] %d %d\n", SLocOffset,
541 I-SLocEntryTable.begin(),
542 I->isInstantiation() ? "inst" : "file",
543 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
544#endif
545 FileID Res = FileID::get(MiddleIndex);
546
547 // If this isn't an instantiation, remember it. We have good locality
548 // across FileID lookups.
549 if (!I->isInstantiation())
550 LastFileIDLookup = Res;
551 NumBinaryProbes += NumProbes;
552 return Res;
553 }
Mike Stump1eb44332009-09-09 15:08:12 +0000554
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000555 // Otherwise, move the low-side up to the middle index.
556 LessIndex = MiddleIndex;
557 }
558}
559
Chris Lattneraddb7972009-01-26 20:04:19 +0000560SourceLocation SourceManager::
561getInstantiationLocSlowCase(SourceLocation Loc) const {
562 do {
563 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
Chris Lattnere7fb4842009-02-15 20:52:18 +0000564 Loc = getSLocEntry(LocInfo.first).getInstantiation()
565 .getInstantiationLocStart();
Chris Lattneraddb7972009-01-26 20:04:19 +0000566 Loc = Loc.getFileLocWithOffset(LocInfo.second);
567 } while (!Loc.isFileID());
568
569 return Loc;
570}
571
572SourceLocation SourceManager::getSpellingLocSlowCase(SourceLocation Loc) const {
573 do {
574 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
575 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
576 Loc = Loc.getFileLocWithOffset(LocInfo.second);
577 } while (!Loc.isFileID());
578 return Loc;
579}
580
581
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000582std::pair<FileID, unsigned>
583SourceManager::getDecomposedInstantiationLocSlowCase(const SrcMgr::SLocEntry *E,
584 unsigned Offset) const {
585 // If this is an instantiation record, walk through all the instantiation
586 // points.
587 FileID FID;
588 SourceLocation Loc;
589 do {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000590 Loc = E->getInstantiation().getInstantiationLocStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000592 FID = getFileID(Loc);
593 E = &getSLocEntry(FID);
594 Offset += Loc.getOffset()-E->getOffset();
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000595 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000596
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000597 return std::make_pair(FID, Offset);
598}
599
600std::pair<FileID, unsigned>
601SourceManager::getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
602 unsigned Offset) const {
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000603 // If this is an instantiation record, walk through all the instantiation
604 // points.
605 FileID FID;
606 SourceLocation Loc;
607 do {
608 Loc = E->getInstantiation().getSpellingLoc();
Mike Stump1eb44332009-09-09 15:08:12 +0000609
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000610 FID = getFileID(Loc);
611 E = &getSLocEntry(FID);
612 Offset += Loc.getOffset()-E->getOffset();
613 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000615 return std::make_pair(FID, Offset);
616}
617
Chris Lattner387616e2009-02-17 08:04:48 +0000618/// getImmediateSpellingLoc - Given a SourceLocation object, return the
619/// spelling location referenced by the ID. This is the first level down
620/// towards the place where the characters that make up the lexed token can be
621/// found. This should not generally be used by clients.
622SourceLocation SourceManager::getImmediateSpellingLoc(SourceLocation Loc) const{
623 if (Loc.isFileID()) return Loc;
624 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
625 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
626 return Loc.getFileLocWithOffset(LocInfo.second);
627}
628
629
Chris Lattnere7fb4842009-02-15 20:52:18 +0000630/// getImmediateInstantiationRange - Loc is required to be an instantiation
631/// location. Return the start/end of the instantiation information.
632std::pair<SourceLocation,SourceLocation>
633SourceManager::getImmediateInstantiationRange(SourceLocation Loc) const {
634 assert(Loc.isMacroID() && "Not an instantiation loc!");
635 const InstantiationInfo &II = getSLocEntry(getFileID(Loc)).getInstantiation();
636 return II.getInstantiationLocRange();
637}
638
Chris Lattner66781332009-02-15 21:26:50 +0000639/// getInstantiationRange - Given a SourceLocation object, return the
640/// range of tokens covered by the instantiation in the ultimate file.
641std::pair<SourceLocation,SourceLocation>
642SourceManager::getInstantiationRange(SourceLocation Loc) const {
643 if (Loc.isFileID()) return std::make_pair(Loc, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000644
Chris Lattner66781332009-02-15 21:26:50 +0000645 std::pair<SourceLocation,SourceLocation> Res =
646 getImmediateInstantiationRange(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000647
Chris Lattner66781332009-02-15 21:26:50 +0000648 // Fully resolve the start and end locations to their ultimate instantiation
649 // points.
650 while (!Res.first.isFileID())
651 Res.first = getImmediateInstantiationRange(Res.first).first;
652 while (!Res.second.isFileID())
653 Res.second = getImmediateInstantiationRange(Res.second).second;
654 return Res;
655}
656
Chris Lattnere7fb4842009-02-15 20:52:18 +0000657
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000658
659//===----------------------------------------------------------------------===//
660// Queries about the code at a SourceLocation.
661//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000662
663/// getCharacterData - Return a pointer to the start of the specified location
664/// in the appropriate MemoryBuffer.
665const char *SourceManager::getCharacterData(SourceLocation SL) const {
666 // Note that this is a hot function in the getSpelling() path, which is
667 // heavily used by -E mode.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000668 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
Mike Stump1eb44332009-09-09 15:08:12 +0000669
Ted Kremenekc16c2082009-01-06 01:55:26 +0000670 // Note that calling 'getBuffer()' may lazily page in a source file.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000671 return getSLocEntry(LocInfo.first).getFile().getContentCache()
672 ->getBuffer()->getBufferStart() + LocInfo.second;
Reid Spencer5f016e22007-07-11 17:01:13 +0000673}
674
Reid Spencer5f016e22007-07-11 17:01:13 +0000675
Chris Lattner9dc1f532007-07-20 16:37:10 +0000676/// getColumnNumber - Return the column # for the specified file position.
Chris Lattner7da5aea2009-02-04 00:55:58 +0000677/// this is significantly cheaper to compute than the line number.
678unsigned SourceManager::getColumnNumber(FileID FID, unsigned FilePos) const {
679 const char *Buf = getBuffer(FID)->getBufferStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000680
Reid Spencer5f016e22007-07-11 17:01:13 +0000681 unsigned LineStart = FilePos;
682 while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
683 --LineStart;
684 return FilePos-LineStart+1;
685}
686
Chris Lattner7da5aea2009-02-04 00:55:58 +0000687unsigned SourceManager::getSpellingColumnNumber(SourceLocation Loc) const {
Chris Lattner30fc9332009-02-04 01:06:56 +0000688 if (Loc.isInvalid()) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000689 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
690 return getColumnNumber(LocInfo.first, LocInfo.second);
691}
692
693unsigned SourceManager::getInstantiationColumnNumber(SourceLocation Loc) const {
Chris Lattner30fc9332009-02-04 01:06:56 +0000694 if (Loc.isInvalid()) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000695 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
696 return getColumnNumber(LocInfo.first, LocInfo.second);
697}
698
699
700
Benjamin Kramerc997eb42009-11-14 16:36:57 +0000701static DISABLE_INLINE void ComputeLineNumbers(ContentCache* FI,
702 llvm::BumpPtrAllocator &Alloc);
Mike Stump1eb44332009-09-09 15:08:12 +0000703static void ComputeLineNumbers(ContentCache* FI, llvm::BumpPtrAllocator &Alloc){
Ted Kremenekc16c2082009-01-06 01:55:26 +0000704 // Note that calling 'getBuffer()' may lazily page in the file.
705 const MemoryBuffer *Buffer = FI->getBuffer();
Mike Stump1eb44332009-09-09 15:08:12 +0000706
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000707 // Find the file offsets of all of the *physical* source lines. This does
708 // not look at trigraphs, escaped newlines, or anything else tricky.
709 std::vector<unsigned> LineOffsets;
Mike Stump1eb44332009-09-09 15:08:12 +0000710
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000711 // Line #1 starts at char 0.
712 LineOffsets.push_back(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000713
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000714 const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
715 const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
716 unsigned Offs = 0;
717 while (1) {
718 // Skip over the contents of the line.
719 // TODO: Vectorize this? This is very performance sensitive for programs
720 // with lots of diagnostics and in -E mode.
721 const unsigned char *NextBuf = (const unsigned char *)Buf;
722 while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
723 ++NextBuf;
724 Offs += NextBuf-Buf;
725 Buf = NextBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000727 if (Buf[0] == '\n' || Buf[0] == '\r') {
728 // If this is \n\r or \r\n, skip both characters.
729 if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
730 ++Offs, ++Buf;
731 ++Offs, ++Buf;
732 LineOffsets.push_back(Offs);
733 } else {
734 // Otherwise, this is a null. If end of file, exit.
735 if (Buf == End) break;
736 // Otherwise, skip the null.
737 ++Offs, ++Buf;
738 }
739 }
Mike Stump1eb44332009-09-09 15:08:12 +0000740
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000741 // Copy the offsets into the FileInfo structure.
742 FI->NumLines = LineOffsets.size();
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000743 FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000744 std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
745}
Reid Spencer5f016e22007-07-11 17:01:13 +0000746
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000747/// getLineNumber - Given a SourceLocation, return the spelling line number
Reid Spencer5f016e22007-07-11 17:01:13 +0000748/// for the position indicated. This requires building and caching a table of
749/// line offsets for the MemoryBuffer, so this is not cheap: use only when
750/// about to emit a diagnostic.
Chris Lattner30fc9332009-02-04 01:06:56 +0000751unsigned SourceManager::getLineNumber(FileID FID, unsigned FilePos) const {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000752 ContentCache *Content;
Chris Lattner30fc9332009-02-04 01:06:56 +0000753 if (LastLineNoFileIDQuery == FID)
Ted Kremenek78d85f52007-10-30 21:08:08 +0000754 Content = LastLineNoContentCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000755 else
Chris Lattner30fc9332009-02-04 01:06:56 +0000756 Content = const_cast<ContentCache*>(getSLocEntry(FID)
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000757 .getFile().getContentCache());
Mike Stump1eb44332009-09-09 15:08:12 +0000758
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 // If this is the first use of line information for this buffer, compute the
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000760 /// SourceLineCache for it on demand.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000761 if (Content->SourceLineCache == 0)
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000762 ComputeLineNumbers(Content, ContentCacheAlloc);
Reid Spencer5f016e22007-07-11 17:01:13 +0000763
764 // Okay, we know we have a line number table. Do a binary search to find the
765 // line number that this character position lands on.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000766 unsigned *SourceLineCache = Content->SourceLineCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000767 unsigned *SourceLineCacheStart = SourceLineCache;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000768 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
Mike Stump1eb44332009-09-09 15:08:12 +0000769
Chris Lattner30fc9332009-02-04 01:06:56 +0000770 unsigned QueriedFilePos = FilePos+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000771
Daniel Dunbar4106d692009-05-18 17:30:52 +0000772 // FIXME: I would like to be convinced that this code is worth being as
Mike Stump1eb44332009-09-09 15:08:12 +0000773 // complicated as it is, binary search isn't that slow.
Daniel Dunbar4106d692009-05-18 17:30:52 +0000774 //
775 // If it is worth being optimized, then in my opinion it could be more
776 // performant, simpler, and more obviously correct by just "galloping" outward
777 // from the queried file position. In fact, this could be incorporated into a
778 // generic algorithm such as lower_bound_with_hint.
779 //
780 // If someone gives me a test case where this matters, and I will do it! - DWD
781
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000782 // If the previous query was to the same file, we know both the file pos from
783 // that query and the line number returned. This allows us to narrow the
784 // search space from the entire file to something near the match.
Chris Lattner30fc9332009-02-04 01:06:56 +0000785 if (LastLineNoFileIDQuery == FID) {
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000786 if (QueriedFilePos >= LastLineNoFilePos) {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000787 // FIXME: Potential overflow?
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000788 SourceLineCache = SourceLineCache+LastLineNoResult-1;
Mike Stump1eb44332009-09-09 15:08:12 +0000789
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000790 // The query is likely to be nearby the previous one. Here we check to
791 // see if it is within 5, 10 or 20 lines. It can be far away in cases
792 // where big comment blocks and vertical whitespace eat up lines but
793 // contribute no tokens.
794 if (SourceLineCache+5 < SourceLineCacheEnd) {
795 if (SourceLineCache[5] > QueriedFilePos)
796 SourceLineCacheEnd = SourceLineCache+5;
797 else if (SourceLineCache+10 < SourceLineCacheEnd) {
798 if (SourceLineCache[10] > QueriedFilePos)
799 SourceLineCacheEnd = SourceLineCache+10;
800 else if (SourceLineCache+20 < SourceLineCacheEnd) {
801 if (SourceLineCache[20] > QueriedFilePos)
802 SourceLineCacheEnd = SourceLineCache+20;
803 }
804 }
805 }
806 } else {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000807 if (LastLineNoResult < Content->NumLines)
808 SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000809 }
810 }
Mike Stump1eb44332009-09-09 15:08:12 +0000811
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000812 // If the spread is large, do a "radix" test as our initial guess, based on
813 // the assumption that lines average to approximately the same length.
814 // NOTE: This is currently disabled, as it does not appear to be profitable in
815 // initial measurements.
816 if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
Ted Kremenek78d85f52007-10-30 21:08:08 +0000817 unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
Mike Stump1eb44332009-09-09 15:08:12 +0000818
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000819 // Take a stab at guessing where it is.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000820 unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000822 // Check for -10 and +10 lines.
823 unsigned LowerBound = std::max(int(ApproxPos-10), 0);
824 unsigned UpperBound = std::min(ApproxPos+10, FileLen);
825
826 // If the computed lower bound is less than the query location, move it in.
827 if (SourceLineCache < SourceLineCacheStart+LowerBound &&
828 SourceLineCacheStart[LowerBound] < QueriedFilePos)
829 SourceLineCache = SourceLineCacheStart+LowerBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000831 // If the computed upper bound is greater than the query location, move it.
832 if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
833 SourceLineCacheStart[UpperBound] >= QueriedFilePos)
834 SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
835 }
Mike Stump1eb44332009-09-09 15:08:12 +0000836
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000837 unsigned *Pos
838 = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000839 unsigned LineNo = Pos-SourceLineCacheStart;
Mike Stump1eb44332009-09-09 15:08:12 +0000840
Chris Lattner30fc9332009-02-04 01:06:56 +0000841 LastLineNoFileIDQuery = FID;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000842 LastLineNoContentCache = Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000843 LastLineNoFilePos = QueriedFilePos;
844 LastLineNoResult = LineNo;
845 return LineNo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000846}
847
Chris Lattner30fc9332009-02-04 01:06:56 +0000848unsigned SourceManager::getInstantiationLineNumber(SourceLocation Loc) const {
849 if (Loc.isInvalid()) return 0;
850 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
851 return getLineNumber(LocInfo.first, LocInfo.second);
852}
853unsigned SourceManager::getSpellingLineNumber(SourceLocation Loc) const {
854 if (Loc.isInvalid()) return 0;
855 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
856 return getLineNumber(LocInfo.first, LocInfo.second);
857}
858
Chris Lattner6b306672009-02-04 05:33:01 +0000859/// getFileCharacteristic - return the file characteristic of the specified
Mike Stump1eb44332009-09-09 15:08:12 +0000860/// source location, indicating whether this is a normal file, a system
Chris Lattner6b306672009-02-04 05:33:01 +0000861/// header, or an "implicit extern C" system header.
862///
863/// This state can be modified with flags on GNU linemarker directives like:
864/// # 4 "foo.h" 3
865/// which changes all source locations in the current file after that to be
866/// considered to be from a system header.
Mike Stump1eb44332009-09-09 15:08:12 +0000867SrcMgr::CharacteristicKind
Chris Lattner6b306672009-02-04 05:33:01 +0000868SourceManager::getFileCharacteristic(SourceLocation Loc) const {
869 assert(!Loc.isInvalid() && "Can't get file characteristic of invalid loc!");
870 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
871 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
872
873 // If there are no #line directives in this file, just return the whole-file
874 // state.
875 if (!FI.hasLineDirectives())
876 return FI.getFileCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Chris Lattner6b306672009-02-04 05:33:01 +0000878 assert(LineTable && "Can't have linetable entries without a LineTable!");
879 // See if there is a #line directive before the location.
880 const LineEntry *Entry =
881 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second);
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Chris Lattner6b306672009-02-04 05:33:01 +0000883 // If this is before the first line marker, use the file characteristic.
884 if (!Entry)
885 return FI.getFileCharacteristic();
886
887 return Entry->FileKind;
888}
889
Chris Lattnerbff5c512009-02-17 08:39:06 +0000890/// Return the filename or buffer identifier of the buffer the location is in.
891/// Note that this name does not respect #line directives. Use getPresumedLoc
892/// for normal clients.
893const char *SourceManager::getBufferName(SourceLocation Loc) const {
894 if (Loc.isInvalid()) return "<invalid loc>";
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Chris Lattnerbff5c512009-02-17 08:39:06 +0000896 return getBuffer(getFileID(Loc))->getBufferIdentifier();
897}
898
Chris Lattner30fc9332009-02-04 01:06:56 +0000899
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000900/// getPresumedLoc - This method returns the "presumed" location of a
901/// SourceLocation specifies. A "presumed location" can be modified by #line
902/// or GNU line marker directives. This provides a view on the data that a
903/// user should see in diagnostics, for example.
904///
905/// Note that a presumed location is always given as the instantiation point
906/// of an instantiation location, not at the spelling location.
907PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc) const {
908 if (Loc.isInvalid()) return PresumedLoc();
Mike Stump1eb44332009-09-09 15:08:12 +0000909
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000910 // Presumed locations are always for instantiation points.
Chris Lattner7da5aea2009-02-04 00:55:58 +0000911 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Chris Lattner30fc9332009-02-04 01:06:56 +0000913 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000914 const SrcMgr::ContentCache *C = FI.getContentCache();
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Chris Lattner3cd949c2009-02-04 01:55:42 +0000916 // To get the source name, first consult the FileEntry (if one exists)
917 // before the MemBuffer as this will avoid unnecessarily paging in the
918 // MemBuffer.
Mike Stump1eb44332009-09-09 15:08:12 +0000919 const char *Filename =
Chris Lattnerb9c3f962009-01-27 07:57:44 +0000920 C->Entry ? C->Entry->getName() : C->getBuffer()->getBufferIdentifier();
Chris Lattner3cd949c2009-02-04 01:55:42 +0000921 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second);
922 unsigned ColNo = getColumnNumber(LocInfo.first, LocInfo.second);
923 SourceLocation IncludeLoc = FI.getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +0000924
Chris Lattner3cd949c2009-02-04 01:55:42 +0000925 // If we have #line directives in this file, update and overwrite the physical
926 // location info if appropriate.
927 if (FI.hasLineDirectives()) {
928 assert(LineTable && "Can't have linetable entries without a LineTable!");
929 // See if there is a #line directive before this. If so, get it.
930 if (const LineEntry *Entry =
931 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second)) {
Chris Lattnerfc391332009-02-04 02:00:59 +0000932 // If the LineEntry indicates a filename, use it.
Chris Lattner3cd949c2009-02-04 01:55:42 +0000933 if (Entry->FilenameID != -1)
934 Filename = LineTable->getFilename(Entry->FilenameID);
Chris Lattnerfc391332009-02-04 02:00:59 +0000935
936 // Use the line number specified by the LineEntry. This line number may
937 // be multiple lines down from the line entry. Add the difference in
938 // physical line numbers from the query point and the line marker to the
939 // total.
940 unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
941 LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1);
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Chris Lattner0e0e5da2009-02-04 02:15:40 +0000943 // Note that column numbers are not molested by line markers.
Mike Stump1eb44332009-09-09 15:08:12 +0000944
Chris Lattner137b6a62009-02-04 06:25:26 +0000945 // Handle virtual #include manipulation.
946 if (Entry->IncludeOffset) {
947 IncludeLoc = getLocForStartOfFile(LocInfo.first);
948 IncludeLoc = IncludeLoc.getFileLocWithOffset(Entry->IncludeOffset);
949 }
Chris Lattner3cd949c2009-02-04 01:55:42 +0000950 }
951 }
952
953 return PresumedLoc(Filename, LineNo, ColNo, IncludeLoc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000954}
955
956//===----------------------------------------------------------------------===//
957// Other miscellaneous methods.
958//===----------------------------------------------------------------------===//
959
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000960/// \brief Get the source location for the given file:line:col triplet.
961///
962/// If the source file is included multiple times, the source location will
963/// be based upon the first inclusion.
964SourceLocation SourceManager::getLocation(const FileEntry *SourceFile,
965 unsigned Line, unsigned Col) const {
966 assert(SourceFile && "Null source file!");
967 assert(Line && Col && "Line and column should start from 1!");
968
969 fileinfo_iterator FI = FileInfos.find(SourceFile);
970 if (FI == FileInfos.end())
971 return SourceLocation();
972 ContentCache *Content = FI->second;
Mike Stump1eb44332009-09-09 15:08:12 +0000973
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000974 // If this is the first use of line information for this buffer, compute the
975 /// SourceLineCache for it on demand.
976 if (Content->SourceLineCache == 0)
977 ComputeLineNumbers(Content, ContentCacheAlloc);
978
979 if (Line > Content->NumLines)
980 return SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000981
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000982 unsigned FilePos = Content->SourceLineCache[Line - 1];
Argyrios Kyrtzidis081445c2009-06-25 18:22:16 +0000983 const char *Buf = Content->getBuffer()->getBufferStart() + FilePos;
Argyrios Kyrtzidis93edc3c2009-06-20 08:40:15 +0000984 unsigned BufLength = Content->getBuffer()->getBufferEnd() - Buf;
985 unsigned i = 0;
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000986
987 // Check that the given column is valid.
Argyrios Kyrtzidis93edc3c2009-06-20 08:40:15 +0000988 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
989 ++i;
990 if (i < Col-1)
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000991 return SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Douglas Gregor4a160e12009-12-02 05:34:39 +0000993 // Find the first file ID that corresponds to the given file.
994 FileID FirstFID;
995
996 // First, check the main file ID, since it is common to look for a
997 // location in the main file.
998 if (!MainFileID.isInvalid()) {
999 const SLocEntry &MainSLoc = getSLocEntry(MainFileID);
1000 if (MainSLoc.isFile() && MainSLoc.getFile().getContentCache() == Content)
1001 FirstFID = MainFileID;
1002 }
1003
1004 if (FirstFID.isInvalid()) {
1005 // The location we're looking for isn't in the main file; look
1006 // through all of the source locations.
1007 for (unsigned I = 0, N = sloc_entry_size(); I != N; ++I) {
1008 const SLocEntry &SLoc = getSLocEntry(I);
1009 if (SLoc.isFile() && SLoc.getFile().getContentCache() == Content) {
1010 FirstFID = FileID::get(I);
1011 break;
1012 }
1013 }
1014 }
1015
1016 if (FirstFID.isInvalid())
1017 return SourceLocation();
1018
1019 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(FilePos + Col - 1);
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001020}
1021
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001022/// \brief Determines the order of 2 source locations in the translation unit.
1023///
1024/// \returns true if LHS source location comes before RHS, false otherwise.
1025bool SourceManager::isBeforeInTranslationUnit(SourceLocation LHS,
1026 SourceLocation RHS) const {
1027 assert(LHS.isValid() && RHS.isValid() && "Passed invalid source location!");
1028 if (LHS == RHS)
1029 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001031 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
1032 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001034 // If the source locations are in the same file, just compare offsets.
1035 if (LOffs.first == ROffs.first)
1036 return LOffs.second < ROffs.second;
1037
1038 // If we are comparing a source location with multiple locations in the same
1039 // file, we get a big win by caching the result.
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001041 if (LastLFIDForBeforeTUCheck == LOffs.first &&
1042 LastRFIDForBeforeTUCheck == ROffs.first)
1043 return LastResForBeforeTUCheck;
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001045 LastLFIDForBeforeTUCheck = LOffs.first;
1046 LastRFIDForBeforeTUCheck = ROffs.first;
Mike Stump1eb44332009-09-09 15:08:12 +00001047
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001048 // "Traverse" the include/instantiation stacks of both locations and try to
1049 // find a common "ancestor".
1050 //
1051 // First we traverse the stack of the right location and check each level
1052 // against the level of the left location, while collecting all levels in a
1053 // "stack map".
1054
1055 std::map<FileID, unsigned> ROffsMap;
1056 ROffsMap[ROffs.first] = ROffs.second;
1057
1058 while (1) {
1059 SourceLocation UpperLoc;
1060 const SrcMgr::SLocEntry &Entry = getSLocEntry(ROffs.first);
1061 if (Entry.isInstantiation())
1062 UpperLoc = Entry.getInstantiation().getInstantiationLocStart();
1063 else
1064 UpperLoc = Entry.getFile().getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001065
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001066 if (UpperLoc.isInvalid())
1067 break; // We reached the top.
Mike Stump1eb44332009-09-09 15:08:12 +00001068
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001069 ROffs = getDecomposedLoc(UpperLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001071 if (LOffs.first == ROffs.first)
1072 return LastResForBeforeTUCheck = LOffs.second < ROffs.second;
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001074 ROffsMap[ROffs.first] = ROffs.second;
1075 }
1076
1077 // We didn't find a common ancestor. Now traverse the stack of the left
1078 // location, checking against the stack map of the right location.
1079
1080 while (1) {
1081 SourceLocation UpperLoc;
1082 const SrcMgr::SLocEntry &Entry = getSLocEntry(LOffs.first);
1083 if (Entry.isInstantiation())
1084 UpperLoc = Entry.getInstantiation().getInstantiationLocStart();
1085 else
1086 UpperLoc = Entry.getFile().getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001087
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001088 if (UpperLoc.isInvalid())
1089 break; // We reached the top.
Mike Stump1eb44332009-09-09 15:08:12 +00001090
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001091 LOffs = getDecomposedLoc(UpperLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001092
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001093 std::map<FileID, unsigned>::iterator I = ROffsMap.find(LOffs.first);
1094 if (I != ROffsMap.end())
1095 return LastResForBeforeTUCheck = LOffs.second < I->second;
1096 }
Mike Stump1eb44332009-09-09 15:08:12 +00001097
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001098 // There is no common ancestor, most probably because one location is in the
1099 // predefines buffer.
1100 //
1101 // FIXME: We should rearrange the external interface so this simply never
1102 // happens; it can't conceptually happen. Also see PR5662.
Mike Stump1eb44332009-09-09 15:08:12 +00001103
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001104 // If exactly one location is a memory buffer, assume it preceeds the other.
1105 bool LIsMB = !getSLocEntry(LOffs.first).getFile().getContentCache()->Entry;
1106 bool RIsMB = !getSLocEntry(ROffs.first).getFile().getContentCache()->Entry;
1107 if (LIsMB != RIsMB)
1108 return LastResForBeforeTUCheck = LIsMB;
Mike Stump1eb44332009-09-09 15:08:12 +00001109
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001110 // Otherwise, just assume FileIDs were created in order.
1111 return LastResForBeforeTUCheck = (LOffs.first < ROffs.first);
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001112}
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001113
Reid Spencer5f016e22007-07-11 17:01:13 +00001114/// PrintStats - Print statistics to stderr.
1115///
1116void SourceManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001117 llvm::errs() << "\n*** Source Manager Stats:\n";
1118 llvm::errs() << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
1119 << " mem buffers mapped.\n";
1120 llvm::errs() << SLocEntryTable.size() << " SLocEntry's allocated, "
1121 << NextOffset << "B of Sloc address space used.\n";
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Reid Spencer5f016e22007-07-11 17:01:13 +00001123 unsigned NumLineNumsComputed = 0;
1124 unsigned NumFileBytesMapped = 0;
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001125 for (fileinfo_iterator I = fileinfo_begin(), E = fileinfo_end(); I != E; ++I){
1126 NumLineNumsComputed += I->second->SourceLineCache != 0;
1127 NumFileBytesMapped += I->second->getSizeBytesMapped();
Reid Spencer5f016e22007-07-11 17:01:13 +00001128 }
Mike Stump1eb44332009-09-09 15:08:12 +00001129
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001130 llvm::errs() << NumFileBytesMapped << " bytes of files mapped, "
1131 << NumLineNumsComputed << " files with line #'s computed.\n";
1132 llvm::errs() << "FileID scans: " << NumLinearScans << " linear, "
1133 << NumBinaryProbes << " binary.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +00001134}
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001135
1136ExternalSLocEntrySource::~ExternalSLocEntrySource() { }