blob: d11b7ab2346b47248d5e208f23549f3fa357bfd3 [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/*
8 This file is part of MemCheck, a heavyweight Valgrind skin for
9 detecting memory errors, and AddrCheck, a lightweight Valgrind skin
10 for detecting memory errors.
11
njn0e1b5142003-04-15 14:58:06 +000012 Copyright (C) 2000-2003 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
39#include "vg_skin.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 {
50 Undescribed, /* as-yet unclassified */
51 Stack,
52 Unknown, /* classification yielded nothing useful */
53 Freed, Mallocd,
54 UserG /* in a user-defined block; Addrcheck & Memcheck only */
njn5c004e42002-11-18 11:04:50 +000055 }
56 AddrKind;
57
58/* Records info about a faulting address. */
59typedef
60 struct {
61 /* ALL */
62 AddrKind akind;
63 /* Freed, Mallocd */
64 Int blksize;
65 /* Freed, Mallocd */
66 Int rwoffset;
67 /* Freed, Mallocd */
68 ExeContext* lastchange;
69 /* Stack */
70 ThreadId stack_tid;
71 /* True if is just-below %esp -- could be a gcc bug. */
72 Bool maybe_gcc;
73 }
74 AddrInfo;
75
76typedef
77 enum {
78 /* Bad syscall params */
79 ParamSupp,
80 /* Memory errors in core (pthread ops, signal handling) */
81 CoreMemSupp,
82 /* Use of invalid values of given size (MemCheck only) */
njnc0616662003-06-12 09:58:41 +000083 Value0Supp, Value1Supp, Value2Supp, Value4Supp, Value8Supp, Value16Supp,
njn5c004e42002-11-18 11:04:50 +000084 /* Invalid read/write attempt at given size */
njnc0616662003-06-12 09:58:41 +000085 Addr1Supp, Addr2Supp, Addr4Supp, Addr8Supp, Addr16Supp,
njn5c004e42002-11-18 11:04:50 +000086 /* Invalid or mismatching free */
sewardj99aac972002-12-26 01:53:45 +000087 FreeSupp,
njn34419c12003-05-02 17:24:29 +000088 /* Overlapping blocks in memcpy(), strcpy(), etc */
89 OverlapSupp,
sewardj99aac972002-12-26 01:53:45 +000090 /* Something to be suppressed in a leak check. */
91 LeakSupp
njn5c004e42002-11-18 11:04:50 +000092 }
njn43c799e2003-04-08 00:08:52 +000093 MAC_SuppKind;
njn5c004e42002-11-18 11:04:50 +000094
95/* What kind of error it is. */
96typedef
97 enum { ValueErr, /* Memcheck only */
98 CoreMemErr,
99 AddrErr,
100 ParamErr, UserErr, /* behaves like an anonymous ParamErr */
njn43c799e2003-04-08 00:08:52 +0000101 FreeErr, FreeMismatchErr,
njn34419c12003-05-02 17:24:29 +0000102 OverlapErr, /* Memcheck only */
njn43c799e2003-04-08 00:08:52 +0000103 LeakErr
njn5c004e42002-11-18 11:04:50 +0000104 }
njn43c799e2003-04-08 00:08:52 +0000105 MAC_ErrorKind;
njn5c004e42002-11-18 11:04:50 +0000106
107/* What kind of memory access is involved in the error? */
108typedef
109 enum { ReadAxs, WriteAxs, ExecAxs }
110 AxsKind;
111
112/* Extra context for memory errors */
113typedef
114 struct {
115 /* AddrErr */
116 AxsKind axskind;
117 /* AddrErr, ValueErr */
118 Int size;
119 /* AddrErr, FreeErr, FreeMismatchErr, ParamErr, UserErr */
120 AddrInfo addrinfo;
121 /* ParamErr, UserErr, CoreMemErr */
122 Bool isWrite;
123 }
njn43c799e2003-04-08 00:08:52 +0000124 MAC_Error;
njn5c004e42002-11-18 11:04:50 +0000125
njn3e884182003-04-15 13:03:23 +0000126/* For malloc()/new/new[] vs. free()/delete/delete[] mismatch checking. */
127typedef
128 enum {
129 MAC_AllocMalloc = 0,
130 MAC_AllocNew = 1,
njn10785452003-05-20 16:38:24 +0000131 MAC_AllocNewVec = 2,
132 MAC_AllocCustom = 3
njn3e884182003-04-15 13:03:23 +0000133 }
134 MAC_AllocKind;
135
136/* Nb: first two fields must match core's VgHashNode. */
137typedef
138 struct _MAC_Chunk {
139 struct _MAC_Chunk* next;
140 Addr data; /* ptr to actual block */
141 UInt size : 30; /* size requested */
142 MAC_AllocKind allockind : 2; /* which wrapper did the allocation */
143 ExeContext* where; /* where it was allocated */
144 }
145 MAC_Chunk;
146
njn9b007f62003-04-07 14:40:25 +0000147/*------------------------------------------------------------*/
148/*--- Profiling of skins and memory events ---*/
149/*------------------------------------------------------------*/
150
151typedef
152 enum {
153 VgpCheckMem = VgpFini+1,
154 VgpSetMem,
155 VgpESPAdj
156 }
157 VgpSkinCC;
158
159/* Define to collect detailed performance info. */
njn43c799e2003-04-08 00:08:52 +0000160/* #define MAC_PROFILE_MEMORY */
njn5c004e42002-11-18 11:04:50 +0000161
njn43c799e2003-04-08 00:08:52 +0000162#ifdef MAC_PROFILE_MEMORY
njn9b007f62003-04-07 14:40:25 +0000163# define N_PROF_EVENTS 150
njn5c004e42002-11-18 11:04:50 +0000164
njn43c799e2003-04-08 00:08:52 +0000165extern UInt MAC_(event_ctr)[N_PROF_EVENTS];
njn9b007f62003-04-07 14:40:25 +0000166
njn43c799e2003-04-08 00:08:52 +0000167# define PROF_EVENT(ev) \
168 do { sk_assert((ev) >= 0 && (ev) < N_PROF_EVENTS); \
169 MAC_(event_ctr)[ev]++; \
njn5c004e42002-11-18 11:04:50 +0000170 } while (False);
171
172#else
173
njn9b007f62003-04-07 14:40:25 +0000174# define PROF_EVENT(ev) /* */
njn5c004e42002-11-18 11:04:50 +0000175
njn43c799e2003-04-08 00:08:52 +0000176#endif /* MAC_PROFILE_MEMORY */
njn5c004e42002-11-18 11:04:50 +0000177
njn9b007f62003-04-07 14:40:25 +0000178/*------------------------------------------------------------*/
179/*--- V and A bits ---*/
180/*------------------------------------------------------------*/
181
njn5c004e42002-11-18 11:04:50 +0000182#define IS_DISTINGUISHED_SM(smap) \
183 ((smap) == &distinguished_secondary_map)
184
njn43c799e2003-04-08 00:08:52 +0000185#define ENSURE_MAPPABLE(addr,caller) \
186 do { \
njn5c004e42002-11-18 11:04:50 +0000187 if (IS_DISTINGUISHED_SM(primary_map[(addr) >> 16])) { \
188 primary_map[(addr) >> 16] = alloc_secondary_map(caller); \
njn43c799e2003-04-08 00:08:52 +0000189 /* VG_(printf)("new 2map because of %p\n", addr); */ \
190 } \
njn5c004e42002-11-18 11:04:50 +0000191 } while(0)
192
193#define BITARR_SET(aaa_p,iii_p) \
194 do { \
195 UInt iii = (UInt)iii_p; \
196 UChar* aaa = (UChar*)aaa_p; \
197 aaa[iii >> 3] |= (1 << (iii & 7)); \
198 } while (0)
199
200#define BITARR_CLEAR(aaa_p,iii_p) \
201 do { \
202 UInt iii = (UInt)iii_p; \
203 UChar* aaa = (UChar*)aaa_p; \
204 aaa[iii >> 3] &= ~(1 << (iii & 7)); \
205 } while (0)
206
207#define BITARR_TEST(aaa_p,iii_p) \
208 (0 != (((UChar*)aaa_p)[ ((UInt)iii_p) >> 3 ] \
209 & (1 << (((UInt)iii_p) & 7)))) \
210
211
212#define VGM_BIT_VALID 0
213#define VGM_BIT_INVALID 1
214
215#define VGM_NIBBLE_VALID 0
216#define VGM_NIBBLE_INVALID 0xF
217
218#define VGM_BYTE_VALID 0
219#define VGM_BYTE_INVALID 0xFF
220
221#define VGM_WORD_VALID 0
222#define VGM_WORD_INVALID 0xFFFFFFFF
223
224#define VGM_EFLAGS_VALID 0xFFFFFFFE
225#define VGM_EFLAGS_INVALID 0xFFFFFFFF /* not used */
226
227/*------------------------------------------------------------*/
228/*--- Command line options + defaults ---*/
229/*------------------------------------------------------------*/
230
njn43c799e2003-04-08 00:08:52 +0000231/* Memcheck defines a couple more. */
njn5c004e42002-11-18 11:04:50 +0000232
233/* Allow loads from partially-valid addresses? default: YES */
njn43c799e2003-04-08 00:08:52 +0000234extern Bool MAC_(clo_partial_loads_ok);
njn5c004e42002-11-18 11:04:50 +0000235
236/* Max volume of the freed blocks queue. */
njn43c799e2003-04-08 00:08:52 +0000237extern Int MAC_(clo_freelist_vol);
njn5c004e42002-11-18 11:04:50 +0000238
239/* Do leak check at exit? default: NO */
njn43c799e2003-04-08 00:08:52 +0000240extern Bool MAC_(clo_leak_check);
njn5c004e42002-11-18 11:04:50 +0000241
242/* How closely should we compare ExeContexts in leak records? default: 2 */
njn43c799e2003-04-08 00:08:52 +0000243extern VgRes MAC_(clo_leak_resolution);
njn5c004e42002-11-18 11:04:50 +0000244
245/* In leak check, show reachable-but-not-freed blocks? default: NO */
njn43c799e2003-04-08 00:08:52 +0000246extern Bool MAC_(clo_show_reachable);
njn5c004e42002-11-18 11:04:50 +0000247
248/* Assume accesses immediately below %esp are due to gcc-2.96 bugs.
249 * default: NO*/
njn43c799e2003-04-08 00:08:52 +0000250extern Bool MAC_(clo_workaround_gcc296_bugs);
njn5c004e42002-11-18 11:04:50 +0000251
njn3e884182003-04-15 13:03:23 +0000252extern Bool MAC_(process_common_cmd_line_option) ( Char* arg );
253extern void MAC_(print_common_usage) ( void );
254extern void MAC_(print_common_debug_usage) ( void );
255
256
257/*------------------------------------------------------------*/
258/*--- Variables ---*/
259/*------------------------------------------------------------*/
260
261/* For tracking malloc'd blocks */
262extern VgHashTable MAC_(malloc_list);
263
264/* Function pointers for the two skins to track interesting events. */
265extern void (*MAC_(new_mem_heap)) ( Addr a, UInt len, Bool is_inited );
266extern void (*MAC_(ban_mem_heap)) ( Addr a, UInt len );
267extern void (*MAC_(die_mem_heap)) ( Addr a, UInt len );
268extern void (*MAC_(copy_mem_heap))( Addr from, Addr to, UInt len );
269
sewardjecf8e102003-07-12 12:11:39 +0000270/* Function pointers for internal sanity checking. */
271extern Bool (*MAC_(check_noaccess))( Addr a, UInt len, Addr* bad_addr );
272
njn3e884182003-04-15 13:03:23 +0000273/* Used in describe_addr() */
274extern Bool (*MAC_(describe_addr_supp)) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000275
njn47363ab2003-04-21 13:24:40 +0000276/* For VALGRIND_COUNT_LEAKS client request */
njne8b5c052003-07-22 22:03:58 +0000277extern Int MAC_(bytes_leaked);
278extern Int MAC_(bytes_dubious);
279extern Int MAC_(bytes_reachable);
280extern Int MAC_(bytes_suppressed);
sewardj99aac972002-12-26 01:53:45 +0000281
njn5c004e42002-11-18 11:04:50 +0000282/*------------------------------------------------------------*/
283/*--- Functions ---*/
284/*------------------------------------------------------------*/
285
njn43c799e2003-04-08 00:08:52 +0000286extern void MAC_(pp_AddrInfo) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000287
njn43c799e2003-04-08 00:08:52 +0000288extern void MAC_(clear_MAC_Error) ( MAC_Error* err_extra );
njn5c004e42002-11-18 11:04:50 +0000289
njn43c799e2003-04-08 00:08:52 +0000290extern Bool MAC_(shared_recognised_suppression) ( Char* name, Supp* su );
njn5c004e42002-11-18 11:04:50 +0000291
njn10785452003-05-20 16:38:24 +0000292extern void MAC_(new_block) ( ThreadState* tst, Addr p, UInt size,
293 UInt rzB, Bool is_zeroed,
294 MAC_AllocKind kind );
295extern void MAC_(handle_free) ( ThreadState* tst, Addr p, UInt rzB,
296 MAC_AllocKind kind );
297
sewardjaf48a602003-07-06 00:54:47 +0000298extern void MAC_(record_address_error) ( ThreadState* tst, Addr a,
299 Int size, Bool isWrite );
njn43c799e2003-04-08 00:08:52 +0000300extern void MAC_(record_core_mem_error) ( ThreadState* tst, Bool isWrite,
301 Char* s );
302extern void MAC_(record_param_error) ( ThreadState* tst, Addr a,
303 Bool isWriteLack, Char* msg );
304extern void MAC_(record_jump_error) ( ThreadState* tst, Addr a );
305extern void MAC_(record_free_error) ( ThreadState* tst, Addr a );
306extern void MAC_(record_freemismatch_error)( ThreadState* tst, Addr a );
njn66fe05a2003-07-22 09:12:33 +0000307extern void MAC_(record_overlap_error) ( ThreadState* tst, Char* function );
njn5c004e42002-11-18 11:04:50 +0000308
njn43c799e2003-04-08 00:08:52 +0000309extern void MAC_(pp_shared_SkinError) ( Error* err);
310
njn3e884182003-04-15 13:03:23 +0000311extern MAC_Chunk* MAC_(first_matching_freed_MAC_Chunk)( Bool (*p)(MAC_Chunk*) );
njn43c799e2003-04-08 00:08:52 +0000312
njn3e884182003-04-15 13:03:23 +0000313extern void MAC_(common_pre_clo_init) ( void );
314extern void MAC_(common_fini) ( void (*leak_check)(void) );
315
njn47363ab2003-04-21 13:24:40 +0000316extern Bool MAC_(handle_common_client_requests)
317 ( ThreadState* tst, UInt* arg_block, UInt* ret );
318
njn3e884182003-04-15 13:03:23 +0000319extern void MAC_(print_malloc_stats) ( void );
njn43c799e2003-04-08 00:08:52 +0000320
321/* For leak checking */
322extern void MAC_(pp_LeakError)(void* vl, UInt n_this_record,
323 UInt n_total_records);
324
325extern void MAC_(do_detect_memory_leaks) (
326 Bool is_valid_64k_chunk ( UInt ),
327 Bool is_valid_address ( Addr )
328 );
329
330extern __attribute__((regparm(1))) void MAC_(new_mem_stack_4) ( Addr old_ESP );
331extern __attribute__((regparm(1))) void MAC_(die_mem_stack_4) ( Addr old_ESP );
332extern __attribute__((regparm(1))) void MAC_(new_mem_stack_8) ( Addr old_ESP );
333extern __attribute__((regparm(1))) void MAC_(die_mem_stack_8) ( Addr old_ESP );
334extern __attribute__((regparm(1))) void MAC_(new_mem_stack_12) ( Addr old_ESP );
335extern __attribute__((regparm(1))) void MAC_(die_mem_stack_12) ( Addr old_ESP );
336extern __attribute__((regparm(1))) void MAC_(new_mem_stack_16) ( Addr old_ESP );
337extern __attribute__((regparm(1))) void MAC_(die_mem_stack_16) ( Addr old_ESP );
338extern __attribute__((regparm(1))) void MAC_(new_mem_stack_32) ( Addr old_ESP );
339extern __attribute__((regparm(1))) void MAC_(die_mem_stack_32) ( Addr old_ESP );
njn3e884182003-04-15 13:03:23 +0000340extern void MAC_(die_mem_stack) ( Addr a, UInt len);
341extern void MAC_(new_mem_stack) ( Addr a, UInt len);
njn9b007f62003-04-07 14:40:25 +0000342
343
344/*------------------------------------------------------------*/
345/*--- Stack pointer adjustment ---*/
346/*------------------------------------------------------------*/
347
348/* Some noble preprocessor abuse, to enable Memcheck and Addrcheck to
njn3e884182003-04-15 13:03:23 +0000349 share this code, but call different functions.
njn9b007f62003-04-07 14:40:25 +0000350
351 Note that this code is executed very frequently and must be highly
352 optimised, which is why I resort to the preprocessor to achieve the
353 factoring, rather than eg. using function pointers.
354*/
355
356#define ESP_UPDATE_HANDLERS(ALIGNED4_NEW, ALIGNED4_DIE, \
357 ALIGNED8_NEW, ALIGNED8_DIE, \
358 UNALIGNED_NEW, UNALIGNED_DIE) \
359 \
njn43c799e2003-04-08 00:08:52 +0000360void __attribute__((regparm(1))) MAC_(new_mem_stack_4)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000361{ \
362 PROF_EVENT(110); \
363 if (IS_ALIGNED4_ADDR(new_ESP)) { \
364 ALIGNED4_NEW ( new_ESP ); \
365 } else { \
366 UNALIGNED_NEW ( new_ESP, 4 ); \
367 } \
368} \
369 \
njn43c799e2003-04-08 00:08:52 +0000370void __attribute__((regparm(1))) MAC_(die_mem_stack_4)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000371{ \
372 PROF_EVENT(120); \
373 if (IS_ALIGNED4_ADDR(new_ESP)) { \
374 ALIGNED4_DIE ( new_ESP-4 ); \
375 } else { \
376 UNALIGNED_DIE ( new_ESP-4, 4 ); \
377 } \
378} \
379 \
njn43c799e2003-04-08 00:08:52 +0000380void __attribute__((regparm(1))) MAC_(new_mem_stack_8)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000381{ \
382 PROF_EVENT(111); \
383 if (IS_ALIGNED8_ADDR(new_ESP)) { \
384 ALIGNED8_NEW ( new_ESP ); \
385 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
386 ALIGNED4_NEW ( new_ESP ); \
387 ALIGNED4_NEW ( new_ESP+4 ); \
388 } else { \
389 UNALIGNED_NEW ( new_ESP, 8 ); \
390 } \
391} \
392 \
njn43c799e2003-04-08 00:08:52 +0000393void __attribute__((regparm(1))) MAC_(die_mem_stack_8)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000394{ \
395 PROF_EVENT(121); \
396 if (IS_ALIGNED8_ADDR(new_ESP)) { \
397 ALIGNED8_DIE ( new_ESP-8 ); \
398 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
399 ALIGNED4_DIE ( new_ESP-8 ); \
400 ALIGNED4_DIE ( new_ESP-4 ); \
401 } else { \
402 UNALIGNED_DIE ( new_ESP-8, 8 ); \
403 } \
404} \
405 \
njn43c799e2003-04-08 00:08:52 +0000406void __attribute__((regparm(1))) MAC_(new_mem_stack_12)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000407{ \
408 PROF_EVENT(112); \
409 if (IS_ALIGNED8_ADDR(new_ESP)) { \
410 ALIGNED8_NEW ( new_ESP ); \
411 ALIGNED4_NEW ( new_ESP+8 ); \
412 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
413 ALIGNED4_NEW ( new_ESP ); \
414 ALIGNED8_NEW ( new_ESP+4 ); \
415 } else { \
416 UNALIGNED_NEW ( new_ESP, 12 ); \
417 } \
418} \
419 \
njn43c799e2003-04-08 00:08:52 +0000420void __attribute__((regparm(1))) MAC_(die_mem_stack_12)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000421{ \
422 PROF_EVENT(122); \
423 /* Note the -12 in the test */ \
424 if (IS_ALIGNED8_ADDR(new_ESP-12)) { \
425 ALIGNED8_DIE ( new_ESP-12 ); \
426 ALIGNED4_DIE ( new_ESP-4 ); \
427 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
428 ALIGNED4_DIE ( new_ESP-12 ); \
429 ALIGNED8_DIE ( new_ESP-8 ); \
430 } else { \
431 UNALIGNED_DIE ( new_ESP-12, 12 ); \
432 } \
433} \
434 \
njn43c799e2003-04-08 00:08:52 +0000435void __attribute__((regparm(1))) MAC_(new_mem_stack_16)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000436{ \
437 PROF_EVENT(113); \
438 if (IS_ALIGNED8_ADDR(new_ESP)) { \
439 ALIGNED8_NEW ( new_ESP ); \
440 ALIGNED8_NEW ( new_ESP+8 ); \
441 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
442 ALIGNED4_NEW ( new_ESP ); \
443 ALIGNED8_NEW ( new_ESP+4 ); \
444 ALIGNED4_NEW ( new_ESP+12 ); \
445 } else { \
446 UNALIGNED_NEW ( new_ESP, 16 ); \
447 } \
448} \
449 \
njn43c799e2003-04-08 00:08:52 +0000450void __attribute__((regparm(1))) MAC_(die_mem_stack_16)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000451{ \
452 PROF_EVENT(123); \
453 if (IS_ALIGNED8_ADDR(new_ESP)) { \
454 ALIGNED8_DIE ( new_ESP-16 ); \
455 ALIGNED8_DIE ( new_ESP-8 ); \
456 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
457 ALIGNED4_DIE ( new_ESP-16 ); \
458 ALIGNED8_DIE ( new_ESP-12 ); \
459 ALIGNED4_DIE ( new_ESP-4 ); \
460 } else { \
461 UNALIGNED_DIE ( new_ESP-16, 16 ); \
462 } \
463} \
464 \
njn43c799e2003-04-08 00:08:52 +0000465void __attribute__((regparm(1))) MAC_(new_mem_stack_32)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000466{ \
467 PROF_EVENT(114); \
468 if (IS_ALIGNED8_ADDR(new_ESP)) { \
469 ALIGNED8_NEW ( new_ESP ); \
470 ALIGNED8_NEW ( new_ESP+8 ); \
471 ALIGNED8_NEW ( new_ESP+16 ); \
472 ALIGNED8_NEW ( new_ESP+24 ); \
473 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
474 ALIGNED4_NEW ( new_ESP ); \
475 ALIGNED8_NEW ( new_ESP+4 ); \
476 ALIGNED8_NEW ( new_ESP+12 ); \
477 ALIGNED8_NEW ( new_ESP+20 ); \
478 ALIGNED4_NEW ( new_ESP+28 ); \
479 } else { \
480 UNALIGNED_NEW ( new_ESP, 32 ); \
481 } \
482} \
483 \
njn43c799e2003-04-08 00:08:52 +0000484void __attribute__((regparm(1))) MAC_(die_mem_stack_32)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000485{ \
486 PROF_EVENT(124); \
487 if (IS_ALIGNED8_ADDR(new_ESP)) { \
488 ALIGNED8_DIE ( new_ESP-32 ); \
489 ALIGNED8_DIE ( new_ESP-24 ); \
490 ALIGNED8_DIE ( new_ESP-16 ); \
491 ALIGNED8_DIE ( new_ESP- 8 ); \
492 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
493 ALIGNED4_DIE ( new_ESP-32 ); \
494 ALIGNED8_DIE ( new_ESP-28 ); \
495 ALIGNED8_DIE ( new_ESP-20 ); \
496 ALIGNED8_DIE ( new_ESP-12 ); \
497 ALIGNED4_DIE ( new_ESP-4 ); \
498 } else { \
499 UNALIGNED_DIE ( new_ESP-32, 32 ); \
500 } \
501} \
502 \
njn43c799e2003-04-08 00:08:52 +0000503void MAC_(new_mem_stack) ( Addr a, UInt len ) \
njn9b007f62003-04-07 14:40:25 +0000504{ \
505 PROF_EVENT(115); \
506 UNALIGNED_NEW ( a, len ); \
507} \
508 \
njn43c799e2003-04-08 00:08:52 +0000509void MAC_(die_mem_stack) ( Addr a, UInt len ) \
njn9b007f62003-04-07 14:40:25 +0000510{ \
511 PROF_EVENT(125); \
512 UNALIGNED_DIE ( a, len ); \
513}
514
njn43c799e2003-04-08 00:08:52 +0000515#endif /* __MAC_SHARED_H */
njn5c004e42002-11-18 11:04:50 +0000516
517/*--------------------------------------------------------------------*/
njn43c799e2003-04-08 00:08:52 +0000518/*--- end mac_shared.h ---*/
njn5c004e42002-11-18 11:04:50 +0000519/*--------------------------------------------------------------------*/