blob: 68c98fe02c60ff84857cb756674ec9c8a830d36b [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"
Douglas Gregoraea67db2010-03-15 22:54:52 +000016#include "clang/Basic/Diagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000017#include "clang/Basic/FileManager.h"
Benjamin Kramer5807d9c2010-11-18 12:46:39 +000018#include "llvm/ADT/StringSwitch.h"
Douglas Gregor86a4d0d2011-02-03 17:17:35 +000019#include "llvm/ADT/Optional.h"
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +000020#include "llvm/ADT/STLExtras.h"
Chris Lattner5e36a7a2007-07-24 05:57:19 +000021#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000023#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000024#include "llvm/Support/Path.h"
Ted Kremenek6e36c122011-07-27 18:41:16 +000025#include "llvm/Support/Capacity.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000026#include <algorithm>
Douglas Gregoraea67db2010-03-15 22:54:52 +000027#include <string>
Douglas Gregorf715ca12010-03-16 00:06:06 +000028#include <cstring>
Douglas Gregor86a4d0d2011-02-03 17:17:35 +000029#include <sys/stat.h>
Douglas Gregoraea67db2010-03-15 22:54:52 +000030
Reid Spencer5f016e22007-07-11 17:01:13 +000031using namespace clang;
32using namespace SrcMgr;
33using llvm::MemoryBuffer;
34
Chris Lattner23b5dc62009-02-04 00:40:31 +000035//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000036// SourceManager Helper Classes
Chris Lattner23b5dc62009-02-04 00:40:31 +000037//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000038
Ted Kremenek78d85f52007-10-30 21:08:08 +000039ContentCache::~ContentCache() {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000040 if (shouldFreeBuffer())
41 delete Buffer.getPointer();
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +000042 delete MacroArgsCache;
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Chandler Carruth3201f382011-07-26 05:17:23 +000045/// getSizeBytesMapped - Returns the number of bytes actually mapped for this
46/// ContentCache. This can be 0 if the MemBuffer was not actually expanded.
Ted Kremenekc16c2082009-01-06 01:55:26 +000047unsigned ContentCache::getSizeBytesMapped() const {
Douglas Gregorc8151082010-03-16 22:53:51 +000048 return Buffer.getPointer() ? Buffer.getPointer()->getBufferSize() : 0;
Ted Kremenekc16c2082009-01-06 01:55:26 +000049}
50
Ted Kremenekf61b8312011-04-28 20:36:42 +000051/// Returns the kind of memory used to back the memory buffer for
52/// this content cache. This is used for performance analysis.
53llvm::MemoryBuffer::BufferKind ContentCache::getMemoryBufferKind() const {
54 assert(Buffer.getPointer());
55
56 // Should be unreachable, but keep for sanity.
57 if (!Buffer.getPointer())
58 return llvm::MemoryBuffer::MemoryBuffer_Malloc;
59
60 const llvm::MemoryBuffer *buf = Buffer.getPointer();
61 return buf->getBufferKind();
62}
63
Ted Kremenekc16c2082009-01-06 01:55:26 +000064/// getSize - Returns the size of the content encapsulated by this ContentCache.
65/// This can be the size of the source file or the size of an arbitrary
66/// scratch buffer. If the ContentCache encapsulates a source file, that
Douglas Gregor29684422009-12-02 06:49:09 +000067/// file is not lazily brought in from disk to satisfy this query.
Ted Kremenekc16c2082009-01-06 01:55:26 +000068unsigned ContentCache::getSize() const {
Douglas Gregorc8151082010-03-16 22:53:51 +000069 return Buffer.getPointer() ? (unsigned) Buffer.getPointer()->getBufferSize()
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000070 : (unsigned) ContentsEntry->getSize();
Ted Kremenekc16c2082009-01-06 01:55:26 +000071}
72
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000073void ContentCache::replaceBuffer(const llvm::MemoryBuffer *B,
74 bool DoNotFree) {
Douglas Gregorc8151082010-03-16 22:53:51 +000075 assert(B != Buffer.getPointer());
Douglas Gregor29684422009-12-02 06:49:09 +000076
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000077 if (shouldFreeBuffer())
78 delete Buffer.getPointer();
Douglas Gregorc8151082010-03-16 22:53:51 +000079 Buffer.setPointer(B);
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000080 Buffer.setInt(DoNotFree? DoNotFreeFlag : 0);
Douglas Gregor29684422009-12-02 06:49:09 +000081}
82
Douglas Gregor36c35ba2010-03-16 00:35:39 +000083const llvm::MemoryBuffer *ContentCache::getBuffer(Diagnostic &Diag,
Chris Lattner5c5db4e2010-04-20 20:49:23 +000084 const SourceManager &SM,
Chris Lattnere127a0d2010-04-20 20:35:58 +000085 SourceLocation Loc,
Douglas Gregor36c35ba2010-03-16 00:35:39 +000086 bool *Invalid) const {
Chris Lattnerb088cd32010-11-23 08:50:03 +000087 // Lazily create the Buffer for ContentCaches that wrap files. If we already
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000088 // computed it, just return what we have.
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000089 if (Buffer.getPointer() || ContentsEntry == 0) {
Chris Lattnerb088cd32010-11-23 08:50:03 +000090 if (Invalid)
91 *Invalid = isBufferInvalid();
Chris Lattner38caec42010-04-20 18:14:03 +000092
Chris Lattnerb088cd32010-11-23 08:50:03 +000093 return Buffer.getPointer();
94 }
Benjamin Kramer5807d9c2010-11-18 12:46:39 +000095
Chris Lattnerb088cd32010-11-23 08:50:03 +000096 std::string ErrorStr;
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000097 Buffer.setPointer(SM.getFileManager().getBufferForFile(ContentsEntry, &ErrorStr));
Chris Lattnerb088cd32010-11-23 08:50:03 +000098
99 // If we were unable to open the file, then we are in an inconsistent
100 // situation where the content cache referenced a file which no longer
101 // exists. Most likely, we were using a stat cache with an invalid entry but
102 // the file could also have been removed during processing. Since we can't
103 // really deal with this situation, just create an empty buffer.
104 //
105 // FIXME: This is definitely not ideal, but our immediate clients can't
106 // currently handle returning a null entry here. Ideally we should detect
107 // that we are in an inconsistent situation and error out as quickly as
108 // possible.
109 if (!Buffer.getPointer()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000110 const StringRef FillStr("<<<MISSING SOURCE FILE>>>\n");
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000111 Buffer.setPointer(MemoryBuffer::getNewMemBuffer(ContentsEntry->getSize(),
Chris Lattnerb088cd32010-11-23 08:50:03 +0000112 "<invalid>"));
113 char *Ptr = const_cast<char*>(Buffer.getPointer()->getBufferStart());
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000114 for (unsigned i = 0, e = ContentsEntry->getSize(); i != e; ++i)
Chris Lattnerb088cd32010-11-23 08:50:03 +0000115 Ptr[i] = FillStr[i % FillStr.size()];
116
117 if (Diag.isDiagnosticInFlight())
118 Diag.SetDelayedDiagnostic(diag::err_cannot_open_file,
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000119 ContentsEntry->getName(), ErrorStr);
Chris Lattnerb088cd32010-11-23 08:50:03 +0000120 else
121 Diag.Report(Loc, diag::err_cannot_open_file)
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000122 << ContentsEntry->getName() << ErrorStr;
Chris Lattnerb088cd32010-11-23 08:50:03 +0000123
124 Buffer.setInt(Buffer.getInt() | InvalidFlag);
125
126 if (Invalid) *Invalid = true;
127 return Buffer.getPointer();
128 }
129
130 // Check that the file's size is the same as in the file entry (which may
131 // have come from a stat cache).
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000132 if (getRawBuffer()->getBufferSize() != (size_t)ContentsEntry->getSize()) {
Chris Lattnerb088cd32010-11-23 08:50:03 +0000133 if (Diag.isDiagnosticInFlight())
134 Diag.SetDelayedDiagnostic(diag::err_file_modified,
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000135 ContentsEntry->getName());
Chris Lattnerb088cd32010-11-23 08:50:03 +0000136 else
137 Diag.Report(Loc, diag::err_file_modified)
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000138 << ContentsEntry->getName();
Chris Lattnerb088cd32010-11-23 08:50:03 +0000139
140 Buffer.setInt(Buffer.getInt() | InvalidFlag);
141 if (Invalid) *Invalid = true;
142 return Buffer.getPointer();
143 }
Eric Christopher156119d2011-04-09 00:01:04 +0000144
Chris Lattnerb088cd32010-11-23 08:50:03 +0000145 // If the buffer is valid, check to see if it has a UTF Byte Order Mark
Eric Christopher156119d2011-04-09 00:01:04 +0000146 // (BOM). We only support UTF-8 with and without a BOM right now. See
Chris Lattnerb088cd32010-11-23 08:50:03 +0000147 // http://en.wikipedia.org/wiki/Byte_order_mark for more information.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000148 StringRef BufStr = Buffer.getPointer()->getBuffer();
Eric Christopher156119d2011-04-09 00:01:04 +0000149 const char *InvalidBOM = llvm::StringSwitch<const char *>(BufStr)
Chris Lattnerb088cd32010-11-23 08:50:03 +0000150 .StartsWith("\xFE\xFF", "UTF-16 (BE)")
151 .StartsWith("\xFF\xFE", "UTF-16 (LE)")
152 .StartsWith("\x00\x00\xFE\xFF", "UTF-32 (BE)")
153 .StartsWith("\xFF\xFE\x00\x00", "UTF-32 (LE)")
154 .StartsWith("\x2B\x2F\x76", "UTF-7")
155 .StartsWith("\xF7\x64\x4C", "UTF-1")
156 .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC")
157 .StartsWith("\x0E\xFE\xFF", "SDSU")
158 .StartsWith("\xFB\xEE\x28", "BOCU-1")
159 .StartsWith("\x84\x31\x95\x33", "GB-18030")
160 .Default(0);
161
Eric Christopher156119d2011-04-09 00:01:04 +0000162 if (InvalidBOM) {
Chris Lattnerb088cd32010-11-23 08:50:03 +0000163 Diag.Report(Loc, diag::err_unsupported_bom)
Eric Christopher156119d2011-04-09 00:01:04 +0000164 << InvalidBOM << ContentsEntry->getName();
Chris Lattnerb088cd32010-11-23 08:50:03 +0000165 Buffer.setInt(Buffer.getInt() | InvalidFlag);
Ted Kremenek5b034ad2009-01-06 22:43:04 +0000166 }
Douglas Gregoraea67db2010-03-15 22:54:52 +0000167
Douglas Gregorc8151082010-03-16 22:53:51 +0000168 if (Invalid)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000169 *Invalid = isBufferInvalid();
Douglas Gregorc8151082010-03-16 22:53:51 +0000170
171 return Buffer.getPointer();
Ted Kremenekc16c2082009-01-06 01:55:26 +0000172}
173
Chris Lattner5f9e2722011-07-23 10:55:15 +0000174unsigned LineTableInfo::getLineTableFilenameID(StringRef Name) {
Chris Lattner5b9a5042009-01-26 07:57:50 +0000175 // Look up the filename in the string table, returning the pre-existing value
176 // if it exists.
Mike Stump1eb44332009-09-09 15:08:12 +0000177 llvm::StringMapEntry<unsigned> &Entry =
Jay Foad65aa6882011-06-21 15:13:30 +0000178 FilenameIDs.GetOrCreateValue(Name, ~0U);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000179 if (Entry.getValue() != ~0U)
180 return Entry.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000181
Chris Lattner5b9a5042009-01-26 07:57:50 +0000182 // Otherwise, assign this the next available ID.
183 Entry.setValue(FilenamesByID.size());
184 FilenamesByID.push_back(&Entry);
185 return FilenamesByID.size()-1;
186}
187
Chris Lattnerac50e342009-02-03 22:13:05 +0000188/// AddLineNote - Add a line note to the line table that indicates that there
189/// is a #line at the specified FID/Offset location which changes the presumed
190/// location to LineNo/FilenameID.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000191void LineTableInfo::AddLineNote(int FID, unsigned Offset,
Chris Lattnerac50e342009-02-03 22:13:05 +0000192 unsigned LineNo, int FilenameID) {
Chris Lattner23b5dc62009-02-04 00:40:31 +0000193 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000194
Chris Lattner23b5dc62009-02-04 00:40:31 +0000195 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
196 "Adding line entries out of order!");
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Chris Lattner9d79eba2009-02-04 05:21:58 +0000198 SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
Chris Lattner137b6a62009-02-04 06:25:26 +0000199 unsigned IncludeOffset = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Chris Lattner9d79eba2009-02-04 05:21:58 +0000201 if (!Entries.empty()) {
202 // If this is a '#line 4' after '#line 42 "foo.h"', make sure to remember
203 // that we are still in "foo.h".
204 if (FilenameID == -1)
205 FilenameID = Entries.back().FilenameID;
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Chris Lattner137b6a62009-02-04 06:25:26 +0000207 // If we are after a line marker that switched us to system header mode, or
208 // that set #include information, preserve it.
Chris Lattner9d79eba2009-02-04 05:21:58 +0000209 Kind = Entries.back().FileKind;
Chris Lattner137b6a62009-02-04 06:25:26 +0000210 IncludeOffset = Entries.back().IncludeOffset;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000211 }
Mike Stump1eb44332009-09-09 15:08:12 +0000212
Chris Lattner137b6a62009-02-04 06:25:26 +0000213 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
214 IncludeOffset));
Chris Lattnerac50e342009-02-03 22:13:05 +0000215}
216
Chris Lattner9d79eba2009-02-04 05:21:58 +0000217/// AddLineNote This is the same as the previous version of AddLineNote, but is
218/// used for GNU line markers. If EntryExit is 0, then this doesn't change the
219/// presumed #include stack. If it is 1, this is a file entry, if it is 2 then
220/// this is a file exit. FileKind specifies whether this is a system header or
221/// extern C system header.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000222void LineTableInfo::AddLineNote(int FID, unsigned Offset,
Chris Lattner9d79eba2009-02-04 05:21:58 +0000223 unsigned LineNo, int FilenameID,
224 unsigned EntryExit,
225 SrcMgr::CharacteristicKind FileKind) {
226 assert(FilenameID != -1 && "Unspecified filename should use other accessor");
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Chris Lattner9d79eba2009-02-04 05:21:58 +0000228 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Chris Lattner9d79eba2009-02-04 05:21:58 +0000230 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
231 "Adding line entries out of order!");
232
Chris Lattner137b6a62009-02-04 06:25:26 +0000233 unsigned IncludeOffset = 0;
234 if (EntryExit == 0) { // No #include stack change.
235 IncludeOffset = Entries.empty() ? 0 : Entries.back().IncludeOffset;
236 } else if (EntryExit == 1) {
237 IncludeOffset = Offset-1;
238 } else if (EntryExit == 2) {
239 assert(!Entries.empty() && Entries.back().IncludeOffset &&
240 "PPDirectives should have caught case when popping empty include stack");
Mike Stump1eb44332009-09-09 15:08:12 +0000241
Chris Lattner137b6a62009-02-04 06:25:26 +0000242 // Get the include loc of the last entries' include loc as our include loc.
243 IncludeOffset = 0;
244 if (const LineEntry *PrevEntry =
245 FindNearestLineEntry(FID, Entries.back().IncludeOffset))
246 IncludeOffset = PrevEntry->IncludeOffset;
247 }
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Chris Lattner137b6a62009-02-04 06:25:26 +0000249 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
250 IncludeOffset));
Chris Lattner9d79eba2009-02-04 05:21:58 +0000251}
252
253
Chris Lattner3cd949c2009-02-04 01:55:42 +0000254/// FindNearestLineEntry - Find the line entry nearest to FID that is before
255/// it. If there is no line entry before Offset in FID, return null.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000256const LineEntry *LineTableInfo::FindNearestLineEntry(int FID,
Chris Lattner3cd949c2009-02-04 01:55:42 +0000257 unsigned Offset) {
258 const std::vector<LineEntry> &Entries = LineEntries[FID];
259 assert(!Entries.empty() && "No #line entries for this FID after all!");
260
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000261 // It is very common for the query to be after the last #line, check this
262 // first.
263 if (Entries.back().FileOffset <= Offset)
264 return &Entries.back();
Chris Lattner3cd949c2009-02-04 01:55:42 +0000265
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000266 // Do a binary search to find the maximal element that is still before Offset.
267 std::vector<LineEntry>::const_iterator I =
268 std::upper_bound(Entries.begin(), Entries.end(), Offset);
269 if (I == Entries.begin()) return 0;
270 return &*--I;
Chris Lattner3cd949c2009-02-04 01:55:42 +0000271}
Chris Lattnerac50e342009-02-03 22:13:05 +0000272
Douglas Gregorbd945002009-04-13 16:31:14 +0000273/// \brief Add a new line entry that has already been encoded into
274/// the internal representation of the line table.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000275void LineTableInfo::AddEntry(int FID,
Douglas Gregorbd945002009-04-13 16:31:14 +0000276 const std::vector<LineEntry> &Entries) {
277 LineEntries[FID] = Entries;
278}
Chris Lattnerac50e342009-02-03 22:13:05 +0000279
Chris Lattner5b9a5042009-01-26 07:57:50 +0000280/// getLineTableFilenameID - Return the uniqued ID for the specified filename.
Mike Stump1eb44332009-09-09 15:08:12 +0000281///
Chris Lattner5f9e2722011-07-23 10:55:15 +0000282unsigned SourceManager::getLineTableFilenameID(StringRef Name) {
Chris Lattner5b9a5042009-01-26 07:57:50 +0000283 if (LineTable == 0)
284 LineTable = new LineTableInfo();
Jay Foad65aa6882011-06-21 15:13:30 +0000285 return LineTable->getLineTableFilenameID(Name);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000286}
287
288
Chris Lattner4c4ea172009-02-03 21:52:55 +0000289/// AddLineNote - Add a line note to the line table for the FileID and offset
290/// specified by Loc. If FilenameID is -1, it is considered to be
291/// unspecified.
292void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
293 int FilenameID) {
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000294 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000295
Douglas Gregore23ac652011-04-20 00:21:03 +0000296 bool Invalid = false;
297 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
298 if (!Entry.isFile() || Invalid)
299 return;
300
301 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
Chris Lattnerac50e342009-02-03 22:13:05 +0000302
303 // Remember that this file has #line directives now if it doesn't already.
304 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000305
Chris Lattnerac50e342009-02-03 22:13:05 +0000306 if (LineTable == 0)
307 LineTable = new LineTableInfo();
Chris Lattner23b5dc62009-02-04 00:40:31 +0000308 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
Chris Lattner4c4ea172009-02-03 21:52:55 +0000309}
310
Chris Lattner9d79eba2009-02-04 05:21:58 +0000311/// AddLineNote - Add a GNU line marker to the line table.
312void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
313 int FilenameID, bool IsFileEntry,
314 bool IsFileExit, bool IsSystemHeader,
315 bool IsExternCHeader) {
316 // If there is no filename and no flags, this is treated just like a #line,
317 // which does not change the flags of the previous line marker.
318 if (FilenameID == -1) {
319 assert(!IsFileEntry && !IsFileExit && !IsSystemHeader && !IsExternCHeader &&
320 "Can't set flags without setting the filename!");
321 return AddLineNote(Loc, LineNo, FilenameID);
322 }
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000324 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Douglas Gregore23ac652011-04-20 00:21:03 +0000325
326 bool Invalid = false;
327 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
328 if (!Entry.isFile() || Invalid)
329 return;
330
331 const SrcMgr::FileInfo &FileInfo = Entry.getFile();
Mike Stump1eb44332009-09-09 15:08:12 +0000332
Chris Lattner9d79eba2009-02-04 05:21:58 +0000333 // Remember that this file has #line directives now if it doesn't already.
334 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Chris Lattner9d79eba2009-02-04 05:21:58 +0000336 if (LineTable == 0)
337 LineTable = new LineTableInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Chris Lattner9d79eba2009-02-04 05:21:58 +0000339 SrcMgr::CharacteristicKind FileKind;
340 if (IsExternCHeader)
341 FileKind = SrcMgr::C_ExternCSystem;
342 else if (IsSystemHeader)
343 FileKind = SrcMgr::C_System;
344 else
345 FileKind = SrcMgr::C_User;
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Chris Lattner9d79eba2009-02-04 05:21:58 +0000347 unsigned EntryExit = 0;
348 if (IsFileEntry)
349 EntryExit = 1;
350 else if (IsFileExit)
351 EntryExit = 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Chris Lattner9d79eba2009-02-04 05:21:58 +0000353 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
354 EntryExit, FileKind);
355}
356
Douglas Gregorbd945002009-04-13 16:31:14 +0000357LineTableInfo &SourceManager::getLineTable() {
358 if (LineTable == 0)
359 LineTable = new LineTableInfo();
360 return *LineTable;
361}
Chris Lattner4c4ea172009-02-03 21:52:55 +0000362
Chris Lattner23b5dc62009-02-04 00:40:31 +0000363//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000364// Private 'Create' methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000365//===----------------------------------------------------------------------===//
Ted Kremenekc16c2082009-01-06 01:55:26 +0000366
Chris Lattner39b49bc2010-11-23 08:35:12 +0000367SourceManager::SourceManager(Diagnostic &Diag, FileManager &FileMgr)
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +0000368 : Diag(Diag), FileMgr(FileMgr), OverridenFilesKeepOriginalName(true),
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000369 ExternalSLocEntries(0), LineTable(0), NumLinearScans(0),
Douglas Gregore23ac652011-04-20 00:21:03 +0000370 NumBinaryProbes(0), FakeBufferForRecovery(0) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000371 clearIDTables();
372 Diag.setSourceManager(this);
373}
374
Chris Lattner5b9a5042009-01-26 07:57:50 +0000375SourceManager::~SourceManager() {
376 delete LineTable;
Mike Stump1eb44332009-09-09 15:08:12 +0000377
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000378 // Delete FileEntry objects corresponding to content caches. Since the actual
379 // content cache objects are bump pointer allocated, we just have to run the
380 // dtors, but we call the deallocate method for completeness.
381 for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i) {
382 MemBufferInfos[i]->~ContentCache();
383 ContentCacheAlloc.Deallocate(MemBufferInfos[i]);
384 }
385 for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator
386 I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
387 I->second->~ContentCache();
388 ContentCacheAlloc.Deallocate(I->second);
389 }
Douglas Gregore23ac652011-04-20 00:21:03 +0000390
391 delete FakeBufferForRecovery;
Chris Lattner5b9a5042009-01-26 07:57:50 +0000392}
393
394void SourceManager::clearIDTables() {
395 MainFileID = FileID();
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000396 LocalSLocEntryTable.clear();
397 LoadedSLocEntryTable.clear();
398 SLocEntryLoaded.clear();
Chris Lattner5b9a5042009-01-26 07:57:50 +0000399 LastLineNoFileIDQuery = FileID();
400 LastLineNoContentCache = 0;
401 LastFileIDLookup = FileID();
Mike Stump1eb44332009-09-09 15:08:12 +0000402
Chris Lattner5b9a5042009-01-26 07:57:50 +0000403 if (LineTable)
404 LineTable->clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000405
Chandler Carruth3201f382011-07-26 05:17:23 +0000406 // Use up FileID #0 as an invalid expansion.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000407 NextLocalOffset = 0;
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +0000408 CurrentLoadedOffset = MaxLoadedOffset;
Chandler Carruthbf340e42011-07-26 03:03:05 +0000409 createExpansionLoc(SourceLocation(),SourceLocation(),SourceLocation(), 1);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000410}
411
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000412/// getOrCreateContentCache - Create or return a cached ContentCache for the
413/// specified file.
414const ContentCache *
415SourceManager::getOrCreateContentCache(const FileEntry *FileEnt) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000416 assert(FileEnt && "Didn't specify a file entry to use?");
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Reid Spencer5f016e22007-07-11 17:01:13 +0000418 // Do we already have information about this file?
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000419 ContentCache *&Entry = FileInfos[FileEnt];
420 if (Entry) return Entry;
Mike Stump1eb44332009-09-09 15:08:12 +0000421
Chris Lattner00282d62009-02-03 07:41:46 +0000422 // Nope, create a new Cache entry. Make sure it is at least 8-byte aligned
423 // so that FileInfo can use the low 3 bits of the pointer for its own
424 // nefarious purposes.
425 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
426 EntryAlign = std::max(8U, EntryAlign);
427 Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000428
429 // If the file contents are overridden with contents from another file,
430 // pass that file to ContentCache.
431 llvm::DenseMap<const FileEntry *, const FileEntry *>::iterator
432 overI = OverriddenFiles.find(FileEnt);
433 if (overI == OverriddenFiles.end())
434 new (Entry) ContentCache(FileEnt);
435 else
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +0000436 new (Entry) ContentCache(OverridenFilesKeepOriginalName ? FileEnt
437 : overI->second,
438 overI->second);
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000439
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000440 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000441}
442
443
Ted Kremenekd1c0eee2007-10-31 17:53:38 +0000444/// createMemBufferContentCache - Create a new ContentCache for the specified
445/// memory buffer. This does no caching.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000446const ContentCache*
447SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
Chris Lattner00282d62009-02-03 07:41:46 +0000448 // Add a new ContentCache to the MemBufferInfos list and return it. Make sure
449 // it is at least 8-byte aligned so that FileInfo can use the low 3 bits of
450 // the pointer for its own nefarious purposes.
451 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
452 EntryAlign = std::max(8U, EntryAlign);
453 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000454 new (Entry) ContentCache();
455 MemBufferInfos.push_back(Entry);
456 Entry->setBuffer(Buffer);
457 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000458}
459
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000460std::pair<int, unsigned>
461SourceManager::AllocateLoadedSLocEntries(unsigned NumSLocEntries,
462 unsigned TotalSize) {
463 assert(ExternalSLocEntries && "Don't have an external sloc source");
464 LoadedSLocEntryTable.resize(LoadedSLocEntryTable.size() + NumSLocEntries);
465 SLocEntryLoaded.resize(LoadedSLocEntryTable.size());
466 CurrentLoadedOffset -= TotalSize;
467 assert(CurrentLoadedOffset >= NextLocalOffset && "Out of source locations");
468 int ID = LoadedSLocEntryTable.size();
469 return std::make_pair(-ID - 1, CurrentLoadedOffset);
Douglas Gregor2bf1eb02009-04-27 21:28:04 +0000470}
471
Douglas Gregore23ac652011-04-20 00:21:03 +0000472/// \brief As part of recovering from missing or changed content, produce a
473/// fake, non-empty buffer.
474const llvm::MemoryBuffer *SourceManager::getFakeBufferForRecovery() const {
475 if (!FakeBufferForRecovery)
476 FakeBufferForRecovery
477 = llvm::MemoryBuffer::getMemBuffer("<<<INVALID BUFFER>>");
478
479 return FakeBufferForRecovery;
480}
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000481
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000482//===----------------------------------------------------------------------===//
Chandler Carruth3201f382011-07-26 05:17:23 +0000483// Methods to create new FileID's and macro expansions.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000484//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000485
Dan Gohman3f86b782010-08-26 21:27:06 +0000486/// createFileID - Create a new FileID for the specified ContentCache and
Ted Kremenek0d892d82007-10-30 22:57:35 +0000487/// include position. This works regardless of whether the ContentCache
488/// corresponds to a file or some other input source.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000489FileID SourceManager::createFileID(const ContentCache *File,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000490 SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000491 SrcMgr::CharacteristicKind FileCharacter,
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000492 int LoadedID, unsigned LoadedOffset) {
493 if (LoadedID < 0) {
494 assert(LoadedID != -1 && "Loading sentinel FileID");
495 unsigned Index = unsigned(-LoadedID) - 2;
496 assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
497 assert(!SLocEntryLoaded[Index] && "FileID already loaded");
498 LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset,
499 FileInfo::get(IncludePos, File, FileCharacter));
500 SLocEntryLoaded[Index] = true;
501 return FileID::get(LoadedID);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000502 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000503 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset,
504 FileInfo::get(IncludePos, File,
505 FileCharacter)));
Ted Kremenekc16c2082009-01-06 01:55:26 +0000506 unsigned FileSize = File->getSize();
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000507 assert(NextLocalOffset + FileSize + 1 > NextLocalOffset &&
508 NextLocalOffset + FileSize + 1 <= CurrentLoadedOffset &&
509 "Ran out of source locations!");
510 // We do a +1 here because we want a SourceLocation that means "the end of the
511 // file", e.g. for the "no newline at the end of the file" diagnostic.
512 NextLocalOffset += FileSize + 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000513
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000514 // Set LastFileIDLookup to the newly created file. The next getFileID call is
515 // almost guaranteed to be from that file.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000516 FileID FID = FileID::get(LocalSLocEntryTable.size()-1);
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000517 return LastFileIDLookup = FID;
Reid Spencer5f016e22007-07-11 17:01:13 +0000518}
519
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000520SourceLocation
Chandler Carruthbf340e42011-07-26 03:03:05 +0000521SourceManager::createMacroArgExpansionLoc(SourceLocation SpellingLoc,
522 SourceLocation ExpansionLoc,
523 unsigned TokLength) {
Chandler Carruth78df8362011-07-26 04:41:47 +0000524 ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
525 ExpansionLoc);
526 return createExpansionLocImpl(Info, TokLength);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000527}
528
529SourceLocation
Chandler Carruthbf340e42011-07-26 03:03:05 +0000530SourceManager::createExpansionLoc(SourceLocation SpellingLoc,
531 SourceLocation ExpansionLocStart,
532 SourceLocation ExpansionLocEnd,
533 unsigned TokLength,
534 int LoadedID,
535 unsigned LoadedOffset) {
Chandler Carruth78df8362011-07-26 04:41:47 +0000536 ExpansionInfo Info = ExpansionInfo::create(SpellingLoc, ExpansionLocStart,
537 ExpansionLocEnd);
538 return createExpansionLocImpl(Info, TokLength, LoadedID, LoadedOffset);
Chandler Carruthbf340e42011-07-26 03:03:05 +0000539}
540
541SourceLocation
Chandler Carruth78df8362011-07-26 04:41:47 +0000542SourceManager::createExpansionLocImpl(const ExpansionInfo &Info,
Chandler Carruthbf340e42011-07-26 03:03:05 +0000543 unsigned TokLength,
544 int LoadedID,
545 unsigned LoadedOffset) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000546 if (LoadedID < 0) {
547 assert(LoadedID != -1 && "Loading sentinel FileID");
548 unsigned Index = unsigned(-LoadedID) - 2;
549 assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
550 assert(!SLocEntryLoaded[Index] && "FileID already loaded");
Chandler Carruth78df8362011-07-26 04:41:47 +0000551 LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset, Info);
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000552 SLocEntryLoaded[Index] = true;
553 return SourceLocation::getMacroLoc(LoadedOffset);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000554 }
Chandler Carruth78df8362011-07-26 04:41:47 +0000555 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000556 assert(NextLocalOffset + TokLength + 1 > NextLocalOffset &&
557 NextLocalOffset + TokLength + 1 <= CurrentLoadedOffset &&
558 "Ran out of source locations!");
559 // See createFileID for that +1.
560 NextLocalOffset += TokLength + 1;
561 return SourceLocation::getMacroLoc(NextLocalOffset - (TokLength + 1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000562}
563
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000564const llvm::MemoryBuffer *
Douglas Gregor50f6af72010-03-16 05:20:39 +0000565SourceManager::getMemoryBufferForFile(const FileEntry *File,
566 bool *Invalid) {
Douglas Gregor29684422009-12-02 06:49:09 +0000567 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
Douglas Gregoraea67db2010-03-15 22:54:52 +0000568 assert(IR && "getOrCreateContentCache() cannot return NULL");
Chris Lattnere127a0d2010-04-20 20:35:58 +0000569 return IR->getBuffer(Diag, *this, SourceLocation(), Invalid);
Douglas Gregor29684422009-12-02 06:49:09 +0000570}
571
Dan Gohman0d06e992010-10-26 20:47:28 +0000572void SourceManager::overrideFileContents(const FileEntry *SourceFile,
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000573 const llvm::MemoryBuffer *Buffer,
574 bool DoNotFree) {
Douglas Gregor29684422009-12-02 06:49:09 +0000575 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
Dan Gohman0d06e992010-10-26 20:47:28 +0000576 assert(IR && "getOrCreateContentCache() cannot return NULL");
Douglas Gregor29684422009-12-02 06:49:09 +0000577
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000578 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer, DoNotFree);
Douglas Gregor29684422009-12-02 06:49:09 +0000579}
580
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000581void SourceManager::overrideFileContents(const FileEntry *SourceFile,
582 const FileEntry *NewFile) {
583 assert(SourceFile->getSize() == NewFile->getSize() &&
584 "Different sizes, use the FileManager to create a virtual file with "
585 "the correct size");
586 assert(FileInfos.count(SourceFile) == 0 &&
587 "This function should be called at the initialization stage, before "
588 "any parsing occurs.");
589 OverriddenFiles[SourceFile] = NewFile;
590}
591
Chris Lattner5f9e2722011-07-23 10:55:15 +0000592StringRef SourceManager::getBufferData(FileID FID, bool *Invalid) const {
Douglas Gregoraae58b02010-03-16 20:01:30 +0000593 bool MyInvalid = false;
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000594 const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid);
Douglas Gregore23ac652011-04-20 00:21:03 +0000595 if (!SLoc.isFile() || MyInvalid) {
Douglas Gregor3de84242011-01-31 22:42:36 +0000596 if (Invalid)
597 *Invalid = true;
598 return "<<<<<INVALID SOURCE LOCATION>>>>>";
599 }
600
601 const llvm::MemoryBuffer *Buf
602 = SLoc.getFile().getContentCache()->getBuffer(Diag, *this, SourceLocation(),
603 &MyInvalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000604 if (Invalid)
Douglas Gregoraae58b02010-03-16 20:01:30 +0000605 *Invalid = MyInvalid;
606
607 if (MyInvalid)
Douglas Gregor3de84242011-01-31 22:42:36 +0000608 return "<<<<<INVALID SOURCE LOCATION>>>>>";
Douglas Gregoraae58b02010-03-16 20:01:30 +0000609
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000610 return Buf->getBuffer();
Douglas Gregoraea67db2010-03-15 22:54:52 +0000611}
Chris Lattner2b2453a2009-01-17 06:22:33 +0000612
Chris Lattner23b5dc62009-02-04 00:40:31 +0000613//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000614// SourceLocation manipulation methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000615//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000616
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000617/// \brief Return the FileID for a SourceLocation.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000618///
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000619/// This is the cache-miss path of getFileID. Not as hot as that function, but
620/// still very important. It is responsible for finding the entry in the
621/// SLocEntry tables that contains the specified location.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000622FileID SourceManager::getFileIDSlow(unsigned SLocOffset) const {
Douglas Gregore23ac652011-04-20 00:21:03 +0000623 if (!SLocOffset)
624 return FileID::get(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000625
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000626 // Now it is time to search for the correct file. See where the SLocOffset
627 // sits in the global view and consult local or loaded buffers for it.
628 if (SLocOffset < NextLocalOffset)
629 return getFileIDLocal(SLocOffset);
630 return getFileIDLoaded(SLocOffset);
631}
632
633/// \brief Return the FileID for a SourceLocation with a low offset.
634///
635/// This function knows that the SourceLocation is in a local buffer, not a
636/// loaded one.
637FileID SourceManager::getFileIDLocal(unsigned SLocOffset) const {
638 assert(SLocOffset < NextLocalOffset && "Bad function choice");
639
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000640 // After the first and second level caches, I see two common sorts of
Chandler Carruth3201f382011-07-26 05:17:23 +0000641 // behavior: 1) a lot of searched FileID's are "near" the cached file
642 // location or are "near" the cached expansion location. 2) others are just
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000643 // completely random and may be a very long way away.
644 //
645 // To handle this, we do a linear search for up to 8 steps to catch #1 quickly
646 // then we fall back to a less cache efficient, but more scalable, binary
647 // search to find the location.
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000649 // See if this is near the file point - worst case we start scanning from the
650 // most newly created FileID.
651 std::vector<SrcMgr::SLocEntry>::const_iterator I;
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000653 if (LastFileIDLookup.ID < 0 ||
654 LocalSLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000655 // Neither loc prunes our search.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000656 I = LocalSLocEntryTable.end();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000657 } else {
658 // Perhaps it is near the file point.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000659 I = LocalSLocEntryTable.begin()+LastFileIDLookup.ID;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000660 }
661
662 // Find the FileID that contains this. "I" is an iterator that points to a
663 // FileID whose offset is known to be larger than SLocOffset.
664 unsigned NumProbes = 0;
665 while (1) {
666 --I;
667 if (I->getOffset() <= SLocOffset) {
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000668 FileID Res = FileID::get(int(I - LocalSLocEntryTable.begin()));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000669
Chandler Carruth3201f382011-07-26 05:17:23 +0000670 // If this isn't an expansion, remember it. We have good locality across
671 // FileID lookups.
Chandler Carruth17287622011-07-26 04:56:51 +0000672 if (!I->isExpansion())
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000673 LastFileIDLookup = Res;
674 NumLinearScans += NumProbes+1;
675 return Res;
676 }
677 if (++NumProbes == 8)
678 break;
679 }
Mike Stump1eb44332009-09-09 15:08:12 +0000680
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000681 // Convert "I" back into an index. We know that it is an entry whose index is
682 // larger than the offset we are looking for.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000683 unsigned GreaterIndex = I - LocalSLocEntryTable.begin();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000684 // LessIndex - This is the lower bound of the range that we're searching.
685 // We know that the offset corresponding to the FileID is is less than
686 // SLocOffset.
687 unsigned LessIndex = 0;
688 NumProbes = 0;
689 while (1) {
Douglas Gregore23ac652011-04-20 00:21:03 +0000690 bool Invalid = false;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000691 unsigned MiddleIndex = (GreaterIndex-LessIndex)/2+LessIndex;
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000692 unsigned MidOffset = getLocalSLocEntry(MiddleIndex, &Invalid).getOffset();
Douglas Gregore23ac652011-04-20 00:21:03 +0000693 if (Invalid)
694 return FileID::get(0);
695
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000696 ++NumProbes;
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000698 // If the offset of the midpoint is too large, chop the high side of the
699 // range to the midpoint.
700 if (MidOffset > SLocOffset) {
701 GreaterIndex = MiddleIndex;
702 continue;
703 }
Mike Stump1eb44332009-09-09 15:08:12 +0000704
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000705 // If the middle index contains the value, succeed and return.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000706 // FIXME: This could be made faster by using a function that's aware of
707 // being in the local area.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000708 if (isOffsetInFileID(FileID::get(MiddleIndex), SLocOffset)) {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000709 FileID Res = FileID::get(MiddleIndex);
710
Chandler Carruth17287622011-07-26 04:56:51 +0000711 // If this isn't a macro expansion, remember it. We have good locality
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000712 // across FileID lookups.
Chandler Carruth17287622011-07-26 04:56:51 +0000713 if (!LocalSLocEntryTable[MiddleIndex].isExpansion())
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000714 LastFileIDLookup = Res;
715 NumBinaryProbes += NumProbes;
716 return Res;
717 }
Mike Stump1eb44332009-09-09 15:08:12 +0000718
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000719 // Otherwise, move the low-side up to the middle index.
720 LessIndex = MiddleIndex;
721 }
722}
723
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000724/// \brief Return the FileID for a SourceLocation with a high offset.
725///
726/// This function knows that the SourceLocation is in a loaded buffer, not a
727/// local one.
728FileID SourceManager::getFileIDLoaded(unsigned SLocOffset) const {
729 assert(SLocOffset >= CurrentLoadedOffset && "Bad function choice");
730
731 // Essentially the same as the local case, but the loaded array is sorted
732 // in the other direction.
733
734 // First do a linear scan from the last lookup position, if possible.
735 unsigned I;
736 int LastID = LastFileIDLookup.ID;
737 if (LastID >= 0 || getLoadedSLocEntryByID(LastID).getOffset() < SLocOffset)
738 I = 0;
739 else
740 I = (-LastID - 2) + 1;
741
742 unsigned NumProbes;
743 for (NumProbes = 0; NumProbes < 8; ++NumProbes, ++I) {
744 // Make sure the entry is loaded!
745 const SrcMgr::SLocEntry &E = getLoadedSLocEntry(I);
746 if (E.getOffset() <= SLocOffset) {
747 FileID Res = FileID::get(-int(I) - 2);
748
Chandler Carruth17287622011-07-26 04:56:51 +0000749 if (!E.isExpansion())
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000750 LastFileIDLookup = Res;
751 NumLinearScans += NumProbes + 1;
752 return Res;
753 }
754 }
755
756 // Linear scan failed. Do the binary search. Note the reverse sorting of the
757 // table: GreaterIndex is the one where the offset is greater, which is
758 // actually a lower index!
759 unsigned GreaterIndex = I;
760 unsigned LessIndex = LoadedSLocEntryTable.size();
761 NumProbes = 0;
762 while (1) {
763 ++NumProbes;
764 unsigned MiddleIndex = (LessIndex - GreaterIndex) / 2 + GreaterIndex;
765 const SrcMgr::SLocEntry &E = getLoadedSLocEntry(MiddleIndex);
766
767 ++NumProbes;
768
769 if (E.getOffset() > SLocOffset) {
770 GreaterIndex = MiddleIndex;
771 continue;
772 }
773
774 if (isOffsetInFileID(FileID::get(-int(MiddleIndex) - 2), SLocOffset)) {
775 FileID Res = FileID::get(-int(MiddleIndex) - 2);
Chandler Carruth17287622011-07-26 04:56:51 +0000776 if (!E.isExpansion())
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000777 LastFileIDLookup = Res;
778 NumBinaryProbes += NumProbes;
779 return Res;
780 }
781
782 LessIndex = MiddleIndex;
783 }
784}
785
Chris Lattneraddb7972009-01-26 20:04:19 +0000786SourceLocation SourceManager::
Chandler Carruthf84ef952011-07-25 20:52:26 +0000787getExpansionLocSlowCase(SourceLocation Loc) const {
Chris Lattneraddb7972009-01-26 20:04:19 +0000788 do {
Chris Lattnera5c6c582010-02-12 19:31:35 +0000789 // Note: If Loc indicates an offset into a token that came from a macro
790 // expansion (e.g. the 5th character of the token) we do not want to add
Chandler Carruth17287622011-07-26 04:56:51 +0000791 // this offset when going to the expansion location. The expansion
Chris Lattnera5c6c582010-02-12 19:31:35 +0000792 // location is the macro invocation, which the offset has nothing to do
793 // with. This is unlike when we get the spelling loc, because the offset
794 // directly correspond to the token whose spelling we're inspecting.
Chandler Carruth17287622011-07-26 04:56:51 +0000795 Loc = getSLocEntry(getFileID(Loc)).getExpansion().getExpansionLocStart();
Chris Lattneraddb7972009-01-26 20:04:19 +0000796 } while (!Loc.isFileID());
797
798 return Loc;
799}
800
801SourceLocation SourceManager::getSpellingLocSlowCase(SourceLocation Loc) const {
802 do {
803 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
Chandler Carruth17287622011-07-26 04:56:51 +0000804 Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000805 Loc = Loc.getLocWithOffset(LocInfo.second);
Chris Lattneraddb7972009-01-26 20:04:19 +0000806 } while (!Loc.isFileID());
807 return Loc;
808}
809
810
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000811std::pair<FileID, unsigned>
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000812SourceManager::getDecomposedExpansionLocSlowCase(
Argyrios Kyrtzidis8b86ef02011-07-07 03:40:27 +0000813 const SrcMgr::SLocEntry *E) const {
Chandler Carruth3201f382011-07-26 05:17:23 +0000814 // If this is an expansion record, walk through all the expansion points.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000815 FileID FID;
816 SourceLocation Loc;
Argyrios Kyrtzidis8b86ef02011-07-07 03:40:27 +0000817 unsigned Offset;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000818 do {
Chandler Carruth17287622011-07-26 04:56:51 +0000819 Loc = E->getExpansion().getExpansionLocStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000820
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000821 FID = getFileID(Loc);
822 E = &getSLocEntry(FID);
Argyrios Kyrtzidis8b86ef02011-07-07 03:40:27 +0000823 Offset = Loc.getOffset()-E->getOffset();
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000824 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000825
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000826 return std::make_pair(FID, Offset);
827}
828
829std::pair<FileID, unsigned>
830SourceManager::getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
831 unsigned Offset) const {
Chandler Carruth3201f382011-07-26 05:17:23 +0000832 // If this is an expansion record, walk through all the expansion points.
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000833 FileID FID;
834 SourceLocation Loc;
835 do {
Chandler Carruth17287622011-07-26 04:56:51 +0000836 Loc = E->getExpansion().getSpellingLoc();
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000837 Loc = Loc.getLocWithOffset(Offset);
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000839 FID = getFileID(Loc);
840 E = &getSLocEntry(FID);
Argyrios Kyrtzidisb6c465e2011-08-23 21:02:41 +0000841 Offset = Loc.getOffset()-E->getOffset();
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000842 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000843
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000844 return std::make_pair(FID, Offset);
845}
846
Chris Lattner387616e2009-02-17 08:04:48 +0000847/// getImmediateSpellingLoc - Given a SourceLocation object, return the
848/// spelling location referenced by the ID. This is the first level down
849/// towards the place where the characters that make up the lexed token can be
850/// found. This should not generally be used by clients.
851SourceLocation SourceManager::getImmediateSpellingLoc(SourceLocation Loc) const{
852 if (Loc.isFileID()) return Loc;
853 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
Chandler Carruth17287622011-07-26 04:56:51 +0000854 Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +0000855 return Loc.getLocWithOffset(LocInfo.second);
Chris Lattner387616e2009-02-17 08:04:48 +0000856}
857
858
Chandler Carruth3201f382011-07-26 05:17:23 +0000859/// getImmediateExpansionRange - Loc is required to be an expansion location.
860/// Return the start/end of the expansion information.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000861std::pair<SourceLocation,SourceLocation>
Chandler Carruth999f7392011-07-25 20:52:21 +0000862SourceManager::getImmediateExpansionRange(SourceLocation Loc) const {
Chandler Carruth3201f382011-07-26 05:17:23 +0000863 assert(Loc.isMacroID() && "Not a macro expansion loc!");
Chandler Carruth17287622011-07-26 04:56:51 +0000864 const ExpansionInfo &Expansion = getSLocEntry(getFileID(Loc)).getExpansion();
Chandler Carruth78df8362011-07-26 04:41:47 +0000865 return Expansion.getExpansionLocRange();
Chris Lattnere7fb4842009-02-15 20:52:18 +0000866}
867
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000868/// getExpansionRange - Given a SourceLocation object, return the range of
869/// tokens covered by the expansion in the ultimate file.
Chris Lattner66781332009-02-15 21:26:50 +0000870std::pair<SourceLocation,SourceLocation>
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000871SourceManager::getExpansionRange(SourceLocation Loc) const {
Chris Lattner66781332009-02-15 21:26:50 +0000872 if (Loc.isFileID()) return std::make_pair(Loc, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000873
Chris Lattner66781332009-02-15 21:26:50 +0000874 std::pair<SourceLocation,SourceLocation> Res =
Chandler Carruth999f7392011-07-25 20:52:21 +0000875 getImmediateExpansionRange(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000876
Chandler Carruth3201f382011-07-26 05:17:23 +0000877 // Fully resolve the start and end locations to their ultimate expansion
Chris Lattner66781332009-02-15 21:26:50 +0000878 // points.
879 while (!Res.first.isFileID())
Chandler Carruth999f7392011-07-25 20:52:21 +0000880 Res.first = getImmediateExpansionRange(Res.first).first;
Chris Lattner66781332009-02-15 21:26:50 +0000881 while (!Res.second.isFileID())
Chandler Carruth999f7392011-07-25 20:52:21 +0000882 Res.second = getImmediateExpansionRange(Res.second).second;
Chris Lattner66781332009-02-15 21:26:50 +0000883 return Res;
884}
885
Chandler Carruth96d35892011-07-26 03:03:00 +0000886bool SourceManager::isMacroArgExpansion(SourceLocation Loc) const {
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000887 if (!Loc.isMacroID()) return false;
888
889 FileID FID = getFileID(Loc);
890 const SrcMgr::SLocEntry *E = &getSLocEntry(FID);
Chandler Carruth17287622011-07-26 04:56:51 +0000891 const SrcMgr::ExpansionInfo &Expansion = E->getExpansion();
Chandler Carruth78df8362011-07-26 04:41:47 +0000892 return Expansion.isMacroArgExpansion();
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000893}
Chris Lattnere7fb4842009-02-15 20:52:18 +0000894
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000895
896//===----------------------------------------------------------------------===//
897// Queries about the code at a SourceLocation.
898//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000899
900/// getCharacterData - Return a pointer to the start of the specified location
901/// in the appropriate MemoryBuffer.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000902const char *SourceManager::getCharacterData(SourceLocation SL,
903 bool *Invalid) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000904 // Note that this is a hot function in the getSpelling() path, which is
905 // heavily used by -E mode.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000906 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
Mike Stump1eb44332009-09-09 15:08:12 +0000907
Ted Kremenekc16c2082009-01-06 01:55:26 +0000908 // Note that calling 'getBuffer()' may lazily page in a source file.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000909 bool CharDataInvalid = false;
Douglas Gregore23ac652011-04-20 00:21:03 +0000910 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid);
911 if (CharDataInvalid || !Entry.isFile()) {
912 if (Invalid)
913 *Invalid = true;
914
915 return "<<<<INVALID BUFFER>>>>";
916 }
Douglas Gregor50f6af72010-03-16 05:20:39 +0000917 const llvm::MemoryBuffer *Buffer
Douglas Gregore23ac652011-04-20 00:21:03 +0000918 = Entry.getFile().getContentCache()
919 ->getBuffer(Diag, *this, SourceLocation(), &CharDataInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000920 if (Invalid)
921 *Invalid = CharDataInvalid;
922 return Buffer->getBufferStart() + (CharDataInvalid? 0 : LocInfo.second);
Reid Spencer5f016e22007-07-11 17:01:13 +0000923}
924
Reid Spencer5f016e22007-07-11 17:01:13 +0000925
Chris Lattner9dc1f532007-07-20 16:37:10 +0000926/// getColumnNumber - Return the column # for the specified file position.
Chris Lattner7da5aea2009-02-04 00:55:58 +0000927/// this is significantly cheaper to compute than the line number.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000928unsigned SourceManager::getColumnNumber(FileID FID, unsigned FilePos,
929 bool *Invalid) const {
930 bool MyInvalid = false;
931 const char *Buf = getBuffer(FID, &MyInvalid)->getBufferStart();
932 if (Invalid)
933 *Invalid = MyInvalid;
934
935 if (MyInvalid)
936 return 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Reid Spencer5f016e22007-07-11 17:01:13 +0000938 unsigned LineStart = FilePos;
939 while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
940 --LineStart;
941 return FilePos-LineStart+1;
942}
943
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000944// isInvalid - Return the result of calling loc.isInvalid(), and
945// if Invalid is not null, set its value to same.
946static bool isInvalid(SourceLocation Loc, bool *Invalid) {
947 bool MyInvalid = Loc.isInvalid();
948 if (Invalid)
949 *Invalid = MyInvalid;
950 return MyInvalid;
951}
952
Douglas Gregor50f6af72010-03-16 05:20:39 +0000953unsigned SourceManager::getSpellingColumnNumber(SourceLocation Loc,
954 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000955 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000956 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000957 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000958}
959
Chandler Carrutha77c0312011-07-25 20:57:57 +0000960unsigned SourceManager::getExpansionColumnNumber(SourceLocation Loc,
961 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000962 if (isInvalid(Loc, Invalid)) return 0;
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000963 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000964 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000965}
966
Chandler Carruth5ef04ee2011-02-23 00:47:48 +0000967unsigned SourceManager::getPresumedColumnNumber(SourceLocation Loc,
968 bool *Invalid) const {
969 if (isInvalid(Loc, Invalid)) return 0;
970 return getPresumedLoc(Loc).getColumn();
971}
972
Chandler Carruth14bd9652010-10-23 08:44:57 +0000973static LLVM_ATTRIBUTE_NOINLINE void
Chris Lattnere127a0d2010-04-20 20:35:58 +0000974ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
975 llvm::BumpPtrAllocator &Alloc,
976 const SourceManager &SM, bool &Invalid);
977static void ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
978 llvm::BumpPtrAllocator &Alloc,
979 const SourceManager &SM, bool &Invalid) {
Ted Kremenekc16c2082009-01-06 01:55:26 +0000980 // Note that calling 'getBuffer()' may lazily page in the file.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000981 const MemoryBuffer *Buffer = FI->getBuffer(Diag, SM, SourceLocation(),
982 &Invalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000983 if (Invalid)
984 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000986 // Find the file offsets of all of the *physical* source lines. This does
987 // not look at trigraphs, escaped newlines, or anything else tricky.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000988 SmallVector<unsigned, 256> LineOffsets;
Mike Stump1eb44332009-09-09 15:08:12 +0000989
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000990 // Line #1 starts at char 0.
991 LineOffsets.push_back(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000993 const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
994 const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
995 unsigned Offs = 0;
996 while (1) {
997 // Skip over the contents of the line.
998 // TODO: Vectorize this? This is very performance sensitive for programs
999 // with lots of diagnostics and in -E mode.
1000 const unsigned char *NextBuf = (const unsigned char *)Buf;
1001 while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
1002 ++NextBuf;
1003 Offs += NextBuf-Buf;
1004 Buf = NextBuf;
Mike Stump1eb44332009-09-09 15:08:12 +00001005
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001006 if (Buf[0] == '\n' || Buf[0] == '\r') {
1007 // If this is \n\r or \r\n, skip both characters.
1008 if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
1009 ++Offs, ++Buf;
1010 ++Offs, ++Buf;
1011 LineOffsets.push_back(Offs);
1012 } else {
1013 // Otherwise, this is a null. If end of file, exit.
1014 if (Buf == End) break;
1015 // Otherwise, skip the null.
1016 ++Offs, ++Buf;
1017 }
1018 }
Mike Stump1eb44332009-09-09 15:08:12 +00001019
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001020 // Copy the offsets into the FileInfo structure.
1021 FI->NumLines = LineOffsets.size();
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001022 FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001023 std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
1024}
Reid Spencer5f016e22007-07-11 17:01:13 +00001025
Chris Lattnerdf7c17a2009-01-16 07:00:02 +00001026/// getLineNumber - Given a SourceLocation, return the spelling line number
Reid Spencer5f016e22007-07-11 17:01:13 +00001027/// for the position indicated. This requires building and caching a table of
1028/// line offsets for the MemoryBuffer, so this is not cheap: use only when
1029/// about to emit a diagnostic.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001030unsigned SourceManager::getLineNumber(FileID FID, unsigned FilePos,
1031 bool *Invalid) const {
Argyrios Kyrtzidis5adc0512011-05-17 22:09:53 +00001032 if (FID.isInvalid()) {
1033 if (Invalid)
1034 *Invalid = true;
1035 return 1;
1036 }
1037
Chris Lattner2b2453a2009-01-17 06:22:33 +00001038 ContentCache *Content;
Chris Lattner30fc9332009-02-04 01:06:56 +00001039 if (LastLineNoFileIDQuery == FID)
Ted Kremenek78d85f52007-10-30 21:08:08 +00001040 Content = LastLineNoContentCache;
Douglas Gregore23ac652011-04-20 00:21:03 +00001041 else {
1042 bool MyInvalid = false;
1043 const SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
1044 if (MyInvalid || !Entry.isFile()) {
1045 if (Invalid)
1046 *Invalid = true;
1047 return 1;
1048 }
1049
1050 Content = const_cast<ContentCache*>(Entry.getFile().getContentCache());
1051 }
1052
Reid Spencer5f016e22007-07-11 17:01:13 +00001053 // If this is the first use of line information for this buffer, compute the
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001054 /// SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001055 if (Content->SourceLineCache == 0) {
1056 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +00001057 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +00001058 if (Invalid)
1059 *Invalid = MyInvalid;
1060 if (MyInvalid)
1061 return 1;
1062 } else if (Invalid)
1063 *Invalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001064
1065 // Okay, we know we have a line number table. Do a binary search to find the
1066 // line number that this character position lands on.
Ted Kremenek78d85f52007-10-30 21:08:08 +00001067 unsigned *SourceLineCache = Content->SourceLineCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001068 unsigned *SourceLineCacheStart = SourceLineCache;
Ted Kremenek78d85f52007-10-30 21:08:08 +00001069 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
Mike Stump1eb44332009-09-09 15:08:12 +00001070
Chris Lattner30fc9332009-02-04 01:06:56 +00001071 unsigned QueriedFilePos = FilePos+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001072
Daniel Dunbar4106d692009-05-18 17:30:52 +00001073 // FIXME: I would like to be convinced that this code is worth being as
Mike Stump1eb44332009-09-09 15:08:12 +00001074 // complicated as it is, binary search isn't that slow.
Daniel Dunbar4106d692009-05-18 17:30:52 +00001075 //
1076 // If it is worth being optimized, then in my opinion it could be more
1077 // performant, simpler, and more obviously correct by just "galloping" outward
1078 // from the queried file position. In fact, this could be incorporated into a
1079 // generic algorithm such as lower_bound_with_hint.
1080 //
1081 // If someone gives me a test case where this matters, and I will do it! - DWD
1082
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001083 // If the previous query was to the same file, we know both the file pos from
1084 // that query and the line number returned. This allows us to narrow the
1085 // search space from the entire file to something near the match.
Chris Lattner30fc9332009-02-04 01:06:56 +00001086 if (LastLineNoFileIDQuery == FID) {
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001087 if (QueriedFilePos >= LastLineNoFilePos) {
Daniel Dunbar4106d692009-05-18 17:30:52 +00001088 // FIXME: Potential overflow?
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001089 SourceLineCache = SourceLineCache+LastLineNoResult-1;
Mike Stump1eb44332009-09-09 15:08:12 +00001090
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001091 // The query is likely to be nearby the previous one. Here we check to
1092 // see if it is within 5, 10 or 20 lines. It can be far away in cases
1093 // where big comment blocks and vertical whitespace eat up lines but
1094 // contribute no tokens.
1095 if (SourceLineCache+5 < SourceLineCacheEnd) {
1096 if (SourceLineCache[5] > QueriedFilePos)
1097 SourceLineCacheEnd = SourceLineCache+5;
1098 else if (SourceLineCache+10 < SourceLineCacheEnd) {
1099 if (SourceLineCache[10] > QueriedFilePos)
1100 SourceLineCacheEnd = SourceLineCache+10;
1101 else if (SourceLineCache+20 < SourceLineCacheEnd) {
1102 if (SourceLineCache[20] > QueriedFilePos)
1103 SourceLineCacheEnd = SourceLineCache+20;
1104 }
1105 }
1106 }
1107 } else {
Daniel Dunbar4106d692009-05-18 17:30:52 +00001108 if (LastLineNoResult < Content->NumLines)
1109 SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001110 }
1111 }
Mike Stump1eb44332009-09-09 15:08:12 +00001112
Chris Lattner1cf12bf2007-07-24 06:43:46 +00001113 // If the spread is large, do a "radix" test as our initial guess, based on
1114 // the assumption that lines average to approximately the same length.
1115 // NOTE: This is currently disabled, as it does not appear to be profitable in
1116 // initial measurements.
1117 if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
Ted Kremenek78d85f52007-10-30 21:08:08 +00001118 unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
Mike Stump1eb44332009-09-09 15:08:12 +00001119
Chris Lattner1cf12bf2007-07-24 06:43:46 +00001120 // Take a stab at guessing where it is.
Ted Kremenek78d85f52007-10-30 21:08:08 +00001121 unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
Mike Stump1eb44332009-09-09 15:08:12 +00001122
Chris Lattner1cf12bf2007-07-24 06:43:46 +00001123 // Check for -10 and +10 lines.
1124 unsigned LowerBound = std::max(int(ApproxPos-10), 0);
1125 unsigned UpperBound = std::min(ApproxPos+10, FileLen);
1126
1127 // If the computed lower bound is less than the query location, move it in.
1128 if (SourceLineCache < SourceLineCacheStart+LowerBound &&
1129 SourceLineCacheStart[LowerBound] < QueriedFilePos)
1130 SourceLineCache = SourceLineCacheStart+LowerBound;
Mike Stump1eb44332009-09-09 15:08:12 +00001131
Chris Lattner1cf12bf2007-07-24 06:43:46 +00001132 // If the computed upper bound is greater than the query location, move it.
1133 if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
1134 SourceLineCacheStart[UpperBound] >= QueriedFilePos)
1135 SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
1136 }
Mike Stump1eb44332009-09-09 15:08:12 +00001137
Chris Lattner1cf12bf2007-07-24 06:43:46 +00001138 unsigned *Pos
1139 = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001140 unsigned LineNo = Pos-SourceLineCacheStart;
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Chris Lattner30fc9332009-02-04 01:06:56 +00001142 LastLineNoFileIDQuery = FID;
Ted Kremenek78d85f52007-10-30 21:08:08 +00001143 LastLineNoContentCache = Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +00001144 LastLineNoFilePos = QueriedFilePos;
1145 LastLineNoResult = LineNo;
1146 return LineNo;
Reid Spencer5f016e22007-07-11 17:01:13 +00001147}
1148
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001149unsigned SourceManager::getSpellingLineNumber(SourceLocation Loc,
1150 bool *Invalid) const {
1151 if (isInvalid(Loc, Invalid)) return 0;
1152 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
1153 return getLineNumber(LocInfo.first, LocInfo.second);
1154}
Chandler Carruth64211622011-07-25 21:09:52 +00001155unsigned SourceManager::getExpansionLineNumber(SourceLocation Loc,
1156 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +00001157 if (isInvalid(Loc, Invalid)) return 0;
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +00001158 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Chris Lattner30fc9332009-02-04 01:06:56 +00001159 return getLineNumber(LocInfo.first, LocInfo.second);
1160}
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001161unsigned SourceManager::getPresumedLineNumber(SourceLocation Loc,
Douglas Gregor50f6af72010-03-16 05:20:39 +00001162 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +00001163 if (isInvalid(Loc, Invalid)) return 0;
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001164 return getPresumedLoc(Loc).getLine();
Chris Lattner30fc9332009-02-04 01:06:56 +00001165}
1166
Chris Lattner6b306672009-02-04 05:33:01 +00001167/// getFileCharacteristic - return the file characteristic of the specified
Mike Stump1eb44332009-09-09 15:08:12 +00001168/// source location, indicating whether this is a normal file, a system
Chris Lattner6b306672009-02-04 05:33:01 +00001169/// header, or an "implicit extern C" system header.
1170///
1171/// This state can be modified with flags on GNU linemarker directives like:
1172/// # 4 "foo.h" 3
1173/// which changes all source locations in the current file after that to be
1174/// considered to be from a system header.
Mike Stump1eb44332009-09-09 15:08:12 +00001175SrcMgr::CharacteristicKind
Chris Lattner6b306672009-02-04 05:33:01 +00001176SourceManager::getFileCharacteristic(SourceLocation Loc) const {
1177 assert(!Loc.isInvalid() && "Can't get file characteristic of invalid loc!");
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +00001178 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Douglas Gregore23ac652011-04-20 00:21:03 +00001179 bool Invalid = false;
1180 const SLocEntry &SEntry = getSLocEntry(LocInfo.first, &Invalid);
1181 if (Invalid || !SEntry.isFile())
1182 return C_User;
1183
1184 const SrcMgr::FileInfo &FI = SEntry.getFile();
Chris Lattner6b306672009-02-04 05:33:01 +00001185
1186 // If there are no #line directives in this file, just return the whole-file
1187 // state.
1188 if (!FI.hasLineDirectives())
1189 return FI.getFileCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +00001190
Chris Lattner6b306672009-02-04 05:33:01 +00001191 assert(LineTable && "Can't have linetable entries without a LineTable!");
1192 // See if there is a #line directive before the location.
1193 const LineEntry *Entry =
1194 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Chris Lattner6b306672009-02-04 05:33:01 +00001196 // If this is before the first line marker, use the file characteristic.
1197 if (!Entry)
1198 return FI.getFileCharacteristic();
1199
1200 return Entry->FileKind;
1201}
1202
Chris Lattnerbff5c512009-02-17 08:39:06 +00001203/// Return the filename or buffer identifier of the buffer the location is in.
1204/// Note that this name does not respect #line directives. Use getPresumedLoc
1205/// for normal clients.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001206const char *SourceManager::getBufferName(SourceLocation Loc,
1207 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +00001208 if (isInvalid(Loc, Invalid)) return "<invalid loc>";
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Douglas Gregor50f6af72010-03-16 05:20:39 +00001210 return getBuffer(getFileID(Loc), Invalid)->getBufferIdentifier();
Chris Lattnerbff5c512009-02-17 08:39:06 +00001211}
1212
Chris Lattner30fc9332009-02-04 01:06:56 +00001213
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001214/// getPresumedLoc - This method returns the "presumed" location of a
1215/// SourceLocation specifies. A "presumed location" can be modified by #line
1216/// or GNU line marker directives. This provides a view on the data that a
1217/// user should see in diagnostics, for example.
1218///
Chandler Carruth3201f382011-07-26 05:17:23 +00001219/// Note that a presumed location is always given as the expansion point of an
1220/// expansion location, not at the spelling location.
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001221PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc) const {
1222 if (Loc.isInvalid()) return PresumedLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001223
Chandler Carruth3201f382011-07-26 05:17:23 +00001224 // Presumed locations are always for expansion points.
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +00001225 std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001226
Douglas Gregore23ac652011-04-20 00:21:03 +00001227 bool Invalid = false;
1228 const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
1229 if (Invalid || !Entry.isFile())
1230 return PresumedLoc();
1231
1232 const SrcMgr::FileInfo &FI = Entry.getFile();
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001233 const SrcMgr::ContentCache *C = FI.getContentCache();
Mike Stump1eb44332009-09-09 15:08:12 +00001234
Chris Lattner3cd949c2009-02-04 01:55:42 +00001235 // To get the source name, first consult the FileEntry (if one exists)
1236 // before the MemBuffer as this will avoid unnecessarily paging in the
1237 // MemBuffer.
Chris Lattnere127a0d2010-04-20 20:35:58 +00001238 const char *Filename;
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001239 if (C->OrigEntry)
1240 Filename = C->OrigEntry->getName();
Chris Lattnere127a0d2010-04-20 20:35:58 +00001241 else
1242 Filename = C->getBuffer(Diag, *this)->getBufferIdentifier();
Douglas Gregore23ac652011-04-20 00:21:03 +00001243
Douglas Gregorc417fa02010-11-02 00:39:22 +00001244 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1245 if (Invalid)
1246 return PresumedLoc();
1247 unsigned ColNo = getColumnNumber(LocInfo.first, LocInfo.second, &Invalid);
1248 if (Invalid)
1249 return PresumedLoc();
1250
Chris Lattner3cd949c2009-02-04 01:55:42 +00001251 SourceLocation IncludeLoc = FI.getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Chris Lattner3cd949c2009-02-04 01:55:42 +00001253 // If we have #line directives in this file, update and overwrite the physical
1254 // location info if appropriate.
1255 if (FI.hasLineDirectives()) {
1256 assert(LineTable && "Can't have linetable entries without a LineTable!");
1257 // See if there is a #line directive before this. If so, get it.
1258 if (const LineEntry *Entry =
1259 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second)) {
Chris Lattnerfc391332009-02-04 02:00:59 +00001260 // If the LineEntry indicates a filename, use it.
Chris Lattner3cd949c2009-02-04 01:55:42 +00001261 if (Entry->FilenameID != -1)
1262 Filename = LineTable->getFilename(Entry->FilenameID);
Chris Lattnerfc391332009-02-04 02:00:59 +00001263
1264 // Use the line number specified by the LineEntry. This line number may
1265 // be multiple lines down from the line entry. Add the difference in
1266 // physical line numbers from the query point and the line marker to the
1267 // total.
1268 unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
1269 LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1);
Mike Stump1eb44332009-09-09 15:08:12 +00001270
Chris Lattner0e0e5da2009-02-04 02:15:40 +00001271 // Note that column numbers are not molested by line markers.
Mike Stump1eb44332009-09-09 15:08:12 +00001272
Chris Lattner137b6a62009-02-04 06:25:26 +00001273 // Handle virtual #include manipulation.
1274 if (Entry->IncludeOffset) {
1275 IncludeLoc = getLocForStartOfFile(LocInfo.first);
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00001276 IncludeLoc = IncludeLoc.getLocWithOffset(Entry->IncludeOffset);
Chris Lattner137b6a62009-02-04 06:25:26 +00001277 }
Chris Lattner3cd949c2009-02-04 01:55:42 +00001278 }
1279 }
1280
1281 return PresumedLoc(Filename, LineNo, ColNo, IncludeLoc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001282}
1283
Argyrios Kyrtzidis984e42c2011-08-23 21:02:28 +00001284/// \brief The size of the SLocEnty that \arg FID represents.
1285unsigned SourceManager::getFileIDSize(FileID FID) const {
1286 bool Invalid = false;
1287 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
1288 if (Invalid)
1289 return 0;
1290
1291 int ID = FID.ID;
1292 unsigned NextOffset;
1293 if ((ID > 0 && unsigned(ID+1) == local_sloc_entry_size()))
1294 NextOffset = getNextLocalOffset();
1295 else if (ID+1 == -1)
1296 NextOffset = MaxLoadedOffset;
1297 else
1298 NextOffset = getSLocEntry(FileID::get(ID+1)).getOffset();
1299
1300 return NextOffset - Entry.getOffset() - 1;
1301}
1302
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001303//===----------------------------------------------------------------------===//
1304// Other miscellaneous methods.
1305//===----------------------------------------------------------------------===//
1306
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001307/// \brief Retrieve the inode for the given file entry, if possible.
1308///
1309/// This routine involves a system call, and therefore should only be used
1310/// in non-performance-critical code.
1311static llvm::Optional<ino_t> getActualFileInode(const FileEntry *File) {
1312 if (!File)
1313 return llvm::Optional<ino_t>();
1314
1315 struct stat StatBuf;
1316 if (::stat(File->getName(), &StatBuf))
1317 return llvm::Optional<ino_t>();
1318
1319 return StatBuf.st_ino;
1320}
1321
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001322/// \brief Get the source location for the given file:line:col triplet.
1323///
1324/// If the source file is included multiple times, the source location will
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001325/// be based upon an arbitrary inclusion.
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001326SourceLocation SourceManager::translateFileLineCol(const FileEntry *SourceFile,
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001327 unsigned Line,
1328 unsigned Col) const {
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001329 assert(SourceFile && "Null source file!");
1330 assert(Line && Col && "Line and column should start from 1!");
1331
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001332 // Find the first file ID that corresponds to the given file.
1333 FileID FirstFID;
Mike Stump1eb44332009-09-09 15:08:12 +00001334
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001335 // First, check the main file ID, since it is common to look for a
1336 // location in the main file.
1337 llvm::Optional<ino_t> SourceFileInode;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001338 llvm::Optional<StringRef> SourceFileName;
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001339 if (!MainFileID.isInvalid()) {
Douglas Gregore23ac652011-04-20 00:21:03 +00001340 bool Invalid = false;
1341 const SLocEntry &MainSLoc = getSLocEntry(MainFileID, &Invalid);
1342 if (Invalid)
1343 return SourceLocation();
1344
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001345 if (MainSLoc.isFile()) {
1346 const ContentCache *MainContentCache
1347 = MainSLoc.getFile().getContentCache();
Douglas Gregorb7a18412011-02-11 18:08:15 +00001348 if (!MainContentCache) {
1349 // Can't do anything
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001350 } else if (MainContentCache->OrigEntry == SourceFile) {
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001351 FirstFID = MainFileID;
Douglas Gregorb7a18412011-02-11 18:08:15 +00001352 } else {
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001353 // Fall back: check whether we have the same base name and inode
1354 // as the main file.
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001355 const FileEntry *MainFile = MainContentCache->OrigEntry;
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001356 SourceFileName = llvm::sys::path::filename(SourceFile->getName());
1357 if (*SourceFileName == llvm::sys::path::filename(MainFile->getName())) {
1358 SourceFileInode = getActualFileInode(SourceFile);
Douglas Gregor37c02bf2011-02-16 19:09:24 +00001359 if (SourceFileInode) {
1360 if (llvm::Optional<ino_t> MainFileInode
1361 = getActualFileInode(MainFile)) {
1362 if (*SourceFileInode == *MainFileInode) {
1363 FirstFID = MainFileID;
1364 SourceFile = MainFile;
1365 }
1366 }
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001367 }
1368 }
1369 }
1370 }
1371 }
1372
1373 if (FirstFID.isInvalid()) {
1374 // The location we're looking for isn't in the main file; look
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001375 // through all of the local source locations.
1376 for (unsigned I = 0, N = local_sloc_entry_size(); I != N; ++I) {
Douglas Gregore23ac652011-04-20 00:21:03 +00001377 bool Invalid = false;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001378 const SLocEntry &SLoc = getLocalSLocEntry(I, &Invalid);
Douglas Gregore23ac652011-04-20 00:21:03 +00001379 if (Invalid)
1380 return SourceLocation();
1381
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001382 if (SLoc.isFile() &&
1383 SLoc.getFile().getContentCache() &&
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001384 SLoc.getFile().getContentCache()->OrigEntry == SourceFile) {
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001385 FirstFID = FileID::get(I);
1386 break;
1387 }
1388 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001389 // If that still didn't help, try the modules.
1390 if (FirstFID.isInvalid()) {
1391 for (unsigned I = 0, N = loaded_sloc_entry_size(); I != N; ++I) {
1392 const SLocEntry &SLoc = getLoadedSLocEntry(I);
1393 if (SLoc.isFile() &&
1394 SLoc.getFile().getContentCache() &&
1395 SLoc.getFile().getContentCache()->OrigEntry == SourceFile) {
1396 FirstFID = FileID::get(-int(I) - 2);
1397 break;
1398 }
1399 }
1400 }
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001401 }
1402
1403 // If we haven't found what we want yet, try again, but this time stat()
1404 // each of the files in case the files have changed since we originally
1405 // parsed the file.
1406 if (FirstFID.isInvalid() &&
1407 (SourceFileName ||
1408 (SourceFileName = llvm::sys::path::filename(SourceFile->getName()))) &&
1409 (SourceFileInode ||
1410 (SourceFileInode = getActualFileInode(SourceFile)))) {
Douglas Gregore23ac652011-04-20 00:21:03 +00001411 bool Invalid = false;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001412 for (unsigned I = 0, N = local_sloc_entry_size(); I != N; ++I) {
1413 FileID IFileID;
1414 IFileID.ID = I;
1415 const SLocEntry &SLoc = getSLocEntry(IFileID, &Invalid);
Douglas Gregore23ac652011-04-20 00:21:03 +00001416 if (Invalid)
1417 return SourceLocation();
1418
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001419 if (SLoc.isFile()) {
1420 const ContentCache *FileContentCache
1421 = SLoc.getFile().getContentCache();
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001422 const FileEntry *Entry =FileContentCache? FileContentCache->OrigEntry : 0;
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001423 if (Entry &&
Douglas Gregorb7a18412011-02-11 18:08:15 +00001424 *SourceFileName == llvm::sys::path::filename(Entry->getName())) {
1425 if (llvm::Optional<ino_t> EntryInode = getActualFileInode(Entry)) {
1426 if (*SourceFileInode == *EntryInode) {
1427 FirstFID = FileID::get(I);
1428 SourceFile = Entry;
1429 break;
1430 }
1431 }
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001432 }
1433 }
1434 }
1435 }
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001436
1437 return translateLineCol(FirstFID, Line, Col);
1438}
1439
1440/// \brief Get the source location in \arg FID for the given line:col.
1441/// Returns null location if \arg FID is not a file SLocEntry.
1442SourceLocation SourceManager::translateLineCol(FileID FID,
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001443 unsigned Line,
1444 unsigned Col) const {
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001445 if (FID.isInvalid())
1446 return SourceLocation();
1447
1448 bool Invalid = false;
1449 const SLocEntry &Entry = getSLocEntry(FID, &Invalid);
1450 if (Invalid)
1451 return SourceLocation();
1452
1453 if (!Entry.isFile())
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001454 return SourceLocation();
1455
1456 if (Line == 1 && Col == 1)
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001457 return getLocForStartOfFile(FID);
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001458
1459 ContentCache *Content
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001460 = const_cast<ContentCache *>(Entry.getFile().getContentCache());
Douglas Gregor86a4d0d2011-02-03 17:17:35 +00001461 if (!Content)
1462 return SourceLocation();
1463
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001464 // If this is the first use of line information for this buffer, compute the
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001465 // SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001466 if (Content->SourceLineCache == 0) {
1467 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +00001468 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +00001469 if (MyInvalid)
1470 return SourceLocation();
1471 }
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001472
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001473 if (Line > Content->NumLines) {
Chris Lattnere127a0d2010-04-20 20:35:58 +00001474 unsigned Size = Content->getBuffer(Diag, *this)->getBufferSize();
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001475 if (Size > 0)
1476 --Size;
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001477 return getLocForStartOfFile(FID).getLocWithOffset(Size);
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001478 }
1479
1480 unsigned FilePos = Content->SourceLineCache[Line - 1];
Chris Lattnere127a0d2010-04-20 20:35:58 +00001481 const char *Buf = Content->getBuffer(Diag, *this)->getBufferStart() + FilePos;
1482 unsigned BufLength = Content->getBuffer(Diag, *this)->getBufferEnd() - Buf;
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001483 unsigned i = 0;
1484
1485 // Check that the given column is valid.
1486 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
1487 ++i;
1488 if (i < Col-1)
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001489 return getLocForStartOfFile(FID).getLocWithOffset(FilePos + i);
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001490
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001491 return getLocForStartOfFile(FID).getLocWithOffset(FilePos + Col - 1);
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001492}
1493
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001494/// \brief Compute a map of macro argument chunks to their expanded source
1495/// location. Chunks that are not part of a macro argument will map to an
1496/// invalid source location. e.g. if a file contains one macro argument at
1497/// offset 100 with length 10, this is how the map will be formed:
1498/// 0 -> SourceLocation()
1499/// 100 -> Expanded macro arg location
1500/// 110 -> SourceLocation()
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001501void SourceManager::computeMacroArgsCache(ContentCache *Content,
1502 FileID FID) const {
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001503 assert(!Content->MacroArgsCache);
1504 assert(!FID.isInvalid());
1505
1506 Content->MacroArgsCache = new ContentCache::MacroArgsMap();
1507 ContentCache::MacroArgsMap &MacroArgsCache = *Content->MacroArgsCache;
1508 // Initially no macro argument chunk is present.
1509 MacroArgsCache.insert(std::make_pair(0, SourceLocation()));
1510
1511 int ID = FID.ID;
1512 while (1) {
1513 ++ID;
1514 // Stop if there are no more FileIDs to check.
1515 if (ID > 0) {
1516 if (unsigned(ID) >= local_sloc_entry_size())
1517 return;
1518 } else if (ID == -1) {
1519 return;
1520 }
1521
1522 const SrcMgr::SLocEntry &Entry = getSLocEntryByID(ID);
1523 if (Entry.isFile()) {
1524 SourceLocation IncludeLoc = Entry.getFile().getIncludeLoc();
1525 if (IncludeLoc.isInvalid())
1526 continue;
1527 if (!isInFileID(IncludeLoc, FID))
1528 return; // No more files/macros that may be "contained" in this file.
1529
1530 // Skip the files/macros of the #include'd file, we only care about macros
1531 // that lexed macro arguments from our file.
1532 if (Entry.getFile().NumCreatedFIDs)
1533 ID += Entry.getFile().NumCreatedFIDs - 1/*because of next ++ID*/;
1534 continue;
1535 }
1536
1537 if (!Entry.getExpansion().isMacroArgExpansion())
1538 continue;
1539
1540 SourceLocation SpellLoc =
1541 getSpellingLoc(Entry.getExpansion().getSpellingLoc());
1542 unsigned BeginOffs;
1543 if (!isInFileID(SpellLoc, FID, &BeginOffs))
1544 return; // No more files/macros that may be "contained" in this file.
1545 unsigned EndOffs = BeginOffs + getFileIDSize(FileID::get(ID));
1546
1547 // Add a new chunk for this macro argument. A previous macro argument chunk
1548 // may have been lexed again, so e.g. if the map is
1549 // 0 -> SourceLocation()
1550 // 100 -> Expanded loc #1
1551 // 110 -> SourceLocation()
1552 // and we found a new macro FileID that lexed from offet 105 with length 3,
1553 // the new map will be:
1554 // 0 -> SourceLocation()
1555 // 100 -> Expanded loc #1
1556 // 105 -> Expanded loc #2
1557 // 108 -> Expanded loc #1
1558 // 110 -> SourceLocation()
1559 //
1560 // Since re-lexed macro chunks will always be the same size or less of
1561 // previous chunks, we only need to find where the ending of the new macro
1562 // chunk is mapped to and update the map with new begin/end mappings.
1563
1564 ContentCache::MacroArgsMap::iterator I= MacroArgsCache.upper_bound(EndOffs);
1565 --I;
1566 SourceLocation EndOffsMappedLoc = I->second;
1567 MacroArgsCache[BeginOffs] = SourceLocation::getMacroLoc(Entry.getOffset());
1568 MacroArgsCache[EndOffs] = EndOffsMappedLoc;
1569 }
1570}
1571
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001572/// \brief If \arg Loc points inside a function macro argument, the returned
1573/// location will be the macro location in which the argument was expanded.
1574/// If a macro argument is used multiple times, the expanded location will
1575/// be at the first expansion of the argument.
1576/// e.g.
1577/// MY_MACRO(foo);
1578/// ^
1579/// Passing a file location pointing at 'foo', will yield a macro location
1580/// where 'foo' was expanded into.
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001581SourceLocation
1582SourceManager::getMacroArgExpandedLocation(SourceLocation Loc) const {
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001583 if (Loc.isInvalid() || !Loc.isFileID())
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001584 return Loc;
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001585
1586 FileID FID;
1587 unsigned Offset;
1588 llvm::tie(FID, Offset) = getDecomposedLoc(Loc);
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001589 if (FID.isInvalid())
1590 return Loc;
1591
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001592 ContentCache *Content
1593 = const_cast<ContentCache *>(getSLocEntry(FID).getFile().getContentCache());
1594 if (!Content->MacroArgsCache)
1595 computeMacroArgsCache(Content, FID);
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001596
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001597 assert(Content->MacroArgsCache);
1598 assert(!Content->MacroArgsCache->empty());
1599 ContentCache::MacroArgsMap::iterator
1600 I = Content->MacroArgsCache->upper_bound(Offset);
1601 --I;
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001602
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001603 unsigned MacroArgBeginOffs = I->first;
1604 SourceLocation MacroArgExpandedLoc = I->second;
1605 if (MacroArgExpandedLoc.isValid())
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00001606 return MacroArgExpandedLoc.getLocWithOffset(Offset - MacroArgBeginOffs);
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001607
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001608 return Loc;
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001609}
1610
Chandler Carruth3201f382011-07-26 05:17:23 +00001611/// Given a decomposed source location, move it up the include/expansion stack
1612/// to the parent source location. If this is possible, return the decomposed
1613/// version of the parent in Loc and return false. If Loc is the top-level
1614/// entry, return true and don't modify it.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001615static bool MoveUpIncludeHierarchy(std::pair<FileID, unsigned> &Loc,
1616 const SourceManager &SM) {
1617 SourceLocation UpperLoc;
1618 const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(Loc.first);
Chandler Carruth17287622011-07-26 04:56:51 +00001619 if (Entry.isExpansion())
Argyrios Kyrtzidis50402472011-09-19 20:39:57 +00001620 UpperLoc = Entry.getExpansion().getExpansionLocEnd();
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001621 else
1622 UpperLoc = Entry.getFile().getIncludeLoc();
1623
1624 if (UpperLoc.isInvalid())
1625 return true; // We reached the top.
1626
1627 Loc = SM.getDecomposedLoc(UpperLoc);
1628 return false;
1629}
1630
1631
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001632/// \brief Determines the order of 2 source locations in the translation unit.
1633///
1634/// \returns true if LHS source location comes before RHS, false otherwise.
1635bool SourceManager::isBeforeInTranslationUnit(SourceLocation LHS,
1636 SourceLocation RHS) const {
1637 assert(LHS.isValid() && RHS.isValid() && "Passed invalid source location!");
1638 if (LHS == RHS)
1639 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001640
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001641 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
1642 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00001643
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001644 // If the source locations are in the same file, just compare offsets.
1645 if (LOffs.first == ROffs.first)
1646 return LOffs.second < ROffs.second;
1647
1648 // If we are comparing a source location with multiple locations in the same
1649 // file, we get a big win by caching the result.
Chris Lattner66a915f2010-05-07 05:10:46 +00001650 if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
1651 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001652
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001653 // Okay, we missed in the cache, start updating the cache for this query.
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +00001654 IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first,
1655 /*isLFIDBeforeRFID=*/LOffs.first.ID < ROffs.first.ID);
Mike Stump1eb44332009-09-09 15:08:12 +00001656
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001657 // We need to find the common ancestor. The only way of doing this is to
1658 // build the complete include chain for one and then walking up the chain
1659 // of the other looking for a match.
1660 // We use a map from FileID to Offset to store the chain. Easier than writing
1661 // a custom set hash info that only depends on the first part of a pair.
1662 typedef llvm::DenseMap<FileID, unsigned> LocSet;
1663 LocSet LChain;
Chris Lattner48296ba2010-05-07 05:51:13 +00001664 do {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001665 LChain.insert(LOffs);
1666 // We catch the case where LOffs is in a file included by ROffs and
1667 // quit early. The other way round unfortunately remains suboptimal.
1668 } while (LOffs.first != ROffs.first && !MoveUpIncludeHierarchy(LOffs, *this));
1669 LocSet::iterator I;
1670 while((I = LChain.find(ROffs.first)) == LChain.end()) {
1671 if (MoveUpIncludeHierarchy(ROffs, *this))
1672 break; // Met at topmost file.
1673 }
1674 if (I != LChain.end())
1675 LOffs = *I;
Mike Stump1eb44332009-09-09 15:08:12 +00001676
Chris Lattner48296ba2010-05-07 05:51:13 +00001677 // If we exited because we found a nearest common ancestor, compare the
1678 // locations within the common file and cache them.
1679 if (LOffs.first == ROffs.first) {
1680 IsBeforeInTUCache.setCommonLoc(LOffs.first, LOffs.second, ROffs.second);
1681 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001682 }
Mike Stump1eb44332009-09-09 15:08:12 +00001683
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001684 // This can happen if a location is in a built-ins buffer.
1685 // But see PR5662.
1686 // Clear the lookup cache, it depends on a common location.
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +00001687 IsBeforeInTUCache.clear();
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001688 bool LIsBuiltins = strcmp("<built-in>",
1689 getBuffer(LOffs.first)->getBufferIdentifier()) == 0;
1690 bool RIsBuiltins = strcmp("<built-in>",
1691 getBuffer(ROffs.first)->getBufferIdentifier()) == 0;
1692 // built-in is before non-built-in
1693 if (LIsBuiltins != RIsBuiltins)
1694 return LIsBuiltins;
1695 assert(LIsBuiltins && RIsBuiltins &&
1696 "Non-built-in locations must be rooted in the main file");
1697 // Both are in built-in buffers, but from different files. We just claim that
1698 // lower IDs come first.
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001699 return LOffs.first < ROffs.first;
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001700}
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001701
Reid Spencer5f016e22007-07-11 17:01:13 +00001702/// PrintStats - Print statistics to stderr.
1703///
1704void SourceManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001705 llvm::errs() << "\n*** Source Manager Stats:\n";
1706 llvm::errs() << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
1707 << " mem buffers mapped.\n";
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001708 llvm::errs() << LocalSLocEntryTable.size() << " local SLocEntry's allocated ("
Ted Kremenek6e36c122011-07-27 18:41:16 +00001709 << llvm::capacity_in_bytes(LocalSLocEntryTable)
Argyrios Kyrtzidisd410e742011-07-07 03:40:24 +00001710 << " bytes of capacity), "
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001711 << NextLocalOffset << "B of Sloc address space used.\n";
1712 llvm::errs() << LoadedSLocEntryTable.size()
1713 << " loaded SLocEntries allocated, "
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001714 << MaxLoadedOffset - CurrentLoadedOffset
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001715 << "B of Sloc address space used.\n";
1716
Reid Spencer5f016e22007-07-11 17:01:13 +00001717 unsigned NumLineNumsComputed = 0;
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001718 unsigned NumMacroArgsComputed = 0;
Reid Spencer5f016e22007-07-11 17:01:13 +00001719 unsigned NumFileBytesMapped = 0;
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001720 for (fileinfo_iterator I = fileinfo_begin(), E = fileinfo_end(); I != E; ++I){
1721 NumLineNumsComputed += I->second->SourceLineCache != 0;
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001722 NumMacroArgsComputed += I->second->MacroArgsCache != 0;
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001723 NumFileBytesMapped += I->second->getSizeBytesMapped();
Reid Spencer5f016e22007-07-11 17:01:13 +00001724 }
Mike Stump1eb44332009-09-09 15:08:12 +00001725
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001726 llvm::errs() << NumFileBytesMapped << " bytes of files mapped, "
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001727 << NumLineNumsComputed << " files with line #'s computed, "
1728 << NumMacroArgsComputed << " files with macro args computed.\n";
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001729 llvm::errs() << "FileID scans: " << NumLinearScans << " linear, "
1730 << NumBinaryProbes << " binary.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +00001731}
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001732
1733ExternalSLocEntrySource::~ExternalSLocEntrySource() { }
Ted Kremenekf61b8312011-04-28 20:36:42 +00001734
1735/// Return the amount of memory used by memory buffers, breaking down
1736/// by heap-backed versus mmap'ed memory.
1737SourceManager::MemoryBufferSizes SourceManager::getMemoryBufferSizes() const {
1738 size_t malloc_bytes = 0;
1739 size_t mmap_bytes = 0;
1740
1741 for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i)
1742 if (size_t sized_mapped = MemBufferInfos[i]->getSizeBytesMapped())
1743 switch (MemBufferInfos[i]->getMemoryBufferKind()) {
1744 case llvm::MemoryBuffer::MemoryBuffer_MMap:
1745 mmap_bytes += sized_mapped;
1746 break;
1747 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
1748 malloc_bytes += sized_mapped;
1749 break;
1750 }
1751
1752 return MemoryBufferSizes(malloc_bytes, mmap_bytes);
1753}
1754
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00001755size_t SourceManager::getDataStructureSizes() const {
Ted Kremenek6e36c122011-07-27 18:41:16 +00001756 return llvm::capacity_in_bytes(MemBufferInfos)
1757 + llvm::capacity_in_bytes(LocalSLocEntryTable)
1758 + llvm::capacity_in_bytes(LoadedSLocEntryTable)
1759 + llvm::capacity_in_bytes(SLocEntryLoaded)
1760 + llvm::capacity_in_bytes(FileInfos)
1761 + llvm::capacity_in_bytes(OverriddenFiles);
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00001762}