blob: 31ba8e92158e87313a3e50a4592b1936e4210ecb [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
3/*--- A header file for all parts of Valgrind. ---*/
4/*--- Include no other! ---*/
5/*--- vg_include.h ---*/
6/*--------------------------------------------------------------------*/
7
8/*
9 This file is part of Valgrind, an x86 protected-mode emulator
10 designed for debugging and profiling binaries on x86-Unixes.
11
12 Copyright (C) 2000-2002 Julian Seward
13 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000014
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 LICENSE.
31*/
32
33#ifndef __VG_INCLUDE_H
34#define __VG_INCLUDE_H
35
36
37#include <stdarg.h> /* ANSI varargs stuff */
38#include <setjmp.h> /* for jmp_buf */
39
40
41/* ---------------------------------------------------------------------
sewardj2d94c112002-06-03 01:25:54 +000042 Where to send bug reports to.
43 ------------------------------------------------------------------ */
44
45#define VG_EMAIL_ADDR "jseward@acm.org"
46
47
48/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +000049 Build options and table sizes. You should be able to change these
50 options or sizes, recompile, and still have a working system.
51 ------------------------------------------------------------------ */
52
53#include "vg_constants.h"
54
55
56/* Set to 1 to enable time profiling. Since this uses SIGPROF, we
57 don't want this permanently enabled -- only for profiling
58 builds. */
59#if 0
60# define VG_PROFILE
61#endif
62
63
64/* Total number of integer registers available for allocation. That's
65 all of them except %esp, %edi and %ebp. %edi is a general spare
66 temporary. %ebp permanently points at VG_(baseBlock). Note that
67 it's important that this tie in with what rankToRealRegNo() says.
68 DO NOT CHANGE THIS VALUE FROM 5. ! */
69#define VG_MAX_REALREGS 5
70
71/* Total number of spill slots available for allocation, if a TempReg
72 doesn't make it into a RealReg. Just bomb the entire system if
73 this value is too small; we don't expect it will ever get
74 particularly high. */
75#define VG_MAX_SPILLSLOTS 24
76
77
78/* Constants for the slow translation lookup cache. */
79#define VG_TRANSTAB_SLOW_BITS 11
80#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
81#define VG_TRANSTAB_SLOW_MASK ((VG_TRANSTAB_SLOW_SIZE) - 1)
82
83/* Size of a buffer used for creating messages. */
84#define M_VG_MSGBUF 10000
85
86/* Size of a smallish table used to read /proc/self/map entries. */
sewardjebc82332002-04-24 14:44:23 +000087#define M_PROCMAP_BUF 50000
sewardjde4a1d02002-03-22 01:27:54 +000088
89/* Max length of pathname to a .so/executable file. */
90#define M_VG_LIBNAMESTR 100
91
92/* Max length of a text fragment used to construct error messages. */
93#define M_VG_ERRTXT 512
94
95/* Max length of the string copied from env var VG_ARGS at startup. */
96#define M_VG_CMDLINE_STRLEN 1000
97
98/* Max number of options for Valgrind which we can handle. */
99#define M_VG_CMDLINE_OPTS 100
100
101/* After this many different unsuppressed errors have been observed,
102 be more conservative about collecting new ones. */
103#define M_VG_COLLECT_ERRORS_SLOWLY_AFTER 50
104
105/* After this many different unsuppressed errors have been observed,
106 stop collecting errors at all, and tell the user their program is
107 evidently a steaming pile of camel dung. */
sewardj1bebcbf2002-04-24 21:24:18 +0000108#define M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN 300
sewardjf2537be2002-04-24 21:03:47 +0000109
110/* After this many total errors have been observed, stop collecting
111 errors at all. Counterpart to M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN. */
sewardj1bebcbf2002-04-24 21:24:18 +0000112#define M_VG_COLLECT_NO_ERRORS_AFTER_FOUND 30000
sewardjde4a1d02002-03-22 01:27:54 +0000113
114/* These many bytes below %ESP are considered addressible if we're
115 doing the --workaround-gcc296-bugs hack. */
sewardjb581a132002-05-08 00:32:50 +0000116#define VG_GCC296_BUG_STACK_SLOP 1024
sewardjde4a1d02002-03-22 01:27:54 +0000117
118/* The maximum number of calls we're prepared to save in a
119 backtrace. */
120#define VG_DEEPEST_BACKTRACE 50
121
122/* Number of lists in which we keep track of malloc'd but not free'd
123 blocks. Should be prime. */
124#define VG_N_MALLOCLISTS 997
125
126/* Number of lists in which we keep track of ExeContexts. Should be
127 prime. */
128#define VG_N_EC_LISTS /*997*/ 4999
129
sewardj2e93c502002-04-12 11:12:52 +0000130/* Defines the thread-scheduling timeslice, in terms of the number of
131 basic blocks we attempt to run each thread for. Smaller values
132 give finer interleaving but much increased scheduling overheads. */
sewardj4505b9e2002-05-28 11:27:31 +0000133#define VG_SCHEDULING_QUANTUM 50000
sewardj2e93c502002-04-12 11:12:52 +0000134
135/* The maximum number of pthreads that we support. This is
136 deliberately not very high since our implementation of some of the
sewardj5f07b662002-04-23 16:52:51 +0000137 scheduler algorithms is surely O(N) in the number of threads, since
138 that's simple, at least. And (in practice) we hope that most
sewardj2e93c502002-04-12 11:12:52 +0000139 programs do not need many threads. */
sewardj8208ae82002-06-17 14:25:00 +0000140#define VG_N_THREADS 50
sewardj5f07b662002-04-23 16:52:51 +0000141
142/* Maximum number of pthread keys available. Again, we start low until
143 the need for a higher number presents itself. */
sewardj8208ae82002-06-17 14:25:00 +0000144#define VG_N_THREAD_KEYS 50
sewardj2e93c502002-04-12 11:12:52 +0000145
146/* Number of file descriptors that can simultaneously be waited on for
147 I/O to complete. Perhaps this should be the same as VG_N_THREADS
148 (surely a thread can't wait on more than one fd at once?. Who
149 knows.) */
150#define VG_N_WAITING_FDS 10
151
sewardjbf290b92002-05-01 02:28:01 +0000152/* Stack size for a thread. We try and check that they do not go
153 beyond it. */
sewardjf0b06452002-06-04 08:38:04 +0000154#define VG_PTHREAD_STACK_SIZE (1 << 20)
sewardjbf290b92002-05-01 02:28:01 +0000155
sewardj20917d82002-05-28 01:36:45 +0000156/* Number of entries in the semaphore-remapping table. */
157#define VG_N_SEMAPHORES 50
158
159/* Number of entries in the rwlock-remapping table. */
160#define VG_N_RWLOCKS 50
161
sewardj8ad94e12002-05-29 00:10:20 +0000162/* Number of entries in each thread's cleanup stack. */
163#define VG_N_CLEANUPSTACK 8
164
sewardj2cb00342002-06-28 01:46:26 +0000165/* Number of entries in each thread's fork-handler stack. */
166#define VG_N_FORKHANDLERSTACK 2
167
sewardjde4a1d02002-03-22 01:27:54 +0000168
169/* ---------------------------------------------------------------------
170 Basic types
171 ------------------------------------------------------------------ */
172
173typedef unsigned char UChar;
174typedef unsigned short UShort;
175typedef unsigned int UInt;
176typedef unsigned long long int ULong;
177
178typedef signed char Char;
179typedef signed short Short;
180typedef signed int Int;
181typedef signed long long int Long;
182
183typedef unsigned int Addr;
184
185typedef unsigned char Bool;
186#define False ((Bool)0)
187#define True ((Bool)1)
188
189#define mycat_wrk(aaa,bbb) aaa##bbb
190#define mycat(aaa,bbb) mycat_wrk(aaa,bbb)
191
192/* Just pray that gcc's constant folding works properly ... */
193#define BITS(bit7,bit6,bit5,bit4,bit3,bit2,bit1,bit0) \
194 ( ((bit7) << 7) | ((bit6) << 6) | ((bit5) << 5) | ((bit4) << 4) \
195 | ((bit3) << 3) | ((bit2) << 2) | ((bit1) << 1) | (bit0))
196
njn7cf0bd32002-06-08 13:36:03 +0000197/* For cache simulation */
198typedef struct {
199 int size; /* bytes */
200 int assoc;
201 int line_size; /* bytes */
202} cache_t;
203
204#define UNDEFINED_CACHE ((cache_t) { -1, -1, -1 })
sewardjde4a1d02002-03-22 01:27:54 +0000205
206/* ---------------------------------------------------------------------
207 Now the basic types are set up, we can haul in the kernel-interface
208 definitions.
209 ------------------------------------------------------------------ */
210
211#include "./vg_kerneliface.h"
212
213
214/* ---------------------------------------------------------------------
215 Command-line-settable options
216 ------------------------------------------------------------------ */
217
218#define VG_CLO_SMC_NONE 0
219#define VG_CLO_SMC_SOME 1
220#define VG_CLO_SMC_ALL 2
221
222#define VG_CLO_MAX_SFILES 10
223
sewardj72f98ff2002-06-13 17:23:38 +0000224/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000225extern Bool VG_(clo_error_limit);
sewardj97ced732002-03-25 00:07:36 +0000226/* Shall we V-check addrs (they are always A checked too): default: YES */
sewardj72f98ff2002-06-13 17:23:38 +0000227extern Bool VG_(clo_check_addrVs);
sewardjde4a1d02002-03-22 01:27:54 +0000228/* Enquire about whether to attach to GDB at errors? default: NO */
229extern Bool VG_(clo_GDB_attach);
230/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
231extern Int VG_(sanity_level);
232/* Verbosity level: 0 = silent, 1 (default), > 1 = more verbose. */
233extern Int VG_(clo_verbosity);
234/* Automatically attempt to demangle C++ names? default: YES */
235extern Bool VG_(clo_demangle);
236/* Do leak check at exit? default: NO */
237extern Bool VG_(clo_leak_check);
238/* In leak check, show reachable-but-not-freed blocks? default: NO */
239extern Bool VG_(clo_show_reachable);
240/* How closely should we compare ExeContexts in leak records? default: 2 */
241extern Int VG_(clo_leak_resolution);
242/* Round malloc sizes upwards to integral number of words? default:
243 NO */
244extern Bool VG_(clo_sloppy_malloc);
sewardj246d4662002-06-14 10:17:05 +0000245/* Minimum alignment in functions that don't specify alignment explicitly.
246 default: 0, i.e. use default of the machine (== 4) */
247extern Int VG_(clo_alignment);
sewardjde4a1d02002-03-22 01:27:54 +0000248/* Allow loads from partially-valid addresses? default: YES */
249extern Bool VG_(clo_partial_loads_ok);
250/* Simulate child processes? default: NO */
251extern Bool VG_(clo_trace_children);
252/* The file id on which we send all messages. default: 2 (stderr). */
253extern Int VG_(clo_logfile_fd);
254/* Max volume of the freed blocks queue. */
255extern Int VG_(clo_freelist_vol);
256/* Assume accesses immediately below %esp are due to gcc-2.96 bugs.
257 default: NO */
258extern Bool VG_(clo_workaround_gcc296_bugs);
259
260/* The number of suppression files specified. */
261extern Int VG_(clo_n_suppressions);
262/* The names of the suppression files. */
263extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
264
265/* Single stepping? default: NO */
266extern Bool VG_(clo_single_step);
267/* Code improvement? default: YES */
268extern Bool VG_(clo_optimise);
269/* Memory-check instrumentation? default: YES */
270extern Bool VG_(clo_instrument);
271/* DEBUG: clean up instrumented code? default: YES */
272extern Bool VG_(clo_cleanup);
njn4f9c9342002-04-29 16:03:24 +0000273/* Cache simulation instrumentation? default: NO */
274extern Bool VG_(clo_cachesim);
njn7cf0bd32002-06-08 13:36:03 +0000275/* I1 cache configuration. default: undefined */
276extern cache_t VG_(clo_I1_cache);
277/* D1 cache configuration. default: undefined */
278extern cache_t VG_(clo_D1_cache);
279/* L2 cache configuration. default: undefined */
280extern cache_t VG_(clo_L2_cache);
sewardjde4a1d02002-03-22 01:27:54 +0000281/* SMC write checks? default: SOME (1,2,4 byte movs to mem) */
282extern Int VG_(clo_smc_check);
283/* DEBUG: print system calls? default: NO */
284extern Bool VG_(clo_trace_syscalls);
285/* DEBUG: print signal details? default: NO */
286extern Bool VG_(clo_trace_signals);
287/* DEBUG: print symtab details? default: NO */
288extern Bool VG_(clo_trace_symtab);
289/* DEBUG: print malloc details? default: NO */
290extern Bool VG_(clo_trace_malloc);
sewardj8937c812002-04-12 20:12:20 +0000291/* DEBUG: print thread scheduling events? default: NO */
292extern Bool VG_(clo_trace_sched);
sewardj45b4b372002-04-16 22:50:32 +0000293/* DEBUG: print pthread (mutex etc) events? default: 0 (none), 1
294 (some), 2 (all) */
295extern Int VG_(clo_trace_pthread_level);
sewardjde4a1d02002-03-22 01:27:54 +0000296/* Stop after this many basic blocks. default: Infinity. */
297extern ULong VG_(clo_stop_after);
298/* Display gory details for the k'th most popular error. default:
299 Infinity. */
300extern Int VG_(clo_dump_error);
301/* Number of parents of a backtrace. Default: 8. */
302extern Int VG_(clo_backtrace_size);
sewardj3984b852002-05-12 03:00:17 +0000303/* Engage miscellaneous wierd hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000304extern Char* VG_(clo_weird_hacks);
sewardjde4a1d02002-03-22 01:27:54 +0000305
306
307/* ---------------------------------------------------------------------
308 Debugging and profiling stuff
309 ------------------------------------------------------------------ */
310
311/* No, really. I _am_ that strange. */
312#define OINK(nnn) VG_(message)(Vg_DebugMsg, "OINK %d",nnn)
313
314/* Tools for building messages from multiple parts. */
315typedef
316 enum { Vg_UserMsg, Vg_DebugMsg, Vg_DebugExtraMsg }
317 VgMsgKind;
318
319extern void VG_(start_msg) ( VgMsgKind kind );
320extern void VG_(add_to_msg) ( Char* format, ... );
321extern void VG_(end_msg) ( void );
322
323/* Send a simple, single-part message. */
324extern void VG_(message) ( VgMsgKind kind, Char* format, ... );
325
326/* Create a logfile into which messages can be dumped. */
327extern void VG_(startup_logging) ( void );
328extern void VG_(shutdown_logging) ( void );
329
330
331/* Profiling stuff */
332#ifdef VG_PROFILE
333
334#define VGP_M_STACK 10
335
sewardj671ff542002-05-07 09:25:30 +0000336#define VGP_M_CCS 26 /* == the # of elems in VGP_LIST */
sewardjde4a1d02002-03-22 01:27:54 +0000337#define VGP_LIST \
sewardj671ff542002-05-07 09:25:30 +0000338 VGP_PAIR(VgpUnc=0, "unclassified"), \
339 VGP_PAIR(VgpRun, "running"), \
340 VGP_PAIR(VgpSched, "scheduler"), \
sewardjde4a1d02002-03-22 01:27:54 +0000341 VGP_PAIR(VgpMalloc, "low-lev malloc/free"), \
342 VGP_PAIR(VgpCliMalloc, "client malloc/free"), \
343 VGP_PAIR(VgpTranslate, "translate-main"), \
344 VGP_PAIR(VgpToUCode, "to-ucode"), \
345 VGP_PAIR(VgpFromUcode, "from-ucode"), \
346 VGP_PAIR(VgpImprove, "improve"), \
347 VGP_PAIR(VgpInstrument, "instrument"), \
348 VGP_PAIR(VgpCleanup, "cleanup"), \
349 VGP_PAIR(VgpRegAlloc, "reg-alloc"), \
350 VGP_PAIR(VgpDoLRU, "do-lru"), \
351 VGP_PAIR(VgpSlowFindT, "slow-search-transtab"), \
352 VGP_PAIR(VgpInitAudit, "init-mem-audit"), \
353 VGP_PAIR(VgpExeContext, "exe-context"), \
354 VGP_PAIR(VgpReadSyms, "read-syms"), \
355 VGP_PAIR(VgpAddToT, "add-to-transtab"), \
356 VGP_PAIR(VgpSARP, "set-addr-range-perms"), \
357 VGP_PAIR(VgpSyscall, "syscall wrapper"), \
njn4f9c9342002-04-29 16:03:24 +0000358 VGP_PAIR(VgpCacheInstrument, "cache instrument"), \
359 VGP_PAIR(VgpCacheGetBBCC,"cache get BBCC"), \
360 VGP_PAIR(VgpCacheSimulate, "cache simulate"), \
361 VGP_PAIR(VgpCacheDump, "cache stats dump"), \
sewardjde4a1d02002-03-22 01:27:54 +0000362 VGP_PAIR(VgpSpare1, "spare 1"), \
363 VGP_PAIR(VgpSpare2, "spare 2")
364
365#define VGP_PAIR(enumname,str) enumname
366typedef enum { VGP_LIST } VgpCC;
367#undef VGP_PAIR
368
369extern void VGP_(init_profiling) ( void );
370extern void VGP_(done_profiling) ( void );
371extern void VGP_(pushcc) ( VgpCC );
372extern void VGP_(popcc) ( void );
373
374#define VGP_PUSHCC(cc) VGP_(pushcc)(cc)
375#define VGP_POPCC VGP_(popcc)()
376
377#else
378
379#define VGP_PUSHCC(cc) /* */
380#define VGP_POPCC /* */
381
382#endif /* VG_PROFILE */
383
384
385/* ---------------------------------------------------------------------
386 Exports of vg_malloc2.c
387 ------------------------------------------------------------------ */
388
389/* Allocation arenas.
390 SYMTAB is for Valgrind's symbol table storage.
391 CLIENT is for the client's mallocs/frees.
392 DEMANGLE is for the C++ demangler.
393 EXECTXT is for storing ExeContexts.
394 ERRCTXT is for storing ErrContexts.
395 PRIVATE is for Valgrind general stuff.
396 TRANSIENT is for very short-term use. It should be empty
397 in between uses.
398 When adding a new arena, remember also to add it
399 to ensure_mm_init().
400*/
401typedef Int ArenaId;
402
403#define VG_N_ARENAS 7
404
405#define VG_AR_PRIVATE 0 /* :: ArenaId */
406#define VG_AR_SYMTAB 1 /* :: ArenaId */
407#define VG_AR_CLIENT 2 /* :: ArenaId */
408#define VG_AR_DEMANGLE 3 /* :: ArenaId */
409#define VG_AR_EXECTXT 4 /* :: ArenaId */
410#define VG_AR_ERRCTXT 5 /* :: ArenaId */
411#define VG_AR_TRANSIENT 6 /* :: ArenaId */
412
413extern void* VG_(malloc) ( ArenaId arena, Int nbytes );
414extern void VG_(free) ( ArenaId arena, void* ptr );
415extern void* VG_(calloc) ( ArenaId arena, Int nmemb, Int nbytes );
416extern void* VG_(realloc) ( ArenaId arena, void* ptr, Int size );
417extern void* VG_(malloc_aligned) ( ArenaId aid, Int req_alignB,
418 Int req_pszB );
419
420extern void VG_(mallocSanityCheckArena) ( ArenaId arena );
421extern void VG_(mallocSanityCheckAll) ( void );
422
423extern void VG_(show_all_arena_stats) ( void );
424extern Bool VG_(is_empty_arena) ( ArenaId aid );
425
426
427/* The red-zone size for the client. This can be arbitrary, but
428 unfortunately must be set at compile time. */
429#define VG_AR_CLIENT_REDZONE_SZW 4
430
431#define VG_AR_CLIENT_REDZONE_SZB \
432 (VG_AR_CLIENT_REDZONE_SZW * VKI_BYTES_PER_WORD)
433
434
435/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000436 Exports of vg_clientfuns.c
437 ------------------------------------------------------------------ */
438
439/* This doesn't export code or data that valgrind.so needs to link
440 against. However, the scheduler does need to know the following
441 request codes. A few, publically-visible, request codes are also
442 defined in valgrind.h. */
443
444#define VG_USERREQ__MALLOC 0x2001
445#define VG_USERREQ__BUILTIN_NEW 0x2002
446#define VG_USERREQ__BUILTIN_VEC_NEW 0x2003
447
448#define VG_USERREQ__FREE 0x2004
449#define VG_USERREQ__BUILTIN_DELETE 0x2005
450#define VG_USERREQ__BUILTIN_VEC_DELETE 0x2006
451
452#define VG_USERREQ__CALLOC 0x2007
453#define VG_USERREQ__REALLOC 0x2008
454#define VG_USERREQ__MEMALIGN 0x2009
455
456
sewardj20917d82002-05-28 01:36:45 +0000457/* (Fn, Arg): Create a new thread and run Fn applied to Arg in it. Fn
458 MUST NOT return -- ever. Eventually it will do either __QUIT or
459 __WAIT_JOINER. */
460#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
461
462/* ( no-args ): calling thread disappears from the system forever.
463 Reclaim resources. */
464#define VG_USERREQ__QUIT 0x3002
465
466/* ( void* ): calling thread waits for joiner and returns the void* to
467 it. */
468#define VG_USERREQ__WAIT_JOINER 0x3003
469
470/* ( ThreadId, void** ): wait to join a thread. */
471#define VG_USERREQ__PTHREAD_JOIN 0x3004
472
473/* Set cancellation state and type for this thread. */
474#define VG_USERREQ__SET_CANCELSTATE 0x3005
475#define VG_USERREQ__SET_CANCELTYPE 0x3006
476
477/* ( no-args ): Test if we are at a cancellation point. */
478#define VG_USERREQ__TESTCANCEL 0x3007
479
480/* ( ThreadId, &thread_exit_wrapper is the only allowable arg ): call
481 with this arg to indicate that a cancel is now pending for the
482 specified thread. */
483#define VG_USERREQ__SET_CANCELPEND 0x3008
484
485/* Set/get detach state for this thread. */
486#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
487
488#define VG_USERREQ__PTHREAD_GET_THREADID 0x300B
489#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300C
490#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
491#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
492#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
493#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
494#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
495#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
496#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
497#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
498#define VG_USERREQ__PTHREAD_SETSPECIFIC 0x3015
499#define VG_USERREQ__PTHREAD_GETSPECIFIC 0x3016
500#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
501#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
502#define VG_USERREQ__SIGWAIT 0x3019
503#define VG_USERREQ__PTHREAD_KILL 0x301A
504#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj2e93c502002-04-12 11:12:52 +0000505
sewardj8ad94e12002-05-29 00:10:20 +0000506#define VG_USERREQ__CLEANUP_PUSH 0x3020
507#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000508#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardj8ad94e12002-05-29 00:10:20 +0000509
sewardjef037c72002-05-30 00:40:03 +0000510#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjefbfcdf2002-06-19 17:35:45 +0000511
512/* Ask how many signal handler returns have happened to this
513 thread. */
sewardj9a2224b2002-06-19 10:17:40 +0000514#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024
sewardjef037c72002-05-30 00:40:03 +0000515
sewardj2cb00342002-06-28 01:46:26 +0000516/* Get/set entries for a thread's pthread_atfork stack. */
517#define VG_USERREQ__SET_FHSTACK_USED 0x3025
518#define VG_USERREQ__GET_FHSTACK_USED 0x3026
519#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
520#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
sewardjefbfcdf2002-06-19 17:35:45 +0000521
sewardj45b4b372002-04-16 22:50:32 +0000522/* Cosmetic ... */
523#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000524/* Log a pthread error from client-space. Cosmetic. */
525#define VG_USERREQ__PTHREAD_ERROR 0x3102
sewardj45b4b372002-04-16 22:50:32 +0000526
sewardj54cacf02002-04-12 23:24:59 +0000527/*
528In vg_constants.h:
529#define VG_USERREQ__SIGNAL_RETURNS 0x4001
sewardj54cacf02002-04-12 23:24:59 +0000530*/
531
532
sewardj2e93c502002-04-12 11:12:52 +0000533/* ---------------------------------------------------------------------
534 Constants pertaining to the simulated CPU state, VG_(baseBlock),
535 which need to go here to avoid ugly circularities.
536 ------------------------------------------------------------------ */
537
538/* How big is the saved FPU state? */
539#define VG_SIZE_OF_FPUSTATE 108
540/* ... and in words ... */
541#define VG_SIZE_OF_FPUSTATE_W ((VG_SIZE_OF_FPUSTATE+3)/4)
542
543
544/* ---------------------------------------------------------------------
545 Exports of vg_scheduler.c
546 ------------------------------------------------------------------ */
547
548/* ThreadIds are simply indices into the vg_threads[] array. */
549typedef
550 UInt
551 ThreadId;
552
sewardj6072c362002-04-19 14:40:57 +0000553/* Special magic value for an invalid ThreadId. It corresponds to
554 LinuxThreads using zero as the initial value for
555 pthread_mutex_t.__m_owner and pthread_cond_t.__c_waiting. */
556#define VG_INVALID_THREADID ((ThreadId)(0))
sewardj2e93c502002-04-12 11:12:52 +0000557
558typedef
559 enum {
560 VgTs_Empty, /* this slot is not in use */
561 VgTs_Runnable, /* waiting to be scheduled */
562 VgTs_WaitJoiner, /* waiting for someone to do join on me */
563 VgTs_WaitJoinee, /* waiting for the thread I did join on */
564 VgTs_WaitFD, /* waiting for I/O completion on a fd */
565 VgTs_WaitMX, /* waiting on a mutex */
sewardj3b5d8862002-04-20 13:53:23 +0000566 VgTs_WaitCV, /* waiting on a condition variable */
sewardjb48e5002002-05-13 00:16:03 +0000567 VgTs_WaitSIG, /* waiting due to sigwait() */
sewardj2e93c502002-04-12 11:12:52 +0000568 VgTs_Sleeping /* sleeping for a while */
569 }
570 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000571
572/* An entry in a threads's cleanup stack. */
573typedef
574 struct {
575 void (*fn)(void*);
576 void* arg;
577 }
578 CleanupEntry;
sewardj2cb00342002-06-28 01:46:26 +0000579
580/* An entry in a thread's fork-handler stack. */
581typedef
582 struct {
583 void (*prepare)(void);
584 void (*parent)(void);
585 void (*child)(void);
586 }
587 ForkHandlerEntry;
588
589
sewardj2e93c502002-04-12 11:12:52 +0000590typedef
591 struct {
sewardj6072c362002-04-19 14:40:57 +0000592 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
593 The thread identity is simply the index in vg_threads[].
594 ThreadId == 1 is the root thread and has the special property
sewardj1e8cdc92002-04-18 11:37:52 +0000595 that we don't try and allocate or deallocate its stack. For
596 convenience of generating error message, we also put the
597 ThreadId in this tid field, but be aware that it should
sewardj604ec3c2002-04-18 22:38:41 +0000598 ALWAYS == the index in vg_threads[]. */
sewardj1e8cdc92002-04-18 11:37:52 +0000599 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000600
sewardj5f07b662002-04-23 16:52:51 +0000601 /* Current scheduling status.
602
603 Complications: whenever this is set to VgTs_WaitMX, you
604 should also set .m_edx to whatever the required return value
605 is for pthread_mutex_lock / pthread_cond_timedwait for when
606 the mutex finally gets unblocked. */
sewardj2e93c502002-04-12 11:12:52 +0000607 ThreadStatus status;
608
sewardj3b5d8862002-04-20 13:53:23 +0000609 /* When .status == WaitMX, points to the mutex I am waiting for.
610 When .status == WaitCV, points to the mutex associated with
611 the condition variable indicated by the .associated_cv field.
612 In all other cases, should be NULL. */
613 void* /* pthread_mutex_t* */ associated_mx;
614
615 /* When .status == WaitCV, points to the condition variable I am
616 waiting for. In all other cases, should be NULL. */
617 void* /* pthread_cond_t* */ associated_cv;
sewardj2e93c502002-04-12 11:12:52 +0000618
sewardj5f07b662002-04-23 16:52:51 +0000619 /* If VgTs_Sleeping, this is when we should wake up, measured in
620 milliseconds as supplied by VG_(read_millisecond_counter).
621
622 If VgTs_WaitCV, this indicates the time at which
623 pthread_cond_timedwait should wake up. If == 0xFFFFFFFF,
624 this means infinitely far in the future, viz,
625 pthread_cond_wait. */
626 UInt awaken_at;
sewardj2e93c502002-04-12 11:12:52 +0000627
sewardj20917d82002-05-28 01:36:45 +0000628 /* If VgTs_WaitJoiner, return value, as generated by joinees. */
629 void* joinee_retval;
630
631 /* If VgTs_WaitJoinee, place to copy the return value to, and
632 the identity of the thread we're waiting for. */
633 void** joiner_thread_return;
634 ThreadId joiner_jee_tid;
635
sewardj8ad94e12002-05-29 00:10:20 +0000636 /* Whether or not detached. */
637 Bool detached;
638
sewardj20917d82002-05-28 01:36:45 +0000639 /* Cancelability state and type. */
640 Bool cancel_st; /* False==PTH_CANCEL_DISABLE; True==.._ENABLE */
641 Bool cancel_ty; /* False==PTH_CANC_ASYNCH; True==..._DEFERRED */
642
643 /* Pointer to fn to call to do cancellation. Indicates whether
644 or not cancellation is pending. If NULL, not pending. Else
645 should be &thread_exit_wrapper(), indicating that
646 cancallation is pending. */
647 void (*cancel_pend)(void*);
648
sewardj8ad94e12002-05-29 00:10:20 +0000649 /* The cleanup stack. */
650 Int custack_used;
651 CleanupEntry custack[VG_N_CLEANUPSTACK];
sewardj2e93c502002-04-12 11:12:52 +0000652
sewardj5f07b662002-04-23 16:52:51 +0000653 /* thread-specific data */
654 void* specifics[VG_N_THREAD_KEYS];
655
sewardjb48e5002002-05-13 00:16:03 +0000656 /* This thread's blocked-signals mask. Semantics is that for a
657 signal to be delivered to this thread, the signal must not be
658 blocked by either the process-wide signal mask nor by this
659 one. So, if this thread is prepared to handle any signal that
660 the process as a whole is prepared to handle, this mask should
661 be made empty -- and that it is its default, starting
662 state. */
663 vki_ksigset_t sig_mask;
664
665 /* When not VgTs_WaitSIG, has no meaning. When VgTs_WaitSIG,
666 is the set of signals for which we are sigwait()ing. */
667 vki_ksigset_t sigs_waited_for;
668
sewardj9a2224b2002-06-19 10:17:40 +0000669 /* Counts the number of times a signal handler for this thread
670 has returned. This makes it easy to implement pause(), by
671 polling this value, of course interspersed with nanosleeps,
672 and waiting till it changes. */
673 UInt n_signals_returned;
674
sewardj2e93c502002-04-12 11:12:52 +0000675 /* Stacks. When a thread slot is freed, we don't deallocate its
676 stack; we just leave it lying around for the next use of the
677 slot. If the next use of the slot requires a larger stack,
678 only then is the old one deallocated and a new one
679 allocated.
680
681 For the main thread (threadid == 0), this mechanism doesn't
682 apply. We don't know the size of the stack since we didn't
683 allocate it, and furthermore we never reallocate it. */
684
685 /* The allocated size of this thread's stack (permanently zero
686 if this is ThreadId == 0, since we didn't allocate its stack) */
687 UInt stack_size;
688
689 /* Address of the lowest word in this thread's stack. NULL means
690 not allocated yet.
691 */
692 Addr stack_base;
693
sewardj1e8cdc92002-04-18 11:37:52 +0000694 /* Address of the highest legitimate word in this stack. This is
695 used for error messages only -- not critical for execution
696 correctness. Is is set for all stacks, specifically including
697 ThreadId == 0 (the main thread). */
698 Addr stack_highest_word;
699
sewardj2e93c502002-04-12 11:12:52 +0000700 /* Saved machine context. */
701 UInt m_eax;
702 UInt m_ebx;
703 UInt m_ecx;
704 UInt m_edx;
705 UInt m_esi;
706 UInt m_edi;
707 UInt m_ebp;
708 UInt m_esp;
709 UInt m_eflags;
710 UInt m_eip;
711 UInt m_fpu[VG_SIZE_OF_FPUSTATE_W];
712
713 UInt sh_eax;
714 UInt sh_ebx;
715 UInt sh_ecx;
716 UInt sh_edx;
717 UInt sh_esi;
718 UInt sh_edi;
719 UInt sh_ebp;
720 UInt sh_esp;
721 UInt sh_eflags;
722 }
723 ThreadState;
724
725
sewardj018f7622002-05-15 21:13:39 +0000726/* The thread table. */
727extern ThreadState VG_(threads)[VG_N_THREADS];
728
729/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000730extern Bool VG_(is_valid_tid) ( ThreadId tid );
731
sewardj018f7622002-05-15 21:13:39 +0000732/* Check that tid is in range. */
733extern Bool VG_(is_valid_or_empty_tid) ( ThreadId tid );
734
sewardj2e93c502002-04-12 11:12:52 +0000735/* Copy the specified thread's state into VG_(baseBlock) in
736 preparation for running it. */
737extern void VG_(load_thread_state)( ThreadId );
738
739/* Save the specified thread's state back in VG_(baseBlock), and fill
740 VG_(baseBlock) with junk, for sanity-check reasons. */
741extern void VG_(save_thread_state)( ThreadId );
742
sewardj1e8cdc92002-04-18 11:37:52 +0000743/* And for the currently running one, if valid. */
744extern ThreadState* VG_(get_current_thread_state) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000745
sewardj1e8cdc92002-04-18 11:37:52 +0000746/* Similarly ... */
747extern ThreadId VG_(get_current_tid) ( void );
748
749/* Which thread is this address in the stack of, if any? Used for
750 error message generation. */
751extern ThreadId VG_(identify_stack_addr)( Addr a );
752
sewardjccef2e62002-05-29 19:26:32 +0000753/* Nuke all threads except tid. */
754extern void VG_(nuke_all_threads_except) ( ThreadId me );
755
sewardj2e93c502002-04-12 11:12:52 +0000756
757/* Return codes from the scheduler. */
758typedef
sewardj7e87e382002-05-03 19:09:05 +0000759 enum {
760 VgSrc_Deadlock, /* no runnable threads and no prospect of any
761 even if we wait for a long time */
762 VgSrc_ExitSyscall, /* client called exit(). This is the normal
763 route out. */
764 VgSrc_BbsDone /* In a debugging run, the specified number of
765 bbs has been completed. */
766 }
sewardj2e93c502002-04-12 11:12:52 +0000767 VgSchedReturnCode;
768
sewardj7e87e382002-05-03 19:09:05 +0000769
sewardj2e93c502002-04-12 11:12:52 +0000770/* The scheduler. */
771extern VgSchedReturnCode VG_(scheduler) ( void );
772
773extern void VG_(scheduler_init) ( void );
774
sewardj15a43e12002-04-17 19:35:12 +0000775extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000776
777/* vg_oursignalhandler() might longjmp(). Here's the jmp_buf. */
778extern jmp_buf VG_(scheduler_jmpbuf);
sewardj872051c2002-07-13 12:12:56 +0000779/* This says whether scheduler_jmpbuf is actually valid. Needed so
780 that our signal handler doesn't longjmp when the buffer isn't
781 actually valid. */
782extern Bool VG_(scheduler_jmpbuf_valid);
sewardj2e93c502002-04-12 11:12:52 +0000783/* ... and if so, here's the signal which caused it to do so. */
784extern Int VG_(longjmpd_on_signal);
785
786
sewardja1679dd2002-05-10 22:31:40 +0000787/* Possible places where the main stack might be based. We check that
788 the initial stack, which we can't move, is allocated here.
789 VG_(scheduler_init) checks this. Andrea Archelangi's 2.4 kernels
790 have been rumoured to start stacks at 0x80000000, so that too is
daywalkera2562202002-07-15 19:39:51 +0000791 considered. It seems systems with longer uptimes tend to to use
792 stacks which start at 0x40000000 sometimes.
sewardj2e93c502002-04-12 11:12:52 +0000793*/
sewardja1679dd2002-05-10 22:31:40 +0000794#define VG_STARTUP_STACK_BASE_1 (Addr)0xC0000000
795#define VG_STARTUP_STACK_BASE_2 (Addr)0x80000000
daywalkera2562202002-07-15 19:39:51 +0000796#define VG_STARTUP_STACK_BASE_3 (Addr)0x40000000
sewardja1679dd2002-05-10 22:31:40 +0000797#define VG_STARTUP_STACK_SMALLERTHAN 0x100000 /* 1024k */
798
799#define VG_STACK_MATCHES_BASE(zzstack, zzbase) \
800 ( \
801 ((zzstack) & ((zzbase) - VG_STARTUP_STACK_SMALLERTHAN)) \
802 == \
803 ((zzbase) - VG_STARTUP_STACK_SMALLERTHAN) \
804 )
sewardj2e93c502002-04-12 11:12:52 +0000805
806
807/* The red-zone size which we put at the bottom (highest address) of
808 thread stacks, for paranoia reasons. This can be arbitrary, and
809 doesn't really need to be set at compile time. */
810#define VG_AR_CLIENT_STACKBASE_REDZONE_SZW 4
811
812#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB \
813 (VG_AR_CLIENT_STACKBASE_REDZONE_SZW * VKI_BYTES_PER_WORD)
814
815
sewardj018f7622002-05-15 21:13:39 +0000816/* Write a value to the client's %EDX (request return value register)
817 and set the shadow to indicate it is defined. */
818#define SET_EDX(zztid, zzval) \
819 do { VG_(threads)[zztid].m_edx = (zzval); \
820 VG_(threads)[zztid].sh_edx = VGM_WORD_VALID; \
821 } while (0)
822
823#define SET_EAX(zztid, zzval) \
824 do { VG_(threads)[zztid].m_eax = (zzval); \
825 VG_(threads)[zztid].sh_eax = VGM_WORD_VALID; \
826 } while (0)
827
sewardj2e93c502002-04-12 11:12:52 +0000828
829/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000830 Exports of vg_signals.c
831 ------------------------------------------------------------------ */
832
sewardjde4a1d02002-03-22 01:27:54 +0000833extern void VG_(sigstartup_actions) ( void );
834
sewardjb48e5002002-05-13 00:16:03 +0000835extern Bool VG_(deliver_signals) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000836extern void VG_(unblock_host_signal) ( Int sigNo );
sewardj018f7622002-05-15 21:13:39 +0000837extern void VG_(handle_SCSS_change) ( Bool force_update );
838
sewardjde4a1d02002-03-22 01:27:54 +0000839
840/* Fake system calls for signal handling. */
sewardj2342c972002-05-22 23:34:20 +0000841extern void VG_(do__NR_sigaltstack) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +0000842extern void VG_(do__NR_sigaction) ( ThreadId tid );
sewardj018f7622002-05-15 21:13:39 +0000843extern void VG_(do__NR_sigprocmask) ( ThreadId tid,
844 Int how,
845 vki_ksigset_t* set,
846 vki_ksigset_t* oldset );
847extern void VG_(do_pthread_sigmask_SCSS_upd) ( ThreadId tid,
848 Int how,
849 vki_ksigset_t* set,
850 vki_ksigset_t* oldset );
851extern void VG_(send_signal_to_thread) ( ThreadId thread,
852 Int signo );
sewardjde4a1d02002-03-22 01:27:54 +0000853
sewardjefbfcdf2002-06-19 17:35:45 +0000854extern void VG_(do_sigpending) ( ThreadId tid, vki_ksigset_t* set );
855
856
sewardj2e93c502002-04-12 11:12:52 +0000857/* Modify the current thread's state once we have detected it is
858 returning from a signal handler. */
sewardj77e466c2002-04-14 02:29:29 +0000859extern Bool VG_(signal_returns) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +0000860
sewardj2e93c502002-04-12 11:12:52 +0000861/* Handy utilities to block/restore all host signals. */
862extern void VG_(block_all_host_signals)
863 ( /* OUT */ vki_ksigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +0000864extern void VG_(restore_all_host_signals)
sewardj2e93c502002-04-12 11:12:52 +0000865 ( /* IN */ vki_ksigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000866
867/* ---------------------------------------------------------------------
868 Exports of vg_mylibc.c
869 ------------------------------------------------------------------ */
870
871
sewardjfbe18b92002-05-10 00:46:59 +0000872#if !defined(NULL)
873# define NULL ((void*)0)
874#endif
sewardjde4a1d02002-03-22 01:27:54 +0000875
876extern void VG_(exit)( Int status )
877 __attribute__ ((__noreturn__));
878
879extern void VG_(printf) ( const char *format, ... );
880/* too noisy ... __attribute__ ((format (printf, 1, 2))) ; */
881
882extern void VG_(sprintf) ( Char* buf, Char *format, ... );
883
884extern void VG_(vprintf) ( void(*send)(Char),
885 const Char *format, va_list vargs );
886
887extern Bool VG_(isspace) ( Char c );
njn7cf0bd32002-06-08 13:36:03 +0000888extern Bool VG_(isdigit) ( Char c );
sewardjde4a1d02002-03-22 01:27:54 +0000889
890extern Int VG_(strlen) ( const Char* str );
891
892extern Long VG_(atoll) ( Char* str );
sewardja70ca3f2002-05-30 01:22:20 +0000893extern Long VG_(atoll36) ( Char* str );
sewardjde4a1d02002-03-22 01:27:54 +0000894
895extern Char* VG_(strcat) ( Char* dest, const Char* src );
896extern Char* VG_(strncat) ( Char* dest, const Char* src, Int n );
897extern Char* VG_(strpbrk) ( const Char* s, const Char* accept );
898
899extern Char* VG_(strcpy) ( Char* dest, const Char* src );
900
901extern Int VG_(strcmp) ( const Char* s1, const Char* s2 );
902extern Int VG_(strcmp_ws) ( const Char* s1, const Char* s2 );
903
904extern Int VG_(strncmp) ( const Char* s1, const Char* s2, Int nmax );
905extern Int VG_(strncmp_ws) ( const Char* s1, const Char* s2, Int nmax );
906
907extern Char* VG_(strstr) ( const Char* haystack, Char* needle );
908extern Char* VG_(strchr) ( const Char* s, Char c );
909extern Char* VG_(strdup) ( ArenaId aid, const Char* s);
910
911extern Char* VG_(getenv) ( Char* name );
912extern Int VG_(getpid) ( void );
sewardj5f07b662002-04-23 16:52:51 +0000913
914extern void VG_(start_rdtsc_calibration) ( void );
915extern void VG_(end_rdtsc_calibration) ( void );
916extern UInt VG_(read_millisecond_timer) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000917
918
919extern Char VG_(toupper) ( Char c );
920
921extern void VG_(strncpy_safely) ( Char* dest, const Char* src, Int ndest );
922
923extern void VG_(strncpy) ( Char* dest, const Char* src, Int ndest );
924
925extern Bool VG_(stringMatch) ( Char* pat, Char* str );
926
927
sewardj3e1eb1f2002-05-18 13:14:17 +0000928#define VG__STRING(__str) #__str
sewardjde4a1d02002-03-22 01:27:54 +0000929
930/* Asserts are permanently enabled. Hurrah! */
931#define vg_assert(expr) \
932 ((void) ((expr) ? 0 : \
sewardj3e1eb1f2002-05-18 13:14:17 +0000933 (VG_(assert_fail) (VG__STRING(expr), \
sewardjde4a1d02002-03-22 01:27:54 +0000934 __FILE__, __LINE__, \
935 __PRETTY_FUNCTION__), 0)))
936
937extern void VG_(assert_fail) ( Char* expr, Char* file,
938 Int line, Char* fn )
939 __attribute__ ((__noreturn__));
940
njn4f9c9342002-04-29 16:03:24 +0000941/* Reading and writing files. */
sewardjde4a1d02002-03-22 01:27:54 +0000942extern Int VG_(open_read) ( Char* pathname );
njn4f9c9342002-04-29 16:03:24 +0000943extern Int VG_(open_write) ( Char* pathname );
944extern Int VG_(create_and_write) ( Char* pathname );
sewardjde4a1d02002-03-22 01:27:54 +0000945extern void VG_(close) ( Int fd );
946extern Int VG_(read) ( Int fd, void* buf, Int count);
947extern Int VG_(write) ( Int fd, void* buf, Int count);
sewardjb3586202002-05-09 17:38:13 +0000948extern Int VG_(stat) ( Char* file_name, struct vki_stat* buf );
sewardjde4a1d02002-03-22 01:27:54 +0000949
sewardj2e93c502002-04-12 11:12:52 +0000950extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
951
952extern Int VG_(select)( Int n,
953 vki_fd_set* readfds,
954 vki_fd_set* writefds,
955 vki_fd_set* exceptfds,
956 struct vki_timeval * timeout );
957extern Int VG_(nanosleep)( const struct vki_timespec *req,
958 struct vki_timespec *rem );
959
960
sewardjde4a1d02002-03-22 01:27:54 +0000961/* mmap-ery ... */
962extern void* VG_(mmap)( void* start, UInt length,
963 UInt prot, UInt flags, UInt fd, UInt offset );
964
sewardj2e93c502002-04-12 11:12:52 +0000965extern Int VG_(munmap)( void* start, Int length );
sewardjde4a1d02002-03-22 01:27:54 +0000966
sewardjb3586202002-05-09 17:38:13 +0000967extern void* VG_(brk) ( void* end_data_segment );
968
sewardjde4a1d02002-03-22 01:27:54 +0000969
970/* Print a (panic) message, and abort. */
971extern void VG_(panic) ( Char* str )
972 __attribute__ ((__noreturn__));
973
974/* Get memory by anonymous mmap. */
sewardje9047952002-06-05 20:28:33 +0000975extern void* VG_(get_memory_from_mmap) ( Int nBytes, Char* who );
sewardje6a25242002-04-21 22:03:07 +0000976
977/* Crude stand-in for the glibc system() call. */
978extern Int VG_(system) ( Char* cmd );
979
sewardjde4a1d02002-03-22 01:27:54 +0000980
981/* Signal stuff. Note that these use the vk_ (kernel) structure
982 definitions, which are different in places from those that glibc
983 defines. Since we're operating right at the kernel interface,
984 glibc's view of the world is entirely irrelevant. */
sewardj018f7622002-05-15 21:13:39 +0000985
986/* --- Signal set ops --- */
sewardjb48e5002002-05-13 00:16:03 +0000987extern Int VG_(ksigfillset)( vki_ksigset_t* set );
988extern Int VG_(ksigemptyset)( vki_ksigset_t* set );
sewardjde4a1d02002-03-22 01:27:54 +0000989
sewardj018f7622002-05-15 21:13:39 +0000990extern Bool VG_(kisfullsigset)( vki_ksigset_t* set );
991extern Bool VG_(kisemptysigset)( vki_ksigset_t* set );
992
993extern Int VG_(ksigaddset)( vki_ksigset_t* set, Int signum );
994extern Int VG_(ksigdelset)( vki_ksigset_t* set, Int signum );
995extern Int VG_(ksigismember) ( vki_ksigset_t* set, Int signum );
996
sewardjb48e5002002-05-13 00:16:03 +0000997extern void VG_(ksigaddset_from_set)( vki_ksigset_t* dst,
998 vki_ksigset_t* src );
999extern void VG_(ksigdelset_from_set)( vki_ksigset_t* dst,
1000 vki_ksigset_t* src );
1001
sewardj018f7622002-05-15 21:13:39 +00001002/* --- Mess with the kernel's sig state --- */
1003extern Int VG_(ksigprocmask)( Int how, const vki_ksigset_t* set,
1004 vki_ksigset_t* oldset );
1005extern Int VG_(ksigaction) ( Int signum,
1006 const vki_ksigaction* act,
1007 vki_ksigaction* oldact );
sewardjde4a1d02002-03-22 01:27:54 +00001008
1009extern Int VG_(ksignal)(Int signum, void (*sighandler)(Int));
1010
1011extern Int VG_(ksigaltstack)( const vki_kstack_t* ss, vki_kstack_t* oss );
1012
sewardj018f7622002-05-15 21:13:39 +00001013extern Int VG_(kill)( Int pid, Int signo );
sewardjefbfcdf2002-06-19 17:35:45 +00001014extern Int VG_(sigpending) ( vki_ksigset_t* set );
sewardjde4a1d02002-03-22 01:27:54 +00001015
1016
1017/* ---------------------------------------------------------------------
1018 Definitions for the JITter (vg_translate.c, vg_to_ucode.c,
1019 vg_from_ucode.c).
1020 ------------------------------------------------------------------ */
1021
1022/* Tags which describe what operands are. */
1023typedef
1024 enum { TempReg=0, ArchReg=1, RealReg=2,
1025 SpillNo=3, Literal=4, Lit16=5,
1026 NoValue=6 }
1027 Tag;
1028
1029
1030/* Microinstruction opcodes. */
1031typedef
1032 enum {
1033 NOP,
1034 GET,
1035 PUT,
1036 LOAD,
1037 STORE,
1038 MOV,
1039 CMOV, /* Used for cmpxchg and cmov */
1040 WIDEN,
1041 JMP,
1042
1043 /* Read/write the %EFLAGS register into a TempReg. */
1044 GETF, PUTF,
1045
1046 ADD, ADC, AND, OR, XOR, SUB, SBB,
1047 SHL, SHR, SAR, ROL, ROR, RCL, RCR,
1048 NOT, NEG, INC, DEC, BSWAP,
1049 CC2VAL,
1050
1051 /* Not strictly needed, but useful for making better
1052 translations of address calculations. */
1053 LEA1, /* reg2 := const + reg1 */
1054 LEA2, /* reg3 := const + reg1 + reg2 * 1,2,4 or 8 */
1055
1056 /* not for translating x86 calls -- only to call helpers */
1057 CALLM_S, CALLM_E, /* Mark start and end of push/pop sequences
1058 for CALLM. */
1059 PUSH, POP, CLEAR, /* Add/remove/zap args for helpers. */
1060 CALLM, /* call to a machine-code helper */
1061
1062 /* Hack for translating string (REP-) insns. Jump to literal if
1063 TempReg/RealReg is zero. */
1064 JIFZ,
1065
1066 /* FPU ops which read/write mem or don't touch mem at all. */
1067 FPU_R,
1068 FPU_W,
1069 FPU,
1070
1071 /* Advance the simulated %eip by some small (< 128) number. */
1072 INCEIP,
1073
1074 /* uinstrs which are not needed for mere translation of x86 code,
1075 only for instrumentation of it. */
1076 LOADV,
1077 STOREV,
1078 GETV,
1079 PUTV,
1080 TESTV,
1081 SETV,
1082 /* Get/set the v-bit (and it is only one bit) for the simulated
1083 %eflags register. */
1084 GETVF,
1085 PUTVF,
1086
1087 /* Do a unary or binary tag op. Only for post-instrumented
1088 code. For TAG1, first and only arg is a TempReg, and is both
1089 arg and result reg. For TAG2, first arg is src, second is
1090 dst, in the normal way; both are TempRegs. In both cases,
1091 3rd arg is a RiCHelper with a Lit16 tag. This indicates
1092 which tag op to do. */
1093 TAG1,
1094 TAG2
1095 }
1096 Opcode;
1097
1098
1099/* Condition codes, observing the Intel encoding. CondAlways is an
1100 extra. */
1101typedef
1102 enum {
1103 CondO = 0, /* overflow */
1104 CondNO = 1, /* no overflow */
1105 CondB = 2, /* below */
1106 CondNB = 3, /* not below */
1107 CondZ = 4, /* zero */
1108 CondNZ = 5, /* not zero */
1109 CondBE = 6, /* below or equal */
1110 CondNBE = 7, /* not below or equal */
1111 CondS = 8, /* negative */
1112 ConsNS = 9, /* not negative */
1113 CondP = 10, /* parity even */
1114 CondNP = 11, /* not parity even */
1115 CondL = 12, /* jump less */
1116 CondNL = 13, /* not less */
1117 CondLE = 14, /* less or equal */
1118 CondNLE = 15, /* not less or equal */
1119 CondAlways = 16 /* Jump always */
1120 }
1121 Condcode;
1122
1123
sewardj2e93c502002-04-12 11:12:52 +00001124/* Descriptions of additional properties of *unconditional* jumps. */
1125typedef
1126 enum {
1127 JmpBoring=0, /* boring unconditional jump */
1128 JmpCall=1, /* jump due to an x86 call insn */
1129 JmpRet=2, /* jump due to an x86 ret insn */
1130 JmpSyscall=3, /* do a system call, then jump */
1131 JmpClientReq=4 /* do a client request, then jump */
1132 }
1133 JmpKind;
1134
1135
sewardjde4a1d02002-03-22 01:27:54 +00001136/* Flags. User-level code can only read/write O(verflow), S(ign),
1137 Z(ero), A(ux-carry), C(arry), P(arity), and may also write
1138 D(irection). That's a total of 7 flags. A FlagSet is a bitset,
1139 thusly:
1140 76543210
1141 DOSZACP
1142 and bit 7 must always be zero since it is unused.
1143*/
1144typedef UChar FlagSet;
1145
1146#define FlagD (1<<6)
1147#define FlagO (1<<5)
1148#define FlagS (1<<4)
1149#define FlagZ (1<<3)
1150#define FlagA (1<<2)
1151#define FlagC (1<<1)
1152#define FlagP (1<<0)
1153
1154#define FlagsOSZACP (FlagO | FlagS | FlagZ | FlagA | FlagC | FlagP)
1155#define FlagsOSZAP (FlagO | FlagS | FlagZ | FlagA | FlagP)
1156#define FlagsOSZCP (FlagO | FlagS | FlagZ | FlagC | FlagP)
1157#define FlagsOSACP (FlagO | FlagS | FlagA | FlagC | FlagP)
1158#define FlagsSZACP ( FlagS | FlagZ | FlagA | FlagC | FlagP)
1159#define FlagsSZAP ( FlagS | FlagZ | FlagA | FlagP)
sewardj4a7456e2002-03-24 13:52:19 +00001160#define FlagsZCP ( FlagZ | FlagC | FlagP)
sewardjde4a1d02002-03-22 01:27:54 +00001161#define FlagsOC (FlagO | FlagC )
sewardj4d0ab1f2002-03-24 10:00:09 +00001162#define FlagsAC ( FlagA | FlagC )
sewardjde4a1d02002-03-22 01:27:54 +00001163
1164#define FlagsALL (FlagsOSZACP | FlagD)
1165#define FlagsEmpty (FlagSet)0
1166
1167#define VG_IS_FLAG_SUBSET(set1,set2) \
1168 (( ((FlagSet)set1) & ((FlagSet)set2) ) == ((FlagSet)set1) )
1169
1170#define VG_UNION_FLAG_SETS(set1,set2) \
1171 ( ((FlagSet)set1) | ((FlagSet)set2) )
1172
1173
1174
1175/* A Micro (u)-instruction. */
1176typedef
1177 struct {
1178 /* word 1 */
1179 UInt lit32; /* 32-bit literal */
1180
1181 /* word 2 */
1182 UShort val1; /* first operand */
1183 UShort val2; /* second operand */
1184
1185 /* word 3 */
1186 UShort val3; /* third operand */
1187 UChar opcode; /* opcode */
1188 UChar size; /* data transfer size */
1189
1190 /* word 4 */
1191 FlagSet flags_r; /* :: FlagSet */
1192 FlagSet flags_w; /* :: FlagSet */
1193 UChar tag1:4; /* first operand tag */
1194 UChar tag2:4; /* second operand tag */
1195 UChar tag3:4; /* third operand tag */
1196 UChar extra4b:4; /* Spare field, used by WIDEN for src
1197 -size, and by LEA2 for scale
njn4f9c9342002-04-29 16:03:24 +00001198 (1,2,4 or 8), and by unconditional JMPs for
1199 orig x86 instr size if --cachesim=yes */
1200
sewardjde4a1d02002-03-22 01:27:54 +00001201
1202 /* word 5 */
1203 UChar cond; /* condition, for jumps */
1204 Bool smc_check:1; /* do a smc test, if writes memory. */
1205 Bool signed_widen:1; /* signed or unsigned WIDEN ? */
sewardj2e93c502002-04-12 11:12:52 +00001206 JmpKind jmpkind:3; /* additional properties of unconditional JMP */
sewardjde4a1d02002-03-22 01:27:54 +00001207 }
1208 UInstr;
1209
1210
1211/* Expandable arrays of uinstrs. */
1212typedef
1213 struct {
1214 Int used;
1215 Int size;
1216 UInstr* instrs;
1217 Int nextTemp;
1218 }
1219 UCodeBlock;
1220
1221/* Refer to `the last instruction stuffed in', including as an
1222 lvalue. */
1223#define LAST_UINSTR(cb) (cb)->instrs[(cb)->used-1]
1224
1225/* An invalid temporary number :-) */
1226#define INVALID_TEMPREG 999999999
1227
1228
1229/* ---------------------------------------------------------------------
1230 Exports of vg_demangle.c
1231 ------------------------------------------------------------------ */
1232
1233extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
1234
1235
1236/* ---------------------------------------------------------------------
1237 Exports of vg_from_ucode.c
1238 ------------------------------------------------------------------ */
1239
1240extern UChar* VG_(emit_code) ( UCodeBlock* cb, Int* nbytes );
1241
1242
1243/* ---------------------------------------------------------------------
1244 Exports of vg_to_ucode.c
1245 ------------------------------------------------------------------ */
1246
1247extern Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 );
1248extern Char* VG_(nameOfIntReg) ( Int size, Int reg );
1249extern Char VG_(nameOfIntSize) ( Int size );
1250extern UInt VG_(extend_s_8to32) ( UInt x );
1251extern Int VG_(getNewTemp) ( UCodeBlock* cb );
1252extern Int VG_(getNewShadow) ( UCodeBlock* cb );
1253
1254#define SHADOW(tempreg) ((tempreg)+1)
1255
1256
1257/* ---------------------------------------------------------------------
1258 Exports of vg_translate.c
1259 ------------------------------------------------------------------ */
1260
sewardj1e8cdc92002-04-18 11:37:52 +00001261extern void VG_(translate) ( ThreadState* tst,
1262 Addr orig_addr,
sewardjde4a1d02002-03-22 01:27:54 +00001263 UInt* orig_size,
1264 Addr* trans_addr,
1265 UInt* trans_size );
1266
1267extern void VG_(emptyUInstr) ( UInstr* u );
1268extern void VG_(newUInstr0) ( UCodeBlock* cb, Opcode opcode, Int sz );
1269extern void VG_(newUInstr1) ( UCodeBlock* cb, Opcode opcode, Int sz,
1270 Tag tag1, UInt val1 );
1271extern void VG_(newUInstr2) ( UCodeBlock* cb, Opcode opcode, Int sz,
1272 Tag tag1, UInt val1,
1273 Tag tag2, UInt val2 );
1274extern void VG_(newUInstr3) ( UCodeBlock* cb, Opcode opcode, Int sz,
1275 Tag tag1, UInt val1,
1276 Tag tag2, UInt val2,
1277 Tag tag3, UInt val3 );
1278extern void VG_(setFlagRW) ( UInstr* u,
1279 FlagSet fr, FlagSet fw );
1280
1281extern void VG_(setLiteralField) ( UCodeBlock* cb, UInt lit32 );
1282extern Bool VG_(anyFlagUse) ( UInstr* u );
1283
1284
1285
1286extern void VG_(ppUInstr) ( Int instrNo, UInstr* u );
1287extern void VG_(ppUCodeBlock) ( UCodeBlock* cb, Char* title );
1288
njn4f9c9342002-04-29 16:03:24 +00001289extern UCodeBlock* VG_(allocCodeBlock) ( void );
1290extern void VG_(freeCodeBlock) ( UCodeBlock* cb );
1291extern void VG_(copyUInstr) ( UCodeBlock* cb, UInstr* instr );
1292
sewardjde4a1d02002-03-22 01:27:54 +00001293extern Char* VG_(nameCondcode) ( Condcode cond );
1294extern Bool VG_(saneUInstr) ( Bool beforeRA, UInstr* u );
1295extern Bool VG_(saneUCodeBlock) ( UCodeBlock* cb );
1296extern Char* VG_(nameUOpcode) ( Bool upper, Opcode opc );
1297extern Int VG_(rankToRealRegNo) ( Int rank );
1298
1299extern void* VG_(jitmalloc) ( Int nbytes );
1300extern void VG_(jitfree) ( void* ptr );
1301
1302
1303/* ---------------------------------------------------------------------
1304 Exports of vg_execontext.c.
1305 ------------------------------------------------------------------ */
1306
1307/* Records the PC and a bit of the call chain. The first 4 %eip
1308 values are used in comparisons do remove duplicate errors, and for
1309 comparing against suppression specifications. The rest are purely
1310 informational (but often important). */
1311
1312typedef
1313 struct _ExeContextRec {
1314 struct _ExeContextRec * next;
1315 /* The size of this array is VG_(clo_backtrace_size); at least
1316 2, at most VG_DEEPEST_BACKTRACE. [0] is the current %eip,
1317 [1] is its caller, [2] is the caller of [1], etc. */
1318 Addr eips[0];
1319 }
1320 ExeContext;
1321
1322
1323/* Initialise the ExeContext storage mechanism. */
1324extern void VG_(init_ExeContext_storage) ( void );
1325
1326/* Print stats (informational only). */
1327extern void VG_(show_ExeContext_stats) ( void );
1328
1329
1330/* Take a snapshot of the client's stack. Search our collection of
1331 ExeContexts to see if we already have it, and if not, allocate a
1332 new one. Either way, return a pointer to the context. */
sewardj8c824512002-04-14 04:16:48 +00001333extern ExeContext* VG_(get_ExeContext) ( Bool skip_top_frame,
1334 Addr eip, Addr ebp );
sewardjde4a1d02002-03-22 01:27:54 +00001335
1336/* Print an ExeContext. */
1337extern void VG_(pp_ExeContext) ( ExeContext* );
1338
1339/* Compare two ExeContexts, just comparing the top two callers. */
1340extern Bool VG_(eq_ExeContext_top2) ( ExeContext* e1, ExeContext* e2 );
1341
1342/* Compare two ExeContexts, just comparing the top four callers. */
1343extern Bool VG_(eq_ExeContext_top4) ( ExeContext* e1, ExeContext* e2 );
1344
1345/* Compare two ExeContexts, comparing all callers. */
1346extern Bool VG_(eq_ExeContext_all) ( ExeContext* e1, ExeContext* e2 );
1347
1348
1349
1350/* ---------------------------------------------------------------------
1351 Exports of vg_errcontext.c.
1352 ------------------------------------------------------------------ */
1353
1354extern void VG_(load_suppressions) ( void );
1355extern void VG_(show_all_errors) ( void );
1356extern void VG_(record_value_error) ( Int size );
sewardjaabd5ad2002-04-19 15:43:37 +00001357extern void VG_(record_free_error) ( ThreadState* tst, Addr a );
1358extern void VG_(record_freemismatch_error) ( ThreadState* tst, Addr a );
sewardjde4a1d02002-03-22 01:27:54 +00001359extern void VG_(record_address_error) ( Addr a, Int size,
1360 Bool isWrite );
sewardj1e8cdc92002-04-18 11:37:52 +00001361
1362extern void VG_(record_jump_error) ( ThreadState* tst, Addr a );
sewardj8c824512002-04-14 04:16:48 +00001363
1364extern void VG_(record_param_err) ( ThreadState* tst,
1365 Addr a,
sewardjde4a1d02002-03-22 01:27:54 +00001366 Bool isWriteLack,
1367 Char* msg );
sewardj8c824512002-04-14 04:16:48 +00001368extern void VG_(record_user_err) ( ThreadState* tst,
1369 Addr a, Bool isWriteLack );
sewardj4dced352002-06-04 22:54:20 +00001370extern void VG_(record_pthread_err) ( ThreadId tid, Char* msg );
1371
sewardjde4a1d02002-03-22 01:27:54 +00001372
1373
1374/* The classification of a faulting address. */
1375typedef
sewardjb581a132002-05-08 00:32:50 +00001376 enum { Undescribed, /* as-yet unclassified */
1377 Stack,
1378 Unknown, /* classification yielded nothing useful */
1379 Freed, Mallocd,
1380 UserG, UserS }
sewardjde4a1d02002-03-22 01:27:54 +00001381 AddrKind;
1382
1383/* Records info about a faulting address. */
1384typedef
1385 struct {
1386 /* ALL */
1387 AddrKind akind;
1388 /* Freed, Mallocd */
1389 Int blksize;
1390 /* Freed, Mallocd */
1391 Int rwoffset;
1392 /* Freed, Mallocd */
1393 ExeContext* lastchange;
sewardj1e8cdc92002-04-18 11:37:52 +00001394 /* Stack */
1395 ThreadId stack_tid;
sewardjb581a132002-05-08 00:32:50 +00001396 /* True if is just-below %esp -- could be a gcc bug. */
1397 Bool maybe_gcc;
sewardjde4a1d02002-03-22 01:27:54 +00001398 }
1399 AddrInfo;
1400
1401
1402/* ---------------------------------------------------------------------
1403 Exports of vg_clientperms.c
1404 ------------------------------------------------------------------ */
1405
1406extern Bool VG_(client_perm_maybe_describe)( Addr a, AddrInfo* ai );
1407
sewardj8c824512002-04-14 04:16:48 +00001408extern UInt VG_(handle_client_request) ( ThreadState* tst, UInt* arg_block );
sewardjde4a1d02002-03-22 01:27:54 +00001409
1410extern void VG_(delete_client_stack_blocks_following_ESP_change) ( void );
1411
1412extern void VG_(show_client_block_stats) ( void );
1413
1414
1415/* ---------------------------------------------------------------------
1416 Exports of vg_procselfmaps.c
1417 ------------------------------------------------------------------ */
1418
1419extern
1420void VG_(read_procselfmaps) (
1421 void (*record_mapping)( Addr, UInt, Char, Char, Char, UInt, UChar* )
1422);
1423
1424
1425/* ---------------------------------------------------------------------
1426 Exports of vg_symtab2.c
1427 ------------------------------------------------------------------ */
1428
1429/* We assume the executable is loaded here ... can't really find
1430 out. There is a hacky sanity check in vg_init_memory_audit()
1431 which should trip up most stupidities.
1432*/
1433#define VG_ASSUMED_EXE_BASE (Addr)0x8048000
1434
1435extern void VG_(read_symbols) ( void );
1436extern void VG_(mini_stack_dump) ( ExeContext* ec );
1437extern void VG_(what_obj_and_fun_is_this)
1438 ( Addr a,
1439 Char* obj_buf, Int n_obj_buf,
1440 Char* fun_buf, Int n_fun_buf );
njn4f9c9342002-04-29 16:03:24 +00001441extern Bool VG_(what_line_is_this) ( Addr a,
1442 UChar* filename, Int n_filename,
1443 UInt* lineno );
1444extern Bool VG_(what_fn_is_this) ( Bool no_demangle, Addr a,
1445 Char* fn_name, Int n_fn_name);
sewardjde4a1d02002-03-22 01:27:54 +00001446
sewardj18d75132002-05-16 11:06:21 +00001447extern Bool VG_(symtab_notify_munmap) ( Addr start, UInt length );
sewardjde4a1d02002-03-22 01:27:54 +00001448
1449
1450/* ---------------------------------------------------------------------
1451 Exports of vg_clientmalloc.c
1452 ------------------------------------------------------------------ */
1453
sewardjde4a1d02002-03-22 01:27:54 +00001454typedef
1455 enum {
1456 Vg_AllocMalloc = 0,
sewardj2e93c502002-04-12 11:12:52 +00001457 Vg_AllocNew = 1,
sewardjde4a1d02002-03-22 01:27:54 +00001458 Vg_AllocNewVec = 2
1459 }
1460 VgAllocKind;
1461
1462/* Description of a malloc'd chunk. */
1463typedef
1464 struct _ShadowChunk {
1465 struct _ShadowChunk* next;
1466 ExeContext* where; /* where malloc'd/free'd */
1467 UInt size : 30; /* size requested. */
1468 VgAllocKind allockind : 2; /* which wrapper did the allocation */
1469 Addr data; /* ptr to actual block. */
1470 }
1471 ShadowChunk;
1472
1473extern void VG_(clientmalloc_done) ( void );
1474extern void VG_(describe_addr) ( Addr a, AddrInfo* ai );
1475extern ShadowChunk** VG_(get_malloc_shadows) ( /*OUT*/ UInt* n_shadows );
1476
sewardj2e93c502002-04-12 11:12:52 +00001477/* These are called from the scheduler, when it intercepts a user
1478 request. */
sewardj8c824512002-04-14 04:16:48 +00001479extern void* VG_(client_malloc) ( ThreadState* tst,
1480 UInt size, VgAllocKind kind );
1481extern void* VG_(client_memalign) ( ThreadState* tst,
1482 UInt align, UInt size );
1483extern void VG_(client_free) ( ThreadState* tst,
1484 void* ptrV, VgAllocKind kind );
1485extern void* VG_(client_calloc) ( ThreadState* tst,
1486 UInt nmemb, UInt size1 );
1487extern void* VG_(client_realloc) ( ThreadState* tst,
1488 void* ptrV, UInt size_new );
sewardjde4a1d02002-03-22 01:27:54 +00001489
1490
1491/* ---------------------------------------------------------------------
1492 Exports of vg_main.c
1493 ------------------------------------------------------------------ */
1494
sewardjde4a1d02002-03-22 01:27:54 +00001495/* A structure used as an intermediary when passing the simulated
1496 CPU's state to some assembly fragments, particularly system calls.
1497 Stuff is copied from baseBlock to here, the assembly magic runs,
1498 and then the inverse copy is done. */
1499
1500extern UInt VG_(m_state_static) [8 /* int regs, in Intel order */
1501 + 1 /* %eflags */
1502 + 1 /* %eip */
1503 + VG_SIZE_OF_FPUSTATE_W /* FPU state */
1504 ];
1505
1506/* Handy fns for doing the copy back and forth. */
1507extern void VG_(copy_baseBlock_to_m_state_static) ( void );
1508extern void VG_(copy_m_state_static_to_baseBlock) ( void );
1509
sewardjde4a1d02002-03-22 01:27:54 +00001510/* Called when some unhandleable client behaviour is detected.
1511 Prints a msg and aborts. */
1512extern void VG_(unimplemented) ( Char* msg );
sewardjcfc39b22002-05-08 01:58:18 +00001513extern void VG_(nvidia_moan) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001514
1515/* The stack on which Valgrind runs. We can't use the same stack as the
1516 simulatee -- that's an important design decision. */
1517extern UInt VG_(stack)[10000];
1518
1519/* Similarly, we have to ask for signals to be delivered on an
1520 alternative stack, since it is possible, although unlikely, that
1521 we'll have to run client code from inside the Valgrind-installed
1522 signal handler. If this happens it will be done by
1523 vg_deliver_signal_immediately(). */
1524extern UInt VG_(sigstack)[10000];
1525
sewardjde4a1d02002-03-22 01:27:54 +00001526/* Holds client's %esp at the point we gained control. From this the
1527 client's argc, argv and envp are deduced. */
1528extern Addr VG_(esp_at_startup);
1529extern Int VG_(client_argc);
1530extern Char** VG_(client_argv);
1531extern Char** VG_(client_envp);
1532
1533/* Remove valgrind.so from a LD_PRELOAD=... string so child processes
sewardj3e1eb1f2002-05-18 13:14:17 +00001534 don't get traced into. Also mess up $libdir/valgrind so that our
1535 libpthread.so disappears from view. */
1536void VG_(mash_LD_PRELOAD_and_LD_LIBRARY_PATH) ( Char* ld_preload_str,
1537 Char* ld_library_path_str );
sewardjde4a1d02002-03-22 01:27:54 +00001538
1539/* Something of a function looking for a home ... start up GDB. This
1540 is called from VG_(swizzle_esp_then_start_GDB) and so runs on the
1541 *client's* stack. This is necessary to give GDB the illusion that
1542 the client program really was running on the real cpu. */
1543extern void VG_(start_GDB_whilst_on_client_stack) ( void );
1544
1545/* Spew out vast amounts of junk during JITting? */
1546extern Bool VG_(disassemble);
1547
1548/* 64-bit counter for the number of basic blocks done. */
1549extern ULong VG_(bbs_done);
1550/* 64-bit counter for the number of bbs to go before a debug exit. */
1551extern ULong VG_(bbs_to_go);
1552
1553/* Counts downwards in vg_run_innerloop. */
1554extern UInt VG_(dispatch_ctr);
1555
sewardjde4a1d02002-03-22 01:27:54 +00001556/* Is the client running on the simulated CPU or the real one? */
1557extern Bool VG_(running_on_simd_CPU); /* Initially False */
1558
1559/* The current LRU epoch. */
1560extern UInt VG_(current_epoch);
1561
sewardj7e87e382002-05-03 19:09:05 +00001562/* This is the ThreadId of the last thread the scheduler ran. */
1563extern ThreadId VG_(last_run_tid);
1564
sewardjde4a1d02002-03-22 01:27:54 +00001565
1566/* --- Counters, for informational purposes only. --- */
1567
1568/* Number of lookups which miss the fast tt helper. */
1569extern UInt VG_(tt_fast_misses);
1570
1571/* Counts for LRU informational messages. */
1572
1573/* Number and total o/t size of new translations this epoch. */
1574extern UInt VG_(this_epoch_in_count);
1575extern UInt VG_(this_epoch_in_osize);
1576extern UInt VG_(this_epoch_in_tsize);
1577/* Number and total o/t size of discarded translations this epoch. */
1578extern UInt VG_(this_epoch_out_count);
1579extern UInt VG_(this_epoch_out_osize);
1580extern UInt VG_(this_epoch_out_tsize);
1581/* Number and total o/t size of translations overall. */
1582extern UInt VG_(overall_in_count);
1583extern UInt VG_(overall_in_osize);
1584extern UInt VG_(overall_in_tsize);
1585/* Number and total o/t size of discards overall. */
1586extern UInt VG_(overall_out_count);
1587extern UInt VG_(overall_out_osize);
1588extern UInt VG_(overall_out_tsize);
1589
1590/* The number of LRU-clearings of TT/TC. */
1591extern UInt VG_(number_of_lrus);
1592
1593/* Counts pertaining to the register allocator. */
1594
1595/* total number of uinstrs input to reg-alloc */
1596extern UInt VG_(uinstrs_prealloc);
1597
1598/* total number of uinstrs added due to spill code */
1599extern UInt VG_(uinstrs_spill);
1600
1601/* number of bbs requiring spill code */
1602extern UInt VG_(translations_needing_spill);
1603
1604/* total of register ranks over all translations */
1605extern UInt VG_(total_reg_rank);
1606
sewardjde4a1d02002-03-22 01:27:54 +00001607/* Counts pertaining to internal sanity checking. */
1608extern UInt VG_(sanity_fast_count);
1609extern UInt VG_(sanity_slow_count);
1610
sewardj2e93c502002-04-12 11:12:52 +00001611/* Counts pertaining to the scheduler. */
1612extern UInt VG_(num_scheduling_events_MINOR);
1613extern UInt VG_(num_scheduling_events_MAJOR);
1614
sewardjde4a1d02002-03-22 01:27:54 +00001615
1616/* ---------------------------------------------------------------------
1617 Exports of vg_memory.c
1618 ------------------------------------------------------------------ */
1619
1620extern void VGM_(init_memory_audit) ( void );
1621extern Addr VGM_(curr_dataseg_end);
1622extern void VG_(show_reg_tags) ( void );
1623extern void VG_(detect_memory_leaks) ( void );
1624extern void VG_(done_prof_mem) ( void );
1625
1626/* Set permissions for an address range. Not speed-critical. */
1627extern void VGM_(make_noaccess) ( Addr a, UInt len );
1628extern void VGM_(make_writable) ( Addr a, UInt len );
1629extern void VGM_(make_readable) ( Addr a, UInt len );
1630/* Use with care! (read: use for shmat only) */
1631extern void VGM_(make_readwritable) ( Addr a, UInt len );
1632extern void VGM_(copy_address_range_perms) ( Addr src, Addr dst,
1633 UInt len );
1634
1635/* Check permissions for an address range. Not speed-critical. */
1636extern Bool VGM_(check_writable) ( Addr a, UInt len, Addr* bad_addr );
1637extern Bool VGM_(check_readable) ( Addr a, UInt len, Addr* bad_addr );
1638extern Bool VGM_(check_readable_asciiz) ( Addr a, Addr* bad_addr );
1639
sewardj0c3b53f2002-05-01 01:58:35 +00001640/* Sanity checks which may be done at any time. The scheduler decides
1641 when. */
1642extern void VG_(do_sanity_checks) ( Bool force_expensive );
sewardjde4a1d02002-03-22 01:27:54 +00001643/* Very cheap ... */
1644extern Bool VG_(first_and_last_secondaries_look_plausible) ( void );
1645
1646/* These functions are called from generated code. */
1647extern void VG_(helperc_STOREV4) ( UInt, Addr );
1648extern void VG_(helperc_STOREV2) ( UInt, Addr );
1649extern void VG_(helperc_STOREV1) ( UInt, Addr );
1650
1651extern UInt VG_(helperc_LOADV1) ( Addr );
1652extern UInt VG_(helperc_LOADV2) ( Addr );
1653extern UInt VG_(helperc_LOADV4) ( Addr );
1654
1655extern void VGM_(handle_esp_assignment) ( Addr new_espA );
1656extern void VGM_(fpu_write_check) ( Addr addr, Int size );
1657extern void VGM_(fpu_read_check) ( Addr addr, Int size );
1658
1659/* Safely (avoiding SIGSEGV / SIGBUS) scan the entire valid address
1660 space and pass the addresses and values of all addressible,
1661 defined, aligned words to notify_word. This is the basis for the
1662 leak detector. Returns the number of calls made to notify_word. */
1663UInt VG_(scan_all_valid_memory) ( void (*notify_word)( Addr, UInt ) );
1664
1665/* Is this address within some small distance below %ESP? Used only
1666 for the --workaround-gcc296-bugs kludge. */
sewardj8c824512002-04-14 04:16:48 +00001667extern Bool VG_(is_just_below_ESP)( Addr esp, Addr aa );
sewardjde4a1d02002-03-22 01:27:54 +00001668
1669/* Nasty kludgery to deal with applications which switch stacks,
1670 like netscape. */
sewardjde4a1d02002-03-22 01:27:54 +00001671#define VG_PLAUSIBLE_STACK_SIZE 8000000
1672
sewardjc3bd5f52002-05-01 03:24:23 +00001673/* Needed by the pthreads implementation. */
1674#define VGM_WORD_VALID 0
1675#define VGM_WORD_INVALID 0xFFFFFFFF
1676
sewardjde4a1d02002-03-22 01:27:54 +00001677
1678/* ---------------------------------------------------------------------
1679 Exports of vg_syscall_mem.c
1680 ------------------------------------------------------------------ */
1681
sewardj2e93c502002-04-12 11:12:52 +00001682extern void VG_(perform_assumed_nonblocking_syscall) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +00001683
sewardj2e93c502002-04-12 11:12:52 +00001684extern void VG_(check_known_blocking_syscall) ( ThreadId tid,
1685 Int syscallno,
1686 Int* /*IN*/ res );
sewardjde4a1d02002-03-22 01:27:54 +00001687
1688extern Bool VG_(is_kerror) ( Int res );
1689
sewardj018f7622002-05-15 21:13:39 +00001690#define KERNEL_DO_SYSCALL(thread_id, result_lvalue) \
1691 VG_(load_thread_state)(thread_id); \
1692 VG_(copy_baseBlock_to_m_state_static)(); \
1693 VG_(do_syscall)(); \
1694 VG_(copy_m_state_static_to_baseBlock)(); \
1695 VG_(save_thread_state)(thread_id); \
1696 VG_(threads)[thread_id].sh_eax = VGM_WORD_VALID; \
1697 result_lvalue = VG_(threads)[thread_id].m_eax;
sewardjde4a1d02002-03-22 01:27:54 +00001698
1699
1700/* ---------------------------------------------------------------------
1701 Exports of vg_transtab.c
1702 ------------------------------------------------------------------ */
1703
1704/* An entry in the translation table (TT). */
1705typedef
1706 struct {
1707 /* +0 */ Addr orig_addr;
1708 /* +4 */ Addr trans_addr;
1709 /* +8 */ UInt mru_epoch;
1710 /* +12 */ UShort orig_size;
1711 /* +14 */ UShort trans_size;
1712 }
1713 TTEntry;
1714
1715/* The number of basic blocks in an epoch (one age-step). */
1716#define VG_BBS_PER_EPOCH 20000
1717
1718extern void VG_(get_tt_tc_used) ( UInt* tt_used, UInt* tc_used );
1719extern void VG_(maybe_do_lru_pass) ( void );
1720extern void VG_(flush_transtab) ( void );
1721extern Addr VG_(copy_to_transcache) ( Addr trans_addr, Int trans_size );
1722extern void VG_(add_to_trans_tab) ( TTEntry* tte );
sewardj18d75132002-05-16 11:06:21 +00001723extern void VG_(invalidate_translations) ( Addr start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +00001724
sewardj18d75132002-05-16 11:06:21 +00001725extern void VG_(init_tt_tc) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001726
1727extern void VG_(sanity_check_tc_tt) ( void );
1728extern Addr VG_(search_transtab) ( Addr original_addr );
1729
1730extern void VG_(invalidate_tt_fast)( void );
1731
1732
1733/* ---------------------------------------------------------------------
1734 Exports of vg_vtagops.c
1735 ------------------------------------------------------------------ */
1736
1737/* Lists the names of value-tag operations used in instrumented
1738 code. These are the third argument to TAG1 and TAG2 uinsns. */
1739
1740typedef
1741 enum {
1742 /* Unary. */
1743 VgT_PCast40, VgT_PCast20, VgT_PCast10,
1744 VgT_PCast01, VgT_PCast02, VgT_PCast04,
1745
1746 VgT_PCast14, VgT_PCast12, VgT_PCast11,
1747
1748 VgT_Left4, VgT_Left2, VgT_Left1,
1749
1750 VgT_SWiden14, VgT_SWiden24, VgT_SWiden12,
1751 VgT_ZWiden14, VgT_ZWiden24, VgT_ZWiden12,
1752
1753 /* Binary; 1st is rd; 2nd is rd+wr */
1754 VgT_UifU4, VgT_UifU2, VgT_UifU1, VgT_UifU0,
1755 VgT_DifD4, VgT_DifD2, VgT_DifD1,
1756
1757 VgT_ImproveAND4_TQ, VgT_ImproveAND2_TQ, VgT_ImproveAND1_TQ,
1758 VgT_ImproveOR4_TQ, VgT_ImproveOR2_TQ, VgT_ImproveOR1_TQ,
1759 VgT_DebugFn
1760 }
1761 VgTagOp;
1762
1763extern Char* VG_(nameOfTagOp) ( VgTagOp );
1764extern UInt VG_(DebugFn) ( UInt a1, UInt a2 );
1765
1766
1767/* ---------------------------------------------------------------------
1768 Exports of vg_syscall.S
1769 ------------------------------------------------------------------ */
1770
1771extern void VG_(do_syscall) ( void );
1772
1773
1774/* ---------------------------------------------------------------------
1775 Exports of vg_startup.S
1776 ------------------------------------------------------------------ */
1777
sewardjde4a1d02002-03-22 01:27:54 +00001778extern void VG_(switch_to_real_CPU) ( void );
1779
sewardj35805422002-04-21 13:05:34 +00001780extern void VG_(swizzle_esp_then_start_GDB) ( Addr m_eip_at_error,
1781 Addr m_esp_at_error,
1782 Addr m_ebp_at_error );
sewardjde4a1d02002-03-22 01:27:54 +00001783
1784
1785/* ---------------------------------------------------------------------
1786 Exports of vg_dispatch.S
1787 ------------------------------------------------------------------ */
1788
sewardj2e93c502002-04-12 11:12:52 +00001789/* Run a thread for a (very short) while, until some event happens
1790 which means we need to defer to the scheduler. */
1791extern UInt VG_(run_innerloop) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001792
1793
1794/* ---------------------------------------------------------------------
1795 Exports of vg_helpers.S
1796 ------------------------------------------------------------------ */
1797
sewardjde4a1d02002-03-22 01:27:54 +00001798/* Mul, div, etc, -- we don't codegen these directly. */
1799extern void VG_(helper_idiv_64_32);
1800extern void VG_(helper_div_64_32);
1801extern void VG_(helper_idiv_32_16);
1802extern void VG_(helper_div_32_16);
1803extern void VG_(helper_idiv_16_8);
1804extern void VG_(helper_div_16_8);
1805
1806extern void VG_(helper_imul_32_64);
1807extern void VG_(helper_mul_32_64);
1808extern void VG_(helper_imul_16_32);
1809extern void VG_(helper_mul_16_32);
1810extern void VG_(helper_imul_8_16);
1811extern void VG_(helper_mul_8_16);
1812
1813extern void VG_(helper_CLD);
1814extern void VG_(helper_STD);
1815extern void VG_(helper_get_dirflag);
1816
sewardj7d78e782002-06-02 00:04:00 +00001817extern void VG_(helper_CLC);
1818extern void VG_(helper_STC);
1819
sewardjde4a1d02002-03-22 01:27:54 +00001820extern void VG_(helper_shldl);
1821extern void VG_(helper_shldw);
1822extern void VG_(helper_shrdl);
1823extern void VG_(helper_shrdw);
1824
1825extern void VG_(helper_RDTSC);
1826extern void VG_(helper_CPUID);
1827
sewardjde4a1d02002-03-22 01:27:54 +00001828extern void VG_(helper_bsf);
1829extern void VG_(helper_bsr);
1830
1831extern void VG_(helper_fstsw_AX);
1832extern void VG_(helper_SAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001833extern void VG_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001834extern void VG_(helper_DAA);
sewardjde4a1d02002-03-22 01:27:54 +00001835
1836extern void VG_(helper_value_check4_fail);
1837extern void VG_(helper_value_check2_fail);
1838extern void VG_(helper_value_check1_fail);
1839extern void VG_(helper_value_check0_fail);
1840
sewardj20917d82002-05-28 01:36:45 +00001841/* NOT A FUNCTION; this is a bogus RETURN ADDRESS. */
sewardj54cacf02002-04-12 23:24:59 +00001842extern void VG_(signalreturn_bogusRA)( void );
sewardj20917d82002-05-28 01:36:45 +00001843
sewardj54cacf02002-04-12 23:24:59 +00001844
njn4f9c9342002-04-29 16:03:24 +00001845/* ---------------------------------------------------------------------
1846 Exports of vg_cachesim.c
1847 ------------------------------------------------------------------ */
1848
sewardj07133bf2002-06-13 10:25:56 +00001849extern Int VG_(log2) ( Int x );
njn7cf0bd32002-06-08 13:36:03 +00001850
sewardj07133bf2002-06-13 10:25:56 +00001851extern UCodeBlock* VG_(cachesim_instrument) ( UCodeBlock* cb_in,
1852 Addr orig_addr );
njn4f9c9342002-04-29 16:03:24 +00001853
1854typedef struct _iCC iCC;
1855typedef struct _idCC idCC;
1856
njn7cf0bd32002-06-08 13:36:03 +00001857extern void VG_(init_cachesim) ( void );
1858extern void VG_(do_cachesim_results)( Int client_argc, Char** client_argv );
njn4f9c9342002-04-29 16:03:24 +00001859
1860extern void VG_(cachesim_log_non_mem_instr)( iCC* cc );
1861extern void VG_(cachesim_log_mem_instr) ( idCC* cc, Addr data_addr );
sewardjde4a1d02002-03-22 01:27:54 +00001862
sewardj18d75132002-05-16 11:06:21 +00001863extern void VG_(cachesim_notify_discard) ( TTEntry* tte );
1864
1865
sewardjde4a1d02002-03-22 01:27:54 +00001866/* ---------------------------------------------------------------------
1867 The state of the simulated CPU.
1868 ------------------------------------------------------------------ */
1869
1870/* This is the Intel register encoding. */
1871#define R_EAX 0
1872#define R_ECX 1
1873#define R_EDX 2
1874#define R_EBX 3
1875#define R_ESP 4
1876#define R_EBP 5
1877#define R_ESI 6
1878#define R_EDI 7
1879
1880#define R_AL (0+R_EAX)
1881#define R_CL (0+R_ECX)
1882#define R_DL (0+R_EDX)
1883#define R_BL (0+R_EBX)
1884#define R_AH (4+R_EAX)
1885#define R_CH (4+R_ECX)
1886#define R_DH (4+R_EDX)
1887#define R_BH (4+R_EBX)
1888
1889
1890/* ---------------------------------------------------------------------
1891 Offsets into baseBlock for everything which needs to referred to
1892 from generated code. The order of these decls does not imply
1893 what the order of the actual offsets is. The latter is important
1894 and is set up in vg_main.c.
1895 ------------------------------------------------------------------ */
1896
1897/* An array of words. In generated code, %ebp always points to the
1898 start of this array. Useful stuff, like the simulated CPU state,
1899 and the addresses of helper functions, can then be found by
1900 indexing off %ebp. The following declares variables which, at
1901 startup time, are given values denoting offsets into baseBlock.
1902 These offsets are in *words* from the start of baseBlock. */
1903
1904#define VG_BASEBLOCK_WORDS 200
1905
1906extern UInt VG_(baseBlock)[VG_BASEBLOCK_WORDS];
1907
1908
1909/* -----------------------------------------------------
1910 Read-write parts of baseBlock.
1911 -------------------------------------------------- */
1912
1913/* State of the simulated CPU. */
1914extern Int VGOFF_(m_eax);
1915extern Int VGOFF_(m_ecx);
1916extern Int VGOFF_(m_edx);
1917extern Int VGOFF_(m_ebx);
1918extern Int VGOFF_(m_esp);
1919extern Int VGOFF_(m_ebp);
1920extern Int VGOFF_(m_esi);
1921extern Int VGOFF_(m_edi);
1922extern Int VGOFF_(m_eflags);
1923extern Int VGOFF_(m_fpustate);
1924extern Int VGOFF_(m_eip);
1925
1926/* Reg-alloc spill area (VG_MAX_SPILLSLOTS words long). */
1927extern Int VGOFF_(spillslots);
1928
1929/* Records the valid bits for the 8 integer regs & flags reg. */
1930extern Int VGOFF_(sh_eax);
1931extern Int VGOFF_(sh_ecx);
1932extern Int VGOFF_(sh_edx);
1933extern Int VGOFF_(sh_ebx);
1934extern Int VGOFF_(sh_esp);
1935extern Int VGOFF_(sh_ebp);
1936extern Int VGOFF_(sh_esi);
1937extern Int VGOFF_(sh_edi);
1938extern Int VGOFF_(sh_eflags);
1939
1940
1941/* -----------------------------------------------------
1942 Read-only parts of baseBlock.
1943 -------------------------------------------------- */
1944
1945/* Offsets of addresses of helper functions. A "helper" function is
1946 one which is called from generated code. */
1947
1948extern Int VGOFF_(helper_idiv_64_32);
1949extern Int VGOFF_(helper_div_64_32);
1950extern Int VGOFF_(helper_idiv_32_16);
1951extern Int VGOFF_(helper_div_32_16);
1952extern Int VGOFF_(helper_idiv_16_8);
1953extern Int VGOFF_(helper_div_16_8);
1954
1955extern Int VGOFF_(helper_imul_32_64);
1956extern Int VGOFF_(helper_mul_32_64);
1957extern Int VGOFF_(helper_imul_16_32);
1958extern Int VGOFF_(helper_mul_16_32);
1959extern Int VGOFF_(helper_imul_8_16);
1960extern Int VGOFF_(helper_mul_8_16);
1961
1962extern Int VGOFF_(helper_CLD);
1963extern Int VGOFF_(helper_STD);
1964extern Int VGOFF_(helper_get_dirflag);
1965
sewardj7d78e782002-06-02 00:04:00 +00001966extern Int VGOFF_(helper_CLC);
1967extern Int VGOFF_(helper_STC);
1968
sewardjde4a1d02002-03-22 01:27:54 +00001969extern Int VGOFF_(helper_shldl);
1970extern Int VGOFF_(helper_shldw);
1971extern Int VGOFF_(helper_shrdl);
1972extern Int VGOFF_(helper_shrdw);
1973
1974extern Int VGOFF_(helper_RDTSC);
1975extern Int VGOFF_(helper_CPUID);
1976
sewardjde4a1d02002-03-22 01:27:54 +00001977extern Int VGOFF_(helper_bsf);
1978extern Int VGOFF_(helper_bsr);
1979
1980extern Int VGOFF_(helper_fstsw_AX);
1981extern Int VGOFF_(helper_SAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001982extern Int VGOFF_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001983extern Int VGOFF_(helper_DAA);
sewardjde4a1d02002-03-22 01:27:54 +00001984
1985extern Int VGOFF_(helper_value_check4_fail);
1986extern Int VGOFF_(helper_value_check2_fail);
1987extern Int VGOFF_(helper_value_check1_fail);
1988extern Int VGOFF_(helper_value_check0_fail);
1989
sewardjde4a1d02002-03-22 01:27:54 +00001990extern Int VGOFF_(helperc_STOREV4); /* :: UInt -> Addr -> void */
1991extern Int VGOFF_(helperc_STOREV2); /* :: UInt -> Addr -> void */
1992extern Int VGOFF_(helperc_STOREV1); /* :: UInt -> Addr -> void */
1993
1994extern Int VGOFF_(helperc_LOADV4); /* :: Addr -> UInt -> void */
1995extern Int VGOFF_(helperc_LOADV2); /* :: Addr -> UInt -> void */
1996extern Int VGOFF_(helperc_LOADV1); /* :: Addr -> UInt -> void */
1997
1998extern Int VGOFF_(handle_esp_assignment); /* :: Addr -> void */
1999extern Int VGOFF_(fpu_write_check); /* :: Addr -> Int -> void */
2000extern Int VGOFF_(fpu_read_check); /* :: Addr -> Int -> void */
2001
njn4f9c9342002-04-29 16:03:24 +00002002extern Int VGOFF_(cachesim_log_non_mem_instr);
2003extern Int VGOFF_(cachesim_log_mem_instr);
sewardjde4a1d02002-03-22 01:27:54 +00002004
2005#endif /* ndef __VG_INCLUDE_H */
2006
sewardj3b2736a2002-03-24 12:18:35 +00002007
2008/* ---------------------------------------------------------------------
2009 Finally - autoconf-generated settings
2010 ------------------------------------------------------------------ */
2011
2012#include "config.h"
2013
sewardjde4a1d02002-03-22 01:27:54 +00002014/*--------------------------------------------------------------------*/
2015/*--- end vg_include.h ---*/
2016/*--------------------------------------------------------------------*/