njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | ---------------------------------------------------------------- |
| 4 | |
| 5 | Notice that the following BSD-style license applies to this one |
njn | 7fd15d6 | 2006-03-31 12:05:04 +0000 | [diff] [blame] | 6 | file (memcheck.h) only. The rest of Valgrind is licensed under the |
| 7 | terms of the GNU General Public License, version 2, unless |
| 8 | otherwise indicated. See the COPYING file in the source |
| 9 | distribution for details. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 10 | |
| 11 | ---------------------------------------------------------------- |
| 12 | |
nethercote | 137bc55 | 2003-11-14 17:47:54 +0000 | [diff] [blame] | 13 | This file is part of MemCheck, a heavyweight Valgrind tool for |
njn | c953984 | 2002-10-02 13:26:35 +0000 | [diff] [blame] | 14 | detecting memory errors. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 15 | |
sewardj | e4b0bf0 | 2006-06-05 23:21:15 +0000 | [diff] [blame] | 16 | Copyright (C) 2000-2006 Julian Seward. All rights reserved. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 17 | |
| 18 | Redistribution and use in source and binary forms, with or without |
| 19 | modification, are permitted provided that the following conditions |
| 20 | are met: |
| 21 | |
| 22 | 1. Redistributions of source code must retain the above copyright |
| 23 | notice, this list of conditions and the following disclaimer. |
| 24 | |
| 25 | 2. The origin of this software must not be misrepresented; you must |
| 26 | not claim that you wrote the original software. If you use this |
| 27 | software in a product, an acknowledgment in the product |
| 28 | documentation would be appreciated but is not required. |
| 29 | |
| 30 | 3. Altered source versions must be plainly marked as such, and must |
| 31 | not be misrepresented as being the original software. |
| 32 | |
| 33 | 4. The name of the author may not be used to endorse or promote |
| 34 | products derived from this software without specific prior written |
| 35 | permission. |
| 36 | |
| 37 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS |
| 38 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 39 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 40 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
| 41 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 42 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
| 43 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 44 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 45 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 46 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 47 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 48 | |
| 49 | ---------------------------------------------------------------- |
| 50 | |
| 51 | Notice that the above BSD-style license applies to this one file |
sewardj | a81709d | 2002-12-28 12:55:48 +0000 | [diff] [blame] | 52 | (memcheck.h) only. The entire rest of Valgrind is licensed under |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 53 | the terms of the GNU General Public License, version 2. See the |
| 54 | COPYING file in the source distribution for details. |
| 55 | |
| 56 | ---------------------------------------------------------------- |
| 57 | */ |
| 58 | |
| 59 | |
njn25 | cac76cb | 2002-09-23 11:21:57 +0000 | [diff] [blame] | 60 | #ifndef __MEMCHECK_H |
| 61 | #define __MEMCHECK_H |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 62 | |
| 63 | |
| 64 | /* This file is for inclusion into client (your!) code. |
| 65 | |
| 66 | You can use these macros to manipulate and query memory permissions |
| 67 | inside your own programs. |
| 68 | |
| 69 | See comment near the top of valgrind.h on how to use them. |
| 70 | */ |
| 71 | |
| 72 | #include "valgrind.h" |
| 73 | |
sewardj | fb1e9ad | 2006-03-10 13:41:58 +0000 | [diff] [blame] | 74 | /* !! ABIWARNING !! ABIWARNING !! ABIWARNING !! ABIWARNING !! |
| 75 | This enum comprises an ABI exported by Valgrind to programs |
| 76 | which use client requests. DO NOT CHANGE THE ORDER OF THESE |
sewardj | 0928fed | 2006-03-11 12:58:03 +0000 | [diff] [blame] | 77 | ENTRIES, NOR DELETE ANY -- add new ones at the end. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 78 | typedef |
| 79 | enum { |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 80 | VG_USERREQ__MAKE_MEM_NOACCESS = VG_USERREQ_TOOL_BASE('M','C'), |
| 81 | VG_USERREQ__MAKE_MEM_UNDEFINED, |
| 82 | VG_USERREQ__MAKE_MEM_DEFINED, |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 83 | VG_USERREQ__DISCARD, |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 84 | VG_USERREQ__CHECK_MEM_IS_ADDRESSABLE, |
| 85 | VG_USERREQ__CHECK_MEM_IS_DEFINED, |
njn | 47363ab | 2003-04-21 13:24:40 +0000 | [diff] [blame] | 86 | VG_USERREQ__DO_LEAK_CHECK, |
njn | 1078545 | 2003-05-20 16:38:24 +0000 | [diff] [blame] | 87 | VG_USERREQ__COUNT_LEAKS, |
njn | d799418 | 2003-10-02 13:44:04 +0000 | [diff] [blame] | 88 | |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 89 | VG_USERREQ__GET_VBITS, |
fitzhardinge | 98abfc7 | 2003-12-16 02:05:15 +0000 | [diff] [blame] | 90 | VG_USERREQ__SET_VBITS, |
| 91 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 92 | VG_USERREQ__CREATE_BLOCK, |
| 93 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 94 | VG_USERREQ__MAKE_MEM_DEFINED_IF_ADDRESSABLE, |
sewardj | fb1e9ad | 2006-03-10 13:41:58 +0000 | [diff] [blame] | 95 | |
fitzhardinge | 98abfc7 | 2003-12-16 02:05:15 +0000 | [diff] [blame] | 96 | /* This is just for memcheck's internal use - don't use it */ |
njn | 1f8b3e7 | 2005-03-22 04:27:14 +0000 | [diff] [blame] | 97 | _VG_USERREQ__MEMCHECK_RECORD_OVERLAP_ERROR |
| 98 | = VG_USERREQ_TOOL_BASE('M','C') + 256 |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 99 | } Vg_MemCheckClientRequest; |
| 100 | |
| 101 | |
| 102 | |
| 103 | /* Client-code macros to manipulate the state of memory. */ |
| 104 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 105 | /* Mark memory at _qzz_addr as unaddressable for _qzz_len bytes. */ |
| 106 | #define VALGRIND_MAKE_MEM_NOACCESS(_qzz_addr,_qzz_len) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 107 | (__extension__({unsigned int _qzz_res; \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 108 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 109 | VG_USERREQ__MAKE_MEM_NOACCESS, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 110 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 111 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 112 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 113 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 114 | /* Similarly, mark memory at _qzz_addr as addressable but undefined |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 115 | for _qzz_len bytes. */ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 116 | #define VALGRIND_MAKE_MEM_UNDEFINED(_qzz_addr,_qzz_len) \ |
| 117 | (__extension__({unsigned int _qzz_res; \ |
| 118 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
| 119 | VG_USERREQ__MAKE_MEM_UNDEFINED, \ |
| 120 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
| 121 | _qzz_res; \ |
| 122 | })) |
| 123 | |
| 124 | /* Similarly, mark memory at _qzz_addr as addressable and defined |
| 125 | for _qzz_len bytes. */ |
| 126 | #define VALGRIND_MAKE_MEM_DEFINED(_qzz_addr,_qzz_len) \ |
| 127 | (__extension__({unsigned int _qzz_res; \ |
| 128 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
| 129 | VG_USERREQ__MAKE_MEM_DEFINED, \ |
| 130 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
| 131 | _qzz_res; \ |
| 132 | })) |
| 133 | |
| 134 | /* This is the old name for VALGRIND_MAKE_MEM_NOACCESS. Deprecated. */ |
| 135 | #define VALGRIND_MAKE_NOACCESS(_qzz_addr,_qzz_len) \ |
| 136 | VALGRIND_MAKE_MEM_NOACCESS(_qzz_addr,_qzz_len) |
| 137 | |
| 138 | /* This is the old name for VALGRIND_MAKE_MEM_UNDEFINED. Deprecated. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 139 | #define VALGRIND_MAKE_WRITABLE(_qzz_addr,_qzz_len) \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 140 | VALGRIND_MAKE_MEM_UNDEFINED(_qzz_addr,_qzz_len) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 141 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 142 | /* This is the old name for VALGRIND_MAKE_MEM_DEFINED. Deprecated. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 143 | #define VALGRIND_MAKE_READABLE(_qzz_addr,_qzz_len) \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 144 | VALGRIND_MAKE_MEM_DEFINED(_qzz_addr,_qzz_len) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 145 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 146 | /* Similar to VALGRIND_MAKE_MEM_DEFINED except that addressability is |
| 147 | not altered: bytes which are addressable are marked as defined, |
| 148 | but those which are not addressable are left unchanged. */ |
| 149 | #define VALGRIND_MAKE_MEM_DEFINED_IF_ADDRESSABLE(_qzz_addr,_qzz_len) \ |
sewardj | fb1e9ad | 2006-03-10 13:41:58 +0000 | [diff] [blame] | 150 | (__extension__({unsigned int _qzz_res; \ |
| 151 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 152 | VG_USERREQ__MAKE_MEM_DEFINED_IF_ADDRESSABLE, \ |
sewardj | fb1e9ad | 2006-03-10 13:41:58 +0000 | [diff] [blame] | 153 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
| 154 | _qzz_res; \ |
| 155 | })) |
| 156 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 157 | /* Create a block-description handle. The description is an ascii |
| 158 | string which is included in any messages pertaining to addresses |
| 159 | within the specified memory range. Has no other effect on the |
| 160 | properties of the memory range. */ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 161 | #define VALGRIND_CREATE_BLOCK(_qzz_addr,_qzz_len, _qzz_desc) \ |
| 162 | (__extension__({unsigned int _qzz_res; \ |
| 163 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
| 164 | VG_USERREQ__CREATE_BLOCK, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 165 | _qzz_addr, _qzz_len, _qzz_desc, \ |
| 166 | 0, 0); \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 167 | _qzz_res; \ |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 168 | })) |
| 169 | |
| 170 | /* Discard a block-description-handle. Returns 1 for an |
| 171 | invalid handle, 0 for a valid handle. */ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 172 | #define VALGRIND_DISCARD(_qzz_blkindex) \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 173 | (__extension__ ({unsigned int _qzz_res; \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 174 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0 /* default return */, \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 175 | VG_USERREQ__DISCARD, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 176 | 0, _qzz_blkindex, 0, 0, 0); \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 177 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 178 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 179 | |
| 180 | |
| 181 | /* Client-code macros to check the state of memory. */ |
| 182 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 183 | /* Check that memory at _qzz_addr is addressable for _qzz_len bytes. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 184 | If suitable addressibility is not established, Valgrind prints an |
| 185 | error message and returns the address of the first offending byte. |
| 186 | Otherwise it returns zero. */ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 187 | #define VALGRIND_CHECK_MEM_IS_ADDRESSABLE(_qzz_addr,_qzz_len) \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 188 | (__extension__({unsigned int _qzz_res; \ |
| 189 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 190 | VG_USERREQ__CHECK_MEM_IS_ADDRESSABLE,\ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 191 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 192 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 193 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 194 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 195 | /* Check that memory at _qzz_addr is addressable and defined for |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 196 | _qzz_len bytes. If suitable addressibility and definedness are not |
| 197 | established, Valgrind prints an error message and returns the |
| 198 | address of the first offending byte. Otherwise it returns zero. */ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 199 | #define VALGRIND_CHECK_MEM_IS_DEFINED(_qzz_addr,_qzz_len) \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 200 | (__extension__({unsigned int _qzz_res; \ |
| 201 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 202 | VG_USERREQ__CHECK_MEM_IS_DEFINED, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 203 | _qzz_addr, _qzz_len, 0, 0, 0); \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 204 | _qzz_res; \ |
sewardj | 34a257c | 2003-03-15 19:20:52 +0000 | [diff] [blame] | 205 | })) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 206 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 207 | /* Use this macro to force the definedness and addressibility of an |
| 208 | lvalue to be checked. If suitable addressibility and definedness |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 209 | are not established, Valgrind prints an error message and returns |
| 210 | the address of the first offending byte. Otherwise it returns |
| 211 | zero. */ |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 212 | #define VALGRIND_CHECK_VALUE_IS_DEFINED(__lvalue) \ |
| 213 | VALGRIND_CHECK_MEM_IS_DEFINED( \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 214 | (volatile unsigned char *)&(__lvalue), \ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 215 | (unsigned int)(sizeof (__lvalue))) |
| 216 | |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 217 | /* This is the old name for VALGRIND_CHECK_MEM_IS_ADDRESSABLE. Deprecated. */ |
| 218 | #define VALGRIND_CHECK_WRITABLE(_qzz_addr,_qzz_len) \ |
| 219 | VALGRIND_CHECK_MEM_IS_ADDRESSABLE(_qzz_addr,_qzz_len) |
| 220 | |
| 221 | /* This is the old name for VALGRIND_CHECK_MEM_IS_DEFINED. Deprecated. */ |
| 222 | #define VALGRIND_CHECK_READABLE(_qzz_addr,_qzz_len) \ |
| 223 | VALGRIND_CHECK_MEM_IS_DEFINED(_qzz_addr,_qzz_len) |
| 224 | |
| 225 | /* This is the old name for VALGRIND_CHECK_VALUE_IS_DEFINED. Deprecated. */ |
| 226 | #define VALGRIND_CHECK_DEFINED(__lvalue) \ |
| 227 | VALGRIND_CHECK_VALUE_IS_DEFINED(__lvalue) |
| 228 | |
| 229 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 230 | /* Do a memory leak check mid-execution. */ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 231 | #define VALGRIND_DO_LEAK_CHECK \ |
| 232 | {unsigned int _qzz_res; \ |
| 233 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
| 234 | VG_USERREQ__DO_LEAK_CHECK, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 235 | 0, 0, 0, 0, 0); \ |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 236 | } |
| 237 | |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 238 | /* Just display summaries of leaked memory, rather than all the |
| 239 | details */ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 240 | #define VALGRIND_DO_QUICK_LEAK_CHECK \ |
| 241 | {unsigned int _qzz_res; \ |
| 242 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
| 243 | VG_USERREQ__DO_LEAK_CHECK, \ |
sewardj | 9af10a1 | 2006-02-01 14:59:42 +0000 | [diff] [blame] | 244 | 1, 0, 0, 0, 0); \ |
sewardj | b5f6f51 | 2005-03-10 23:59:00 +0000 | [diff] [blame] | 245 | } |
| 246 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 247 | /* Return number of leaked, dubious, reachable and suppressed bytes found by |
njn | 36c11e9 | 2006-04-06 14:21:42 +0000 | [diff] [blame] | 248 | all previous leak checks. They must be lvalues. */ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 249 | #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \ |
njn | 36c11e9 | 2006-04-06 14:21:42 +0000 | [diff] [blame] | 250 | /* For safety on 64-bit platforms we assign the results to private |
| 251 | unsigned long variables, then assign these to the lvalues the user |
| 252 | specified, which works no matter what type 'leaked', 'dubious', etc |
| 253 | are. We also initialise '_qzz_leaked', etc because |
| 254 | VG_USERREQ__COUNT_LEAKS doesn't mark the values returned as |
| 255 | initialised. */ \ |
| 256 | {unsigned int _qzz_res; \ |
| 257 | unsigned long _qzz_leaked = 0, _qzz_dubious = 0; \ |
| 258 | unsigned long _qzz_reachable = 0, _qzz_suppressed = 0; \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 259 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
njn | 36c11e9 | 2006-04-06 14:21:42 +0000 | [diff] [blame] | 260 | VG_USERREQ__COUNT_LEAKS, \ |
| 261 | &_qzz_leaked, &_qzz_dubious, \ |
| 262 | &_qzz_reachable, &_qzz_suppressed, 0); \ |
| 263 | leaked = _qzz_leaked; \ |
| 264 | dubious = _qzz_dubious; \ |
| 265 | reachable = _qzz_reachable; \ |
| 266 | suppressed = _qzz_suppressed; \ |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 267 | } |
| 268 | |
njn | 6e69ecd | 2003-10-02 13:25:02 +0000 | [diff] [blame] | 269 | |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 270 | /* Get the validity data for addresses [zza..zza+zznbytes-1] and copy it |
| 271 | into the provided zzvbits array. Return values: |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 272 | 0 if not running on valgrind |
| 273 | 1 success |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 274 | 2 [previously indicated unaligned arrays; these are now allowed] |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 275 | 3 if any parts of zzsrc/zzvbits are not addressable. |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 276 | The metadata is not copied in cases 0, 2 or 3 so it should be |
| 277 | impossible to segfault your system by using this call. |
| 278 | */ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 279 | #define VALGRIND_GET_VBITS(zza,zzvbits,zznbytes) \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 280 | (__extension__({unsigned int _qzz_res; \ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 281 | char* czza = (char*)zza; \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 282 | char* czzvbits = (char*)zzvbits; \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 283 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 284 | VG_USERREQ__GET_VBITS, \ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 285 | czza, czzvbits, zznbytes, 0, 0 ); \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 286 | _qzz_res; \ |
| 287 | })) |
| 288 | |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 289 | /* Set the validity data for addresses [zza..zza+zznbytes-1], copying it |
| 290 | from the provided zzvbits array. Return values: |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 291 | 0 if not running on valgrind |
| 292 | 1 success |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 293 | 2 [previously indicated unaligned arrays; these are now allowed] |
njn | dbf7ca7 | 2006-03-31 11:57:59 +0000 | [diff] [blame] | 294 | 3 if any parts of zza/zzvbits are not addressable. |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 295 | The metadata is not copied in cases 0, 2 or 3 so it should be |
| 296 | impossible to segfault your system by using this call. |
| 297 | */ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 298 | #define VALGRIND_SET_VBITS(zza,zzvbits,zznbytes) \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 299 | (__extension__({unsigned int _qzz_res; \ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 300 | char* czza = (char*)zza; \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 301 | char* czzvbits = (char*)zzvbits; \ |
sewardj | 0ec07f3 | 2006-01-12 12:32:32 +0000 | [diff] [blame] | 302 | VALGRIND_DO_CLIENT_REQUEST(_qzz_res, 0, \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 303 | VG_USERREQ__SET_VBITS, \ |
njn | 1d0825f | 2006-03-27 11:37:07 +0000 | [diff] [blame] | 304 | czza, czzvbits, zznbytes, 0, 0 ); \ |
sewardj | ee07084 | 2003-07-05 17:53:55 +0000 | [diff] [blame] | 305 | _qzz_res; \ |
| 306 | })) |
njn | d799418 | 2003-10-02 13:44:04 +0000 | [diff] [blame] | 307 | |
| 308 | #endif |
| 309 | |