Add utility method to DenseMap to return the amount of memory used for its buckets.
authorTed Kremenek <kremenek@apple.com>
Thu, 28 Apr 2011 04:52:57 +0000 (04:52 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 28 Apr 2011 04:52:57 +0000 (04:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130382 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/DenseMap.h

index 332841f83e4d090f2de40a8716c172e072689a42..8b2dbac9c04753888e35a64ef96316a4b265c951 100644 (file)
@@ -466,6 +466,15 @@ private:
 
     NumEntries = 0;
   }
+  
+public:
+  /// Return the approximate size (in bytes) of the actual map.
+  /// This is just the raw memory used by DenseMap.
+  /// If entries are pointers to objects, the size of the referenced objects
+  /// are not included.
+  size_t getMemorySize() const {
+    return NumBuckets * sizeof(BucketT);
+  }
 };
 
 template<typename KeyT, typename ValueT,