| 1 | /* | 
|---|
| 2 | * MemDebug.hpp | 
|---|
| 3 | * | 
|---|
| 4 | *  Created on: Apr 28, 2010 | 
|---|
| 5 | *      Author: crueger | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef MEMDEBUG_HPP_ | 
|---|
| 9 | #define MEMDEBUG_HPP_ | 
|---|
| 10 |  | 
|---|
| 11 | // include config.h | 
|---|
| 12 | #ifdef HAVE_CONFIG_H | 
|---|
| 13 | #include <config.h> | 
|---|
| 14 | #endif | 
|---|
| 15 |  | 
|---|
| 16 | /** | 
|---|
| 17 | * @file | 
|---|
| 18 | * This module allows easy automatic memory tracking. Link this module to replace the | 
|---|
| 19 | * operators new, new[], delete and delete[] with custom versions that add tracking | 
|---|
| 20 | * information to allocated blocks. | 
|---|
| 21 | * | 
|---|
| 22 | * All tracking is done in O(1) for new and delete operators. Summaries for the | 
|---|
| 23 | * used memory take O(N), where N is the number of currently allocated memory chunks. | 
|---|
| 24 | * | 
|---|
| 25 | * To use full tracking including file name and line number include this file in | 
|---|
| 26 | * your sourcefiles. | 
|---|
| 27 | */ | 
|---|
| 28 |  | 
|---|
| 29 | // Set all flags in a way that makes sense | 
|---|
| 30 |  | 
|---|
| 31 | // NDEBUG implies NO_MEMDEBUG | 
|---|
| 32 | #ifdef NDEBUG | 
|---|
| 33 | # ifndef NO_MEMDEBUG | 
|---|
| 34 | #   define NO_MEMDEBUG | 
|---|
| 35 | # endif | 
|---|
| 36 | #endif | 
|---|
| 37 |  | 
|---|
| 38 | // NO_MEMDEBUG and MEMDEBUG are mutually exclusive, but at least one must be set | 
|---|
| 39 | #ifdef NO_MEMDEBUG | 
|---|
| 40 | # ifdef MEMDEBUG | 
|---|
| 41 | #   undef MEMDEBUG | 
|---|
| 42 | # endif | 
|---|
| 43 | #else | 
|---|
| 44 | # ifndef MEMDEBUG | 
|---|
| 45 | #   define MEMDEBUG | 
|---|
| 46 | # endif | 
|---|
| 47 | #endif | 
|---|
| 48 |  | 
|---|
| 49 | #ifdef MEMDEBUG | 
|---|
| 50 |  | 
|---|
| 51 | #include <new> | 
|---|
| 52 |  | 
|---|
| 53 | // some light header files, that do weird new stuff and therefore need | 
|---|
| 54 | // to be loaded before the define | 
|---|
| 55 | #include <string> | 
|---|
| 56 | #if defined HAVE_BOOST_OPTIONAL_HPP || defined HAVE_BOOST_THREAD_HPP | 
|---|
| 57 | #include <boost/optional.hpp> | 
|---|
| 58 | #endif | 
|---|
| 59 | #if defined HAVE_BOOST_SHARED_PTR_HPP || defined HAVE_BOOST_THREAD_HPP | 
|---|
| 60 | #include <boost/shared_ptr.hpp> | 
|---|
| 61 | #include <boost/make_shared.hpp> | 
|---|
| 62 | #endif | 
|---|
| 63 | #ifdef HAVE_BOOST_BIND_HPP | 
|---|
| 64 | #include <boost/bind.hpp> | 
|---|
| 65 | #endif | 
|---|
| 66 | #if defined HAVE_BOOST_FUNCTION_HPP || defined HAVE_BOOST_THREAD_HPP | 
|---|
| 67 | #include <boost/function.hpp> | 
|---|
| 68 | #endif | 
|---|
| 69 | #ifdef HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP | 
|---|
| 70 | // serialization has bug with overloaded new, see https://svn.boost.org/trac/boost/ticket/3400 | 
|---|
| 71 | #include <boost/serialization/access.hpp> | 
|---|
| 72 | #include <boost/archive/detail/iserializer.hpp> | 
|---|
| 73 | #endif | 
|---|
| 74 | #if defined HAVE_VALARRAY || defined HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP | 
|---|
| 75 | // valarray uses specific new as well | 
|---|
| 76 | #include <valarray> | 
|---|
| 77 | #endif | 
|---|
| 78 | #if defined HAVE_BOOST_MULTI_ARRAY_HPP || defined HAVE_BOOST_ASIO_HPP | 
|---|
| 79 | // multiarray uses type trait has_new_operator.hpp | 
|---|
| 80 | #include <boost/type_traits/has_new_operator.hpp> | 
|---|
| 81 | #endif | 
|---|
| 82 | #if defined HAVE_BOOST_ASIO_HPP || defined HAVE_BOOST_ARCHIVE_TEXT_OARCHIVE_HPP | 
|---|
| 83 | // boost asio and its archives use own allocator | 
|---|
| 84 | #include <boost/serialization/shared_ptr_132.hpp> | 
|---|
| 85 | #endif | 
|---|
| 86 | #if defined HAVE_BOOST_MPL_FOR_EACH_HPP | 
|---|
| 87 | // boost mpl requires the value_init which uses placement new | 
|---|
| 88 | #include <boost/utility/value_init.hpp> | 
|---|
| 89 | #endif | 
|---|
| 90 | #if defined HAVE_BOOST_EXCEPTION_ALL_HPP | 
|---|
| 91 | // boost exceptions has two inaccessible static objects for bad_alloc and bad_exception | 
|---|
| 92 | #include <boost/exception/detail/exception_ptr.hpp> | 
|---|
| 93 | #endif | 
|---|
| 94 | #if defined HAVE_BOOST_FOREACH_HPP | 
|---|
| 95 | // boost foreach uses placement new | 
|---|
| 96 | #include <boost/foreach.hpp> | 
|---|
| 97 | #endif | 
|---|
| 98 | #if defined HAVE_BOOST_BIMAP_HPP | 
|---|
| 99 | // boost bimap uses placement new | 
|---|
| 100 | #include <boost/detail/allocator_utilities.hpp> | 
|---|
| 101 | #endif | 
|---|
| 102 |  | 
|---|
| 103 |  | 
|---|
| 104 | namespace Memory { | 
|---|
| 105 |  | 
|---|
| 106 | /** | 
|---|
| 107 | * Displays a short summary of the memory state. | 
|---|
| 108 | */ | 
|---|
| 109 | void getState(); | 
|---|
| 110 | void dumpMemory(std::ostream&); | 
|---|
| 111 |  | 
|---|
| 112 | void _ignore(void*); | 
|---|
| 113 |  | 
|---|
| 114 | /** | 
|---|
| 115 | * Use this to disable memory for a certain pointer on the heap. | 
|---|
| 116 | * This is useful for pointers which should live over the run of the | 
|---|
| 117 | * program, and which are deleted automatically at the end. Usually these | 
|---|
| 118 | * pointers should be wrapped inside some kind of smart pointer to | 
|---|
| 119 | * ensure destruction at the end. | 
|---|
| 120 | */ | 
|---|
| 121 | template <typename T> | 
|---|
| 122 | T *ignore(T* ptr){ | 
|---|
| 123 | _ignore((void*)ptr); | 
|---|
| 124 | return ptr; | 
|---|
| 125 | } | 
|---|
| 126 | } | 
|---|
| 127 | #ifdef __GNUC__ | 
|---|
| 128 | void *operator new   (size_t nbytes,const char* file, int line, const char* func) throw(std::bad_alloc); | 
|---|
| 129 | void *operator new[] (size_t nbytes,const char* file, int line, const char* func) throw(std::bad_alloc); | 
|---|
| 130 | #else | 
|---|
| 131 | void *operator new   (size_t nbytes,const char* file, int line) throw(std::bad_alloc); | 
|---|
| 132 | void *operator new[] (size_t nbytes,const char* file, int line) throw(std::bad_alloc); | 
|---|
| 133 | #endif | 
|---|
| 134 | void operator delete   (void *ptr,const char*, int) throw(); | 
|---|
| 135 | void operator delete[] (void *ptr,const char*, int) throw(); | 
|---|
| 136 |  | 
|---|
| 137 |  | 
|---|
| 138 |  | 
|---|
| 139 | /** | 
|---|
| 140 | * This macro replaces all occurences of the keyword new with a replaced | 
|---|
| 141 | * version that allows tracking. | 
|---|
| 142 | */ | 
|---|
| 143 | #ifdef __GNUC__ | 
|---|
| 144 | #define new new(__FILE__,__LINE__,__PRETTY_FUNCTION__) | 
|---|
| 145 | #else | 
|---|
| 146 | #define new new(__FILE__,__LINE__) | 
|---|
| 147 | #endif | 
|---|
| 148 |  | 
|---|
| 149 | #else | 
|---|
| 150 |  | 
|---|
| 151 | #include <iosfwd> | 
|---|
| 152 |  | 
|---|
| 153 | // memory debugging was disabled | 
|---|
| 154 |  | 
|---|
| 155 | namespace Memory { | 
|---|
| 156 | inline void getState(){}; | 
|---|
| 157 |  | 
|---|
| 158 | inline void dumpMemory(std::ostream&){}; | 
|---|
| 159 |  | 
|---|
| 160 | template <typename T> | 
|---|
| 161 | inline T *ignore(T* ptr){ | 
|---|
| 162 | return ptr; | 
|---|
| 163 | } | 
|---|
| 164 | } | 
|---|
| 165 |  | 
|---|
| 166 | #endif | 
|---|
| 167 |  | 
|---|
| 168 |  | 
|---|
| 169 | #endif /* MEMDEBUG_HPP_ */ | 
|---|