SourceLocation.h revision 31d375f056447d4e2418275d4913661d3bfedb3e
15f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===--- SourceLocation.h - Compact identifier for 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 SourceLocation class.
115f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//
125f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer//===----------------------------------------------------------------------===//
135f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
145f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#ifndef LLVM_CLANG_SOURCELOCATION_H
155f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#define LLVM_CLANG_SOURCELOCATION_H
165f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
170827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis#include "llvm/Support/PointerLikeTypeTraits.h"
183632a35e811096da86d957c3e6ba0e73d75782f5Ted Kremenek#include <utility>
198f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis#include <functional>
20ae50fa0a9e7217b043ed4ffe175af4b26dc90f34Chris Lattner#include <cassert>
219dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner
229c728dc4d8da89c73fcae74c9e72d7a83ffd7b6dTed Kremeneknamespace llvm {
232b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  class MemoryBuffer;
24ae50fa0a9e7217b043ed4ffe175af4b26dc90f34Chris Lattner  class raw_ostream;
25ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  class StringRef;
262b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  template <typename T> struct DenseMapInfo;
2706159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner  template <typename T> struct isPodLike;
289c728dc4d8da89c73fcae74c9e72d7a83ffd7b6dTed Kremenek}
299c728dc4d8da89c73fcae74c9e72d7a83ffd7b6dTed Kremenek
305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencernamespace clang {
311eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
32a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenekclass SourceManager;
331eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
342b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner/// FileID - This is an opaque identifier used by SourceManager which refers to
352b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner/// a source file (MemoryBuffer) along with its #include path and #line data.
362b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner///
372b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattnerclass FileID {
382b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  /// ID - Opaque identifier, 0 is "invalid".
392b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  unsigned ID;
402b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattnerpublic:
412b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  FileID() : ID(0) {}
421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
432b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool isInvalid() const { return ID == 0; }
441eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
452b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
462b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
472b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
482b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
492b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator>(const FileID &RHS) const { return RHS < *this; }
502b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  bool operator>=(const FileID &RHS) const { return RHS <= *this; }
511eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
52de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  static FileID getSentinel() { return get(~0U); }
532b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  unsigned getHashValue() const { return ID; }
541eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
552b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattnerprivate:
562b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  friend class SourceManager;
5731d375f056447d4e2418275d4913661d3bfedb3eDouglas Gregor  friend class ASTWriter;
5831d375f056447d4e2418275d4913661d3bfedb3eDouglas Gregor  friend class ASTReader;
5931d375f056447d4e2418275d4913661d3bfedb3eDouglas Gregor
60de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  static FileID get(unsigned V) {
612b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    FileID F;
622b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    F.ID = V;
632b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    return F;
642b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  }
652b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  unsigned getOpaqueValue() const { return ID; }
662b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner};
671eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
681eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
695f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// SourceLocation - This is a carefully crafted 32-bit identifier that encodes
705f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// a full include stack, line and column number information for a position in
715f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// an input translation unit.
725f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass SourceLocation {
735f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  unsigned ID;
74bcc2a67e5180612417727cbdd8afd0f79fdf726dChris Lattner  friend class SourceManager;
755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  enum {
76de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    MacroIDBit = 1U << 31
775f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  };
789ebac5e0dab6f99717e3ff169c45048966146b2eChris Lattnerpublic:
795f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
805f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation() : ID(0) {}  // 0 is an invalid FileID.
811eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
82de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  bool isFileID() const  { return (ID & MacroIDBit) == 0; }
83de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  bool isMacroID() const { return (ID & MacroIDBit) != 0; }
841eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
85b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  /// isValid - Return true if this is a valid SourceLocation object.  Invalid
86b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  /// SourceLocations are often used when events have no corresponding location
87b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  /// in the source (e.g. a diagnostic is required for a command line option).
88b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  ///
89b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  bool isValid() const { return ID != 0; }
90b7489d8129136437953d412e2a6cf0ef87f4a461Chris Lattner  bool isInvalid() const { return ID == 0; }
911eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
926fda54c19321673965536b0a8f7236f635cf9730Chris Lattnerprivate:
93de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// getOffset - Return the index for SourceManager's SLocEntryTable table,
94de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  /// note that this is not an index *into* it though.
95de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  unsigned getOffset() const {
96de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return ID & ~MacroIDBit;
974d10ef18c32eae35be07e0d8d18b5ff485b4c5f9Chris Lattner  }
986fda54c19321673965536b0a8f7236f635cf9730Chris Lattner
99de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  static SourceLocation getFileLoc(unsigned ID) {
100de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    assert((ID & MacroIDBit) == 0 && "Ran out of source locations!");
1019dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner    SourceLocation L;
102de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    L.ID = ID;
1039dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner    return L;
1045f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
1051eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
106de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner  static SourceLocation getMacroLoc(unsigned ID) {
107de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    assert((ID & MacroIDBit) == 0 && "Ran out of source locations!");
108d1623a81992a24abbfcd5520b32a0dd90857b8a8Chris Lattner    SourceLocation L;
109de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    L.ID = MacroIDBit | ID;
1109dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner    return L;
1119dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  }
1124d10ef18c32eae35be07e0d8d18b5ff485b4c5f9Chris Lattnerpublic:
1131eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1149dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  /// getFileLocWithOffset - Return a source location with the specified offset
1159dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  /// from this file SourceLocation.
116d1623a81992a24abbfcd5520b32a0dd90857b8a8Chris Lattner  SourceLocation getFileLocWithOffset(int Offset) const {
117de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    assert(((getOffset()+Offset) & MacroIDBit) == 0 && "invalid location");
118de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    SourceLocation L;
119de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    L.ID = ID+Offset;
120de7aeefc5573d669ed476d7bda7a8940d3bcadb7Chris Lattner    return L;
1219dc1f530c086d2c16f8cba758b0f59a5bf41323aChris Lattner  }
1221eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1235f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// getRawEncoding - When a SourceLocation itself cannot be used, this returns
1245f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// an (opaque) 32-bit integer encoding for it.  This should only be passed
1255f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// to SourceLocation::getFromRawEncoding, it should not be inspected
1265f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// directly.
1275f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  unsigned getRawEncoding() const { return ID; }
1281eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1295f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// getFromRawEncoding - Turn a raw encoding of a SourceLocation object into
1305f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  /// a real SourceLocation.
1315f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  static SourceLocation getFromRawEncoding(unsigned Encoding) {
1325f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    SourceLocation X;
1335f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    X.ID = Encoding;
1345f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer    return X;
1355f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  }
1361eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
137dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// getPtrEncoding - When a SourceLocation itself cannot be used, this returns
138dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// an (opaque) pointer encoding for it.  This should only be passed
139dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// to SourceLocation::getFromPtrEncoding, it should not be inspected
140dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// directly.
141dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  void* getPtrEncoding() const {
142dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin    // Double cast to avoid a warning "cast to pointer from integer of different
143dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin    // size".
144dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin    return (void*)(uintptr_t)getRawEncoding();
145dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  }
146dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin
147dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// getFromPtrEncoding - Turn a pointer encoding of a SourceLocation object
148dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  /// into a real SourceLocation.
149dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  static SourceLocation getFromPtrEncoding(void *Encoding) {
150dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin    return getFromRawEncoding((unsigned)(uintptr_t)Encoding);
151dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin  }
152dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin
153ae50fa0a9e7217b043ed4ffe175af4b26dc90f34Chris Lattner  void print(llvm::raw_ostream &OS, const SourceManager &SM) const;
154b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  void dump(const SourceManager &SM) const;
1555f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer};
1565f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1575f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerinline bool operator==(const SourceLocation &LHS, const SourceLocation &RHS) {
1585f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  return LHS.getRawEncoding() == RHS.getRawEncoding();
1595f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
1605f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1615f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerinline bool operator!=(const SourceLocation &LHS, const SourceLocation &RHS) {
1625f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  return !(LHS == RHS);
1635f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer}
1641eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1656fda54c19321673965536b0a8f7236f635cf9730Chris Lattnerinline bool operator<(const SourceLocation &LHS, const SourceLocation &RHS) {
1666fda54c19321673965536b0a8f7236f635cf9730Chris Lattner  return LHS.getRawEncoding() < RHS.getRawEncoding();
1676fda54c19321673965536b0a8f7236f635cf9730Chris Lattner}
1685f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer
1695f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer/// SourceRange - a trival tuple used to represent a source range.
1705f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerclass SourceRange {
1715f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation B;
1725f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceLocation E;
1735f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencerpublic:
1745f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceRange(): B(SourceLocation()), E(SourceLocation()) {}
1755f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceRange(SourceLocation loc) : B(loc), E(loc) {}
1765f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  SourceRange(SourceLocation begin, SourceLocation end) : B(begin), E(end) {}
1771eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
178311ff02fae0392bee6abe7723cdf5a69b2899a47Chris Lattner  SourceLocation getBegin() const { return B; }
179311ff02fae0392bee6abe7723cdf5a69b2899a47Chris Lattner  SourceLocation getEnd() const { return E; }
1801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
181e80a59cc41d42a970466cb020b6f44c5b8831d70Chris Lattner  void setBegin(SourceLocation b) { B = b; }
182e80a59cc41d42a970466cb020b6f44c5b8831d70Chris Lattner  void setEnd(SourceLocation e) { E = e; }
1831eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
1845f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer  bool isValid() const { return B.isValid() && E.isValid(); }
185782f2f52b78d8ca785110398a7f7b56b830b9ac7Ted Kremenek  bool isInvalid() const { return !isValid(); }
1861eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
187a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek  bool operator==(const SourceRange &X) const {
188a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek    return B == X.B && E == X.E;
189a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek  }
1901eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
191a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek  bool operator!=(const SourceRange &X) const {
192a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek    return B != X.B || E != X.E;
193a898283deb689b2454f3a966ef1cbf81bcb3e3e4Ted Kremenek  }
19419a95bcf3561ed977c48d5f2a2793b60a8c8e573Ted Kremenek};
1950a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
1960a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// CharSourceRange - This class represents a character granular source range.
1970a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// The underlying SourceRange can either specify the starting/ending character
1980a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// of the range, or it can specify the start or the range and the start of the
1990a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// last token of the range (a "token range").  In the token range case, the
2000a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// size of the last token must be measured to determine the actual end of the
2010a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner/// range.
2020a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattnerclass CharSourceRange {
2030a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  SourceRange Range;
2040a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  bool IsTokenRange;
2050a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattnerpublic:
2060a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  CharSourceRange() : IsTokenRange(false) {}
2070a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  CharSourceRange(SourceRange R, bool ITR) : Range(R),IsTokenRange(ITR){}
2080a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2090a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static CharSourceRange getTokenRange(SourceRange R) {
2100a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    CharSourceRange Result;
2110a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    Result.Range = R;
2120a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    Result.IsTokenRange = true;
2130a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return Result;
2140a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
2150a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2160a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static CharSourceRange getCharRange(SourceRange R) {
2170a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    CharSourceRange Result;
2180a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    Result.Range = R;
2190a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    Result.IsTokenRange = false;
2200a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return Result;
2210a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
2220a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2230a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static CharSourceRange getTokenRange(SourceLocation B, SourceLocation E) {
2240a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return getTokenRange(SourceRange(B, E));
2250a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
2260a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  static CharSourceRange getCharRange(SourceLocation B, SourceLocation E) {
2270a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner    return getCharRange(SourceRange(B, E));
2280a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  }
2290a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2300a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  /// isTokenRange - Return true if the end of this range specifies the start of
2310a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  /// the last token.  Return false if the end of this range specifies the last
2320a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  /// character in the range.
2330a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  bool isTokenRange() const { return IsTokenRange; }
2340a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2350a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  SourceLocation getBegin() const { return Range.getBegin(); }
2360a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  SourceLocation getEnd() const { return Range.getEnd(); }
2370a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  const SourceRange &getAsRange() const { return Range; }
2380a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2390a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  void setBegin(SourceLocation b) { Range.setBegin(b); }
2400a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  void setEnd(SourceLocation e) { Range.setEnd(e); }
2410a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner
2420a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  bool isValid() const { return Range.isValid(); }
2430a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner  bool isInvalid() const { return !isValid(); }
2440a76aae8c03cb7dd7bdbe683485560afaf695959Chris Lattner};
2451eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
246a50bd54164393ca3cd08016e7099bdeb531b5014Chris Lattner/// FullSourceLoc - A SourceLocation and its associated SourceManager.  Useful
247a50bd54164393ca3cd08016e7099bdeb531b5014Chris Lattner/// for argument passing to functions that expect both objects.
248a50bd54164393ca3cd08016e7099bdeb531b5014Chris Lattnerclass FullSourceLoc : public SourceLocation {
2495c5db4e94bd1243ba92563acba51ba66afa94917Chris Lattner  const SourceManager *SrcMgr;
250a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenekpublic:
2513632a35e811096da86d957c3e6ba0e73d75782f5Ted Kremenek  /// Creates a FullSourceLoc where isValid() returns false.
2525c5db4e94bd1243ba92563acba51ba66afa94917Chris Lattner  explicit FullSourceLoc() : SrcMgr(0) {}
253a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenek
2545c5db4e94bd1243ba92563acba51ba66afa94917Chris Lattner  explicit FullSourceLoc(SourceLocation Loc, const SourceManager &SM)
255a50bd54164393ca3cd08016e7099bdeb531b5014Chris Lattner    : SourceLocation(Loc), SrcMgr(&SM) {}
2561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
257b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  const SourceManager &getManager() const {
258b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner    assert(SrcMgr && "SourceManager is NULL.");
259a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenek    return *SrcMgr;
260a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenek  }
2611eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2623b4d5e955e819dd3a4bed37ea2e47d6e4cb05274Chris Lattner  FileID getFileID() const;
2631eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
264f7cf85b330bedd2877e1371fb0a83e99751ae162Chris Lattner  FullSourceLoc getInstantiationLoc() const;
265df7c17a8d02fe09a3466786bae3e40fc3252687aChris Lattner  FullSourceLoc getSpellingLoc() const;
2669c728dc4d8da89c73fcae74c9e72d7a83ffd7b6dTed Kremenek
26764e462dff03492c586be0349ec6aa3ad5cd92720Douglas Gregor  unsigned getInstantiationLineNumber(bool *Invalid = 0) const;
26864e462dff03492c586be0349ec6aa3ad5cd92720Douglas Gregor  unsigned getInstantiationColumnNumber(bool *Invalid = 0) const;
2699c728dc4d8da89c73fcae74c9e72d7a83ffd7b6dTed Kremenek
27064e462dff03492c586be0349ec6aa3ad5cd92720Douglas Gregor  unsigned getSpellingLineNumber(bool *Invalid = 0) const;
27164e462dff03492c586be0349ec6aa3ad5cd92720Douglas Gregor  unsigned getSpellingColumnNumber(bool *Invalid = 0) const;
2725c38b6388dc44dcb8467a9e0f22d93db7221717eChris Lattner
273a543016fe07030f695d6d56fd22c8c8da617e0d7Douglas Gregor  const char *getCharacterData(bool *Invalid = 0) const;
2741eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
275aae58b0c3efb5fa9f97a3e4b1c1a2d31077efe5bDouglas Gregor  const llvm::MemoryBuffer* getBuffer(bool *Invalid = 0) const;
2761eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
277ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  /// getBufferData - Return a StringRef to the source buffer data for the
278ceafc4b63599d14f0b5b10ff92e22bf242682dceBenjamin Kramer  /// specified FileID.
279aae58b0c3efb5fa9f97a3e4b1c1a2d31077efe5bDouglas Gregor  llvm::StringRef getBufferData(bool *Invalid = 0) const;
2801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
281321abd4583dc02a254489132c5ccbe125d18ce4fTed Kremenek  /// getDecomposedLoc - Decompose the specified location into a raw FileID +
282321abd4583dc02a254489132c5ccbe125d18ce4fTed Kremenek  /// Offset pair.  The first element is the FileID, the second is the
283321abd4583dc02a254489132c5ccbe125d18ce4fTed Kremenek  /// offset from the start of the buffer of the location.
284321abd4583dc02a254489132c5ccbe125d18ce4fTed Kremenek  std::pair<FileID, unsigned> getDecomposedLoc() const;
285321abd4583dc02a254489132c5ccbe125d18ce4fTed Kremenek
2867bfaaaecb3113f955db31e8d8a51acffd1bc0c27Nico Weber  bool isInSystemHeader() const;
2871eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
2880827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Determines the order of 2 source locations in the translation unit.
2890827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
2900827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \returns true if this source location comes before 'Loc', false otherwise.
2910827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  bool isBeforeInTranslationUnitThan(SourceLocation Loc) const;
2920827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
2930827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \brief Determines the order of 2 source locations in the translation unit.
2940827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  ///
2950827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  /// \returns true if this source location comes before 'Loc', false otherwise.
2960827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  bool isBeforeInTranslationUnitThan(FullSourceLoc Loc) const {
2970827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    assert(Loc.isValid());
2980827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    assert(SrcMgr == Loc.SrcMgr && "Loc comes from another SourceManager!");
2990827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    return isBeforeInTranslationUnitThan((SourceLocation)Loc);
3000827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  }
3010827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
3028f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis  /// \brief Comparison function class, useful for sorting FullSourceLocs.
3038f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis  struct BeforeThanCompare : public std::binary_function<FullSourceLoc,
3048f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis                                                         FullSourceLoc, bool> {
3058f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis    bool operator()(const FullSourceLoc& lhs, const FullSourceLoc& rhs) const {
3068f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis      return lhs.isBeforeInTranslationUnitThan(rhs);
3078f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis    }
3088f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis  };
3098f89652be7bb85bdac83c37fec85f20cdd2dfc83Argyrios Kyrtzidis
3105c38b6388dc44dcb8467a9e0f22d93db7221717eChris Lattner  /// Prints information about this FullSourceLoc to stderr. Useful for
3115c38b6388dc44dcb8467a9e0f22d93db7221717eChris Lattner  ///  debugging.
312b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  void dump() const { SourceLocation::dump(*SrcMgr); }
313a9793ed6a77946c988ee38035baf4cde6ff2e864Ted Kremenek
3141eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  friend inline bool
3150b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor  operator==(const FullSourceLoc &LHS, const FullSourceLoc &RHS) {
3160b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor    return LHS.getRawEncoding() == RHS.getRawEncoding() &&
3170b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor          LHS.SrcMgr == RHS.SrcMgr;
3180b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor  }
319a50bd54164393ca3cd08016e7099bdeb531b5014Chris Lattner
3201eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump  friend inline bool
3210b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor  operator!=(const FullSourceLoc &LHS, const FullSourceLoc &RHS) {
3220b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor    return !(LHS == RHS);
3230b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor  }
3240b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor
3250b7a158d120ac8d78c114a823e17eedfec6b6658Douglas Gregor};
3261eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
327b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner/// PresumedLoc - This class represents an unpacked "presumed" location which
328b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner/// can be presented to the user.  A 'presumed' location can be modified by
329b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner/// #line and GNU line marker directives and is always the instantiation point
330b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner/// of a normal location.
331b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner///
332b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner/// You can get a PresumedLoc from a SourceLocation with SourceManager.
333b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattnerclass PresumedLoc {
334b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  const char *Filename;
335b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  unsigned Line, Col;
336b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  SourceLocation IncludeLoc;
337b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattnerpublic:
338b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  PresumedLoc() : Filename(0) {}
339b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  PresumedLoc(const char *FN, unsigned Ln, unsigned Co, SourceLocation IL)
340b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner    : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
341b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  }
3421eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
343b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// isInvalid - Return true if this object is invalid or uninitialized. This
344b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// occurs when created with invalid source locations or when walking off
345b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// the top of a #include stack.
346b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  bool isInvalid() const { return Filename == 0; }
347b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  bool isValid() const { return Filename != 0; }
3481eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
349b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// getFilename - Return the presumed filename of this location.  This can be
350b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// affected by #line etc.
351b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  const char *getFilename() const { return Filename; }
352b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner
353b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// getLine - Return the presumed line number of this location.  This can be
354b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// affected by #line etc.
355b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  unsigned getLine() const { return Line; }
3561eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
357b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// getColumn - Return the presumed column number of this location.  This can
358b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// not be affected by #line, but is packaged here for convenience.
359b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  unsigned getColumn() const { return Col; }
360b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner
361b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// getIncludeLoc - Return the presumed include location of this location.
362b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  /// This can be affected by GNU linemarker directives.
363b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner  SourceLocation getIncludeLoc() const { return IncludeLoc; }
364b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner};
365b9c3f966b103f7cfe8e5e60007c4c8b38f7298ebChris Lattner
3661eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
367beb7713c6102687f7e49e27b8228e84a69d8f6c6Ted Kremenek}  // end namespace clang
36819a95bcf3561ed977c48d5f2a2793b60a8c8e573Ted Kremenek
3692b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattnernamespace llvm {
3702b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  /// Define DenseMapInfo so that FileID's can be used as keys in DenseMap and
3712b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  /// DenseSets.
3722b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  template <>
3732b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  struct DenseMapInfo<clang::FileID> {
3742b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    static inline clang::FileID getEmptyKey() {
3752b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner      return clang::FileID();
3762b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    }
3772b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    static inline clang::FileID getTombstoneKey() {
3781eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump      return clang::FileID::getSentinel();
3792b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    }
3801eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3812b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    static unsigned getHashValue(clang::FileID S) {
3822b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner      return S.getHashValue();
3832b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    }
3841eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3852b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    static bool isEqual(clang::FileID LHS, clang::FileID RHS) {
3862b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner      return LHS == RHS;
3872b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner    }
3882b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner  };
38906159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner
39006159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner  template <>
39106159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner  struct isPodLike<clang::SourceLocation> { static const bool value = true; };
39206159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner  template <>
39306159e878569e5f39bf0e8f11b84ac3ad0970597Chris Lattner  struct isPodLike<clang::FileID> { static const bool value = true; };
3941eb4433ac451dc16f4133a88af2d002ac26c58efMike Stump
3950827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  // Teach SmallPtrSet how to handle SourceLocation.
3960827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  template<>
3970827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  class PointerLikeTypeTraits<clang::SourceLocation> {
3980827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  public:
3990827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    static inline void *getAsVoidPointer(clang::SourceLocation L) {
400dec0984fce504a39a7f085774fb67cfd9957be58Jeffrey Yasskin      return L.getPtrEncoding();
4010827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    }
4020827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    static inline clang::SourceLocation getFromVoidPointer(void *P) {
4030827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis      return clang::SourceLocation::getFromRawEncoding((unsigned)(uintptr_t)P);
4040827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    }
4050827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis    enum { NumLowBitsAvailable = 0 };
4060827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis  };
4070827408865e32789e0ec4b8113a302ccdc531423Argyrios Kyrtzidis
4082b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner}  // end namespace llvm
4092b2453a7d8fe732561795431f39ceb2b2a832d84Chris Lattner
4105f016e2cb5d11daeb237544de1c5d59f20fe1a6eReid Spencer#endif
411