VirtualBox

source: vbox/trunk/include/iprt/memtracker.h@ 44528

Last change on this file since 44528 was 44528, checked in by vboxsync, 12 years ago

header (C) fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.7 KB
Line 
1/** @file
2 * IPRT - Memory Tracker.
3 */
4
5/*
6 * Copyright (C) 2011 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_memtracker_h
27#define ___iprt_memtracker_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/list.h>
32
33RT_C_DECLS_BEGIN
34
35/** @defgroup grp_rt_memtracker RTMemTracker - Memory Allocation Tracker.
36 * @ingroup grp_rt
37 * @{
38 */
39
40/**
41 * The allocation/free method.
42 */
43typedef enum RTMEMTRACKERMETHOD
44{
45 RTMEMTRACKERMETHOD_INVALID = 0,
46 RTMEMTRACKERMETHOD_ALLOC,
47 RTMEMTRACKERMETHOD_ALLOCZ,
48 RTMEMTRACKERMETHOD_REALLOC_PREP, /**< Internal, don't use. */
49 RTMEMTRACKERMETHOD_REALLOC_DONE, /**< Internal, don't use. */
50 RTMEMTRACKERMETHOD_REALLOC_FAILED, /**< Internal, don't use. */
51 RTMEMTRACKERMETHOD_FREE,
52
53 RTMEMTRACKERMETHOD_NEW,
54 RTMEMTRACKERMETHOD_NEW_ARRAY,
55 RTMEMTRACKERMETHOD_DELETE,
56 RTMEMTRACKERMETHOD_DELETE_ARRAY,
57 RTMEMTRACKERMETHOD_END,
58 RTMEMTRACKERMETHOD_32BIT_HACK = 0x7fffffff
59} RTMEMTRACKERMETHOD;
60
61/** Pointer to a tag structure. */
62typedef struct RTMEMTRACKERTAG *PRTMEMTRACKERTAG;
63
64/** Pointer to a user structure. */
65typedef struct RTMEMTRACKERUSER *PRTMEMTRACKERUSER;
66
67/**
68 * Memory Tracking Header for use with RTMemTrackerHdrAlloc,
69 * RTMemTrackerHdrReallocPrep, RTMemTrackerHdrReallocDone and
70 * RTMemTrackerHdrFree.
71 */
72typedef struct RTMEMTRACKERHDR
73{
74 /** Magic value / eye catcher (RTMEMTRACKERHDR_MAGIC). */
75 size_t uMagic;
76 /** The allocation size, user data only. */
77 size_t cbUser;
78 /** The list entry. */
79 RTLISTNODE ListEntry;
80 /** Pointer to the user structure where this header is linked. */
81 PRTMEMTRACKERUSER pUser;
82 /** Pointer to the per-tag structure. */
83 PRTMEMTRACKERTAG pTag;
84 /** The tag string. */
85 const char *pszTag;
86 /** Pointer to the user data we're tracking. */
87 void *pvUser;
88} RTMEMTRACKERHDR;
89/** Pointer to a memory tracker header. */
90typedef RTMEMTRACKERHDR *PRTMEMTRACKERHDR;
91/** Pointer to a const memory tracker header. */
92typedef RTMEMTRACKERHDR *PPRTMEMTRACKERHDR;
93
94/** Magic value for RTMEMTRACKERHDR::uMagic (Kelly Link). */
95#if ARCH_BITS == 64
96# define RTMEMTRACKERHDR_MAGIC UINT64_C(0x1907691919690719)
97#else
98# define RTMEMTRACKERHDR_MAGIC UINT32_C(0x19690719)
99#endif
100/** Magic number used when reallocated. */
101#if ARCH_BITS == 64
102# define RTMEMTRACKERHDR_MAGIC_REALLOC UINT64_C(0x0000691919690000)
103#else
104# define RTMEMTRACKERHDR_MAGIC_REALLOC UINT32_C(0x19690000)
105#endif
106/** Magic number used when freed. */
107#define RTMEMTRACKERHDR_MAGIC_FREE (~RTMEMTRACKERHDR_MAGIC)
108
109
110/**
111 * Initializes the allocation header and links it to the relevant tag.
112 *
113 * @returns Pointer to the user data part.
114 * @param pv The header + user data block. This must be at
115 * least @a cb + sizeof(RTMEMTRACKERHDR).
116 * @param cbUser The user data size (bytes).
117 * @param pszTag The tag string.
118 * @param enmMethod The method that the user called.
119 */
120RTDECL(void *) RTMemTrackerHdrAlloc(void *pv, size_t cbUser, const char *pszTag, RTMEMTRACKERMETHOD enmMethod);
121
122/**
123 * Prepares for a realloc, i.e. invalidates the header.
124 *
125 * @returns Pointer to the user data part.
126 * @param pvOldUser Pointer to the old user data.
127 * @param cbOldUser The size of the old user data, 0 if not
128 * known.
129 * @param pszTag The tag string.
130 */
131RTDECL(void *) RTMemTrackerHdrReallocPrep(void *pvOldUser, size_t cbOldUser, const char *pszTag);
132
133/**
134 * Initializes the allocation header and links it to the relevant tag.
135 *
136 * @returns Pointer to the user data part.
137 * @param pvNew The new header + user data block. This must be
138 * at least @a cb + sizeof(RTMEMTRACKERHDR). If
139 * this is NULL, we assume the realloc() call
140 * failed.
141 * @param cbNewUser The user data size (bytes).
142 * @param pvOldUser Pointer to the old user data. This is only
143 * valid on failure of course and used to bail out
144 * in that case. Should not be NULL.
145 * @param pszTag The tag string.
146 */
147RTDECL(void *) RTMemTrackerHdrReallocDone(void *pvNew, size_t cbNewUser, void *pvOldUser, const char *pszTag);
148
149
150/**
151 * Do the accounting on free.
152 *
153 * @returns @a pv.
154 * @param pvUser Pointer to the user data.
155 * @param cbUser The size of the user data, 0 if not known.
156 * @param pszTag The tag string.
157 * @param enmMethod The method that the user called.
158 */
159RTDECL(void *) RTMemTrackerHdrFree(void *pvUser, size_t cbUser, const char *pszTag, RTMEMTRACKERMETHOD enmMethod);
160
161
162/**
163 * Dumps all the allocations and tag statistics to the log.
164 */
165RTDECL(void) RTMemTrackerDumpAllToLog(void);
166
167/**
168 * Dumps all the allocations and tag statistics to the release log.
169 */
170RTDECL(void) RTMemTrackerDumpAllToLogRel(void);
171
172/**
173 * Dumps all the allocations and tag statistics to standard out.
174 */
175RTDECL(void) RTMemTrackerDumpAllToStdOut(void);
176
177/**
178 * Dumps all the allocations and tag statistics to standard err.
179 */
180RTDECL(void) RTMemTrackerDumpAllToStdErr(void);
181
182/**
183 * Dumps all the allocations and tag statistics to the specified filename.
184 */
185RTDECL(void) RTMemTrackerDumpAllToFile(const char *pszFilename);
186
187
188/**
189 * Dumps all the tag statistics to the log.
190 *
191 * @param fVerbose Whether to print all the stats or just the ones
192 * relevant to hunting leaks.
193 */
194RTDECL(void) RTMemTrackerDumpStatsToLog(bool fVerbose);
195
196/**
197 * Dumps all the tag statistics to the release log.
198 *
199 * @param fVerbose Whether to print all the stats or just the ones
200 * relevant to hunting leaks.
201 */
202RTDECL(void) RTMemTrackerDumpStatsToLogRel(bool fVerbose);
203
204/**
205 * Dumps all the tag statistics to standard out.
206 *
207 * @param fVerbose Whether to print all the stats or just the ones
208 * relevant to hunting leaks.
209 */
210RTDECL(void) RTMemTrackerDumpStatsToStdOut(bool fVerbose);
211
212/**
213 * Dumps all the tag statistics to standard err.
214 *
215 * @param fVerbose Whether to print all the stats or just the ones
216 * relevant to hunting leaks.
217 */
218RTDECL(void) RTMemTrackerDumpStatsToStdErr(bool fVerbose);
219
220/**
221 * Dumps all the tag statistics to the specified filename.
222 *
223 * @param fVerbose Whether to print all the stats or just the ones
224 * relevant to hunting leaks.
225 * @param pszFilename The name of the file to dump to.
226 */
227RTDECL(void) RTMemTrackerDumpStatsToFile(bool fVerbose, const char *pszFilename);
228
229
230
231/** @} */
232
233RT_C_DECLS_END
234
235#endif
236
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette