xref: /llvm-project/clang/lib/Basic/SourceManager.cpp (revision 4bdd6aa198ae789c1fdb2ce8056e916dad464017)
1 //===--- SourceManager.cpp - Track and cache source files -----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements the SourceManager interface.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Basic/SourceManager.h"
15 #include "clang/Basic/SourceManagerInternals.h"
16 #include "clang/Basic/Diagnostic.h"
17 #include "clang/Basic/FileManager.h"
18 #include "llvm/ADT/StringSwitch.h"
19 #include "llvm/ADT/Optional.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/Support/Compiler.h"
22 #include "llvm/Support/MemoryBuffer.h"
23 #include "llvm/Support/raw_ostream.h"
24 #include "llvm/Support/Path.h"
25 #include "llvm/Support/Capacity.h"
26 #include <algorithm>
27 #include <string>
28 #include <cstring>
29 #include <sys/stat.h>
30 
31 using namespace clang;
32 using namespace SrcMgr;
33 using llvm::MemoryBuffer;
34 
35 //===----------------------------------------------------------------------===//
36 // SourceManager Helper Classes
37 //===----------------------------------------------------------------------===//
38 
39 ContentCache::~ContentCache() {
40   if (shouldFreeBuffer())
41     delete Buffer.getPointer();
42 }
43 
44 /// getSizeBytesMapped - Returns the number of bytes actually mapped for this
45 /// ContentCache. This can be 0 if the MemBuffer was not actually expanded.
46 unsigned ContentCache::getSizeBytesMapped() const {
47   return Buffer.getPointer() ? Buffer.getPointer()->getBufferSize() : 0;
48 }
49 
50 /// Returns the kind of memory used to back the memory buffer for
51 /// this content cache.  This is used for performance analysis.
52 llvm::MemoryBuffer::BufferKind ContentCache::getMemoryBufferKind() const {
53   assert(Buffer.getPointer());
54 
55   // Should be unreachable, but keep for sanity.
56   if (!Buffer.getPointer())
57     return llvm::MemoryBuffer::MemoryBuffer_Malloc;
58 
59   const llvm::MemoryBuffer *buf = Buffer.getPointer();
60   return buf->getBufferKind();
61 }
62 
63 /// getSize - Returns the size of the content encapsulated by this ContentCache.
64 ///  This can be the size of the source file or the size of an arbitrary
65 ///  scratch buffer.  If the ContentCache encapsulates a source file, that
66 ///  file is not lazily brought in from disk to satisfy this query.
67 unsigned ContentCache::getSize() const {
68   return Buffer.getPointer() ? (unsigned) Buffer.getPointer()->getBufferSize()
69                              : (unsigned) ContentsEntry->getSize();
70 }
71 
72 void ContentCache::replaceBuffer(const llvm::MemoryBuffer *B,
73                                  bool DoNotFree) {
74   assert(B != Buffer.getPointer());
75 
76   if (shouldFreeBuffer())
77     delete Buffer.getPointer();
78   Buffer.setPointer(B);
79   Buffer.setInt(DoNotFree? DoNotFreeFlag : 0);
80 }
81 
82 const llvm::MemoryBuffer *ContentCache::getBuffer(DiagnosticsEngine &Diag,
83                                                   const SourceManager &SM,
84                                                   SourceLocation Loc,
85                                                   bool *Invalid) const {
86   // Lazily create the Buffer for ContentCaches that wrap files.  If we already
87   // computed it, just return what we have.
88   if (Buffer.getPointer() || ContentsEntry == 0) {
89     if (Invalid)
90       *Invalid = isBufferInvalid();
91 
92     return Buffer.getPointer();
93   }
94 
95   std::string ErrorStr;
96   Buffer.setPointer(SM.getFileManager().getBufferForFile(ContentsEntry, &ErrorStr));
97 
98   // If we were unable to open the file, then we are in an inconsistent
99   // situation where the content cache referenced a file which no longer
100   // exists. Most likely, we were using a stat cache with an invalid entry but
101   // the file could also have been removed during processing. Since we can't
102   // really deal with this situation, just create an empty buffer.
103   //
104   // FIXME: This is definitely not ideal, but our immediate clients can't
105   // currently handle returning a null entry here. Ideally we should detect
106   // that we are in an inconsistent situation and error out as quickly as
107   // possible.
108   if (!Buffer.getPointer()) {
109     const StringRef FillStr("<<<MISSING SOURCE FILE>>>\n");
110     Buffer.setPointer(MemoryBuffer::getNewMemBuffer(ContentsEntry->getSize(),
111                                                     "<invalid>"));
112     char *Ptr = const_cast<char*>(Buffer.getPointer()->getBufferStart());
113     for (unsigned i = 0, e = ContentsEntry->getSize(); i != e; ++i)
114       Ptr[i] = FillStr[i % FillStr.size()];
115 
116     if (Diag.isDiagnosticInFlight())
117       Diag.SetDelayedDiagnostic(diag::err_cannot_open_file,
118                                 ContentsEntry->getName(), ErrorStr);
119     else
120       Diag.Report(Loc, diag::err_cannot_open_file)
121         << ContentsEntry->getName() << ErrorStr;
122 
123     Buffer.setInt(Buffer.getInt() | InvalidFlag);
124 
125     if (Invalid) *Invalid = true;
126     return Buffer.getPointer();
127   }
128 
129   // Check that the file's size is the same as in the file entry (which may
130   // have come from a stat cache).
131   if (getRawBuffer()->getBufferSize() != (size_t)ContentsEntry->getSize()) {
132     if (Diag.isDiagnosticInFlight())
133       Diag.SetDelayedDiagnostic(diag::err_file_modified,
134                                 ContentsEntry->getName());
135     else
136       Diag.Report(Loc, diag::err_file_modified)
137         << ContentsEntry->getName();
138 
139     Buffer.setInt(Buffer.getInt() | InvalidFlag);
140     if (Invalid) *Invalid = true;
141     return Buffer.getPointer();
142   }
143 
144   // If the buffer is valid, check to see if it has a UTF Byte Order Mark
145   // (BOM).  We only support UTF-8 with and without a BOM right now.  See
146   // http://en.wikipedia.org/wiki/Byte_order_mark for more information.
147   StringRef BufStr = Buffer.getPointer()->getBuffer();
148   const char *InvalidBOM = llvm::StringSwitch<const char *>(BufStr)
149     .StartsWith("\xFE\xFF", "UTF-16 (BE)")
150     .StartsWith("\xFF\xFE", "UTF-16 (LE)")
151     .StartsWith("\x00\x00\xFE\xFF", "UTF-32 (BE)")
152     .StartsWith("\xFF\xFE\x00\x00", "UTF-32 (LE)")
153     .StartsWith("\x2B\x2F\x76", "UTF-7")
154     .StartsWith("\xF7\x64\x4C", "UTF-1")
155     .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC")
156     .StartsWith("\x0E\xFE\xFF", "SDSU")
157     .StartsWith("\xFB\xEE\x28", "BOCU-1")
158     .StartsWith("\x84\x31\x95\x33", "GB-18030")
159     .Default(0);
160 
161   if (InvalidBOM) {
162     Diag.Report(Loc, diag::err_unsupported_bom)
163       << InvalidBOM << ContentsEntry->getName();
164     Buffer.setInt(Buffer.getInt() | InvalidFlag);
165   }
166 
167   if (Invalid)
168     *Invalid = isBufferInvalid();
169 
170   return Buffer.getPointer();
171 }
172 
173 unsigned LineTableInfo::getLineTableFilenameID(StringRef Name) {
174   // Look up the filename in the string table, returning the pre-existing value
175   // if it exists.
176   llvm::StringMapEntry<unsigned> &Entry =
177     FilenameIDs.GetOrCreateValue(Name, ~0U);
178   if (Entry.getValue() != ~0U)
179     return Entry.getValue();
180 
181   // Otherwise, assign this the next available ID.
182   Entry.setValue(FilenamesByID.size());
183   FilenamesByID.push_back(&Entry);
184   return FilenamesByID.size()-1;
185 }
186 
187 /// AddLineNote - Add a line note to the line table that indicates that there
188 /// is a #line at the specified FID/Offset location which changes the presumed
189 /// location to LineNo/FilenameID.
190 void LineTableInfo::AddLineNote(int FID, unsigned Offset,
191                                 unsigned LineNo, int FilenameID) {
192   std::vector<LineEntry> &Entries = LineEntries[FID];
193 
194   assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
195          "Adding line entries out of order!");
196 
197   SrcMgr::CharacteristicKind Kind = SrcMgr::C_User;
198   unsigned IncludeOffset = 0;
199 
200   if (!Entries.empty()) {
201     // If this is a '#line 4' after '#line 42 "foo.h"', make sure to remember
202     // that we are still in "foo.h".
203     if (FilenameID == -1)
204       FilenameID = Entries.back().FilenameID;
205 
206     // If we are after a line marker that switched us to system header mode, or
207     // that set #include information, preserve it.
208     Kind = Entries.back().FileKind;
209     IncludeOffset = Entries.back().IncludeOffset;
210   }
211 
212   Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, Kind,
213                                    IncludeOffset));
214 }
215 
216 /// AddLineNote This is the same as the previous version of AddLineNote, but is
217 /// used for GNU line markers.  If EntryExit is 0, then this doesn't change the
218 /// presumed #include stack.  If it is 1, this is a file entry, if it is 2 then
219 /// this is a file exit.  FileKind specifies whether this is a system header or
220 /// extern C system header.
221 void LineTableInfo::AddLineNote(int FID, unsigned Offset,
222                                 unsigned LineNo, int FilenameID,
223                                 unsigned EntryExit,
224                                 SrcMgr::CharacteristicKind FileKind) {
225   assert(FilenameID != -1 && "Unspecified filename should use other accessor");
226 
227   std::vector<LineEntry> &Entries = LineEntries[FID];
228 
229   assert((Entries.empty() || Entries.back().FileOffset < Offset) &&
230          "Adding line entries out of order!");
231 
232   unsigned IncludeOffset = 0;
233   if (EntryExit == 0) {  // No #include stack change.
234     IncludeOffset = Entries.empty() ? 0 : Entries.back().IncludeOffset;
235   } else if (EntryExit == 1) {
236     IncludeOffset = Offset-1;
237   } else if (EntryExit == 2) {
238     assert(!Entries.empty() && Entries.back().IncludeOffset &&
239        "PPDirectives should have caught case when popping empty include stack");
240 
241     // Get the include loc of the last entries' include loc as our include loc.
242     IncludeOffset = 0;
243     if (const LineEntry *PrevEntry =
244           FindNearestLineEntry(FID, Entries.back().IncludeOffset))
245       IncludeOffset = PrevEntry->IncludeOffset;
246   }
247 
248   Entries.push_back(LineEntry::get(Offset, LineNo, FilenameID, FileKind,
249                                    IncludeOffset));
250 }
251 
252 
253 /// FindNearestLineEntry - Find the line entry nearest to FID that is before
254 /// it.  If there is no line entry before Offset in FID, return null.
255 const LineEntry *LineTableInfo::FindNearestLineEntry(int FID,
256                                                      unsigned Offset) {
257   const std::vector<LineEntry> &Entries = LineEntries[FID];
258   assert(!Entries.empty() && "No #line entries for this FID after all!");
259 
260   // It is very common for the query to be after the last #line, check this
261   // first.
262   if (Entries.back().FileOffset <= Offset)
263     return &Entries.back();
264 
265   // Do a binary search to find the maximal element that is still before Offset.
266   std::vector<LineEntry>::const_iterator I =
267     std::upper_bound(Entries.begin(), Entries.end(), Offset);
268   if (I == Entries.begin()) return 0;
269   return &*--I;
270 }
271 
272 /// \brief Add a new line entry that has already been encoded into
273 /// the internal representation of the line table.
274 void LineTableInfo::AddEntry(int FID,
275                              const std::vector<LineEntry> &Entries) {
276   LineEntries[FID] = Entries;
277 }
278 
279 /// getLineTableFilenameID - Return the uniqued ID for the specified filename.
280 ///
281 unsigned SourceManager::getLineTableFilenameID(StringRef Name) {
282   if (LineTable == 0)
283     LineTable = new LineTableInfo();
284   return LineTable->getLineTableFilenameID(Name);
285 }
286 
287 
288 /// AddLineNote - Add a line note to the line table for the FileID and offset
289 /// specified by Loc.  If FilenameID is -1, it is considered to be
290 /// unspecified.
291 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
292                                 int FilenameID) {
293   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
294 
295   bool Invalid = false;
296   const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
297   if (!Entry.isFile() || Invalid)
298     return;
299 
300   const SrcMgr::FileInfo &FileInfo = Entry.getFile();
301 
302   // Remember that this file has #line directives now if it doesn't already.
303   const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
304 
305   if (LineTable == 0)
306     LineTable = new LineTableInfo();
307   LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID);
308 }
309 
310 /// AddLineNote - Add a GNU line marker to the line table.
311 void SourceManager::AddLineNote(SourceLocation Loc, unsigned LineNo,
312                                 int FilenameID, bool IsFileEntry,
313                                 bool IsFileExit, bool IsSystemHeader,
314                                 bool IsExternCHeader) {
315   // If there is no filename and no flags, this is treated just like a #line,
316   // which does not change the flags of the previous line marker.
317   if (FilenameID == -1) {
318     assert(!IsFileEntry && !IsFileExit && !IsSystemHeader && !IsExternCHeader &&
319            "Can't set flags without setting the filename!");
320     return AddLineNote(Loc, LineNo, FilenameID);
321   }
322 
323   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
324 
325   bool Invalid = false;
326   const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
327   if (!Entry.isFile() || Invalid)
328     return;
329 
330   const SrcMgr::FileInfo &FileInfo = Entry.getFile();
331 
332   // Remember that this file has #line directives now if it doesn't already.
333   const_cast<SrcMgr::FileInfo&>(FileInfo).setHasLineDirectives();
334 
335   if (LineTable == 0)
336     LineTable = new LineTableInfo();
337 
338   SrcMgr::CharacteristicKind FileKind;
339   if (IsExternCHeader)
340     FileKind = SrcMgr::C_ExternCSystem;
341   else if (IsSystemHeader)
342     FileKind = SrcMgr::C_System;
343   else
344     FileKind = SrcMgr::C_User;
345 
346   unsigned EntryExit = 0;
347   if (IsFileEntry)
348     EntryExit = 1;
349   else if (IsFileExit)
350     EntryExit = 2;
351 
352   LineTable->AddLineNote(LocInfo.first.ID, LocInfo.second, LineNo, FilenameID,
353                          EntryExit, FileKind);
354 }
355 
356 LineTableInfo &SourceManager::getLineTable() {
357   if (LineTable == 0)
358     LineTable = new LineTableInfo();
359   return *LineTable;
360 }
361 
362 //===----------------------------------------------------------------------===//
363 // Private 'Create' methods.
364 //===----------------------------------------------------------------------===//
365 
366 SourceManager::SourceManager(DiagnosticsEngine &Diag, FileManager &FileMgr)
367   : Diag(Diag), FileMgr(FileMgr), OverridenFilesKeepOriginalName(true),
368     ExternalSLocEntries(0), LineTable(0), NumLinearScans(0),
369     NumBinaryProbes(0), FakeBufferForRecovery(0) {
370   clearIDTables();
371   Diag.setSourceManager(this);
372 }
373 
374 SourceManager::~SourceManager() {
375   delete LineTable;
376 
377   // Delete FileEntry objects corresponding to content caches.  Since the actual
378   // content cache objects are bump pointer allocated, we just have to run the
379   // dtors, but we call the deallocate method for completeness.
380   for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i) {
381     MemBufferInfos[i]->~ContentCache();
382     ContentCacheAlloc.Deallocate(MemBufferInfos[i]);
383   }
384   for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator
385        I = FileInfos.begin(), E = FileInfos.end(); I != E; ++I) {
386     I->second->~ContentCache();
387     ContentCacheAlloc.Deallocate(I->second);
388   }
389 
390   delete FakeBufferForRecovery;
391 
392   for (llvm::DenseMap<FileID, MacroArgsMap *>::iterator
393          I = MacroArgsCacheMap.begin(),E = MacroArgsCacheMap.end(); I!=E; ++I) {
394     delete I->second;
395   }
396 }
397 
398 void SourceManager::clearIDTables() {
399   MainFileID = FileID();
400   LocalSLocEntryTable.clear();
401   LoadedSLocEntryTable.clear();
402   SLocEntryLoaded.clear();
403   LastLineNoFileIDQuery = FileID();
404   LastLineNoContentCache = 0;
405   LastFileIDLookup = FileID();
406 
407   if (LineTable)
408     LineTable->clear();
409 
410   // Use up FileID #0 as an invalid expansion.
411   NextLocalOffset = 0;
412   CurrentLoadedOffset = MaxLoadedOffset;
413   createExpansionLoc(SourceLocation(),SourceLocation(),SourceLocation(), 1);
414 }
415 
416 /// getOrCreateContentCache - Create or return a cached ContentCache for the
417 /// specified file.
418 const ContentCache *
419 SourceManager::getOrCreateContentCache(const FileEntry *FileEnt) {
420   assert(FileEnt && "Didn't specify a file entry to use?");
421 
422   // Do we already have information about this file?
423   ContentCache *&Entry = FileInfos[FileEnt];
424   if (Entry) return Entry;
425 
426   // Nope, create a new Cache entry.  Make sure it is at least 8-byte aligned
427   // so that FileInfo can use the low 3 bits of the pointer for its own
428   // nefarious purposes.
429   unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
430   EntryAlign = std::max(8U, EntryAlign);
431   Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
432 
433   // If the file contents are overridden with contents from another file,
434   // pass that file to ContentCache.
435   llvm::DenseMap<const FileEntry *, const FileEntry *>::iterator
436       overI = OverriddenFiles.find(FileEnt);
437   if (overI == OverriddenFiles.end())
438     new (Entry) ContentCache(FileEnt);
439   else
440     new (Entry) ContentCache(OverridenFilesKeepOriginalName ? FileEnt
441                                                             : overI->second,
442                              overI->second);
443 
444   return Entry;
445 }
446 
447 
448 /// createMemBufferContentCache - Create a new ContentCache for the specified
449 ///  memory buffer.  This does no caching.
450 const ContentCache*
451 SourceManager::createMemBufferContentCache(const MemoryBuffer *Buffer) {
452   // Add a new ContentCache to the MemBufferInfos list and return it.  Make sure
453   // it is at least 8-byte aligned so that FileInfo can use the low 3 bits of
454   // the pointer for its own nefarious purposes.
455   unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
456   EntryAlign = std::max(8U, EntryAlign);
457   ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(1, EntryAlign);
458   new (Entry) ContentCache();
459   MemBufferInfos.push_back(Entry);
460   Entry->setBuffer(Buffer);
461   return Entry;
462 }
463 
464 std::pair<int, unsigned>
465 SourceManager::AllocateLoadedSLocEntries(unsigned NumSLocEntries,
466                                          unsigned TotalSize) {
467   assert(ExternalSLocEntries && "Don't have an external sloc source");
468   LoadedSLocEntryTable.resize(LoadedSLocEntryTable.size() + NumSLocEntries);
469   SLocEntryLoaded.resize(LoadedSLocEntryTable.size());
470   CurrentLoadedOffset -= TotalSize;
471   assert(CurrentLoadedOffset >= NextLocalOffset && "Out of source locations");
472   int ID = LoadedSLocEntryTable.size();
473   return std::make_pair(-ID - 1, CurrentLoadedOffset);
474 }
475 
476 /// \brief As part of recovering from missing or changed content, produce a
477 /// fake, non-empty buffer.
478 const llvm::MemoryBuffer *SourceManager::getFakeBufferForRecovery() const {
479   if (!FakeBufferForRecovery)
480     FakeBufferForRecovery
481       = llvm::MemoryBuffer::getMemBuffer("<<<INVALID BUFFER>>");
482 
483   return FakeBufferForRecovery;
484 }
485 
486 //===----------------------------------------------------------------------===//
487 // Methods to create new FileID's and macro expansions.
488 //===----------------------------------------------------------------------===//
489 
490 /// createFileID - Create a new FileID for the specified ContentCache and
491 /// include position.  This works regardless of whether the ContentCache
492 /// corresponds to a file or some other input source.
493 FileID SourceManager::createFileID(const ContentCache *File,
494                                    SourceLocation IncludePos,
495                                    SrcMgr::CharacteristicKind FileCharacter,
496                                    int LoadedID, unsigned LoadedOffset) {
497   if (LoadedID < 0) {
498     assert(LoadedID != -1 && "Loading sentinel FileID");
499     unsigned Index = unsigned(-LoadedID) - 2;
500     assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
501     assert(!SLocEntryLoaded[Index] && "FileID already loaded");
502     LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset,
503         FileInfo::get(IncludePos, File, FileCharacter));
504     SLocEntryLoaded[Index] = true;
505     return FileID::get(LoadedID);
506   }
507   LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset,
508                                                FileInfo::get(IncludePos, File,
509                                                              FileCharacter)));
510   unsigned FileSize = File->getSize();
511   assert(NextLocalOffset + FileSize + 1 > NextLocalOffset &&
512          NextLocalOffset + FileSize + 1 <= CurrentLoadedOffset &&
513          "Ran out of source locations!");
514   // We do a +1 here because we want a SourceLocation that means "the end of the
515   // file", e.g. for the "no newline at the end of the file" diagnostic.
516   NextLocalOffset += FileSize + 1;
517 
518   // Set LastFileIDLookup to the newly created file.  The next getFileID call is
519   // almost guaranteed to be from that file.
520   FileID FID = FileID::get(LocalSLocEntryTable.size()-1);
521   return LastFileIDLookup = FID;
522 }
523 
524 SourceLocation
525 SourceManager::createMacroArgExpansionLoc(SourceLocation SpellingLoc,
526                                           SourceLocation ExpansionLoc,
527                                           unsigned TokLength) {
528   ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
529                                                         ExpansionLoc);
530   return createExpansionLocImpl(Info, TokLength);
531 }
532 
533 SourceLocation
534 SourceManager::createExpansionLoc(SourceLocation SpellingLoc,
535                                   SourceLocation ExpansionLocStart,
536                                   SourceLocation ExpansionLocEnd,
537                                   unsigned TokLength,
538                                   int LoadedID,
539                                   unsigned LoadedOffset) {
540   ExpansionInfo Info = ExpansionInfo::create(SpellingLoc, ExpansionLocStart,
541                                              ExpansionLocEnd);
542   return createExpansionLocImpl(Info, TokLength, LoadedID, LoadedOffset);
543 }
544 
545 SourceLocation
546 SourceManager::createExpansionLocImpl(const ExpansionInfo &Info,
547                                       unsigned TokLength,
548                                       int LoadedID,
549                                       unsigned LoadedOffset) {
550   if (LoadedID < 0) {
551     assert(LoadedID != -1 && "Loading sentinel FileID");
552     unsigned Index = unsigned(-LoadedID) - 2;
553     assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
554     assert(!SLocEntryLoaded[Index] && "FileID already loaded");
555     LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset, Info);
556     SLocEntryLoaded[Index] = true;
557     return SourceLocation::getMacroLoc(LoadedOffset);
558   }
559   LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info));
560   assert(NextLocalOffset + TokLength + 1 > NextLocalOffset &&
561          NextLocalOffset + TokLength + 1 <= CurrentLoadedOffset &&
562          "Ran out of source locations!");
563   // See createFileID for that +1.
564   NextLocalOffset += TokLength + 1;
565   return SourceLocation::getMacroLoc(NextLocalOffset - (TokLength + 1));
566 }
567 
568 const llvm::MemoryBuffer *
569 SourceManager::getMemoryBufferForFile(const FileEntry *File,
570                                       bool *Invalid) {
571   const SrcMgr::ContentCache *IR = getOrCreateContentCache(File);
572   assert(IR && "getOrCreateContentCache() cannot return NULL");
573   return IR->getBuffer(Diag, *this, SourceLocation(), Invalid);
574 }
575 
576 void SourceManager::overrideFileContents(const FileEntry *SourceFile,
577                                          const llvm::MemoryBuffer *Buffer,
578                                          bool DoNotFree) {
579   const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
580   assert(IR && "getOrCreateContentCache() cannot return NULL");
581 
582   const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer, DoNotFree);
583 }
584 
585 void SourceManager::overrideFileContents(const FileEntry *SourceFile,
586                                          const FileEntry *NewFile) {
587   assert(SourceFile->getSize() == NewFile->getSize() &&
588          "Different sizes, use the FileManager to create a virtual file with "
589          "the correct size");
590   assert(FileInfos.count(SourceFile) == 0 &&
591          "This function should be called at the initialization stage, before "
592          "any parsing occurs.");
593   OverriddenFiles[SourceFile] = NewFile;
594 }
595 
596 StringRef SourceManager::getBufferData(FileID FID, bool *Invalid) const {
597   bool MyInvalid = false;
598   const SLocEntry &SLoc = getSLocEntry(FID, &MyInvalid);
599   if (!SLoc.isFile() || MyInvalid) {
600     if (Invalid)
601       *Invalid = true;
602     return "<<<<<INVALID SOURCE LOCATION>>>>>";
603   }
604 
605   const llvm::MemoryBuffer *Buf
606     = SLoc.getFile().getContentCache()->getBuffer(Diag, *this, SourceLocation(),
607                                                   &MyInvalid);
608   if (Invalid)
609     *Invalid = MyInvalid;
610 
611   if (MyInvalid)
612     return "<<<<<INVALID SOURCE LOCATION>>>>>";
613 
614   return Buf->getBuffer();
615 }
616 
617 //===----------------------------------------------------------------------===//
618 // SourceLocation manipulation methods.
619 //===----------------------------------------------------------------------===//
620 
621 /// \brief Return the FileID for a SourceLocation.
622 ///
623 /// This is the cache-miss path of getFileID. Not as hot as that function, but
624 /// still very important. It is responsible for finding the entry in the
625 /// SLocEntry tables that contains the specified location.
626 FileID SourceManager::getFileIDSlow(unsigned SLocOffset) const {
627   if (!SLocOffset)
628     return FileID::get(0);
629 
630   // Now it is time to search for the correct file. See where the SLocOffset
631   // sits in the global view and consult local or loaded buffers for it.
632   if (SLocOffset < NextLocalOffset)
633     return getFileIDLocal(SLocOffset);
634   return getFileIDLoaded(SLocOffset);
635 }
636 
637 /// \brief Return the FileID for a SourceLocation with a low offset.
638 ///
639 /// This function knows that the SourceLocation is in a local buffer, not a
640 /// loaded one.
641 FileID SourceManager::getFileIDLocal(unsigned SLocOffset) const {
642   assert(SLocOffset < NextLocalOffset && "Bad function choice");
643 
644   // After the first and second level caches, I see two common sorts of
645   // behavior: 1) a lot of searched FileID's are "near" the cached file
646   // location or are "near" the cached expansion location. 2) others are just
647   // completely random and may be a very long way away.
648   //
649   // To handle this, we do a linear search for up to 8 steps to catch #1 quickly
650   // then we fall back to a less cache efficient, but more scalable, binary
651   // search to find the location.
652 
653   // See if this is near the file point - worst case we start scanning from the
654   // most newly created FileID.
655   std::vector<SrcMgr::SLocEntry>::const_iterator I;
656 
657   if (LastFileIDLookup.ID < 0 ||
658       LocalSLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) {
659     // Neither loc prunes our search.
660     I = LocalSLocEntryTable.end();
661   } else {
662     // Perhaps it is near the file point.
663     I = LocalSLocEntryTable.begin()+LastFileIDLookup.ID;
664   }
665 
666   // Find the FileID that contains this.  "I" is an iterator that points to a
667   // FileID whose offset is known to be larger than SLocOffset.
668   unsigned NumProbes = 0;
669   while (1) {
670     --I;
671     if (I->getOffset() <= SLocOffset) {
672       FileID Res = FileID::get(int(I - LocalSLocEntryTable.begin()));
673 
674       // If this isn't an expansion, remember it.  We have good locality across
675       // FileID lookups.
676       if (!I->isExpansion())
677         LastFileIDLookup = Res;
678       NumLinearScans += NumProbes+1;
679       return Res;
680     }
681     if (++NumProbes == 8)
682       break;
683   }
684 
685   // Convert "I" back into an index.  We know that it is an entry whose index is
686   // larger than the offset we are looking for.
687   unsigned GreaterIndex = I - LocalSLocEntryTable.begin();
688   // LessIndex - This is the lower bound of the range that we're searching.
689   // We know that the offset corresponding to the FileID is is less than
690   // SLocOffset.
691   unsigned LessIndex = 0;
692   NumProbes = 0;
693   while (1) {
694     bool Invalid = false;
695     unsigned MiddleIndex = (GreaterIndex-LessIndex)/2+LessIndex;
696     unsigned MidOffset = getLocalSLocEntry(MiddleIndex, &Invalid).getOffset();
697     if (Invalid)
698       return FileID::get(0);
699 
700     ++NumProbes;
701 
702     // If the offset of the midpoint is too large, chop the high side of the
703     // range to the midpoint.
704     if (MidOffset > SLocOffset) {
705       GreaterIndex = MiddleIndex;
706       continue;
707     }
708 
709     // If the middle index contains the value, succeed and return.
710     // FIXME: This could be made faster by using a function that's aware of
711     // being in the local area.
712     if (isOffsetInFileID(FileID::get(MiddleIndex), SLocOffset)) {
713       FileID Res = FileID::get(MiddleIndex);
714 
715       // If this isn't a macro expansion, remember it.  We have good locality
716       // across FileID lookups.
717       if (!LocalSLocEntryTable[MiddleIndex].isExpansion())
718         LastFileIDLookup = Res;
719       NumBinaryProbes += NumProbes;
720       return Res;
721     }
722 
723     // Otherwise, move the low-side up to the middle index.
724     LessIndex = MiddleIndex;
725   }
726 }
727 
728 /// \brief Return the FileID for a SourceLocation with a high offset.
729 ///
730 /// This function knows that the SourceLocation is in a loaded buffer, not a
731 /// local one.
732 FileID SourceManager::getFileIDLoaded(unsigned SLocOffset) const {
733   assert(SLocOffset >= CurrentLoadedOffset && "Bad function choice");
734 
735   // Essentially the same as the local case, but the loaded array is sorted
736   // in the other direction.
737 
738   // First do a linear scan from the last lookup position, if possible.
739   unsigned I;
740   int LastID = LastFileIDLookup.ID;
741   if (LastID >= 0 || getLoadedSLocEntryByID(LastID).getOffset() < SLocOffset)
742     I = 0;
743   else
744     I = (-LastID - 2) + 1;
745 
746   unsigned NumProbes;
747   for (NumProbes = 0; NumProbes < 8; ++NumProbes, ++I) {
748     // Make sure the entry is loaded!
749     const SrcMgr::SLocEntry &E = getLoadedSLocEntry(I);
750     if (E.getOffset() <= SLocOffset) {
751       FileID Res = FileID::get(-int(I) - 2);
752 
753       if (!E.isExpansion())
754         LastFileIDLookup = Res;
755       NumLinearScans += NumProbes + 1;
756       return Res;
757     }
758   }
759 
760   // Linear scan failed. Do the binary search. Note the reverse sorting of the
761   // table: GreaterIndex is the one where the offset is greater, which is
762   // actually a lower index!
763   unsigned GreaterIndex = I;
764   unsigned LessIndex = LoadedSLocEntryTable.size();
765   NumProbes = 0;
766   while (1) {
767     ++NumProbes;
768     unsigned MiddleIndex = (LessIndex - GreaterIndex) / 2 + GreaterIndex;
769     const SrcMgr::SLocEntry &E = getLoadedSLocEntry(MiddleIndex);
770 
771     ++NumProbes;
772 
773     if (E.getOffset() > SLocOffset) {
774       GreaterIndex = MiddleIndex;
775       continue;
776     }
777 
778     if (isOffsetInFileID(FileID::get(-int(MiddleIndex) - 2), SLocOffset)) {
779       FileID Res = FileID::get(-int(MiddleIndex) - 2);
780       if (!E.isExpansion())
781         LastFileIDLookup = Res;
782       NumBinaryProbes += NumProbes;
783       return Res;
784     }
785 
786     LessIndex = MiddleIndex;
787   }
788 }
789 
790 SourceLocation SourceManager::
791 getExpansionLocSlowCase(SourceLocation Loc) const {
792   do {
793     // Note: If Loc indicates an offset into a token that came from a macro
794     // expansion (e.g. the 5th character of the token) we do not want to add
795     // this offset when going to the expansion location.  The expansion
796     // location is the macro invocation, which the offset has nothing to do
797     // with.  This is unlike when we get the spelling loc, because the offset
798     // directly correspond to the token whose spelling we're inspecting.
799     Loc = getSLocEntry(getFileID(Loc)).getExpansion().getExpansionLocStart();
800   } while (!Loc.isFileID());
801 
802   return Loc;
803 }
804 
805 SourceLocation SourceManager::getSpellingLocSlowCase(SourceLocation Loc) const {
806   do {
807     std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
808     Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
809     Loc = Loc.getLocWithOffset(LocInfo.second);
810   } while (!Loc.isFileID());
811   return Loc;
812 }
813 
814 
815 std::pair<FileID, unsigned>
816 SourceManager::getDecomposedExpansionLocSlowCase(
817                                              const SrcMgr::SLocEntry *E) const {
818   // If this is an expansion record, walk through all the expansion points.
819   FileID FID;
820   SourceLocation Loc;
821   unsigned Offset;
822   do {
823     Loc = E->getExpansion().getExpansionLocStart();
824 
825     FID = getFileID(Loc);
826     E = &getSLocEntry(FID);
827     Offset = Loc.getOffset()-E->getOffset();
828   } while (!Loc.isFileID());
829 
830   return std::make_pair(FID, Offset);
831 }
832 
833 std::pair<FileID, unsigned>
834 SourceManager::getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
835                                                 unsigned Offset) const {
836   // If this is an expansion record, walk through all the expansion points.
837   FileID FID;
838   SourceLocation Loc;
839   do {
840     Loc = E->getExpansion().getSpellingLoc();
841     Loc = Loc.getLocWithOffset(Offset);
842 
843     FID = getFileID(Loc);
844     E = &getSLocEntry(FID);
845     Offset = Loc.getOffset()-E->getOffset();
846   } while (!Loc.isFileID());
847 
848   return std::make_pair(FID, Offset);
849 }
850 
851 /// getImmediateSpellingLoc - Given a SourceLocation object, return the
852 /// spelling location referenced by the ID.  This is the first level down
853 /// towards the place where the characters that make up the lexed token can be
854 /// found.  This should not generally be used by clients.
855 SourceLocation SourceManager::getImmediateSpellingLoc(SourceLocation Loc) const{
856   if (Loc.isFileID()) return Loc;
857   std::pair<FileID, unsigned> LocInfo = getDecomposedLoc(Loc);
858   Loc = getSLocEntry(LocInfo.first).getExpansion().getSpellingLoc();
859   return Loc.getLocWithOffset(LocInfo.second);
860 }
861 
862 
863 /// getImmediateExpansionRange - Loc is required to be an expansion location.
864 /// Return the start/end of the expansion information.
865 std::pair<SourceLocation,SourceLocation>
866 SourceManager::getImmediateExpansionRange(SourceLocation Loc) const {
867   assert(Loc.isMacroID() && "Not a macro expansion loc!");
868   const ExpansionInfo &Expansion = getSLocEntry(getFileID(Loc)).getExpansion();
869   return Expansion.getExpansionLocRange();
870 }
871 
872 /// getExpansionRange - Given a SourceLocation object, return the range of
873 /// tokens covered by the expansion in the ultimate file.
874 std::pair<SourceLocation,SourceLocation>
875 SourceManager::getExpansionRange(SourceLocation Loc) const {
876   if (Loc.isFileID()) return std::make_pair(Loc, Loc);
877 
878   std::pair<SourceLocation,SourceLocation> Res =
879     getImmediateExpansionRange(Loc);
880 
881   // Fully resolve the start and end locations to their ultimate expansion
882   // points.
883   while (!Res.first.isFileID())
884     Res.first = getImmediateExpansionRange(Res.first).first;
885   while (!Res.second.isFileID())
886     Res.second = getImmediateExpansionRange(Res.second).second;
887   return Res;
888 }
889 
890 bool SourceManager::isMacroArgExpansion(SourceLocation Loc) const {
891   if (!Loc.isMacroID()) return false;
892 
893   FileID FID = getFileID(Loc);
894   const SrcMgr::SLocEntry *E = &getSLocEntry(FID);
895   const SrcMgr::ExpansionInfo &Expansion = E->getExpansion();
896   return Expansion.isMacroArgExpansion();
897 }
898 
899 
900 //===----------------------------------------------------------------------===//
901 // Queries about the code at a SourceLocation.
902 //===----------------------------------------------------------------------===//
903 
904 /// getCharacterData - Return a pointer to the start of the specified location
905 /// in the appropriate MemoryBuffer.
906 const char *SourceManager::getCharacterData(SourceLocation SL,
907                                             bool *Invalid) const {
908   // Note that this is a hot function in the getSpelling() path, which is
909   // heavily used by -E mode.
910   std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(SL);
911 
912   // Note that calling 'getBuffer()' may lazily page in a source file.
913   bool CharDataInvalid = false;
914   const SLocEntry &Entry = getSLocEntry(LocInfo.first, &CharDataInvalid);
915   if (CharDataInvalid || !Entry.isFile()) {
916     if (Invalid)
917       *Invalid = true;
918 
919     return "<<<<INVALID BUFFER>>>>";
920   }
921   const llvm::MemoryBuffer *Buffer
922     = Entry.getFile().getContentCache()
923                   ->getBuffer(Diag, *this, SourceLocation(), &CharDataInvalid);
924   if (Invalid)
925     *Invalid = CharDataInvalid;
926   return Buffer->getBufferStart() + (CharDataInvalid? 0 : LocInfo.second);
927 }
928 
929 
930 /// getColumnNumber - Return the column # for the specified file position.
931 /// this is significantly cheaper to compute than the line number.
932 unsigned SourceManager::getColumnNumber(FileID FID, unsigned FilePos,
933                                         bool *Invalid) const {
934   bool MyInvalid = false;
935   const char *Buf = getBuffer(FID, &MyInvalid)->getBufferStart();
936   if (Invalid)
937     *Invalid = MyInvalid;
938 
939   if (MyInvalid)
940     return 1;
941 
942   unsigned LineStart = FilePos;
943   while (LineStart && Buf[LineStart-1] != '\n' && Buf[LineStart-1] != '\r')
944     --LineStart;
945   return FilePos-LineStart+1;
946 }
947 
948 // isInvalid - Return the result of calling loc.isInvalid(), and
949 // if Invalid is not null, set its value to same.
950 static bool isInvalid(SourceLocation Loc, bool *Invalid) {
951   bool MyInvalid = Loc.isInvalid();
952   if (Invalid)
953     *Invalid = MyInvalid;
954   return MyInvalid;
955 }
956 
957 unsigned SourceManager::getSpellingColumnNumber(SourceLocation Loc,
958                                                 bool *Invalid) const {
959   if (isInvalid(Loc, Invalid)) return 0;
960   std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
961   return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
962 }
963 
964 unsigned SourceManager::getExpansionColumnNumber(SourceLocation Loc,
965                                                  bool *Invalid) const {
966   if (isInvalid(Loc, Invalid)) return 0;
967   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
968   return getColumnNumber(LocInfo.first, LocInfo.second, Invalid);
969 }
970 
971 unsigned SourceManager::getPresumedColumnNumber(SourceLocation Loc,
972                                                 bool *Invalid) const {
973   if (isInvalid(Loc, Invalid)) return 0;
974   return getPresumedLoc(Loc).getColumn();
975 }
976 
977 static LLVM_ATTRIBUTE_NOINLINE void
978 ComputeLineNumbers(DiagnosticsEngine &Diag, ContentCache *FI,
979                    llvm::BumpPtrAllocator &Alloc,
980                    const SourceManager &SM, bool &Invalid);
981 static void ComputeLineNumbers(DiagnosticsEngine &Diag, ContentCache *FI,
982                                llvm::BumpPtrAllocator &Alloc,
983                                const SourceManager &SM, bool &Invalid) {
984   // Note that calling 'getBuffer()' may lazily page in the file.
985   const MemoryBuffer *Buffer = FI->getBuffer(Diag, SM, SourceLocation(),
986                                              &Invalid);
987   if (Invalid)
988     return;
989 
990   // Find the file offsets of all of the *physical* source lines.  This does
991   // not look at trigraphs, escaped newlines, or anything else tricky.
992   SmallVector<unsigned, 256> LineOffsets;
993 
994   // Line #1 starts at char 0.
995   LineOffsets.push_back(0);
996 
997   const unsigned char *Buf = (const unsigned char *)Buffer->getBufferStart();
998   const unsigned char *End = (const unsigned char *)Buffer->getBufferEnd();
999   unsigned Offs = 0;
1000   while (1) {
1001     // Skip over the contents of the line.
1002     // TODO: Vectorize this?  This is very performance sensitive for programs
1003     // with lots of diagnostics and in -E mode.
1004     const unsigned char *NextBuf = (const unsigned char *)Buf;
1005     while (*NextBuf != '\n' && *NextBuf != '\r' && *NextBuf != '\0')
1006       ++NextBuf;
1007     Offs += NextBuf-Buf;
1008     Buf = NextBuf;
1009 
1010     if (Buf[0] == '\n' || Buf[0] == '\r') {
1011       // If this is \n\r or \r\n, skip both characters.
1012       if ((Buf[1] == '\n' || Buf[1] == '\r') && Buf[0] != Buf[1])
1013         ++Offs, ++Buf;
1014       ++Offs, ++Buf;
1015       LineOffsets.push_back(Offs);
1016     } else {
1017       // Otherwise, this is a null.  If end of file, exit.
1018       if (Buf == End) break;
1019       // Otherwise, skip the null.
1020       ++Offs, ++Buf;
1021     }
1022   }
1023 
1024   // Copy the offsets into the FileInfo structure.
1025   FI->NumLines = LineOffsets.size();
1026   FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
1027   std::copy(LineOffsets.begin(), LineOffsets.end(), FI->SourceLineCache);
1028 }
1029 
1030 /// getLineNumber - Given a SourceLocation, return the spelling line number
1031 /// for the position indicated.  This requires building and caching a table of
1032 /// line offsets for the MemoryBuffer, so this is not cheap: use only when
1033 /// about to emit a diagnostic.
1034 unsigned SourceManager::getLineNumber(FileID FID, unsigned FilePos,
1035                                       bool *Invalid) const {
1036   if (FID.isInvalid()) {
1037     if (Invalid)
1038       *Invalid = true;
1039     return 1;
1040   }
1041 
1042   ContentCache *Content;
1043   if (LastLineNoFileIDQuery == FID)
1044     Content = LastLineNoContentCache;
1045   else {
1046     bool MyInvalid = false;
1047     const SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
1048     if (MyInvalid || !Entry.isFile()) {
1049       if (Invalid)
1050         *Invalid = true;
1051       return 1;
1052     }
1053 
1054     Content = const_cast<ContentCache*>(Entry.getFile().getContentCache());
1055   }
1056 
1057   // If this is the first use of line information for this buffer, compute the
1058   /// SourceLineCache for it on demand.
1059   if (Content->SourceLineCache == 0) {
1060     bool MyInvalid = false;
1061     ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
1062     if (Invalid)
1063       *Invalid = MyInvalid;
1064     if (MyInvalid)
1065       return 1;
1066   } else if (Invalid)
1067     *Invalid = false;
1068 
1069   // Okay, we know we have a line number table.  Do a binary search to find the
1070   // line number that this character position lands on.
1071   unsigned *SourceLineCache = Content->SourceLineCache;
1072   unsigned *SourceLineCacheStart = SourceLineCache;
1073   unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
1074 
1075   unsigned QueriedFilePos = FilePos+1;
1076 
1077   // FIXME: I would like to be convinced that this code is worth being as
1078   // complicated as it is, binary search isn't that slow.
1079   //
1080   // If it is worth being optimized, then in my opinion it could be more
1081   // performant, simpler, and more obviously correct by just "galloping" outward
1082   // from the queried file position. In fact, this could be incorporated into a
1083   // generic algorithm such as lower_bound_with_hint.
1084   //
1085   // If someone gives me a test case where this matters, and I will do it! - DWD
1086 
1087   // If the previous query was to the same file, we know both the file pos from
1088   // that query and the line number returned.  This allows us to narrow the
1089   // search space from the entire file to something near the match.
1090   if (LastLineNoFileIDQuery == FID) {
1091     if (QueriedFilePos >= LastLineNoFilePos) {
1092       // FIXME: Potential overflow?
1093       SourceLineCache = SourceLineCache+LastLineNoResult-1;
1094 
1095       // The query is likely to be nearby the previous one.  Here we check to
1096       // see if it is within 5, 10 or 20 lines.  It can be far away in cases
1097       // where big comment blocks and vertical whitespace eat up lines but
1098       // contribute no tokens.
1099       if (SourceLineCache+5 < SourceLineCacheEnd) {
1100         if (SourceLineCache[5] > QueriedFilePos)
1101           SourceLineCacheEnd = SourceLineCache+5;
1102         else if (SourceLineCache+10 < SourceLineCacheEnd) {
1103           if (SourceLineCache[10] > QueriedFilePos)
1104             SourceLineCacheEnd = SourceLineCache+10;
1105           else if (SourceLineCache+20 < SourceLineCacheEnd) {
1106             if (SourceLineCache[20] > QueriedFilePos)
1107               SourceLineCacheEnd = SourceLineCache+20;
1108           }
1109         }
1110       }
1111     } else {
1112       if (LastLineNoResult < Content->NumLines)
1113         SourceLineCacheEnd = SourceLineCache+LastLineNoResult+1;
1114     }
1115   }
1116 
1117   // If the spread is large, do a "radix" test as our initial guess, based on
1118   // the assumption that lines average to approximately the same length.
1119   // NOTE: This is currently disabled, as it does not appear to be profitable in
1120   // initial measurements.
1121   if (0 && SourceLineCacheEnd-SourceLineCache > 20) {
1122     unsigned FileLen = Content->SourceLineCache[Content->NumLines-1];
1123 
1124     // Take a stab at guessing where it is.
1125     unsigned ApproxPos = Content->NumLines*QueriedFilePos / FileLen;
1126 
1127     // Check for -10 and +10 lines.
1128     unsigned LowerBound = std::max(int(ApproxPos-10), 0);
1129     unsigned UpperBound = std::min(ApproxPos+10, FileLen);
1130 
1131     // If the computed lower bound is less than the query location, move it in.
1132     if (SourceLineCache < SourceLineCacheStart+LowerBound &&
1133         SourceLineCacheStart[LowerBound] < QueriedFilePos)
1134       SourceLineCache = SourceLineCacheStart+LowerBound;
1135 
1136     // If the computed upper bound is greater than the query location, move it.
1137     if (SourceLineCacheEnd > SourceLineCacheStart+UpperBound &&
1138         SourceLineCacheStart[UpperBound] >= QueriedFilePos)
1139       SourceLineCacheEnd = SourceLineCacheStart+UpperBound;
1140   }
1141 
1142   unsigned *Pos
1143     = std::lower_bound(SourceLineCache, SourceLineCacheEnd, QueriedFilePos);
1144   unsigned LineNo = Pos-SourceLineCacheStart;
1145 
1146   LastLineNoFileIDQuery = FID;
1147   LastLineNoContentCache = Content;
1148   LastLineNoFilePos = QueriedFilePos;
1149   LastLineNoResult = LineNo;
1150   return LineNo;
1151 }
1152 
1153 unsigned SourceManager::getSpellingLineNumber(SourceLocation Loc,
1154                                               bool *Invalid) const {
1155   if (isInvalid(Loc, Invalid)) return 0;
1156   std::pair<FileID, unsigned> LocInfo = getDecomposedSpellingLoc(Loc);
1157   return getLineNumber(LocInfo.first, LocInfo.second);
1158 }
1159 unsigned SourceManager::getExpansionLineNumber(SourceLocation Loc,
1160                                                bool *Invalid) const {
1161   if (isInvalid(Loc, Invalid)) return 0;
1162   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1163   return getLineNumber(LocInfo.first, LocInfo.second);
1164 }
1165 unsigned SourceManager::getPresumedLineNumber(SourceLocation Loc,
1166                                               bool *Invalid) const {
1167   if (isInvalid(Loc, Invalid)) return 0;
1168   return getPresumedLoc(Loc).getLine();
1169 }
1170 
1171 /// getFileCharacteristic - return the file characteristic of the specified
1172 /// source location, indicating whether this is a normal file, a system
1173 /// header, or an "implicit extern C" system header.
1174 ///
1175 /// This state can be modified with flags on GNU linemarker directives like:
1176 ///   # 4 "foo.h" 3
1177 /// which changes all source locations in the current file after that to be
1178 /// considered to be from a system header.
1179 SrcMgr::CharacteristicKind
1180 SourceManager::getFileCharacteristic(SourceLocation Loc) const {
1181   assert(!Loc.isInvalid() && "Can't get file characteristic of invalid loc!");
1182   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1183   bool Invalid = false;
1184   const SLocEntry &SEntry = getSLocEntry(LocInfo.first, &Invalid);
1185   if (Invalid || !SEntry.isFile())
1186     return C_User;
1187 
1188   const SrcMgr::FileInfo &FI = SEntry.getFile();
1189 
1190   // If there are no #line directives in this file, just return the whole-file
1191   // state.
1192   if (!FI.hasLineDirectives())
1193     return FI.getFileCharacteristic();
1194 
1195   assert(LineTable && "Can't have linetable entries without a LineTable!");
1196   // See if there is a #line directive before the location.
1197   const LineEntry *Entry =
1198     LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second);
1199 
1200   // If this is before the first line marker, use the file characteristic.
1201   if (!Entry)
1202     return FI.getFileCharacteristic();
1203 
1204   return Entry->FileKind;
1205 }
1206 
1207 /// Return the filename or buffer identifier of the buffer the location is in.
1208 /// Note that this name does not respect #line directives.  Use getPresumedLoc
1209 /// for normal clients.
1210 const char *SourceManager::getBufferName(SourceLocation Loc,
1211                                          bool *Invalid) const {
1212   if (isInvalid(Loc, Invalid)) return "<invalid loc>";
1213 
1214   return getBuffer(getFileID(Loc), Invalid)->getBufferIdentifier();
1215 }
1216 
1217 
1218 /// getPresumedLoc - This method returns the "presumed" location of a
1219 /// SourceLocation specifies.  A "presumed location" can be modified by #line
1220 /// or GNU line marker directives.  This provides a view on the data that a
1221 /// user should see in diagnostics, for example.
1222 ///
1223 /// Note that a presumed location is always given as the expansion point of an
1224 /// expansion location, not at the spelling location.
1225 PresumedLoc SourceManager::getPresumedLoc(SourceLocation Loc) const {
1226   if (Loc.isInvalid()) return PresumedLoc();
1227 
1228   // Presumed locations are always for expansion points.
1229   std::pair<FileID, unsigned> LocInfo = getDecomposedExpansionLoc(Loc);
1230 
1231   bool Invalid = false;
1232   const SLocEntry &Entry = getSLocEntry(LocInfo.first, &Invalid);
1233   if (Invalid || !Entry.isFile())
1234     return PresumedLoc();
1235 
1236   const SrcMgr::FileInfo &FI = Entry.getFile();
1237   const SrcMgr::ContentCache *C = FI.getContentCache();
1238 
1239   // To get the source name, first consult the FileEntry (if one exists)
1240   // before the MemBuffer as this will avoid unnecessarily paging in the
1241   // MemBuffer.
1242   const char *Filename;
1243   if (C->OrigEntry)
1244     Filename = C->OrigEntry->getName();
1245   else
1246     Filename = C->getBuffer(Diag, *this)->getBufferIdentifier();
1247 
1248   unsigned LineNo = getLineNumber(LocInfo.first, LocInfo.second, &Invalid);
1249   if (Invalid)
1250     return PresumedLoc();
1251   unsigned ColNo  = getColumnNumber(LocInfo.first, LocInfo.second, &Invalid);
1252   if (Invalid)
1253     return PresumedLoc();
1254 
1255   SourceLocation IncludeLoc = FI.getIncludeLoc();
1256 
1257   // If we have #line directives in this file, update and overwrite the physical
1258   // location info if appropriate.
1259   if (FI.hasLineDirectives()) {
1260     assert(LineTable && "Can't have linetable entries without a LineTable!");
1261     // See if there is a #line directive before this.  If so, get it.
1262     if (const LineEntry *Entry =
1263           LineTable->FindNearestLineEntry(LocInfo.first.ID, LocInfo.second)) {
1264       // If the LineEntry indicates a filename, use it.
1265       if (Entry->FilenameID != -1)
1266         Filename = LineTable->getFilename(Entry->FilenameID);
1267 
1268       // Use the line number specified by the LineEntry.  This line number may
1269       // be multiple lines down from the line entry.  Add the difference in
1270       // physical line numbers from the query point and the line marker to the
1271       // total.
1272       unsigned MarkerLineNo = getLineNumber(LocInfo.first, Entry->FileOffset);
1273       LineNo = Entry->LineNo + (LineNo-MarkerLineNo-1);
1274 
1275       // Note that column numbers are not molested by line markers.
1276 
1277       // Handle virtual #include manipulation.
1278       if (Entry->IncludeOffset) {
1279         IncludeLoc = getLocForStartOfFile(LocInfo.first);
1280         IncludeLoc = IncludeLoc.getLocWithOffset(Entry->IncludeOffset);
1281       }
1282     }
1283   }
1284 
1285   return PresumedLoc(Filename, LineNo, ColNo, IncludeLoc);
1286 }
1287 
1288 /// \brief The size of the SLocEnty that \arg FID represents.
1289 unsigned SourceManager::getFileIDSize(FileID FID) const {
1290   bool Invalid = false;
1291   const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
1292   if (Invalid)
1293     return 0;
1294 
1295   int ID = FID.ID;
1296   unsigned NextOffset;
1297   if ((ID > 0 && unsigned(ID+1) == local_sloc_entry_size()))
1298     NextOffset = getNextLocalOffset();
1299   else if (ID+1 == -1)
1300     NextOffset = MaxLoadedOffset;
1301   else
1302     NextOffset = getSLocEntry(FileID::get(ID+1)).getOffset();
1303 
1304   return NextOffset - Entry.getOffset() - 1;
1305 }
1306 
1307 //===----------------------------------------------------------------------===//
1308 // Other miscellaneous methods.
1309 //===----------------------------------------------------------------------===//
1310 
1311 /// \brief Retrieve the inode for the given file entry, if possible.
1312 ///
1313 /// This routine involves a system call, and therefore should only be used
1314 /// in non-performance-critical code.
1315 static llvm::Optional<ino_t> getActualFileInode(const FileEntry *File) {
1316   if (!File)
1317     return llvm::Optional<ino_t>();
1318 
1319   struct stat StatBuf;
1320   if (::stat(File->getName(), &StatBuf))
1321     return llvm::Optional<ino_t>();
1322 
1323   return StatBuf.st_ino;
1324 }
1325 
1326 /// \brief Get the source location for the given file:line:col triplet.
1327 ///
1328 /// If the source file is included multiple times, the source location will
1329 /// be based upon an arbitrary inclusion.
1330 SourceLocation SourceManager::translateFileLineCol(const FileEntry *SourceFile,
1331                                                   unsigned Line,
1332                                                   unsigned Col) const {
1333   assert(SourceFile && "Null source file!");
1334   assert(Line && Col && "Line and column should start from 1!");
1335 
1336   // Find the first file ID that corresponds to the given file.
1337   FileID FirstFID;
1338 
1339   // First, check the main file ID, since it is common to look for a
1340   // location in the main file.
1341   llvm::Optional<ino_t> SourceFileInode;
1342   llvm::Optional<StringRef> SourceFileName;
1343   if (!MainFileID.isInvalid()) {
1344     bool Invalid = false;
1345     const SLocEntry &MainSLoc = getSLocEntry(MainFileID, &Invalid);
1346     if (Invalid)
1347       return SourceLocation();
1348 
1349     if (MainSLoc.isFile()) {
1350       const ContentCache *MainContentCache
1351         = MainSLoc.getFile().getContentCache();
1352       if (!MainContentCache) {
1353         // Can't do anything
1354       } else if (MainContentCache->OrigEntry == SourceFile) {
1355         FirstFID = MainFileID;
1356       } else {
1357         // Fall back: check whether we have the same base name and inode
1358         // as the main file.
1359         const FileEntry *MainFile = MainContentCache->OrigEntry;
1360         SourceFileName = llvm::sys::path::filename(SourceFile->getName());
1361         if (*SourceFileName == llvm::sys::path::filename(MainFile->getName())) {
1362           SourceFileInode = getActualFileInode(SourceFile);
1363           if (SourceFileInode) {
1364             if (llvm::Optional<ino_t> MainFileInode
1365                                                = getActualFileInode(MainFile)) {
1366               if (*SourceFileInode == *MainFileInode) {
1367                 FirstFID = MainFileID;
1368                 SourceFile = MainFile;
1369               }
1370             }
1371           }
1372         }
1373       }
1374     }
1375   }
1376 
1377   if (FirstFID.isInvalid()) {
1378     // The location we're looking for isn't in the main file; look
1379     // through all of the local source locations.
1380     for (unsigned I = 0, N = local_sloc_entry_size(); I != N; ++I) {
1381       bool Invalid = false;
1382       const SLocEntry &SLoc = getLocalSLocEntry(I, &Invalid);
1383       if (Invalid)
1384         return SourceLocation();
1385 
1386       if (SLoc.isFile() &&
1387           SLoc.getFile().getContentCache() &&
1388           SLoc.getFile().getContentCache()->OrigEntry == SourceFile) {
1389         FirstFID = FileID::get(I);
1390         break;
1391       }
1392     }
1393     // If that still didn't help, try the modules.
1394     if (FirstFID.isInvalid()) {
1395       for (unsigned I = 0, N = loaded_sloc_entry_size(); I != N; ++I) {
1396         const SLocEntry &SLoc = getLoadedSLocEntry(I);
1397         if (SLoc.isFile() &&
1398             SLoc.getFile().getContentCache() &&
1399             SLoc.getFile().getContentCache()->OrigEntry == SourceFile) {
1400           FirstFID = FileID::get(-int(I) - 2);
1401           break;
1402         }
1403       }
1404     }
1405   }
1406 
1407   // If we haven't found what we want yet, try again, but this time stat()
1408   // each of the files in case the files have changed since we originally
1409   // parsed the file.
1410   if (FirstFID.isInvalid() &&
1411       (SourceFileName ||
1412        (SourceFileName = llvm::sys::path::filename(SourceFile->getName()))) &&
1413       (SourceFileInode ||
1414        (SourceFileInode = getActualFileInode(SourceFile)))) {
1415     bool Invalid = false;
1416     for (unsigned I = 0, N = local_sloc_entry_size(); I != N; ++I) {
1417       FileID IFileID;
1418       IFileID.ID = I;
1419       const SLocEntry &SLoc = getSLocEntry(IFileID, &Invalid);
1420       if (Invalid)
1421         return SourceLocation();
1422 
1423       if (SLoc.isFile()) {
1424         const ContentCache *FileContentCache
1425           = SLoc.getFile().getContentCache();
1426       const FileEntry *Entry =FileContentCache? FileContentCache->OrigEntry : 0;
1427         if (Entry &&
1428             *SourceFileName == llvm::sys::path::filename(Entry->getName())) {
1429           if (llvm::Optional<ino_t> EntryInode = getActualFileInode(Entry)) {
1430             if (*SourceFileInode == *EntryInode) {
1431               FirstFID = FileID::get(I);
1432               SourceFile = Entry;
1433               break;
1434             }
1435           }
1436         }
1437       }
1438     }
1439   }
1440 
1441   return translateLineCol(FirstFID, Line, Col);
1442 }
1443 
1444 /// \brief Get the source location in \arg FID for the given line:col.
1445 /// Returns null location if \arg FID is not a file SLocEntry.
1446 SourceLocation SourceManager::translateLineCol(FileID FID,
1447                                                unsigned Line,
1448                                                unsigned Col) const {
1449   if (FID.isInvalid())
1450     return SourceLocation();
1451 
1452   bool Invalid = false;
1453   const SLocEntry &Entry = getSLocEntry(FID, &Invalid);
1454   if (Invalid)
1455     return SourceLocation();
1456 
1457   if (!Entry.isFile())
1458     return SourceLocation();
1459 
1460   SourceLocation FileLoc = SourceLocation::getFileLoc(Entry.getOffset());
1461 
1462   if (Line == 1 && Col == 1)
1463     return FileLoc;
1464 
1465   ContentCache *Content
1466     = const_cast<ContentCache *>(Entry.getFile().getContentCache());
1467   if (!Content)
1468     return SourceLocation();
1469 
1470   // If this is the first use of line information for this buffer, compute the
1471   // SourceLineCache for it on demand.
1472   if (Content->SourceLineCache == 0) {
1473     bool MyInvalid = false;
1474     ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
1475     if (MyInvalid)
1476       return SourceLocation();
1477   }
1478 
1479   if (Line > Content->NumLines) {
1480     unsigned Size = Content->getBuffer(Diag, *this)->getBufferSize();
1481     if (Size > 0)
1482       --Size;
1483     return FileLoc.getLocWithOffset(Size);
1484   }
1485 
1486   unsigned FilePos = Content->SourceLineCache[Line - 1];
1487   const char *Buf = Content->getBuffer(Diag, *this)->getBufferStart() + FilePos;
1488   unsigned BufLength = Content->getBuffer(Diag, *this)->getBufferEnd() - Buf;
1489   if (BufLength == 0)
1490     return FileLoc.getLocWithOffset(FilePos);
1491 
1492   unsigned i = 0;
1493 
1494   // Check that the given column is valid.
1495   while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
1496     ++i;
1497   if (i < Col-1)
1498     return FileLoc.getLocWithOffset(FilePos + i);
1499 
1500   return FileLoc.getLocWithOffset(FilePos + Col - 1);
1501 }
1502 
1503 /// \brief Compute a map of macro argument chunks to their expanded source
1504 /// location. Chunks that are not part of a macro argument will map to an
1505 /// invalid source location. e.g. if a file contains one macro argument at
1506 /// offset 100 with length 10, this is how the map will be formed:
1507 ///     0   -> SourceLocation()
1508 ///     100 -> Expanded macro arg location
1509 ///     110 -> SourceLocation()
1510 void SourceManager::computeMacroArgsCache(MacroArgsMap *&CachePtr,
1511                                           FileID FID) const {
1512   assert(!FID.isInvalid());
1513   assert(!CachePtr);
1514 
1515   CachePtr = new MacroArgsMap();
1516   MacroArgsMap &MacroArgsCache = *CachePtr;
1517   // Initially no macro argument chunk is present.
1518   MacroArgsCache.insert(std::make_pair(0, SourceLocation()));
1519 
1520   int ID = FID.ID;
1521   while (1) {
1522     ++ID;
1523     // Stop if there are no more FileIDs to check.
1524     if (ID > 0) {
1525       if (unsigned(ID) >= local_sloc_entry_size())
1526         return;
1527     } else if (ID == -1) {
1528       return;
1529     }
1530 
1531     const SrcMgr::SLocEntry &Entry = getSLocEntryByID(ID);
1532     if (Entry.isFile()) {
1533       SourceLocation IncludeLoc = Entry.getFile().getIncludeLoc();
1534       if (IncludeLoc.isInvalid())
1535         continue;
1536       if (!isInFileID(IncludeLoc, FID))
1537         return; // No more files/macros that may be "contained" in this file.
1538 
1539       // Skip the files/macros of the #include'd file, we only care about macros
1540       // that lexed macro arguments from our file.
1541       if (Entry.getFile().NumCreatedFIDs)
1542         ID += Entry.getFile().NumCreatedFIDs - 1/*because of next ++ID*/;
1543       continue;
1544     }
1545 
1546     if (!Entry.getExpansion().isMacroArgExpansion())
1547       continue;
1548 
1549     SourceLocation SpellLoc =
1550         getSpellingLoc(Entry.getExpansion().getSpellingLoc());
1551     unsigned BeginOffs;
1552     if (!isInFileID(SpellLoc, FID, &BeginOffs))
1553       return; // No more files/macros that may be "contained" in this file.
1554     unsigned EndOffs = BeginOffs + getFileIDSize(FileID::get(ID));
1555 
1556     // Add a new chunk for this macro argument. A previous macro argument chunk
1557     // may have been lexed again, so e.g. if the map is
1558     //     0   -> SourceLocation()
1559     //     100 -> Expanded loc #1
1560     //     110 -> SourceLocation()
1561     // and we found a new macro FileID that lexed from offet 105 with length 3,
1562     // the new map will be:
1563     //     0   -> SourceLocation()
1564     //     100 -> Expanded loc #1
1565     //     105 -> Expanded loc #2
1566     //     108 -> Expanded loc #1
1567     //     110 -> SourceLocation()
1568     //
1569     // Since re-lexed macro chunks will always be the same size or less of
1570     // previous chunks, we only need to find where the ending of the new macro
1571     // chunk is mapped to and update the map with new begin/end mappings.
1572 
1573     MacroArgsMap::iterator I = MacroArgsCache.upper_bound(EndOffs);
1574     --I;
1575     SourceLocation EndOffsMappedLoc = I->second;
1576     MacroArgsCache[BeginOffs] = SourceLocation::getMacroLoc(Entry.getOffset());
1577     MacroArgsCache[EndOffs] = EndOffsMappedLoc;
1578   }
1579 }
1580 
1581 /// \brief If \arg Loc points inside a function macro argument, the returned
1582 /// location will be the macro location in which the argument was expanded.
1583 /// If a macro argument is used multiple times, the expanded location will
1584 /// be at the first expansion of the argument.
1585 /// e.g.
1586 ///   MY_MACRO(foo);
1587 ///             ^
1588 /// Passing a file location pointing at 'foo', will yield a macro location
1589 /// where 'foo' was expanded into.
1590 SourceLocation
1591 SourceManager::getMacroArgExpandedLocation(SourceLocation Loc) const {
1592   if (Loc.isInvalid() || !Loc.isFileID())
1593     return Loc;
1594 
1595   FileID FID;
1596   unsigned Offset;
1597   llvm::tie(FID, Offset) = getDecomposedLoc(Loc);
1598   if (FID.isInvalid())
1599     return Loc;
1600 
1601   MacroArgsMap *&MacroArgsCache = MacroArgsCacheMap[FID];
1602   if (!MacroArgsCache)
1603     computeMacroArgsCache(MacroArgsCache, FID);
1604 
1605   assert(!MacroArgsCache->empty());
1606   MacroArgsMap::iterator I = MacroArgsCache->upper_bound(Offset);
1607   --I;
1608 
1609   unsigned MacroArgBeginOffs = I->first;
1610   SourceLocation MacroArgExpandedLoc = I->second;
1611   if (MacroArgExpandedLoc.isValid())
1612     return MacroArgExpandedLoc.getLocWithOffset(Offset - MacroArgBeginOffs);
1613 
1614   return Loc;
1615 }
1616 
1617 /// Given a decomposed source location, move it up the include/expansion stack
1618 /// to the parent source location.  If this is possible, return the decomposed
1619 /// version of the parent in Loc and return false.  If Loc is the top-level
1620 /// entry, return true and don't modify it.
1621 static bool MoveUpIncludeHierarchy(std::pair<FileID, unsigned> &Loc,
1622                                    const SourceManager &SM) {
1623   SourceLocation UpperLoc;
1624   const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(Loc.first);
1625   if (Entry.isExpansion())
1626     UpperLoc = Entry.getExpansion().getExpansionLocEnd();
1627   else
1628     UpperLoc = Entry.getFile().getIncludeLoc();
1629 
1630   if (UpperLoc.isInvalid())
1631     return true; // We reached the top.
1632 
1633   Loc = SM.getDecomposedLoc(UpperLoc);
1634   return false;
1635 }
1636 
1637 
1638 /// \brief Determines the order of 2 source locations in the translation unit.
1639 ///
1640 /// \returns true if LHS source location comes before RHS, false otherwise.
1641 bool SourceManager::isBeforeInTranslationUnit(SourceLocation LHS,
1642                                               SourceLocation RHS) const {
1643   assert(LHS.isValid() && RHS.isValid() && "Passed invalid source location!");
1644   if (LHS == RHS)
1645     return false;
1646 
1647   std::pair<FileID, unsigned> LOffs = getDecomposedLoc(LHS);
1648   std::pair<FileID, unsigned> ROffs = getDecomposedLoc(RHS);
1649 
1650   // If the source locations are in the same file, just compare offsets.
1651   if (LOffs.first == ROffs.first)
1652     return LOffs.second < ROffs.second;
1653 
1654   // If we are comparing a source location with multiple locations in the same
1655   // file, we get a big win by caching the result.
1656   if (IsBeforeInTUCache.isCacheValid(LOffs.first, ROffs.first))
1657     return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
1658 
1659   // Okay, we missed in the cache, start updating the cache for this query.
1660   IsBeforeInTUCache.setQueryFIDs(LOffs.first, ROffs.first,
1661                           /*isLFIDBeforeRFID=*/LOffs.first.ID < ROffs.first.ID);
1662 
1663   // We need to find the common ancestor. The only way of doing this is to
1664   // build the complete include chain for one and then walking up the chain
1665   // of the other looking for a match.
1666   // We use a map from FileID to Offset to store the chain. Easier than writing
1667   // a custom set hash info that only depends on the first part of a pair.
1668   typedef llvm::DenseMap<FileID, unsigned> LocSet;
1669   LocSet LChain;
1670   do {
1671     LChain.insert(LOffs);
1672     // We catch the case where LOffs is in a file included by ROffs and
1673     // quit early. The other way round unfortunately remains suboptimal.
1674   } while (LOffs.first != ROffs.first && !MoveUpIncludeHierarchy(LOffs, *this));
1675   LocSet::iterator I;
1676   while((I = LChain.find(ROffs.first)) == LChain.end()) {
1677     if (MoveUpIncludeHierarchy(ROffs, *this))
1678       break; // Met at topmost file.
1679   }
1680   if (I != LChain.end())
1681     LOffs = *I;
1682 
1683   // If we exited because we found a nearest common ancestor, compare the
1684   // locations within the common file and cache them.
1685   if (LOffs.first == ROffs.first) {
1686     IsBeforeInTUCache.setCommonLoc(LOffs.first, LOffs.second, ROffs.second);
1687     return IsBeforeInTUCache.getCachedResult(LOffs.second, ROffs.second);
1688   }
1689 
1690   // This can happen if a location is in a built-ins buffer.
1691   // But see PR5662.
1692   // Clear the lookup cache, it depends on a common location.
1693   IsBeforeInTUCache.clear();
1694   bool LIsBuiltins = strcmp("<built-in>",
1695                             getBuffer(LOffs.first)->getBufferIdentifier()) == 0;
1696   bool RIsBuiltins = strcmp("<built-in>",
1697                             getBuffer(ROffs.first)->getBufferIdentifier()) == 0;
1698   // built-in is before non-built-in
1699   if (LIsBuiltins != RIsBuiltins)
1700     return LIsBuiltins;
1701   assert(LIsBuiltins && RIsBuiltins &&
1702          "Non-built-in locations must be rooted in the main file");
1703   // Both are in built-in buffers, but from different files. We just claim that
1704   // lower IDs come first.
1705   return LOffs.first < ROffs.first;
1706 }
1707 
1708 /// PrintStats - Print statistics to stderr.
1709 ///
1710 void SourceManager::PrintStats() const {
1711   llvm::errs() << "\n*** Source Manager Stats:\n";
1712   llvm::errs() << FileInfos.size() << " files mapped, " << MemBufferInfos.size()
1713                << " mem buffers mapped.\n";
1714   llvm::errs() << LocalSLocEntryTable.size() << " local SLocEntry's allocated ("
1715                << llvm::capacity_in_bytes(LocalSLocEntryTable)
1716                << " bytes of capacity), "
1717                << NextLocalOffset << "B of Sloc address space used.\n";
1718   llvm::errs() << LoadedSLocEntryTable.size()
1719                << " loaded SLocEntries allocated, "
1720                << MaxLoadedOffset - CurrentLoadedOffset
1721                << "B of Sloc address space used.\n";
1722 
1723   unsigned NumLineNumsComputed = 0;
1724   unsigned NumFileBytesMapped = 0;
1725   for (fileinfo_iterator I = fileinfo_begin(), E = fileinfo_end(); I != E; ++I){
1726     NumLineNumsComputed += I->second->SourceLineCache != 0;
1727     NumFileBytesMapped  += I->second->getSizeBytesMapped();
1728   }
1729   unsigned NumMacroArgsComputed = MacroArgsCacheMap.size();
1730 
1731   llvm::errs() << NumFileBytesMapped << " bytes of files mapped, "
1732                << NumLineNumsComputed << " files with line #'s computed, "
1733                << NumMacroArgsComputed << " files with macro args computed.\n";
1734   llvm::errs() << "FileID scans: " << NumLinearScans << " linear, "
1735                << NumBinaryProbes << " binary.\n";
1736 }
1737 
1738 ExternalSLocEntrySource::~ExternalSLocEntrySource() { }
1739 
1740 /// Return the amount of memory used by memory buffers, breaking down
1741 /// by heap-backed versus mmap'ed memory.
1742 SourceManager::MemoryBufferSizes SourceManager::getMemoryBufferSizes() const {
1743   size_t malloc_bytes = 0;
1744   size_t mmap_bytes = 0;
1745 
1746   for (unsigned i = 0, e = MemBufferInfos.size(); i != e; ++i)
1747     if (size_t sized_mapped = MemBufferInfos[i]->getSizeBytesMapped())
1748       switch (MemBufferInfos[i]->getMemoryBufferKind()) {
1749         case llvm::MemoryBuffer::MemoryBuffer_MMap:
1750           mmap_bytes += sized_mapped;
1751           break;
1752         case llvm::MemoryBuffer::MemoryBuffer_Malloc:
1753           malloc_bytes += sized_mapped;
1754           break;
1755       }
1756 
1757   return MemoryBufferSizes(malloc_bytes, mmap_bytes);
1758 }
1759 
1760 size_t SourceManager::getDataStructureSizes() const {
1761   return llvm::capacity_in_bytes(MemBufferInfos)
1762     + llvm::capacity_in_bytes(LocalSLocEntryTable)
1763     + llvm::capacity_in_bytes(LoadedSLocEntryTable)
1764     + llvm::capacity_in_bytes(SLocEntryLoaded)
1765     + llvm::capacity_in_bytes(FileInfos)
1766     + llvm::capacity_in_bytes(OverriddenFiles);
1767 }
1768