-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnew.hpp
333 lines (278 loc) · 7.41 KB
/
new.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
#pragma once
#ifndef __cplusplus
#error C++ compiler is required!"
#endif
#if 0
#ifdef new
#undef new
#endif
#include <new>
#include <memory>
#include <vector>
#include <utility>
#include <functional>
#include <unordered_set>
#include <iostream>
#include <ostream>
#include <cstdlib>
namespace ndt {
namespace detail
{
template<typename T>
struct malloc_allocator_t : std::allocator<T>
{
malloc_allocator_t() = default;
template<class U>
malloc_allocator_t(const malloc_allocator_t<U>&) noexcept {}
T* allocate(std::size_t n)
{
T* ptr = (T*)std::malloc(n * sizeof(T));
if (!ptr) throw std::bad_alloc();
return ptr;
}
void deallocate(T* ptr, std::size_t) { std::free(ptr); }
template<typename U>
struct rebind { typedef malloc_allocator_t<U> other; };
};
using string_t = const char*;
struct new_entry_t
{
new_entry_t(void* p = nullptr, bool a = false, std::size_t b = 0,
string_t f = "N/A", int l = -1, string_t fn = "N/A")
: ptr{ p }, is_array{ a }, bytes{ b }, file{ f }, line{ l }, func{ fn } {}
void* ptr;
bool is_array;
std::size_t bytes;
string_t file;
int line;
string_t func;
};
inline std::ostream& operator << (std::ostream& os, const new_entry_t& entry)
{
os << entry.bytes << "B leaked using '" << (entry.is_array ? "new[]" : "new")
<< "' -> '" << entry.file << ":" << entry.line << "' in '" << entry.func << "'";
return os;
}
inline bool operator == (const new_entry_t& lhs, const new_entry_t& rhs) { return lhs.ptr == rhs.ptr; }
struct new_entry_hash_t : std::hash<void*>
{
using base = std::hash<void*>;
std::size_t operator()(const new_entry_t& entry) const { return base::operator()(entry.ptr); }
};
using new_entry_set_t = std::unordered_set<new_entry_t, new_entry_hash_t, std::equal_to<new_entry_t>, malloc_allocator_t<new_entry_t>>;
using new_entry_list_t = std::vector<new_entry_t, malloc_allocator_t<new_entry_t>>;
static inline auto get_new_entry_set()
{
static new_entry_set_t* new_entry_set = []()
{
void* raw = std::malloc(sizeof(new_entry_set_t));
if (!raw) throw std::bad_alloc();
return new (raw) new_entry_set_t;
}();
return new_entry_set;
}
inline auto get_mismatch_list()
{
static new_entry_list_t* mismatch_list = []()
{
void* raw = std::malloc(sizeof(new_entry_list_t));
if (!raw) throw std::bad_alloc();
return new (raw) new_entry_list_t;
}();
return mismatch_list;
}
inline void operator_delete(void* ptr, bool array_delete) noexcept
{
auto it = get_new_entry_set()->find(ptr);
if (it != get_new_entry_set()->end())
{
if (it->is_array == array_delete)
{
get_new_entry_set()->erase(it);
}
else
{
try { get_mismatch_list()->push_back(*it); }
catch (...) {}
get_new_entry_set()->erase(it);
}
}
std::free(ptr);
}
}
}
namespace ndt
{
inline void dump_leak()
{
auto leaks = detail::get_new_entry_set();
if (!leaks->empty())
{
std::cerr << "****************************\n";
std::cerr << "*** MEMORY LEAK(S) FOUND ***\n";
std::cerr << "****************************\n\n";
for (auto& entry : *leaks)
std::cerr << entry << "\n";
std::cerr << "\n";
}
}
inline void dump_mismatch()
{
auto mismatches = detail::get_mismatch_list();
if (!mismatches->empty())
{
std::cerr << "***************************\n";
std::cerr << "*** NEW/DELETE MISMATCH ***\n";
std::cerr << "***************************\n\n";
for (auto& entry : *mismatches)
std::cerr << entry << ", freed using '" << (entry.is_array ? "delete" : "delete[]") << "'\n";
std::cerr << "\n";
}
}
inline void dump_all()
{
dump_leak();
dump_mismatch();
}
}
#ifdef ENABLE_NEW_DELETE_TRACE_DUMP
namespace { inline const struct __dump_all__ { ~__dump_all__() { ndt::dump_all(); } } __dump_all_on_exit__; }
#endif
void* operator new (std::size_t n)
{
void* ptr = std::malloc(n);
if (!ptr) throw std::bad_alloc();
return ptr;
}
void* operator new (std::size_t n, const std::nothrow_t&) noexcept
{
void* ptr = std::malloc(n);
return ptr;
}
void* operator new (std::size_t n, ndt::detail::new_entry_t&& entry)
{
void* ptr = ::operator new(n);
entry.ptr = ptr;
try { ndt::detail::get_new_entry_set()->insert(std::forward<decltype(entry)>(entry)); }
catch (...) {}
return ptr;
}
void* operator new (std::size_t n, const std::nothrow_t& nt, ndt::detail::new_entry_t&& entry) noexcept
{
void* ptr = ::operator new(n, nt);
if (ptr)
{
entry.ptr = ptr;
try { ndt::detail::get_new_entry_set()->insert(std::forward<decltype(entry)>(entry)); }
catch (...) {}
}
return ptr;
}
void* operator new (std::size_t n, ndt::detail::string_t file, int line, ndt::detail::string_t func)
{
return ::operator new(n, ndt::detail::new_entry_t{ nullptr, false, n, file, line, func });
}
void* operator new (std::size_t n, const std::nothrow_t& nt, ndt::detail::string_t file, int line, ndt::detail::string_t func)
{
return ::operator new(n, nt, ndt::detail::new_entry_t{ nullptr, false, n, file, line, func });
}
void* operator new [](std::size_t n, ndt::detail::string_t file, int line, ndt::detail::string_t func)
{
return ::operator new(n, ndt::detail::new_entry_t{ nullptr, true, n, file, line, func });
}
void* operator new [](std::size_t n, const std::nothrow_t& nt, ndt::detail::string_t file, int line, ndt::detail::string_t func)
{
return ::operator new(n, nt, ndt::detail::new_entry_t{ nullptr, true, n, file, line, func });
}
void operator delete (void* ptr) noexcept
{
ndt::detail::operator_delete(ptr, false);
}
void operator delete [](void* ptr) noexcept
{
ndt::detail::operator_delete(ptr, true);
}
void operator delete (void* ptr, ndt::detail::string_t, int, ndt::detail::string_t) noexcept
{
ndt::detail::operator_delete(ptr, false);
}
void operator delete [](void* ptr, ndt::detail::string_t, int, ndt::detail::string_t) noexcept
{
ndt::detail::operator_delete(ptr, true);
}
#ifndef new
//#define new_impl(DUMMY, ...) new(__VA_ARGS__)
//#define new(...) new_impl(,__VA_ARGS__,__FILE__, __LINE__, __FUNCTION__)
#define new new(__FILE__, __LINE__, __FUNCTION__)
#endif
#else
#include <new>
#include "MemControllerAgent.h"
//#if __cplusplus >= 201703L
//#define cpp_ver_above_17 1
//#else
//#define cpp_ver_above_17 0
//#endif
//
//#if cpp_ver_above_17 == 0
template <bool have_nothrow = false>
struct new_operator_traits
{
static inline void bad_alloc()
{
throw std::bad_alloc();
}
};
template <>
struct new_operator_traits<true>
{
static inline void bad_alloc() noexcept { }
};
//#endif
//
// TODO agent sayfasýna taþý
struct memdtl
{
static inline MemControllerAgent* agent()
{
static thread_local MemControllerAgent agnt;
return &agnt;
}
};
template <bool have_nothrow = false>
inline void* new_operator(std::size_t n) noexcept(have_nothrow)
{
void* ptr = std::malloc(n);
if (!ptr) new_operator_traits<have_nothrow>::bad_alloc();
else memdtl::agent()->allocated(ptr, n);
return ptr;
}
void* operator new (std::size_t n)
{
return new_operator<false>(n);
}
void* operator new (std::size_t n, const std::nothrow_t&) noexcept
{
return new_operator<true>(n);
}
void* operator new [](std::size_t n)
{
return new_operator<false>(n);
}
void* operator new [](std::size_t n, const std::nothrow_t&) noexcept
{
return new_operator<true>(n);
}
void operator delete (void* ptr) noexcept
{
_ASSERT(ptr);
memdtl::agent()->deallocated(ptr);
std::free(ptr);
}
void operator delete [](void* ptr) noexcept
{
_ASSERT(ptr);
memdtl::agent()->deallocated(ptr);
std::free(ptr);
}
#endif