blob: 038b8c65d099d36ab1a5c6584e114897e3eb0eb5 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SourceManager.h - Track and cache source files ---------*- C++ -*-===//
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 defines the SourceManager interface.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_SOURCEMANAGER_H
15#define LLVM_CLANG_SOURCEMANAGER_H
16
Chris Lattnerd47d3b02011-07-23 10:35:09 +000017#include "clang/Basic/LLVM.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/Basic/SourceLocation.h"
Chris Lattner0d0bf8c2009-02-03 07:30:45 +000019#include "llvm/Support/Allocator.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000020#include "llvm/Support/DataTypes.h"
Douglas Gregorc8151082010-03-16 22:53:51 +000021#include "llvm/ADT/PointerIntPair.h"
Douglas Gregoraea67db2010-03-15 22:54:52 +000022#include "llvm/ADT/PointerUnion.h"
Ted Kremenek4f327862011-03-21 18:40:17 +000023#include "llvm/ADT/IntrusiveRefCntPtr.h"
Chris Lattner0d0bf8c2009-02-03 07:30:45 +000024#include "llvm/ADT/DenseMap.h"
Ted Kremenekf61b8312011-04-28 20:36:42 +000025#include "llvm/Support/MemoryBuffer.h"
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +000026#include <map>
Reid Spencer5f016e22007-07-11 17:01:13 +000027#include <vector>
Chris Lattner9dc62f02007-07-12 15:32:57 +000028#include <cassert>
Reid Spencer5f016e22007-07-11 17:01:13 +000029
Reid Spencer5f016e22007-07-11 17:01:13 +000030namespace clang {
Mike Stump1eb44332009-09-09 15:08:12 +000031
David Blaikied6471f72011-09-25 23:23:43 +000032class DiagnosticsEngine;
Reid Spencer5f016e22007-07-11 17:01:13 +000033class SourceManager;
Ted Kremenek099b4742007-12-05 00:14:18 +000034class FileManager;
Reid Spencer5f016e22007-07-11 17:01:13 +000035class FileEntry;
Chris Lattner5b9a5042009-01-26 07:57:50 +000036class LineTableInfo;
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +000037class LangOptions;
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +000038class ASTWriter;
39class ASTReader;
Eric Christopher5330ee02011-09-08 23:28:19 +000040
Eric Christopher29f39422011-09-08 17:15:01 +000041/// There are three different types of locations in a file: a spelling
42/// location, an expansion location, and a presumed location.
43///
44/// Given an example of:
45/// #define min(x, y) x < y ? x : y
46///
47/// and then later on a use of min:
Eric Christopher29f39422011-09-08 17:15:01 +000048/// #line 17
Eric Christopher5330ee02011-09-08 23:28:19 +000049/// return min(a, b);
Eric Christopher29f39422011-09-08 17:15:01 +000050///
51/// The expansion location is the line in the source code where the macro
52/// was expanded (the return statement), the spelling location is the
53/// location in the source where the macro was originally defined,
54/// and the presumed location is where the line directive states that
55/// the line is 17, or any other line.
56
Chris Lattner0b9e7362008-09-26 21:18:42 +000057/// SrcMgr - Public enums and private classes that are part of the
58/// SourceManager implementation.
Reid Spencer5f016e22007-07-11 17:01:13 +000059///
60namespace SrcMgr {
Chris Lattner9d728512008-10-27 01:19:25 +000061 /// CharacteristicKind - This is used to represent whether a file or directory
Chris Lattner0b9e7362008-09-26 21:18:42 +000062 /// holds normal user code, system code, or system code which is implicitly
63 /// 'extern "C"' in C++ mode. Entire directories can be tagged with this
64 /// (this is maintained by DirectoryLookup and friends) as can specific
Douglas Gregorf62d43d2011-07-19 16:10:42 +000065 /// FileInfos when a #pragma system_header is seen or various other cases.
Chris Lattner0b9e7362008-09-26 21:18:42 +000066 ///
Chris Lattner9d728512008-10-27 01:19:25 +000067 enum CharacteristicKind {
Chris Lattner0b9e7362008-09-26 21:18:42 +000068 C_User, C_System, C_ExternCSystem
69 };
Mike Stump1eb44332009-09-09 15:08:12 +000070
Dan Gohman4710a8e2010-08-25 21:59:25 +000071 /// ContentCache - One instance of this struct is kept for every file
Chris Lattner06a062d2009-01-19 08:02:45 +000072 /// loaded or used. This object owns the MemoryBuffer object.
Ted Kremenekc16c2082009-01-06 01:55:26 +000073 class ContentCache {
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000074 enum CCFlags {
75 /// \brief Whether the buffer is invalid.
76 InvalidFlag = 0x01,
77 /// \brief Whether the buffer should not be freed on destruction.
78 DoNotFreeFlag = 0x02
79 };
Eric Christopher5330ee02011-09-08 23:28:19 +000080
Ted Kremenekc16c2082009-01-06 01:55:26 +000081 /// Buffer - The actual buffer containing the characters from the input
82 /// file. This is owned by the ContentCache object.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +000083 /// The bits indicate indicates whether the buffer is invalid.
84 mutable llvm::PointerIntPair<const llvm::MemoryBuffer *, 2> Buffer;
Ted Kremenekc16c2082009-01-06 01:55:26 +000085
86 public:
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000087 /// Reference to the file entry representing this ContentCache.
88 /// This reference does not own the FileEntry object.
89 /// It is possible for this to be NULL if
Ted Kremenek78d85f52007-10-30 21:08:08 +000090 /// the ContentCache encapsulates an imaginary text buffer.
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +000091 const FileEntry *OrigEntry;
92
93 /// \brief References the file which the contents were actually loaded from.
94 /// Can be different from 'Entry' if we overridden the contents of one file
95 /// with the contents of another file.
96 const FileEntry *ContentsEntry;
Mike Stump1eb44332009-09-09 15:08:12 +000097
Chris Lattner0d0bf8c2009-02-03 07:30:45 +000098 /// SourceLineCache - A bump pointer allocated array of offsets for each
99 /// source line. This is lazily computed. This is owned by the
100 /// SourceManager BumpPointerAllocator object.
Chris Lattner05816592009-01-17 03:54:16 +0000101 unsigned *SourceLineCache;
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Ted Kremenekb6427f82007-12-04 18:59:28 +0000103 /// NumLines - The number of lines in this ContentCache. This is only valid
104 /// if SourceLineCache is non-null.
Douglas Gregora081da52011-11-16 20:05:18 +0000105 unsigned NumLines : 31;
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +0000106
Douglas Gregora081da52011-11-16 20:05:18 +0000107 /// \brief Indicates whether the buffer itself was provided to override
108 /// the actual file contents.
109 ///
110 /// When true, the original entry may be a virtual file that does not
111 /// exist.
112 unsigned BufferOverridden : 1;
113
Douglas Gregor7955a252011-11-19 09:42:42 +0000114 ContentCache(const FileEntry *Ent = 0)
115 : Buffer(0, false), OrigEntry(Ent), ContentsEntry(Ent),
116 SourceLineCache(0), NumLines(0), BufferOverridden(false) {}
117
118 ContentCache(const FileEntry *Ent, const FileEntry *contentEnt)
119 : Buffer(0, false), OrigEntry(Ent), ContentsEntry(contentEnt),
120 SourceLineCache(0), NumLines(0), BufferOverridden(false) {}
121
122 ~ContentCache();
123
124 /// The copy ctor does not allow copies where source object has either
125 /// a non-NULL Buffer or SourceLineCache. Ownership of allocated memory
126 /// is not transferred, so this is a logical error.
127 ContentCache(const ContentCache &RHS)
128 : Buffer(0, false), SourceLineCache(0), BufferOverridden(false)
129 {
130 OrigEntry = RHS.OrigEntry;
131 ContentsEntry = RHS.ContentsEntry;
132
133 assert (RHS.Buffer.getPointer() == 0 && RHS.SourceLineCache == 0 &&
134 "Passed ContentCache object cannot own a buffer.");
135
136 NumLines = RHS.NumLines;
137 }
138
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000139 /// getBuffer - Returns the memory buffer for the associated content.
140 ///
Jonathan D. Turnera92d7e72011-06-16 20:47:21 +0000141 /// \param Diag Object through which diagnostics will be emitted if the
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000142 /// buffer cannot be retrieved.
Eric Christopher5330ee02011-09-08 23:28:19 +0000143 ///
Chris Lattnere127a0d2010-04-20 20:35:58 +0000144 /// \param Loc If specified, is the location that invalid file diagnostics
145 /// will be emitted at.
146 ///
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000147 /// \param Invalid If non-NULL, will be set \c true if an error occurred.
David Blaikied6471f72011-09-25 23:23:43 +0000148 const llvm::MemoryBuffer *getBuffer(DiagnosticsEngine &Diag,
Chris Lattnere127a0d2010-04-20 20:35:58 +0000149 const SourceManager &SM,
150 SourceLocation Loc = SourceLocation(),
Douglas Gregor36c35ba2010-03-16 00:35:39 +0000151 bool *Invalid = 0) const;
Mike Stump1eb44332009-09-09 15:08:12 +0000152
Ted Kremenekc16c2082009-01-06 01:55:26 +0000153 /// getSize - Returns the size of the content encapsulated by this
154 /// ContentCache. This can be the size of the source file or the size of an
155 /// arbitrary scratch buffer. If the ContentCache encapsulates a source
156 /// file this size is retrieved from the file's FileEntry.
157 unsigned getSize() const;
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Ted Kremenekc16c2082009-01-06 01:55:26 +0000159 /// getSizeBytesMapped - Returns the number of bytes actually mapped for
Chandler Carruth3201f382011-07-26 05:17:23 +0000160 /// this ContentCache. This can be 0 if the MemBuffer was not actually
161 /// expanded.
Ted Kremenekc16c2082009-01-06 01:55:26 +0000162 unsigned getSizeBytesMapped() const;
Eric Christopher5330ee02011-09-08 23:28:19 +0000163
Ted Kremenekf61b8312011-04-28 20:36:42 +0000164 /// Returns the kind of memory used to back the memory buffer for
165 /// this content cache. This is used for performance analysis.
166 llvm::MemoryBuffer::BufferKind getMemoryBufferKind() const;
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Chris Lattner05816592009-01-17 03:54:16 +0000168 void setBuffer(const llvm::MemoryBuffer *B) {
Douglas Gregorc8151082010-03-16 22:53:51 +0000169 assert(!Buffer.getPointer() && "MemoryBuffer already set.");
170 Buffer.setPointer(B);
171 Buffer.setInt(false);
Ted Kremenekc16c2082009-01-06 01:55:26 +0000172 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000173
Douglas Gregorcc5888d2010-07-31 00:40:00 +0000174 /// \brief Get the underlying buffer, returning NULL if the buffer is not
175 /// yet available.
176 const llvm::MemoryBuffer *getRawBuffer() const {
177 return Buffer.getPointer();
178 }
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Douglas Gregor29684422009-12-02 06:49:09 +0000180 /// \brief Replace the existing buffer (which will be deleted)
181 /// with the given buffer.
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000182 void replaceBuffer(const llvm::MemoryBuffer *B, bool DoNotFree = false);
Douglas Gregor29684422009-12-02 06:49:09 +0000183
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000184 /// \brief Determine whether the buffer itself is invalid.
185 bool isBufferInvalid() const {
186 return Buffer.getInt() & InvalidFlag;
187 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000188
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000189 /// \brief Determine whether the buffer should be freed.
190 bool shouldFreeBuffer() const {
191 return (Buffer.getInt() & DoNotFreeFlag) == 0;
192 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000193
Ted Kremenek0d892d82007-10-30 22:57:35 +0000194 private:
195 // Disable assignments.
Mike Stump1eb44332009-09-09 15:08:12 +0000196 ContentCache &operator=(const ContentCache& RHS);
197 };
Reid Spencer5f016e22007-07-11 17:01:13 +0000198
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000199 /// FileInfo - Information about a FileID, basically just the logical file
200 /// that it represents and include stack information.
Reid Spencer5f016e22007-07-11 17:01:13 +0000201 ///
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000202 /// Each FileInfo has include stack information, indicating where it came
Chandler Carruth3201f382011-07-26 05:17:23 +0000203 /// from. This information encodes the #include chain that a token was
204 /// expanded from. The main include file has an invalid IncludeLoc.
Reid Spencer5f016e22007-07-11 17:01:13 +0000205 ///
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000206 /// FileInfos contain a "ContentCache *", with the contents of the file.
Reid Spencer5f016e22007-07-11 17:01:13 +0000207 ///
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000208 class FileInfo {
Reid Spencer5f016e22007-07-11 17:01:13 +0000209 /// IncludeLoc - The location of the #include that brought in this file.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000210 /// This is an invalid SLOC for the main file (top of the #include chain).
211 unsigned IncludeLoc; // Really a SourceLocation
Mike Stump1eb44332009-09-09 15:08:12 +0000212
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000213 /// \brief Number of FileIDs (files and macros) that were created during
214 /// preprocessing of this #include, including this SLocEntry.
215 /// Zero means the preprocessor didn't provide such info for this SLocEntry.
216 unsigned NumCreatedFIDs;
217
Chris Lattner6e1aff22009-01-26 06:49:09 +0000218 /// Data - This contains the ContentCache* and the bits indicating the
219 /// characteristic of the file and whether it has #line info, all bitmangled
220 /// together.
221 uintptr_t Data;
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000222
Argyrios Kyrtzidis21032df2011-08-21 23:49:52 +0000223 friend class clang::SourceManager;
224 friend class clang::ASTWriter;
225 friend class clang::ASTReader;
Ted Kremenek78d85f52007-10-30 21:08:08 +0000226 public:
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000227 /// get - Return a FileInfo object.
228 static FileInfo get(SourceLocation IL, const ContentCache *Con,
229 CharacteristicKind FileCharacter) {
230 FileInfo X;
231 X.IncludeLoc = IL.getRawEncoding();
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000232 X.NumCreatedFIDs = 0;
Chris Lattner6e1aff22009-01-26 06:49:09 +0000233 X.Data = (uintptr_t)Con;
Chris Lattner00282d62009-02-03 07:41:46 +0000234 assert((X.Data & 7) == 0 &&"ContentCache pointer insufficiently aligned");
Chris Lattner6e1aff22009-01-26 06:49:09 +0000235 assert((unsigned)FileCharacter < 4 && "invalid file character");
236 X.Data |= (unsigned)FileCharacter;
Reid Spencer5f016e22007-07-11 17:01:13 +0000237 return X;
238 }
Mike Stump1eb44332009-09-09 15:08:12 +0000239
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000240 SourceLocation getIncludeLoc() const {
241 return SourceLocation::getFromRawEncoding(IncludeLoc);
242 }
Chris Lattner6e1aff22009-01-26 06:49:09 +0000243 const ContentCache* getContentCache() const {
Chris Lattner00282d62009-02-03 07:41:46 +0000244 return reinterpret_cast<const ContentCache*>(Data & ~7UL);
Chris Lattner6e1aff22009-01-26 06:49:09 +0000245 }
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Chris Lattner0b9e7362008-09-26 21:18:42 +0000247 /// getCharacteristic - Return whether this is a system header or not.
Mike Stump1eb44332009-09-09 15:08:12 +0000248 CharacteristicKind getFileCharacteristic() const {
Chris Lattner6e1aff22009-01-26 06:49:09 +0000249 return (CharacteristicKind)(Data & 3);
Chris Lattner0b9e7362008-09-26 21:18:42 +0000250 }
Chris Lattnerac50e342009-02-03 22:13:05 +0000251
252 /// hasLineDirectives - Return true if this FileID has #line directives in
253 /// it.
254 bool hasLineDirectives() const { return (Data & 4) != 0; }
Mike Stump1eb44332009-09-09 15:08:12 +0000255
Chris Lattnerac50e342009-02-03 22:13:05 +0000256 /// setHasLineDirectives - Set the flag that indicates that this FileID has
257 /// line table entries associated with it.
258 void setHasLineDirectives() {
259 Data |= 4;
260 }
Chris Lattner9dc1f532007-07-20 16:37:10 +0000261 };
Mike Stump1eb44332009-09-09 15:08:12 +0000262
Chandler Carruth78df8362011-07-26 04:41:47 +0000263 /// ExpansionInfo - Each ExpansionInfo encodes the expansion location - where
264 /// the token was ultimately expanded, and the SpellingLoc - where the actual
265 /// character data for the token came from.
266 class ExpansionInfo {
267 // Really these are all SourceLocations.
Mike Stump1eb44332009-09-09 15:08:12 +0000268
Chris Lattnere7fb4842009-02-15 20:52:18 +0000269 /// SpellingLoc - Where the spelling for the token can be found.
270 unsigned SpellingLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000271
Chandler Carruth78df8362011-07-26 04:41:47 +0000272 /// ExpansionLocStart/ExpansionLocEnd - In a macro expansion, these
273 /// indicate the start and end of the expansion. In object-like macros,
Chandler Carruth3201f382011-07-26 05:17:23 +0000274 /// these will be the same. In a function-like macro expansion, the start
275 /// will be the identifier and the end will be the ')'. Finally, in
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000276 /// macro-argument instantitions, the end will be 'SourceLocation()', an
277 /// invalid location.
Chandler Carruth78df8362011-07-26 04:41:47 +0000278 unsigned ExpansionLocStart, ExpansionLocEnd;
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000279
Chris Lattner9dc1f532007-07-20 16:37:10 +0000280 public:
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000281 SourceLocation getSpellingLoc() const {
282 return SourceLocation::getFromRawEncoding(SpellingLoc);
283 }
Chandler Carruth78df8362011-07-26 04:41:47 +0000284 SourceLocation getExpansionLocStart() const {
285 return SourceLocation::getFromRawEncoding(ExpansionLocStart);
Chris Lattnere7fb4842009-02-15 20:52:18 +0000286 }
Chandler Carruth78df8362011-07-26 04:41:47 +0000287 SourceLocation getExpansionLocEnd() const {
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000288 SourceLocation EndLoc =
Chandler Carruth78df8362011-07-26 04:41:47 +0000289 SourceLocation::getFromRawEncoding(ExpansionLocEnd);
290 return EndLoc.isInvalid() ? getExpansionLocStart() : EndLoc;
Chris Lattnere7fb4842009-02-15 20:52:18 +0000291 }
Mike Stump1eb44332009-09-09 15:08:12 +0000292
Chandler Carruth78df8362011-07-26 04:41:47 +0000293 std::pair<SourceLocation,SourceLocation> getExpansionLocRange() const {
294 return std::make_pair(getExpansionLocStart(), getExpansionLocEnd());
Chris Lattnere7fb4842009-02-15 20:52:18 +0000295 }
Mike Stump1eb44332009-09-09 15:08:12 +0000296
Chandler Carruth96d35892011-07-26 03:03:00 +0000297 bool isMacroArgExpansion() const {
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000298 // Note that this needs to return false for default constructed objects.
Chandler Carruth78df8362011-07-26 04:41:47 +0000299 return getExpansionLocStart().isValid() &&
300 SourceLocation::getFromRawEncoding(ExpansionLocEnd).isInvalid();
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000301 }
302
Argyrios Kyrtzidiscee5ec92011-12-21 16:56:35 +0000303 bool isFunctionMacroExpansion() const {
304 return getExpansionLocStart().isValid() &&
305 getExpansionLocStart() != getExpansionLocEnd();
306 }
307
Chandler Carruth78df8362011-07-26 04:41:47 +0000308 /// create - Return a ExpansionInfo for an expansion. Start and End specify
309 /// the expansion range (where the macro is expanded), and SpellingLoc
310 /// specifies the spelling location (where the characters from the token
311 /// come from). All three can refer to normal File SLocs or expansion
312 /// locations.
313 static ExpansionInfo create(SourceLocation SpellingLoc,
314 SourceLocation Start, SourceLocation End) {
315 ExpansionInfo X;
316 X.SpellingLoc = SpellingLoc.getRawEncoding();
317 X.ExpansionLocStart = Start.getRawEncoding();
318 X.ExpansionLocEnd = End.getRawEncoding();
Chris Lattner9dc1f532007-07-20 16:37:10 +0000319 return X;
Reid Spencer5f016e22007-07-11 17:01:13 +0000320 }
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000321
Chandler Carruth78df8362011-07-26 04:41:47 +0000322 /// createForMacroArg - Return a special ExpansionInfo for the expansion of
323 /// a macro argument into a function-like macro's body. ExpansionLoc
324 /// specifies the expansion location (where the macro is expanded). This
325 /// doesn't need to be a range because a macro is always expanded at
326 /// a macro parameter reference, and macro parameters are always exactly
327 /// one token. SpellingLoc specifies the spelling location (where the
328 /// characters from the token come from). ExpansionLoc and SpellingLoc can
329 /// both refer to normal File SLocs or expansion locations.
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000330 ///
331 /// Given the code:
332 /// \code
333 /// #define F(x) f(x)
334 /// F(42);
335 /// \endcode
336 ///
Chandler Carruth78df8362011-07-26 04:41:47 +0000337 /// When expanding '\c F(42)', the '\c x' would call this with an
338 /// SpellingLoc pointing at '\c 42' anad an ExpansionLoc pointing at its
339 /// location in the definition of '\c F'.
340 static ExpansionInfo createForMacroArg(SourceLocation SpellingLoc,
341 SourceLocation ExpansionLoc) {
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000342 // We store an intentionally invalid source location for the end of the
Chandler Carruth78df8362011-07-26 04:41:47 +0000343 // expansion range to mark that this is a macro argument ion rather than
344 // a normal one.
345 return create(SpellingLoc, ExpansionLoc, SourceLocation());
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000346 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000347 };
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000349 /// SLocEntry - This is a discriminated union of FileInfo and
Chandler Carruth78df8362011-07-26 04:41:47 +0000350 /// ExpansionInfo. SourceManager keeps an array of these objects, and
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000351 /// they are uniquely identified by the FileID datatype.
352 class SLocEntry {
Chandler Carruth3201f382011-07-26 05:17:23 +0000353 unsigned Offset; // low bit is set for expansion info.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000354 union {
355 FileInfo File;
Chandler Carruth17287622011-07-26 04:56:51 +0000356 ExpansionInfo Expansion;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000357 };
358 public:
359 unsigned getOffset() const { return Offset >> 1; }
Mike Stump1eb44332009-09-09 15:08:12 +0000360
Chandler Carruth17287622011-07-26 04:56:51 +0000361 bool isExpansion() const { return Offset & 1; }
362 bool isFile() const { return !isExpansion(); }
Mike Stump1eb44332009-09-09 15:08:12 +0000363
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000364 const FileInfo &getFile() const {
365 assert(isFile() && "Not a file SLocEntry!");
366 return File;
367 }
368
Chandler Carruth17287622011-07-26 04:56:51 +0000369 const ExpansionInfo &getExpansion() const {
370 assert(isExpansion() && "Not a macro expansion SLocEntry!");
371 return Expansion;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000372 }
Mike Stump1eb44332009-09-09 15:08:12 +0000373
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000374 static SLocEntry get(unsigned Offset, const FileInfo &FI) {
375 SLocEntry E;
376 E.Offset = Offset << 1;
377 E.File = FI;
378 return E;
379 }
380
Chandler Carruth78df8362011-07-26 04:41:47 +0000381 static SLocEntry get(unsigned Offset, const ExpansionInfo &Expansion) {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000382 SLocEntry E;
383 E.Offset = (Offset << 1) | 1;
Chandler Carruth17287622011-07-26 04:56:51 +0000384 E.Expansion = Expansion;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000385 return E;
386 }
387 };
Reid Spencer5f016e22007-07-11 17:01:13 +0000388} // end SrcMgr namespace.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000389
390/// \brief External source of source location entries.
391class ExternalSLocEntrySource {
392public:
393 virtual ~ExternalSLocEntrySource();
394
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000395 /// \brief Read the source location entry with index ID, which will always be
396 /// less than -1.
Douglas Gregore23ac652011-04-20 00:21:03 +0000397 ///
398 /// \returns true if an error occurred that prevented the source-location
399 /// entry from being loaded.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000400 virtual bool ReadSLocEntry(int ID) = 0;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000401};
Eric Christopher5330ee02011-09-08 23:28:19 +0000402
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000403
404/// IsBeforeInTranslationUnitCache - This class holds the cache used by
405/// isBeforeInTranslationUnit. The cache structure is complex enough to be
406/// worth breaking out of SourceManager.
407class IsBeforeInTranslationUnitCache {
408 /// L/R QueryFID - These are the FID's of the cached query. If these match up
409 /// with a subsequent query, the result can be reused.
410 FileID LQueryFID, RQueryFID;
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +0000411
412 /// \brief True if LQueryFID was created before RQueryFID. This is used
413 /// to compare macro expansion locations.
414 bool IsLQFIDBeforeRQFID;
415
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000416 /// CommonFID - This is the file found in common between the two #include
417 /// traces. It is the nearest common ancestor of the #include tree.
418 FileID CommonFID;
Eric Christopher5330ee02011-09-08 23:28:19 +0000419
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000420 /// L/R CommonOffset - This is the offset of the previous query in CommonFID.
421 /// Usually, this represents the location of the #include for QueryFID, but if
422 /// LQueryFID is a parent of RQueryFID (or vise versa) then these can be a
423 /// random token in the parent.
424 unsigned LCommonOffset, RCommonOffset;
425public:
Eric Christopher5330ee02011-09-08 23:28:19 +0000426
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000427 /// isCacheValid - Return true if the currently cached values match up with
428 /// the specified LHS/RHS query. If not, we can't use the cache.
429 bool isCacheValid(FileID LHS, FileID RHS) const {
430 return LQueryFID == LHS && RQueryFID == RHS;
431 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000432
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000433 /// getCachedResult - If the cache is valid, compute the result given the
434 /// specified offsets in the LHS/RHS FID's.
435 bool getCachedResult(unsigned LOffset, unsigned ROffset) const {
436 // If one of the query files is the common file, use the offset. Otherwise,
437 // use the #include loc in the common file.
438 if (LQueryFID != CommonFID) LOffset = LCommonOffset;
439 if (RQueryFID != CommonFID) ROffset = RCommonOffset;
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +0000440
441 // It is common for multiple macro expansions to be "included" from the same
442 // location (expansion location), in which case use the order of the FileIDs
Argyrios Kyrtzidis4d1cbcf2011-09-19 20:39:51 +0000443 // to determine which came first. This will also take care the case where
444 // one of the locations points at the inclusion/expansion point of the other
445 // in which case its FileID will come before the other.
Argyrios Kyrtzidisd7711ec2011-12-21 16:56:29 +0000446 if (LOffset == ROffset)
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +0000447 return IsLQFIDBeforeRQFID;
448
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000449 return LOffset < ROffset;
450 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000451
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000452 // Set up a new query.
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +0000453 void setQueryFIDs(FileID LHS, FileID RHS, bool isLFIDBeforeRFID) {
454 assert(LHS != RHS);
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000455 LQueryFID = LHS;
456 RQueryFID = RHS;
Argyrios Kyrtzidis37e59a12011-08-17 00:31:18 +0000457 IsLQFIDBeforeRQFID = isLFIDBeforeRFID;
458 }
459
460 void clear() {
461 LQueryFID = RQueryFID = FileID();
462 IsLQFIDBeforeRQFID = false;
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000463 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000464
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000465 void setCommonLoc(FileID commonFID, unsigned lCommonOffset,
466 unsigned rCommonOffset) {
467 CommonFID = commonFID;
468 LCommonOffset = lCommonOffset;
469 RCommonOffset = rCommonOffset;
470 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000471
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000472};
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000473
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000474/// \brief This class handles loading and caching of source files into memory.
475///
476/// This object owns the MemoryBuffer objects for all of the loaded
Reid Spencer5f016e22007-07-11 17:01:13 +0000477/// files and assigns unique FileID's for each unique #include chain.
478///
479/// The SourceManager can be queried for information about SourceLocation
Chandler Carruth3201f382011-07-26 05:17:23 +0000480/// objects, turning them into either spelling or expansion locations. Spelling
481/// locations represent where the bytes corresponding to a token came from and
482/// expansion locations represent where the location is in the user's view. In
483/// the case of a macro expansion, for example, the spelling location indicates
484/// where the expanded token came from and the expansion location specifies
485/// where it was expanded.
Ted Kremenek4f327862011-03-21 18:40:17 +0000486class SourceManager : public llvm::RefCountedBase<SourceManager> {
David Blaikied6471f72011-09-25 23:23:43 +0000487 /// \brief DiagnosticsEngine object.
488 DiagnosticsEngine &Diag;
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000489
490 FileManager &FileMgr;
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000491
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000492 mutable llvm::BumpPtrAllocator ContentCacheAlloc;
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Reid Spencer5f016e22007-07-11 17:01:13 +0000494 /// FileInfos - Memoized information about all of the files tracked by this
Ted Kremenek0d892d82007-10-30 22:57:35 +0000495 /// SourceManager. This set allows us to merge ContentCache entries based
496 /// on their FileEntry*. All ContentCache objects will thus have unique,
Mike Stump1eb44332009-09-09 15:08:12 +0000497 /// non-null, FileEntry pointers.
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000498 llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*> FileInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000499
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +0000500 /// \brief True if the ContentCache for files that are overriden by other
501 /// files, should report the original file name. Defaults to true.
502 bool OverridenFilesKeepOriginalName;
503
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000504 /// \brief Files that have been overriden with the contents from another file.
505 llvm::DenseMap<const FileEntry *, const FileEntry *> OverriddenFiles;
506
Reid Spencer5f016e22007-07-11 17:01:13 +0000507 /// MemBufferInfos - Information about various memory buffers that we have
Chris Lattner0d0bf8c2009-02-03 07:30:45 +0000508 /// read in. All FileEntry* within the stored ContentCache objects are NULL,
509 /// as they do not refer to a file.
510 std::vector<SrcMgr::ContentCache*> MemBufferInfos;
Mike Stump1eb44332009-09-09 15:08:12 +0000511
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000512 /// \brief The table of SLocEntries that are local to this module.
513 ///
514 /// Positive FileIDs are indexes into this table. Entry 0 indicates an invalid
Chandler Carruth3201f382011-07-26 05:17:23 +0000515 /// expansion.
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000516 std::vector<SrcMgr::SLocEntry> LocalSLocEntryTable;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000517
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000518 /// \brief The table of SLocEntries that are loaded from other modules.
519 ///
520 /// Negative FileIDs are indexes into this table. To get from ID to an index,
521 /// use (-ID - 2).
522 std::vector<SrcMgr::SLocEntry> LoadedSLocEntryTable;
523
524 /// \brief The starting offset of the next local SLocEntry.
525 ///
526 /// This is LocalSLocEntryTable.back().Offset + the size of that entry.
527 unsigned NextLocalOffset;
528
529 /// \brief The starting offset of the latest batch of loaded SLocEntries.
530 ///
531 /// This is LoadedSLocEntryTable.back().Offset, except that that entry might
532 /// not have been loaded, so that value would be unknown.
533 unsigned CurrentLoadedOffset;
534
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +0000535 /// \brief The highest possible offset is 2^31-1, so CurrentLoadedOffset
536 /// starts at 2^31.
537 static const unsigned MaxLoadedOffset = 1U << 31U;
538
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000539 /// \brief A bitmap that indicates whether the entries of LoadedSLocEntryTable
540 /// have already been loaded from the external source.
541 ///
542 /// Same indexing as LoadedSLocEntryTable.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000543 std::vector<bool> SLocEntryLoaded;
544
545 /// \brief An external source for source location entries.
546 ExternalSLocEntrySource *ExternalSLocEntries;
547
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000548 /// LastFileIDLookup - This is a one-entry cache to speed up getFileID.
549 /// LastFileIDLookup records the last FileID looked up or created, because it
550 /// is very common to look up many tokens from the same file.
551 mutable FileID LastFileIDLookup;
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Chris Lattner5b9a5042009-01-26 07:57:50 +0000553 /// LineTable - This holds information for #line directives. It is referenced
554 /// by indices from SLocEntryTable.
555 LineTableInfo *LineTable;
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Chris Lattner5e36a7a2007-07-24 05:57:19 +0000557 /// LastLineNo - These ivars serve as a cache used in the getLineNumber
558 /// method which is used to speedup getLineNumber calls to nearby locations.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000559 mutable FileID LastLineNoFileIDQuery;
Chris Lattnerf812a452008-11-18 06:51:15 +0000560 mutable SrcMgr::ContentCache *LastLineNoContentCache;
561 mutable unsigned LastLineNoFilePos;
562 mutable unsigned LastLineNoResult;
Mike Stump1eb44332009-09-09 15:08:12 +0000563
Ted Kremenek76edd0e2007-12-19 22:29:55 +0000564 /// MainFileID - The file ID for the main source file of the translation unit.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000565 FileID MainFileID;
Steve Naroff49c1f4a2008-02-02 00:10:46 +0000566
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +0000567 /// \brief The file ID for the precompiled preamble there is one.
568 FileID PreambleFileID;
569
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000570 // Statistics for -print-stats.
571 mutable unsigned NumLinearScans, NumBinaryProbes;
Mike Stump1eb44332009-09-09 15:08:12 +0000572
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +0000573 // Cache results for the isBeforeInTranslationUnit method.
Chris Lattnerdcb1d682010-05-07 01:17:07 +0000574 mutable IsBeforeInTranslationUnitCache IsBeforeInTUCache;
Mike Stump1eb44332009-09-09 15:08:12 +0000575
Douglas Gregore23ac652011-04-20 00:21:03 +0000576 // Cache for the "fake" buffer used for error-recovery purposes.
577 mutable llvm::MemoryBuffer *FakeBufferForRecovery;
Eric Christopher5330ee02011-09-08 23:28:19 +0000578
Argyrios Kyrtzidisfb3612e2011-09-26 08:01:50 +0000579 /// \brief Lazily computed map of macro argument chunks to their expanded
580 /// source location.
581 typedef std::map<unsigned, SourceLocation> MacroArgsMap;
582
David Blaikie70042f52011-10-20 01:45:20 +0000583 mutable llvm::DenseMap<FileID, MacroArgsMap *> MacroArgsCacheMap;
Argyrios Kyrtzidisfb3612e2011-09-26 08:01:50 +0000584
Steve Naroff49c1f4a2008-02-02 00:10:46 +0000585 // SourceManager doesn't support copy construction.
586 explicit SourceManager(const SourceManager&);
Mike Stump1eb44332009-09-09 15:08:12 +0000587 void operator=(const SourceManager&);
Reid Spencer5f016e22007-07-11 17:01:13 +0000588public:
David Blaikied6471f72011-09-25 23:23:43 +0000589 SourceManager(DiagnosticsEngine &Diag, FileManager &FileMgr);
Chris Lattner5b9a5042009-01-26 07:57:50 +0000590 ~SourceManager();
Mike Stump1eb44332009-09-09 15:08:12 +0000591
Chris Lattner5b9a5042009-01-26 07:57:50 +0000592 void clearIDTables();
Mike Stump1eb44332009-09-09 15:08:12 +0000593
David Blaikied6471f72011-09-25 23:23:43 +0000594 DiagnosticsEngine &getDiagnostics() const { return Diag; }
Argyrios Kyrtzidis78a916e2010-09-22 14:32:24 +0000595
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000596 FileManager &getFileManager() const { return FileMgr; }
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +0000597
Argyrios Kyrtzidis299a4a92011-03-08 23:35:24 +0000598 /// \brief Set true if the SourceManager should report the original file name
599 /// for contents of files that were overriden by other files.Defaults to true.
600 void setOverridenFilesKeepOriginalName(bool value) {
601 OverridenFilesKeepOriginalName = value;
602 }
603
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000604 /// createMainFileIDForMembuffer - Create the FileID for a memory buffer
605 /// that will represent the FileID for the main source. One example
606 /// of when this would be used is when the main source is read from STDIN.
607 FileID createMainFileIDForMemBuffer(const llvm::MemoryBuffer *Buffer) {
608 assert(MainFileID.isInvalid() && "MainFileID already set!");
609 MainFileID = createFileIDForMemBuffer(Buffer);
610 return MainFileID;
611 }
612
Chris Lattner06a062d2009-01-19 08:02:45 +0000613 //===--------------------------------------------------------------------===//
614 // MainFileID creation and querying methods.
615 //===--------------------------------------------------------------------===//
616
Ted Kremenek76edd0e2007-12-19 22:29:55 +0000617 /// getMainFileID - Returns the FileID of the main source file.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000618 FileID getMainFileID() const { return MainFileID; }
Mike Stump1eb44332009-09-09 15:08:12 +0000619
Chris Lattner06a062d2009-01-19 08:02:45 +0000620 /// createMainFileID - Create the FileID for the main source file.
Dan Gohmanf155dfa2010-08-27 15:44:11 +0000621 FileID createMainFileID(const FileEntry *SourceFile) {
Chris Lattner06a062d2009-01-19 08:02:45 +0000622 assert(MainFileID.isInvalid() && "MainFileID already set!");
Dan Gohmanf155dfa2010-08-27 15:44:11 +0000623 MainFileID = createFileID(SourceFile, SourceLocation(), SrcMgr::C_User);
Chris Lattner06a062d2009-01-19 08:02:45 +0000624 return MainFileID;
625 }
Mike Stump1eb44332009-09-09 15:08:12 +0000626
Argyrios Kyrtzidisb8c879a2012-01-05 21:36:25 +0000627 /// \brief Set the file ID for the main source file.
628 void setMainFileID(FileID FID) {
629 assert(MainFileID.isInvalid() && "MainFileID already set!");
630 MainFileID = FID;
631 }
632
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +0000633 /// \brief Set the file ID for the precompiled preamble.
634 void setPreambleFileID(FileID Preamble) {
635 assert(PreambleFileID.isInvalid() && "PreambleFileID already set!");
636 PreambleFileID = Preamble;
Douglas Gregor414cb642010-11-30 05:23:00 +0000637 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000638
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +0000639 /// \brief Get the file ID for the precompiled preamble if there is one.
640 FileID getPreambleFileID() const { return PreambleFileID; }
641
Chris Lattner06a062d2009-01-19 08:02:45 +0000642 //===--------------------------------------------------------------------===//
Chandler Carruth3201f382011-07-26 05:17:23 +0000643 // Methods to create new FileID's and macro expansions.
Chris Lattner06a062d2009-01-19 08:02:45 +0000644 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000645
Reid Spencer5f016e22007-07-11 17:01:13 +0000646 /// createFileID - Create a new FileID that represents the specified file
Peter Collingbourned57b7ff2011-06-30 16:41:03 +0000647 /// being #included from the specified IncludePosition. This translates NULL
648 /// into standard input.
Chris Lattner2b2453a2009-01-17 06:22:33 +0000649 FileID createFileID(const FileEntry *SourceFile, SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000650 SrcMgr::CharacteristicKind FileCharacter,
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000651 int LoadedID = 0, unsigned LoadedOffset = 0) {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000652 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
Dan Gohman0d06e992010-10-26 20:47:28 +0000653 assert(IR && "getOrCreateContentCache() cannot return NULL");
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000654 return createFileID(IR, IncludePos, FileCharacter, LoadedID, LoadedOffset);
Reid Spencer5f016e22007-07-11 17:01:13 +0000655 }
Mike Stump1eb44332009-09-09 15:08:12 +0000656
Reid Spencer5f016e22007-07-11 17:01:13 +0000657 /// createFileIDForMemBuffer - Create a new FileID that represents the
658 /// specified memory buffer. This does no caching of the buffer and takes
659 /// ownership of the MemoryBuffer, so only pass a MemoryBuffer to this once.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000660 FileID createFileIDForMemBuffer(const llvm::MemoryBuffer *Buffer,
Axel Naumannf453cb92011-10-31 11:02:24 +0000661 int LoadedID = 0, unsigned LoadedOffset = 0,
662 SourceLocation IncludeLoc = SourceLocation()) {
663 return createFileID(createMemBufferContentCache(Buffer), IncludeLoc,
Douglas Gregorf62d43d2011-07-19 16:10:42 +0000664 SrcMgr::C_User, LoadedID, LoadedOffset);
Ted Kremenek1036b682007-12-19 23:48:45 +0000665 }
Chris Lattner06a062d2009-01-19 08:02:45 +0000666
Chandler Carruthbf340e42011-07-26 03:03:05 +0000667 /// createMacroArgExpansionLoc - Return a new SourceLocation that encodes the
668 /// fact that a token from SpellingLoc should actually be referenced from
Chandler Carruth3201f382011-07-26 05:17:23 +0000669 /// ExpansionLoc, and that it represents the expansion of a macro argument
670 /// into the function-like macro body.
Chandler Carruthbf340e42011-07-26 03:03:05 +0000671 SourceLocation createMacroArgExpansionLoc(SourceLocation Loc,
672 SourceLocation ExpansionLoc,
673 unsigned TokLength);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000674
Chandler Carruthbf340e42011-07-26 03:03:05 +0000675 /// createExpansionLoc - Return a new SourceLocation that encodes the fact
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +0000676 /// that a token from SpellingLoc should actually be referenced from
Chandler Carruthbf340e42011-07-26 03:03:05 +0000677 /// ExpansionLoc.
678 SourceLocation createExpansionLoc(SourceLocation Loc,
679 SourceLocation ExpansionLocStart,
680 SourceLocation ExpansionLocEnd,
681 unsigned TokLength,
682 int LoadedID = 0,
683 unsigned LoadedOffset = 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000684
Douglas Gregor29684422009-12-02 06:49:09 +0000685 /// \brief Retrieve the memory buffer associated with the given file.
Douglas Gregor50f6af72010-03-16 05:20:39 +0000686 ///
687 /// \param Invalid If non-NULL, will be set \c true if an error
688 /// occurs while retrieving the memory buffer.
689 const llvm::MemoryBuffer *getMemoryBufferForFile(const FileEntry *File,
690 bool *Invalid = 0);
Douglas Gregor29684422009-12-02 06:49:09 +0000691
692 /// \brief Override the contents of the given source file by providing an
693 /// already-allocated buffer.
694 ///
Dan Gohmanafbf5f82010-08-26 02:27:03 +0000695 /// \param SourceFile the source file whose contents will be overriden.
Douglas Gregor29684422009-12-02 06:49:09 +0000696 ///
697 /// \param Buffer the memory buffer whose contents will be used as the
698 /// data in the given source file.
699 ///
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000700 /// \param DoNotFree If true, then the buffer will not be freed when the
701 /// source manager is destroyed.
Dan Gohman0d06e992010-10-26 20:47:28 +0000702 void overrideFileContents(const FileEntry *SourceFile,
Douglas Gregorf4f6c9d2010-07-26 21:36:20 +0000703 const llvm::MemoryBuffer *Buffer,
704 bool DoNotFree = false);
Douglas Gregor29684422009-12-02 06:49:09 +0000705
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +0000706 /// \brief Override the the given source file with another one.
707 ///
708 /// \param SourceFile the source file which will be overriden.
709 ///
710 /// \param NewFile the file whose contents will be used as the
711 /// data instead of the contents of the given source file.
712 void overrideFileContents(const FileEntry *SourceFile,
713 const FileEntry *NewFile);
714
Chris Lattner06a062d2009-01-19 08:02:45 +0000715 //===--------------------------------------------------------------------===//
716 // FileID manipulation methods.
717 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000718
Daniel Dunbar2ffb14f2009-12-06 09:19:25 +0000719 /// getBuffer - Return the buffer for the specified FileID. If there is an
720 /// error opening this buffer the first time, this manufactures a temporary
721 /// buffer and returns a non-empty error string.
Chris Lattnere127a0d2010-04-20 20:35:58 +0000722 const llvm::MemoryBuffer *getBuffer(FileID FID, SourceLocation Loc,
723 bool *Invalid = 0) const {
Douglas Gregore23ac652011-04-20 00:21:03 +0000724 bool MyInvalid = false;
725 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
726 if (MyInvalid || !Entry.isFile()) {
727 if (Invalid)
728 *Invalid = true;
Eric Christopher5330ee02011-09-08 23:28:19 +0000729
Douglas Gregore23ac652011-04-20 00:21:03 +0000730 return getFakeBufferForRecovery();
731 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000732
733 return Entry.getFile().getContentCache()->getBuffer(Diag, *this, Loc,
Douglas Gregore23ac652011-04-20 00:21:03 +0000734 Invalid);
Chris Lattner06a062d2009-01-19 08:02:45 +0000735 }
Mike Stump1eb44332009-09-09 15:08:12 +0000736
Chris Lattnere127a0d2010-04-20 20:35:58 +0000737 const llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = 0) const {
Douglas Gregore23ac652011-04-20 00:21:03 +0000738 bool MyInvalid = false;
739 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
740 if (MyInvalid || !Entry.isFile()) {
741 if (Invalid)
742 *Invalid = true;
Eric Christopher5330ee02011-09-08 23:28:19 +0000743
Douglas Gregore23ac652011-04-20 00:21:03 +0000744 return getFakeBufferForRecovery();
745 }
746
Eric Christopher5330ee02011-09-08 23:28:19 +0000747 return Entry.getFile().getContentCache()->getBuffer(Diag, *this,
748 SourceLocation(),
Douglas Gregore23ac652011-04-20 00:21:03 +0000749 Invalid);
Chris Lattnere127a0d2010-04-20 20:35:58 +0000750 }
Eric Christopher5330ee02011-09-08 23:28:19 +0000751
Chris Lattner06a062d2009-01-19 08:02:45 +0000752 /// getFileEntryForID - Returns the FileEntry record for the provided FileID.
753 const FileEntry *getFileEntryForID(FileID FID) const {
Douglas Gregore23ac652011-04-20 00:21:03 +0000754 bool MyInvalid = false;
755 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
756 if (MyInvalid || !Entry.isFile())
757 return 0;
Eric Christopher5330ee02011-09-08 23:28:19 +0000758
Argyrios Kyrtzidis39afcaf2012-01-05 00:19:03 +0000759 const SrcMgr::ContentCache *Content = Entry.getFile().getContentCache();
760 if (!Content)
761 return 0;
762 return Content->OrigEntry;
Chris Lattner06a062d2009-01-19 08:02:45 +0000763 }
Mike Stump1eb44332009-09-09 15:08:12 +0000764
Ted Kremenek9d5a1652011-03-23 02:16:44 +0000765 /// Returns the FileEntry record for the provided SLocEntry.
766 const FileEntry *getFileEntryForSLocEntry(const SrcMgr::SLocEntry &sloc) const
767 {
Argyrios Kyrtzidis39afcaf2012-01-05 00:19:03 +0000768 const SrcMgr::ContentCache *Content = sloc.getFile().getContentCache();
769 if (!Content)
770 return 0;
771 return Content->OrigEntry;
Ted Kremenek9d5a1652011-03-23 02:16:44 +0000772 }
773
Benjamin Kramerceafc4b2010-03-16 14:48:07 +0000774 /// getBufferData - Return a StringRef to the source buffer data for the
775 /// specified FileID.
776 ///
Douglas Gregorf715ca12010-03-16 00:06:06 +0000777 /// \param FID The file ID whose contents will be returned.
778 /// \param Invalid If non-NULL, will be set true if an error occurred.
Chris Lattner686775d2011-07-20 06:58:45 +0000779 StringRef getBufferData(FileID FID, bool *Invalid = 0) const;
Benjamin Kramerf6ac97b2010-03-16 14:14:31 +0000780
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000781 /// \brief Get the number of FileIDs (files and macros) that were created
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000782 /// during preprocessing of \p FID, including it.
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000783 unsigned getNumCreatedFIDsForFileID(FileID FID) const {
784 bool Invalid = false;
785 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
786 if (Invalid || !Entry.isFile())
787 return 0;
788
789 return Entry.getFile().NumCreatedFIDs;
790 }
791
792 /// \brief Set the number of FileIDs (files and macros) that were created
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000793 /// during preprocessing of \p FID, including it.
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000794 void setNumCreatedFIDsForFileID(FileID FID, unsigned NumFIDs) const {
795 bool Invalid = false;
796 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
797 if (Invalid || !Entry.isFile())
798 return;
799
800 assert(Entry.getFile().NumCreatedFIDs == 0 && "Already set!");
801 const_cast<SrcMgr::FileInfo &>(Entry.getFile()).NumCreatedFIDs = NumFIDs;
802 }
Mike Stump1eb44332009-09-09 15:08:12 +0000803
Chris Lattner06a062d2009-01-19 08:02:45 +0000804 //===--------------------------------------------------------------------===//
805 // SourceLocation manipulation methods.
806 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000807
Chris Lattner668ab1a2009-03-13 01:05:57 +0000808 /// getFileID - Return the FileID for a SourceLocation. This is a very
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000809 /// hot method that is used for all SourceManager queries that start with a
810 /// SourceLocation object. It is responsible for finding the entry in
811 /// SLocEntryTable which contains the specified location.
812 ///
813 FileID getFileID(SourceLocation SpellingLoc) const {
814 unsigned SLocOffset = SpellingLoc.getOffset();
Mike Stump1eb44332009-09-09 15:08:12 +0000815
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000816 // If our one-entry cache covers this offset, just return it.
817 if (isOffsetInFileID(LastFileIDLookup, SLocOffset))
818 return LastFileIDLookup;
819
820 return getFileIDSlow(SLocOffset);
821 }
Mike Stump1eb44332009-09-09 15:08:12 +0000822
Chris Lattner2b2453a2009-01-17 06:22:33 +0000823 /// getLocForStartOfFile - Return the source location corresponding to the
824 /// first byte of the specified file.
825 SourceLocation getLocForStartOfFile(FileID FID) const {
Douglas Gregore23ac652011-04-20 00:21:03 +0000826 bool Invalid = false;
827 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
828 if (Invalid || !Entry.isFile())
829 return SourceLocation();
Eric Christopher5330ee02011-09-08 23:28:19 +0000830
Douglas Gregore23ac652011-04-20 00:21:03 +0000831 unsigned FileOffset = Entry.getOffset();
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000832 return SourceLocation::getFileLoc(FileOffset);
Chris Lattner2b2453a2009-01-17 06:22:33 +0000833 }
Argyrios Kyrtzidisf226ff92011-10-25 00:29:50 +0000834
835 /// \brief Return the source location corresponding to the last byte of the
836 /// specified file.
837 SourceLocation getLocForEndOfFile(FileID FID) const {
838 bool Invalid = false;
839 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
840 if (Invalid || !Entry.isFile())
841 return SourceLocation();
842
843 unsigned FileOffset = Entry.getOffset();
844 return SourceLocation::getFileLoc(FileOffset + getFileIDSize(FID) - 1);
845 }
Mike Stump1eb44332009-09-09 15:08:12 +0000846
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000847 /// \brief Returns the include location if \p FID is a #include'd file
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000848 /// otherwise it returns an invalid location.
849 SourceLocation getIncludeLoc(FileID FID) const {
850 bool Invalid = false;
851 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
852 if (Invalid || !Entry.isFile())
853 return SourceLocation();
Eric Christopher5330ee02011-09-08 23:28:19 +0000854
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +0000855 return Entry.getFile().getIncludeLoc();
856 }
857
Chandler Carruth40278532011-07-25 16:49:02 +0000858 /// getExpansionLoc - Given a SourceLocation object, return the expansion
859 /// location referenced by the ID.
860 SourceLocation getExpansionLoc(SourceLocation Loc) const {
Chris Lattneraddb7972009-01-26 20:04:19 +0000861 // Handle the non-mapped case inline, defer to out of line code to handle
Chandler Carruth40278532011-07-25 16:49:02 +0000862 // expansions.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000863 if (Loc.isFileID()) return Loc;
Chandler Carruthf84ef952011-07-25 20:52:26 +0000864 return getExpansionLocSlowCase(Loc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000865 }
Mike Stump1eb44332009-09-09 15:08:12 +0000866
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000867 /// \brief Given \p Loc, if it is a macro location return the expansion
Argyrios Kyrtzidis796dbfb2011-10-12 07:07:40 +0000868 /// location or the spelling location, depending on if it comes from a
869 /// macro argument or not.
870 SourceLocation getFileLoc(SourceLocation Loc) const {
871 if (Loc.isFileID()) return Loc;
872 return getFileLocSlowCase(Loc);
873 }
874
Chandler Carruth999f7392011-07-25 20:52:21 +0000875 /// getImmediateExpansionRange - Loc is required to be an expansion location.
876 /// Return the start/end of the expansion information.
Chris Lattnere7fb4842009-02-15 20:52:18 +0000877 std::pair<SourceLocation,SourceLocation>
Chandler Carruth999f7392011-07-25 20:52:21 +0000878 getImmediateExpansionRange(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000880 /// getExpansionRange - Given a SourceLocation object, return the range of
881 /// tokens covered by the expansion the ultimate file.
Chris Lattner66781332009-02-15 21:26:50 +0000882 std::pair<SourceLocation,SourceLocation>
Chandler Carruthedc3dcc2011-07-25 16:56:02 +0000883 getExpansionRange(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +0000884
885
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000886 /// getSpellingLoc - Given a SourceLocation object, return the spelling
887 /// location referenced by the ID. This is the place where the characters
888 /// that make up the lexed token can be found.
889 SourceLocation getSpellingLoc(SourceLocation Loc) const {
Chris Lattneraddb7972009-01-26 20:04:19 +0000890 // Handle the non-mapped case inline, defer to out of line code to handle
Chandler Carruth3201f382011-07-26 05:17:23 +0000891 // expansions.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000892 if (Loc.isFileID()) return Loc;
Chris Lattneraddb7972009-01-26 20:04:19 +0000893 return getSpellingLocSlowCase(Loc);
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000894 }
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Chris Lattner387616e2009-02-17 08:04:48 +0000896 /// getImmediateSpellingLoc - Given a SourceLocation object, return the
897 /// spelling location referenced by the ID. This is the first level down
898 /// towards the place where the characters that make up the lexed token can be
899 /// found. This should not generally be used by clients.
Mike Stump1eb44332009-09-09 15:08:12 +0000900 SourceLocation getImmediateSpellingLoc(SourceLocation Loc) const;
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000901
902 /// getDecomposedLoc - Decompose the specified location into a raw FileID +
903 /// Offset pair. The first element is the FileID, the second is the
904 /// offset from the start of the buffer of the location.
905 std::pair<FileID, unsigned> getDecomposedLoc(SourceLocation Loc) const {
906 FileID FID = getFileID(Loc);
Argyrios Kyrtzidisa246d272011-11-04 23:43:06 +0000907 bool Invalid = false;
908 const SrcMgr::SLocEntry &E = getSLocEntry(FID, &Invalid);
909 if (Invalid)
910 return std::make_pair(FileID(), 0);
911 return std::make_pair(FID, Loc.getOffset()-E.getOffset());
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000912 }
Mike Stump1eb44332009-09-09 15:08:12 +0000913
Chandler Carruth3201f382011-07-26 05:17:23 +0000914 /// getDecomposedExpansionLoc - Decompose the specified location into a raw
915 /// FileID + Offset pair. If the location is an expansion record, walk
916 /// through it until we find the final location expanded.
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000917 std::pair<FileID, unsigned>
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000918 getDecomposedExpansionLoc(SourceLocation Loc) const {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000919 FileID FID = getFileID(Loc);
Argyrios Kyrtzidisa246d272011-11-04 23:43:06 +0000920 bool Invalid = false;
921 const SrcMgr::SLocEntry *E = &getSLocEntry(FID, &Invalid);
922 if (Invalid)
923 return std::make_pair(FileID(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000924
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000925 unsigned Offset = Loc.getOffset()-E->getOffset();
926 if (Loc.isFileID())
927 return std::make_pair(FID, Offset);
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +0000929 return getDecomposedExpansionLocSlowCase(E);
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000930 }
931
932 /// getDecomposedSpellingLoc - Decompose the specified location into a raw
Chandler Carruth3201f382011-07-26 05:17:23 +0000933 /// FileID + Offset pair. If the location is an expansion record, walk
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000934 /// through it until we find its spelling record.
935 std::pair<FileID, unsigned>
936 getDecomposedSpellingLoc(SourceLocation Loc) const {
937 FileID FID = getFileID(Loc);
Argyrios Kyrtzidisa246d272011-11-04 23:43:06 +0000938 bool Invalid = false;
939 const SrcMgr::SLocEntry *E = &getSLocEntry(FID, &Invalid);
940 if (Invalid)
941 return std::make_pair(FileID(), 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000943 unsigned Offset = Loc.getOffset()-E->getOffset();
944 if (Loc.isFileID())
945 return std::make_pair(FID, Offset);
946 return getDecomposedSpellingLocSlowCase(E, Offset);
Mike Stump1eb44332009-09-09 15:08:12 +0000947 }
948
Chris Lattner52c29082009-01-27 06:27:13 +0000949 /// getFileOffset - This method returns the offset from the start
950 /// of the file that the specified SourceLocation represents. This is not very
951 /// meaningful for a macro ID.
952 unsigned getFileOffset(SourceLocation SpellingLoc) const {
Chris Lattnerde7aeef2009-01-26 00:43:02 +0000953 return getDecomposedLoc(SpellingLoc).second;
954 }
Mike Stump1eb44332009-09-09 15:08:12 +0000955
Chandler Carruth96d35892011-07-26 03:03:00 +0000956 /// isMacroArgExpansion - This method tests whether the given source location
957 /// represents a macro argument's expansion into the function-like macro
958 /// definition. Such source locations only appear inside of the expansion
959 /// locations representing where a particular function-like macro was
960 /// expanded.
961 bool isMacroArgExpansion(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +0000962
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000963 /// \brief Returns true if \p Loc is inside the [\p Start, +\p Length)
Argyrios Kyrtzidis499ea552011-08-23 21:02:38 +0000964 /// chunk of the source location address space.
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000965 /// If it's true and \p RelativeOffset is non-null, it will be set to the
966 /// relative offset of \p Loc inside the chunk.
Argyrios Kyrtzidis499ea552011-08-23 21:02:38 +0000967 bool isInSLocAddrSpace(SourceLocation Loc,
968 SourceLocation Start, unsigned Length,
969 unsigned *RelativeOffset = 0) const {
970 assert(((Start.getOffset() < NextLocalOffset &&
971 Start.getOffset()+Length <= NextLocalOffset) ||
972 (Start.getOffset() >= CurrentLoadedOffset &&
973 Start.getOffset()+Length < MaxLoadedOffset)) &&
974 "Chunk is not valid SLoc address space");
975 unsigned LocOffs = Loc.getOffset();
976 unsigned BeginOffs = Start.getOffset();
977 unsigned EndOffs = BeginOffs + Length;
978 if (LocOffs >= BeginOffs && LocOffs < EndOffs) {
979 if (RelativeOffset)
980 *RelativeOffset = LocOffs - BeginOffs;
981 return true;
982 }
983
984 return false;
985 }
986
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +0000987 /// \brief Return true if both \p LHS and \p RHS are in the local source
988 /// location address space or the loaded one. If it's true and \p
989 /// RelativeOffset is non-null, it will be set to the offset of \p RHS
990 /// relative to \p LHS.
Argyrios Kyrtzidisb6c465e2011-08-23 21:02:41 +0000991 bool isInSameSLocAddrSpace(SourceLocation LHS, SourceLocation RHS,
992 int *RelativeOffset) const {
993 unsigned LHSOffs = LHS.getOffset(), RHSOffs = RHS.getOffset();
994 bool LHSLoaded = LHSOffs >= CurrentLoadedOffset;
995 bool RHSLoaded = RHSOffs >= CurrentLoadedOffset;
996
997 if (LHSLoaded == RHSLoaded) {
998 if (RelativeOffset)
999 *RelativeOffset = RHSOffs - LHSOffs;
1000 return true;
1001 }
1002
1003 return false;
1004 }
1005
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001006 //===--------------------------------------------------------------------===//
1007 // Queries about the code at a SourceLocation.
1008 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +00001009
Reid Spencer5f016e22007-07-11 17:01:13 +00001010 /// getCharacterData - Return a pointer to the start of the specified location
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001011 /// in the appropriate spelling MemoryBuffer.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001012 ///
1013 /// \param Invalid If non-NULL, will be set \c true if an error occurs.
1014 const char *getCharacterData(SourceLocation SL, bool *Invalid = 0) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001015
Chris Lattner9dc1f532007-07-20 16:37:10 +00001016 /// getColumnNumber - Return the column # for the specified file position.
1017 /// This is significantly cheaper to compute than the line number. This
Chandler Carruth3201f382011-07-26 05:17:23 +00001018 /// returns zero if the column number isn't known. This may only be called
1019 /// on a file sloc, so you must choose a spelling or expansion location
Chris Lattnerf7cf85b2009-01-16 07:36:28 +00001020 /// before calling this method.
Eric Christopher5330ee02011-09-08 23:28:19 +00001021 unsigned getColumnNumber(FileID FID, unsigned FilePos,
Douglas Gregor50f6af72010-03-16 05:20:39 +00001022 bool *Invalid = 0) const;
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001023 unsigned getSpellingColumnNumber(SourceLocation Loc, bool *Invalid = 0) const;
Chandler Carrutha77c0312011-07-25 20:57:57 +00001024 unsigned getExpansionColumnNumber(SourceLocation Loc,
Chandler Carruthb49dcd22011-07-25 20:59:15 +00001025 bool *Invalid = 0) const;
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001026 unsigned getPresumedColumnNumber(SourceLocation Loc, bool *Invalid = 0) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001027
1028
Chris Lattnerdf7c17a2009-01-16 07:00:02 +00001029 /// getLineNumber - Given a SourceLocation, return the spelling line number
Reid Spencer5f016e22007-07-11 17:01:13 +00001030 /// for the position indicated. This requires building and caching a table of
1031 /// line offsets for the MemoryBuffer, so this is not cheap: use only when
1032 /// about to emit a diagnostic.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001033 unsigned getLineNumber(FileID FID, unsigned FilePos, bool *Invalid = 0) const;
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001034 unsigned getSpellingLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
Chandler Carruth64211622011-07-25 21:09:52 +00001035 unsigned getExpansionLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
Chandler Carruth5ef04ee2011-02-23 00:47:48 +00001036 unsigned getPresumedLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001037
Chris Lattnerbff5c512009-02-17 08:39:06 +00001038 /// Return the filename or buffer identifier of the buffer the location is in.
1039 /// Note that this name does not respect #line directives. Use getPresumedLoc
1040 /// for normal clients.
Douglas Gregor50f6af72010-03-16 05:20:39 +00001041 const char *getBufferName(SourceLocation Loc, bool *Invalid = 0) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Chris Lattner6b306672009-02-04 05:33:01 +00001043 /// getFileCharacteristic - return the file characteristic of the specified
Mike Stump1eb44332009-09-09 15:08:12 +00001044 /// source location, indicating whether this is a normal file, a system
Chris Lattner6b306672009-02-04 05:33:01 +00001045 /// header, or an "implicit extern C" system header.
1046 ///
1047 /// This state can be modified with flags on GNU linemarker directives like:
1048 /// # 4 "foo.h" 3
1049 /// which changes all source locations in the current file after that to be
1050 /// considered to be from a system header.
1051 SrcMgr::CharacteristicKind getFileCharacteristic(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001053 /// getPresumedLoc - This method returns the "presumed" location of a
1054 /// SourceLocation specifies. A "presumed location" can be modified by #line
1055 /// or GNU line marker directives. This provides a view on the data that a
1056 /// user should see in diagnostics, for example.
1057 ///
Chandler Carruth3201f382011-07-26 05:17:23 +00001058 /// Note that a presumed location is always given as the expansion point of
1059 /// an expansion location, not at the spelling location.
Douglas Gregorcb7b1e12010-11-12 07:15:47 +00001060 ///
1061 /// \returns The presumed location of the specified SourceLocation. If the
1062 /// presumed location cannot be calculate (e.g., because \p Loc is invalid
1063 /// or the file containing \p Loc has changed on disk), returns an invalid
1064 /// presumed location.
Chris Lattnerb9c3f962009-01-27 07:57:44 +00001065 PresumedLoc getPresumedLoc(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Ted Kremenek9fd87b12008-04-14 21:04:18 +00001067 /// isFromSameFile - Returns true if both SourceLocations correspond to
1068 /// the same file.
1069 bool isFromSameFile(SourceLocation Loc1, SourceLocation Loc2) const {
Chris Lattnera11d6172009-01-19 07:46:45 +00001070 return getFileID(Loc1) == getFileID(Loc2);
Ted Kremenek9fd87b12008-04-14 21:04:18 +00001071 }
Mike Stump1eb44332009-09-09 15:08:12 +00001072
Ted Kremenek9fd87b12008-04-14 21:04:18 +00001073 /// isFromMainFile - Returns true if the file of provided SourceLocation is
1074 /// the main file.
1075 bool isFromMainFile(SourceLocation Loc) const {
Chris Lattnera11d6172009-01-19 07:46:45 +00001076 return getFileID(Loc) == getMainFileID();
Mike Stump1eb44332009-09-09 15:08:12 +00001077 }
1078
Nico Weber7bfaaae2008-08-10 19:59:06 +00001079 /// isInSystemHeader - Returns if a SourceLocation is in a system header.
1080 bool isInSystemHeader(SourceLocation Loc) const {
Chris Lattner0b9e7362008-09-26 21:18:42 +00001081 return getFileCharacteristic(Loc) != SrcMgr::C_User;
Nico Weber7bfaaae2008-08-10 19:59:06 +00001082 }
Mike Stump1eb44332009-09-09 15:08:12 +00001083
Chris Lattner0d456582009-06-13 23:31:51 +00001084 /// isInExternCSystemHeader - Returns if a SourceLocation is in an "extern C"
1085 /// system header.
1086 bool isInExternCSystemHeader(SourceLocation Loc) const {
1087 return getFileCharacteristic(Loc) == SrcMgr::C_ExternCSystem;
1088 }
Mike Stump1eb44332009-09-09 15:08:12 +00001089
Matt Beaumont-Gayd87a0cd2012-01-06 22:43:58 +00001090 /// \brief Returns whether \p Loc is expanded from a macro in a system header.
1091 bool isInSystemMacro(SourceLocation loc) {
1092 return loc.isMacroID() && isInSystemHeader(getSpellingLoc(loc));
1093 }
1094
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001095 /// \brief The size of the SLocEnty that \p FID represents.
Argyrios Kyrtzidis984e42c2011-08-23 21:02:28 +00001096 unsigned getFileIDSize(FileID FID) const;
Argyrios Kyrtzidis54232ad2011-08-19 22:34:01 +00001097
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001098 /// \brief Given a specific FileID, returns true if \p Loc is inside that
1099 /// FileID chunk and sets relative offset (offset of \p Loc from beginning
1100 /// of FileID) to \p relativeOffset.
Argyrios Kyrtzidisd60a34a2011-08-19 22:34:17 +00001101 bool isInFileID(SourceLocation Loc, FileID FID,
1102 unsigned *RelativeOffset = 0) const {
Argyrios Kyrtzidisd7cb46c2011-08-23 21:02:45 +00001103 unsigned Offs = Loc.getOffset();
1104 if (isOffsetInFileID(FID, Offs)) {
1105 if (RelativeOffset)
1106 *RelativeOffset = Offs - getSLocEntry(FID).getOffset();
1107 return true;
1108 }
Argyrios Kyrtzidisd60a34a2011-08-19 22:34:17 +00001109
Argyrios Kyrtzidisd7cb46c2011-08-23 21:02:45 +00001110 return false;
1111 }
Argyrios Kyrtzidis469244a2011-05-28 03:56:11 +00001112
Chris Lattner06a062d2009-01-19 08:02:45 +00001113 //===--------------------------------------------------------------------===//
Chris Lattner5b9a5042009-01-26 07:57:50 +00001114 // Line Table Manipulation Routines
1115 //===--------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +00001116
Chris Lattner5b9a5042009-01-26 07:57:50 +00001117 /// getLineTableFilenameID - Return the uniqued ID for the specified filename.
Mike Stump1eb44332009-09-09 15:08:12 +00001118 ///
Chris Lattner686775d2011-07-20 06:58:45 +00001119 unsigned getLineTableFilenameID(StringRef Str);
Mike Stump1eb44332009-09-09 15:08:12 +00001120
Chris Lattner4c4ea172009-02-03 21:52:55 +00001121 /// AddLineNote - Add a line note to the line table for the FileID and offset
1122 /// specified by Loc. If FilenameID is -1, it is considered to be
1123 /// unspecified.
1124 void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID);
Chris Lattner9d79eba2009-02-04 05:21:58 +00001125 void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID,
Mike Stump1eb44332009-09-09 15:08:12 +00001126 bool IsFileEntry, bool IsFileExit,
Chris Lattner9d79eba2009-02-04 05:21:58 +00001127 bool IsSystemHeader, bool IsExternCHeader);
Douglas Gregorbd945002009-04-13 16:31:14 +00001128
1129 /// \brief Determine if the source manager has a line table.
1130 bool hasLineTable() const { return LineTable != 0; }
1131
1132 /// \brief Retrieve the stored line table.
1133 LineTableInfo &getLineTable();
1134
Chris Lattner5b9a5042009-01-26 07:57:50 +00001135 //===--------------------------------------------------------------------===//
Ted Kremenek457aaf02011-04-28 04:10:31 +00001136 // Queries for performance analysis.
1137 //===--------------------------------------------------------------------===//
1138
1139 /// Return the total amount of physical memory allocated by the
1140 /// ContentCache allocator.
1141 size_t getContentCacheSize() const {
1142 return ContentCacheAlloc.getTotalMemory();
1143 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001144
Ted Kremenekf61b8312011-04-28 20:36:42 +00001145 struct MemoryBufferSizes {
1146 const size_t malloc_bytes;
1147 const size_t mmap_bytes;
Eric Christopher5330ee02011-09-08 23:28:19 +00001148
Ted Kremenekf61b8312011-04-28 20:36:42 +00001149 MemoryBufferSizes(size_t malloc_bytes, size_t mmap_bytes)
1150 : malloc_bytes(malloc_bytes), mmap_bytes(mmap_bytes) {}
1151 };
1152
1153 /// Return the amount of memory used by memory buffers, breaking down
1154 /// by heap-backed versus mmap'ed memory.
1155 MemoryBufferSizes getMemoryBufferSizes() const;
Eric Christopher5330ee02011-09-08 23:28:19 +00001156
Ted Kremenekca7dc2b2011-07-26 23:46:06 +00001157 // Return the amount of memory used for various side tables and
1158 // data structures in the SourceManager.
1159 size_t getDataStructureSizes() const;
Ted Kremenek457aaf02011-04-28 04:10:31 +00001160
1161 //===--------------------------------------------------------------------===//
Chris Lattner06a062d2009-01-19 08:02:45 +00001162 // Other miscellaneous methods.
1163 //===--------------------------------------------------------------------===//
Argyrios Kyrtzidis10b46d22009-06-20 08:09:57 +00001164
1165 /// \brief Get the source location for the given file:line:col triplet.
1166 ///
1167 /// If the source file is included multiple times, the source location will
1168 /// be based upon the first inclusion.
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001169 SourceLocation translateFileLineCol(const FileEntry *SourceFile,
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001170 unsigned Line, unsigned Col) const;
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001171
Argyrios Kyrtzidisb201e162011-09-27 17:22:25 +00001172 /// \brief Get the FileID for the given file.
1173 ///
1174 /// If the source file is included multiple times, the FileID will be the
1175 /// first inclusion.
1176 FileID translateFile(const FileEntry *SourceFile) const;
1177
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001178 /// \brief Get the source location in \p FID for the given line:col.
1179 /// Returns null location if \p FID is not a file SLocEntry.
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001180 SourceLocation translateLineCol(FileID FID,
1181 unsigned Line, unsigned Col) const;
Argyrios Kyrtzidisefa2ff82011-09-19 20:40:29 +00001182
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001183 /// \brief If \p Loc points inside a function macro argument, the returned
Argyrios Kyrtzidisac836e42011-08-17 00:31:20 +00001184 /// location will be the macro location in which the argument was expanded.
1185 /// If a macro argument is used multiple times, the expanded location will
1186 /// be at the first expansion of the argument.
1187 /// e.g.
1188 /// MY_MACRO(foo);
1189 /// ^
1190 /// Passing a file location pointing at 'foo', will yield a macro location
1191 /// where 'foo' was expanded into.
Argyrios Kyrtzidis507097e2011-09-19 20:40:35 +00001192 SourceLocation getMacroArgExpandedLocation(SourceLocation Loc) const;
Mike Stump1eb44332009-09-09 15:08:12 +00001193
Argyrios Kyrtzidis2aa03d52009-06-23 22:01:48 +00001194 /// \brief Determines the order of 2 source locations in the translation unit.
1195 ///
1196 /// \returns true if LHS source location comes before RHS, false otherwise.
1197 bool isBeforeInTranslationUnit(SourceLocation LHS, SourceLocation RHS) const;
1198
Argyrios Kyrtzidisaec230d2011-09-01 20:53:18 +00001199 /// \brief Comparison function class.
1200 class LocBeforeThanCompare : public std::binary_function<SourceLocation,
1201 SourceLocation, bool> {
1202 SourceManager &SM;
1203
1204 public:
1205 explicit LocBeforeThanCompare(SourceManager &SM) : SM(SM) { }
1206
1207 bool operator()(SourceLocation LHS, SourceLocation RHS) const {
1208 return SM.isBeforeInTranslationUnit(LHS, RHS);
1209 }
1210 };
1211
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +00001212 /// \brief Determines the order of 2 source locations in the "source location
1213 /// address space".
Argyrios Kyrtzidis5d579e72011-08-23 21:02:35 +00001214 bool isBeforeInSLocAddrSpace(SourceLocation LHS, SourceLocation RHS) const {
1215 return isBeforeInSLocAddrSpace(LHS, RHS.getOffset());
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +00001216 }
1217
1218 /// \brief Determines the order of a source location and a source location
1219 /// offset in the "source location address space".
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001220 ///
Eric Christopher5330ee02011-09-08 23:28:19 +00001221 /// Note that we always consider source locations loaded from
Argyrios Kyrtzidis5d579e72011-08-23 21:02:35 +00001222 bool isBeforeInSLocAddrSpace(SourceLocation LHS, unsigned RHS) const {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001223 unsigned LHSOffset = LHS.getOffset();
1224 bool LHSLoaded = LHSOffset >= CurrentLoadedOffset;
1225 bool RHSLoaded = RHS >= CurrentLoadedOffset;
1226 if (LHSLoaded == RHSLoaded)
Argyrios Kyrtzidis5d579e72011-08-23 21:02:35 +00001227 return LHSOffset < RHS;
Eric Christopher5330ee02011-09-08 23:28:19 +00001228
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001229 return LHSLoaded;
Argyrios Kyrtzidisb73377e2011-07-07 03:40:34 +00001230 }
1231
Chris Lattnerc6fe32a2009-01-17 03:48:08 +00001232 // Iterators over FileInfos.
Chris Lattner0d0bf8c2009-02-03 07:30:45 +00001233 typedef llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>
1234 ::const_iterator fileinfo_iterator;
Chris Lattnerc6fe32a2009-01-17 03:48:08 +00001235 fileinfo_iterator fileinfo_begin() const { return FileInfos.begin(); }
1236 fileinfo_iterator fileinfo_end() const { return FileInfos.end(); }
Douglas Gregord93256e2010-01-28 06:00:51 +00001237 bool hasFileInfo(const FileEntry *File) const {
1238 return FileInfos.find(File) != FileInfos.end();
1239 }
Chris Lattnerc6fe32a2009-01-17 03:48:08 +00001240
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 /// PrintStats - Print statistics to stderr.
1242 ///
1243 void PrintStats() const;
Reid Spencer5f016e22007-07-11 17:01:13 +00001244
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001245 /// \brief Get the number of local SLocEntries we have.
1246 unsigned local_sloc_entry_size() const { return LocalSLocEntryTable.size(); }
Eric Christopher5330ee02011-09-08 23:28:19 +00001247
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001248 /// \brief Get a local SLocEntry. This is exposed for indexing.
Eric Christopher5330ee02011-09-08 23:28:19 +00001249 const SrcMgr::SLocEntry &getLocalSLocEntry(unsigned Index,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001250 bool *Invalid = 0) const {
1251 assert(Index < LocalSLocEntryTable.size() && "Invalid index");
1252 return LocalSLocEntryTable[Index];
Douglas Gregorbdfe48a2009-10-16 22:46:09 +00001253 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001254
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001255 /// \brief Get the number of loaded SLocEntries we have.
1256 unsigned loaded_sloc_entry_size() const { return LoadedSLocEntryTable.size();}
Eric Christopher5330ee02011-09-08 23:28:19 +00001257
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001258 /// \brief Get a loaded SLocEntry. This is exposed for indexing.
David Blaikie70042f52011-10-20 01:45:20 +00001259 const SrcMgr::SLocEntry &getLoadedSLocEntry(unsigned Index,
1260 bool *Invalid = 0) const {
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001261 assert(Index < LoadedSLocEntryTable.size() && "Invalid index");
1262 if (!SLocEntryLoaded[Index])
1263 ExternalSLocEntries->ReadSLocEntry(-(static_cast<int>(Index) + 2));
1264 return LoadedSLocEntryTable[Index];
1265 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001266
Douglas Gregore23ac652011-04-20 00:21:03 +00001267 const SrcMgr::SLocEntry &getSLocEntry(FileID FID, bool *Invalid = 0) const {
Argyrios Kyrtzidisc705d252011-10-18 21:59:54 +00001268 if (FID.ID == 0 || FID.ID == -1) {
1269 if (Invalid) *Invalid = true;
1270 return LocalSLocEntryTable[0];
1271 }
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001272 return getSLocEntryByID(FID.ID);
Douglas Gregorbd945002009-04-13 16:31:14 +00001273 }
1274
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001275 unsigned getNextLocalOffset() const { return NextLocalOffset; }
Eric Christopher5330ee02011-09-08 23:28:19 +00001276
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001277 void setExternalSLocEntrySource(ExternalSLocEntrySource *Source) {
1278 assert(LoadedSLocEntryTable.empty() &&
1279 "Invalidating existing loaded entries");
1280 ExternalSLocEntries = Source;
1281 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001282
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001283 /// \brief Allocate a number of loaded SLocEntries, which will be actually
1284 /// loaded on demand from the external source.
1285 ///
1286 /// NumSLocEntries will be allocated, which occupy a total of TotalSize space
1287 /// in the global source view. The lowest ID and the base offset of the
1288 /// entries will be returned.
1289 std::pair<int, unsigned>
1290 AllocateLoadedSLocEntries(unsigned NumSLocEntries, unsigned TotalSize);
Eric Christopher5330ee02011-09-08 23:28:19 +00001291
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001292 /// \brief Returns true if \p Loc came from a PCH/Module.
Argyrios Kyrtzidisaa6edae2011-09-19 20:40:05 +00001293 bool isLoadedSourceLocation(SourceLocation Loc) const {
1294 return Loc.getOffset() >= CurrentLoadedOffset;
1295 }
1296
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001297 /// \brief Returns true if \p Loc did not come from a PCH/Module.
Argyrios Kyrtzidisaa6edae2011-09-19 20:40:05 +00001298 bool isLocalSourceLocation(SourceLocation Loc) const {
1299 return Loc.getOffset() < NextLocalOffset;
1300 }
1301
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001302 /// \brief Returns true if \p FID came from a PCH/Module.
Argyrios Kyrtzidis71869912011-10-31 07:20:03 +00001303 bool isLoadedFileID(FileID FID) const {
1304 assert(FID.ID != -1 && "Using FileID sentinel value");
1305 return FID.ID < 0;
1306 }
1307
Matt Beaumont-Gay2c3c7672011-12-09 23:16:01 +00001308 /// \brief Returns true if \p FID did not come from a PCH/Module.
Argyrios Kyrtzidis71869912011-10-31 07:20:03 +00001309 bool isLocalFileID(FileID FID) const {
1310 return !isLoadedFileID(FID);
1311 }
1312
Ted Kremenek78d85f52007-10-30 21:08:08 +00001313private:
Douglas Gregore23ac652011-04-20 00:21:03 +00001314 const llvm::MemoryBuffer *getFakeBufferForRecovery() const;
1315
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001316 /// \brief Get the entry with the given unwrapped FileID.
1317 const SrcMgr::SLocEntry &getSLocEntryByID(int ID) const {
1318 assert(ID != -1 && "Using FileID sentinel value");
1319 if (ID < 0)
1320 return getLoadedSLocEntryByID(ID);
1321 return getLocalSLocEntry(static_cast<unsigned>(ID));
1322 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001323
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001324 const SrcMgr::SLocEntry &getLoadedSLocEntryByID(int ID) const {
1325 return getLoadedSLocEntry(static_cast<unsigned>(-ID - 2));
1326 }
Eric Christopher5330ee02011-09-08 23:28:19 +00001327
Chandler Carruthbf340e42011-07-26 03:03:05 +00001328 /// createExpansionLoc - Implements the common elements of storing an
Chandler Carruth3201f382011-07-26 05:17:23 +00001329 /// expansion info struct into the SLocEntry table and producing a source
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +00001330 /// location that refers to it.
Chandler Carruth78df8362011-07-26 04:41:47 +00001331 SourceLocation createExpansionLocImpl(const SrcMgr::ExpansionInfo &Expansion,
Chandler Carruthbf340e42011-07-26 03:03:05 +00001332 unsigned TokLength,
1333 int LoadedID = 0,
1334 unsigned LoadedOffset = 0);
Chandler Carruthc8d1ecc2011-07-07 23:56:36 +00001335
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001336 /// isOffsetInFileID - Return true if the specified FileID contains the
1337 /// specified SourceLocation offset. This is a very hot method.
1338 inline bool isOffsetInFileID(FileID FID, unsigned SLocOffset) const {
1339 const SrcMgr::SLocEntry &Entry = getSLocEntry(FID);
1340 // If the entry is after the offset, it can't contain it.
1341 if (SLocOffset < Entry.getOffset()) return false;
Mike Stump1eb44332009-09-09 15:08:12 +00001342
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001343 // If this is the very last entry then it does.
1344 if (FID.ID == -2)
1345 return true;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001346
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001347 // If it is the last local entry, then it does if the location is local.
1348 if (static_cast<unsigned>(FID.ID+1) == LocalSLocEntryTable.size()) {
1349 return SLocOffset < NextLocalOffset;
1350 }
1351
1352 // Otherwise, the entry after it has to not include it. This works for both
1353 // local and loaded entries.
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001354 return SLocOffset < getSLocEntry(FileID::get(FID.ID+1)).getOffset();
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001355 }
Mike Stump1eb44332009-09-09 15:08:12 +00001356
Ted Kremenek78d85f52007-10-30 21:08:08 +00001357 /// createFileID - Create a new fileID for the specified ContentCache and
1358 /// include position. This works regardless of whether the ContentCache
1359 /// corresponds to a file or some other input source.
Chris Lattner2b2453a2009-01-17 06:22:33 +00001360 FileID createFileID(const SrcMgr::ContentCache* File,
1361 SourceLocation IncludePos,
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001362 SrcMgr::CharacteristicKind DirCharacter,
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001363 int LoadedID, unsigned LoadedOffset);
Mike Stump1eb44332009-09-09 15:08:12 +00001364
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001365 const SrcMgr::ContentCache *
1366 getOrCreateContentCache(const FileEntry *SourceFile);
Ted Kremenekc16c2082009-01-06 01:55:26 +00001367
Ted Kremenek78d85f52007-10-30 21:08:08 +00001368 /// createMemBufferContentCache - Create a new ContentCache for the specified
1369 /// memory buffer.
Mike Stump1eb44332009-09-09 15:08:12 +00001370 const SrcMgr::ContentCache*
Chris Lattner2b2453a2009-01-17 06:22:33 +00001371 createMemBufferContentCache(const llvm::MemoryBuffer *Buf);
Mike Stump1eb44332009-09-09 15:08:12 +00001372
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001373 FileID getFileIDSlow(unsigned SLocOffset) const;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001374 FileID getFileIDLocal(unsigned SLocOffset) const;
1375 FileID getFileIDLoaded(unsigned SLocOffset) const;
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001376
Chandler Carruthf84ef952011-07-25 20:52:26 +00001377 SourceLocation getExpansionLocSlowCase(SourceLocation Loc) const;
Chris Lattneraddb7972009-01-26 20:04:19 +00001378 SourceLocation getSpellingLocSlowCase(SourceLocation Loc) const;
Argyrios Kyrtzidis796dbfb2011-10-12 07:07:40 +00001379 SourceLocation getFileLocSlowCase(SourceLocation Loc) const;
Chris Lattneraddb7972009-01-26 20:04:19 +00001380
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001381 std::pair<FileID, unsigned>
Chandler Carruthe7b2b6e2011-07-25 20:52:32 +00001382 getDecomposedExpansionLocSlowCase(const SrcMgr::SLocEntry *E) const;
Chris Lattnerde7aeef2009-01-26 00:43:02 +00001383 std::pair<FileID, unsigned>
1384 getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
1385 unsigned Offset) const;
Argyrios Kyrtzidisfb3612e2011-09-26 08:01:50 +00001386 void computeMacroArgsCache(MacroArgsMap *&MacroArgsCache, FileID FID) const;
Argyrios Kyrtzidisac1ffcc2011-09-19 20:39:54 +00001387
1388 friend class ASTReader;
1389 friend class ASTWriter;
Reid Spencer5f016e22007-07-11 17:01:13 +00001390};
1391
1392
1393} // end namespace clang
1394
1395#endif