blob: ff1cea3f4427440c5e73c38db8d0048a07311f54 [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) */
83 Value0Supp, Value1Supp, Value2Supp, Value4Supp, Value8Supp,
84 /* Invalid read/write attempt at given size */
85 Addr1Supp, Addr2Supp, Addr4Supp, Addr8Supp,
86 /* 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
270/* Used in describe_addr() */
271extern Bool (*MAC_(describe_addr_supp)) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000272
njn47363ab2003-04-21 13:24:40 +0000273/* For VALGRIND_COUNT_LEAKS client request */
274extern Int MAC_(total_bytes_leaked);
275extern Int MAC_(total_bytes_dubious);
276extern Int MAC_(total_bytes_reachable);
277extern Int MAC_(total_bytes_suppressed);
sewardj99aac972002-12-26 01:53:45 +0000278
njn5c004e42002-11-18 11:04:50 +0000279/*------------------------------------------------------------*/
280/*--- Functions ---*/
281/*------------------------------------------------------------*/
282
njn43c799e2003-04-08 00:08:52 +0000283extern void MAC_(pp_AddrInfo) ( Addr a, AddrInfo* ai );
njn5c004e42002-11-18 11:04:50 +0000284
njn43c799e2003-04-08 00:08:52 +0000285extern void MAC_(clear_MAC_Error) ( MAC_Error* err_extra );
njn5c004e42002-11-18 11:04:50 +0000286
njn43c799e2003-04-08 00:08:52 +0000287extern Bool MAC_(shared_recognised_suppression) ( Char* name, Supp* su );
njn5c004e42002-11-18 11:04:50 +0000288
njn10785452003-05-20 16:38:24 +0000289extern void MAC_(new_block) ( ThreadState* tst, Addr p, UInt size,
290 UInt rzB, Bool is_zeroed,
291 MAC_AllocKind kind );
292extern void MAC_(handle_free) ( ThreadState* tst, Addr p, UInt rzB,
293 MAC_AllocKind kind );
294
njn43c799e2003-04-08 00:08:52 +0000295extern void MAC_(record_address_error) ( Addr a, Int size, Bool isWrite );
296extern void MAC_(record_core_mem_error) ( ThreadState* tst, Bool isWrite,
297 Char* s );
298extern void MAC_(record_param_error) ( ThreadState* tst, Addr a,
299 Bool isWriteLack, Char* msg );
300extern void MAC_(record_jump_error) ( ThreadState* tst, Addr a );
301extern void MAC_(record_free_error) ( ThreadState* tst, Addr a );
302extern void MAC_(record_freemismatch_error)( ThreadState* tst, Addr a );
njn5c004e42002-11-18 11:04:50 +0000303
njn43c799e2003-04-08 00:08:52 +0000304extern void MAC_(pp_shared_SkinError) ( Error* err);
305
njn3e884182003-04-15 13:03:23 +0000306extern MAC_Chunk* MAC_(first_matching_freed_MAC_Chunk)( Bool (*p)(MAC_Chunk*) );
njn43c799e2003-04-08 00:08:52 +0000307
njn3e884182003-04-15 13:03:23 +0000308extern void MAC_(common_pre_clo_init) ( void );
309extern void MAC_(common_fini) ( void (*leak_check)(void) );
310
njn47363ab2003-04-21 13:24:40 +0000311extern Bool MAC_(handle_common_client_requests)
312 ( ThreadState* tst, UInt* arg_block, UInt* ret );
313
njn3e884182003-04-15 13:03:23 +0000314extern void MAC_(print_malloc_stats) ( void );
njn43c799e2003-04-08 00:08:52 +0000315
316/* For leak checking */
317extern void MAC_(pp_LeakError)(void* vl, UInt n_this_record,
318 UInt n_total_records);
319
320extern void MAC_(do_detect_memory_leaks) (
321 Bool is_valid_64k_chunk ( UInt ),
322 Bool is_valid_address ( Addr )
323 );
324
325extern __attribute__((regparm(1))) void MAC_(new_mem_stack_4) ( Addr old_ESP );
326extern __attribute__((regparm(1))) void MAC_(die_mem_stack_4) ( Addr old_ESP );
327extern __attribute__((regparm(1))) void MAC_(new_mem_stack_8) ( Addr old_ESP );
328extern __attribute__((regparm(1))) void MAC_(die_mem_stack_8) ( Addr old_ESP );
329extern __attribute__((regparm(1))) void MAC_(new_mem_stack_12) ( Addr old_ESP );
330extern __attribute__((regparm(1))) void MAC_(die_mem_stack_12) ( Addr old_ESP );
331extern __attribute__((regparm(1))) void MAC_(new_mem_stack_16) ( Addr old_ESP );
332extern __attribute__((regparm(1))) void MAC_(die_mem_stack_16) ( Addr old_ESP );
333extern __attribute__((regparm(1))) void MAC_(new_mem_stack_32) ( Addr old_ESP );
334extern __attribute__((regparm(1))) void MAC_(die_mem_stack_32) ( Addr old_ESP );
njn3e884182003-04-15 13:03:23 +0000335extern void MAC_(die_mem_stack) ( Addr a, UInt len);
336extern void MAC_(new_mem_stack) ( Addr a, UInt len);
njn9b007f62003-04-07 14:40:25 +0000337
338
339/*------------------------------------------------------------*/
340/*--- Stack pointer adjustment ---*/
341/*------------------------------------------------------------*/
342
343/* Some noble preprocessor abuse, to enable Memcheck and Addrcheck to
njn3e884182003-04-15 13:03:23 +0000344 share this code, but call different functions.
njn9b007f62003-04-07 14:40:25 +0000345
346 Note that this code is executed very frequently and must be highly
347 optimised, which is why I resort to the preprocessor to achieve the
348 factoring, rather than eg. using function pointers.
349*/
350
351#define ESP_UPDATE_HANDLERS(ALIGNED4_NEW, ALIGNED4_DIE, \
352 ALIGNED8_NEW, ALIGNED8_DIE, \
353 UNALIGNED_NEW, UNALIGNED_DIE) \
354 \
njn43c799e2003-04-08 00:08:52 +0000355void __attribute__((regparm(1))) MAC_(new_mem_stack_4)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000356{ \
357 PROF_EVENT(110); \
358 if (IS_ALIGNED4_ADDR(new_ESP)) { \
359 ALIGNED4_NEW ( new_ESP ); \
360 } else { \
361 UNALIGNED_NEW ( new_ESP, 4 ); \
362 } \
363} \
364 \
njn43c799e2003-04-08 00:08:52 +0000365void __attribute__((regparm(1))) MAC_(die_mem_stack_4)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000366{ \
367 PROF_EVENT(120); \
368 if (IS_ALIGNED4_ADDR(new_ESP)) { \
369 ALIGNED4_DIE ( new_ESP-4 ); \
370 } else { \
371 UNALIGNED_DIE ( new_ESP-4, 4 ); \
372 } \
373} \
374 \
njn43c799e2003-04-08 00:08:52 +0000375void __attribute__((regparm(1))) MAC_(new_mem_stack_8)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000376{ \
377 PROF_EVENT(111); \
378 if (IS_ALIGNED8_ADDR(new_ESP)) { \
379 ALIGNED8_NEW ( new_ESP ); \
380 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
381 ALIGNED4_NEW ( new_ESP ); \
382 ALIGNED4_NEW ( new_ESP+4 ); \
383 } else { \
384 UNALIGNED_NEW ( new_ESP, 8 ); \
385 } \
386} \
387 \
njn43c799e2003-04-08 00:08:52 +0000388void __attribute__((regparm(1))) MAC_(die_mem_stack_8)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000389{ \
390 PROF_EVENT(121); \
391 if (IS_ALIGNED8_ADDR(new_ESP)) { \
392 ALIGNED8_DIE ( new_ESP-8 ); \
393 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
394 ALIGNED4_DIE ( new_ESP-8 ); \
395 ALIGNED4_DIE ( new_ESP-4 ); \
396 } else { \
397 UNALIGNED_DIE ( new_ESP-8, 8 ); \
398 } \
399} \
400 \
njn43c799e2003-04-08 00:08:52 +0000401void __attribute__((regparm(1))) MAC_(new_mem_stack_12)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000402{ \
403 PROF_EVENT(112); \
404 if (IS_ALIGNED8_ADDR(new_ESP)) { \
405 ALIGNED8_NEW ( new_ESP ); \
406 ALIGNED4_NEW ( new_ESP+8 ); \
407 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
408 ALIGNED4_NEW ( new_ESP ); \
409 ALIGNED8_NEW ( new_ESP+4 ); \
410 } else { \
411 UNALIGNED_NEW ( new_ESP, 12 ); \
412 } \
413} \
414 \
njn43c799e2003-04-08 00:08:52 +0000415void __attribute__((regparm(1))) MAC_(die_mem_stack_12)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000416{ \
417 PROF_EVENT(122); \
418 /* Note the -12 in the test */ \
419 if (IS_ALIGNED8_ADDR(new_ESP-12)) { \
420 ALIGNED8_DIE ( new_ESP-12 ); \
421 ALIGNED4_DIE ( new_ESP-4 ); \
422 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
423 ALIGNED4_DIE ( new_ESP-12 ); \
424 ALIGNED8_DIE ( new_ESP-8 ); \
425 } else { \
426 UNALIGNED_DIE ( new_ESP-12, 12 ); \
427 } \
428} \
429 \
njn43c799e2003-04-08 00:08:52 +0000430void __attribute__((regparm(1))) MAC_(new_mem_stack_16)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000431{ \
432 PROF_EVENT(113); \
433 if (IS_ALIGNED8_ADDR(new_ESP)) { \
434 ALIGNED8_NEW ( new_ESP ); \
435 ALIGNED8_NEW ( new_ESP+8 ); \
436 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
437 ALIGNED4_NEW ( new_ESP ); \
438 ALIGNED8_NEW ( new_ESP+4 ); \
439 ALIGNED4_NEW ( new_ESP+12 ); \
440 } else { \
441 UNALIGNED_NEW ( new_ESP, 16 ); \
442 } \
443} \
444 \
njn43c799e2003-04-08 00:08:52 +0000445void __attribute__((regparm(1))) MAC_(die_mem_stack_16)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000446{ \
447 PROF_EVENT(123); \
448 if (IS_ALIGNED8_ADDR(new_ESP)) { \
449 ALIGNED8_DIE ( new_ESP-16 ); \
450 ALIGNED8_DIE ( new_ESP-8 ); \
451 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
452 ALIGNED4_DIE ( new_ESP-16 ); \
453 ALIGNED8_DIE ( new_ESP-12 ); \
454 ALIGNED4_DIE ( new_ESP-4 ); \
455 } else { \
456 UNALIGNED_DIE ( new_ESP-16, 16 ); \
457 } \
458} \
459 \
njn43c799e2003-04-08 00:08:52 +0000460void __attribute__((regparm(1))) MAC_(new_mem_stack_32)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000461{ \
462 PROF_EVENT(114); \
463 if (IS_ALIGNED8_ADDR(new_ESP)) { \
464 ALIGNED8_NEW ( new_ESP ); \
465 ALIGNED8_NEW ( new_ESP+8 ); \
466 ALIGNED8_NEW ( new_ESP+16 ); \
467 ALIGNED8_NEW ( new_ESP+24 ); \
468 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
469 ALIGNED4_NEW ( new_ESP ); \
470 ALIGNED8_NEW ( new_ESP+4 ); \
471 ALIGNED8_NEW ( new_ESP+12 ); \
472 ALIGNED8_NEW ( new_ESP+20 ); \
473 ALIGNED4_NEW ( new_ESP+28 ); \
474 } else { \
475 UNALIGNED_NEW ( new_ESP, 32 ); \
476 } \
477} \
478 \
njn43c799e2003-04-08 00:08:52 +0000479void __attribute__((regparm(1))) MAC_(die_mem_stack_32)(Addr new_ESP) \
njn9b007f62003-04-07 14:40:25 +0000480{ \
481 PROF_EVENT(124); \
482 if (IS_ALIGNED8_ADDR(new_ESP)) { \
483 ALIGNED8_DIE ( new_ESP-32 ); \
484 ALIGNED8_DIE ( new_ESP-24 ); \
485 ALIGNED8_DIE ( new_ESP-16 ); \
486 ALIGNED8_DIE ( new_ESP- 8 ); \
487 } else if (IS_ALIGNED4_ADDR(new_ESP)) { \
488 ALIGNED4_DIE ( new_ESP-32 ); \
489 ALIGNED8_DIE ( new_ESP-28 ); \
490 ALIGNED8_DIE ( new_ESP-20 ); \
491 ALIGNED8_DIE ( new_ESP-12 ); \
492 ALIGNED4_DIE ( new_ESP-4 ); \
493 } else { \
494 UNALIGNED_DIE ( new_ESP-32, 32 ); \
495 } \
496} \
497 \
njn43c799e2003-04-08 00:08:52 +0000498void MAC_(new_mem_stack) ( Addr a, UInt len ) \
njn9b007f62003-04-07 14:40:25 +0000499{ \
500 PROF_EVENT(115); \
501 UNALIGNED_NEW ( a, len ); \
502} \
503 \
njn43c799e2003-04-08 00:08:52 +0000504void MAC_(die_mem_stack) ( Addr a, UInt len ) \
njn9b007f62003-04-07 14:40:25 +0000505{ \
506 PROF_EVENT(125); \
507 UNALIGNED_DIE ( a, len ); \
508}
509
njn43c799e2003-04-08 00:08:52 +0000510#endif /* __MAC_SHARED_H */
njn5c004e42002-11-18 11:04:50 +0000511
512/*--------------------------------------------------------------------*/
njn43c799e2003-04-08 00:08:52 +0000513/*--- end mac_shared.h ---*/
njn5c004e42002-11-18 11:04:50 +0000514/*--------------------------------------------------------------------*/