blob: 2e47cdc275fca0b54bccb5989175003c87bbe8dd [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"
Chris Lattner5e36a7a2007-07-24 05:57:19 +000019#include "llvm/Support/Compiler.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "llvm/Support/MemoryBuffer.h"
Chris Lattnerd57a7ef2009-08-23 22:45:33 +000021#include "llvm/Support/raw_ostream.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "llvm/System/Path.h"
23#include <algorithm>
Douglas Gregoraea67db2010-03-15 22:54:52 +000024#include <string>
Douglas Gregorf715ca12010-03-16 00:06:06 +000025#include <cstring>
Douglas Gregoraea67db2010-03-15 22:54:52 +000026
Reid Spencer5f016e22007-07-11 17:01:13 +000027using namespace clang;
28using namespace SrcMgr;
29using llvm::MemoryBuffer;
30
Chris Lattner23b5dc62009-02-04 00:40:31 +000031//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000032// SourceManager Helper Classes
Chris Lattner23b5dc62009-02-04 00:40:31 +000033//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +000034
Ted Kremenek78d85f52007-10-30 21:08:08 +000035ContentCache::~ContentCache() {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000036 if (shouldFreeBuffer())
37 delete Buffer.getPointer();
Reid Spencer5f016e22007-07-11 17:01:13 +000038}
39
Ted Kremenekc16c2082009-01-06 01:55:26 +000040/// getSizeBytesMapped - Returns the number of bytes actually mapped for
41/// this ContentCache. This can be 0 if the MemBuffer was not actually
42/// instantiated.
43unsigned ContentCache::getSizeBytesMapped() const {
Douglas Gregorc8151082010-03-16 22:53:51 +000044 return Buffer.getPointer() ? Buffer.getPointer()->getBufferSize() : 0;
Ted Kremenekc16c2082009-01-06 01:55:26 +000045}
46
47/// getSize - Returns the size of the content encapsulated by this ContentCache.
48/// This can be the size of the source file or the size of an arbitrary
49/// scratch buffer. If the ContentCache encapsulates a source file, that
Douglas Gregor29684422009-12-02 06:49:09 +000050/// file is not lazily brought in from disk to satisfy this query.
Ted Kremenekc16c2082009-01-06 01:55:26 +000051unsigned ContentCache::getSize() const {
Douglas Gregorc8151082010-03-16 22:53:51 +000052 return Buffer.getPointer() ? (unsigned) Buffer.getPointer()->getBufferSize()
53 : (unsigned) Entry->getSize();
Ted Kremenekc16c2082009-01-06 01:55:26 +000054}
55
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000056void ContentCache::replaceBuffer(const llvm::MemoryBuffer *B,
57 bool DoNotFree) {
Douglas Gregorc8151082010-03-16 22:53:51 +000058 assert(B != Buffer.getPointer());
Douglas Gregor29684422009-12-02 06:49:09 +000059
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000060 if (shouldFreeBuffer())
61 delete Buffer.getPointer();
Douglas Gregorc8151082010-03-16 22:53:51 +000062 Buffer.setPointer(B);
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000063 Buffer.setInt(DoNotFree? DoNotFreeFlag : 0);
Douglas Gregor29684422009-12-02 06:49:09 +000064}
65
Douglas Gregor36c35ba2010-03-16 00:35:39 +000066const llvm::MemoryBuffer *ContentCache::getBuffer(Diagnostic &Diag,
Chris Lattner5c5db4e2010-04-20 20:49:23 +000067 const SourceManager &SM,
Chris Lattnere127a0d2010-04-20 20:35:58 +000068 SourceLocation Loc,
Douglas Gregor36c35ba2010-03-16 00:35:39 +000069 bool *Invalid) const {
70 if (Invalid)
71 *Invalid = false;
72
Ted Kremenek5b034ad2009-01-06 22:43:04 +000073 // Lazily create the Buffer for ContentCaches that wrap files.
Douglas Gregorc8151082010-03-16 22:53:51 +000074 if (!Buffer.getPointer() && Entry) {
Douglas Gregoraea67db2010-03-15 22:54:52 +000075 std::string ErrorStr;
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000076 Buffer.setPointer(SM.getFileManager().getBufferForFile(Entry,
77 SM.getFileSystemOpts(),
Chris Lattner151466a2010-11-23 06:09:11 +000078 &ErrorStr));
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000079
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000080 // If we were unable to open the file, then we are in an inconsistent
81 // situation where the content cache referenced a file which no longer
82 // exists. Most likely, we were using a stat cache with an invalid entry but
83 // the file could also have been removed during processing. Since we can't
84 // really deal with this situation, just create an empty buffer.
85 //
86 // FIXME: This is definitely not ideal, but our immediate clients can't
87 // currently handle returning a null entry here. Ideally we should detect
88 // that we are in an inconsistent situation and error out as quickly as
89 // possible.
Douglas Gregorc8151082010-03-16 22:53:51 +000090 if (!Buffer.getPointer()) {
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000091 const llvm::StringRef FillStr("<<<MISSING SOURCE FILE>>>\n");
Douglas Gregorc8151082010-03-16 22:53:51 +000092 Buffer.setPointer(MemoryBuffer::getNewMemBuffer(Entry->getSize(),
93 "<invalid>"));
94 char *Ptr = const_cast<char*>(Buffer.getPointer()->getBufferStart());
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000095 for (unsigned i = 0, e = Entry->getSize(); i != e; ++i)
96 Ptr[i] = FillStr[i % FillStr.size()];
Douglas Gregor93ea5cb2010-03-22 15:10:57 +000097
98 if (Diag.isDiagnosticInFlight())
99 Diag.SetDelayedDiagnostic(diag::err_cannot_open_file,
100 Entry->getName(), ErrorStr);
101 else
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000102 Diag.Report(Loc, diag::err_cannot_open_file)
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000103 << Entry->getName() << ErrorStr;
104
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000105 Buffer.setInt(Buffer.getInt() | InvalidFlag);
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000106
Chris Lattner151466a2010-11-23 06:09:11 +0000107 } else if (getRawBuffer()->getBufferSize() != (size_t)Entry->getSize()) {
108 // Check that the file's size is the same as in the file entry (which may
109 // have come from a stat cache).
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000110 if (Diag.isDiagnosticInFlight())
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000111 Diag.SetDelayedDiagnostic(diag::err_file_modified,
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000112 Entry->getName());
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000113 else
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000114 Diag.Report(Loc, diag::err_file_modified)
Chris Lattnere127a0d2010-04-20 20:35:58 +0000115 << Entry->getName();
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000116
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000117 Buffer.setInt(Buffer.getInt() | InvalidFlag);
Daniel Dunbar21a8bed2009-12-06 05:43:36 +0000118 }
Chris Lattner38caec42010-04-20 18:14:03 +0000119
120 // If the buffer is valid, check to see if it has a UTF Byte Order Mark
121 // (BOM). We only support UTF-8 without a BOM right now. See
122 // http://en.wikipedia.org/wiki/Byte_order_mark for more information.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000123 if (!isBufferInvalid()) {
Chris Lattner38caec42010-04-20 18:14:03 +0000124 llvm::StringRef BufStr = Buffer.getPointer()->getBuffer();
Benjamin Kramer5807d9c2010-11-18 12:46:39 +0000125 const char *BOM = llvm::StringSwitch<const char *>(BufStr)
126 .StartsWith("\xEF\xBB\xBF", "UTF-8")
127 .StartsWith("\xFE\xFF", "UTF-16 (BE)")
128 .StartsWith("\xFF\xFE", "UTF-16 (LE)")
129 .StartsWith("\x00\x00\xFE\xFF", "UTF-32 (BE)")
130 .StartsWith("\xFF\xFE\x00\x00", "UTF-32 (LE)")
131 .StartsWith("\x2B\x2F\x76", "UTF-7")
132 .StartsWith("\xF7\x64\x4C", "UTF-1")
133 .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC")
134 .StartsWith("\x0E\xFE\xFF", "SDSU")
135 .StartsWith("\xFB\xEE\x28", "BOCU-1")
136 .StartsWith("\x84\x31\x95\x33", "GB-18030")
137 .Default(0);
138
Chris Lattner38caec42010-04-20 18:14:03 +0000139 if (BOM) {
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000140 Diag.Report(Loc, diag::err_unsupported_bom)
Chris Lattnere127a0d2010-04-20 20:35:58 +0000141 << BOM << Entry->getName();
Chris Lattner38caec42010-04-20 18:14:03 +0000142 Buffer.setInt(1);
143 }
144 }
Ted Kremenek5b034ad2009-01-06 22:43:04 +0000145 }
Douglas Gregoraea67db2010-03-15 22:54:52 +0000146
Douglas Gregorc8151082010-03-16 22:53:51 +0000147 if (Invalid)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000148 *Invalid = isBufferInvalid();
Douglas Gregorc8151082010-03-16 22:53:51 +0000149
150 return Buffer.getPointer();
Ted Kremenekc16c2082009-01-06 01:55:26 +0000151}
152
Chris Lattner5b9a5042009-01-26 07:57:50 +0000153unsigned LineTableInfo::getLineTableFilenameID(const char *Ptr, unsigned Len) {
154 // Look up the filename in the string table, returning the pre-existing value
155 // if it exists.
Mike Stump1eb44332009-09-09 15:08:12 +0000156 llvm::StringMapEntry<unsigned> &Entry =
Chris Lattner5b9a5042009-01-26 07:57:50 +0000157 FilenameIDs.GetOrCreateValue(Ptr, Ptr+Len, ~0U);
158 if (Entry.getValue() != ~0U)
159 return Entry.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Chris Lattner5b9a5042009-01-26 07:57:50 +0000161 // Otherwise, assign this the next available ID.
162 Entry.setValue(FilenamesByID.size());
163 FilenamesByID.push_back(&Entry);
164 return FilenamesByID.size()-1;
165}
166
Chris Lattnerac50e342009-02-03 22:13:05 +0000167/// AddLineNote - Add a line note to the line table that indicates that there
168/// is a #line at the specified FID/Offset location which changes the presumed
169/// location to LineNo/FilenameID.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000170void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
Chris Lattnerac50e342009-02-03 22:13:05 +0000171 unsigned LineNo, int FilenameID) {
Chris Lattner23b5dc62009-02-04 00:40:31 +0000172 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Chris Lattner23b5dc62009-02-04 00:40:31 +0000174 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
175 "Adding line entries out of order!");
Mike Stump1eb44332009-09-09 15:08:12 +0000176
Chris Lattner9d79eba2009-02-04 05:21:58 +0000177 SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
Chris Lattner137b6a62009-02-04 06:25:26 +0000178 unsigned IncludeOffset = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Chris Lattner9d79eba2009-02-04 05:21:58 +0000180 if (!Entries.empty()) {
181 // If this is a '#line 4' after '#line 42 "foo.h"', make sure to remember
182 // that we are still in "foo.h".
183 if (FilenameID == -1)
184 FilenameID = Entries.back().FilenameID;
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Chris Lattner137b6a62009-02-04 06:25:26 +0000186 // If we are after a line marker that switched us to system header mode, or
187 // that set #include information, preserve it.
Chris Lattner9d79eba2009-02-04 05:21:58 +0000188 Kind = Entries.back().FileKind;
Chris Lattner137b6a62009-02-04 06:25:26 +0000189 IncludeOffset = Entries.back().IncludeOffset;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000190 }
Mike Stump1eb44332009-09-09 15:08:12 +0000191
Chris Lattner137b6a62009-02-04 06:25:26 +0000192 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
193 IncludeOffset));
Chris Lattnerac50e342009-02-03 22:13:05 +0000194}
195
Chris Lattner9d79eba2009-02-04 05:21:58 +0000196/// AddLineNote This is the same as the previous version of AddLineNote, but is
197/// used for GNU line markers. If EntryExit is 0, then this doesn't change the
198/// presumed #include stack. If it is 1, this is a file entry, if it is 2 then
199/// this is a file exit. FileKind specifies whether this is a system header or
200/// extern C system header.
201void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
202 unsigned LineNo, int FilenameID,
203 unsigned EntryExit,
204 SrcMgr::CharacteristicKind FileKind) {
205 assert(FilenameID != -1 && "Unspecified filename should use other accessor");
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Chris Lattner9d79eba2009-02-04 05:21:58 +0000207 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Chris Lattner9d79eba2009-02-04 05:21:58 +0000209 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
210 "Adding line entries out of order!");
211
Chris Lattner137b6a62009-02-04 06:25:26 +0000212 unsigned IncludeOffset = 0;
213 if (EntryExit == 0) { // No #include stack change.
214 IncludeOffset = Entries.empty() ? 0 : Entries.back().IncludeOffset;
215 } else if (EntryExit == 1) {
216 IncludeOffset = Offset-1;
217 } else if (EntryExit == 2) {
218 assert(!Entries.empty() && Entries.back().IncludeOffset &&
219 "PPDirectives should have caught case when popping empty include stack");
Mike Stump1eb44332009-09-09 15:08:12 +0000220
Chris Lattner137b6a62009-02-04 06:25:26 +0000221 // Get the include loc of the last entries' include loc as our include loc.
222 IncludeOffset = 0;
223 if (const LineEntry *PrevEntry =
224 FindNearestLineEntry(FID, Entries.back().IncludeOffset))
225 IncludeOffset = PrevEntry->IncludeOffset;
226 }
Mike Stump1eb44332009-09-09 15:08:12 +0000227
Chris Lattner137b6a62009-02-04 06:25:26 +0000228 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
229 IncludeOffset));
Chris Lattner9d79eba2009-02-04 05:21:58 +0000230}
231
232
Chris Lattner3cd949c2009-02-04 01:55:42 +0000233/// FindNearestLineEntry - Find the line entry nearest to FID that is before
234/// it. If there is no line entry before Offset in FID, return null.
Mike Stump1eb44332009-09-09 15:08:12 +0000235const LineEntry *LineTableInfo::FindNearestLineEntry(unsigned FID,
Chris Lattner3cd949c2009-02-04 01:55:42 +0000236 unsigned Offset) {
237 const std::vector<LineEntry> &Entries = LineEntries[FID];
238 assert(!Entries.empty() && "No #line entries for this FID after all!");
239
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000240 // It is very common for the query to be after the last #line, check this
241 // first.
242 if (Entries.back().FileOffset <= Offset)
243 return &Entries.back();
Chris Lattner3cd949c2009-02-04 01:55:42 +0000244
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000245 // Do a binary search to find the maximal element that is still before Offset.
246 std::vector<LineEntry>::const_iterator I =
247 std::upper_bound(Entries.begin(), Entries.end(), Offset);
248 if (I == Entries.begin()) return 0;
249 return &*--I;
Chris Lattner3cd949c2009-02-04 01:55:42 +0000250}
Chris Lattnerac50e342009-02-03 22:13:05 +0000251
Douglas Gregorbd945002009-04-13 16:31:14 +0000252/// \brief Add a new line entry that has already been encoded into
253/// the internal representation of the line table.
Mike Stump1eb44332009-09-09 15:08:12 +0000254void LineTableInfo::AddEntry(unsigned FID,
Douglas Gregorbd945002009-04-13 16:31:14 +0000255 const std::vector<LineEntry> &Entries) {
256 LineEntries[FID] = Entries;
257}
Chris Lattnerac50e342009-02-03 22:13:05 +0000258
Chris Lattner5b9a5042009-01-26 07:57:50 +0000259/// getLineTableFilenameID - Return the uniqued ID for the specified filename.
Mike Stump1eb44332009-09-09 15:08:12 +0000260///
Chris Lattner5b9a5042009-01-26 07:57:50 +0000261unsigned SourceManager::getLineTableFilenameID(const char *Ptr, unsigned Len) {
262 if (LineTable == 0)
263 LineTable = new LineTableInfo();
264 return LineTable->getLineTableFilenameID(Ptr, Len);
265}
266
267
Chris Lattner4c4ea172009-02-03 21:52:55 +0000268/// AddLineNote - Add a line note to the line table for the FileID and offset
269/// specified by Loc. If FilenameID is -1, it is considered to be
270/// unspecified.
271void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
272 int FilenameID) {
Chris Lattnerac50e342009-02-03 22:13:05 +0000273 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000274
Chris Lattnerac50e342009-02-03 22:13:05 +0000275 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
276
277 // Remember that this file has #line directives now if it doesn't already.
278 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000279
Chris Lattnerac50e342009-02-03 22:13:05 +0000280 if (LineTable == 0)
281 LineTable = new LineTableInfo();
Chris Lattner23b5dc62009-02-04 00:40:31 +0000282 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
Chris Lattner4c4ea172009-02-03 21:52:55 +0000283}
284
Chris Lattner9d79eba2009-02-04 05:21:58 +0000285/// AddLineNote - Add a GNU line marker to the line table.
286void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
287 int FilenameID, bool IsFileEntry,
288 bool IsFileExit, bool IsSystemHeader,
289 bool IsExternCHeader) {
290 // If there is no filename and no flags, this is treated just like a #line,
291 // which does not change the flags of the previous line marker.
292 if (FilenameID == -1) {
293 assert(!IsFileEntry && !IsFileExit && !IsSystemHeader && !IsExternCHeader &&
294 "Can't set flags without setting the filename!");
295 return AddLineNote(Loc, LineNo, FilenameID);
296 }
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Chris Lattner9d79eba2009-02-04 05:21:58 +0000298 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
299 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Chris Lattner9d79eba2009-02-04 05:21:58 +0000301 // Remember that this file has #line directives now if it doesn't already.
302 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000303
Chris Lattner9d79eba2009-02-04 05:21:58 +0000304 if (LineTable == 0)
305 LineTable = new LineTableInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000306
Chris Lattner9d79eba2009-02-04 05:21:58 +0000307 SrcMgr::CharacteristicKind FileKind;
308 if (IsExternCHeader)
309 FileKind = SrcMgr::C_ExternCSystem;
310 else if (IsSystemHeader)
311 FileKind = SrcMgr::C_System;
312 else
313 FileKind = SrcMgr::C_User;
Mike Stump1eb44332009-09-09 15:08:12 +0000314
Chris Lattner9d79eba2009-02-04 05:21:58 +0000315 unsigned EntryExit = 0;
316 if (IsFileEntry)
317 EntryExit = 1;
318 else if (IsFileExit)
319 EntryExit = 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000320
Chris Lattner9d79eba2009-02-04 05:21:58 +0000321 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
322 EntryExit, FileKind);
323}
324
Douglas Gregorbd945002009-04-13 16:31:14 +0000325LineTableInfo &SourceManager::getLineTable() {
326 if (LineTable == 0)
327 LineTable = new LineTableInfo();
328 return *LineTable;
329}
Chris Lattner4c4ea172009-02-03 21:52:55 +0000330
Chris Lattner23b5dc62009-02-04 00:40:31 +0000331//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000332// Private 'Create' methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000333//===----------------------------------------------------------------------===//
Ted Kremenekc16c2082009-01-06 01:55:26 +0000334
Argyrios Kyrtzidis33e4e702010-11-18 20:06:41 +0000335SourceManager::SourceManager(Diagnostic &Diag, FileManager &FileMgr,
336 const FileSystemOptions &FSOpts)
337 : Diag(Diag), FileMgr(FileMgr), FileSystemOpts(FSOpts),
338 ExternalSLocEntries(0), LineTable(0), NumLinearScans(0),
339 NumBinaryProbes(0) {
340 clearIDTables();
341 Diag.setSourceManager(this);
342}
343
Chris Lattner5b9a5042009-01-26 07:57:50 +0000344SourceManager::~SourceManager() {
345 delete LineTable;
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000347 // Delete FileEntry objects corresponding to content caches. Since the actual
348 // content cache objects are bump pointer allocated, we just have to run the
349 // dtors, but we call the deallocate method for completeness.
350 for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i) {
351 MemBufferInfos[i]->~ContentCache();
352 ContentCacheAlloc.Deallocate(MemBufferInfos[i]);
353 }
354 for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator
355 I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
356 I->second->~ContentCache();
357 ContentCacheAlloc.Deallocate(I->second);
358 }
Chris Lattner5b9a5042009-01-26 07:57:50 +0000359}
360
361void SourceManager::clearIDTables() {
362 MainFileID = FileID();
363 SLocEntryTable.clear();
364 LastLineNoFileIDQuery = FileID();
365 LastLineNoContentCache = 0;
366 LastFileIDLookup = FileID();
Mike Stump1eb44332009-09-09 15:08:12 +0000367
Chris Lattner5b9a5042009-01-26 07:57:50 +0000368 if (LineTable)
369 LineTable->clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000370
Chris Lattner5b9a5042009-01-26 07:57:50 +0000371 // Use up FileID #0 as an invalid instantiation.
372 NextOffset = 0;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000373 createInstantiationLoc(SourceLocation(),SourceLocation(),SourceLocation(), 1);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000374}
375
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000376/// getOrCreateContentCache - Create or return a cached ContentCache for the
377/// specified file.
378const ContentCache *
379SourceManager::getOrCreateContentCache(const FileEntry *FileEnt) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000380 assert(FileEnt && "Didn't specify a file entry to use?");
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Reid Spencer5f016e22007-07-11 17:01:13 +0000382 // Do we already have information about this file?
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000383 ContentCache *&Entry = FileInfos[FileEnt];
384 if (Entry) return Entry;
Mike Stump1eb44332009-09-09 15:08:12 +0000385
Chris Lattner00282d62009-02-03 07:41:46 +0000386 // Nope, create a new Cache entry. Make sure it is at least 8-byte aligned
387 // so that FileInfo can use the low 3 bits of the pointer for its own
388 // nefarious purposes.
389 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
390 EntryAlign = std::max(8U, EntryAlign);
391 Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000392 new (Entry) ContentCache(FileEnt);
393 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000394}
395
396
Ted Kremenekd1c0eee2007-10-31 17:53:38 +0000397/// createMemBufferContentCache - Create a new ContentCache for the specified
398/// memory buffer. This does no caching.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000399const ContentCache*
400SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
Chris Lattner00282d62009-02-03 07:41:46 +0000401 // Add a new ContentCache to the MemBufferInfos list and return it. Make sure
402 // it is at least 8-byte aligned so that FileInfo can use the low 3 bits of
403 // the pointer for its own nefarious purposes.
404 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
405 EntryAlign = std::max(8U, EntryAlign);
406 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000407 new (Entry) ContentCache();
408 MemBufferInfos.push_back(Entry);
409 Entry->setBuffer(Buffer);
410 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000411}
412
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000413void SourceManager::PreallocateSLocEntries(ExternalSLocEntrySource *Source,
414 unsigned NumSLocEntries,
415 unsigned NextOffset) {
416 ExternalSLocEntries = Source;
417 this->NextOffset = NextOffset;
Sebastian Redlb86238d2010-07-28 21:07:02 +0000418 unsigned CurPrealloc = SLocEntryLoaded.size();
419 // If we've ever preallocated, we must not count the dummy entry.
420 if (CurPrealloc) --CurPrealloc;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000421 SLocEntryLoaded.resize(NumSLocEntries + 1);
422 SLocEntryLoaded[0] = true;
Sebastian Redlb86238d2010-07-28 21:07:02 +0000423 SLocEntryTable.resize(SLocEntryTable.size() + NumSLocEntries - CurPrealloc);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000424}
425
Douglas Gregor2bf1eb02009-04-27 21:28:04 +0000426void SourceManager::ClearPreallocatedSLocEntries() {
427 unsigned I = 0;
428 for (unsigned N = SLocEntryLoaded.size(); I != N; ++I)
429 if (!SLocEntryLoaded[I])
430 break;
431
432 // We've already loaded all preallocated source location entries.
433 if (I == SLocEntryLoaded.size())
434 return;
435
436 // Remove everything from location I onward.
437 SLocEntryTable.resize(I);
438 SLocEntryLoaded.clear();
439 ExternalSLocEntries = 0;
440}
441
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000442
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000443//===----------------------------------------------------------------------===//
444// Methods to create new FileID's and instantiations.
445//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000446
Dan Gohman3f86b782010-08-26 21:27:06 +0000447/// createFileID - Create a new FileID for the specified ContentCache and
Ted Kremenek0d892d82007-10-30 22:57:35 +0000448/// include position. This works regardless of whether the ContentCache
449/// corresponds to a file or some other input source.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000450FileID SourceManager::createFileID(const ContentCache *File,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000451 SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000452 SrcMgr::CharacteristicKind FileCharacter,
453 unsigned PreallocatedID,
454 unsigned Offset) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000455 if (PreallocatedID) {
456 // If we're filling in a preallocated ID, just load in the file
457 // entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000458 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000459 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000460 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000461 "Source location entry already loaded");
462 assert(Offset && "Preallocate source location cannot have zero offset");
Mike Stump1eb44332009-09-09 15:08:12 +0000463 SLocEntryTable[PreallocatedID]
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000464 = SLocEntry::get(Offset, FileInfo::get(IncludePos, File, FileCharacter));
465 SLocEntryLoaded[PreallocatedID] = true;
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000466 FileID FID = FileID::get(PreallocatedID);
Douglas Gregor5de65722010-03-19 06:12:06 +0000467 return FID;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000468 }
469
Mike Stump1eb44332009-09-09 15:08:12 +0000470 SLocEntryTable.push_back(SLocEntry::get(NextOffset,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000471 FileInfo::get(IncludePos, File,
472 FileCharacter)));
Ted Kremenekc16c2082009-01-06 01:55:26 +0000473 unsigned FileSize = File->getSize();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000474 assert(NextOffset+FileSize+1 > NextOffset && "Ran out of source locations!");
475 NextOffset += FileSize+1;
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000477 // Set LastFileIDLookup to the newly created file. The next getFileID call is
478 // almost guaranteed to be from that file.
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000479 FileID FID = FileID::get(SLocEntryTable.size()-1);
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000480 return LastFileIDLookup = FID;
Reid Spencer5f016e22007-07-11 17:01:13 +0000481}
482
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000483/// createInstantiationLoc - Return a new SourceLocation that encodes the fact
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000484/// that a token from SpellingLoc should actually be referenced from
Reid Spencer5f016e22007-07-11 17:01:13 +0000485/// InstantiationLoc.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000486SourceLocation SourceManager::createInstantiationLoc(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000487 SourceLocation ILocStart,
488 SourceLocation ILocEnd,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000489 unsigned TokLength,
490 unsigned PreallocatedID,
491 unsigned Offset) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000492 InstantiationInfo II = InstantiationInfo::get(ILocStart,ILocEnd, SpellingLoc);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000493 if (PreallocatedID) {
494 // If we're filling in a preallocated ID, just load in the
495 // instantiation entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000496 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000497 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000498 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000499 "Source location entry already loaded");
500 assert(Offset && "Preallocate source location cannot have zero offset");
501 SLocEntryTable[PreallocatedID] = SLocEntry::get(Offset, II);
502 SLocEntryLoaded[PreallocatedID] = true;
503 return SourceLocation::getMacroLoc(Offset);
504 }
Chris Lattnere7fb4842009-02-15 20:52:18 +0000505 SLocEntryTable.push_back(SLocEntry::get(NextOffset, II));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000506 assert(NextOffset+TokLength+1 > NextOffset && "Ran out of source locations!");
507 NextOffset += TokLength+1;
508 return SourceLocation::getMacroLoc(NextOffset-(TokLength+1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000509}
510
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000511const llvm::MemoryBuffer *
Douglas Gregor50f6af72010-03-16 05:20:39 +0000512SourceManager::getMemoryBufferForFile(const FileEntry *File,
513 bool *Invalid) {
Douglas Gregor29684422009-12-02 06:49:09 +0000514 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
Douglas Gregoraea67db2010-03-15 22:54:52 +0000515 assert(IR && "getOrCreateContentCache() cannot return NULL");
Chris Lattnere127a0d2010-04-20 20:35:58 +0000516 return IR->getBuffer(Diag, *this, SourceLocation(), Invalid);
Douglas Gregor29684422009-12-02 06:49:09 +0000517}
518
Dan Gohman0d06e992010-10-26 20:47:28 +0000519void SourceManager::overrideFileContents(const FileEntry *SourceFile,
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000520 const llvm::MemoryBuffer *Buffer,
521 bool DoNotFree) {
Douglas Gregor29684422009-12-02 06:49:09 +0000522 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
Dan Gohman0d06e992010-10-26 20:47:28 +0000523 assert(IR && "getOrCreateContentCache() cannot return NULL");
Douglas Gregor29684422009-12-02 06:49:09 +0000524
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000525 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer, DoNotFree);
Douglas Gregor29684422009-12-02 06:49:09 +0000526}
527
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000528llvm::StringRef SourceManager::getBufferData(FileID FID, bool *Invalid) const {
Douglas Gregoraae58b02010-03-16 20:01:30 +0000529 bool MyInvalid = false;
530 const llvm::MemoryBuffer *Buf = getBuffer(FID, &MyInvalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000531 if (Invalid)
Douglas Gregoraae58b02010-03-16 20:01:30 +0000532 *Invalid = MyInvalid;
533
534 if (MyInvalid)
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000535 return "";
Douglas Gregoraae58b02010-03-16 20:01:30 +0000536
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000537 return Buf->getBuffer();
Douglas Gregoraea67db2010-03-15 22:54:52 +0000538}
Chris Lattner2b2453a2009-01-17 06:22:33 +0000539
Chris Lattner23b5dc62009-02-04 00:40:31 +0000540//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000541// SourceLocation manipulation methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000542//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000543
544/// getFileIDSlow - Return the FileID for a SourceLocation. This is a very hot
545/// method that is used for all SourceManager queries that start with a
546/// SourceLocation object. It is responsible for finding the entry in
547/// SLocEntryTable which contains the specified location.
548///
549FileID SourceManager::getFileIDSlow(unsigned SLocOffset) const {
550 assert(SLocOffset && "Invalid FileID");
Mike Stump1eb44332009-09-09 15:08:12 +0000551
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000552 // After the first and second level caches, I see two common sorts of
553 // behavior: 1) a lot of searched FileID's are "near" the cached file location
554 // or are "near" the cached instantiation location. 2) others are just
555 // completely random and may be a very long way away.
556 //
557 // To handle this, we do a linear search for up to 8 steps to catch #1 quickly
558 // then we fall back to a less cache efficient, but more scalable, binary
559 // search to find the location.
Mike Stump1eb44332009-09-09 15:08:12 +0000560
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000561 // See if this is near the file point - worst case we start scanning from the
562 // most newly created FileID.
563 std::vector<SrcMgr::SLocEntry>::const_iterator I;
Mike Stump1eb44332009-09-09 15:08:12 +0000564
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000565 if (SLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) {
566 // Neither loc prunes our search.
567 I = SLocEntryTable.end();
568 } else {
569 // Perhaps it is near the file point.
570 I = SLocEntryTable.begin()+LastFileIDLookup.ID;
571 }
572
573 // Find the FileID that contains this. "I" is an iterator that points to a
574 // FileID whose offset is known to be larger than SLocOffset.
575 unsigned NumProbes = 0;
576 while (1) {
577 --I;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000578 if (ExternalSLocEntries)
579 getSLocEntry(FileID::get(I - SLocEntryTable.begin()));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000580 if (I->getOffset() <= SLocOffset) {
581#if 0
582 printf("lin %d -> %d [%s] %d %d\n", SLocOffset,
583 I-SLocEntryTable.begin(),
584 I->isInstantiation() ? "inst" : "file",
585 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
586#endif
587 FileID Res = FileID::get(I-SLocEntryTable.begin());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000588
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000589 // If this isn't an instantiation, remember it. We have good locality
590 // across FileID lookups.
591 if (!I->isInstantiation())
592 LastFileIDLookup = Res;
593 NumLinearScans += NumProbes+1;
594 return Res;
595 }
596 if (++NumProbes == 8)
597 break;
598 }
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000600 // Convert "I" back into an index. We know that it is an entry whose index is
601 // larger than the offset we are looking for.
602 unsigned GreaterIndex = I-SLocEntryTable.begin();
603 // LessIndex - This is the lower bound of the range that we're searching.
604 // We know that the offset corresponding to the FileID is is less than
605 // SLocOffset.
606 unsigned LessIndex = 0;
607 NumProbes = 0;
608 while (1) {
609 unsigned MiddleIndex = (GreaterIndex-LessIndex)/2+LessIndex;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000610 unsigned MidOffset = getSLocEntry(FileID::get(MiddleIndex)).getOffset();
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000612 ++NumProbes;
Mike Stump1eb44332009-09-09 15:08:12 +0000613
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000614 // If the offset of the midpoint is too large, chop the high side of the
615 // range to the midpoint.
616 if (MidOffset > SLocOffset) {
617 GreaterIndex = MiddleIndex;
618 continue;
619 }
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000621 // If the middle index contains the value, succeed and return.
622 if (isOffsetInFileID(FileID::get(MiddleIndex), SLocOffset)) {
623#if 0
624 printf("bin %d -> %d [%s] %d %d\n", SLocOffset,
625 I-SLocEntryTable.begin(),
626 I->isInstantiation() ? "inst" : "file",
627 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
628#endif
629 FileID Res = FileID::get(MiddleIndex);
630
631 // If this isn't an instantiation, remember it. We have good locality
632 // across FileID lookups.
633 if (!I->isInstantiation())
634 LastFileIDLookup = Res;
635 NumBinaryProbes += NumProbes;
636 return Res;
637 }
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000639 // Otherwise, move the low-side up to the middle index.
640 LessIndex = MiddleIndex;
641 }
642}
643
Chris Lattneraddb7972009-01-26 20:04:19 +0000644SourceLocation SourceManager::
645getInstantiationLocSlowCase(SourceLocation Loc) const {
646 do {
Chris Lattnera5c6c582010-02-12 19:31:35 +0000647 // Note: If Loc indicates an offset into a token that came from a macro
648 // expansion (e.g. the 5th character of the token) we do not want to add
649 // this offset when going to the instantiation location. The instatiation
650 // location is the macro invocation, which the offset has nothing to do
651 // with. This is unlike when we get the spelling loc, because the offset
652 // directly correspond to the token whose spelling we're inspecting.
653 Loc = getSLocEntry(getFileID(Loc)).getInstantiation()
Chris Lattnere7fb4842009-02-15 20:52:18 +0000654 .getInstantiationLocStart();
Chris Lattneraddb7972009-01-26 20:04:19 +0000655 } while (!Loc.isFileID());
656
657 return Loc;
658}
659
660SourceLocation SourceManager::getSpellingLocSlowCase(SourceLocation Loc) const {
661 do {
662 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
663 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
664 Loc = Loc.getFileLocWithOffset(LocInfo.second);
665 } while (!Loc.isFileID());
666 return Loc;
667}
668
669
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000670std::pair<FileID, unsigned>
671SourceManager::getDecomposedInstantiationLocSlowCase(const SrcMgr::SLocEntry *E,
672 unsigned Offset) const {
673 // If this is an instantiation record, walk through all the instantiation
674 // points.
675 FileID FID;
676 SourceLocation Loc;
677 do {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000678 Loc = E->getInstantiation().getInstantiationLocStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000680 FID = getFileID(Loc);
681 E = &getSLocEntry(FID);
682 Offset += Loc.getOffset()-E->getOffset();
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000683 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000684
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000685 return std::make_pair(FID, Offset);
686}
687
688std::pair<FileID, unsigned>
689SourceManager::getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
690 unsigned Offset) const {
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000691 // If this is an instantiation record, walk through all the instantiation
692 // points.
693 FileID FID;
694 SourceLocation Loc;
695 do {
696 Loc = E->getInstantiation().getSpellingLoc();
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000698 FID = getFileID(Loc);
699 E = &getSLocEntry(FID);
700 Offset += Loc.getOffset()-E->getOffset();
701 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000702
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000703 return std::make_pair(FID, Offset);
704}
705
Chris Lattner387616e2009-02-17 08:04:48 +0000706/// getImmediateSpellingLoc - Given a SourceLocation object, return the
707/// spelling location referenced by the ID. This is the first level down
708/// towards the place where the characters that make up the lexed token can be
709/// found. This should not generally be used by clients.
710SourceLocation SourceManager::getImmediateSpellingLoc(SourceLocation Loc) const{
711 if (Loc.isFileID()) return Loc;
712 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
713 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
714 return Loc.getFileLocWithOffset(LocInfo.second);
715}
716
717
Chris Lattnere7fb4842009-02-15 20:52:18 +0000718/// getImmediateInstantiationRange - Loc is required to be an instantiation
719/// location. Return the start/end of the instantiation information.
720std::pair<SourceLocation,SourceLocation>
721SourceManager::getImmediateInstantiationRange(SourceLocation Loc) const {
722 assert(Loc.isMacroID() && "Not an instantiation loc!");
723 const InstantiationInfo &II = getSLocEntry(getFileID(Loc)).getInstantiation();
724 return II.getInstantiationLocRange();
725}
726
Chris Lattner66781332009-02-15 21:26:50 +0000727/// getInstantiationRange - Given a SourceLocation object, return the
728/// range of tokens covered by the instantiation in the ultimate file.
729std::pair<SourceLocation,SourceLocation>
730SourceManager::getInstantiationRange(SourceLocation Loc) const {
731 if (Loc.isFileID()) return std::make_pair(Loc, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000732
Chris Lattner66781332009-02-15 21:26:50 +0000733 std::pair<SourceLocation,SourceLocation> Res =
734 getImmediateInstantiationRange(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Chris Lattner66781332009-02-15 21:26:50 +0000736 // Fully resolve the start and end locations to their ultimate instantiation
737 // points.
738 while (!Res.first.isFileID())
739 Res.first = getImmediateInstantiationRange(Res.first).first;
740 while (!Res.second.isFileID())
741 Res.second = getImmediateInstantiationRange(Res.second).second;
742 return Res;
743}
744
Chris Lattnere7fb4842009-02-15 20:52:18 +0000745
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000746
747//===----------------------------------------------------------------------===//
748// Queries about the code at a SourceLocation.
749//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000750
751/// getCharacterData - Return a pointer to the start of the specified location
752/// in the appropriate MemoryBuffer.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000753const char *SourceManager::getCharacterData(SourceLocation SL,
754 bool *Invalid) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000755 // Note that this is a hot function in the getSpelling() path, which is
756 // heavily used by -E mode.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000757 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
Mike Stump1eb44332009-09-09 15:08:12 +0000758
Ted Kremenekc16c2082009-01-06 01:55:26 +0000759 // Note that calling 'getBuffer()' may lazily page in a source file.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000760 bool CharDataInvalid = false;
761 const llvm::MemoryBuffer *Buffer
Chris Lattnere127a0d2010-04-20 20:35:58 +0000762 = getSLocEntry(LocInfo.first).getFile().getContentCache()
763 ->getBuffer(Diag, *this, SourceLocation(), &CharDataInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000764 if (Invalid)
765 *Invalid = CharDataInvalid;
766 return Buffer->getBufferStart() + (CharDataInvalid? 0 : LocInfo.second);
Reid Spencer5f016e22007-07-11 17:01:13 +0000767}
768
Reid Spencer5f016e22007-07-11 17:01:13 +0000769
Chris Lattner9dc1f532007-07-20 16:37:10 +0000770/// getColumnNumber - Return the column # for the specified file position.
Chris Lattner7da5aea2009-02-04 00:55:58 +0000771/// this is significantly cheaper to compute than the line number.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000772unsigned SourceManager::getColumnNumber(FileID FID, unsigned FilePos,
773 bool *Invalid) const {
774 bool MyInvalid = false;
775 const char *Buf = getBuffer(FID, &MyInvalid)->getBufferStart();
776 if (Invalid)
777 *Invalid = MyInvalid;
778
779 if (MyInvalid)
780 return 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Reid Spencer5f016e22007-07-11 17:01:13 +0000782 unsigned LineStart = FilePos;
783 while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
784 --LineStart;
785 return FilePos-LineStart+1;
786}
787
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000788// isInvalid - Return the result of calling loc.isInvalid(), and
789// if Invalid is not null, set its value to same.
790static bool isInvalid(SourceLocation Loc, bool *Invalid) {
791 bool MyInvalid = Loc.isInvalid();
792 if (Invalid)
793 *Invalid = MyInvalid;
794 return MyInvalid;
795}
796
Douglas Gregor50f6af72010-03-16 05:20:39 +0000797unsigned SourceManager::getSpellingColumnNumber(SourceLocation Loc,
798 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000799 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000800 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000801 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000802}
803
Douglas Gregor50f6af72010-03-16 05:20:39 +0000804unsigned SourceManager::getInstantiationColumnNumber(SourceLocation Loc,
805 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000806 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000807 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000808 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000809}
810
Chandler Carruth14bd9652010-10-23 08:44:57 +0000811static LLVM_ATTRIBUTE_NOINLINE void
Chris Lattnere127a0d2010-04-20 20:35:58 +0000812ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
813 llvm::BumpPtrAllocator &Alloc,
814 const SourceManager &SM, bool &Invalid);
815static void ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
816 llvm::BumpPtrAllocator &Alloc,
817 const SourceManager &SM, bool &Invalid) {
Ted Kremenekc16c2082009-01-06 01:55:26 +0000818 // Note that calling 'getBuffer()' may lazily page in the file.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000819 const MemoryBuffer *Buffer = FI->getBuffer(Diag, SM, SourceLocation(),
820 &Invalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000821 if (Invalid)
822 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000823
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000824 // Find the file offsets of all of the *physical* source lines. This does
825 // not look at trigraphs, escaped newlines, or anything else tricky.
826 std::vector<unsigned> LineOffsets;
Mike Stump1eb44332009-09-09 15:08:12 +0000827
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000828 // Line #1 starts at char 0.
829 LineOffsets.push_back(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000830
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000831 const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
832 const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
833 unsigned Offs = 0;
834 while (1) {
835 // Skip over the contents of the line.
836 // TODO: Vectorize this? This is very performance sensitive for programs
837 // with lots of diagnostics and in -E mode.
838 const unsigned char *NextBuf = (const unsigned char *)Buf;
839 while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
840 ++NextBuf;
841 Offs += NextBuf-Buf;
842 Buf = NextBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000843
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000844 if (Buf[0] == '\n' || Buf[0] == '\r') {
845 // If this is \n\r or \r\n, skip both characters.
846 if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
847 ++Offs, ++Buf;
848 ++Offs, ++Buf;
849 LineOffsets.push_back(Offs);
850 } else {
851 // Otherwise, this is a null. If end of file, exit.
852 if (Buf == End) break;
853 // Otherwise, skip the null.
854 ++Offs, ++Buf;
855 }
856 }
Mike Stump1eb44332009-09-09 15:08:12 +0000857
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000858 // Copy the offsets into the FileInfo structure.
859 FI->NumLines = LineOffsets.size();
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000860 FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000861 std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
862}
Reid Spencer5f016e22007-07-11 17:01:13 +0000863
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000864/// getLineNumber - Given a SourceLocation, return the spelling line number
Reid Spencer5f016e22007-07-11 17:01:13 +0000865/// for the position indicated. This requires building and caching a table of
866/// line offsets for the MemoryBuffer, so this is not cheap: use only when
867/// about to emit a diagnostic.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000868unsigned SourceManager::getLineNumber(FileID FID, unsigned FilePos,
869 bool *Invalid) const {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000870 ContentCache *Content;
Chris Lattner30fc9332009-02-04 01:06:56 +0000871 if (LastLineNoFileIDQuery == FID)
Ted Kremenek78d85f52007-10-30 21:08:08 +0000872 Content = LastLineNoContentCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000873 else
Chris Lattner30fc9332009-02-04 01:06:56 +0000874 Content = const_cast<ContentCache*>(getSLocEntry(FID)
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000875 .getFile().getContentCache());
Mike Stump1eb44332009-09-09 15:08:12 +0000876
Reid Spencer5f016e22007-07-11 17:01:13 +0000877 // If this is the first use of line information for this buffer, compute the
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000878 /// SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000879 if (Content->SourceLineCache == 0) {
880 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +0000881 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000882 if (Invalid)
883 *Invalid = MyInvalid;
884 if (MyInvalid)
885 return 1;
886 } else if (Invalid)
887 *Invalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000888
889 // Okay, we know we have a line number table. Do a binary search to find the
890 // line number that this character position lands on.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000891 unsigned *SourceLineCache = Content->SourceLineCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000892 unsigned *SourceLineCacheStart = SourceLineCache;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000893 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
Mike Stump1eb44332009-09-09 15:08:12 +0000894
Chris Lattner30fc9332009-02-04 01:06:56 +0000895 unsigned QueriedFilePos = FilePos+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000896
Daniel Dunbar4106d692009-05-18 17:30:52 +0000897 // FIXME: I would like to be convinced that this code is worth being as
Mike Stump1eb44332009-09-09 15:08:12 +0000898 // complicated as it is, binary search isn't that slow.
Daniel Dunbar4106d692009-05-18 17:30:52 +0000899 //
900 // If it is worth being optimized, then in my opinion it could be more
901 // performant, simpler, and more obviously correct by just "galloping" outward
902 // from the queried file position. In fact, this could be incorporated into a
903 // generic algorithm such as lower_bound_with_hint.
904 //
905 // If someone gives me a test case where this matters, and I will do it! - DWD
906
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000907 // If the previous query was to the same file, we know both the file pos from
908 // that query and the line number returned. This allows us to narrow the
909 // search space from the entire file to something near the match.
Chris Lattner30fc9332009-02-04 01:06:56 +0000910 if (LastLineNoFileIDQuery == FID) {
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000911 if (QueriedFilePos >= LastLineNoFilePos) {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000912 // FIXME: Potential overflow?
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000913 SourceLineCache = SourceLineCache+LastLineNoResult-1;
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000915 // The query is likely to be nearby the previous one. Here we check to
916 // see if it is within 5, 10 or 20 lines. It can be far away in cases
917 // where big comment blocks and vertical whitespace eat up lines but
918 // contribute no tokens.
919 if (SourceLineCache+5 < SourceLineCacheEnd) {
920 if (SourceLineCache[5] > QueriedFilePos)
921 SourceLineCacheEnd = SourceLineCache+5;
922 else if (SourceLineCache+10 < SourceLineCacheEnd) {
923 if (SourceLineCache[10] > QueriedFilePos)
924 SourceLineCacheEnd = SourceLineCache+10;
925 else if (SourceLineCache+20 < SourceLineCacheEnd) {
926 if (SourceLineCache[20] > QueriedFilePos)
927 SourceLineCacheEnd = SourceLineCache+20;
928 }
929 }
930 }
931 } else {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000932 if (LastLineNoResult < Content->NumLines)
933 SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000934 }
935 }
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000937 // If the spread is large, do a "radix" test as our initial guess, based on
938 // the assumption that lines average to approximately the same length.
939 // NOTE: This is currently disabled, as it does not appear to be profitable in
940 // initial measurements.
941 if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
Ted Kremenek78d85f52007-10-30 21:08:08 +0000942 unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
Mike Stump1eb44332009-09-09 15:08:12 +0000943
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000944 // Take a stab at guessing where it is.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000945 unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
Mike Stump1eb44332009-09-09 15:08:12 +0000946
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000947 // Check for -10 and +10 lines.
948 unsigned LowerBound = std::max(int(ApproxPos-10), 0);
949 unsigned UpperBound = std::min(ApproxPos+10, FileLen);
950
951 // If the computed lower bound is less than the query location, move it in.
952 if (SourceLineCache < SourceLineCacheStart+LowerBound &&
953 SourceLineCacheStart[LowerBound] < QueriedFilePos)
954 SourceLineCache = SourceLineCacheStart+LowerBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000955
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000956 // If the computed upper bound is greater than the query location, move it.
957 if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
958 SourceLineCacheStart[UpperBound] >= QueriedFilePos)
959 SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
960 }
Mike Stump1eb44332009-09-09 15:08:12 +0000961
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000962 unsigned *Pos
963 = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000964 unsigned LineNo = Pos-SourceLineCacheStart;
Mike Stump1eb44332009-09-09 15:08:12 +0000965
Chris Lattner30fc9332009-02-04 01:06:56 +0000966 LastLineNoFileIDQuery = FID;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000967 LastLineNoContentCache = Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000968 LastLineNoFilePos = QueriedFilePos;
969 LastLineNoResult = LineNo;
970 return LineNo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000971}
972
Douglas Gregor50f6af72010-03-16 05:20:39 +0000973unsigned SourceManager::getInstantiationLineNumber(SourceLocation Loc,
974 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000975 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner30fc9332009-02-04 01:06:56 +0000976 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
977 return getLineNumber(LocInfo.first, LocInfo.second);
978}
Douglas Gregor50f6af72010-03-16 05:20:39 +0000979unsigned SourceManager::getSpellingLineNumber(SourceLocation Loc,
980 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000981 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner30fc9332009-02-04 01:06:56 +0000982 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
983 return getLineNumber(LocInfo.first, LocInfo.second);
984}
985
Chris Lattner6b306672009-02-04 05:33:01 +0000986/// getFileCharacteristic - return the file characteristic of the specified
Mike Stump1eb44332009-09-09 15:08:12 +0000987/// source location, indicating whether this is a normal file, a system
Chris Lattner6b306672009-02-04 05:33:01 +0000988/// header, or an "implicit extern C" system header.
989///
990/// This state can be modified with flags on GNU linemarker directives like:
991/// # 4 "foo.h" 3
992/// which changes all source locations in the current file after that to be
993/// considered to be from a system header.
Mike Stump1eb44332009-09-09 15:08:12 +0000994SrcMgr::CharacteristicKind
Chris Lattner6b306672009-02-04 05:33:01 +0000995SourceManager::getFileCharacteristic(SourceLocation Loc) const {
996 assert(!Loc.isInvalid() && "Can't get file characteristic of invalid loc!");
997 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
998 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
999
1000 // If there are no #line directives in this file, just return the whole-file
1001 // state.
1002 if (!FI.hasLineDirectives())
1003 return FI.getFileCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +00001004
Chris Lattner6b306672009-02-04 05:33:01 +00001005 assert(LineTable && "Can't have linetable entries without a LineTable!");
1006 // See if there is a #line directive before the location.
1007 const LineEntry *Entry =
1008 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Chris Lattner6b306672009-02-04 05:33:01 +00001010 // If this is before the first line marker, use the file characteristic.
1011 if (!Entry)
1012 return FI.getFileCharacteristic();
1013
1014 return Entry->FileKind;
1015}
1016
Chris Lattnerbff5c512009-02-17 08:39:06 +00001017/// Return the filename or buffer identifier of the buffer the location is in.
1018/// Note that this name does not respect #line directives. Use getPresumedLoc
1019/// for normal clients.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001020const char *SourceManager::getBufferName(SourceLocation Loc,
1021 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +00001022 if (isInvalid(Loc, Invalid)) return "<invalid loc>";
Mike Stump1eb44332009-09-09 15:08:12 +00001023
Douglas Gregor50f6af72010-03-16 05:20:39 +00001024 return getBuffer(getFileID(Loc), Invalid)->getBufferIdentifier();
Chris Lattnerbff5c512009-02-17 08:39:06 +00001025}
1026
Chris Lattner30fc9332009-02-04 01:06:56 +00001027
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001028/// getPresumedLoc - This method returns the "presumed" location of a
1029/// SourceLocation specifies. A "presumed location" can be modified by #line
1030/// or GNU line marker directives. This provides a view on the data that a
1031/// user should see in diagnostics, for example.
1032///
1033/// Note that a presumed location is always given as the instantiation point
1034/// of an instantiation location, not at the spelling location.
1035PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc) const {
1036 if (Loc.isInvalid()) return PresumedLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001038 // Presumed locations are always for instantiation points.
Chris Lattner7da5aea2009-02-04 00:55:58 +00001039 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001040
Chris Lattner30fc9332009-02-04 01:06:56 +00001041 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001042 const SrcMgr::ContentCache *C = FI.getContentCache();
Mike Stump1eb44332009-09-09 15:08:12 +00001043
Chris Lattner3cd949c2009-02-04 01:55:42 +00001044 // To get the source name, first consult the FileEntry (if one exists)
1045 // before the MemBuffer as this will avoid unnecessarily paging in the
1046 // MemBuffer.
Chris Lattnere127a0d2010-04-20 20:35:58 +00001047 const char *Filename;
1048 if (C->Entry)
1049 Filename = C->Entry->getName();
1050 else
1051 Filename = C->getBuffer(Diag, *this)->getBufferIdentifier();
Douglas Gregorc417fa02010-11-02 00:39:22 +00001052 bool Invalid = false;
1053 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1054 if (Invalid)
1055 return PresumedLoc();
1056 unsigned ColNo = getColumnNumber(LocInfo.first, LocInfo.second, &Invalid);
1057 if (Invalid)
1058 return PresumedLoc();
1059
Chris Lattner3cd949c2009-02-04 01:55:42 +00001060 SourceLocation IncludeLoc = FI.getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001061
Chris Lattner3cd949c2009-02-04 01:55:42 +00001062 // If we have #line directives in this file, update and overwrite the physical
1063 // location info if appropriate.
1064 if (FI.hasLineDirectives()) {
1065 assert(LineTable && "Can't have linetable entries without a LineTable!");
1066 // See if there is a #line directive before this. If so, get it.
1067 if (const LineEntry *Entry =
1068 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second)) {
Chris Lattnerfc391332009-02-04 02:00:59 +00001069 // If the LineEntry indicates a filename, use it.
Chris Lattner3cd949c2009-02-04 01:55:42 +00001070 if (Entry->FilenameID != -1)
1071 Filename = LineTable->getFilename(Entry->FilenameID);
Chris Lattnerfc391332009-02-04 02:00:59 +00001072
1073 // Use the line number specified by the LineEntry. This line number may
1074 // be multiple lines down from the line entry. Add the difference in
1075 // physical line numbers from the query point and the line marker to the
1076 // total.
1077 unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
1078 LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1);
Mike Stump1eb44332009-09-09 15:08:12 +00001079
Chris Lattner0e0e5da2009-02-04 02:15:40 +00001080 // Note that column numbers are not molested by line markers.
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Chris Lattner137b6a62009-02-04 06:25:26 +00001082 // Handle virtual #include manipulation.
1083 if (Entry->IncludeOffset) {
1084 IncludeLoc = getLocForStartOfFile(LocInfo.first);
1085 IncludeLoc = IncludeLoc.getFileLocWithOffset(Entry->IncludeOffset);
1086 }
Chris Lattner3cd949c2009-02-04 01:55:42 +00001087 }
1088 }
1089
1090 return PresumedLoc(Filename, LineNo, ColNo, IncludeLoc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001091}
1092
1093//===----------------------------------------------------------------------===//
1094// Other miscellaneous methods.
1095//===----------------------------------------------------------------------===//
1096
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001097/// \brief Get the source location for the given file:line:col triplet.
1098///
1099/// If the source file is included multiple times, the source location will
1100/// be based upon the first inclusion.
1101SourceLocation SourceManager::getLocation(const FileEntry *SourceFile,
1102 unsigned Line, unsigned Col) const {
1103 assert(SourceFile && "Null source file!");
1104 assert(Line && Col && "Line and column should start from 1!");
1105
1106 fileinfo_iterator FI = FileInfos.find(SourceFile);
1107 if (FI == FileInfos.end())
1108 return SourceLocation();
1109 ContentCache *Content = FI->second;
Mike Stump1eb44332009-09-09 15:08:12 +00001110
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001111 // If this is the first use of line information for this buffer, compute the
1112 /// SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001113 if (Content->SourceLineCache == 0) {
1114 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +00001115 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +00001116 if (MyInvalid)
1117 return SourceLocation();
1118 }
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001119
Douglas Gregor4a160e12009-12-02 05:34:39 +00001120 // Find the first file ID that corresponds to the given file.
1121 FileID FirstFID;
1122
1123 // First, check the main file ID, since it is common to look for a
1124 // location in the main file.
1125 if (!MainFileID.isInvalid()) {
1126 const SLocEntry &MainSLoc = getSLocEntry(MainFileID);
1127 if (MainSLoc.isFile() && MainSLoc.getFile().getContentCache() == Content)
1128 FirstFID = MainFileID;
1129 }
1130
1131 if (FirstFID.isInvalid()) {
1132 // The location we're looking for isn't in the main file; look
1133 // through all of the source locations.
1134 for (unsigned I = 0, N = sloc_entry_size(); I != N; ++I) {
1135 const SLocEntry &SLoc = getSLocEntry(I);
1136 if (SLoc.isFile() && SLoc.getFile().getContentCache() == Content) {
1137 FirstFID = FileID::get(I);
1138 break;
1139 }
1140 }
1141 }
1142
1143 if (FirstFID.isInvalid())
1144 return SourceLocation();
1145
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001146 if (Line > Content->NumLines) {
Chris Lattnere127a0d2010-04-20 20:35:58 +00001147 unsigned Size = Content->getBuffer(Diag, *this)->getBufferSize();
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001148 if (Size > 0)
1149 --Size;
1150 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(Size);
1151 }
1152
1153 unsigned FilePos = Content->SourceLineCache[Line - 1];
Chris Lattnere127a0d2010-04-20 20:35:58 +00001154 const char *Buf = Content->getBuffer(Diag, *this)->getBufferStart() + FilePos;
1155 unsigned BufLength = Content->getBuffer(Diag, *this)->getBufferEnd() - Buf;
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001156 unsigned i = 0;
1157
1158 // Check that the given column is valid.
1159 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
1160 ++i;
1161 if (i < Col-1)
1162 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(FilePos + i);
1163
Douglas Gregor4a160e12009-12-02 05:34:39 +00001164 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(FilePos + Col - 1);
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001165}
1166
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001167/// Given a decomposed source location, move it up the include/instantiation
1168/// stack to the parent source location. If this is possible, return the
1169/// decomposed version of the parent in Loc and return false. If Loc is the
1170/// top-level entry, return true and don't modify it.
1171static bool MoveUpIncludeHierarchy(std::pair<FileID, unsigned> &Loc,
1172 const SourceManager &SM) {
1173 SourceLocation UpperLoc;
1174 const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(Loc.first);
1175 if (Entry.isInstantiation())
1176 UpperLoc = Entry.getInstantiation().getInstantiationLocStart();
1177 else
1178 UpperLoc = Entry.getFile().getIncludeLoc();
1179
1180 if (UpperLoc.isInvalid())
1181 return true; // We reached the top.
1182
1183 Loc = SM.getDecomposedLoc(UpperLoc);
1184 return false;
1185}
1186
1187
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001188/// \brief Determines the order of 2 source locations in the translation unit.
1189///
1190/// \returns true if LHS source location comes before RHS, false otherwise.
1191bool SourceManager::isBeforeInTranslationUnit(SourceLocation LHS,
1192 SourceLocation RHS) const {
1193 assert(LHS.isValid() && RHS.isValid() && "Passed invalid source location!");
1194 if (LHS == RHS)
1195 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001196
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001197 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
1198 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00001199
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001200 // If the source locations are in the same file, just compare offsets.
1201 if (LOffs.first == ROffs.first)
1202 return LOffs.second < ROffs.second;
1203
1204 // If we are comparing a source location with multiple locations in the same
1205 // file, we get a big win by caching the result.
Chris Lattner66a915f2010-05-07 05:10:46 +00001206 if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
1207 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001208
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001209 // Okay, we missed in the cache, start updating the cache for this query.
1210 IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first);
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001212 // "Traverse" the include/instantiation stacks of both locations and try to
Chris Lattner48296ba2010-05-07 05:51:13 +00001213 // find a common "ancestor". FileIDs build a tree-like structure that
1214 // reflects the #include hierarchy, and this algorithm needs to find the
1215 // nearest common ancestor between the two locations. For example, if you
1216 // have a.c that includes b.h and c.h, and are comparing a location in b.h to
1217 // a location in c.h, we need to find that their nearest common ancestor is
1218 // a.c, and compare the locations of the two #includes to find their relative
1219 // ordering.
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001220 //
Chris Lattner48296ba2010-05-07 05:51:13 +00001221 // SourceManager assigns FileIDs in order of parsing. This means that an
1222 // includee always has a larger FileID than an includer. While you might
1223 // think that we could just compare the FileID's here, that doesn't work to
1224 // compare a point at the end of a.c with a point within c.h. Though c.h has
1225 // a larger FileID, we have to compare the include point of c.h to the
1226 // location in a.c.
1227 //
1228 // Despite not being able to directly compare FileID's, we can tell that a
1229 // larger FileID is necessarily more deeply nested than a lower one and use
1230 // this information to walk up the tree to the nearest common ancestor.
1231 do {
1232 // If LOffs is larger than ROffs, then LOffs must be more deeply nested than
1233 // ROffs, walk up the #include chain.
1234 if (LOffs.first.ID > ROffs.first.ID) {
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001235 if (MoveUpIncludeHierarchy(LOffs, *this))
Chris Lattner48296ba2010-05-07 05:51:13 +00001236 break; // We reached the top.
1237
Chris Lattner48296ba2010-05-07 05:51:13 +00001238 } else {
1239 // Otherwise, ROffs is larger than LOffs, so ROffs must be more deeply
1240 // nested than LOffs, walk up the #include chain.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001241 if (MoveUpIncludeHierarchy(ROffs, *this))
Chris Lattner48296ba2010-05-07 05:51:13 +00001242 break; // We reached the top.
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001243 }
Chris Lattner48296ba2010-05-07 05:51:13 +00001244 } while (LOffs.first != ROffs.first);
Mike Stump1eb44332009-09-09 15:08:12 +00001245
Chris Lattner48296ba2010-05-07 05:51:13 +00001246 // If we exited because we found a nearest common ancestor, compare the
1247 // locations within the common file and cache them.
1248 if (LOffs.first == ROffs.first) {
1249 IsBeforeInTUCache.setCommonLoc(LOffs.first, LOffs.second, ROffs.second);
1250 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001251 }
Mike Stump1eb44332009-09-09 15:08:12 +00001252
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001253 // There is no common ancestor, most probably because one location is in the
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001254 // predefines buffer or an AST file.
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001255 // FIXME: We should rearrange the external interface so this simply never
1256 // happens; it can't conceptually happen. Also see PR5662.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001257 IsBeforeInTUCache.setQueryFIDs(FileID(), FileID()); // Don't try caching.
1258
1259 // Zip both entries up to the top level record.
1260 while (!MoveUpIncludeHierarchy(LOffs, *this)) /*empty*/;
1261 while (!MoveUpIncludeHierarchy(ROffs, *this)) /*empty*/;
Chris Lattner48296ba2010-05-07 05:51:13 +00001262
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001263 // If exactly one location is a memory buffer, assume it preceeds the other.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001264
1265 // Strip off macro instantation locations, going up to the top-level File
1266 // SLocEntry.
1267 bool LIsMB = getFileEntryForID(LOffs.first) == 0;
1268 bool RIsMB = getFileEntryForID(ROffs.first) == 0;
Chris Lattner48296ba2010-05-07 05:51:13 +00001269 if (LIsMB != RIsMB)
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001270 return LIsMB;
Mike Stump1eb44332009-09-09 15:08:12 +00001271
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001272 // Otherwise, just assume FileIDs were created in order.
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001273 return LOffs.first < ROffs.first;
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001274}
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001275
Reid Spencer5f016e22007-07-11 17:01:13 +00001276/// PrintStats - Print statistics to stderr.
1277///
1278void SourceManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001279 llvm::errs() << "\n*** Source Manager Stats:\n";
1280 llvm::errs() << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
1281 << " mem buffers mapped.\n";
1282 llvm::errs() << SLocEntryTable.size() << " SLocEntry's allocated, "
1283 << NextOffset << "B of Sloc address space used.\n";
Mike Stump1eb44332009-09-09 15:08:12 +00001284
Reid Spencer5f016e22007-07-11 17:01:13 +00001285 unsigned NumLineNumsComputed = 0;
1286 unsigned NumFileBytesMapped = 0;
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001287 for (fileinfo_iterator I = fileinfo_begin(), E = fileinfo_end(); I != E; ++I){
1288 NumLineNumsComputed += I->second->SourceLineCache != 0;
1289 NumFileBytesMapped += I->second->getSizeBytesMapped();
Reid Spencer5f016e22007-07-11 17:01:13 +00001290 }
Mike Stump1eb44332009-09-09 15:08:12 +00001291
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001292 llvm::errs() << NumFileBytesMapped << " bytes of files mapped, "
1293 << NumLineNumsComputed << " files with line #'s computed.\n";
1294 llvm::errs() << "FileID scans: " << NumLinearScans << " linear, "
1295 << NumBinaryProbes << " binary.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +00001296}
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001297
1298ExternalSLocEntrySource::~ExternalSLocEntrySource() { }