SourceManager.h revision 70042f5d1ca378138f90b7b9384023701f5d03d8
15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- SourceManager.h - Track and cache source files ---------*- C++ -*-===//
25f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
35f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//                     The LLVM Compiler Infrastructure
45f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
50bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// This file is distributed under the University of Illinois Open Source
60bc735ffcfb223c0186419547abaa5c84482663eChris Lattner// License. See LICENSE.TXT for details.
75f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
85f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
95f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//  This file defines the SourceManager interface.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#ifndef LLVM_CLANG_SOURCEMANAGER_H
155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#define LLVM_CLANG_SOURCEMANAGER_H
165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
17d47d3b0cfeb7e8564ff77f48130fe63282b6d127Chris Lattner#include "clang/Basic/LLVM.h"
185f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include "clang/Basic/SourceLocation.h"
190d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner#include "llvm/Support/Allocator.h"
2003013fa9a0bf1ef4b907f5fec006c8f4000fdd21Michael J. Spencer#include "llvm/Support/DataTypes.h"
21c815108d08b0417c6f1104e7df70dc5278839406Douglas Gregor#include "llvm/ADT/PointerIntPair.h"
22aea67dbd653a2dd6dd5cc2159279e81e855b2482Douglas Gregor#include "llvm/ADT/PointerUnion.h"
234f32786ac45210143654390177105eb749b614e9Ted Kremenek#include "llvm/ADT/IntrusiveRefCntPtr.h"
240d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner#include "llvm/ADT/DenseMap.h"
25f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek#include "llvm/Support/MemoryBuffer.h"
26d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis#include <map>
275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#include <vector>
289dc62f044a6ba21f503bd56607d94b32704e7945Chris Lattner#include <cassert>
295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencernamespace clang {
311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
32d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikieclass DiagnosticsEngine;
335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass SourceManager;
34099b4747042352f69184481a48508b599a8d3f73Ted Kremenekclass FileManager;
355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass FileEntry;
365b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattnerclass LineTableInfo;
37b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidisclass LangOptions;
38d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidisclass ASTWriter;
39d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidisclass ASTReader;
405330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
4129f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// There are three different types of locations in a file: a spelling
4229f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// location, an expansion location, and a presumed location.
4329f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher///
4429f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// Given an example of:
4529f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// #define min(x, y) x < y ? x : y
4629f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher///
4729f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// and then later on a use of min:
4829f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// #line 17
495330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher/// return min(a, b);
5029f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher///
5129f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// The expansion location is the line in the source code where the macro
5229f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// was expanded (the return statement), the spelling location is the
5329f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// location in the source where the macro was originally defined,
5429f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// and the presumed location is where the line directive states that
5529f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher/// the line is 17, or any other line.
5629f39425fc7fcaede88a7e573f392975f8dc5e3eEric Christopher
570b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner/// SrcMgr - Public enums and private classes that are part of the
580b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner/// SourceManager implementation.
595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencernamespace SrcMgr {
619d72851fec9e9c62570a027d42701562bbf29751Chris Lattner  /// CharacteristicKind - This is used to represent whether a file or directory
620b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner  /// holds normal user code, system code, or system code which is implicitly
630b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner  /// 'extern "C"' in C++ mode.  Entire directories can be tagged with this
640b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner  /// (this is maintained by DirectoryLookup and friends) as can specific
65f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// FileInfos when a #pragma system_header is seen or various other cases.
660b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner  ///
679d72851fec9e9c62570a027d42701562bbf29751Chris Lattner  enum CharacteristicKind {
680b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner    C_User, C_System, C_ExternCSystem
690b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner  };
701eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
714710a8ea766b45079bf1c1dd36e29b59bb90829dDan Gohman  /// ContentCache - One instance of this struct is kept for every file
7206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  /// loaded or used.  This object owns the MemoryBuffer object.
73c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek  class ContentCache {
74f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    enum CCFlags {
75f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      /// \brief Whether the buffer is invalid.
76f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      InvalidFlag = 0x01,
77f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      /// \brief Whether the buffer should not be freed on destruction.
78f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      DoNotFreeFlag = 0x02
79f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    };
805330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
81c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    /// Buffer - The actual buffer containing the characters from the input
82c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    /// file.  This is owned by the ContentCache object.
83f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    /// The bits indicate indicates whether the buffer is invalid.
84f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    mutable llvm::PointerIntPair<const llvm::MemoryBuffer *, 2> Buffer;
85c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek
86c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek  public:
87b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// Reference to the file entry representing this ContentCache.
88b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// This reference does not own the FileEntry object.
89b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// It is possible for this to be NULL if
9078d85f53b093867bbb0123f016956178eea7343eTed Kremenek    /// the ContentCache encapsulates an imaginary text buffer.
91b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    const FileEntry *OrigEntry;
92b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis
93b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// \brief References the file which the contents were actually loaded from.
94b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// Can be different from 'Entry' if we overridden the contents of one file
95b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    /// with the contents of another file.
96b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    const FileEntry *ContentsEntry;
971eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
980d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner    /// SourceLineCache - A bump pointer allocated array of offsets for each
990d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner    /// source line.  This is lazily computed.  This is owned by the
1000d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner    /// SourceManager BumpPointerAllocator object.
10105816591ec488a933dfecc9ff9f3cbf3c32767c2Chris Lattner    unsigned *SourceLineCache;
1021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
103b6427f821de8cce1566fb6e755143ea0918d5543Ted Kremenek    /// NumLines - The number of lines in this ContentCache.  This is only valid
104b6427f821de8cce1566fb6e755143ea0918d5543Ted Kremenek    /// if SourceLineCache is non-null.
1055f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    unsigned NumLines;
10610b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis
10736c35ba0aca641e60e5dbee8efbc620c08b9bd61Douglas Gregor    /// getBuffer - Returns the memory buffer for the associated content.
10836c35ba0aca641e60e5dbee8efbc620c08b9bd61Douglas Gregor    ///
109a92d7e7a55a35b28437103130904a6401bf35408Jonathan D. Turner    /// \param Diag Object through which diagnostics will be emitted if the
11036c35ba0aca641e60e5dbee8efbc620c08b9bd61Douglas Gregor    /// buffer cannot be retrieved.
1115330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher    ///
112e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner    /// \param Loc If specified, is the location that invalid file diagnostics
113e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner    ///     will be emitted at.
114e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner    ///
11536c35ba0aca641e60e5dbee8efbc620c08b9bd61Douglas Gregor    /// \param Invalid If non-NULL, will be set \c true if an error occurred.
116d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie    const llvm::MemoryBuffer *getBuffer(DiagnosticsEngine &Diag,
117e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner                                        const SourceManager &SM,
118e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner                                        SourceLocation Loc = SourceLocation(),
11936c35ba0aca641e60e5dbee8efbc620c08b9bd61Douglas Gregor                                        bool *Invalid = 0) const;
1201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
121c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    /// getSize - Returns the size of the content encapsulated by this
122c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    ///  ContentCache. This can be the size of the source file or the size of an
123c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    ///  arbitrary scratch buffer.  If the ContentCache encapsulates a source
124c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    ///  file this size is retrieved from the file's FileEntry.
125c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    unsigned getSize() const;
1261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
127c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    /// getSizeBytesMapped - Returns the number of bytes actually mapped for
1283201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    /// this ContentCache. This can be 0 if the MemBuffer was not actually
1293201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    /// expanded.
130c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    unsigned getSizeBytesMapped() const;
1315330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
132f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    /// Returns the kind of memory used to back the memory buffer for
133f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    /// this content cache.  This is used for performance analysis.
134f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    llvm::MemoryBuffer::BufferKind getMemoryBufferKind() const;
1351eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
13605816591ec488a933dfecc9ff9f3cbf3c32767c2Chris Lattner    void setBuffer(const llvm::MemoryBuffer *B) {
137c815108d08b0417c6f1104e7df70dc5278839406Douglas Gregor      assert(!Buffer.getPointer() && "MemoryBuffer already set.");
138c815108d08b0417c6f1104e7df70dc5278839406Douglas Gregor      Buffer.setPointer(B);
139c815108d08b0417c6f1104e7df70dc5278839406Douglas Gregor      Buffer.setInt(false);
140c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek    }
1415330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
142cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor    /// \brief Get the underlying buffer, returning NULL if the buffer is not
143cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor    /// yet available.
144cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor    const llvm::MemoryBuffer *getRawBuffer() const {
145cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor      return Buffer.getPointer();
146cc5888d833caf90ebda37f24da40d2cd06b4d820Douglas Gregor    }
1471eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1482968442603b029949246467253eeac8139a5b6d8Douglas Gregor    /// \brief Replace the existing buffer (which will be deleted)
1492968442603b029949246467253eeac8139a5b6d8Douglas Gregor    /// with the given buffer.
150f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    void replaceBuffer(const llvm::MemoryBuffer *B, bool DoNotFree = false);
1512968442603b029949246467253eeac8139a5b6d8Douglas Gregor
152f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    /// \brief Determine whether the buffer itself is invalid.
153f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    bool isBufferInvalid() const {
154f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      return Buffer.getInt() & InvalidFlag;
155f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    }
1565330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
157f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    /// \brief Determine whether the buffer should be freed.
158f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    bool shouldFreeBuffer() const {
159f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor      return (Buffer.getInt() & DoNotFreeFlag) == 0;
160f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor    }
1615330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1620d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner    ContentCache(const FileEntry *Ent = 0)
163b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis      : Buffer(0, false), OrigEntry(Ent), ContentsEntry(Ent),
164fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis        SourceLineCache(0), NumLines(0) {}
165b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis
166b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis    ContentCache(const FileEntry *Ent, const FileEntry *contentEnt)
167b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis      : Buffer(0, false), OrigEntry(Ent), ContentsEntry(contentEnt),
168fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis        SourceLineCache(0), NumLines(0) {}
16978d85f53b093867bbb0123f016956178eea7343eTed Kremenek
17078d85f53b093867bbb0123f016956178eea7343eTed Kremenek    ~ContentCache();
1711eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1720d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek    /// The copy ctor does not allow copies where source object has either
1730d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek    ///  a non-NULL Buffer or SourceLineCache.  Ownership of allocated memory
174fc8f0e14ad142ed811e90fbd9a30e419e301c717Chris Lattner    ///  is not transferred, so this is a logical error.
1755330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher    ContentCache(const ContentCache &RHS)
176fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis      : Buffer(0, false), SourceLineCache(0)
177c815108d08b0417c6f1104e7df70dc5278839406Douglas Gregor    {
178b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis      OrigEntry = RHS.OrigEntry;
179b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis      ContentsEntry = RHS.ContentsEntry;
1800d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek
181d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis      assert (RHS.Buffer.getPointer() == 0 && RHS.SourceLineCache == 0 &&
182fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis              "Passed ContentCache object cannot own a buffer.");
1831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1841eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      NumLines = RHS.NumLines;
1850d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek    }
1861eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1870d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek  private:
1880d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek    // Disable assignments.
1891eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    ContentCache &operator=(const ContentCache& RHS);
1901eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  };
1915f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
192de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// FileInfo - Information about a FileID, basically just the logical file
193de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// that it represents and include stack information.
1945f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  ///
195de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// Each FileInfo has include stack information, indicating where it came
1963201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// from. This information encodes the #include chain that a token was
1973201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// expanded from. The main include file has an invalid IncludeLoc.
1985f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  ///
199de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// FileInfos contain a "ContentCache *", with the contents of the file.
2005f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  ///
201de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  class FileInfo {
2025f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    /// IncludeLoc - The location of the #include that brought in this file.
203de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    /// This is an invalid SLOC for the main file (top of the #include chain).
204de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    unsigned IncludeLoc;  // Really a SourceLocation
2051eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
206d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    /// \brief Number of FileIDs (files and macros) that were created during
207d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    /// preprocessing of this #include, including this SLocEntry.
208d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    /// Zero means the preprocessor didn't provide such info for this SLocEntry.
209d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    unsigned NumCreatedFIDs;
210d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
2116e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    /// Data - This contains the ContentCache* and the bits indicating the
2126e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    /// characteristic of the file and whether it has #line info, all bitmangled
2136e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    /// together.
2146e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    uintptr_t Data;
215d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
21621032df7a0dfc129a8f0c5e004811b455baafb7aArgyrios Kyrtzidis    friend class clang::SourceManager;
21721032df7a0dfc129a8f0c5e004811b455baafb7aArgyrios Kyrtzidis    friend class clang::ASTWriter;
21821032df7a0dfc129a8f0c5e004811b455baafb7aArgyrios Kyrtzidis    friend class clang::ASTReader;
21978d85f53b093867bbb0123f016956178eea7343eTed Kremenek  public:
220de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    /// get - Return a FileInfo object.
221de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    static FileInfo get(SourceLocation IL, const ContentCache *Con,
222de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner                        CharacteristicKind FileCharacter) {
223de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      FileInfo X;
224de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      X.IncludeLoc = IL.getRawEncoding();
225d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis      X.NumCreatedFIDs = 0;
2266e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner      X.Data = (uintptr_t)Con;
22700282d6e1194655a2e89f940bd6fa8484b52e666Chris Lattner      assert((X.Data & 7) == 0 &&"ContentCache pointer insufficiently aligned");
2286e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner      assert((unsigned)FileCharacter < 4 && "invalid file character");
2296e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner      X.Data |= (unsigned)FileCharacter;
2305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer      return X;
2315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
2321eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
233de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    SourceLocation getIncludeLoc() const {
234de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return SourceLocation::getFromRawEncoding(IncludeLoc);
235de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
2366e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    const ContentCache* getContentCache() const {
23700282d6e1194655a2e89f940bd6fa8484b52e666Chris Lattner      return reinterpret_cast<const ContentCache*>(Data & ~7UL);
2386e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner    }
2391eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2400b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner    /// getCharacteristic - Return whether this is a system header or not.
2411eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump    CharacteristicKind getFileCharacteristic() const {
2426e1aff2f586025f2d385ee49239f626b0fc63fd7Chris Lattner      return (CharacteristicKind)(Data & 3);
2430b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner    }
244ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner
245ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    /// hasLineDirectives - Return true if this FileID has #line directives in
246ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    /// it.
247ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    bool hasLineDirectives() const { return (Data & 4) != 0; }
2481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
249ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    /// setHasLineDirectives - Set the flag that indicates that this FileID has
250ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    /// line table entries associated with it.
251ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    void setHasLineDirectives() {
252ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner      Data |= 4;
253ac50e3427cb9eb3dc9f13f29a78f00ef3122433dChris Lattner    }
2549dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  };
2551eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
25678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  /// ExpansionInfo - Each ExpansionInfo encodes the expansion location - where
25778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  /// the token was ultimately expanded, and the SpellingLoc - where the actual
25878df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  /// character data for the token came from.
25978df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  class ExpansionInfo {
26078df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    // Really these are all SourceLocations.
2611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
262e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner    /// SpellingLoc - Where the spelling for the token can be found.
263e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner    unsigned SpellingLoc;
2641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
26578df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// ExpansionLocStart/ExpansionLocEnd - In a macro expansion, these
26678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// indicate the start and end of the expansion. In object-like macros,
2673201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    /// these will be the same. In a function-like macro expansion, the start
2683201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    /// will be the identifier and the end will be the ')'. Finally, in
269c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    /// macro-argument instantitions, the end will be 'SourceLocation()', an
270c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    /// invalid location.
27178df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    unsigned ExpansionLocStart, ExpansionLocEnd;
272c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth
2739dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  public:
274de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    SourceLocation getSpellingLoc() const {
275de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return SourceLocation::getFromRawEncoding(SpellingLoc);
276de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
27778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    SourceLocation getExpansionLocStart() const {
27878df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      return SourceLocation::getFromRawEncoding(ExpansionLocStart);
279e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner    }
28078df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    SourceLocation getExpansionLocEnd() const {
281c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth      SourceLocation EndLoc =
28278df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth        SourceLocation::getFromRawEncoding(ExpansionLocEnd);
28378df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      return EndLoc.isInvalid() ? getExpansionLocStart() : EndLoc;
284e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner    }
2851eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
28678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    std::pair<SourceLocation,SourceLocation> getExpansionLocRange() const {
28778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      return std::make_pair(getExpansionLocStart(), getExpansionLocEnd());
288e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner    }
2891eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
29096d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth    bool isMacroArgExpansion() const {
291c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth      // Note that this needs to return false for default constructed objects.
29278df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      return getExpansionLocStart().isValid() &&
29378df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth        SourceLocation::getFromRawEncoding(ExpansionLocEnd).isInvalid();
294c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    }
295c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth
29678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// create - Return a ExpansionInfo for an expansion. Start and End specify
29778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// the expansion range (where the macro is expanded), and SpellingLoc
29878df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// specifies the spelling location (where the characters from the token
29978df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// come from). All three can refer to normal File SLocs or expansion
30078df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// locations.
30178df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    static ExpansionInfo create(SourceLocation SpellingLoc,
30278df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth                                SourceLocation Start, SourceLocation End) {
30378df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      ExpansionInfo X;
30478df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      X.SpellingLoc = SpellingLoc.getRawEncoding();
30578df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      X.ExpansionLocStart = Start.getRawEncoding();
30678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      X.ExpansionLocEnd = End.getRawEncoding();
3079dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner      return X;
3085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    }
309c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth
31078df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// createForMacroArg - Return a special ExpansionInfo for the expansion of
31178df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// a macro argument into a function-like macro's body. ExpansionLoc
31278df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// specifies the expansion location (where the macro is expanded). This
31378df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// doesn't need to be a range because a macro is always expanded at
31478df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// a macro parameter reference, and macro parameters are always exactly
31578df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// one token. SpellingLoc specifies the spelling location (where the
31678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// characters from the token come from). ExpansionLoc and SpellingLoc can
31778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// both refer to normal File SLocs or expansion locations.
318c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    ///
319c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    /// Given the code:
320c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    /// \code
321c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    ///   #define F(x) f(x)
322c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    ///   F(42);
323c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    /// \endcode
324c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    ///
32578df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// When expanding '\c F(42)', the '\c x' would call this with an
32678df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// SpellingLoc pointing at '\c 42' anad an ExpansionLoc pointing at its
32778df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    /// location in the definition of '\c F'.
32878df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    static ExpansionInfo createForMacroArg(SourceLocation SpellingLoc,
32978df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth                                           SourceLocation ExpansionLoc) {
330c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth      // We store an intentionally invalid source location for the end of the
33178df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      // expansion range to mark that this is a macro argument ion rather than
33278df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      // a normal one.
33378df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth      return create(SpellingLoc, ExpansionLoc, SourceLocation());
334c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth    }
335de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  };
3361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
337de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// SLocEntry - This is a discriminated union of FileInfo and
33878df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  /// ExpansionInfo.  SourceManager keeps an array of these objects, and
339de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// they are uniquely identified by the FileID datatype.
340de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  class SLocEntry {
3413201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    unsigned Offset;   // low bit is set for expansion info.
342de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    union {
343de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      FileInfo File;
3441728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth      ExpansionInfo Expansion;
345de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    };
346de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  public:
347de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    unsigned getOffset() const { return Offset >> 1; }
3481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3491728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth    bool isExpansion() const { return Offset & 1; }
3501728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth    bool isFile() const { return !isExpansion(); }
3511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
352de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    const FileInfo &getFile() const {
353de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      assert(isFile() && "Not a file SLocEntry!");
354de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return File;
355de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
356de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
3571728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth    const ExpansionInfo &getExpansion() const {
3581728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth      assert(isExpansion() && "Not a macro expansion SLocEntry!");
3591728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth      return Expansion;
360de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
3611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
362de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    static SLocEntry get(unsigned Offset, const FileInfo &FI) {
363de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      SLocEntry E;
364de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      E.Offset = Offset << 1;
365de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      E.File = FI;
366de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return E;
367de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
368de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
36978df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth    static SLocEntry get(unsigned Offset, const ExpansionInfo &Expansion) {
370de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      SLocEntry E;
371de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      E.Offset = (Offset << 1) | 1;
3721728762d5a8cfaf8d64385f47b311e84de1ae7a2Chandler Carruth      E.Expansion = Expansion;
373de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return E;
374de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    }
3755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  };
3765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}  // end SrcMgr namespace.
3777f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
3787f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor/// \brief External source of source location entries.
3797f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregorclass ExternalSLocEntrySource {
3807f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregorpublic:
3817f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor  virtual ~ExternalSLocEntrySource();
3827f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
383f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Read the source location entry with index ID, which will always be
384f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// less than -1.
385e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  ///
386e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  /// \returns true if an error occurred that prevented the source-location
387e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  /// entry from being loaded.
388f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  virtual bool ReadSLocEntry(int ID) = 0;
3897f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor};
3905330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
391dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner
392dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner/// IsBeforeInTranslationUnitCache - This class holds the cache used by
393dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner/// isBeforeInTranslationUnit.  The cache structure is complex enough to be
394dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner/// worth breaking out of SourceManager.
395dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattnerclass IsBeforeInTranslationUnitCache {
396dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// L/R QueryFID - These are the FID's of the cached query.  If these match up
397dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// with a subsequent query, the result can be reused.
398dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  FileID LQueryFID, RQueryFID;
39937e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis
40037e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  /// \brief True if LQueryFID was created before RQueryFID. This is used
40137e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  /// to compare macro expansion locations.
40237e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  bool IsLQFIDBeforeRQFID;
40337e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis
404dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// CommonFID - This is the file found in common between the two #include
405dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// traces.  It is the nearest common ancestor of the #include tree.
406dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  FileID CommonFID;
4075330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
408dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// L/R CommonOffset - This is the offset of the previous query in CommonFID.
409dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// Usually, this represents the location of the #include for QueryFID, but if
410dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// LQueryFID is a parent of RQueryFID (or vise versa) then these can be a
411dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// random token in the parent.
412dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  unsigned LCommonOffset, RCommonOffset;
413dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattnerpublic:
4145330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
415dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// isCacheValid - Return true if the currently cached values match up with
416dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// the specified LHS/RHS query.  If not, we can't use the cache.
417dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  bool isCacheValid(FileID LHS, FileID RHS) const {
418dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    return LQueryFID == LHS && RQueryFID == RHS;
419dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  }
4205330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
421dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// getCachedResult - If the cache is valid, compute the result given the
422dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  /// specified offsets in the LHS/RHS FID's.
423dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  bool getCachedResult(unsigned LOffset, unsigned ROffset) const {
424dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    // If one of the query files is the common file, use the offset.  Otherwise,
425dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    // use the #include loc in the common file.
426dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    if (LQueryFID != CommonFID) LOffset = LCommonOffset;
427dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    if (RQueryFID != CommonFID) ROffset = RCommonOffset;
42837e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis
42937e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    // It is common for multiple macro expansions to be "included" from the same
43037e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    // location (expansion location), in which case use the order of the FileIDs
4314d1cbcf6b9aaae7f82c6e332f46b2ad2d8971bd0Argyrios Kyrtzidis    // to determine which came first. This will also take care the case where
4324d1cbcf6b9aaae7f82c6e332f46b2ad2d8971bd0Argyrios Kyrtzidis    // one of the locations points at the inclusion/expansion point of the other
4334d1cbcf6b9aaae7f82c6e332f46b2ad2d8971bd0Argyrios Kyrtzidis    // in which case its FileID will come before the other.
4344d1cbcf6b9aaae7f82c6e332f46b2ad2d8971bd0Argyrios Kyrtzidis    if (LOffset == ROffset &&
4354d1cbcf6b9aaae7f82c6e332f46b2ad2d8971bd0Argyrios Kyrtzidis        (LQueryFID != CommonFID || RQueryFID != CommonFID))
43637e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis      return IsLQFIDBeforeRQFID;
43737e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis
438dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    return LOffset < ROffset;
439dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  }
4405330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
441dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  // Set up a new query.
44237e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  void setQueryFIDs(FileID LHS, FileID RHS, bool isLFIDBeforeRFID) {
44337e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    assert(LHS != RHS);
444dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    LQueryFID = LHS;
445dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    RQueryFID = RHS;
44637e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    IsLQFIDBeforeRQFID = isLFIDBeforeRFID;
44737e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  }
44837e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis
44937e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis  void clear() {
45037e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    LQueryFID = RQueryFID = FileID();
45137e59a10a7a537428e5997fd5896f5b89fd34e6bArgyrios Kyrtzidis    IsLQFIDBeforeRQFID = false;
452dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  }
4535330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
454dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  void setCommonLoc(FileID commonFID, unsigned lCommonOffset,
455dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner                    unsigned rCommonOffset) {
456dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    CommonFID = commonFID;
457dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    LCommonOffset = lCommonOffset;
458dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner    RCommonOffset = rCommonOffset;
459dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  }
4605330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
461dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner};
4627f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
463f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor/// \brief This class handles loading and caching of source files into memory.
464f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor///
465f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor/// This object owns the MemoryBuffer objects for all of the loaded
4665f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// files and assigns unique FileID's for each unique #include chain.
4675f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer///
4685f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// The SourceManager can be queried for information about SourceLocation
4693201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// objects, turning them into either spelling or expansion locations. Spelling
4703201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// locations represent where the bytes corresponding to a token came from and
4713201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// expansion locations represent where the location is in the user's view. In
4723201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// the case of a macro expansion, for example, the spelling location indicates
4733201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// where the expanded token came from and the expansion location specifies
4743201f382956ed9beee9fb31229c2835c1208889cChandler Carruth/// where it was expanded.
4754f32786ac45210143654390177105eb749b614e9Ted Kremenekclass SourceManager : public llvm::RefCountedBase<SourceManager> {
476d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  /// \brief DiagnosticsEngine object.
477d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine &Diag;
478389db16c63eec6ecfa9b235155252d8da766e94eArgyrios Kyrtzidis
479389db16c63eec6ecfa9b235155252d8da766e94eArgyrios Kyrtzidis  FileManager &FileMgr;
480389db16c63eec6ecfa9b235155252d8da766e94eArgyrios Kyrtzidis
4810d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  mutable llvm::BumpPtrAllocator ContentCacheAlloc;
4821eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
4835f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// FileInfos - Memoized information about all of the files tracked by this
4840d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek  /// SourceManager.  This set allows us to merge ContentCache entries based
4850d892d8bfddd4916cc4f3467e1184a623d0716daTed Kremenek  /// on their FileEntry*.  All ContentCache objects will thus have unique,
4861eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  /// non-null, FileEntry pointers.
4870d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*> FileInfos;
4881eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
489299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  /// \brief True if the ContentCache for files that are overriden by other
490299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  /// files, should report the original file name. Defaults to true.
491299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  bool OverridenFilesKeepOriginalName;
492299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis
493b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  /// \brief Files that have been overriden with the contents from another file.
494b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  llvm::DenseMap<const FileEntry *, const FileEntry *> OverriddenFiles;
495b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis
4965f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// MemBufferInfos - Information about various memory buffers that we have
4970d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  /// read in.  All FileEntry* within the stored ContentCache objects are NULL,
4980d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  /// as they do not refer to a file.
4990d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  std::vector<SrcMgr::ContentCache*> MemBufferInfos;
5001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
501f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief The table of SLocEntries that are local to this module.
502f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
503f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// Positive FileIDs are indexes into this table. Entry 0 indicates an invalid
5043201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// expansion.
505f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  std::vector<SrcMgr::SLocEntry> LocalSLocEntryTable;
506f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor
507f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief The table of SLocEntries that are loaded from other modules.
508f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
509f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// Negative FileIDs are indexes into this table. To get from ID to an index,
510f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// use (-ID - 2).
511f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  std::vector<SrcMgr::SLocEntry> LoadedSLocEntryTable;
5127f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
513f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief The starting offset of the next local SLocEntry.
514f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
515f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// This is LocalSLocEntryTable.back().Offset + the size of that entry.
516f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  unsigned NextLocalOffset;
517f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor
518f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief The starting offset of the latest batch of loaded SLocEntries.
519f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
520f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// This is LoadedSLocEntryTable.back().Offset, except that that entry might
521f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// not have been loaded, so that value would be unknown.
522f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  unsigned CurrentLoadedOffset;
523f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor
524ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// \brief The highest possible offset is 2^31-1, so CurrentLoadedOffset
525ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// starts at 2^31.
526ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  static const unsigned MaxLoadedOffset = 1U << 31U;
527ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis
528f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief A bitmap that indicates whether the entries of LoadedSLocEntryTable
529f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// have already been loaded from the external source.
530f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
531f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// Same indexing as LoadedSLocEntryTable.
5327f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor  std::vector<bool> SLocEntryLoaded;
5337f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
5347f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor  /// \brief An external source for source location entries.
5357f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor  ExternalSLocEntrySource *ExternalSLocEntries;
5367f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
537de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// LastFileIDLookup - This is a one-entry cache to speed up getFileID.
538de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// LastFileIDLookup records the last FileID looked up or created, because it
539de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// is very common to look up many tokens from the same file.
540de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  mutable FileID LastFileIDLookup;
5411eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5425b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  /// LineTable - This holds information for #line directives.  It is referenced
5435b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  /// by indices from SLocEntryTable.
5445b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  LineTableInfo *LineTable;
5451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5465e36a7a89da5d69ece23fc8228624a053f75c645Chris Lattner  /// LastLineNo - These ivars serve as a cache used in the getLineNumber
5475e36a7a89da5d69ece23fc8228624a053f75c645Chris Lattner  /// method which is used to speedup getLineNumber calls to nearby locations.
5482b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  mutable FileID LastLineNoFileIDQuery;
549f812a45dd93634c9300ed5533bd26b56374714a1Chris Lattner  mutable SrcMgr::ContentCache *LastLineNoContentCache;
550f812a45dd93634c9300ed5533bd26b56374714a1Chris Lattner  mutable unsigned LastLineNoFilePos;
551f812a45dd93634c9300ed5533bd26b56374714a1Chris Lattner  mutable unsigned LastLineNoResult;
5521eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
55376edd0e4ae0592a7225d50d0bad6732ac64dca2aTed Kremenek  /// MainFileID - The file ID for the main source file of the translation unit.
5542b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  FileID MainFileID;
55549c1f4aa2a6c360d25d605004ec3c4affd62db77Steve Naroff
556507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  /// \brief The file ID for the precompiled preamble there is one.
557507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  FileID PreambleFileID;
558507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis
559de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  // Statistics for -print-stats.
560de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  mutable unsigned NumLinearScans, NumBinaryProbes;
5611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5622aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis  // Cache results for the isBeforeInTranslationUnit method.
563dcb1d68f6ffa183f3919aee6b554aec3793bf13eChris Lattner  mutable IsBeforeInTranslationUnitCache IsBeforeInTUCache;
5641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
565e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  // Cache for the "fake" buffer used for error-recovery purposes.
566e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  mutable llvm::MemoryBuffer *FakeBufferForRecovery;
5675330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
568fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis  /// \brief Lazily computed map of macro argument chunks to their expanded
569fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis  /// source location.
570fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis  typedef std::map<unsigned, SourceLocation> MacroArgsMap;
571fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis
57270042f5d1ca378138f90b7b9384023701f5d03d8David Blaikie  mutable llvm::DenseMap<FileID, MacroArgsMap *> MacroArgsCacheMap;
573fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis
57449c1f4aa2a6c360d25d605004ec3c4affd62db77Steve Naroff  // SourceManager doesn't support copy construction.
57549c1f4aa2a6c360d25d605004ec3c4affd62db77Steve Naroff  explicit SourceManager(const SourceManager&);
5761eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  void operator=(const SourceManager&);
5775f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
578d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  SourceManager(DiagnosticsEngine &Diag, FileManager &FileMgr);
5795b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  ~SourceManager();
5801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
5815b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  void clearIDTables();
5821eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
583d6471f7c1921c7802804ce3ff6fe9768310f72b9David Blaikie  DiagnosticsEngine &getDiagnostics() const { return Diag; }
58478a916ec5ff5b66adec3c499e1b9af7b87668309Argyrios Kyrtzidis
585389db16c63eec6ecfa9b235155252d8da766e94eArgyrios Kyrtzidis  FileManager &getFileManager() const { return FileMgr; }
586389db16c63eec6ecfa9b235155252d8da766e94eArgyrios Kyrtzidis
587299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  /// \brief Set true if the SourceManager should report the original file name
588299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  /// for contents of files that were overriden by other files.Defaults to true.
589299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  void setOverridenFilesKeepOriginalName(bool value) {
590299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis    OverridenFilesKeepOriginalName = value;
591299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis  }
592299a4a967b02c9f0d0d94ad8560e3ced893f9116Argyrios Kyrtzidis
593f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// createMainFileIDForMembuffer - Create the FileID for a memory buffer
594f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///  that will represent the FileID for the main source.  One example
595f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///  of when this would be used is when the main source is read from STDIN.
596f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  FileID createMainFileIDForMemBuffer(const llvm::MemoryBuffer *Buffer) {
597f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    assert(MainFileID.isInvalid() && "MainFileID already set!");
598f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    MainFileID = createFileIDForMemBuffer(Buffer);
599f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return MainFileID;
600f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  }
601f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor
60206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
60306a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  // MainFileID creation and querying methods.
60406a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
60506a062dc784c609b75dca15fd97f468d0d846596Chris Lattner
60676edd0e4ae0592a7225d50d0bad6732ac64dca2aTed Kremenek  /// getMainFileID - Returns the FileID of the main source file.
6072b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  FileID getMainFileID() const { return MainFileID; }
6081eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
60906a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  /// createMainFileID - Create the FileID for the main source file.
610f155dfa4e284be7dca8f1abf002476b2aaee8546Dan Gohman  FileID createMainFileID(const FileEntry *SourceFile) {
61106a062dc784c609b75dca15fd97f468d0d846596Chris Lattner    assert(MainFileID.isInvalid() && "MainFileID already set!");
612f155dfa4e284be7dca8f1abf002476b2aaee8546Dan Gohman    MainFileID = createFileID(SourceFile, SourceLocation(), SrcMgr::C_User);
61306a062dc784c609b75dca15fd97f468d0d846596Chris Lattner    return MainFileID;
61406a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  }
6151eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
616507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  /// \brief Set the file ID for the precompiled preamble.
617507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  void setPreambleFileID(FileID Preamble) {
618507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis    assert(PreambleFileID.isInvalid() && "PreambleFileID already set!");
619507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis    PreambleFileID = Preamble;
620414cb64f09ce48a36377458ce5e5a90c3ad41d00Douglas Gregor  }
6215330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
622507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  /// \brief Get the file ID for the precompiled preamble if there is one.
623507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  FileID getPreambleFileID() const { return PreambleFileID; }
624507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis
62506a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
6263201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  // Methods to create new FileID's and macro expansions.
62706a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
6281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// createFileID - Create a new FileID that represents the specified file
630d57b7ff9bebc4c45f325fc1be6f238cfcd4c3732Peter Collingbourne  /// being #included from the specified IncludePosition.  This translates NULL
631d57b7ff9bebc4c45f325fc1be6f238cfcd4c3732Peter Collingbourne  /// into standard input.
6322b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  FileID createFileID(const FileEntry *SourceFile, SourceLocation IncludePos,
6337f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor                      SrcMgr::CharacteristicKind FileCharacter,
634f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor                      int LoadedID = 0, unsigned LoadedOffset = 0) {
635de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile);
6360d06e998910934e5ef070f53f4c272e7c6b846c6Dan Gohman    assert(IR && "getOrCreateContentCache() cannot return NULL");
637f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return createFileID(IR, IncludePos, FileCharacter, LoadedID, LoadedOffset);
6385f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
6391eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6405f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// createFileIDForMemBuffer - Create a new FileID that represents the
6415f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// specified memory buffer.  This does no caching of the buffer and takes
6425f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// ownership of the MemoryBuffer, so only pass a MemoryBuffer to this once.
6437f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor  FileID createFileIDForMemBuffer(const llvm::MemoryBuffer *Buffer,
644f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor                                  int LoadedID = 0, unsigned LoadedOffset = 0) {
6457bfaaaecb3113f955db31e8d8a51acffd1bc0c27Nico Weber    return createFileID(createMemBufferContentCache(Buffer), SourceLocation(),
646f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor                        SrcMgr::C_User, LoadedID, LoadedOffset);
6471036b68525f39cb69ac22c679ed440acd8392a16Ted Kremenek  }
64806a062dc784c609b75dca15fd97f468d0d846596Chris Lattner
649bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  /// createMacroArgExpansionLoc - Return a new SourceLocation that encodes the
650bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  /// fact that a token from SpellingLoc should actually be referenced from
6513201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// ExpansionLoc, and that it represents the expansion of a macro argument
6523201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// into the function-like macro body.
653bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  SourceLocation createMacroArgExpansionLoc(SourceLocation Loc,
654bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                            SourceLocation ExpansionLoc,
655bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                            unsigned TokLength);
656c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth
657bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  /// createExpansionLoc - Return a new SourceLocation that encodes the fact
658c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth  /// that a token from SpellingLoc should actually be referenced from
659bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  /// ExpansionLoc.
660bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  SourceLocation createExpansionLoc(SourceLocation Loc,
661bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                    SourceLocation ExpansionLocStart,
662bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                    SourceLocation ExpansionLocEnd,
663bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                    unsigned TokLength,
664bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                    int LoadedID = 0,
665bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                    unsigned LoadedOffset = 0);
6661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
6672968442603b029949246467253eeac8139a5b6d8Douglas Gregor  /// \brief Retrieve the memory buffer associated with the given file.
66850f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  ///
66950f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  /// \param Invalid If non-NULL, will be set \c true if an error
67050f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  /// occurs while retrieving the memory buffer.
67150f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  const llvm::MemoryBuffer *getMemoryBufferForFile(const FileEntry *File,
67250f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor                                                   bool *Invalid = 0);
6732968442603b029949246467253eeac8139a5b6d8Douglas Gregor
6742968442603b029949246467253eeac8139a5b6d8Douglas Gregor  /// \brief Override the contents of the given source file by providing an
6752968442603b029949246467253eeac8139a5b6d8Douglas Gregor  /// already-allocated buffer.
6762968442603b029949246467253eeac8139a5b6d8Douglas Gregor  ///
677afbf5f810652f04c0bba235c0fa079885fb3caa8Dan Gohman  /// \param SourceFile the source file whose contents will be overriden.
6782968442603b029949246467253eeac8139a5b6d8Douglas Gregor  ///
6792968442603b029949246467253eeac8139a5b6d8Douglas Gregor  /// \param Buffer the memory buffer whose contents will be used as the
6802968442603b029949246467253eeac8139a5b6d8Douglas Gregor  /// data in the given source file.
6812968442603b029949246467253eeac8139a5b6d8Douglas Gregor  ///
682f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  /// \param DoNotFree If true, then the buffer will not be freed when the
683f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor  /// source manager is destroyed.
6840d06e998910934e5ef070f53f4c272e7c6b846c6Dan Gohman  void overrideFileContents(const FileEntry *SourceFile,
685f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor                            const llvm::MemoryBuffer *Buffer,
686f4f6c9db68465b886ec2e596feaa6ecc782395a4Douglas Gregor                            bool DoNotFree = false);
6872968442603b029949246467253eeac8139a5b6d8Douglas Gregor
688b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  /// \brief Override the the given source file with another one.
689b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  ///
690b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  /// \param SourceFile the source file which will be overriden.
691b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  ///
692b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  /// \param NewFile the file whose contents will be used as the
693b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  /// data instead of the contents of the given source file.
694b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis  void overrideFileContents(const FileEntry *SourceFile,
695b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis                            const FileEntry *NewFile);
696b1c86492f9a9bef01a4567408c22f961bbd604feArgyrios Kyrtzidis
69706a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
69806a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  // FileID manipulation methods.
69906a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
7001eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
7012ffb14f004affc363d86d6c7c63c356190db3679Daniel Dunbar  /// getBuffer - Return the buffer for the specified FileID. If there is an
7022ffb14f004affc363d86d6c7c63c356190db3679Daniel Dunbar  /// error opening this buffer the first time, this manufactures a temporary
7032ffb14f004affc363d86d6c7c63c356190db3679Daniel Dunbar  /// buffer and returns a non-empty error string.
704e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner  const llvm::MemoryBuffer *getBuffer(FileID FID, SourceLocation Loc,
705e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner                                      bool *Invalid = 0) const {
706e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    bool MyInvalid = false;
707e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
708e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    if (MyInvalid || !Entry.isFile()) {
709e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      if (Invalid)
710e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor        *Invalid = true;
7115330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
712e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      return getFakeBufferForRecovery();
713e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    }
7145330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
7155330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher    return Entry.getFile().getContentCache()->getBuffer(Diag, *this, Loc,
716e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor                                                        Invalid);
71706a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  }
7181eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
719e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner  const llvm::MemoryBuffer *getBuffer(FileID FID, bool *Invalid = 0) const {
720e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    bool MyInvalid = false;
721e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
722e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    if (MyInvalid || !Entry.isFile()) {
723e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      if (Invalid)
724e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor        *Invalid = true;
7255330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
726e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      return getFakeBufferForRecovery();
727e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    }
728e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor
7295330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher    return Entry.getFile().getContentCache()->getBuffer(Diag, *this,
7305330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher                                                        SourceLocation(),
731e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor                                                        Invalid);
732e127a0d80155b45dafe77f2b4380e5fa111a3345Chris Lattner  }
7335330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
73406a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  /// getFileEntryForID - Returns the FileEntry record for the provided FileID.
73506a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  const FileEntry *getFileEntryForID(FileID FID) const {
736e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    bool MyInvalid = false;
737e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &MyInvalid);
738e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    if (MyInvalid || !Entry.isFile())
739e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      return 0;
7405330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
741e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    return Entry.getFile().getContentCache()->OrigEntry;
74206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  }
7431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
7449d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek  /// Returns the FileEntry record for the provided SLocEntry.
7459d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek  const FileEntry *getFileEntryForSLocEntry(const SrcMgr::SLocEntry &sloc) const
7469d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek  {
7479d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek    return sloc.getFile().getContentCache()->OrigEntry;
7489d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek  }
7499d5a165d301cc9df68631e624322dd2a962f65b3Ted Kremenek
750ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  /// getBufferData - Return a StringRef to the source buffer data for the
751ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  /// specified FileID.
752ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  ///
753f715ca12bfc9fddfde75f98a197424434428b821Douglas Gregor  /// \param FID The file ID whose contents will be returned.
754f715ca12bfc9fddfde75f98a197424434428b821Douglas Gregor  /// \param Invalid If non-NULL, will be set true if an error occurred.
755686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  StringRef getBufferData(FileID FID, bool *Invalid = 0) const;
756f6ac97b101c8840efa92bf29166077ce4049e293Benjamin Kramer
757d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// \brief Get the number of FileIDs (files and macros) that were created
758d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// during preprocessing of \arg FID, including it.
759d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  unsigned getNumCreatedFIDsForFileID(FileID FID) const {
760d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    bool Invalid = false;
761d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
762d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    if (Invalid || !Entry.isFile())
763d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis      return 0;
764d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
765d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    return Entry.getFile().NumCreatedFIDs;
766d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  }
767d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
768d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// \brief Set the number of FileIDs (files and macros) that were created
769d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// during preprocessing of \arg FID, including it.
770d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  void setNumCreatedFIDsForFileID(FileID FID, unsigned NumFIDs) const {
771d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    bool Invalid = false;
772d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
773d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    if (Invalid || !Entry.isFile())
774d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis      return;
775d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
776d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    assert(Entry.getFile().NumCreatedFIDs == 0 && "Already set!");
777d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    const_cast<SrcMgr::FileInfo &>(Entry.getFile()).NumCreatedFIDs = NumFIDs;
778d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  }
7791eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
78006a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
78106a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  // SourceLocation manipulation methods.
78206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
7831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
784668ab1a36d6a5731c71a75a5f388ecafd538a896Chris Lattner  /// getFileID - Return the FileID for a SourceLocation.  This is a very
785de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// hot method that is used for all SourceManager queries that start with a
786de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// SourceLocation object.  It is responsible for finding the entry in
787de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// SLocEntryTable which contains the specified location.
788de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  ///
789de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  FileID getFileID(SourceLocation SpellingLoc) const {
790de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    unsigned SLocOffset = SpellingLoc.getOffset();
7911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
792de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    // If our one-entry cache covers this offset, just return it.
793de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (isOffsetInFileID(LastFileIDLookup, SLocOffset))
794de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return LastFileIDLookup;
795de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
796de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return getFileIDSlow(SLocOffset);
797de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
7981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
7992b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  /// getLocForStartOfFile - Return the source location corresponding to the
8002b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  /// first byte of the specified file.
8012b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  SourceLocation getLocForStartOfFile(FileID FID) const {
802e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    bool Invalid = false;
803e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
804e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    if (Invalid || !Entry.isFile())
805e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor      return SourceLocation();
8065330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
807e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor    unsigned FileOffset = Entry.getOffset();
808de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return SourceLocation::getFileLoc(FileOffset);
8092b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  }
8101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
811d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// \brief Returns the include location if \arg FID is a #include'd file
812d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  /// otherwise it returns an invalid location.
813d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  SourceLocation getIncludeLoc(FileID FID) const {
814d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    bool Invalid = false;
815d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID, &Invalid);
816d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    if (Invalid || !Entry.isFile())
817d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis      return SourceLocation();
8185330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
819d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis    return Entry.getFile().getIncludeLoc();
820d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis  }
821d9d2b679d0728ea7f539f38aaea38e26b8b08043Argyrios Kyrtzidis
822402785357ab053dd53f4fdd858b9630a5e0f8badChandler Carruth  /// getExpansionLoc - Given a SourceLocation object, return the expansion
823402785357ab053dd53f4fdd858b9630a5e0f8badChandler Carruth  /// location referenced by the ID.
824402785357ab053dd53f4fdd858b9630a5e0f8badChandler Carruth  SourceLocation getExpansionLoc(SourceLocation Loc) const {
825addb797ca2b5afc1a1e82fd8d5d6eb2a592e75a9Chris Lattner    // Handle the non-mapped case inline, defer to out of line code to handle
826402785357ab053dd53f4fdd858b9630a5e0f8badChandler Carruth    // expansions.
827de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (Loc.isFileID()) return Loc;
828f84ef95ecec34f27fd05eb4e0392ca6bd3bd0be0Chandler Carruth    return getExpansionLocSlowCase(Loc);
829de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
8301eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
831796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  /// \brief Given \arg Loc, if it is a macro location return the expansion
832796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  /// location or the spelling location, depending on if it comes from a
833796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  /// macro argument or not.
834796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  SourceLocation getFileLoc(SourceLocation Loc) const {
835796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis    if (Loc.isFileID()) return Loc;
836796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis    return getFileLocSlowCase(Loc);
837796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  }
838796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis
839999f739404edf2078cf9f9c28b4dc45c19765842Chandler Carruth  /// getImmediateExpansionRange - Loc is required to be an expansion location.
840999f739404edf2078cf9f9c28b4dc45c19765842Chandler Carruth  /// Return the start/end of the expansion information.
841e7fb48466afcbf2c4ccdfa658824282fdc3c512cChris Lattner  std::pair<SourceLocation,SourceLocation>
842999f739404edf2078cf9f9c28b4dc45c19765842Chandler Carruth  getImmediateExpansionRange(SourceLocation Loc) const;
8431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
844edc3dccece244a584f8ebdb81da6c962c08e79beChandler Carruth  /// getExpansionRange - Given a SourceLocation object, return the range of
845edc3dccece244a584f8ebdb81da6c962c08e79beChandler Carruth  /// tokens covered by the expansion the ultimate file.
8466678133b8ce642f93e5141f056fa643112041ad0Chris Lattner  std::pair<SourceLocation,SourceLocation>
847edc3dccece244a584f8ebdb81da6c962c08e79beChandler Carruth  getExpansionRange(SourceLocation Loc) const;
8481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8491eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
850de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// getSpellingLoc - Given a SourceLocation object, return the spelling
851de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// location referenced by the ID.  This is the place where the characters
852de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// that make up the lexed token can be found.
853de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  SourceLocation getSpellingLoc(SourceLocation Loc) const {
854addb797ca2b5afc1a1e82fd8d5d6eb2a592e75a9Chris Lattner    // Handle the non-mapped case inline, defer to out of line code to handle
8553201f382956ed9beee9fb31229c2835c1208889cChandler Carruth    // expansions.
856de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (Loc.isFileID()) return Loc;
857addb797ca2b5afc1a1e82fd8d5d6eb2a592e75a9Chris Lattner    return getSpellingLocSlowCase(Loc);
858de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
8591eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
860387616edf98739f4a0dd234c907e2b913e6a535dChris Lattner  /// getImmediateSpellingLoc - Given a SourceLocation object, return the
861387616edf98739f4a0dd234c907e2b913e6a535dChris Lattner  /// spelling location referenced by the ID.  This is the first level down
862387616edf98739f4a0dd234c907e2b913e6a535dChris Lattner  /// towards the place where the characters that make up the lexed token can be
863387616edf98739f4a0dd234c907e2b913e6a535dChris Lattner  /// found.  This should not generally be used by clients.
8641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  SourceLocation getImmediateSpellingLoc(SourceLocation Loc) const;
865de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
866de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// getDecomposedLoc - Decompose the specified location into a raw FileID +
867de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// Offset pair.  The first element is the FileID, the second is the
868de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// offset from the start of the buffer of the location.
869de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  std::pair<FileID, unsigned> getDecomposedLoc(SourceLocation Loc) const {
870de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    FileID FID = getFileID(Loc);
871de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return std::make_pair(FID, Loc.getOffset()-getSLocEntry(FID).getOffset());
872de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
8731eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
8743201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// getDecomposedExpansionLoc - Decompose the specified location into a raw
8753201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// FileID + Offset pair. If the location is an expansion record, walk
8763201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// through it until we find the final location expanded.
877de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  std::pair<FileID, unsigned>
878e7b2b6e87dbe5b1207f77b6ff9c210a02f95bb39Chandler Carruth  getDecomposedExpansionLoc(SourceLocation Loc) const {
879de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    FileID FID = getFileID(Loc);
880de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    const SrcMgr::SLocEntry *E = &getSLocEntry(FID);
8811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
882de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    unsigned Offset = Loc.getOffset()-E->getOffset();
883de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (Loc.isFileID())
884de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return std::make_pair(FID, Offset);
8851eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
886e7b2b6e87dbe5b1207f77b6ff9c210a02f95bb39Chandler Carruth    return getDecomposedExpansionLocSlowCase(E);
887de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
888de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
889de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// getDecomposedSpellingLoc - Decompose the specified location into a raw
8903201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// FileID + Offset pair.  If the location is an expansion record, walk
891de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// through it until we find its spelling record.
892de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  std::pair<FileID, unsigned>
893de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  getDecomposedSpellingLoc(SourceLocation Loc) const {
894de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    FileID FID = getFileID(Loc);
895de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    const SrcMgr::SLocEntry *E = &getSLocEntry(FID);
8961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
897de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    unsigned Offset = Loc.getOffset()-E->getOffset();
898de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (Loc.isFileID())
899de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner      return std::make_pair(FID, Offset);
900de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return getDecomposedSpellingLocSlowCase(E, Offset);
9011eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
9021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
90352c29081281955d3db9e11d10573b2d38f709099Chris Lattner  /// getFileOffset - This method returns the offset from the start
90452c29081281955d3db9e11d10573b2d38f709099Chris Lattner  /// of the file that the specified SourceLocation represents. This is not very
90552c29081281955d3db9e11d10573b2d38f709099Chris Lattner  /// meaningful for a macro ID.
90652c29081281955d3db9e11d10573b2d38f709099Chris Lattner  unsigned getFileOffset(SourceLocation SpellingLoc) const {
907de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return getDecomposedLoc(SpellingLoc).second;
9085f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
9091eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
91096d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  /// isMacroArgExpansion - This method tests whether the given source location
91196d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  /// represents a macro argument's expansion into the function-like macro
91296d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  /// definition. Such source locations only appear inside of the expansion
91396d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  /// locations representing where a particular function-like macro was
91496d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  /// expanded.
91596d3589e523a04f4ff2058a7919226ce60696ae8Chandler Carruth  bool isMacroArgExpansion(SourceLocation Loc) const;
9161eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
917499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  /// \brief Returns true if \arg Loc is inside the [\arg Start, +\arg Length)
918499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  /// chunk of the source location address space.
919499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  /// If it's true and \arg RelativeOffset is non-null, it will be set to the
920499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  /// relative offset of \arg Loc inside the chunk.
921499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  bool isInSLocAddrSpace(SourceLocation Loc,
922499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis                         SourceLocation Start, unsigned Length,
923499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis                         unsigned *RelativeOffset = 0) const {
924499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    assert(((Start.getOffset() < NextLocalOffset &&
925499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis               Start.getOffset()+Length <= NextLocalOffset) ||
926499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis            (Start.getOffset() >= CurrentLoadedOffset &&
927499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis                Start.getOffset()+Length < MaxLoadedOffset)) &&
928499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis           "Chunk is not valid SLoc address space");
929499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    unsigned LocOffs = Loc.getOffset();
930499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    unsigned BeginOffs = Start.getOffset();
931499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    unsigned EndOffs = BeginOffs + Length;
932499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    if (LocOffs >= BeginOffs && LocOffs < EndOffs) {
933499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis      if (RelativeOffset)
934499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis        *RelativeOffset = LocOffs - BeginOffs;
935499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis      return true;
936499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    }
937499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis
938499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis    return false;
939499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis  }
940499ea5550d6e2fc5cfbd33b47f06d92ce25d7a13Argyrios Kyrtzidis
941b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  /// \brief Return true if both \arg LHS and \arg RHS are in the local source
942b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  /// location address space or the loaded one. If it's true and
943b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  /// \arg RelativeOffset is non-null, it will be set to the offset of \arg RHS
944b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  /// relative to \arg LHS.
945b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  bool isInSameSLocAddrSpace(SourceLocation LHS, SourceLocation RHS,
946b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis                             int *RelativeOffset) const {
947b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    unsigned LHSOffs = LHS.getOffset(), RHSOffs = RHS.getOffset();
948b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    bool LHSLoaded = LHSOffs >= CurrentLoadedOffset;
949b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    bool RHSLoaded = RHSOffs >= CurrentLoadedOffset;
950b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis
951b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    if (LHSLoaded == RHSLoaded) {
952b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis      if (RelativeOffset)
953b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis        *RelativeOffset = RHSOffs - LHSOffs;
954b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis      return true;
955b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    }
956b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis
957b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis    return false;
958b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis  }
959b6c465e17ec37390667223a18a340e8652c212ffArgyrios Kyrtzidis
960de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  //===--------------------------------------------------------------------===//
961de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  // Queries about the code at a SourceLocation.
962de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  //===--------------------------------------------------------------------===//
9631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9645f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// getCharacterData - Return a pointer to the start of the specified location
965de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// in the appropriate spelling MemoryBuffer.
96650f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  ///
96750f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  /// \param Invalid If non-NULL, will be set \c true if an error occurs.
96850f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  const char *getCharacterData(SourceLocation SL, bool *Invalid = 0) const;
9691eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9709dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  /// getColumnNumber - Return the column # for the specified file position.
9719dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  /// This is significantly cheaper to compute than the line number.  This
9723201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// returns zero if the column number isn't known.  This may only be called
9733201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// on a file sloc, so you must choose a spelling or expansion location
974f7cf85b330bedd2877e1371fb0a83e99751ae162Chris Lattner  /// before calling this method.
9755330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher  unsigned getColumnNumber(FileID FID, unsigned FilePos,
97650f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor                           bool *Invalid = 0) const;
9775ef04ee40c3332d31b6d1439f50d0ddb45812929Chandler Carruth  unsigned getSpellingColumnNumber(SourceLocation Loc, bool *Invalid = 0) const;
978a77c031cb66f75d22672070052cc6e0205289ff8Chandler Carruth  unsigned getExpansionColumnNumber(SourceLocation Loc,
979b49dcd249c7f4f034493741f95394987a4ccf244Chandler Carruth                                    bool *Invalid = 0) const;
9805ef04ee40c3332d31b6d1439f50d0ddb45812929Chandler Carruth  unsigned getPresumedColumnNumber(SourceLocation Loc, bool *Invalid = 0) const;
9811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9821eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
983df7c17a8d02fe09a3466786bae3e40fc3252687aChris Lattner  /// getLineNumber - Given a SourceLocation, return the spelling line number
9845f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// for the position indicated.  This requires building and caching a table of
9855f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// line offsets for the MemoryBuffer, so this is not cheap: use only when
9865f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// about to emit a diagnostic.
98750f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  unsigned getLineNumber(FileID FID, unsigned FilePos, bool *Invalid = 0) const;
9885ef04ee40c3332d31b6d1439f50d0ddb45812929Chandler Carruth  unsigned getSpellingLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
989642116259e8df6286063a17361c20e95b5017a0aChandler Carruth  unsigned getExpansionLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
9905ef04ee40c3332d31b6d1439f50d0ddb45812929Chandler Carruth  unsigned getPresumedLineNumber(SourceLocation Loc, bool *Invalid = 0) const;
9911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
992bff5c512af8ca7ac92e974e04c06ff4f820e4ee1Chris Lattner  /// Return the filename or buffer identifier of the buffer the location is in.
993bff5c512af8ca7ac92e974e04c06ff4f820e4ee1Chris Lattner  /// Note that this name does not respect #line directives.  Use getPresumedLoc
994bff5c512af8ca7ac92e974e04c06ff4f820e4ee1Chris Lattner  /// for normal clients.
99550f6af7a6d6951a63f3da7d4c5a7d3965bf73b63Douglas Gregor  const char *getBufferName(SourceLocation Loc, bool *Invalid = 0) const;
9961eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
9976b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  /// getFileCharacteristic - return the file characteristic of the specified
9981eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  /// source location, indicating whether this is a normal file, a system
9996b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  /// header, or an "implicit extern C" system header.
10006b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  ///
10016b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  /// This state can be modified with flags on GNU linemarker directives like:
10026b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  ///   # 4 "foo.h" 3
10036b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  /// which changes all source locations in the current file after that to be
10046b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  /// considered to be from a system header.
10056b3066780bda02e3117d71a18ca2f430ed1454afChris Lattner  SrcMgr::CharacteristicKind getFileCharacteristic(SourceLocation Loc) const;
10061eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1007b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// getPresumedLoc - This method returns the "presumed" location of a
1008b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// SourceLocation specifies.  A "presumed location" can be modified by #line
1009b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// or GNU line marker directives.  This provides a view on the data that a
1010b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// user should see in diagnostics, for example.
1011b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  ///
10123201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// Note that a presumed location is always given as the expansion point of
10133201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// an expansion location, not at the spelling location.
1014cb7b1e17b63967317ab5cc55682168cf0380519aDouglas Gregor  ///
1015cb7b1e17b63967317ab5cc55682168cf0380519aDouglas Gregor  /// \returns The presumed location of the specified SourceLocation. If the
1016cb7b1e17b63967317ab5cc55682168cf0380519aDouglas Gregor  /// presumed location cannot be calculate (e.g., because \p Loc is invalid
1017cb7b1e17b63967317ab5cc55682168cf0380519aDouglas Gregor  /// or the file containing \p Loc has changed on disk), returns an invalid
1018cb7b1e17b63967317ab5cc55682168cf0380519aDouglas Gregor  /// presumed location.
1019b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  PresumedLoc getPresumedLoc(SourceLocation Loc) const;
10201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10219fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  /// isFromSameFile - Returns true if both SourceLocations correspond to
10229fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  ///  the same file.
10239fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  bool isFromSameFile(SourceLocation Loc1, SourceLocation Loc2) const {
1024a11d61793341fea195c29a0dab3fbd74f2b39a8cChris Lattner    return getFileID(Loc1) == getFileID(Loc2);
10259fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  }
10261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10279fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  /// isFromMainFile - Returns true if the file of provided SourceLocation is
10289fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  ///   the main file.
10299fd87b1db485e2f31d0e5687f9168b370d546847Ted Kremenek  bool isFromMainFile(SourceLocation Loc) const {
1030a11d61793341fea195c29a0dab3fbd74f2b39a8cChris Lattner    return getFileID(Loc) == getMainFileID();
10311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  }
10321eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10337bfaaaecb3113f955db31e8d8a51acffd1bc0c27Nico Weber  /// isInSystemHeader - Returns if a SourceLocation is in a system header.
10347bfaaaecb3113f955db31e8d8a51acffd1bc0c27Nico Weber  bool isInSystemHeader(SourceLocation Loc) const {
10350b9e736308af5397f558ffc8e780c438c2fdb563Chris Lattner    return getFileCharacteristic(Loc) != SrcMgr::C_User;
1036721818304ac462d8c6ce05eecd02884033db78f1Chris Lattner  }
10371eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10380d456588acac0713a7c33063922d35a8cc8c658eChris Lattner  /// isInExternCSystemHeader - Returns if a SourceLocation is in an "extern C"
10390d456588acac0713a7c33063922d35a8cc8c658eChris Lattner  /// system header.
10400d456588acac0713a7c33063922d35a8cc8c658eChris Lattner  bool isInExternCSystemHeader(SourceLocation Loc) const {
10410d456588acac0713a7c33063922d35a8cc8c658eChris Lattner    return getFileCharacteristic(Loc) == SrcMgr::C_ExternCSystem;
10420d456588acac0713a7c33063922d35a8cc8c658eChris Lattner  }
10431eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
104454232ade44d31e98ea83f43ca066128e315dcbdaArgyrios Kyrtzidis  /// \brief The size of the SLocEnty that \arg FID represents.
1045984e42ca1ff7775ce39372c314f1cb7d6862c4c7Argyrios Kyrtzidis  unsigned getFileIDSize(FileID FID) const;
104654232ade44d31e98ea83f43ca066128e315dcbdaArgyrios Kyrtzidis
1047d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis  /// \brief Given a specific FileID, returns true if \arg Loc is inside that
1048d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis  /// FileID chunk and sets relative offset (offset of \arg Loc from beginning
1049d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis  /// of FileID) to \arg relativeOffset.
1050d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis  bool isInFileID(SourceLocation Loc, FileID FID,
1051d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis                  unsigned *RelativeOffset = 0) const {
1052d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis    unsigned Offs = Loc.getOffset();
1053d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis    if (isOffsetInFileID(FID, Offs)) {
1054d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis      if (RelativeOffset)
1055d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis        *RelativeOffset = Offs - getSLocEntry(FID).getOffset();
1056d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis      return true;
1057d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis    }
1058d60a34a4e514ec0dfddd05ef2744be104e111f45Argyrios Kyrtzidis
1059d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis    return false;
1060d7cb46c316808169679a8d72c69f02a1e55d78a8Argyrios Kyrtzidis  }
1061469244a322dd5d35cee1d02d70a2edbc12ac5ce7Argyrios Kyrtzidis
106206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
10635b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  // Line Table Manipulation Routines
10645b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  //===--------------------------------------------------------------------===//
10651eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10665b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  /// getLineTableFilenameID - Return the uniqued ID for the specified filename.
10671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  ///
1068686775deca8b8685eb90801495880e3abdd844c2Chris Lattner  unsigned getLineTableFilenameID(StringRef Str);
10691eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
10704c4ea17d7f991516c37a871dfa4bbe5723fa85f0Chris Lattner  /// AddLineNote - Add a line note to the line table for the FileID and offset
10714c4ea17d7f991516c37a871dfa4bbe5723fa85f0Chris Lattner  /// specified by Loc.  If FilenameID is -1, it is considered to be
10724c4ea17d7f991516c37a871dfa4bbe5723fa85f0Chris Lattner  /// unspecified.
10734c4ea17d7f991516c37a871dfa4bbe5723fa85f0Chris Lattner  void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID);
10749d79ebac47ffde6a1cb312f4c09b66b1b9a397fbChris Lattner  void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID,
10751eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump                   bool IsFileEntry, bool IsFileExit,
10769d79ebac47ffde6a1cb312f4c09b66b1b9a397fbChris Lattner                   bool IsSystemHeader, bool IsExternCHeader);
1077bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor
1078bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor  /// \brief Determine if the source manager has a line table.
1079bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor  bool hasLineTable() const { return LineTable != 0; }
1080bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor
1081bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor  /// \brief Retrieve the stored line table.
1082bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor  LineTableInfo &getLineTable();
1083bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor
10845b9a504720fb52594ca3686e10eb6c0cfa2e7d62Chris Lattner  //===--------------------------------------------------------------------===//
1085457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  // Queries for performance analysis.
1086457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  //===--------------------------------------------------------------------===//
1087457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek
1088457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  /// Return the total amount of physical memory allocated by the
1089457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  /// ContentCache allocator.
1090457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  size_t getContentCacheSize() const {
1091457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek    return ContentCacheAlloc.getTotalMemory();
1092457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  }
10935330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1094f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek  struct MemoryBufferSizes {
1095f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    const size_t malloc_bytes;
1096f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    const size_t mmap_bytes;
10975330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1098f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek    MemoryBufferSizes(size_t malloc_bytes, size_t mmap_bytes)
1099f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek      : malloc_bytes(malloc_bytes), mmap_bytes(mmap_bytes) {}
1100f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek  };
1101f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek
1102f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek  /// Return the amount of memory used by memory buffers, breaking down
1103f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek  /// by heap-backed versus mmap'ed memory.
1104f61b831d7f6a15676b07647f507de80324cb7056Ted Kremenek  MemoryBufferSizes getMemoryBufferSizes() const;
11055330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1106ca7dc2b755eb81ac95121ce1a1f1aa44a4a0fe12Ted Kremenek  // Return the amount of memory used for various side tables and
1107ca7dc2b755eb81ac95121ce1a1f1aa44a4a0fe12Ted Kremenek  // data structures in the SourceManager.
1108ca7dc2b755eb81ac95121ce1a1f1aa44a4a0fe12Ted Kremenek  size_t getDataStructureSizes() const;
1109457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek
1110457aaf0692dfb2d9638f383334b81027f637f20cTed Kremenek  //===--------------------------------------------------------------------===//
111106a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  // Other miscellaneous methods.
111206a062dc784c609b75dca15fd97f468d0d846596Chris Lattner  //===--------------------------------------------------------------------===//
111310b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis
111410b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis  /// \brief Get the source location for the given file:line:col triplet.
111510b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis  ///
111610b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis  /// If the source file is included multiple times, the source location will
111710b46d2f0b976676d10681d73fe061b5ae409b36Argyrios Kyrtzidis  /// be based upon the first inclusion.
1118ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  SourceLocation translateFileLineCol(const FileEntry *SourceFile,
1119507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis                                      unsigned Line, unsigned Col) const;
1120ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis
1121b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis  /// \brief Get the FileID for the given file.
1122b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis  ///
1123b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis  /// If the source file is included multiple times, the FileID will be the
1124b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis  /// first inclusion.
1125b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis  FileID translateFile(const FileEntry *SourceFile) const;
1126b201e16e0c331b0bdeae7b30f9f79aae32beb1b2Argyrios Kyrtzidis
1127efa2ff8603dae51f5f5ed7509a503f477498ad22Argyrios Kyrtzidis  /// \brief Get the source location in \arg FID for the given line:col.
1128efa2ff8603dae51f5f5ed7509a503f477498ad22Argyrios Kyrtzidis  /// Returns null location if \arg FID is not a file SLocEntry.
1129507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  SourceLocation translateLineCol(FileID FID,
1130507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis                                  unsigned Line, unsigned Col) const;
1131efa2ff8603dae51f5f5ed7509a503f477498ad22Argyrios Kyrtzidis
1132ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// \brief If \arg Loc points inside a function macro argument, the returned
1133ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// location will be the macro location in which the argument was expanded.
1134ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// If a macro argument is used multiple times, the expanded location will
1135ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// be at the first expansion of the argument.
1136ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// e.g.
1137ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  ///   MY_MACRO(foo);
1138ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  ///             ^
1139ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// Passing a file location pointing at 'foo', will yield a macro location
1140ac836e442cbd17f33533bd0b4879258945bc1723Argyrios Kyrtzidis  /// where 'foo' was expanded into.
1141507097ec40105ed927cb5a744fad98f5875aacacArgyrios Kyrtzidis  SourceLocation getMacroArgExpandedLocation(SourceLocation Loc) const;
11421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
11432aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis  /// \brief Determines the order of 2 source locations in the translation unit.
11442aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis  ///
11452aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis  /// \returns true if LHS source location comes before RHS, false otherwise.
11462aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis  bool isBeforeInTranslationUnit(SourceLocation LHS, SourceLocation RHS) const;
11472aa03d588bd2d3c73deb662880c2244bf2e384b9Argyrios Kyrtzidis
1148aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis  /// \brief Comparison function class.
1149aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis  class LocBeforeThanCompare : public std::binary_function<SourceLocation,
1150aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis                                                         SourceLocation, bool> {
1151aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis    SourceManager &SM;
1152aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis
1153aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis  public:
1154aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis    explicit LocBeforeThanCompare(SourceManager &SM) : SM(SM) { }
1155aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis
1156aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis    bool operator()(SourceLocation LHS, SourceLocation RHS) const {
1157aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis      return SM.isBeforeInTranslationUnit(LHS, RHS);
1158aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis    }
1159aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis  };
1160aec230d29835285777ecc467e268c83b33a2addeArgyrios Kyrtzidis
1161b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  /// \brief Determines the order of 2 source locations in the "source location
1162b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  /// address space".
11635d579e7b0463a2e65328df85e4fed8e07799fd9eArgyrios Kyrtzidis  bool isBeforeInSLocAddrSpace(SourceLocation LHS, SourceLocation RHS) const {
11645d579e7b0463a2e65328df85e4fed8e07799fd9eArgyrios Kyrtzidis    return isBeforeInSLocAddrSpace(LHS, RHS.getOffset());
1165b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  }
1166b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis
1167b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  /// \brief Determines the order of a source location and a source location
1168b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  /// offset in the "source location address space".
1169f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
11705330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher  /// Note that we always consider source locations loaded from
11715d579e7b0463a2e65328df85e4fed8e07799fd9eArgyrios Kyrtzidis  bool isBeforeInSLocAddrSpace(SourceLocation LHS, unsigned RHS) const {
1172f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    unsigned LHSOffset = LHS.getOffset();
1173f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    bool LHSLoaded = LHSOffset >= CurrentLoadedOffset;
1174f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    bool RHSLoaded = RHS >= CurrentLoadedOffset;
1175f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    if (LHSLoaded == RHSLoaded)
11765d579e7b0463a2e65328df85e4fed8e07799fd9eArgyrios Kyrtzidis      return LHSOffset < RHS;
11775330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1178f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return LHSLoaded;
1179b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis  }
1180b73377eeb3eff76be134203aebb6068244b177f3Argyrios Kyrtzidis
1181c6fe32a91c7372caf09152ee31a24c4b5d24deedChris Lattner  // Iterators over FileInfos.
11820d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner  typedef llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>
11830d0bf8cf58b35302312cc155287fde3e81eb25a7Chris Lattner      ::const_iterator fileinfo_iterator;
1184c6fe32a91c7372caf09152ee31a24c4b5d24deedChris Lattner  fileinfo_iterator fileinfo_begin() const { return FileInfos.begin(); }
1185c6fe32a91c7372caf09152ee31a24c4b5d24deedChris Lattner  fileinfo_iterator fileinfo_end() const { return FileInfos.end(); }
1186d93256e55673a17d18543397ec462416acb13792Douglas Gregor  bool hasFileInfo(const FileEntry *File) const {
1187d93256e55673a17d18543397ec462416acb13792Douglas Gregor    return FileInfos.find(File) != FileInfos.end();
1188d93256e55673a17d18543397ec462416acb13792Douglas Gregor  }
1189c6fe32a91c7372caf09152ee31a24c4b5d24deedChris Lattner
11905f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// PrintStats - Print statistics to stderr.
11915f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  ///
11925f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  void PrintStats() const;
119378d85f53b093867bbb0123f016956178eea7343eTed Kremenek
1194f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Get the number of local SLocEntries we have.
1195f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  unsigned local_sloc_entry_size() const { return LocalSLocEntryTable.size(); }
11965330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1197f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Get a local SLocEntry. This is exposed for indexing.
11985330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher  const SrcMgr::SLocEntry &getLocalSLocEntry(unsigned Index,
1199f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor                                             bool *Invalid = 0) const {
1200f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    assert(Index < LocalSLocEntryTable.size() && "Invalid index");
1201f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return LocalSLocEntryTable[Index];
1202bdfe48ac80573e026595af91e541474dbf02565fDouglas Gregor  }
12035330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1204f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Get the number of loaded SLocEntries we have.
1205f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  unsigned loaded_sloc_entry_size() const { return LoadedSLocEntryTable.size();}
12065330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1207f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Get a loaded SLocEntry. This is exposed for indexing.
120870042f5d1ca378138f90b7b9384023701f5d03d8David Blaikie  const SrcMgr::SLocEntry &getLoadedSLocEntry(unsigned Index,
120970042f5d1ca378138f90b7b9384023701f5d03d8David Blaikie                                              bool *Invalid = 0) const {
1210f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    assert(Index < LoadedSLocEntryTable.size() && "Invalid index");
1211f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    if (!SLocEntryLoaded[Index])
1212f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor      ExternalSLocEntries->ReadSLocEntry(-(static_cast<int>(Index) + 2));
1213f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return LoadedSLocEntryTable[Index];
1214f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  }
12155330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1216e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  const SrcMgr::SLocEntry &getSLocEntry(FileID FID, bool *Invalid = 0) const {
1217c705d2520a51de1dc38d36efada8e9bc2d8b0d1fArgyrios Kyrtzidis    if (FID.ID == 0 || FID.ID == -1) {
1218c705d2520a51de1dc38d36efada8e9bc2d8b0d1fArgyrios Kyrtzidis      if (Invalid) *Invalid = true;
1219c705d2520a51de1dc38d36efada8e9bc2d8b0d1fArgyrios Kyrtzidis      return LocalSLocEntryTable[0];
1220c705d2520a51de1dc38d36efada8e9bc2d8b0d1fArgyrios Kyrtzidis    }
1221f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return getSLocEntryByID(FID.ID);
1222bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor  }
1223bd94500d3aa60092fb0f1e90f53fb0d03fa502a8Douglas Gregor
1224f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  unsigned getNextLocalOffset() const { return NextLocalOffset; }
12255330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1226f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  void setExternalSLocEntrySource(ExternalSLocEntrySource *Source) {
1227f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    assert(LoadedSLocEntryTable.empty() &&
1228f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor           "Invalidating existing loaded entries");
1229f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    ExternalSLocEntries = Source;
1230f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  }
12315330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1232f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Allocate a number of loaded SLocEntries, which will be actually
1233f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// loaded on demand from the external source.
1234f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  ///
1235f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// NumSLocEntries will be allocated, which occupy a total of TotalSize space
1236f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// in the global source view. The lowest ID and the base offset of the
1237f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// entries will be returned.
1238f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  std::pair<int, unsigned>
1239f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  AllocateLoadedSLocEntries(unsigned NumSLocEntries, unsigned TotalSize);
12405330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1241aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  /// \brief Returns true if \arg Loc came from a PCH/Module.
1242aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  bool isLoadedSourceLocation(SourceLocation Loc) const {
1243aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis    return Loc.getOffset() >= CurrentLoadedOffset;
1244aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  }
1245aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis
1246aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  /// \brief Returns true if \arg Loc did not come from a PCH/Module.
1247aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  bool isLocalSourceLocation(SourceLocation Loc) const {
1248aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis    return Loc.getOffset() < NextLocalOffset;
1249aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis  }
1250aa6edaeb35e02a07bd4840c0159900754f083ce5Argyrios Kyrtzidis
12515f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerprivate:
1252e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor  const llvm::MemoryBuffer *getFakeBufferForRecovery() const;
1253e23ac65af568ffe611b0990818ac3a57c856a4d8Douglas Gregor
1254f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  /// \brief Get the entry with the given unwrapped FileID.
1255f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  const SrcMgr::SLocEntry &getSLocEntryByID(int ID) const {
1256f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    assert(ID != -1 && "Using FileID sentinel value");
1257f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    if (ID < 0)
1258f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor      return getLoadedSLocEntryByID(ID);
1259f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return getLocalSLocEntry(static_cast<unsigned>(ID));
1260f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  }
12615330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1262f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  const SrcMgr::SLocEntry &getLoadedSLocEntryByID(int ID) const {
1263f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    return getLoadedSLocEntry(static_cast<unsigned>(-ID - 2));
1264f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  }
12655330ee071743b8a896aa46979b020e6c3ca9b1ccEric Christopher
1266bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth  /// createExpansionLoc - Implements the common elements of storing an
12673201f382956ed9beee9fb31229c2835c1208889cChandler Carruth  /// expansion info struct into the SLocEntry table and producing a source
1268c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth  /// location that refers to it.
126978df836808aee22c3157e1bc23bc4ec569b80568Chandler Carruth  SourceLocation createExpansionLocImpl(const SrcMgr::ExpansionInfo &Expansion,
1270bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                        unsigned TokLength,
1271bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                        int LoadedID = 0,
1272bf340e452339e374ea6eef78c1f0a2abdd16c5a3Chandler Carruth                                        unsigned LoadedOffset = 0);
1273c8d1ecca1cd3fadbd331d15c420755aa6184554bChandler Carruth
1274de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// isOffsetInFileID - Return true if the specified FileID contains the
1275de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// specified SourceLocation offset.  This is a very hot method.
1276de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  inline bool isOffsetInFileID(FileID FID, unsigned SLocOffset) const {
1277de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    const SrcMgr::SLocEntry &Entry = getSLocEntry(FID);
1278de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    // If the entry is after the offset, it can't contain it.
1279de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    if (SLocOffset < Entry.getOffset()) return false;
12801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1281f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    // If this is the very last entry then it does.
1282f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    if (FID.ID == -2)
1283f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor      return true;
1284f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor
1285f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    // If it is the last local entry, then it does if the location is local.
1286f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    if (static_cast<unsigned>(FID.ID+1) == LocalSLocEntryTable.size()) {
1287f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor      return SLocOffset < NextLocalOffset;
1288f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    }
12897f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor
1290f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    // Otherwise, the entry after it has to not include it. This works for both
1291f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor    // local and loaded entries.
12927f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor    return SLocOffset < getSLocEntry(FileID::get(FID.ID+1)).getOffset();
1293de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  }
12941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
129578d85f53b093867bbb0123f016956178eea7343eTed Kremenek  /// createFileID - Create a new fileID for the specified ContentCache and
129678d85f53b093867bbb0123f016956178eea7343eTed Kremenek  ///  include position.  This works regardless of whether the ContentCache
129778d85f53b093867bbb0123f016956178eea7343eTed Kremenek  ///  corresponds to a file or some other input source.
12982b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  FileID createFileID(const SrcMgr::ContentCache* File,
12992b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner                      SourceLocation IncludePos,
13007f94b0b0c6791013d2f72ced9b4bedd3b23673a6Douglas Gregor                      SrcMgr::CharacteristicKind DirCharacter,
1301f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor                      int LoadedID, unsigned LoadedOffset);
13021eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1303de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  const SrcMgr::ContentCache *
1304de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    getOrCreateContentCache(const FileEntry *SourceFile);
1305c16c208e8519476d838ad11fffc8e0ecea50550dTed Kremenek
130678d85f53b093867bbb0123f016956178eea7343eTed Kremenek  /// createMemBufferContentCache - Create a new ContentCache for the specified
130778d85f53b093867bbb0123f016956178eea7343eTed Kremenek  ///  memory buffer.
13081eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  const SrcMgr::ContentCache*
13092b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  createMemBufferContentCache(const llvm::MemoryBuffer *Buf);
13101eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1311de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  FileID getFileIDSlow(unsigned SLocOffset) const;
1312f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  FileID getFileIDLocal(unsigned SLocOffset) const;
1313f62d43d2afe1960755a1b5813cae1e5983bcac1bDouglas Gregor  FileID getFileIDLoaded(unsigned SLocOffset) const;
1314de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner
1315f84ef95ecec34f27fd05eb4e0392ca6bd3bd0be0Chandler Carruth  SourceLocation getExpansionLocSlowCase(SourceLocation Loc) const;
1316addb797ca2b5afc1a1e82fd8d5d6eb2a592e75a9Chris Lattner  SourceLocation getSpellingLocSlowCase(SourceLocation Loc) const;
1317796dbfb6c43336f58c026137c438e53eadc381f7Argyrios Kyrtzidis  SourceLocation getFileLocSlowCase(SourceLocation Loc) const;
1318addb797ca2b5afc1a1e82fd8d5d6eb2a592e75a9Chris Lattner
1319de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  std::pair<FileID, unsigned>
1320e7b2b6e87dbe5b1207f77b6ff9c210a02f95bb39Chandler Carruth  getDecomposedExpansionLocSlowCase(const SrcMgr::SLocEntry *E) const;
1321de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  std::pair<FileID, unsigned>
1322de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  getDecomposedSpellingLocSlowCase(const SrcMgr::SLocEntry *E,
1323de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner                                   unsigned Offset) const;
1324fb3612ef197cb8532c05f33889ec1aed7c26e5cbArgyrios Kyrtzidis  void computeMacroArgsCache(MacroArgsMap *&MacroArgsCache, FileID FID) const;
1325ac1ffcc55b861737ba2466cd1ca1accd8eafceaaArgyrios Kyrtzidis
1326ac1ffcc55b861737ba2466cd1ca1accd8eafceaaArgyrios Kyrtzidis  friend class ASTReader;
1327ac1ffcc55b861737ba2466cd1ca1accd8eafceaaArgyrios Kyrtzidis  friend class ASTWriter;
13285f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
13295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
13305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
13315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}  // end namespace clang
13325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
13335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#endif
1334