aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/DebugLoc.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-01-27 21:15:07 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-01-27 21:15:07 +0000
commitaaeea9e64f7c0f45380d323a32501c4da59a2c4d (patch)
tree61bcbb8c4220806701cd15e0a356df90b78337b0 /include/llvm/CodeGen/DebugLoc.h
parentce9bc12c6f3c3544f7518c0c60203f2f9dff342f (diff)
Refine DebugLoc per review comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63132 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/DebugLoc.h')
-rw-r--r--include/llvm/CodeGen/DebugLoc.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/include/llvm/CodeGen/DebugLoc.h b/include/llvm/CodeGen/DebugLoc.h
index baf6583a8b..89c51c443b 100644
--- a/include/llvm/CodeGen/DebugLoc.h
+++ b/include/llvm/CodeGen/DebugLoc.h
@@ -33,16 +33,21 @@ namespace llvm {
unsigned Idx;
public:
- DebugLoc() : Idx(~0U) {}
+ DebugLoc() : Idx(~0U) {} // Defaults to invalid.
- static DebugLoc getNoDebugLoc() { DebugLoc L; L.Idx = 0; return L; }
+ static DebugLoc getUnknownLoc() { DebugLoc L; L.Idx = 0; return L; }
static DebugLoc get(unsigned idx) { DebugLoc L; L.Idx = idx; return L; }
- bool isInvalid() { return Idx == ~0U; }
- bool isUnknown() { return Idx == 0; }
+ // isInvalid - Return true if the DebugLoc is invalid.
+ bool isInvalid() const { return Idx == ~0U; }
+
+ // isUnknown - Return true if there is no debug info for the SDNode /
+ // MachineInstr.
+ bool isUnknown() const { return Idx == 0; }
};
- struct DebugLocTupleDenseMapInfo {
+ // Partially specialize DenseMapInfo for DebugLocTyple.
+ template<> struct DenseMapInfo<DebugLocTuple> {
static inline DebugLocTuple getEmptyKey() {
return DebugLocTuple(~0U, ~0U, ~0U);
}
@@ -63,9 +68,6 @@ namespace llvm {
static bool isPod() { return true; }
};
- typedef DenseMap<DebugLocTuple, unsigned, DebugLocTupleDenseMapInfo>
- DebugIdMapType;
-
/// DebugLocTracker - This class tracks debug location information.
///
struct DebugLocTracker {
@@ -75,7 +77,7 @@ namespace llvm {
// DebugIdsMap - This maps DebugLocTuple's to indices into
// DebugLocations vector.
- DebugIdMapType DebugIdMap;
+ DenseMap<DebugLocTuple, unsigned> DebugIdMap;
DebugLocTracker() {}