-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory.hpp
executable file
·66 lines (55 loc) · 1.42 KB
/
memory.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
#ifndef MEMORY_HPP
#define MEMORY_HPP
#ifdef NDEBUG
# define DISABLE_DEBUG_MEMORY
#endif
#define DISABLE_DEBUG_MEMORY
#define __stringify(x) __stringify2(x)
#define __stringify2(x) #x
#define LINESTR __stringify(__LINE__)
#define LOCSTR __FILE__ ": " __stringify(__LINE__) " (" __FUNCTION__ ")"
#ifdef DISABLE_DEBUG_MEMORY
#define NEW new
#define ALLOCED(x) x
#else
#define NEW new(LOCSTR)
#define ALLOCED(x) __alloced(x, LOCSTR)
#endif
void unrecordAlloc(void *mem);
void recordAlloc(void *mem, const char *location);
void dumpAllocs();
template<class T>
T *__alloced(T *mem, const char *location) {
recordAlloc(mem, location);
return mem;
}
void *__markedAlloc(size_t size, const char *location);
#ifndef DISABLE_DEBUG_MEMORY
inline void *operator new(size_t size, const char *location) {
return __markedAlloc(size, location);
}
inline void *operator new[](size_t size, const char *location) {
return __markedAlloc(size, location);
}
inline void operator delete(void *mem) {
if(!mem) return;
unrecordAlloc(mem);
free(mem);
}
inline void operator delete[](void *mem) {
if(!mem) return;
unrecordAlloc(mem);
free(mem);
}
inline void operator delete(void *mem, const char *location) {
if(!mem) return;
unrecordAlloc(mem);
free(mem);
}
inline void operator delete[](void *mem, const char *location) {
if(!mem) return;
unrecordAlloc(mem);
free(mem);
}
#endif
#endif