Add a helper useful when mapping from a map element to its hash node.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-09-30 08:31:46 +00:00
parent ab528fe0fb
commit 1bcc79666d

View File

@ -166,7 +166,18 @@ public:
MallocAllocator A;
return Create(KeyStart, KeyEnd, A);
}
/// GetStringMapEntryFromValue - Given a value that is known to be embedded
/// into a StringMapEntry, return the StringMapEntry itself.
static StringMapEntry &GetStringMapEntryFromValue(ValueTy &V) {
return *reinterpret_cast<StringMapEntry*>(reinterpret_cast<char*>(&V) -
sizeof(StringMapEntryBase));
}
static const StringMapEntry &GetStringMapEntryFromValue(const ValueTy &V) {
return GetStringMapEntryFromValue(const_cast<ValueTy&>(V));
}
/// Destroy - Destroy this StringMapEntry, releasing memory back to the
/// specified allocator.
template<typename AllocatorTy>