diff options
| author | Dan Gohman <gohman@apple.com> | 2010-03-18 16:16:38 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-03-18 16:16:38 +0000 |
| commit | 208ecfcf0b445d376ed06be4208c98bed9463a40 (patch) | |
| tree | b0a5d281ffed3074c035b42af991edbb096ff38c /lib/Support | |
| parent | be6dc822bc6b4cd903ba2bc01eec997242bd94c1 (diff) | |
| download | external_llvm-208ecfcf0b445d376ed06be4208c98bed9463a40.zip external_llvm-208ecfcf0b445d376ed06be4208c98bed9463a40.tar.gz external_llvm-208ecfcf0b445d376ed06be4208c98bed9463a40.tar.bz2 | |
Add the ability to "intern" FoldingSetNodeID data into a
BumpPtrAllocator-allocated region to allow it to be stored in a more
compact form and to avoid the need for a non-trivial destructor call.
Use this new mechanism in ScalarEvolution instead of
FastFoldingSetNode to avoid leaking memory in the case where a
FoldingSetNodeID uses heap storage, and to reduce overall memory
usage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98829 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
| -rw-r--r-- | lib/Support/FoldingSet.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp index 954dc77..3f467fe 100644 --- a/lib/Support/FoldingSet.cpp +++ b/lib/Support/FoldingSet.cpp @@ -15,6 +15,7 @@ //===----------------------------------------------------------------------===// #include "llvm/ADT/FoldingSet.h" +#include "llvm/Support/Allocator.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/MathExtras.h" #include <cassert> @@ -130,6 +131,15 @@ bool FoldingSetNodeID::operator==(const FoldingSetNodeID &RHS)const{ return memcmp(&Bits[0], &RHS.Bits[0], Bits.size()*sizeof(Bits[0])) == 0; } +/// Intern - Copy this node's data to a memory region allocated from the +/// given allocator and return a FoldingSetNodeIDRef describing the +/// interned data. +FoldingSetNodeIDRef +FoldingSetNodeID::Intern(BumpPtrAllocator &Allocator) const { + unsigned *New = Allocator.Allocate<unsigned>(Bits.size()); + std::uninitialized_copy(Bits.begin(), Bits.end(), New); + return FoldingSetNodeIDRef(New, Bits.size()); +} //===----------------------------------------------------------------------===// /// Helper functions for FoldingSetImpl. |
