2010-01-18 22:11:34 +00:00
|
|
|
//===- SMLoc.h - Source location for use with diagnostics -------*- C++ -*-===//
|
2010-01-18 22:07:51 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the SMLoc class. This class encapsulates a location in
|
|
|
|
// source code for use in diagnostics.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef SUPPORT_SMLOC_H
|
|
|
|
#define SUPPORT_SMLOC_H
|
|
|
|
|
2011-10-16 04:47:35 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
2010-01-18 22:07:51 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2011-10-16 04:47:35 +00:00
|
|
|
/// SMLoc - Represents a location in source code.
|
2011-08-29 21:15:20 +00:00
|
|
|
class SMLoc {
|
2010-01-18 22:07:51 +00:00
|
|
|
const char *Ptr;
|
|
|
|
public:
|
|
|
|
SMLoc() : Ptr(0) {}
|
|
|
|
SMLoc(const SMLoc &RHS) : Ptr(RHS.Ptr) {}
|
2011-08-29 21:15:20 +00:00
|
|
|
|
2010-01-18 22:07:51 +00:00
|
|
|
bool isValid() const { return Ptr != 0; }
|
2011-08-29 21:15:20 +00:00
|
|
|
|
2010-01-18 22:07:51 +00:00
|
|
|
bool operator==(const SMLoc &RHS) const { return RHS.Ptr == Ptr; }
|
|
|
|
bool operator!=(const SMLoc &RHS) const { return RHS.Ptr != Ptr; }
|
2011-08-29 21:15:20 +00:00
|
|
|
|
2010-01-18 22:07:51 +00:00
|
|
|
const char *getPointer() const { return Ptr; }
|
2011-08-29 21:15:20 +00:00
|
|
|
|
2010-01-18 22:07:51 +00:00
|
|
|
static SMLoc getFromPointer(const char *Ptr) {
|
|
|
|
SMLoc L;
|
|
|
|
L.Ptr = Ptr;
|
|
|
|
return L;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-10-16 04:47:35 +00:00
|
|
|
/// SMRange - Represents a range in source code. Note that unlike standard STL
|
|
|
|
/// ranges, the locations specified are considered to be *inclusive*. For
|
|
|
|
/// example, [X,X] *does* include X, it isn't an empty range.
|
|
|
|
class SMRange {
|
|
|
|
public:
|
|
|
|
SMLoc Start, End;
|
|
|
|
|
|
|
|
SMRange() {}
|
|
|
|
SMRange(SMLoc Start, SMLoc End) : Start(Start), End(End) {
|
|
|
|
assert(Start.isValid() == End.isValid() &&
|
|
|
|
"Start and end should either both be valid or both be invalid!");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isValid() const { return Start.isValid(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
2010-01-18 22:07:51 +00:00
|
|
|
|
2010-01-18 22:11:34 +00:00
|
|
|
#endif
|
2010-01-18 22:16:54 +00:00
|
|
|
|