1 // Copyright (c) 2015-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_MEMUSAGE_H
6 #define BITCOIN_MEMUSAGE_H
8 #include "indirectmap.h"
15 #include <unordered_map>
16 #include <unordered_set>
22 /** Compute the total memory used by allocating alloc bytes. */
23 static size_t MallocUsage(size_t alloc
);
25 /** Dynamic memory usage for built-in types is zero. */
26 static inline size_t DynamicUsage(const int8_t& v
) { return 0; }
27 static inline size_t DynamicUsage(const uint8_t& v
) { return 0; }
28 static inline size_t DynamicUsage(const int16_t& v
) { return 0; }
29 static inline size_t DynamicUsage(const uint16_t& v
) { return 0; }
30 static inline size_t DynamicUsage(const int32_t& v
) { return 0; }
31 static inline size_t DynamicUsage(const uint32_t& v
) { return 0; }
32 static inline size_t DynamicUsage(const int64_t& v
) { return 0; }
33 static inline size_t DynamicUsage(const uint64_t& v
) { return 0; }
34 static inline size_t DynamicUsage(const float& v
) { return 0; }
35 static inline size_t DynamicUsage(const double& v
) { return 0; }
36 template<typename X
> static inline size_t DynamicUsage(X
* const &v
) { return 0; }
37 template<typename X
> static inline size_t DynamicUsage(const X
* const &v
) { return 0; }
39 /** Compute the memory used for dynamically allocated but owned data structures.
40 * For generic data types, this is *not* recursive. DynamicUsage(vector<vector<int> >)
41 * will compute the memory used for the vector<int>'s, but not for the ints inside.
42 * This is for efficiency reasons, as these functions are intended to be fast. If
43 * application data structures require more accurate inner accounting, they should
44 * iterate themselves, or use more efficient caching + updating on modification.
47 static inline size_t MallocUsage(size_t alloc
)
49 // Measured on libc6 2.19 on Linux.
52 } else if (sizeof(void*) == 8) {
53 return ((alloc
+ 31) >> 4) << 4;
54 } else if (sizeof(void*) == 4) {
55 return ((alloc
+ 15) >> 3) << 3;
61 // STL data structures
74 struct stl_shared_counter
76 /* Various platforms use different sized counters here.
77 * Conservatively assume that they won't be larger than size_t. */
84 static inline size_t DynamicUsage(const std::vector
<X
>& v
)
86 return MallocUsage(v
.capacity() * sizeof(X
));
89 template<unsigned int N
, typename X
, typename S
, typename D
>
90 static inline size_t DynamicUsage(const prevector
<N
, X
, S
, D
>& v
)
92 return MallocUsage(v
.allocated_memory());
95 template<typename X
, typename Y
>
96 static inline size_t DynamicUsage(const std::set
<X
, Y
>& s
)
98 return MallocUsage(sizeof(stl_tree_node
<X
>)) * s
.size();
101 template<typename X
, typename Y
>
102 static inline size_t IncrementalDynamicUsage(const std::set
<X
, Y
>& s
)
104 return MallocUsage(sizeof(stl_tree_node
<X
>));
107 template<typename X
, typename Y
, typename Z
>
108 static inline size_t DynamicUsage(const std::map
<X
, Y
, Z
>& m
)
110 return MallocUsage(sizeof(stl_tree_node
<std::pair
<const X
, Y
> >)) * m
.size();
113 template<typename X
, typename Y
, typename Z
>
114 static inline size_t IncrementalDynamicUsage(const std::map
<X
, Y
, Z
>& m
)
116 return MallocUsage(sizeof(stl_tree_node
<std::pair
<const X
, Y
> >));
119 // indirectmap has underlying map with pointer as key
121 template<typename X
, typename Y
>
122 static inline size_t DynamicUsage(const indirectmap
<X
, Y
>& m
)
124 return MallocUsage(sizeof(stl_tree_node
<std::pair
<const X
*, Y
> >)) * m
.size();
127 template<typename X
, typename Y
>
128 static inline size_t IncrementalDynamicUsage(const indirectmap
<X
, Y
>& m
)
130 return MallocUsage(sizeof(stl_tree_node
<std::pair
<const X
*, Y
> >));
134 static inline size_t DynamicUsage(const std::unique_ptr
<X
>& p
)
136 return p
? MallocUsage(sizeof(X
)) : 0;
140 static inline size_t DynamicUsage(const std::shared_ptr
<X
>& p
)
142 // A shared_ptr can either use a single continuous memory block for both
143 // the counter and the storage (when using std::make_shared), or separate.
144 // We can't observe the difference, however, so assume the worst.
145 return p
? MallocUsage(sizeof(X
)) + MallocUsage(sizeof(stl_shared_counter
)) : 0;
149 struct unordered_node
: private X
155 template<typename X
, typename Y
>
156 static inline size_t DynamicUsage(const std::unordered_set
<X
, Y
>& s
)
158 return MallocUsage(sizeof(unordered_node
<X
>)) * s
.size() + MallocUsage(sizeof(void*) * s
.bucket_count());
161 template<typename X
, typename Y
, typename Z
>
162 static inline size_t DynamicUsage(const std::unordered_map
<X
, Y
, Z
>& m
)
164 return MallocUsage(sizeof(unordered_node
<std::pair
<const X
, Y
> >)) * m
.size() + MallocUsage(sizeof(void*) * m
.bucket_count());
169 #endif // BITCOIN_MEMUSAGE_H