blob: e576b8dc6a2cd227e9b11410485903896ae13d64 [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;
76 struct stat FileInfo;
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +000077 Buffer.setPointer(SM.getFileManager().getBufferForFile(Entry,
78 SM.getFileSystemOpts(),
79 &ErrorStr, &FileInfo));
80
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000081 // If we were unable to open the file, then we are in an inconsistent
82 // situation where the content cache referenced a file which no longer
83 // exists. Most likely, we were using a stat cache with an invalid entry but
84 // the file could also have been removed during processing. Since we can't
85 // really deal with this situation, just create an empty buffer.
86 //
87 // FIXME: This is definitely not ideal, but our immediate clients can't
88 // currently handle returning a null entry here. Ideally we should detect
89 // that we are in an inconsistent situation and error out as quickly as
90 // possible.
Douglas Gregorc8151082010-03-16 22:53:51 +000091 if (!Buffer.getPointer()) {
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000092 const llvm::StringRef FillStr("<<<MISSING SOURCE FILE>>>\n");
Douglas Gregorc8151082010-03-16 22:53:51 +000093 Buffer.setPointer(MemoryBuffer::getNewMemBuffer(Entry->getSize(),
94 "<invalid>"));
95 char *Ptr = const_cast<char*>(Buffer.getPointer()->getBufferStart());
Daniel Dunbar21a8bed2009-12-06 05:43:36 +000096 for (unsigned i = 0, e = Entry->getSize(); i != e; ++i)
97 Ptr[i] = FillStr[i % FillStr.size()];
Douglas Gregor93ea5cb2010-03-22 15:10:57 +000098
99 if (Diag.isDiagnosticInFlight())
100 Diag.SetDelayedDiagnostic(diag::err_cannot_open_file,
101 Entry->getName(), ErrorStr);
102 else
Chris Lattnere127a0d2010-04-20 20:35:58 +0000103 Diag.Report(FullSourceLoc(Loc, SM), diag::err_cannot_open_file)
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000104 << Entry->getName() << ErrorStr;
105
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000106 Buffer.setInt(Buffer.getInt() | InvalidFlag);
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000107
108 // FIXME: This conditionalization is horrible, but we see spurious failures
109 // in the test suite due to this warning and no one has had time to hunt it
110 // down. So for now, we just don't emit this diagnostic on Win32, and hope
111 // nothing bad happens.
112 //
113 // PR6812.
Douglas Gregor9f692a02010-04-09 15:54:22 +0000114#if !defined(LLVM_ON_WIN32)
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000115 } else if (FileInfo.st_size != Entry->getSize() ||
116 FileInfo.st_mtime != Entry->getModificationTime()) {
Douglas Gregor9f692a02010-04-09 15:54:22 +0000117 // Check that the file's size and modification time are the same
118 // as in the file entry (which may have come from a stat cache).
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000119 if (Diag.isDiagnosticInFlight())
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000120 Diag.SetDelayedDiagnostic(diag::err_file_modified,
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000121 Entry->getName());
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000122 else
Chris Lattnere127a0d2010-04-20 20:35:58 +0000123 Diag.Report(FullSourceLoc(Loc, SM), diag::err_file_modified)
124 << Entry->getName();
Douglas Gregor93ea5cb2010-03-22 15:10:57 +0000125
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000126 Buffer.setInt(Buffer.getInt() | InvalidFlag);
Daniel Dunbar0b3c7732010-04-10 01:17:16 +0000127#endif
Daniel Dunbar21a8bed2009-12-06 05:43:36 +0000128 }
Chris Lattner38caec42010-04-20 18:14:03 +0000129
130 // If the buffer is valid, check to see if it has a UTF Byte Order Mark
131 // (BOM). We only support UTF-8 without a BOM right now. See
132 // http://en.wikipedia.org/wiki/Byte_order_mark for more information.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000133 if (!isBufferInvalid()) {
Chris Lattner38caec42010-04-20 18:14:03 +0000134 llvm::StringRef BufStr = Buffer.getPointer()->getBuffer();
Benjamin Kramer5807d9c2010-11-18 12:46:39 +0000135 const char *BOM = llvm::StringSwitch<const char *>(BufStr)
136 .StartsWith("\xEF\xBB\xBF", "UTF-8")
137 .StartsWith("\xFE\xFF", "UTF-16 (BE)")
138 .StartsWith("\xFF\xFE", "UTF-16 (LE)")
139 .StartsWith("\x00\x00\xFE\xFF", "UTF-32 (BE)")
140 .StartsWith("\xFF\xFE\x00\x00", "UTF-32 (LE)")
141 .StartsWith("\x2B\x2F\x76", "UTF-7")
142 .StartsWith("\xF7\x64\x4C", "UTF-1")
143 .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC")
144 .StartsWith("\x0E\xFE\xFF", "SDSU")
145 .StartsWith("\xFB\xEE\x28", "BOCU-1")
146 .StartsWith("\x84\x31\x95\x33", "GB-18030")
147 .Default(0);
148
Chris Lattner38caec42010-04-20 18:14:03 +0000149 if (BOM) {
Chris Lattnere127a0d2010-04-20 20:35:58 +0000150 Diag.Report(FullSourceLoc(Loc, SM), diag::err_unsupported_bom)
151 << BOM << Entry->getName();
Chris Lattner38caec42010-04-20 18:14:03 +0000152 Buffer.setInt(1);
153 }
154 }
Ted Kremenek5b034ad2009-01-06 22:43:04 +0000155 }
Douglas Gregoraea67db2010-03-15 22:54:52 +0000156
Douglas Gregorc8151082010-03-16 22:53:51 +0000157 if (Invalid)
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000158 *Invalid = isBufferInvalid();
Douglas Gregorc8151082010-03-16 22:53:51 +0000159
160 return Buffer.getPointer();
Ted Kremenekc16c2082009-01-06 01:55:26 +0000161}
162
Chris Lattner5b9a5042009-01-26 07:57:50 +0000163unsigned LineTableInfo::getLineTableFilenameID(const char *Ptr, unsigned Len) {
164 // Look up the filename in the string table, returning the pre-existing value
165 // if it exists.
Mike Stump1eb44332009-09-09 15:08:12 +0000166 llvm::StringMapEntry<unsigned> &Entry =
Chris Lattner5b9a5042009-01-26 07:57:50 +0000167 FilenameIDs.GetOrCreateValue(Ptr, Ptr+Len, ~0U);
168 if (Entry.getValue() != ~0U)
169 return Entry.getValue();
Mike Stump1eb44332009-09-09 15:08:12 +0000170
Chris Lattner5b9a5042009-01-26 07:57:50 +0000171 // Otherwise, assign this the next available ID.
172 Entry.setValue(FilenamesByID.size());
173 FilenamesByID.push_back(&Entry);
174 return FilenamesByID.size()-1;
175}
176
Chris Lattnerac50e342009-02-03 22:13:05 +0000177/// AddLineNote - Add a line note to the line table that indicates that there
178/// is a #line at the specified FID/Offset location which changes the presumed
179/// location to LineNo/FilenameID.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000180void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
Chris Lattnerac50e342009-02-03 22:13:05 +0000181 unsigned LineNo, int FilenameID) {
Chris Lattner23b5dc62009-02-04 00:40:31 +0000182 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000183
Chris Lattner23b5dc62009-02-04 00:40:31 +0000184 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
185 "Adding line entries out of order!");
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Chris Lattner9d79eba2009-02-04 05:21:58 +0000187 SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
Chris Lattner137b6a62009-02-04 06:25:26 +0000188 unsigned IncludeOffset = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000189
Chris Lattner9d79eba2009-02-04 05:21:58 +0000190 if (!Entries.empty()) {
191 // If this is a '#line 4' after '#line 42 "foo.h"', make sure to remember
192 // that we are still in "foo.h".
193 if (FilenameID == -1)
194 FilenameID = Entries.back().FilenameID;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Chris Lattner137b6a62009-02-04 06:25:26 +0000196 // If we are after a line marker that switched us to system header mode, or
197 // that set #include information, preserve it.
Chris Lattner9d79eba2009-02-04 05:21:58 +0000198 Kind = Entries.back().FileKind;
Chris Lattner137b6a62009-02-04 06:25:26 +0000199 IncludeOffset = Entries.back().IncludeOffset;
Chris Lattner9d79eba2009-02-04 05:21:58 +0000200 }
Mike Stump1eb44332009-09-09 15:08:12 +0000201
Chris Lattner137b6a62009-02-04 06:25:26 +0000202 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
203 IncludeOffset));
Chris Lattnerac50e342009-02-03 22:13:05 +0000204}
205
Chris Lattner9d79eba2009-02-04 05:21:58 +0000206/// AddLineNote This is the same as the previous version of AddLineNote, but is
207/// used for GNU line markers. If EntryExit is 0, then this doesn't change the
208/// presumed #include stack. If it is 1, this is a file entry, if it is 2 then
209/// this is a file exit. FileKind specifies whether this is a system header or
210/// extern C system header.
211void LineTableInfo::AddLineNote(unsigned FID, unsigned Offset,
212 unsigned LineNo, int FilenameID,
213 unsigned EntryExit,
214 SrcMgr::CharacteristicKind FileKind) {
215 assert(FilenameID != -1 && "Unspecified filename should use other accessor");
Mike Stump1eb44332009-09-09 15:08:12 +0000216
Chris Lattner9d79eba2009-02-04 05:21:58 +0000217 std::vector<LineEntry> &Entries = LineEntries[FID];
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Chris Lattner9d79eba2009-02-04 05:21:58 +0000219 assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
220 "Adding line entries out of order!");
221
Chris Lattner137b6a62009-02-04 06:25:26 +0000222 unsigned IncludeOffset = 0;
223 if (EntryExit == 0) { // No #include stack change.
224 IncludeOffset = Entries.empty() ? 0 : Entries.back().IncludeOffset;
225 } else if (EntryExit == 1) {
226 IncludeOffset = Offset-1;
227 } else if (EntryExit == 2) {
228 assert(!Entries.empty() && Entries.back().IncludeOffset &&
229 "PPDirectives should have caught case when popping empty include stack");
Mike Stump1eb44332009-09-09 15:08:12 +0000230
Chris Lattner137b6a62009-02-04 06:25:26 +0000231 // Get the include loc of the last entries' include loc as our include loc.
232 IncludeOffset = 0;
233 if (const LineEntry *PrevEntry =
234 FindNearestLineEntry(FID, Entries.back().IncludeOffset))
235 IncludeOffset = PrevEntry->IncludeOffset;
236 }
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Chris Lattner137b6a62009-02-04 06:25:26 +0000238 Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
239 IncludeOffset));
Chris Lattner9d79eba2009-02-04 05:21:58 +0000240}
241
242
Chris Lattner3cd949c2009-02-04 01:55:42 +0000243/// FindNearestLineEntry - Find the line entry nearest to FID that is before
244/// it. If there is no line entry before Offset in FID, return null.
Mike Stump1eb44332009-09-09 15:08:12 +0000245const LineEntry *LineTableInfo::FindNearestLineEntry(unsigned FID,
Chris Lattner3cd949c2009-02-04 01:55:42 +0000246 unsigned Offset) {
247 const std::vector<LineEntry> &Entries = LineEntries[FID];
248 assert(!Entries.empty() && "No #line entries for this FID after all!");
249
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000250 // It is very common for the query to be after the last #line, check this
251 // first.
252 if (Entries.back().FileOffset <= Offset)
253 return &Entries.back();
Chris Lattner3cd949c2009-02-04 01:55:42 +0000254
Chris Lattner6c1fbe02009-02-04 04:46:59 +0000255 // Do a binary search to find the maximal element that is still before Offset.
256 std::vector<LineEntry>::const_iterator I =
257 std::upper_bound(Entries.begin(), Entries.end(), Offset);
258 if (I == Entries.begin()) return 0;
259 return &*--I;
Chris Lattner3cd949c2009-02-04 01:55:42 +0000260}
Chris Lattnerac50e342009-02-03 22:13:05 +0000261
Douglas Gregorbd945002009-04-13 16:31:14 +0000262/// \brief Add a new line entry that has already been encoded into
263/// the internal representation of the line table.
Mike Stump1eb44332009-09-09 15:08:12 +0000264void LineTableInfo::AddEntry(unsigned FID,
Douglas Gregorbd945002009-04-13 16:31:14 +0000265 const std::vector<LineEntry> &Entries) {
266 LineEntries[FID] = Entries;
267}
Chris Lattnerac50e342009-02-03 22:13:05 +0000268
Chris Lattner5b9a5042009-01-26 07:57:50 +0000269/// getLineTableFilenameID - Return the uniqued ID for the specified filename.
Mike Stump1eb44332009-09-09 15:08:12 +0000270///
Chris Lattner5b9a5042009-01-26 07:57:50 +0000271unsigned SourceManager::getLineTableFilenameID(const char *Ptr, unsigned Len) {
272 if (LineTable == 0)
273 LineTable = new LineTableInfo();
274 return LineTable->getLineTableFilenameID(Ptr, Len);
275}
276
277
Chris Lattner4c4ea172009-02-03 21:52:55 +0000278/// AddLineNote - Add a line note to the line table for the FileID and offset
279/// specified by Loc. If FilenameID is -1, it is considered to be
280/// unspecified.
281void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
282 int FilenameID) {
Chris Lattnerac50e342009-02-03 22:13:05 +0000283 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000284
Chris Lattnerac50e342009-02-03 22:13:05 +0000285 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
286
287 // Remember that this file has #line directives now if it doesn't already.
288 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Chris Lattnerac50e342009-02-03 22:13:05 +0000290 if (LineTable == 0)
291 LineTable = new LineTableInfo();
Chris Lattner23b5dc62009-02-04 00:40:31 +0000292 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
Chris Lattner4c4ea172009-02-03 21:52:55 +0000293}
294
Chris Lattner9d79eba2009-02-04 05:21:58 +0000295/// AddLineNote - Add a GNU line marker to the line table.
296void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
297 int FilenameID, bool IsFileEntry,
298 bool IsFileExit, bool IsSystemHeader,
299 bool IsExternCHeader) {
300 // If there is no filename and no flags, this is treated just like a #line,
301 // which does not change the flags of the previous line marker.
302 if (FilenameID == -1) {
303 assert(!IsFileEntry && !IsFileExit && !IsSystemHeader && !IsExternCHeader &&
304 "Can't set flags without setting the filename!");
305 return AddLineNote(Loc, LineNo, FilenameID);
306 }
Mike Stump1eb44332009-09-09 15:08:12 +0000307
Chris Lattner9d79eba2009-02-04 05:21:58 +0000308 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
309 const SrcMgr::FileInfo &FileInfo = getSLocEntry(LocInfo.first).getFile();
Mike Stump1eb44332009-09-09 15:08:12 +0000310
Chris Lattner9d79eba2009-02-04 05:21:58 +0000311 // Remember that this file has #line directives now if it doesn't already.
312 const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
Mike Stump1eb44332009-09-09 15:08:12 +0000313
Chris Lattner9d79eba2009-02-04 05:21:58 +0000314 if (LineTable == 0)
315 LineTable = new LineTableInfo();
Mike Stump1eb44332009-09-09 15:08:12 +0000316
Chris Lattner9d79eba2009-02-04 05:21:58 +0000317 SrcMgr::CharacteristicKind FileKind;
318 if (IsExternCHeader)
319 FileKind = SrcMgr::C_ExternCSystem;
320 else if (IsSystemHeader)
321 FileKind = SrcMgr::C_System;
322 else
323 FileKind = SrcMgr::C_User;
Mike Stump1eb44332009-09-09 15:08:12 +0000324
Chris Lattner9d79eba2009-02-04 05:21:58 +0000325 unsigned EntryExit = 0;
326 if (IsFileEntry)
327 EntryExit = 1;
328 else if (IsFileExit)
329 EntryExit = 2;
Mike Stump1eb44332009-09-09 15:08:12 +0000330
Chris Lattner9d79eba2009-02-04 05:21:58 +0000331 LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
332 EntryExit, FileKind);
333}
334
Douglas Gregorbd945002009-04-13 16:31:14 +0000335LineTableInfo &SourceManager::getLineTable() {
336 if (LineTable == 0)
337 LineTable = new LineTableInfo();
338 return *LineTable;
339}
Chris Lattner4c4ea172009-02-03 21:52:55 +0000340
Chris Lattner23b5dc62009-02-04 00:40:31 +0000341//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000342// Private 'Create' methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000343//===----------------------------------------------------------------------===//
Ted Kremenekc16c2082009-01-06 01:55:26 +0000344
Chris Lattner5b9a5042009-01-26 07:57:50 +0000345SourceManager::~SourceManager() {
346 delete LineTable;
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000348 // Delete FileEntry objects corresponding to content caches. Since the actual
349 // content cache objects are bump pointer allocated, we just have to run the
350 // dtors, but we call the deallocate method for completeness.
351 for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i) {
352 MemBufferInfos[i]->~ContentCache();
353 ContentCacheAlloc.Deallocate(MemBufferInfos[i]);
354 }
355 for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator
356 I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
357 I->second->~ContentCache();
358 ContentCacheAlloc.Deallocate(I->second);
359 }
Chris Lattner5b9a5042009-01-26 07:57:50 +0000360}
361
362void SourceManager::clearIDTables() {
363 MainFileID = FileID();
364 SLocEntryTable.clear();
365 LastLineNoFileIDQuery = FileID();
366 LastLineNoContentCache = 0;
367 LastFileIDLookup = FileID();
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Chris Lattner5b9a5042009-01-26 07:57:50 +0000369 if (LineTable)
370 LineTable->clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000371
Chris Lattner5b9a5042009-01-26 07:57:50 +0000372 // Use up FileID #0 as an invalid instantiation.
373 NextOffset = 0;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000374 createInstantiationLoc(SourceLocation(),SourceLocation(),SourceLocation(), 1);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000375}
376
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000377/// getOrCreateContentCache - Create or return a cached ContentCache for the
378/// specified file.
379const ContentCache *
380SourceManager::getOrCreateContentCache(const FileEntry *FileEnt) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 assert(FileEnt && "Didn't specify a file entry to use?");
Mike Stump1eb44332009-09-09 15:08:12 +0000382
Reid Spencer5f016e22007-07-11 17:01:13 +0000383 // Do we already have information about this file?
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000384 ContentCache *&Entry = FileInfos[FileEnt];
385 if (Entry) return Entry;
Mike Stump1eb44332009-09-09 15:08:12 +0000386
Chris Lattner00282d62009-02-03 07:41:46 +0000387 // Nope, create a new Cache entry. Make sure it is at least 8-byte aligned
388 // so that FileInfo can use the low 3 bits of the pointer for its own
389 // nefarious purposes.
390 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
391 EntryAlign = std::max(8U, EntryAlign);
392 Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000393 new (Entry) ContentCache(FileEnt);
394 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000395}
396
397
Ted Kremenekd1c0eee2007-10-31 17:53:38 +0000398/// createMemBufferContentCache - Create a new ContentCache for the specified
399/// memory buffer. This does no caching.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000400const ContentCache*
401SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
Chris Lattner00282d62009-02-03 07:41:46 +0000402 // Add a new ContentCache to the MemBufferInfos list and return it. Make sure
403 // it is at least 8-byte aligned so that FileInfo can use the low 3 bits of
404 // the pointer for its own nefarious purposes.
405 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
406 EntryAlign = std::max(8U, EntryAlign);
407 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000408 new (Entry) ContentCache();
409 MemBufferInfos.push_back(Entry);
410 Entry->setBuffer(Buffer);
411 return Entry;
Reid Spencer5f016e22007-07-11 17:01:13 +0000412}
413
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000414void SourceManager::PreallocateSLocEntries(ExternalSLocEntrySource *Source,
415 unsigned NumSLocEntries,
416 unsigned NextOffset) {
417 ExternalSLocEntries = Source;
418 this->NextOffset = NextOffset;
Sebastian Redlb86238d2010-07-28 21:07:02 +0000419 unsigned CurPrealloc = SLocEntryLoaded.size();
420 // If we've ever preallocated, we must not count the dummy entry.
421 if (CurPrealloc) --CurPrealloc;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000422 SLocEntryLoaded.resize(NumSLocEntries + 1);
423 SLocEntryLoaded[0] = true;
Sebastian Redlb86238d2010-07-28 21:07:02 +0000424 SLocEntryTable.resize(SLocEntryTable.size() + NumSLocEntries - CurPrealloc);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000425}
426
Douglas Gregor2bf1eb02009-04-27 21:28:04 +0000427void SourceManager::ClearPreallocatedSLocEntries() {
428 unsigned I = 0;
429 for (unsigned N = SLocEntryLoaded.size(); I != N; ++I)
430 if (!SLocEntryLoaded[I])
431 break;
432
433 // We've already loaded all preallocated source location entries.
434 if (I == SLocEntryLoaded.size())
435 return;
436
437 // Remove everything from location I onward.
438 SLocEntryTable.resize(I);
439 SLocEntryLoaded.clear();
440 ExternalSLocEntries = 0;
441}
442
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000443
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000444//===----------------------------------------------------------------------===//
445// Methods to create new FileID's and instantiations.
446//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000447
Dan Gohman3f86b782010-08-26 21:27:06 +0000448/// createFileID - Create a new FileID for the specified ContentCache and
Ted Kremenek0d892d82007-10-30 22:57:35 +0000449/// include position. This works regardless of whether the ContentCache
450/// corresponds to a file or some other input source.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000451FileID SourceManager::createFileID(const ContentCache *File,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000452 SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000453 SrcMgr::CharacteristicKind FileCharacter,
454 unsigned PreallocatedID,
455 unsigned Offset) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000456 if (PreallocatedID) {
457 // If we're filling in a preallocated ID, just load in the file
458 // entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000459 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000460 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000461 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000462 "Source location entry already loaded");
463 assert(Offset && "Preallocate source location cannot have zero offset");
Mike Stump1eb44332009-09-09 15:08:12 +0000464 SLocEntryTable[PreallocatedID]
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000465 = SLocEntry::get(Offset, FileInfo::get(IncludePos, File, FileCharacter));
466 SLocEntryLoaded[PreallocatedID] = true;
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000467 FileID FID = FileID::get(PreallocatedID);
Douglas Gregor5de65722010-03-19 06:12:06 +0000468 return FID;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000469 }
470
Mike Stump1eb44332009-09-09 15:08:12 +0000471 SLocEntryTable.push_back(SLocEntry::get(NextOffset,
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000472 FileInfo::get(IncludePos, File,
473 FileCharacter)));
Ted Kremenekc16c2082009-01-06 01:55:26 +0000474 unsigned FileSize = File->getSize();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000475 assert(NextOffset+FileSize+1 > NextOffset && "Ran out of source locations!");
476 NextOffset += FileSize+1;
Mike Stump1eb44332009-09-09 15:08:12 +0000477
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000478 // Set LastFileIDLookup to the newly created file. The next getFileID call is
479 // almost guaranteed to be from that file.
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000480 FileID FID = FileID::get(SLocEntryTable.size()-1);
Argyrios Kyrtzidisea703f12009-06-23 00:42:06 +0000481 return LastFileIDLookup = FID;
Reid Spencer5f016e22007-07-11 17:01:13 +0000482}
483
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000484/// createInstantiationLoc - Return a new SourceLocation that encodes the fact
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000485/// that a token from SpellingLoc should actually be referenced from
Reid Spencer5f016e22007-07-11 17:01:13 +0000486/// InstantiationLoc.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000487SourceLocation SourceManager::createInstantiationLoc(SourceLocation SpellingLoc,
Chris Lattnere7fb4842009-02-15 20:52:18 +0000488 SourceLocation ILocStart,
489 SourceLocation ILocEnd,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000490 unsigned TokLength,
491 unsigned PreallocatedID,
492 unsigned Offset) {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000493 InstantiationInfo II = InstantiationInfo::get(ILocStart,ILocEnd, SpellingLoc);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000494 if (PreallocatedID) {
495 // If we're filling in a preallocated ID, just load in the
496 // instantiation entry and return.
Mike Stump1eb44332009-09-09 15:08:12 +0000497 assert(PreallocatedID < SLocEntryLoaded.size() &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000498 "Preallocate ID out-of-range");
Mike Stump1eb44332009-09-09 15:08:12 +0000499 assert(!SLocEntryLoaded[PreallocatedID] &&
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000500 "Source location entry already loaded");
501 assert(Offset && "Preallocate source location cannot have zero offset");
502 SLocEntryTable[PreallocatedID] = SLocEntry::get(Offset, II);
503 SLocEntryLoaded[PreallocatedID] = true;
504 return SourceLocation::getMacroLoc(Offset);
505 }
Chris Lattnere7fb4842009-02-15 20:52:18 +0000506 SLocEntryTable.push_back(SLocEntry::get(NextOffset, II));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000507 assert(NextOffset+TokLength+1 > NextOffset && "Ran out of source locations!");
508 NextOffset += TokLength+1;
509 return SourceLocation::getMacroLoc(NextOffset-(TokLength+1));
Reid Spencer5f016e22007-07-11 17:01:13 +0000510}
511
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000512const llvm::MemoryBuffer *
Douglas Gregor50f6af72010-03-16 05:20:39 +0000513SourceManager::getMemoryBufferForFile(const FileEntry *File,
514 bool *Invalid) {
Douglas Gregor29684422009-12-02 06:49:09 +0000515 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
Douglas Gregoraea67db2010-03-15 22:54:52 +0000516 assert(IR && "getOrCreateContentCache() cannot return NULL");
Chris Lattnere127a0d2010-04-20 20:35:58 +0000517 return IR->getBuffer(Diag, *this, SourceLocation(), Invalid);
Douglas Gregor29684422009-12-02 06:49:09 +0000518}
519
Dan Gohman0d06e992010-10-26 20:47:28 +0000520void SourceManager::overrideFileContents(const FileEntry *SourceFile,
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000521 const llvm::MemoryBuffer *Buffer,
522 bool DoNotFree) {
Douglas Gregor29684422009-12-02 06:49:09 +0000523 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
Dan Gohman0d06e992010-10-26 20:47:28 +0000524 assert(IR && "getOrCreateContentCache() cannot return NULL");
Douglas Gregor29684422009-12-02 06:49:09 +0000525
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000526 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer, DoNotFree);
Douglas Gregor29684422009-12-02 06:49:09 +0000527}
528
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000529llvm::StringRef SourceManager::getBufferData(FileID FID, bool *Invalid) const {
Douglas Gregoraae58b02010-03-16 20:01:30 +0000530 bool MyInvalid = false;
531 const llvm::MemoryBuffer *Buf = getBuffer(FID, &MyInvalid);
Douglas Gregorf715ca12010-03-16 00:06:06 +0000532 if (Invalid)
Douglas Gregoraae58b02010-03-16 20:01:30 +0000533 *Invalid = MyInvalid;
534
535 if (MyInvalid)
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000536 return "";
Douglas Gregoraae58b02010-03-16 20:01:30 +0000537
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000538 return Buf->getBuffer();
Douglas Gregoraea67db2010-03-15 22:54:52 +0000539}
Chris Lattner2b2453a2009-01-17 06:22:33 +0000540
Chris Lattner23b5dc62009-02-04 00:40:31 +0000541//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000542// SourceLocation manipulation methods.
Chris Lattner23b5dc62009-02-04 00:40:31 +0000543//===----------------------------------------------------------------------===//
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000544
545/// getFileIDSlow - Return the FileID for a SourceLocation. This is a very hot
546/// method that is used for all SourceManager queries that start with a
547/// SourceLocation object. It is responsible for finding the entry in
548/// SLocEntryTable which contains the specified location.
549///
550FileID SourceManager::getFileIDSlow(unsigned SLocOffset) const {
551 assert(SLocOffset && "Invalid FileID");
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000553 // After the first and second level caches, I see two common sorts of
554 // behavior: 1) a lot of searched FileID's are "near" the cached file location
555 // or are "near" the cached instantiation location. 2) others are just
556 // completely random and may be a very long way away.
557 //
558 // To handle this, we do a linear search for up to 8 steps to catch #1 quickly
559 // then we fall back to a less cache efficient, but more scalable, binary
560 // search to find the location.
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000562 // See if this is near the file point - worst case we start scanning from the
563 // most newly created FileID.
564 std::vector<SrcMgr::SLocEntry>::const_iterator I;
Mike Stump1eb44332009-09-09 15:08:12 +0000565
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000566 if (SLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) {
567 // Neither loc prunes our search.
568 I = SLocEntryTable.end();
569 } else {
570 // Perhaps it is near the file point.
571 I = SLocEntryTable.begin()+LastFileIDLookup.ID;
572 }
573
574 // Find the FileID that contains this. "I" is an iterator that points to a
575 // FileID whose offset is known to be larger than SLocOffset.
576 unsigned NumProbes = 0;
577 while (1) {
578 --I;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000579 if (ExternalSLocEntries)
580 getSLocEntry(FileID::get(I - SLocEntryTable.begin()));
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000581 if (I->getOffset() <= SLocOffset) {
582#if 0
583 printf("lin %d -> %d [%s] %d %d\n", SLocOffset,
584 I-SLocEntryTable.begin(),
585 I->isInstantiation() ? "inst" : "file",
586 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
587#endif
588 FileID Res = FileID::get(I-SLocEntryTable.begin());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000589
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000590 // If this isn't an instantiation, remember it. We have good locality
591 // across FileID lookups.
592 if (!I->isInstantiation())
593 LastFileIDLookup = Res;
594 NumLinearScans += NumProbes+1;
595 return Res;
596 }
597 if (++NumProbes == 8)
598 break;
599 }
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000601 // Convert "I" back into an index. We know that it is an entry whose index is
602 // larger than the offset we are looking for.
603 unsigned GreaterIndex = I-SLocEntryTable.begin();
604 // LessIndex - This is the lower bound of the range that we're searching.
605 // We know that the offset corresponding to the FileID is is less than
606 // SLocOffset.
607 unsigned LessIndex = 0;
608 NumProbes = 0;
609 while (1) {
610 unsigned MiddleIndex = (GreaterIndex-LessIndex)/2+LessIndex;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000611 unsigned MidOffset = getSLocEntry(FileID::get(MiddleIndex)).getOffset();
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000613 ++NumProbes;
Mike Stump1eb44332009-09-09 15:08:12 +0000614
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000615 // If the offset of the midpoint is too large, chop the high side of the
616 // range to the midpoint.
617 if (MidOffset > SLocOffset) {
618 GreaterIndex = MiddleIndex;
619 continue;
620 }
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000622 // If the middle index contains the value, succeed and return.
623 if (isOffsetInFileID(FileID::get(MiddleIndex), SLocOffset)) {
624#if 0
625 printf("bin %d -> %d [%s] %d %d\n", SLocOffset,
626 I-SLocEntryTable.begin(),
627 I->isInstantiation() ? "inst" : "file",
628 LastFileIDLookup.ID, int(SLocEntryTable.end()-I));
629#endif
630 FileID Res = FileID::get(MiddleIndex);
631
632 // If this isn't an instantiation, remember it. We have good locality
633 // across FileID lookups.
634 if (!I->isInstantiation())
635 LastFileIDLookup = Res;
636 NumBinaryProbes += NumProbes;
637 return Res;
638 }
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000640 // Otherwise, move the low-side up to the middle index.
641 LessIndex = MiddleIndex;
642 }
643}
644
Chris Lattneraddb7972009-01-26 20:04:19 +0000645SourceLocation SourceManager::
646getInstantiationLocSlowCase(SourceLocation Loc) const {
647 do {
Chris Lattnera5c6c582010-02-12 19:31:35 +0000648 // Note: If Loc indicates an offset into a token that came from a macro
649 // expansion (e.g. the 5th character of the token) we do not want to add
650 // this offset when going to the instantiation location. The instatiation
651 // location is the macro invocation, which the offset has nothing to do
652 // with. This is unlike when we get the spelling loc, because the offset
653 // directly correspond to the token whose spelling we're inspecting.
654 Loc = getSLocEntry(getFileID(Loc)).getInstantiation()
Chris Lattnere7fb4842009-02-15 20:52:18 +0000655 .getInstantiationLocStart();
Chris Lattneraddb7972009-01-26 20:04:19 +0000656 } while (!Loc.isFileID());
657
658 return Loc;
659}
660
661SourceLocation SourceManager::getSpellingLocSlowCase(SourceLocation Loc) const {
662 do {
663 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
664 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
665 Loc = Loc.getFileLocWithOffset(LocInfo.second);
666 } while (!Loc.isFileID());
667 return Loc;
668}
669
670
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000671std::pair<FileID, unsigned>
672SourceManager::getDecomposedInstantiationLocSlowCase(const SrcMgr::SLocEntry *E,
673 unsigned Offset) const {
674 // If this is an instantiation record, walk through all the instantiation
675 // points.
676 FileID FID;
677 SourceLocation Loc;
678 do {
Chris Lattnere7fb4842009-02-15 20:52:18 +0000679 Loc = E->getInstantiation().getInstantiationLocStart();
Mike Stump1eb44332009-09-09 15:08:12 +0000680
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000681 FID = getFileID(Loc);
682 E = &getSLocEntry(FID);
683 Offset += Loc.getOffset()-E->getOffset();
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000684 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000685
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000686 return std::make_pair(FID, Offset);
687}
688
689std::pair<FileID, unsigned>
690SourceManager::getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
691 unsigned Offset) const {
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000692 // If this is an instantiation record, walk through all the instantiation
693 // points.
694 FileID FID;
695 SourceLocation Loc;
696 do {
697 Loc = E->getInstantiation().getSpellingLoc();
Mike Stump1eb44332009-09-09 15:08:12 +0000698
Chris Lattnerbcd1a1b2009-01-26 19:41:58 +0000699 FID = getFileID(Loc);
700 E = &getSLocEntry(FID);
701 Offset += Loc.getOffset()-E->getOffset();
702 } while (!Loc.isFileID());
Mike Stump1eb44332009-09-09 15:08:12 +0000703
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000704 return std::make_pair(FID, Offset);
705}
706
Chris Lattner387616e2009-02-17 08:04:48 +0000707/// getImmediateSpellingLoc - Given a SourceLocation object, return the
708/// spelling location referenced by the ID. This is the first level down
709/// towards the place where the characters that make up the lexed token can be
710/// found. This should not generally be used by clients.
711SourceLocation SourceManager::getImmediateSpellingLoc(SourceLocation Loc) const{
712 if (Loc.isFileID()) return Loc;
713 std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
714 Loc = getSLocEntry(LocInfo.first).getInstantiation().getSpellingLoc();
715 return Loc.getFileLocWithOffset(LocInfo.second);
716}
717
718
Chris Lattnere7fb4842009-02-15 20:52:18 +0000719/// getImmediateInstantiationRange - Loc is required to be an instantiation
720/// location. Return the start/end of the instantiation information.
721std::pair<SourceLocation,SourceLocation>
722SourceManager::getImmediateInstantiationRange(SourceLocation Loc) const {
723 assert(Loc.isMacroID() && "Not an instantiation loc!");
724 const InstantiationInfo &II = getSLocEntry(getFileID(Loc)).getInstantiation();
725 return II.getInstantiationLocRange();
726}
727
Chris Lattner66781332009-02-15 21:26:50 +0000728/// getInstantiationRange - Given a SourceLocation object, return the
729/// range of tokens covered by the instantiation in the ultimate file.
730std::pair<SourceLocation,SourceLocation>
731SourceManager::getInstantiationRange(SourceLocation Loc) const {
732 if (Loc.isFileID()) return std::make_pair(Loc, Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000733
Chris Lattner66781332009-02-15 21:26:50 +0000734 std::pair<SourceLocation,SourceLocation> Res =
735 getImmediateInstantiationRange(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +0000736
Chris Lattner66781332009-02-15 21:26:50 +0000737 // Fully resolve the start and end locations to their ultimate instantiation
738 // points.
739 while (!Res.first.isFileID())
740 Res.first = getImmediateInstantiationRange(Res.first).first;
741 while (!Res.second.isFileID())
742 Res.second = getImmediateInstantiationRange(Res.second).second;
743 return Res;
744}
745
Chris Lattnere7fb4842009-02-15 20:52:18 +0000746
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000747
748//===----------------------------------------------------------------------===//
749// Queries about the code at a SourceLocation.
750//===----------------------------------------------------------------------===//
Reid Spencer5f016e22007-07-11 17:01:13 +0000751
752/// getCharacterData - Return a pointer to the start of the specified location
753/// in the appropriate MemoryBuffer.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000754const char *SourceManager::getCharacterData(SourceLocation SL,
755 bool *Invalid) const {
Reid Spencer5f016e22007-07-11 17:01:13 +0000756 // Note that this is a hot function in the getSpelling() path, which is
757 // heavily used by -E mode.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000758 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
Mike Stump1eb44332009-09-09 15:08:12 +0000759
Ted Kremenekc16c2082009-01-06 01:55:26 +0000760 // Note that calling 'getBuffer()' may lazily page in a source file.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000761 bool CharDataInvalid = false;
762 const llvm::MemoryBuffer *Buffer
Chris Lattnere127a0d2010-04-20 20:35:58 +0000763 = getSLocEntry(LocInfo.first).getFile().getContentCache()
764 ->getBuffer(Diag, *this, SourceLocation(), &CharDataInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000765 if (Invalid)
766 *Invalid = CharDataInvalid;
767 return Buffer->getBufferStart() + (CharDataInvalid? 0 : LocInfo.second);
Reid Spencer5f016e22007-07-11 17:01:13 +0000768}
769
Reid Spencer5f016e22007-07-11 17:01:13 +0000770
Chris Lattner9dc1f532007-07-20 16:37:10 +0000771/// getColumnNumber - Return the column # for the specified file position.
Chris Lattner7da5aea2009-02-04 00:55:58 +0000772/// this is significantly cheaper to compute than the line number.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000773unsigned SourceManager::getColumnNumber(FileID FID, unsigned FilePos,
774 bool *Invalid) const {
775 bool MyInvalid = false;
776 const char *Buf = getBuffer(FID, &MyInvalid)->getBufferStart();
777 if (Invalid)
778 *Invalid = MyInvalid;
779
780 if (MyInvalid)
781 return 1;
Mike Stump1eb44332009-09-09 15:08:12 +0000782
Reid Spencer5f016e22007-07-11 17:01:13 +0000783 unsigned LineStart = FilePos;
784 while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
785 --LineStart;
786 return FilePos-LineStart+1;
787}
788
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000789// isInvalid - Return the result of calling loc.isInvalid(), and
790// if Invalid is not null, set its value to same.
791static bool isInvalid(SourceLocation Loc, bool *Invalid) {
792 bool MyInvalid = Loc.isInvalid();
793 if (Invalid)
794 *Invalid = MyInvalid;
795 return MyInvalid;
796}
797
Douglas Gregor50f6af72010-03-16 05:20:39 +0000798unsigned SourceManager::getSpellingColumnNumber(SourceLocation Loc,
799 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000800 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000801 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000802 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000803}
804
Douglas Gregor50f6af72010-03-16 05:20:39 +0000805unsigned SourceManager::getInstantiationColumnNumber(SourceLocation Loc,
806 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000807 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner7da5aea2009-02-04 00:55:58 +0000808 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000809 return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
Chris Lattner7da5aea2009-02-04 00:55:58 +0000810}
811
Chandler Carruth14bd9652010-10-23 08:44:57 +0000812static LLVM_ATTRIBUTE_NOINLINE void
Chris Lattnere127a0d2010-04-20 20:35:58 +0000813ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
814 llvm::BumpPtrAllocator &Alloc,
815 const SourceManager &SM, bool &Invalid);
816static void ComputeLineNumbers(Diagnostic &Diag, ContentCache *FI,
817 llvm::BumpPtrAllocator &Alloc,
818 const SourceManager &SM, bool &Invalid) {
Ted Kremenekc16c2082009-01-06 01:55:26 +0000819 // Note that calling 'getBuffer()' may lazily page in the file.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000820 const MemoryBuffer *Buffer = FI->getBuffer(Diag, SM, SourceLocation(),
821 &Invalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000822 if (Invalid)
823 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000824
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000825 // Find the file offsets of all of the *physical* source lines. This does
826 // not look at trigraphs, escaped newlines, or anything else tricky.
827 std::vector<unsigned> LineOffsets;
Mike Stump1eb44332009-09-09 15:08:12 +0000828
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000829 // Line #1 starts at char 0.
830 LineOffsets.push_back(0);
Mike Stump1eb44332009-09-09 15:08:12 +0000831
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000832 const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
833 const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
834 unsigned Offs = 0;
835 while (1) {
836 // Skip over the contents of the line.
837 // TODO: Vectorize this? This is very performance sensitive for programs
838 // with lots of diagnostics and in -E mode.
839 const unsigned char *NextBuf = (const unsigned char *)Buf;
840 while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
841 ++NextBuf;
842 Offs += NextBuf-Buf;
843 Buf = NextBuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000845 if (Buf[0] == '\n' || Buf[0] == '\r') {
846 // If this is \n\r or \r\n, skip both characters.
847 if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
848 ++Offs, ++Buf;
849 ++Offs, ++Buf;
850 LineOffsets.push_back(Offs);
851 } else {
852 // Otherwise, this is a null. If end of file, exit.
853 if (Buf == End) break;
854 // Otherwise, skip the null.
855 ++Offs, ++Buf;
856 }
857 }
Mike Stump1eb44332009-09-09 15:08:12 +0000858
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000859 // Copy the offsets into the FileInfo structure.
860 FI->NumLines = LineOffsets.size();
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000861 FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000862 std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
863}
Reid Spencer5f016e22007-07-11 17:01:13 +0000864
Chris Lattnerdf7c17a2009-01-16 07:00:02 +0000865/// getLineNumber - Given a SourceLocation, return the spelling line number
Reid Spencer5f016e22007-07-11 17:01:13 +0000866/// for the position indicated. This requires building and caching a table of
867/// line offsets for the MemoryBuffer, so this is not cheap: use only when
868/// about to emit a diagnostic.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000869unsigned SourceManager::getLineNumber(FileID FID, unsigned FilePos,
870 bool *Invalid) const {
Chris Lattner2b2453a2009-01-17 06:22:33 +0000871 ContentCache *Content;
Chris Lattner30fc9332009-02-04 01:06:56 +0000872 if (LastLineNoFileIDQuery == FID)
Ted Kremenek78d85f52007-10-30 21:08:08 +0000873 Content = LastLineNoContentCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000874 else
Chris Lattner30fc9332009-02-04 01:06:56 +0000875 Content = const_cast<ContentCache*>(getSLocEntry(FID)
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000876 .getFile().getContentCache());
Mike Stump1eb44332009-09-09 15:08:12 +0000877
Reid Spencer5f016e22007-07-11 17:01:13 +0000878 // If this is the first use of line information for this buffer, compute the
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000879 /// SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000880 if (Content->SourceLineCache == 0) {
881 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +0000882 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +0000883 if (Invalid)
884 *Invalid = MyInvalid;
885 if (MyInvalid)
886 return 1;
887 } else if (Invalid)
888 *Invalid = false;
Reid Spencer5f016e22007-07-11 17:01:13 +0000889
890 // Okay, we know we have a line number table. Do a binary search to find the
891 // line number that this character position lands on.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000892 unsigned *SourceLineCache = Content->SourceLineCache;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000893 unsigned *SourceLineCacheStart = SourceLineCache;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000894 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Chris Lattner30fc9332009-02-04 01:06:56 +0000896 unsigned QueriedFilePos = FilePos+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000897
Daniel Dunbar4106d692009-05-18 17:30:52 +0000898 // FIXME: I would like to be convinced that this code is worth being as
Mike Stump1eb44332009-09-09 15:08:12 +0000899 // complicated as it is, binary search isn't that slow.
Daniel Dunbar4106d692009-05-18 17:30:52 +0000900 //
901 // If it is worth being optimized, then in my opinion it could be more
902 // performant, simpler, and more obviously correct by just "galloping" outward
903 // from the queried file position. In fact, this could be incorporated into a
904 // generic algorithm such as lower_bound_with_hint.
905 //
906 // If someone gives me a test case where this matters, and I will do it! - DWD
907
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000908 // If the previous query was to the same file, we know both the file pos from
909 // that query and the line number returned. This allows us to narrow the
910 // search space from the entire file to something near the match.
Chris Lattner30fc9332009-02-04 01:06:56 +0000911 if (LastLineNoFileIDQuery == FID) {
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000912 if (QueriedFilePos >= LastLineNoFilePos) {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000913 // FIXME: Potential overflow?
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000914 SourceLineCache = SourceLineCache+LastLineNoResult-1;
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000916 // The query is likely to be nearby the previous one. Here we check to
917 // see if it is within 5, 10 or 20 lines. It can be far away in cases
918 // where big comment blocks and vertical whitespace eat up lines but
919 // contribute no tokens.
920 if (SourceLineCache+5 < SourceLineCacheEnd) {
921 if (SourceLineCache[5] > QueriedFilePos)
922 SourceLineCacheEnd = SourceLineCache+5;
923 else if (SourceLineCache+10 < SourceLineCacheEnd) {
924 if (SourceLineCache[10] > QueriedFilePos)
925 SourceLineCacheEnd = SourceLineCache+10;
926 else if (SourceLineCache+20 < SourceLineCacheEnd) {
927 if (SourceLineCache[20] > QueriedFilePos)
928 SourceLineCacheEnd = SourceLineCache+20;
929 }
930 }
931 }
932 } else {
Daniel Dunbar4106d692009-05-18 17:30:52 +0000933 if (LastLineNoResult < Content->NumLines)
934 SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000935 }
936 }
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000938 // If the spread is large, do a "radix" test as our initial guess, based on
939 // the assumption that lines average to approximately the same length.
940 // NOTE: This is currently disabled, as it does not appear to be profitable in
941 // initial measurements.
942 if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
Ted Kremenek78d85f52007-10-30 21:08:08 +0000943 unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
Mike Stump1eb44332009-09-09 15:08:12 +0000944
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000945 // Take a stab at guessing where it is.
Ted Kremenek78d85f52007-10-30 21:08:08 +0000946 unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
Mike Stump1eb44332009-09-09 15:08:12 +0000947
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000948 // Check for -10 and +10 lines.
949 unsigned LowerBound = std::max(int(ApproxPos-10), 0);
950 unsigned UpperBound = std::min(ApproxPos+10, FileLen);
951
952 // If the computed lower bound is less than the query location, move it in.
953 if (SourceLineCache < SourceLineCacheStart+LowerBound &&
954 SourceLineCacheStart[LowerBound] < QueriedFilePos)
955 SourceLineCache = SourceLineCacheStart+LowerBound;
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000957 // If the computed upper bound is greater than the query location, move it.
958 if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
959 SourceLineCacheStart[UpperBound] >= QueriedFilePos)
960 SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
961 }
Mike Stump1eb44332009-09-09 15:08:12 +0000962
Chris Lattner1cf12bf2007-07-24 06:43:46 +0000963 unsigned *Pos
964 = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000965 unsigned LineNo = Pos-SourceLineCacheStart;
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Chris Lattner30fc9332009-02-04 01:06:56 +0000967 LastLineNoFileIDQuery = FID;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000968 LastLineNoContentCache = Content;
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000969 LastLineNoFilePos = QueriedFilePos;
970 LastLineNoResult = LineNo;
971 return LineNo;
Reid Spencer5f016e22007-07-11 17:01:13 +0000972}
973
Douglas Gregor50f6af72010-03-16 05:20:39 +0000974unsigned SourceManager::getInstantiationLineNumber(SourceLocation Loc,
975 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000976 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner30fc9332009-02-04 01:06:56 +0000977 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
978 return getLineNumber(LocInfo.first, LocInfo.second);
979}
Douglas Gregor50f6af72010-03-16 05:20:39 +0000980unsigned SourceManager::getSpellingLineNumber(SourceLocation Loc,
981 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +0000982 if (isInvalid(Loc, Invalid)) return 0;
Chris Lattner30fc9332009-02-04 01:06:56 +0000983 std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
984 return getLineNumber(LocInfo.first, LocInfo.second);
985}
986
Chris Lattner6b306672009-02-04 05:33:01 +0000987/// getFileCharacteristic - return the file characteristic of the specified
Mike Stump1eb44332009-09-09 15:08:12 +0000988/// source location, indicating whether this is a normal file, a system
Chris Lattner6b306672009-02-04 05:33:01 +0000989/// header, or an "implicit extern C" system header.
990///
991/// This state can be modified with flags on GNU linemarker directives like:
992/// # 4 "foo.h" 3
993/// which changes all source locations in the current file after that to be
994/// considered to be from a system header.
Mike Stump1eb44332009-09-09 15:08:12 +0000995SrcMgr::CharacteristicKind
Chris Lattner6b306672009-02-04 05:33:01 +0000996SourceManager::getFileCharacteristic(SourceLocation Loc) const {
997 assert(!Loc.isInvalid() && "Can't get file characteristic of invalid loc!");
998 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
999 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
1000
1001 // If there are no #line directives in this file, just return the whole-file
1002 // state.
1003 if (!FI.hasLineDirectives())
1004 return FI.getFileCharacteristic();
Mike Stump1eb44332009-09-09 15:08:12 +00001005
Chris Lattner6b306672009-02-04 05:33:01 +00001006 assert(LineTable && "Can't have linetable entries without a LineTable!");
1007 // See if there is a #line directive before the location.
1008 const LineEntry *Entry =
1009 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Chris Lattner6b306672009-02-04 05:33:01 +00001011 // If this is before the first line marker, use the file characteristic.
1012 if (!Entry)
1013 return FI.getFileCharacteristic();
1014
1015 return Entry->FileKind;
1016}
1017
Chris Lattnerbff5c512009-02-17 08:39:06 +00001018/// Return the filename or buffer identifier of the buffer the location is in.
1019/// Note that this name does not respect #line directives. Use getPresumedLoc
1020/// for normal clients.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001021const char *SourceManager::getBufferName(SourceLocation Loc,
1022 bool *Invalid) const {
Zhanyong Wan1f24e112010-10-05 17:56:33 +00001023 if (isInvalid(Loc, Invalid)) return "<invalid loc>";
Mike Stump1eb44332009-09-09 15:08:12 +00001024
Douglas Gregor50f6af72010-03-16 05:20:39 +00001025 return getBuffer(getFileID(Loc), Invalid)->getBufferIdentifier();
Chris Lattnerbff5c512009-02-17 08:39:06 +00001026}
1027
Chris Lattner30fc9332009-02-04 01:06:56 +00001028
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001029/// getPresumedLoc - This method returns the "presumed" location of a
1030/// SourceLocation specifies. A "presumed location" can be modified by #line
1031/// or GNU line marker directives. This provides a view on the data that a
1032/// user should see in diagnostics, for example.
1033///
1034/// Note that a presumed location is always given as the instantiation point
1035/// of an instantiation location, not at the spelling location.
1036PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc) const {
1037 if (Loc.isInvalid()) return PresumedLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001038
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001039 // Presumed locations are always for instantiation points.
Chris Lattner7da5aea2009-02-04 00:55:58 +00001040 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
Mike Stump1eb44332009-09-09 15:08:12 +00001041
Chris Lattner30fc9332009-02-04 01:06:56 +00001042 const SrcMgr::FileInfo &FI = getSLocEntry(LocInfo.first).getFile();
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001043 const SrcMgr::ContentCache *C = FI.getContentCache();
Mike Stump1eb44332009-09-09 15:08:12 +00001044
Chris Lattner3cd949c2009-02-04 01:55:42 +00001045 // To get the source name, first consult the FileEntry (if one exists)
1046 // before the MemBuffer as this will avoid unnecessarily paging in the
1047 // MemBuffer.
Chris Lattnere127a0d2010-04-20 20:35:58 +00001048 const char *Filename;
1049 if (C->Entry)
1050 Filename = C->Entry->getName();
1051 else
1052 Filename = C->getBuffer(Diag, *this)->getBufferIdentifier();
Douglas Gregorc417fa02010-11-02 00:39:22 +00001053 bool Invalid = false;
1054 unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1055 if (Invalid)
1056 return PresumedLoc();
1057 unsigned ColNo = getColumnNumber(LocInfo.first, LocInfo.second, &Invalid);
1058 if (Invalid)
1059 return PresumedLoc();
1060
Chris Lattner3cd949c2009-02-04 01:55:42 +00001061 SourceLocation IncludeLoc = FI.getIncludeLoc();
Mike Stump1eb44332009-09-09 15:08:12 +00001062
Chris Lattner3cd949c2009-02-04 01:55:42 +00001063 // If we have #line directives in this file, update and overwrite the physical
1064 // location info if appropriate.
1065 if (FI.hasLineDirectives()) {
1066 assert(LineTable && "Can't have linetable entries without a LineTable!");
1067 // See if there is a #line directive before this. If so, get it.
1068 if (const LineEntry *Entry =
1069 LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second)) {
Chris Lattnerfc391332009-02-04 02:00:59 +00001070 // If the LineEntry indicates a filename, use it.
Chris Lattner3cd949c2009-02-04 01:55:42 +00001071 if (Entry->FilenameID != -1)
1072 Filename = LineTable->getFilename(Entry->FilenameID);
Chris Lattnerfc391332009-02-04 02:00:59 +00001073
1074 // Use the line number specified by the LineEntry. This line number may
1075 // be multiple lines down from the line entry. Add the difference in
1076 // physical line numbers from the query point and the line marker to the
1077 // total.
1078 unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
1079 LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1);
Mike Stump1eb44332009-09-09 15:08:12 +00001080
Chris Lattner0e0e5da2009-02-04 02:15:40 +00001081 // Note that column numbers are not molested by line markers.
Mike Stump1eb44332009-09-09 15:08:12 +00001082
Chris Lattner137b6a62009-02-04 06:25:26 +00001083 // Handle virtual #include manipulation.
1084 if (Entry->IncludeOffset) {
1085 IncludeLoc = getLocForStartOfFile(LocInfo.first);
1086 IncludeLoc = IncludeLoc.getFileLocWithOffset(Entry->IncludeOffset);
1087 }
Chris Lattner3cd949c2009-02-04 01:55:42 +00001088 }
1089 }
1090
1091 return PresumedLoc(Filename, LineNo, ColNo, IncludeLoc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001092}
1093
1094//===----------------------------------------------------------------------===//
1095// Other miscellaneous methods.
1096//===----------------------------------------------------------------------===//
1097
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001098/// \brief Get the source location for the given file:line:col triplet.
1099///
1100/// If the source file is included multiple times, the source location will
1101/// be based upon the first inclusion.
1102SourceLocation SourceManager::getLocation(const FileEntry *SourceFile,
1103 unsigned Line, unsigned Col) const {
1104 assert(SourceFile && "Null source file!");
1105 assert(Line && Col && "Line and column should start from 1!");
1106
1107 fileinfo_iterator FI = FileInfos.find(SourceFile);
1108 if (FI == FileInfos.end())
1109 return SourceLocation();
1110 ContentCache *Content = FI->second;
Mike Stump1eb44332009-09-09 15:08:12 +00001111
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001112 // If this is the first use of line information for this buffer, compute the
1113 /// SourceLineCache for it on demand.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001114 if (Content->SourceLineCache == 0) {
1115 bool MyInvalid = false;
Chris Lattnere127a0d2010-04-20 20:35:58 +00001116 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
Douglas Gregor50f6af72010-03-16 05:20:39 +00001117 if (MyInvalid)
1118 return SourceLocation();
1119 }
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001120
Douglas Gregor4a160e12009-12-02 05:34:39 +00001121 // Find the first file ID that corresponds to the given file.
1122 FileID FirstFID;
1123
1124 // First, check the main file ID, since it is common to look for a
1125 // location in the main file.
1126 if (!MainFileID.isInvalid()) {
1127 const SLocEntry &MainSLoc = getSLocEntry(MainFileID);
1128 if (MainSLoc.isFile() && MainSLoc.getFile().getContentCache() == Content)
1129 FirstFID = MainFileID;
1130 }
1131
1132 if (FirstFID.isInvalid()) {
1133 // The location we're looking for isn't in the main file; look
1134 // through all of the source locations.
1135 for (unsigned I = 0, N = sloc_entry_size(); I != N; ++I) {
1136 const SLocEntry &SLoc = getSLocEntry(I);
1137 if (SLoc.isFile() && SLoc.getFile().getContentCache() == Content) {
1138 FirstFID = FileID::get(I);
1139 break;
1140 }
1141 }
1142 }
1143
1144 if (FirstFID.isInvalid())
1145 return SourceLocation();
1146
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001147 if (Line > Content->NumLines) {
Chris Lattnere127a0d2010-04-20 20:35:58 +00001148 unsigned Size = Content->getBuffer(Diag, *this)->getBufferSize();
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001149 if (Size > 0)
1150 --Size;
1151 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(Size);
1152 }
1153
1154 unsigned FilePos = Content->SourceLineCache[Line - 1];
Chris Lattnere127a0d2010-04-20 20:35:58 +00001155 const char *Buf = Content->getBuffer(Diag, *this)->getBufferStart() + FilePos;
1156 unsigned BufLength = Content->getBuffer(Diag, *this)->getBufferEnd() - Buf;
Douglas Gregord1eabfb2010-02-27 02:42:25 +00001157 unsigned i = 0;
1158
1159 // Check that the given column is valid.
1160 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
1161 ++i;
1162 if (i < Col-1)
1163 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(FilePos + i);
1164
Douglas Gregor4a160e12009-12-02 05:34:39 +00001165 return getLocForStartOfFile(FirstFID).getFileLocWithOffset(FilePos + Col - 1);
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001166}
1167
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001168/// Given a decomposed source location, move it up the include/instantiation
1169/// stack to the parent source location. If this is possible, return the
1170/// decomposed version of the parent in Loc and return false. If Loc is the
1171/// top-level entry, return true and don't modify it.
1172static bool MoveUpIncludeHierarchy(std::pair<FileID, unsigned> &Loc,
1173 const SourceManager &SM) {
1174 SourceLocation UpperLoc;
1175 const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(Loc.first);
1176 if (Entry.isInstantiation())
1177 UpperLoc = Entry.getInstantiation().getInstantiationLocStart();
1178 else
1179 UpperLoc = Entry.getFile().getIncludeLoc();
1180
1181 if (UpperLoc.isInvalid())
1182 return true; // We reached the top.
1183
1184 Loc = SM.getDecomposedLoc(UpperLoc);
1185 return false;
1186}
1187
1188
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001189/// \brief Determines the order of 2 source locations in the translation unit.
1190///
1191/// \returns true if LHS source location comes before RHS, false otherwise.
1192bool SourceManager::isBeforeInTranslationUnit(SourceLocation LHS,
1193 SourceLocation RHS) const {
1194 assert(LHS.isValid() && RHS.isValid() && "Passed invalid source location!");
1195 if (LHS == RHS)
1196 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001198 std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
1199 std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00001200
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001201 // If the source locations are in the same file, just compare offsets.
1202 if (LOffs.first == ROffs.first)
1203 return LOffs.second < ROffs.second;
1204
1205 // If we are comparing a source location with multiple locations in the same
1206 // file, we get a big win by caching the result.
Chris Lattner66a915f2010-05-07 05:10:46 +00001207 if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
1208 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Mike Stump1eb44332009-09-09 15:08:12 +00001209
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001210 // Okay, we missed in the cache, start updating the cache for this query.
1211 IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first);
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001213 // "Traverse" the include/instantiation stacks of both locations and try to
Chris Lattner48296ba2010-05-07 05:51:13 +00001214 // find a common "ancestor". FileIDs build a tree-like structure that
1215 // reflects the #include hierarchy, and this algorithm needs to find the
1216 // nearest common ancestor between the two locations. For example, if you
1217 // have a.c that includes b.h and c.h, and are comparing a location in b.h to
1218 // a location in c.h, we need to find that their nearest common ancestor is
1219 // a.c, and compare the locations of the two #includes to find their relative
1220 // ordering.
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001221 //
Chris Lattner48296ba2010-05-07 05:51:13 +00001222 // SourceManager assigns FileIDs in order of parsing. This means that an
1223 // includee always has a larger FileID than an includer. While you might
1224 // think that we could just compare the FileID's here, that doesn't work to
1225 // compare a point at the end of a.c with a point within c.h. Though c.h has
1226 // a larger FileID, we have to compare the include point of c.h to the
1227 // location in a.c.
1228 //
1229 // Despite not being able to directly compare FileID's, we can tell that a
1230 // larger FileID is necessarily more deeply nested than a lower one and use
1231 // this information to walk up the tree to the nearest common ancestor.
1232 do {
1233 // If LOffs is larger than ROffs, then LOffs must be more deeply nested than
1234 // ROffs, walk up the #include chain.
1235 if (LOffs.first.ID > ROffs.first.ID) {
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001236 if (MoveUpIncludeHierarchy(LOffs, *this))
Chris Lattner48296ba2010-05-07 05:51:13 +00001237 break; // We reached the top.
1238
Chris Lattner48296ba2010-05-07 05:51:13 +00001239 } else {
1240 // Otherwise, ROffs is larger than LOffs, so ROffs must be more deeply
1241 // nested than LOffs, walk up the #include chain.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001242 if (MoveUpIncludeHierarchy(ROffs, *this))
Chris Lattner48296ba2010-05-07 05:51:13 +00001243 break; // We reached the top.
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001244 }
Chris Lattner48296ba2010-05-07 05:51:13 +00001245 } while (LOffs.first != ROffs.first);
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Chris Lattner48296ba2010-05-07 05:51:13 +00001247 // If we exited because we found a nearest common ancestor, compare the
1248 // locations within the common file and cache them.
1249 if (LOffs.first == ROffs.first) {
1250 IsBeforeInTUCache.setCommonLoc(LOffs.first, LOffs.second, ROffs.second);
1251 return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001252 }
Mike Stump1eb44332009-09-09 15:08:12 +00001253
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001254 // There is no common ancestor, most probably because one location is in the
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001255 // predefines buffer or an AST file.
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001256 // FIXME: We should rearrange the external interface so this simply never
1257 // happens; it can't conceptually happen. Also see PR5662.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001258 IsBeforeInTUCache.setQueryFIDs(FileID(), FileID()); // Don't try caching.
1259
1260 // Zip both entries up to the top level record.
1261 while (!MoveUpIncludeHierarchy(LOffs, *this)) /*empty*/;
1262 while (!MoveUpIncludeHierarchy(ROffs, *this)) /*empty*/;
Chris Lattner48296ba2010-05-07 05:51:13 +00001263
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001264 // If exactly one location is a memory buffer, assume it preceeds the other.
Chris Lattnerd3b8cc22010-05-07 20:35:24 +00001265
1266 // Strip off macro instantation locations, going up to the top-level File
1267 // SLocEntry.
1268 bool LIsMB = getFileEntryForID(LOffs.first) == 0;
1269 bool RIsMB = getFileEntryForID(ROffs.first) == 0;
Chris Lattner48296ba2010-05-07 05:51:13 +00001270 if (LIsMB != RIsMB)
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001271 return LIsMB;
Mike Stump1eb44332009-09-09 15:08:12 +00001272
Daniel Dunbarfbcc7be2009-12-01 23:07:57 +00001273 // Otherwise, just assume FileIDs were created in order.
Chris Lattnerdcb1d682010-05-07 01:17:07 +00001274 return LOffs.first < ROffs.first;
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001275}
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001276
Reid Spencer5f016e22007-07-11 17:01:13 +00001277/// PrintStats - Print statistics to stderr.
1278///
1279void SourceManager::PrintStats() const {
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001280 llvm::errs() << "\n*** Source Manager Stats:\n";
1281 llvm::errs() << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
1282 << " mem buffers mapped.\n";
1283 llvm::errs() << SLocEntryTable.size() << " SLocEntry's allocated, "
1284 << NextOffset << "B of Sloc address space used.\n";
Mike Stump1eb44332009-09-09 15:08:12 +00001285
Reid Spencer5f016e22007-07-11 17:01:13 +00001286 unsigned NumLineNumsComputed = 0;
1287 unsigned NumFileBytesMapped = 0;
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001288 for (fileinfo_iterator I = fileinfo_begin(), E = fileinfo_end(); I != E; ++I){
1289 NumLineNumsComputed += I->second->SourceLineCache != 0;
1290 NumFileBytesMapped += I->second->getSizeBytesMapped();
Reid Spencer5f016e22007-07-11 17:01:13 +00001291 }
Mike Stump1eb44332009-09-09 15:08:12 +00001292
Benjamin Kramer6cb7c1a2009-08-23 12:08:50 +00001293 llvm::errs() << NumFileBytesMapped << " bytes of files mapped, "
1294 << NumLineNumsComputed << " files with line #'s computed.\n";
1295 llvm::errs() << "FileID scans: " << NumLinearScans << " linear, "
1296 << NumBinaryProbes << " binary.\n";
Reid Spencer5f016e22007-07-11 17:01:13 +00001297}
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001298
1299ExternalSLocEntrySource::~ExternalSLocEntrySource() { }