blob: 44d9d05ad94c1ac4ac19d0338a1cfd34a223a2d9 [file] [log] [blame]
njn5c004e42002-11-18 11:04:50 +00001
2/*--------------------------------------------------------------------*/
njn43c799e2003-04-08 00:08:52 +00003/*--- Declarations shared between MemCheck and AddrCheck. ---*/
4/*--- mac_shared.h ---*/
njn5c004e42002-11-18 11:04:50 +00005/*--------------------------------------------------------------------*/
6
7/*
nethercote137bc552003-11-14 17:47:54 +00008 This file is part of MemCheck, a heavyweight Valgrind tool for
9 detecting memory errors, and AddrCheck, a lightweight Valgrind tool
njn5c004e42002-11-18 11:04:50 +000010 for detecting memory errors.
11
njn53612422005-03-12 16:22:54 +000012 Copyright (C) 2000-2005 Julian Seward
njn5c004e42002-11-18 11:04:50 +000013 jseward@acm.org
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
30 The GNU General Public License is contained in the file COPYING.
31*/
32
njn43c799e2003-04-08 00:08:52 +000033/* Note: This header contains the declarations shared between
34 Addrcheck and Memcheck, and is #included by both. */
35
36#ifndef __MAC_SHARED_H
37#define __MAC_SHARED_H
njn5c004e42002-11-18 11:04:50 +000038
nethercote46063202004-09-02 08:51:43 +000039#include "tool.h"
njn43c799e2003-04-08 00:08:52 +000040
41#define MAC_(str) VGAPPEND(vgMAC_,str)
njn5c004e42002-11-18 11:04:50 +000042
njn9b007f62003-04-07 14:40:25 +000043/*------------------------------------------------------------*/
44/*--- Errors and suppressions ---*/
45/*------------------------------------------------------------*/
46
njn5c004e42002-11-18 11:04:50 +000047/* The classification of a faulting address. */
48typedef
njn43c799e2003-04-08 00:08:52 +000049 enum {
nethercote8b76fe52004-11-08 19:20:09 +000050 Undescribed, // as-yet unclassified
njn43c799e2003-04-08 00:08:52 +000051 Stack,
nethercote8b76fe52004-11-08 19:20:09 +000052 Unknown, // classification yielded nothing useful
njn43c799e2003-04-08 00:08:52 +000053 Freed, Mallocd,
nethercote8b76fe52004-11-08 19:20:09 +000054 UserG, // in a user-defined block
55 Mempool, // in a mempool
56 Register, // in a register; for Param errors only
njn5c004e42002-11-18 11:04:50 +000057 }
58 AddrKind;
59
60/* Records info about a faulting address. */
61typedef
nethercote05675c82004-08-04 10:37:49 +000062 struct { // Used by:
63 AddrKind akind; // ALL
nethercote928a5f72004-11-03 18:10:37 +000064 SizeT blksize; // Freed, Mallocd
nethercote8b76fe52004-11-08 19:20:09 +000065 OffT rwoffset; // Freed, Mallocd
nethercote05675c82004-08-04 10:37:49 +000066 ExeContext* lastchange; // Freed, Mallocd
67 ThreadId stack_tid; // Stack
sewardjb5f6f512005-03-10 23:59:00 +000068 const Char *desc; // UserG
nethercote05675c82004-08-04 10:37:49 +000069 Bool maybe_gcc; // True if just below %esp -- could be a gcc bug.
njn5c004e42002-11-18 11:04:50 +000070 }
71 AddrInfo;
72
73typedef
74 enum {
nethercote05675c82004-08-04 10:37:49 +000075 ParamSupp, // Bad syscall params
76 CoreMemSupp, // Memory errors in core (pthread ops, signal handling)
77
78 // Use of invalid values of given size (MemCheck only)
njnc0616662003-06-12 09:58:41 +000079 Value0Supp, Value1Supp, Value2Supp, Value4Supp, Value8Supp, Value16Supp,
nethercote05675c82004-08-04 10:37:49 +000080
81 // Invalid read/write attempt at given size
njnc0616662003-06-12 09:58:41 +000082 Addr1Supp, Addr2Supp, Addr4Supp, Addr8Supp, Addr16Supp,
nethercote05675c82004-08-04 10:37:49 +000083
84 FreeSupp, // Invalid or mismatching free
85 OverlapSupp, // Overlapping blocks in memcpy(), strcpy(), etc
86 LeakSupp, // Something to be suppressed in a leak check.
87 MempoolSupp, // Memory pool suppression.
njn5c004e42002-11-18 11:04:50 +000088 }
njn43c799e2003-04-08 00:08:52 +000089 MAC_SuppKind;
njn5c004e42002-11-18 11:04:50 +000090
91/* What kind of error it is. */
92typedef
93 enum { ValueErr, /* Memcheck only */
94 CoreMemErr,
95 AddrErr,
96 ParamErr, UserErr, /* behaves like an anonymous ParamErr */
njn43c799e2003-04-08 00:08:52 +000097 FreeErr, FreeMismatchErr,
njn7201b2a2003-08-19 12:16:05 +000098 OverlapErr,
rjwalshbc0bb832004-06-19 18:12:36 +000099 LeakErr,
100 IllegalMempoolErr,
njn5c004e42002-11-18 11:04:50 +0000101 }
njn43c799e2003-04-08 00:08:52 +0000102 MAC_ErrorKind;
njn5c004e42002-11-18 11:04:50 +0000103
104/* What kind of memory access is involved in the error? */
105typedef
106 enum { ReadAxs, WriteAxs, ExecAxs }
107 AxsKind;
108
109/* Extra context for memory errors */
110typedef
nethercote05675c82004-08-04 10:37:49 +0000111 struct { // Used by:
112 AxsKind axskind; // AddrErr
113 Int size; // AddrErr, ValueErr
114 AddrInfo addrinfo; // {Addr,Free,FreeMismatch,Param,User}Err
nethercote8b76fe52004-11-08 19:20:09 +0000115 Bool isUnaddr; // {CoreMem,Param,User}Err
njn5c004e42002-11-18 11:04:50 +0000116 }
njn43c799e2003-04-08 00:08:52 +0000117 MAC_Error;
njn5c004e42002-11-18 11:04:50 +0000118
njnb6cae9f2003-09-04 20:50:47 +0000119/* Extra info for overlap errors */
120typedef
121 struct {
122 Addr src;
123 Addr dst;
124 Int len; // -1 if unused
125 }
126 OverlapExtra;
127
njn3e884182003-04-15 13:03:23 +0000128/* For malloc()/new/new[] vs. free()/delete/delete[] mismatch checking. */
129typedef
130 enum {
131 MAC_AllocMalloc = 0,
132 MAC_AllocNew = 1,
njn10785452003-05-20 16:38:24 +0000133 MAC_AllocNewVec = 2,
134 MAC_AllocCustom = 3
njn3e884182003-04-15 13:03:23 +0000135 }
136 MAC_AllocKind;
137
138/* Nb: first two fields must match core's VgHashNode. */
139typedef
140 struct _MAC_Chunk {
141 struct _MAC_Chunk* next;
nethercote05675c82004-08-04 10:37:49 +0000142 Addr data; // ptr to actual block
njnb729e0d2004-12-01 00:19:38 +0000143 SizeT size : (sizeof(UWord)*8)-2; // size requested; 30 or 62 bits
nethercote05675c82004-08-04 10:37:49 +0000144 MAC_AllocKind allockind : 2; // which wrapper did the allocation
145 ExeContext* where; // where it was allocated
njn3e884182003-04-15 13:03:23 +0000146 }
147 MAC_Chunk;
148
rjwalshbc0bb832004-06-19 18:12:36 +0000149/* Memory pool. Nb: first two fields must match core's VgHashNode. */
150typedef
151 struct _MAC_Mempool {
152 struct _MAC_Mempool* next;
nethercote05675c82004-08-04 10:37:49 +0000153 Addr pool; // pool identifier
njnb729e0d2004-12-01 00:19:38 +0000154 SizeT rzB; // pool red-zone size
nethercote05675c82004-08-04 10:37:49 +0000155 Bool is_zeroed; // allocations from this pool are zeroed
156 VgHashTable chunks; // chunks associated with this pool
rjwalshbc0bb832004-06-19 18:12:36 +0000157 }
158 MAC_Mempool;
159
160
njn9b007f62003-04-07 14:40:25 +0000161/*------------------------------------------------------------*/
nethercote7cc9c232004-01-21 15:08:04 +0000162/*--- Profiling of tools and memory events ---*/
njn9b007f62003-04-07 14:40:25 +0000163/*------------------------------------------------------------*/
164
165typedef
166 enum {
167 VgpCheckMem = VgpFini+1,
168 VgpSetMem,
169 VgpESPAdj
170 }
nethercote7cc9c232004-01-21 15:08:04 +0000171 VgpToolCC;
njn9b007f62003-04-07 14:40:25 +0000172
173/* Define to collect detailed performance info. */
njn43c799e2003-04-08 00:08:52 +0000174/* #define MAC_PROFILE_MEMORY */
njn5c004e42002-11-18 11:04:50 +0000175
njn43c799e2003-04-08 00:08:52 +0000176#ifdef MAC_PROFILE_MEMORY
njn9b007f62003-04-07 14:40:25 +0000177# define N_PROF_EVENTS 150
njn5c004e42002-11-18 11:04:50 +0000178
njn43c799e2003-04-08 00:08:52 +0000179extern UInt MAC_(event_ctr)[N_PROF_EVENTS];
njn9b007f62003-04-07 14:40:25 +0000180
njn43c799e2003-04-08 00:08:52 +0000181# define PROF_EVENT(ev) \
njnca82cc02004-11-22 17:18:48 +0000182 do { tl_assert((ev) >= 0 && (ev) < N_PROF_EVENTS); \
njn43c799e2003-04-08 00:08:52 +0000183 MAC_(event_ctr)[ev]++; \
njn5c004e42002-11-18 11:04:50 +0000184 } while (False);
185
186#else
187
njn9b007f62003-04-07 14:40:25 +0000188# define PROF_EVENT(ev) /* */
njn5c004e42002-11-18 11:04:50 +0000189
njn43c799e2003-04-08 00:08:52 +0000190#endif /* MAC_PROFILE_MEMORY */
njn5c004e42002-11-18 11:04:50 +0000191
njn9b007f62003-04-07 14:40:25 +0000192
sewardj45d94cc2005-04-20 14:44:11 +0000193//zz /*------------------------------------------------------------*/
194//zz /*--- V and A bits (Victoria & Albert ?) ---*/
195//zz /*------------------------------------------------------------*/
196//zz
197//zz /* expand 1 bit -> 8 */
198//zz #define BIT_EXPAND(b) ((~(((UChar)(b) & 1) - 1)) & 0xFF)
199//zz
200//zz #define SECONDARY_SHIFT 16
201//zz #define SECONDARY_SIZE (1 << SECONDARY_SHIFT)
202//zz #define SECONDARY_MASK (SECONDARY_SIZE - 1)
203//zz
204//zz #define PRIMARY_SIZE (1 << (32 - SECONDARY_SHIFT))
205//zz
206//zz #define SM_OFF(addr) ((addr) & SECONDARY_MASK)
207//zz #define PM_IDX(addr) ((addr) >> SECONDARY_SHIFT)
208/*
sewardjb5f6f512005-03-10 23:59:00 +0000209#define IS_DISTINGUISHED_SM(smap) \
210 ((smap) >= &distinguished_secondary_maps[0] && \
211 (smap) < &distinguished_secondary_maps[N_SECONDARY_MAPS])
212
213#define IS_DISTINGUISHED(addr) (IS_DISTINGUISHED_SM(primary_map[PM_IDX(addr)]))
njn5c004e42002-11-18 11:04:50 +0000214
njn43c799e2003-04-08 00:08:52 +0000215#define ENSURE_MAPPABLE(addr,caller) \
216 do { \
sewardjb5f6f512005-03-10 23:59:00 +0000217 if (IS_DISTINGUISHED(addr)) { \
218 primary_map[PM_IDX(addr)] = alloc_secondary_map(caller, primary_map[PM_IDX(addr)]); \
sewardj45d94cc2005-04-20 14:44:11 +0000219 if (0) VG_(printf)("new 2map because of %p\n", addr); \
njn43c799e2003-04-08 00:08:52 +0000220 } \
sewardj45d94cc2005-04-20 14:44:11 +0000221 } while(0)
222*/
njn5c004e42002-11-18 11:04:50 +0000223
224#define BITARR_SET(aaa_p,iii_p) \
225 do { \
sewardj45d94cc2005-04-20 14:44:11 +0000226 UWord iii = (UWord)iii_p; \
227 UChar* aaa = (UChar*)aaa_p; \
njn5c004e42002-11-18 11:04:50 +0000228 aaa[iii >> 3] |= (1 << (iii & 7)); \
229 } while (0)
230
231#define BITARR_CLEAR(aaa_p,iii_p) \
232 do { \
sewardj45d94cc2005-04-20 14:44:11 +0000233 UWord iii = (UWord)iii_p; \
234 UChar* aaa = (UChar*)aaa_p; \
njn5c004e42002-11-18 11:04:50 +0000235 aaa[iii >> 3] &= ~(1 << (iii & 7)); \
236 } while (0)
237
238#define BITARR_TEST(aaa_p,iii_p) \
sewardj45d94cc2005-04-20 14:44:11 +0000239 (0 != (((UChar*)aaa_p)[ ((UWord)iii_p) >> 3 ] \
240 & (1 << (((UWord)iii_p) & 7)))) \
241
242static inline
243void write_bit_array ( UChar* arr, UWord idx, UWord bit )
244{
245 UWord shift = idx & 7;
246 idx >>= 3;
247 bit &= 1;
248 arr[idx] = (arr[idx] & ~(1<<shift)) | (bit << shift);
249}
250
251static inline
252UWord read_bit_array ( UChar* arr, UWord idx )
253{
254 UWord shift = idx & 7;
255 idx >>= 3;
256 return 1 & (arr[idx] >> shift);
257}
njn5c004e42002-11-18 11:04:50 +0000258
259
sewardj45d94cc2005-04-20 14:44:11 +0000260#define VGM_BIT_VALID 0
261#define VGM_BIT_INVALID 1
njn5c004e42002-11-18 11:04:50 +0000262
sewardj45d94cc2005-04-20 14:44:11 +0000263#define VGM_NIBBLE_VALID 0
264#define VGM_NIBBLE_INVALID 0xF
njn5c004e42002-11-18 11:04:50 +0000265
sewardj45d94cc2005-04-20 14:44:11 +0000266#define VGM_BYTE_VALID 0
267#define VGM_BYTE_INVALID 0xFF
njn5c004e42002-11-18 11:04:50 +0000268
sewardj45d94cc2005-04-20 14:44:11 +0000269#define VGM_WORD32_VALID 0
270#define VGM_WORD32_INVALID 0xFFFFFFFF
njn5c004e42002-11-18 11:04:50 +0000271
sewardj45d94cc2005-04-20 14:44:11 +0000272#define VGM_WORD64_VALID 0ULL
273#define VGM_WORD64_INVALID 0xFFFFFFFFFFFFFFFFULL
274
njn5c004e42002-11-18 11:04:50 +0000275
276/*------------------------------------------------------------*/
277/*--- Command line options + defaults ---*/
278/*------------------------------------------------------------*/
279
njn43c799e2003-04-08 00:08:52 +0000280/* Memcheck defines a couple more. */
njn5c004e42002-11-18 11:04:50 +0000281
282/* Allow loads from partially-valid addresses? default: YES */
njn43c799e2003-04-08 00:08:52 +0000283extern Bool MAC_(clo_partial_loads_ok);
njn5c004e42002-11-18 11:04:50 +0000284
285/* Max volume of the freed blocks queue. */
njn43c799e2003-04-08 00:08:52 +0000286extern Int MAC_(clo_freelist_vol);
njn5c004e42002-11-18 11:04:50 +0000287
288/* Do leak check at exit? default: NO */
sewardjb5f6f512005-03-10 23:59:00 +0000289typedef
290 enum {
291 LC_Off,
292 LC_Summary,
293 LC_Full,
294 }
295 LeakCheckMode;
296
297extern LeakCheckMode MAC_(clo_leak_check);
njn5c004e42002-11-18 11:04:50 +0000298
299/* How closely should we compare ExeContexts in leak records? default: 2 */
njn43c799e2003-04-08 00:08:52 +0000300extern VgRes MAC_(clo_leak_resolution);
njn5c004e42002-11-18 11:04:50 +0000301
302/* In leak check, show reachable-but-not-freed blocks? default: NO */
njn43c799e2003-04-08 00:08:52 +0000303extern Bool MAC_(clo_show_reachable);
njn5c004e42002-11-18 11:04:50 +0000304
305/* Assume accesses immediately below %esp are due to gcc-2.96 bugs.
306 * default: NO*/
njn43c799e2003-04-08 00:08:52 +0000307extern Bool MAC_(clo_workaround_gcc296_bugs);
njn5c004e42002-11-18 11:04:50 +0000308
njn3e884182003-04-15 13:03:23 +0000309extern Bool MAC_(process_common_cmd_line_option) ( Char* arg );
310extern void MAC_(print_common_usage) ( void );
311extern void MAC_(print_common_debug_usage) ( void );
312
njn8a97c6d2005-03-31 04:37:24 +0000313/* We want a 16B redzone on heap blocks for Addrcheck and Memcheck */
314#define MALLOC_REDZONE_SZB 16
njn3e884182003-04-15 13:03:23 +0000315
316/*------------------------------------------------------------*/
317/*--- Variables ---*/
318/*------------------------------------------------------------*/
319
320/* For tracking malloc'd blocks */
321extern VgHashTable MAC_(malloc_list);
322
rjwalshbc0bb832004-06-19 18:12:36 +0000323/* For tracking memory pools. */
324extern VgHashTable MAC_(mempool_list);
325
nethercote7cc9c232004-01-21 15:08:04 +0000326/* Function pointers for the two tools to track interesting events. */
nethercote451eae92004-11-02 13:06:32 +0000327extern void (*MAC_(new_mem_heap)) ( Addr a, SizeT len, Bool is_inited );
328extern void (*MAC_(ban_mem_heap)) ( Addr a, SizeT len );
329extern void (*MAC_(die_mem_heap)) ( Addr a, SizeT len );
330extern void (*MAC_(copy_mem_heap))( Addr from, Addr to, SizeT len );
njn3e884182003-04-15 13:03:23 +0000331
sewardjecf8e102003-07-12 12:11:39 +0000332/* Function pointers for internal sanity checking. */
nethercote451eae92004-11-02 13:06:32 +0000333extern Bool (*MAC_(check_noaccess))( Addr a, SizeT len, Addr* bad_addr );
sewardjecf8e102003-07-12 12:11:39 +0000334
njn3e884182003-04-15 13:03:23 +0000335/* Used in describe_addr() */
336extern Bool (*MAC_(describe_addr_supp)) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000337
njn47363ab2003-04-21 13:24:40 +0000338/* For VALGRIND_COUNT_LEAKS client request */
njne8b5c052003-07-22 22:03:58 +0000339extern Int MAC_(bytes_leaked);
sewardjb5f6f512005-03-10 23:59:00 +0000340extern Int MAC_(bytes_indirect);
njne8b5c052003-07-22 22:03:58 +0000341extern Int MAC_(bytes_dubious);
342extern Int MAC_(bytes_reachable);
343extern Int MAC_(bytes_suppressed);
sewardj99aac972002-12-26 01:53:45 +0000344
njn5c004e42002-11-18 11:04:50 +0000345/*------------------------------------------------------------*/
346/*--- Functions ---*/
347/*------------------------------------------------------------*/
348
njn43c799e2003-04-08 00:08:52 +0000349extern void MAC_(pp_AddrInfo) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000350
njn43c799e2003-04-08 00:08:52 +0000351extern void MAC_(clear_MAC_Error) ( MAC_Error* err_extra );
njn5c004e42002-11-18 11:04:50 +0000352
njn43c799e2003-04-08 00:08:52 +0000353extern Bool MAC_(shared_recognised_suppression) ( Char* name, Supp* su );
njn5c004e42002-11-18 11:04:50 +0000354
sewardj2a99cf62004-11-24 10:44:19 +0000355extern void* MAC_(new_block) ( ThreadId tid,
356 Addr p, SizeT size, SizeT align, UInt rzB,
nethercote57e36b32004-07-10 14:56:28 +0000357 Bool is_zeroed, MAC_AllocKind kind,
358 VgHashTable table);
sewardj2a99cf62004-11-24 10:44:19 +0000359
360extern void MAC_(handle_free) ( ThreadId tid,
361 Addr p, UInt rzB, MAC_AllocKind kind );
njn10785452003-05-20 16:38:24 +0000362
rjwalshbc0bb832004-06-19 18:12:36 +0000363extern void MAC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed);
sewardj2a99cf62004-11-24 10:44:19 +0000364
rjwalshbc0bb832004-06-19 18:12:36 +0000365extern void MAC_(destroy_mempool)(Addr pool);
sewardj2a99cf62004-11-24 10:44:19 +0000366
367extern void MAC_(mempool_alloc)(ThreadId tid,
368 Addr pool, Addr addr, SizeT size);
369
rjwalshbc0bb832004-06-19 18:12:36 +0000370extern void MAC_(mempool_free)(Addr pool, Addr addr);
371
njn72718642003-07-24 08:45:32 +0000372extern void MAC_(record_address_error) ( ThreadId tid, Addr a,
sewardjaf48a602003-07-06 00:54:47 +0000373 Int size, Bool isWrite );
nethercote8b76fe52004-11-08 19:20:09 +0000374extern void MAC_(record_core_mem_error) ( ThreadId tid, Bool isUnaddr,
njn43c799e2003-04-08 00:08:52 +0000375 Char* s );
nethercote8b76fe52004-11-08 19:20:09 +0000376extern void MAC_(record_param_error) ( ThreadId tid, Addr a, Bool isReg,
377 Bool isUnaddr, Char* msg );
njn72718642003-07-24 08:45:32 +0000378extern void MAC_(record_jump_error) ( ThreadId tid, Addr a );
379extern void MAC_(record_free_error) ( ThreadId tid, Addr a );
380extern void MAC_(record_freemismatch_error)( ThreadId tid, Addr a );
sewardj2a99cf62004-11-24 10:44:19 +0000381extern void MAC_(record_overlap_error) ( ThreadId tid,
382 Char* function, OverlapExtra* oe );
rjwalshbc0bb832004-06-19 18:12:36 +0000383extern void MAC_(record_illegal_mempool_error) ( ThreadId tid, Addr pool );
njn5c004e42002-11-18 11:04:50 +0000384
njnb126f732004-11-22 17:57:07 +0000385extern void MAC_(pp_shared_Error) ( Error* err);
njn43c799e2003-04-08 00:08:52 +0000386
thughes4ad52d02004-06-27 17:37:21 +0000387extern MAC_Chunk* MAC_(first_matching_freed_MAC_Chunk)( Bool (*p)(MAC_Chunk*, void*), void* d );
njn43c799e2003-04-08 00:08:52 +0000388
njn3e884182003-04-15 13:03:23 +0000389extern void MAC_(common_pre_clo_init) ( void );
njnb8dca862005-03-14 02:42:44 +0000390extern void MAC_(common_fini) ( void (*leak_check)(ThreadId tid,
391 LeakCheckMode mode) );
njn3e884182003-04-15 13:03:23 +0000392
njn72718642003-07-24 08:45:32 +0000393extern Bool MAC_(handle_common_client_requests) ( ThreadId tid,
nethercoted1b64b22004-11-04 18:22:28 +0000394 UWord* arg_block, UWord* ret );
njn47363ab2003-04-21 13:24:40 +0000395
njn43c799e2003-04-08 00:08:52 +0000396/* For leak checking */
397extern void MAC_(pp_LeakError)(void* vl, UInt n_this_record,
398 UInt n_total_records);
399
njn86f12dc2005-03-14 01:16:05 +0000400extern void MAC_(print_malloc_stats) ( void );
401
njn43c799e2003-04-08 00:08:52 +0000402extern void MAC_(do_detect_memory_leaks) (
njnb8dca862005-03-14 02:42:44 +0000403 ThreadId tid, LeakCheckMode mode,
sewardjb5f6f512005-03-10 23:59:00 +0000404 Bool (*is_valid_64k_chunk) ( UInt ),
405 Bool (*is_valid_address) ( Addr )
njn43c799e2003-04-08 00:08:52 +0000406 );
407
njn9fb73db2005-03-27 01:55:21 +0000408extern VGA_REGPARM(1) void MAC_(new_mem_stack_4) ( Addr old_ESP );
409extern VGA_REGPARM(1) void MAC_(die_mem_stack_4) ( Addr old_ESP );
410extern VGA_REGPARM(1) void MAC_(new_mem_stack_8) ( Addr old_ESP );
411extern VGA_REGPARM(1) void MAC_(die_mem_stack_8) ( Addr old_ESP );
412extern VGA_REGPARM(1) void MAC_(new_mem_stack_12) ( Addr old_ESP );
413extern VGA_REGPARM(1) void MAC_(die_mem_stack_12) ( Addr old_ESP );
414extern VGA_REGPARM(1) void MAC_(new_mem_stack_16) ( Addr old_ESP );
415extern VGA_REGPARM(1) void MAC_(die_mem_stack_16) ( Addr old_ESP );
416extern VGA_REGPARM(1) void MAC_(new_mem_stack_32) ( Addr old_ESP );
417extern VGA_REGPARM(1) void MAC_(die_mem_stack_32) ( Addr old_ESP );
418extern void MAC_(die_mem_stack) ( Addr a, SizeT len);
419extern void MAC_(new_mem_stack) ( Addr a, SizeT len);
njn9b007f62003-04-07 14:40:25 +0000420
421
422/*------------------------------------------------------------*/
423/*--- Stack pointer adjustment ---*/
424/*------------------------------------------------------------*/
425
426/* Some noble preprocessor abuse, to enable Memcheck and Addrcheck to
njn3e884182003-04-15 13:03:23 +0000427 share this code, but call different functions.
njn9b007f62003-04-07 14:40:25 +0000428
429 Note that this code is executed very frequently and must be highly
430 optimised, which is why I resort to the preprocessor to achieve the
sewardj45d94cc2005-04-20 14:44:11 +0000431 factoring, rather than eg. using function pointers.
njn9b007f62003-04-07 14:40:25 +0000432*/
433
sewardj45d94cc2005-04-20 14:44:11 +0000434#define SP_UPDATE_HANDLERS(ALIGNED4_NEW, ALIGNED4_DIE, \
435 ALIGNED8_NEW, ALIGNED8_DIE, \
436 UNALIGNED_NEW, UNALIGNED_DIE) \
437 \
438void VGA_REGPARM(1) MAC_(new_mem_stack_4)(Addr new_SP) \
439{ \
440 PROF_EVENT(110); \
441 if (VG_IS_4_ALIGNED(new_SP)) { \
442 ALIGNED4_NEW ( new_SP ); \
443 } else { \
444 UNALIGNED_NEW ( new_SP, 4 ); \
445 } \
446} \
447 \
448void VGA_REGPARM(1) MAC_(die_mem_stack_4)(Addr new_SP) \
449{ \
450 PROF_EVENT(120); \
451 if (VG_IS_4_ALIGNED(new_SP)) { \
452 ALIGNED4_DIE ( new_SP-4 ); \
453 } else { \
454 UNALIGNED_DIE ( new_SP-4, 4 ); \
455 } \
456} \
457 \
458void VGA_REGPARM(1) MAC_(new_mem_stack_8)(Addr new_SP) \
459{ \
460 PROF_EVENT(111); \
461 if (VG_IS_8_ALIGNED(new_SP)) { \
462 ALIGNED8_NEW ( new_SP ); \
463 } else if (VG_IS_4_ALIGNED(new_SP)) { \
464 ALIGNED4_NEW ( new_SP ); \
465 ALIGNED4_NEW ( new_SP+4 ); \
466 } else { \
467 UNALIGNED_NEW ( new_SP, 8 ); \
468 } \
469} \
470 \
471void VGA_REGPARM(1) MAC_(die_mem_stack_8)(Addr new_SP) \
472{ \
473 PROF_EVENT(121); \
474 if (VG_IS_8_ALIGNED(new_SP)) { \
475 ALIGNED8_DIE ( new_SP-8 ); \
476 } else if (VG_IS_4_ALIGNED(new_SP)) { \
477 ALIGNED4_DIE ( new_SP-8 ); \
478 ALIGNED4_DIE ( new_SP-4 ); \
479 } else { \
480 UNALIGNED_DIE ( new_SP-8, 8 ); \
481 } \
482} \
483 \
484void VGA_REGPARM(1) MAC_(new_mem_stack_12)(Addr new_SP) \
485{ \
486 PROF_EVENT(112); \
487 if (VG_IS_8_ALIGNED(new_SP)) { \
488 ALIGNED8_NEW ( new_SP ); \
489 ALIGNED4_NEW ( new_SP+8 ); \
490 } else if (VG_IS_4_ALIGNED(new_SP)) { \
491 ALIGNED4_NEW ( new_SP ); \
492 ALIGNED8_NEW ( new_SP+4 ); \
493 } else { \
494 UNALIGNED_NEW ( new_SP, 12 ); \
495 } \
496} \
497 \
498void VGA_REGPARM(1) MAC_(die_mem_stack_12)(Addr new_SP) \
499{ \
500 PROF_EVENT(122); \
501 /* Note the -12 in the test */ \
502 if (VG_IS_8_ALIGNED(new_SP-12)) { \
503 ALIGNED8_DIE ( new_SP-12 ); \
504 ALIGNED4_DIE ( new_SP-4 ); \
505 } else if (VG_IS_4_ALIGNED(new_SP)) { \
506 ALIGNED4_DIE ( new_SP-12 ); \
507 ALIGNED8_DIE ( new_SP-8 ); \
508 } else { \
509 UNALIGNED_DIE ( new_SP-12, 12 ); \
510 } \
511} \
512 \
513void VGA_REGPARM(1) MAC_(new_mem_stack_16)(Addr new_SP) \
514{ \
515 PROF_EVENT(113); \
516 if (VG_IS_8_ALIGNED(new_SP)) { \
517 ALIGNED8_NEW ( new_SP ); \
518 ALIGNED8_NEW ( new_SP+8 ); \
519 } else if (VG_IS_4_ALIGNED(new_SP)) { \
520 ALIGNED4_NEW ( new_SP ); \
521 ALIGNED8_NEW ( new_SP+4 ); \
522 ALIGNED4_NEW ( new_SP+12 ); \
523 } else { \
524 UNALIGNED_NEW ( new_SP, 16 ); \
525 } \
526} \
527 \
528void VGA_REGPARM(1) MAC_(die_mem_stack_16)(Addr new_SP) \
529{ \
530 PROF_EVENT(123); \
531 if (VG_IS_8_ALIGNED(new_SP)) { \
532 ALIGNED8_DIE ( new_SP-16 ); \
533 ALIGNED8_DIE ( new_SP-8 ); \
534 } else if (VG_IS_4_ALIGNED(new_SP)) { \
535 ALIGNED4_DIE ( new_SP-16 ); \
536 ALIGNED8_DIE ( new_SP-12 ); \
537 ALIGNED4_DIE ( new_SP-4 ); \
538 } else { \
539 UNALIGNED_DIE ( new_SP-16, 16 ); \
540 } \
541} \
542 \
543void VGA_REGPARM(1) MAC_(new_mem_stack_32)(Addr new_SP) \
544{ \
545 PROF_EVENT(114); \
546 if (VG_IS_8_ALIGNED(new_SP)) { \
547 ALIGNED8_NEW ( new_SP ); \
548 ALIGNED8_NEW ( new_SP+8 ); \
549 ALIGNED8_NEW ( new_SP+16 ); \
550 ALIGNED8_NEW ( new_SP+24 ); \
551 } else if (VG_IS_4_ALIGNED(new_SP)) { \
552 ALIGNED4_NEW ( new_SP ); \
553 ALIGNED8_NEW ( new_SP+4 ); \
554 ALIGNED8_NEW ( new_SP+12 ); \
555 ALIGNED8_NEW ( new_SP+20 ); \
556 ALIGNED4_NEW ( new_SP+28 ); \
557 } else { \
558 UNALIGNED_NEW ( new_SP, 32 ); \
559 } \
560} \
561 \
562void VGA_REGPARM(1) MAC_(die_mem_stack_32)(Addr new_SP) \
563{ \
564 PROF_EVENT(124); \
565 if (VG_IS_8_ALIGNED(new_SP)) { \
566 ALIGNED8_DIE ( new_SP-32 ); \
567 ALIGNED8_DIE ( new_SP-24 ); \
568 ALIGNED8_DIE ( new_SP-16 ); \
569 ALIGNED8_DIE ( new_SP- 8 ); \
570 } else if (VG_IS_4_ALIGNED(new_SP)) { \
571 ALIGNED4_DIE ( new_SP-32 ); \
572 ALIGNED8_DIE ( new_SP-28 ); \
573 ALIGNED8_DIE ( new_SP-20 ); \
574 ALIGNED8_DIE ( new_SP-12 ); \
575 ALIGNED4_DIE ( new_SP-4 ); \
576 } else { \
577 UNALIGNED_DIE ( new_SP-32, 32 ); \
578 } \
579} \
580 \
581void MAC_(new_mem_stack) ( Addr a, SizeT len ) \
582{ \
583 PROF_EVENT(115); \
584 UNALIGNED_NEW ( a, len ); \
585} \
586 \
587void MAC_(die_mem_stack) ( Addr a, SizeT len ) \
588{ \
589 PROF_EVENT(125); \
590 UNALIGNED_DIE ( a, len ); \
njn9b007f62003-04-07 14:40:25 +0000591}
592
njn43c799e2003-04-08 00:08:52 +0000593#endif /* __MAC_SHARED_H */
njn5c004e42002-11-18 11:04:50 +0000594
595/*--------------------------------------------------------------------*/
njn43c799e2003-04-08 00:08:52 +0000596/*--- end mac_shared.h ---*/
njn5c004e42002-11-18 11:04:50 +0000597/*--------------------------------------------------------------------*/