Add Pieter's old signed commits to revsig-commits
[bitcoinplatinum.git] / src / memusage.h
blob81e8702954fde9002e467afd143f84716f36dd3d
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"
10 #include <stdlib.h>
12 #include <map>
13 #include <set>
14 #include <vector>
16 #include <boost/foreach.hpp>
17 #include <boost/unordered_set.hpp>
18 #include <boost/unordered_map.hpp>
20 namespace memusage
23 /** Compute the total memory used by allocating alloc bytes. */
24 static size_t MallocUsage(size_t alloc);
26 /** Dynamic memory usage for built-in types is zero. */
27 static inline size_t DynamicUsage(const int8_t& v) { return 0; }
28 static inline size_t DynamicUsage(const uint8_t& v) { return 0; }
29 static inline size_t DynamicUsage(const int16_t& v) { return 0; }
30 static inline size_t DynamicUsage(const uint16_t& v) { return 0; }
31 static inline size_t DynamicUsage(const int32_t& v) { return 0; }
32 static inline size_t DynamicUsage(const uint32_t& v) { return 0; }
33 static inline size_t DynamicUsage(const int64_t& v) { return 0; }
34 static inline size_t DynamicUsage(const uint64_t& v) { return 0; }
35 static inline size_t DynamicUsage(const float& v) { return 0; }
36 static inline size_t DynamicUsage(const double& v) { return 0; }
37 template<typename X> static inline size_t DynamicUsage(X * const &v) { return 0; }
38 template<typename X> static inline size_t DynamicUsage(const X * const &v) { return 0; }
40 /** Compute the memory used for dynamically allocated but owned data structures.
41 * For generic data types, this is *not* recursive. DynamicUsage(vector<vector<int> >)
42 * will compute the memory used for the vector<int>'s, but not for the ints inside.
43 * This is for efficiency reasons, as these functions are intended to be fast. If
44 * application data structures require more accurate inner accounting, they should
45 * iterate themselves, or use more efficient caching + updating on modification.
48 static inline size_t MallocUsage(size_t alloc)
50 // Measured on libc6 2.19 on Linux.
51 if (alloc == 0) {
52 return 0;
53 } else if (sizeof(void*) == 8) {
54 return ((alloc + 31) >> 4) << 4;
55 } else if (sizeof(void*) == 4) {
56 return ((alloc + 15) >> 3) << 3;
57 } else {
58 assert(0);
62 // STL data structures
64 template<typename X>
65 struct stl_tree_node
67 private:
68 int color;
69 void* parent;
70 void* left;
71 void* right;
72 X x;
75 struct stl_shared_counter
77 /* Various platforms use different sized counters here.
78 * Conservatively assume that they won't be larger than size_t. */
79 void* class_type;
80 size_t use_count;
81 size_t weak_count;
84 template<typename X>
85 static inline size_t DynamicUsage(const std::vector<X>& v)
87 return MallocUsage(v.capacity() * sizeof(X));
90 template<unsigned int N, typename X, typename S, typename D>
91 static inline size_t DynamicUsage(const prevector<N, X, S, D>& v)
93 return MallocUsage(v.allocated_memory());
96 template<typename X, typename Y>
97 static inline size_t DynamicUsage(const std::set<X, Y>& s)
99 return MallocUsage(sizeof(stl_tree_node<X>)) * s.size();
102 template<typename X, typename Y>
103 static inline size_t IncrementalDynamicUsage(const std::set<X, Y>& s)
105 return MallocUsage(sizeof(stl_tree_node<X>));
108 template<typename X, typename Y, typename Z>
109 static inline size_t DynamicUsage(const std::map<X, Y, Z>& m)
111 return MallocUsage(sizeof(stl_tree_node<std::pair<const X, Y> >)) * m.size();
114 template<typename X, typename Y, typename Z>
115 static inline size_t IncrementalDynamicUsage(const std::map<X, Y, Z>& m)
117 return MallocUsage(sizeof(stl_tree_node<std::pair<const X, Y> >));
120 // indirectmap has underlying map with pointer as key
122 template<typename X, typename Y>
123 static inline size_t DynamicUsage(const indirectmap<X, Y>& m)
125 return MallocUsage(sizeof(stl_tree_node<std::pair<const X*, Y> >)) * m.size();
128 template<typename X, typename Y>
129 static inline size_t IncrementalDynamicUsage(const indirectmap<X, Y>& m)
131 return MallocUsage(sizeof(stl_tree_node<std::pair<const X*, Y> >));
134 template<typename X>
135 static inline size_t DynamicUsage(const std::unique_ptr<X>& p)
137 return p ? MallocUsage(sizeof(X)) : 0;
140 template<typename X>
141 static inline size_t DynamicUsage(const std::shared_ptr<X>& p)
143 // A shared_ptr can either use a single continuous memory block for both
144 // the counter and the storage (when using std::make_shared), or separate.
145 // We can't observe the difference, however, so assume the worst.
146 return p ? MallocUsage(sizeof(X)) + MallocUsage(sizeof(stl_shared_counter)) : 0;
149 // Boost data structures
151 template<typename X>
152 struct boost_unordered_node : private X
154 private:
155 void* ptr;
158 template<typename X, typename Y>
159 static inline size_t DynamicUsage(const boost::unordered_set<X, Y>& s)
161 return MallocUsage(sizeof(boost_unordered_node<X>)) * s.size() + MallocUsage(sizeof(void*) * s.bucket_count());
164 template<typename X, typename Y, typename Z>
165 static inline size_t DynamicUsage(const boost::unordered_map<X, Y, Z>& m)
167 return MallocUsage(sizeof(boost_unordered_node<std::pair<const X, Y> >)) * m.size() + MallocUsage(sizeof(void*) * m.bucket_count());
172 #endif // BITCOIN_MEMUSAGE_H