blob: 164e896610832fd121b713716b6defa6946fcb80 [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +00003/*--- A header file for all private parts of Valgrind's core. ---*/
sewardjde4a1d02002-03-22 01:27:54 +00004/*--- Include no other! ---*/
5/*--- vg_include.h ---*/
6/*--------------------------------------------------------------------*/
7
8/*
njnc9539842002-10-02 13:26:35 +00009 This file is part of Valgrind, an extensible x86 protected-mode
10 emulator for monitoring program execution on x86-Unixes.
sewardjde4a1d02002-03-22 01:27:54 +000011
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
njn25e49d8e72002-09-23 09:36:25 +000030 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000031*/
32
33#ifndef __VG_INCLUDE_H
34#define __VG_INCLUDE_H
35
sewardjde4a1d02002-03-22 01:27:54 +000036/* ---------------------------------------------------------------------
sewardj2d94c112002-06-03 01:25:54 +000037 Where to send bug reports to.
38 ------------------------------------------------------------------ */
39
40#define VG_EMAIL_ADDR "jseward@acm.org"
41
42
43/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +000044 Build options and table sizes. You should be able to change these
45 options or sizes, recompile, and still have a working system.
46 ------------------------------------------------------------------ */
47
48#include "vg_constants.h"
49
njn25e49d8e72002-09-23 09:36:25 +000050/* All stuff visible to core and skins goes in vg_skin.h. Things visible
51 * to core but private to skins go here. */
52#include "vg_skin.h"
sewardjde4a1d02002-03-22 01:27:54 +000053
54/* Total number of spill slots available for allocation, if a TempReg
55 doesn't make it into a RealReg. Just bomb the entire system if
56 this value is too small; we don't expect it will ever get
57 particularly high. */
58#define VG_MAX_SPILLSLOTS 24
59
60
61/* Constants for the slow translation lookup cache. */
62#define VG_TRANSTAB_SLOW_BITS 11
63#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
64#define VG_TRANSTAB_SLOW_MASK ((VG_TRANSTAB_SLOW_SIZE) - 1)
65
66/* Size of a buffer used for creating messages. */
67#define M_VG_MSGBUF 10000
68
69/* Size of a smallish table used to read /proc/self/map entries. */
sewardjebc82332002-04-24 14:44:23 +000070#define M_PROCMAP_BUF 50000
sewardjde4a1d02002-03-22 01:27:54 +000071
72/* Max length of pathname to a .so/executable file. */
73#define M_VG_LIBNAMESTR 100
74
75/* Max length of a text fragment used to construct error messages. */
76#define M_VG_ERRTXT 512
77
78/* Max length of the string copied from env var VG_ARGS at startup. */
79#define M_VG_CMDLINE_STRLEN 1000
80
81/* Max number of options for Valgrind which we can handle. */
82#define M_VG_CMDLINE_OPTS 100
83
84/* After this many different unsuppressed errors have been observed,
85 be more conservative about collecting new ones. */
86#define M_VG_COLLECT_ERRORS_SLOWLY_AFTER 50
87
88/* After this many different unsuppressed errors have been observed,
89 stop collecting errors at all, and tell the user their program is
90 evidently a steaming pile of camel dung. */
sewardj1bebcbf2002-04-24 21:24:18 +000091#define M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN 300
sewardjf2537be2002-04-24 21:03:47 +000092
93/* After this many total errors have been observed, stop collecting
94 errors at all. Counterpart to M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN. */
sewardj1bebcbf2002-04-24 21:24:18 +000095#define M_VG_COLLECT_NO_ERRORS_AFTER_FOUND 30000
sewardjde4a1d02002-03-22 01:27:54 +000096
sewardjde4a1d02002-03-22 01:27:54 +000097/* The maximum number of calls we're prepared to save in a
98 backtrace. */
99#define VG_DEEPEST_BACKTRACE 50
100
101/* Number of lists in which we keep track of malloc'd but not free'd
102 blocks. Should be prime. */
103#define VG_N_MALLOCLISTS 997
104
105/* Number of lists in which we keep track of ExeContexts. Should be
106 prime. */
107#define VG_N_EC_LISTS /*997*/ 4999
108
sewardj2e93c502002-04-12 11:12:52 +0000109/* Defines the thread-scheduling timeslice, in terms of the number of
110 basic blocks we attempt to run each thread for. Smaller values
111 give finer interleaving but much increased scheduling overheads. */
sewardj4505b9e2002-05-28 11:27:31 +0000112#define VG_SCHEDULING_QUANTUM 50000
sewardj2e93c502002-04-12 11:12:52 +0000113
sewardj2e93c502002-04-12 11:12:52 +0000114/* Number of file descriptors that can simultaneously be waited on for
115 I/O to complete. Perhaps this should be the same as VG_N_THREADS
116 (surely a thread can't wait on more than one fd at once?. Who
117 knows.) */
118#define VG_N_WAITING_FDS 10
119
sewardjbf290b92002-05-01 02:28:01 +0000120/* Stack size for a thread. We try and check that they do not go
121 beyond it. */
sewardjf0b06452002-06-04 08:38:04 +0000122#define VG_PTHREAD_STACK_SIZE (1 << 20)
sewardjbf290b92002-05-01 02:28:01 +0000123
sewardj20917d82002-05-28 01:36:45 +0000124/* Number of entries in the semaphore-remapping table. */
125#define VG_N_SEMAPHORES 50
126
127/* Number of entries in the rwlock-remapping table. */
sewardj89745a52002-09-27 01:04:29 +0000128#define VG_N_RWLOCKS 500
sewardj20917d82002-05-28 01:36:45 +0000129
sewardj8ad94e12002-05-29 00:10:20 +0000130/* Number of entries in each thread's cleanup stack. */
131#define VG_N_CLEANUPSTACK 8
132
sewardj2cb00342002-06-28 01:46:26 +0000133/* Number of entries in each thread's fork-handler stack. */
134#define VG_N_FORKHANDLERSTACK 2
135
njn25e49d8e72002-09-23 09:36:25 +0000136/* Max number of callers for context in a suppression. */
137#define VG_N_SUPP_CALLERS 4
138
sewardjde4a1d02002-03-22 01:27:54 +0000139
140/* ---------------------------------------------------------------------
141 Basic types
142 ------------------------------------------------------------------ */
143
sewardjde4a1d02002-03-22 01:27:54 +0000144/* Just pray that gcc's constant folding works properly ... */
145#define BITS(bit7,bit6,bit5,bit4,bit3,bit2,bit1,bit0) \
146 ( ((bit7) << 7) | ((bit6) << 6) | ((bit5) << 5) | ((bit4) << 4) \
147 | ((bit3) << 3) | ((bit2) << 2) | ((bit1) << 1) | (bit0))
148
sewardjde4a1d02002-03-22 01:27:54 +0000149/* ---------------------------------------------------------------------
150 Command-line-settable options
151 ------------------------------------------------------------------ */
152
sewardjde4a1d02002-03-22 01:27:54 +0000153#define VG_CLO_MAX_SFILES 10
154
sewardj72f98ff2002-06-13 17:23:38 +0000155/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000156extern Bool VG_(clo_error_limit);
sewardjde4a1d02002-03-22 01:27:54 +0000157/* Enquire about whether to attach to GDB at errors? default: NO */
158extern Bool VG_(clo_GDB_attach);
159/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
160extern Int VG_(sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000161/* Automatically attempt to demangle C++ names? default: YES */
162extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000163/* Round malloc sizes upwards to integral number of words? default:
164 NO */
165extern Bool VG_(clo_sloppy_malloc);
sewardj246d4662002-06-14 10:17:05 +0000166/* Minimum alignment in functions that don't specify alignment explicitly.
167 default: 0, i.e. use default of the machine (== 4) */
168extern Int VG_(clo_alignment);
sewardjde4a1d02002-03-22 01:27:54 +0000169/* Simulate child processes? default: NO */
170extern Bool VG_(clo_trace_children);
171/* The file id on which we send all messages. default: 2 (stderr). */
172extern Int VG_(clo_logfile_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000173
174/* The number of suppression files specified. */
175extern Int VG_(clo_n_suppressions);
176/* The names of the suppression files. */
177extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
178
179/* Single stepping? default: NO */
180extern Bool VG_(clo_single_step);
181/* Code improvement? default: YES */
182extern Bool VG_(clo_optimise);
njn25e49d8e72002-09-23 09:36:25 +0000183/* DEBUG: print generated code? default: 00000 ( == NO ) */
184extern Bool VG_(clo_trace_codegen);
sewardjde4a1d02002-03-22 01:27:54 +0000185/* DEBUG: print system calls? default: NO */
186extern Bool VG_(clo_trace_syscalls);
187/* DEBUG: print signal details? default: NO */
188extern Bool VG_(clo_trace_signals);
189/* DEBUG: print symtab details? default: NO */
190extern Bool VG_(clo_trace_symtab);
191/* DEBUG: print malloc details? default: NO */
192extern Bool VG_(clo_trace_malloc);
sewardj8937c812002-04-12 20:12:20 +0000193/* DEBUG: print thread scheduling events? default: NO */
194extern Bool VG_(clo_trace_sched);
sewardj45b4b372002-04-16 22:50:32 +0000195/* DEBUG: print pthread (mutex etc) events? default: 0 (none), 1
196 (some), 2 (all) */
197extern Int VG_(clo_trace_pthread_level);
sewardjde4a1d02002-03-22 01:27:54 +0000198/* Stop after this many basic blocks. default: Infinity. */
199extern ULong VG_(clo_stop_after);
200/* Display gory details for the k'th most popular error. default:
201 Infinity. */
202extern Int VG_(clo_dump_error);
203/* Number of parents of a backtrace. Default: 8. */
204extern Int VG_(clo_backtrace_size);
sewardj3984b852002-05-12 03:00:17 +0000205/* Engage miscellaneous wierd hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000206extern Char* VG_(clo_weird_hacks);
sewardj858964b2002-10-05 14:15:43 +0000207/* Should we run __libc_freeres at exit? Sometimes causes crashes.
208 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
209 if the latter says False, then the setting of VG_(clo_weird_hacks)
210 is ignored. Ie if a skin says no, I don't want this to run, that
211 cannot be overridden from the command line. */
212extern Bool VG_(clo_run_libc_freeres);
sewardjde4a1d02002-03-22 01:27:54 +0000213
214
215/* ---------------------------------------------------------------------
216 Debugging and profiling stuff
217 ------------------------------------------------------------------ */
218
njn25e49d8e72002-09-23 09:36:25 +0000219/* Change to 1 to get more accurate but more expensive core profiling. */
220#if 0
221# define VGP_ACCURATE_PROFILING
222#endif
223
sewardjde4a1d02002-03-22 01:27:54 +0000224/* Create a logfile into which messages can be dumped. */
225extern void VG_(startup_logging) ( void );
njn25e49d8e72002-09-23 09:36:25 +0000226extern void VG_(shutdown_logging)( void );
sewardjde4a1d02002-03-22 01:27:54 +0000227
228extern void VGP_(init_profiling) ( void );
229extern void VGP_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000230
njn25e49d8e72002-09-23 09:36:25 +0000231#undef VGP_PUSHCC
232#undef VGP_POPCC
233#define VGP_PUSHCC(x) if (VG_(clo_profile)) VGP_(pushcc)(x)
234#define VGP_POPCC(x) if (VG_(clo_profile)) VGP_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000235
njn25e49d8e72002-09-23 09:36:25 +0000236/* Use this for ones that happen a lot and thus we don't want to put in
237 all the time, eg. for %esp assignment. */
238#ifdef VGP_ACCURATE_PROFILING
239# define VGP_MAYBE_PUSHCC(x) if (VG_(clo_profile)) VGP_(pushcc)(x)
240# define VGP_MAYBE_POPCC(x) if (VG_(clo_profile)) VGP_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000241#else
njn25e49d8e72002-09-23 09:36:25 +0000242# define VGP_MAYBE_PUSHCC(x)
243# define VGP_MAYBE_POPCC(x)
244#endif
sewardjde4a1d02002-03-22 01:27:54 +0000245
246
247/* ---------------------------------------------------------------------
248 Exports of vg_malloc2.c
249 ------------------------------------------------------------------ */
250
251/* Allocation arenas.
njn25e49d8e72002-09-23 09:36:25 +0000252 CORE is for the core's general use.
253 SKIN is for the skin to use (and the only one it uses).
sewardjde4a1d02002-03-22 01:27:54 +0000254 SYMTAB is for Valgrind's symbol table storage.
njn25e49d8e72002-09-23 09:36:25 +0000255 JITTER is for small storage during translation.
sewardjde4a1d02002-03-22 01:27:54 +0000256 CLIENT is for the client's mallocs/frees.
257 DEMANGLE is for the C++ demangler.
258 EXECTXT is for storing ExeContexts.
njn25e49d8e72002-09-23 09:36:25 +0000259 ERRORS is for storing CoreErrors.
sewardjde4a1d02002-03-22 01:27:54 +0000260 TRANSIENT is for very short-term use. It should be empty
261 in between uses.
njn25e49d8e72002-09-23 09:36:25 +0000262 When adding a new arena, remember also to add it to ensure_mm_init().
sewardjde4a1d02002-03-22 01:27:54 +0000263*/
264typedef Int ArenaId;
265
njn25e49d8e72002-09-23 09:36:25 +0000266#define VG_N_ARENAS 9
sewardjde4a1d02002-03-22 01:27:54 +0000267
njn25e49d8e72002-09-23 09:36:25 +0000268#define VG_AR_CORE 0 /* :: ArenaId */
269#define VG_AR_SKIN 1 /* :: ArenaId */
270#define VG_AR_SYMTAB 2 /* :: ArenaId */
271#define VG_AR_JITTER 3 /* :: ArenaId */
272#define VG_AR_CLIENT 4 /* :: ArenaId */
273#define VG_AR_DEMANGLE 5 /* :: ArenaId */
274#define VG_AR_EXECTXT 6 /* :: ArenaId */
275#define VG_AR_ERRORS 7 /* :: ArenaId */
276#define VG_AR_TRANSIENT 8 /* :: ArenaId */
sewardjde4a1d02002-03-22 01:27:54 +0000277
njn25e49d8e72002-09-23 09:36:25 +0000278extern void* VG_(arena_malloc) ( ArenaId arena, Int nbytes );
279extern void VG_(arena_free) ( ArenaId arena, void* ptr );
280extern void* VG_(arena_calloc) ( ArenaId arena, Int nmemb, Int nbytes );
281extern void* VG_(arena_realloc) ( ArenaId arena, void* ptr, Int alignment,
282 Int size );
283extern void* VG_(arena_malloc_aligned) ( ArenaId aid, Int req_alignB,
sewardjde4a1d02002-03-22 01:27:54 +0000284 Int req_pszB );
285
sewardjde4a1d02002-03-22 01:27:54 +0000286extern void VG_(mallocSanityCheckAll) ( void );
287
288extern void VG_(show_all_arena_stats) ( void );
289extern Bool VG_(is_empty_arena) ( ArenaId aid );
290
291
292/* The red-zone size for the client. This can be arbitrary, but
293 unfortunately must be set at compile time. */
294#define VG_AR_CLIENT_REDZONE_SZW 4
295
296#define VG_AR_CLIENT_REDZONE_SZB \
297 (VG_AR_CLIENT_REDZONE_SZW * VKI_BYTES_PER_WORD)
298
299
300/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +0000301 Exports of vg_clientfuncs.c
sewardj2e93c502002-04-12 11:12:52 +0000302 ------------------------------------------------------------------ */
303
304/* This doesn't export code or data that valgrind.so needs to link
305 against. However, the scheduler does need to know the following
306 request codes. A few, publically-visible, request codes are also
njn25e49d8e72002-09-23 09:36:25 +0000307 defined in valgrind.h, and similar headers for some skins. */
sewardj2e93c502002-04-12 11:12:52 +0000308
309#define VG_USERREQ__MALLOC 0x2001
310#define VG_USERREQ__BUILTIN_NEW 0x2002
311#define VG_USERREQ__BUILTIN_VEC_NEW 0x2003
312
313#define VG_USERREQ__FREE 0x2004
314#define VG_USERREQ__BUILTIN_DELETE 0x2005
315#define VG_USERREQ__BUILTIN_VEC_DELETE 0x2006
316
317#define VG_USERREQ__CALLOC 0x2007
318#define VG_USERREQ__REALLOC 0x2008
319#define VG_USERREQ__MEMALIGN 0x2009
320
321
sewardj20917d82002-05-28 01:36:45 +0000322/* (Fn, Arg): Create a new thread and run Fn applied to Arg in it. Fn
323 MUST NOT return -- ever. Eventually it will do either __QUIT or
324 __WAIT_JOINER. */
325#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
326
327/* ( no-args ): calling thread disappears from the system forever.
328 Reclaim resources. */
329#define VG_USERREQ__QUIT 0x3002
330
331/* ( void* ): calling thread waits for joiner and returns the void* to
332 it. */
333#define VG_USERREQ__WAIT_JOINER 0x3003
334
335/* ( ThreadId, void** ): wait to join a thread. */
336#define VG_USERREQ__PTHREAD_JOIN 0x3004
337
338/* Set cancellation state and type for this thread. */
339#define VG_USERREQ__SET_CANCELSTATE 0x3005
340#define VG_USERREQ__SET_CANCELTYPE 0x3006
341
342/* ( no-args ): Test if we are at a cancellation point. */
343#define VG_USERREQ__TESTCANCEL 0x3007
344
345/* ( ThreadId, &thread_exit_wrapper is the only allowable arg ): call
346 with this arg to indicate that a cancel is now pending for the
347 specified thread. */
348#define VG_USERREQ__SET_CANCELPEND 0x3008
349
350/* Set/get detach state for this thread. */
351#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
352
353#define VG_USERREQ__PTHREAD_GET_THREADID 0x300B
354#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300C
355#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
356#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
357#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
358#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
359#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
360#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
361#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
362#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
363#define VG_USERREQ__PTHREAD_SETSPECIFIC 0x3015
364#define VG_USERREQ__PTHREAD_GETSPECIFIC 0x3016
365#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
366#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
367#define VG_USERREQ__SIGWAIT 0x3019
368#define VG_USERREQ__PTHREAD_KILL 0x301A
369#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj2e93c502002-04-12 11:12:52 +0000370
sewardj8ad94e12002-05-29 00:10:20 +0000371#define VG_USERREQ__CLEANUP_PUSH 0x3020
372#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000373#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardj8ad94e12002-05-29 00:10:20 +0000374
sewardjef037c72002-05-30 00:40:03 +0000375#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjefbfcdf2002-06-19 17:35:45 +0000376
377/* Ask how many signal handler returns have happened to this
378 thread. */
sewardj9a2224b2002-06-19 10:17:40 +0000379#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024
sewardjef037c72002-05-30 00:40:03 +0000380
sewardj2cb00342002-06-28 01:46:26 +0000381/* Get/set entries for a thread's pthread_atfork stack. */
382#define VG_USERREQ__SET_FHSTACK_USED 0x3025
383#define VG_USERREQ__GET_FHSTACK_USED 0x3026
384#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
385#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
sewardjefbfcdf2002-06-19 17:35:45 +0000386
sewardj1fe7b002002-07-16 01:43:15 +0000387/* Denote the finish of VG_(__libc_freeres_wrapper). */
388#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
389
sewardj45b4b372002-04-16 22:50:32 +0000390/* Cosmetic ... */
391#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000392/* Log a pthread error from client-space. Cosmetic. */
393#define VG_USERREQ__PTHREAD_ERROR 0x3102
sewardj45b4b372002-04-16 22:50:32 +0000394
sewardj54cacf02002-04-12 23:24:59 +0000395/*
396In vg_constants.h:
397#define VG_USERREQ__SIGNAL_RETURNS 0x4001
sewardj54cacf02002-04-12 23:24:59 +0000398*/
399
sewardj1fe7b002002-07-16 01:43:15 +0000400/* The scheduler does need to know the address of it so it can be
401 called at program exit. */
402extern void VG_(__libc_freeres_wrapper)( void );
403
sewardj54cacf02002-04-12 23:24:59 +0000404
sewardj2e93c502002-04-12 11:12:52 +0000405/* ---------------------------------------------------------------------
406 Constants pertaining to the simulated CPU state, VG_(baseBlock),
407 which need to go here to avoid ugly circularities.
408 ------------------------------------------------------------------ */
409
410/* How big is the saved FPU state? */
411#define VG_SIZE_OF_FPUSTATE 108
412/* ... and in words ... */
413#define VG_SIZE_OF_FPUSTATE_W ((VG_SIZE_OF_FPUSTATE+3)/4)
414
415
416/* ---------------------------------------------------------------------
sewardj92a59562002-09-30 00:53:10 +0000417 Exports of vg_ldt.c
418 ------------------------------------------------------------------ */
419
420/* This is the hardware-format for a segment descriptor, ie what the
421 x86 actually deals with. It is 8 bytes long. It's ugly. */
422
423typedef struct _LDT_ENTRY {
424 union {
425 struct {
426 UShort LimitLow;
427 UShort BaseLow;
428 unsigned BaseMid : 8;
429 unsigned Type : 5;
430 unsigned Dpl : 2;
431 unsigned Pres : 1;
432 unsigned LimitHi : 4;
433 unsigned Sys : 1;
434 unsigned Reserved_0 : 1;
435 unsigned Default_Big : 1;
436 unsigned Granularity : 1;
437 unsigned BaseHi : 8;
438 } Bits;
439 struct {
440 UInt word1;
441 UInt word2;
442 } Words;
443 }
444 LdtEnt;
445} VgLdtEntry;
446
447/* Maximum number of LDT entries supported (by the x86). */
448#define VG_M_LDT_ENTRIES 8192
449/* The size of each LDT entry == sizeof(VgLdtEntry) */
450#define VG_LDT_ENTRY_SIZE 8
451
452/* Alloc & copy, and dealloc. */
453extern VgLdtEntry*
454 VG_(allocate_LDT_for_thread) ( VgLdtEntry* parent_ldt );
455extern void
456 VG_(deallocate_LDT_for_thread) ( VgLdtEntry* ldt );
457
458/* Simulate the modify_ldt syscall. */
459extern Int VG_(sys_modify_ldt) ( ThreadId tid,
460 Int func, void* ptr, UInt bytecount );
461
sewardje1042472002-09-30 12:33:11 +0000462/* Called from generated code. Given a segment selector and a virtual
463 address, return a linear address, and do limit checks too. */
464extern Addr VG_(do_useseg) ( UInt seg_selector, Addr virtual_addr );
465
sewardj92a59562002-09-30 00:53:10 +0000466
467/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000468 Exports of vg_scheduler.c
469 ------------------------------------------------------------------ */
470
sewardj2e93c502002-04-12 11:12:52 +0000471typedef
472 enum {
473 VgTs_Empty, /* this slot is not in use */
474 VgTs_Runnable, /* waiting to be scheduled */
475 VgTs_WaitJoiner, /* waiting for someone to do join on me */
476 VgTs_WaitJoinee, /* waiting for the thread I did join on */
477 VgTs_WaitFD, /* waiting for I/O completion on a fd */
478 VgTs_WaitMX, /* waiting on a mutex */
sewardj3b5d8862002-04-20 13:53:23 +0000479 VgTs_WaitCV, /* waiting on a condition variable */
sewardjb48e5002002-05-13 00:16:03 +0000480 VgTs_WaitSIG, /* waiting due to sigwait() */
sewardj2e93c502002-04-12 11:12:52 +0000481 VgTs_Sleeping /* sleeping for a while */
482 }
483 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000484
485/* An entry in a threads's cleanup stack. */
486typedef
487 struct {
488 void (*fn)(void*);
489 void* arg;
490 }
491 CleanupEntry;
sewardj2cb00342002-06-28 01:46:26 +0000492
493/* An entry in a thread's fork-handler stack. */
494typedef
495 struct {
496 void (*prepare)(void);
497 void (*parent)(void);
498 void (*child)(void);
499 }
500 ForkHandlerEntry;
501
502
njn25e49d8e72002-09-23 09:36:25 +0000503struct _ThreadState {
504 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
505 The thread identity is simply the index in vg_threads[].
506 ThreadId == 1 is the root thread and has the special property
507 that we don't try and allocate or deallocate its stack. For
508 convenience of generating error message, we also put the
509 ThreadId in this tid field, but be aware that it should
510 ALWAYS == the index in vg_threads[]. */
511 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000512
njn25e49d8e72002-09-23 09:36:25 +0000513 /* Current scheduling status.
sewardj5f07b662002-04-23 16:52:51 +0000514
njn25e49d8e72002-09-23 09:36:25 +0000515 Complications: whenever this is set to VgTs_WaitMX, you
516 should also set .m_edx to whatever the required return value
517 is for pthread_mutex_lock / pthread_cond_timedwait for when
518 the mutex finally gets unblocked. */
519 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000520
njn25e49d8e72002-09-23 09:36:25 +0000521 /* When .status == WaitMX, points to the mutex I am waiting for.
522 When .status == WaitCV, points to the mutex associated with
523 the condition variable indicated by the .associated_cv field.
524 In all other cases, should be NULL. */
525 void* /*pthread_mutex_t* */ associated_mx;
sewardj3b5d8862002-04-20 13:53:23 +0000526
njn25e49d8e72002-09-23 09:36:25 +0000527 /* When .status == WaitCV, points to the condition variable I am
528 waiting for. In all other cases, should be NULL. */
529 void* /*pthread_cond_t* */ associated_cv;
sewardj2e93c502002-04-12 11:12:52 +0000530
njn25e49d8e72002-09-23 09:36:25 +0000531 /* If VgTs_Sleeping, this is when we should wake up, measured in
532 milliseconds as supplied by VG_(read_millisecond_counter).
sewardj2e93c502002-04-12 11:12:52 +0000533
njn25e49d8e72002-09-23 09:36:25 +0000534 If VgTs_WaitCV, this indicates the time at which
535 pthread_cond_timedwait should wake up. If == 0xFFFFFFFF,
536 this means infinitely far in the future, viz,
537 pthread_cond_wait. */
538 UInt awaken_at;
sewardj20917d82002-05-28 01:36:45 +0000539
njn25e49d8e72002-09-23 09:36:25 +0000540 /* If VgTs_WaitJoiner, return value, as generated by joinees. */
541 void* joinee_retval;
sewardj20917d82002-05-28 01:36:45 +0000542
njn25e49d8e72002-09-23 09:36:25 +0000543 /* If VgTs_WaitJoinee, place to copy the return value to, and
544 the identity of the thread we're waiting for. */
545 void** joiner_thread_return;
546 ThreadId joiner_jee_tid;
sewardj8ad94e12002-05-29 00:10:20 +0000547
njn25e49d8e72002-09-23 09:36:25 +0000548 /* Whether or not detached. */
549 Bool detached;
sewardj20917d82002-05-28 01:36:45 +0000550
njn25e49d8e72002-09-23 09:36:25 +0000551 /* Cancelability state and type. */
552 Bool cancel_st; /* False==PTH_CANCEL_DISABLE; True==.._ENABLE */
553 Bool cancel_ty; /* False==PTH_CANC_ASYNCH; True==..._DEFERRED */
554
555 /* Pointer to fn to call to do cancellation. Indicates whether
556 or not cancellation is pending. If NULL, not pending. Else
557 should be &thread_exit_wrapper(), indicating that
558 cancallation is pending. */
559 void (*cancel_pend)(void*);
sewardj2e93c502002-04-12 11:12:52 +0000560
njn25e49d8e72002-09-23 09:36:25 +0000561 /* The cleanup stack. */
562 Int custack_used;
563 CleanupEntry custack[VG_N_CLEANUPSTACK];
sewardj5f07b662002-04-23 16:52:51 +0000564
njn25e49d8e72002-09-23 09:36:25 +0000565 /* thread-specific data */
566 void* specifics[VG_N_THREAD_KEYS];
sewardjb48e5002002-05-13 00:16:03 +0000567
njn25e49d8e72002-09-23 09:36:25 +0000568 /* This thread's blocked-signals mask. Semantics is that for a
569 signal to be delivered to this thread, the signal must not be
570 blocked by either the process-wide signal mask nor by this
571 one. So, if this thread is prepared to handle any signal that
572 the process as a whole is prepared to handle, this mask should
573 be made empty -- and that it is its default, starting
574 state. */
575 vki_ksigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000576
njn25e49d8e72002-09-23 09:36:25 +0000577 /* When not VgTs_WaitSIG, has no meaning. When VgTs_WaitSIG,
578 is the set of signals for which we are sigwait()ing. */
579 vki_ksigset_t sigs_waited_for;
sewardj9a2224b2002-06-19 10:17:40 +0000580
njn25e49d8e72002-09-23 09:36:25 +0000581 /* Counts the number of times a signal handler for this thread
582 has returned. This makes it easy to implement pause(), by
583 polling this value, of course interspersed with nanosleeps,
584 and waiting till it changes. */
585 UInt n_signals_returned;
sewardj2e93c502002-04-12 11:12:52 +0000586
njn25e49d8e72002-09-23 09:36:25 +0000587 /* Stacks. When a thread slot is freed, we don't deallocate its
588 stack; we just leave it lying around for the next use of the
589 slot. If the next use of the slot requires a larger stack,
590 only then is the old one deallocated and a new one
591 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000592
njn25e49d8e72002-09-23 09:36:25 +0000593 For the main thread (threadid == 0), this mechanism doesn't
594 apply. We don't know the size of the stack since we didn't
595 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000596
njn25e49d8e72002-09-23 09:36:25 +0000597 /* The allocated size of this thread's stack (permanently zero
598 if this is ThreadId == 0, since we didn't allocate its stack) */
599 UInt stack_size;
sewardj1e8cdc92002-04-18 11:37:52 +0000600
njn25e49d8e72002-09-23 09:36:25 +0000601 /* Address of the lowest word in this thread's stack. NULL means
602 not allocated yet.
603 */
604 Addr stack_base;
sewardj2e93c502002-04-12 11:12:52 +0000605
sewardj92a59562002-09-30 00:53:10 +0000606 /* Address of the highest legitimate word in this stack. This is
607 used for error messages only -- not critical for execution
608 correctness. Is is set for all stacks, specifically including
609 ThreadId == 0 (the main thread). */
njn25e49d8e72002-09-23 09:36:25 +0000610 Addr stack_highest_word;
611
sewardj92a59562002-09-30 00:53:10 +0000612 /* Pointer to this thread's Local (Segment) Descriptor Table.
613 Starts out as NULL, indicating there is no table, and we hope to
614 keep it that way. If the thread does __NR_modify_ldt to create
615 entries, we allocate a 8192-entry table at that point. This is
616 a straight copy of the Linux kernel's scheme. Don't forget to
617 deallocate this at thread exit. */
618 VgLdtEntry* ldt;
619
620 /* Saved machine context. Note the FPU state, %EIP and segment
621 registers are not shadowed.
622
623 Although the segment registers are 16 bits long, storage
624 management here, in VG_(baseBlock) and in VG_(m_state_static) is
625 simplified if we pretend they are 32 bits. */
626 UInt m_cs;
627 UInt m_ss;
628 UInt m_ds;
629 UInt m_es;
630 UInt m_fs;
631 UInt m_gs;
632
njn25e49d8e72002-09-23 09:36:25 +0000633 UInt m_eax;
634 UInt m_ebx;
635 UInt m_ecx;
636 UInt m_edx;
637 UInt m_esi;
638 UInt m_edi;
639 UInt m_ebp;
640 UInt m_esp;
641 UInt m_eflags;
642 UInt m_eip;
643 UInt m_fpu[VG_SIZE_OF_FPUSTATE_W];
644
645 UInt sh_eax;
646 UInt sh_ebx;
647 UInt sh_ecx;
648 UInt sh_edx;
649 UInt sh_esi;
650 UInt sh_edi;
651 UInt sh_ebp;
652 UInt sh_esp;
653 UInt sh_eflags;
654};
sewardj2e93c502002-04-12 11:12:52 +0000655
656
sewardj018f7622002-05-15 21:13:39 +0000657/* The thread table. */
658extern ThreadState VG_(threads)[VG_N_THREADS];
659
660/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000661extern Bool VG_(is_valid_tid) ( ThreadId tid );
662
sewardj018f7622002-05-15 21:13:39 +0000663/* Check that tid is in range. */
664extern Bool VG_(is_valid_or_empty_tid) ( ThreadId tid );
665
sewardj2e93c502002-04-12 11:12:52 +0000666/* Copy the specified thread's state into VG_(baseBlock) in
667 preparation for running it. */
668extern void VG_(load_thread_state)( ThreadId );
669
670/* Save the specified thread's state back in VG_(baseBlock), and fill
671 VG_(baseBlock) with junk, for sanity-check reasons. */
672extern void VG_(save_thread_state)( ThreadId );
673
sewardj1e8cdc92002-04-18 11:37:52 +0000674/* And for the currently running one, if valid. */
675extern ThreadState* VG_(get_current_thread_state) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000676
sewardj1e8cdc92002-04-18 11:37:52 +0000677/* Similarly ... */
678extern ThreadId VG_(get_current_tid) ( void );
679
sewardjccef2e62002-05-29 19:26:32 +0000680/* Nuke all threads except tid. */
681extern void VG_(nuke_all_threads_except) ( ThreadId me );
682
sewardj2e93c502002-04-12 11:12:52 +0000683
684/* Return codes from the scheduler. */
685typedef
sewardj7e87e382002-05-03 19:09:05 +0000686 enum {
687 VgSrc_Deadlock, /* no runnable threads and no prospect of any
688 even if we wait for a long time */
689 VgSrc_ExitSyscall, /* client called exit(). This is the normal
690 route out. */
691 VgSrc_BbsDone /* In a debugging run, the specified number of
692 bbs has been completed. */
693 }
sewardj2e93c502002-04-12 11:12:52 +0000694 VgSchedReturnCode;
695
sewardj7e87e382002-05-03 19:09:05 +0000696
sewardj2e93c502002-04-12 11:12:52 +0000697/* The scheduler. */
698extern VgSchedReturnCode VG_(scheduler) ( void );
699
700extern void VG_(scheduler_init) ( void );
701
sewardj15a43e12002-04-17 19:35:12 +0000702extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000703
704/* vg_oursignalhandler() might longjmp(). Here's the jmp_buf. */
705extern jmp_buf VG_(scheduler_jmpbuf);
sewardj872051c2002-07-13 12:12:56 +0000706/* This says whether scheduler_jmpbuf is actually valid. Needed so
707 that our signal handler doesn't longjmp when the buffer isn't
708 actually valid. */
709extern Bool VG_(scheduler_jmpbuf_valid);
sewardj2e93c502002-04-12 11:12:52 +0000710/* ... and if so, here's the signal which caused it to do so. */
711extern Int VG_(longjmpd_on_signal);
712
713
sewardja1679dd2002-05-10 22:31:40 +0000714/* Possible places where the main stack might be based. We check that
715 the initial stack, which we can't move, is allocated here.
716 VG_(scheduler_init) checks this. Andrea Archelangi's 2.4 kernels
717 have been rumoured to start stacks at 0x80000000, so that too is
njn25e49d8e72002-09-23 09:36:25 +0000718 considered. It seems systems with longer uptimes tend to to use
719 stacks which start at 0x40000000 sometimes. JRS 2002-Aug-21: I
720 also have reports of stacks starting at 0xE0000000.*/
721
sewardja1679dd2002-05-10 22:31:40 +0000722#define VG_STARTUP_STACK_BASE_1 (Addr)0xC0000000
723#define VG_STARTUP_STACK_BASE_2 (Addr)0x80000000
daywalkera2562202002-07-15 19:39:51 +0000724#define VG_STARTUP_STACK_BASE_3 (Addr)0x40000000
njn25e49d8e72002-09-23 09:36:25 +0000725#define VG_STARTUP_STACK_BASE_4 (Addr)0xE0000000
sewardja1679dd2002-05-10 22:31:40 +0000726#define VG_STARTUP_STACK_SMALLERTHAN 0x100000 /* 1024k */
727
728#define VG_STACK_MATCHES_BASE(zzstack, zzbase) \
729 ( \
730 ((zzstack) & ((zzbase) - VG_STARTUP_STACK_SMALLERTHAN)) \
731 == \
732 ((zzbase) - VG_STARTUP_STACK_SMALLERTHAN) \
733 )
sewardj2e93c502002-04-12 11:12:52 +0000734
735
736/* The red-zone size which we put at the bottom (highest address) of
737 thread stacks, for paranoia reasons. This can be arbitrary, and
738 doesn't really need to be set at compile time. */
739#define VG_AR_CLIENT_STACKBASE_REDZONE_SZW 4
740
741#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB \
742 (VG_AR_CLIENT_STACKBASE_REDZONE_SZW * VKI_BYTES_PER_WORD)
743
njn25e49d8e72002-09-23 09:36:25 +0000744/* Junk to fill up a thread's shadow regs with when shadow regs aren't
745 * being used. */
746#define VG_UNUSED_SHADOW_REG_VALUE 0x27182818
747
748/* What we set a shadow register to when written by SET_EAX and similar
749 * things. */
750extern UInt VG_(written_shadow_reg);
sewardj2e93c502002-04-12 11:12:52 +0000751
sewardj018f7622002-05-15 21:13:39 +0000752/* Write a value to the client's %EDX (request return value register)
753 and set the shadow to indicate it is defined. */
njn25e49d8e72002-09-23 09:36:25 +0000754#define SET_EDX(zztid, zzval) \
755 do { VG_(threads)[zztid].m_edx = (zzval); \
756 VG_(threads)[zztid].sh_edx = VG_(written_shadow_reg); \
sewardj018f7622002-05-15 21:13:39 +0000757 } while (0)
758
njn25e49d8e72002-09-23 09:36:25 +0000759#define SET_EAX(zztid, zzval) \
760 do { VG_(threads)[zztid].m_eax = (zzval); \
761 VG_(threads)[zztid].sh_eax = VG_(written_shadow_reg); \
sewardj018f7622002-05-15 21:13:39 +0000762 } while (0)
763
sewardj2e93c502002-04-12 11:12:52 +0000764
765/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000766 Exports of vg_signals.c
767 ------------------------------------------------------------------ */
768
sewardjde4a1d02002-03-22 01:27:54 +0000769extern void VG_(sigstartup_actions) ( void );
770
sewardjb48e5002002-05-13 00:16:03 +0000771extern Bool VG_(deliver_signals) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000772extern void VG_(unblock_host_signal) ( Int sigNo );
sewardj018f7622002-05-15 21:13:39 +0000773extern void VG_(handle_SCSS_change) ( Bool force_update );
774
sewardjde4a1d02002-03-22 01:27:54 +0000775
776/* Fake system calls for signal handling. */
sewardj2342c972002-05-22 23:34:20 +0000777extern void VG_(do__NR_sigaltstack) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +0000778extern void VG_(do__NR_sigaction) ( ThreadId tid );
sewardj018f7622002-05-15 21:13:39 +0000779extern void VG_(do__NR_sigprocmask) ( ThreadId tid,
780 Int how,
781 vki_ksigset_t* set,
782 vki_ksigset_t* oldset );
783extern void VG_(do_pthread_sigmask_SCSS_upd) ( ThreadId tid,
784 Int how,
785 vki_ksigset_t* set,
786 vki_ksigset_t* oldset );
787extern void VG_(send_signal_to_thread) ( ThreadId thread,
788 Int signo );
sewardjde4a1d02002-03-22 01:27:54 +0000789
sewardjefbfcdf2002-06-19 17:35:45 +0000790extern void VG_(do_sigpending) ( ThreadId tid, vki_ksigset_t* set );
791
792
sewardj2e93c502002-04-12 11:12:52 +0000793/* Modify the current thread's state once we have detected it is
794 returning from a signal handler. */
sewardj77e466c2002-04-14 02:29:29 +0000795extern Bool VG_(signal_returns) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +0000796
sewardj2e93c502002-04-12 11:12:52 +0000797/* Handy utilities to block/restore all host signals. */
798extern void VG_(block_all_host_signals)
799 ( /* OUT */ vki_ksigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +0000800extern void VG_(restore_all_host_signals)
sewardj2e93c502002-04-12 11:12:52 +0000801 ( /* IN */ vki_ksigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000802
803/* ---------------------------------------------------------------------
804 Exports of vg_mylibc.c
805 ------------------------------------------------------------------ */
806
njne427a662002-10-02 11:08:25 +0000807#define vg_assert(expr) \
808 ((void) ((expr) ? 0 : \
809 (VG_(core_assert_fail) (VG__STRING(expr), \
810 __FILE__, __LINE__, \
811 __PRETTY_FUNCTION__), 0)))
812__attribute__ ((__noreturn__))
813extern void VG_(core_assert_fail) ( Char* expr, Char* file,
814 Int line, Char* fn );
815__attribute__ ((__noreturn__))
816extern void VG_(core_panic) ( Char* str );
sewardjde4a1d02002-03-22 01:27:54 +0000817
njn25e49d8e72002-09-23 09:36:25 +0000818/* VG_(brk) not public so skins cannot screw with curr_dataseg_end */
819extern void* VG_(brk) ( void* end_data_segment );
sewardjde4a1d02002-03-22 01:27:54 +0000820
njn25e49d8e72002-09-23 09:36:25 +0000821/* Skins use VG_(strdup)() which doesn't expose ArenaId */
822extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +0000823
njn25e49d8e72002-09-23 09:36:25 +0000824/* Skins shouldn't need these...(?) */
sewardj5f07b662002-04-23 16:52:51 +0000825extern void VG_(start_rdtsc_calibration) ( void );
826extern void VG_(end_rdtsc_calibration) ( void );
827extern UInt VG_(read_millisecond_timer) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000828
njn25e49d8e72002-09-23 09:36:25 +0000829extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
sewardj2e93c502002-04-12 11:12:52 +0000830extern Int VG_(select)( Int n,
831 vki_fd_set* readfds,
832 vki_fd_set* writefds,
833 vki_fd_set* exceptfds,
834 struct vki_timeval * timeout );
835extern Int VG_(nanosleep)( const struct vki_timespec *req,
836 struct vki_timespec *rem );
837
sewardjde4a1d02002-03-22 01:27:54 +0000838/* ---------------------------------------------------------------------
839 Definitions for the JITter (vg_translate.c, vg_to_ucode.c,
840 vg_from_ucode.c).
841 ------------------------------------------------------------------ */
842
sewardjde4a1d02002-03-22 01:27:54 +0000843#define VG_IS_FLAG_SUBSET(set1,set2) \
844 (( ((FlagSet)set1) & ((FlagSet)set2) ) == ((FlagSet)set1) )
845
846#define VG_UNION_FLAG_SETS(set1,set2) \
847 ( ((FlagSet)set1) | ((FlagSet)set2) )
848
sewardjde4a1d02002-03-22 01:27:54 +0000849/* ---------------------------------------------------------------------
850 Exports of vg_demangle.c
851 ------------------------------------------------------------------ */
852
853extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
854
sewardjde4a1d02002-03-22 01:27:54 +0000855/* ---------------------------------------------------------------------
856 Exports of vg_from_ucode.c
857 ------------------------------------------------------------------ */
858
859extern UChar* VG_(emit_code) ( UCodeBlock* cb, Int* nbytes );
860
njn25e49d8e72002-09-23 09:36:25 +0000861extern void VG_(print_ccall_stats) ( void );
862extern void VG_(print_UInstr_histogram) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000863
864/* ---------------------------------------------------------------------
865 Exports of vg_to_ucode.c
866 ------------------------------------------------------------------ */
867
868extern Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 );
sewardjde4a1d02002-03-22 01:27:54 +0000869
870/* ---------------------------------------------------------------------
871 Exports of vg_translate.c
872 ------------------------------------------------------------------ */
873
sewardj1e8cdc92002-04-18 11:37:52 +0000874extern void VG_(translate) ( ThreadState* tst,
875 Addr orig_addr,
sewardjde4a1d02002-03-22 01:27:54 +0000876 UInt* orig_size,
877 Addr* trans_addr,
878 UInt* trans_size );
879
njn25e49d8e72002-09-23 09:36:25 +0000880extern Char* VG_(nameCondcode) ( Condcode cond );
881extern Bool VG_(saneUInstr) ( Bool beforeRA, Bool beforeLiveness,
882 UInstr* u );
883extern void VG_(saneUCodeBlock) ( UCodeBlock* cb );
884extern Bool VG_(saneUCodeBlockCalls) ( UCodeBlock* cb );
sewardjde4a1d02002-03-22 01:27:54 +0000885
886/* ---------------------------------------------------------------------
887 Exports of vg_execontext.c.
888 ------------------------------------------------------------------ */
889
890/* Records the PC and a bit of the call chain. The first 4 %eip
891 values are used in comparisons do remove duplicate errors, and for
892 comparing against suppression specifications. The rest are purely
893 informational (but often important). */
894
njn25e49d8e72002-09-23 09:36:25 +0000895struct _ExeContext {
896 struct _ExeContext * next;
897 /* Variable-length array. The size is VG_(clo_backtrace_size); at
898 least 2, at most VG_DEEPEST_BACKTRACE. [0] is the current %eip,
899 [1] is its caller, [2] is the caller of [1], etc. */
900 Addr eips[0];
901};
sewardjde4a1d02002-03-22 01:27:54 +0000902
903
904/* Initialise the ExeContext storage mechanism. */
905extern void VG_(init_ExeContext_storage) ( void );
906
907/* Print stats (informational only). */
908extern void VG_(show_ExeContext_stats) ( void );
909
njn25e49d8e72002-09-23 09:36:25 +0000910/* Like VG_(get_ExeContext), but with a slightly different type */
911extern ExeContext* VG_(get_ExeContext2) ( Addr eip, Addr ebp,
912 Addr ebp_min, Addr ebp_max );
sewardjde4a1d02002-03-22 01:27:54 +0000913
914
915/* ---------------------------------------------------------------------
916 Exports of vg_errcontext.c.
917 ------------------------------------------------------------------ */
918
njn25e49d8e72002-09-23 09:36:25 +0000919/* Note: it is imperative this doesn't overlap with (0..) at all, as skins
920 * effectively extend it by defining their own enums in the (0..) range. */
sewardjde4a1d02002-03-22 01:27:54 +0000921typedef
njn25e49d8e72002-09-23 09:36:25 +0000922 enum {
923 PThreadSupp = -1, /* Matches PThreadErr */
sewardjde4a1d02002-03-22 01:27:54 +0000924 }
njn25e49d8e72002-09-23 09:36:25 +0000925 CoreSuppKind;
926
927/* For each caller specified for a suppression, record the nature of
928 the caller name. Not of interest to skins. */
929typedef
930 enum {
931 ObjName, /* Name is of an shared object file. */
932 FunName /* Name is of a function. */
933 }
934 SuppLocTy;
935
936/* Suppressions. Skin part `SkinSupp' (which is all skins have to deal
937 with) is in vg_skin.h */
938typedef
939 struct _CoreSupp {
940 struct _CoreSupp* next;
941 /* The number of times this error has been suppressed. */
942 Int count;
943 /* The name by which the suppression is referred to. */
944 Char* sname;
945 /* First two (name of fn where err occurs, and immediate caller)
946 * are mandatory; extra two are optional. */
947 SuppLocTy caller_ty[VG_N_SUPP_CALLERS];
948 Char* caller [VG_N_SUPP_CALLERS];
949 /* The skin-specific part */
950 SkinSupp skin_supp;
951 }
952 CoreSupp;
953
954/* Note: it is imperative this doesn't overlap with (0..) at all, as skins
955 * effectively extend it by defining their own enums in the (0..) range. */
956typedef
957 enum {
958 PThreadErr = -1, /* Pthreading error */
959 }
960 CoreErrorKind;
961
962/* Errors. Skin part `SkinError' (which is all skins have to deal
963 with) is in vg_skin.h */
964typedef
965 struct _CoreErrContext {
966 struct _CoreErrContext* next;
967 /* NULL if unsuppressed; or ptr to suppression record. */
968 CoreSupp* supp;
969 Int count;
970 ExeContext* where;
971 ThreadId tid;
972 /* These record %EIP, %ESP and %EBP at the error point. They
973 are only used to make GDB-attaching convenient; there is no
974 other purpose; specifically they are not used to do
975 comparisons between errors. */
976 UInt m_eip;
977 UInt m_esp;
978 UInt m_ebp;
979 /* The skin-specific part */
980 SkinError skin_err;
981 }
982 CoreError;
sewardjde4a1d02002-03-22 01:27:54 +0000983
984
njn25e49d8e72002-09-23 09:36:25 +0000985extern void VG_(load_suppressions) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000986
njn25e49d8e72002-09-23 09:36:25 +0000987extern void VG_(record_pthread_error) ( ThreadId tid, Char* msg );
sewardjde4a1d02002-03-22 01:27:54 +0000988
njn25e49d8e72002-09-23 09:36:25 +0000989extern void VG_(show_all_errors) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000990
991/* ---------------------------------------------------------------------
992 Exports of vg_procselfmaps.c
993 ------------------------------------------------------------------ */
994
995extern
996void VG_(read_procselfmaps) (
997 void (*record_mapping)( Addr, UInt, Char, Char, Char, UInt, UChar* )
998);
999
1000
1001/* ---------------------------------------------------------------------
1002 Exports of vg_symtab2.c
1003 ------------------------------------------------------------------ */
1004
1005/* We assume the executable is loaded here ... can't really find
njn25e49d8e72002-09-23 09:36:25 +00001006 out. There is a hacky sanity check in VG_(init_memory)()
sewardjde4a1d02002-03-22 01:27:54 +00001007 which should trip up most stupidities.
1008*/
1009#define VG_ASSUMED_EXE_BASE (Addr)0x8048000
1010
njn25e49d8e72002-09-23 09:36:25 +00001011extern void VG_(maybe_read_symbols) ( void );
1012extern void VG_(read_symtab_callback) ( Addr start, UInt size,
1013 Char rr, Char ww, Char xx,
1014 UInt foffset, UChar* filename );
1015extern void VG_(maybe_unload_symbols) ( Addr start, UInt length );
sewardjde4a1d02002-03-22 01:27:54 +00001016
njn25e49d8e72002-09-23 09:36:25 +00001017extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
1018extern void VG_(mini_stack_dump) ( ExeContext* ec );
sewardjde4a1d02002-03-22 01:27:54 +00001019
1020
1021/* ---------------------------------------------------------------------
1022 Exports of vg_clientmalloc.c
1023 ------------------------------------------------------------------ */
1024
njn25e49d8e72002-09-23 09:36:25 +00001025extern void VG_(client_malloc_init)();
sewardjde4a1d02002-03-22 01:27:54 +00001026
sewardj2e93c502002-04-12 11:12:52 +00001027/* These are called from the scheduler, when it intercepts a user
1028 request. */
sewardj8c824512002-04-14 04:16:48 +00001029extern void* VG_(client_malloc) ( ThreadState* tst,
1030 UInt size, VgAllocKind kind );
1031extern void* VG_(client_memalign) ( ThreadState* tst,
1032 UInt align, UInt size );
1033extern void VG_(client_free) ( ThreadState* tst,
1034 void* ptrV, VgAllocKind kind );
1035extern void* VG_(client_calloc) ( ThreadState* tst,
1036 UInt nmemb, UInt size1 );
1037extern void* VG_(client_realloc) ( ThreadState* tst,
1038 void* ptrV, UInt size_new );
sewardjde4a1d02002-03-22 01:27:54 +00001039
1040
1041/* ---------------------------------------------------------------------
1042 Exports of vg_main.c
1043 ------------------------------------------------------------------ */
1044
njn25e49d8e72002-09-23 09:36:25 +00001045/* Sanity checks which may be done at any time. The scheduler decides when. */
1046extern void VG_(do_sanity_checks) ( Bool force_expensive );
1047
sewardjde4a1d02002-03-22 01:27:54 +00001048/* A structure used as an intermediary when passing the simulated
1049 CPU's state to some assembly fragments, particularly system calls.
1050 Stuff is copied from baseBlock to here, the assembly magic runs,
njn25e49d8e72002-09-23 09:36:25 +00001051 and then the inverse copy is done.
1052 */
sewardj92a59562002-09-30 00:53:10 +00001053extern UInt VG_(m_state_static) [6 /* segment regs, Intel order */
1054 + 8 /* int regs, in Intel order */
sewardjde4a1d02002-03-22 01:27:54 +00001055 + 1 /* %eflags */
1056 + 1 /* %eip */
1057 + VG_SIZE_OF_FPUSTATE_W /* FPU state */
1058 ];
1059
1060/* Handy fns for doing the copy back and forth. */
1061extern void VG_(copy_baseBlock_to_m_state_static) ( void );
1062extern void VG_(copy_m_state_static_to_baseBlock) ( void );
1063
sewardjde4a1d02002-03-22 01:27:54 +00001064/* Called when some unhandleable client behaviour is detected.
1065 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +00001066extern void VG_(unimplemented) ( Char* msg )
1067 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +00001068
1069/* The stack on which Valgrind runs. We can't use the same stack as the
1070 simulatee -- that's an important design decision. */
1071extern UInt VG_(stack)[10000];
1072
njn25e49d8e72002-09-23 09:36:25 +00001073/* Similarly, we have to ask for signals to be delivered on an alternative
1074 stack, since it is possible, although unlikely, that we'll have to run
1075 client code from inside the Valgrind-installed signal handler. If this
1076 happens it will be done by vg_deliver_signal_immediately(). */
sewardjde4a1d02002-03-22 01:27:54 +00001077extern UInt VG_(sigstack)[10000];
1078
sewardjde4a1d02002-03-22 01:27:54 +00001079/* Holds client's %esp at the point we gained control. From this the
1080 client's argc, argv and envp are deduced. */
1081extern Addr VG_(esp_at_startup);
sewardjde4a1d02002-03-22 01:27:54 +00001082
njn25e49d8e72002-09-23 09:36:25 +00001083/* Remove valgrind.so and skin's .so from a LD_PRELOAD=... string so child
1084 processes don't get traced into. Also mess up $libdir/valgrind so that
1085 our libpthread.so disappears from view. */
sewardj3e1eb1f2002-05-18 13:14:17 +00001086void VG_(mash_LD_PRELOAD_and_LD_LIBRARY_PATH) ( Char* ld_preload_str,
1087 Char* ld_library_path_str );
sewardjde4a1d02002-03-22 01:27:54 +00001088
1089/* Something of a function looking for a home ... start up GDB. This
1090 is called from VG_(swizzle_esp_then_start_GDB) and so runs on the
1091 *client's* stack. This is necessary to give GDB the illusion that
1092 the client program really was running on the real cpu. */
1093extern void VG_(start_GDB_whilst_on_client_stack) ( void );
1094
sewardjde4a1d02002-03-22 01:27:54 +00001095/* 64-bit counter for the number of basic blocks done. */
1096extern ULong VG_(bbs_done);
1097/* 64-bit counter for the number of bbs to go before a debug exit. */
1098extern ULong VG_(bbs_to_go);
1099
1100/* Counts downwards in vg_run_innerloop. */
1101extern UInt VG_(dispatch_ctr);
1102
sewardjde4a1d02002-03-22 01:27:54 +00001103/* Is the client running on the simulated CPU or the real one? */
1104extern Bool VG_(running_on_simd_CPU); /* Initially False */
1105
1106/* The current LRU epoch. */
1107extern UInt VG_(current_epoch);
1108
sewardj7e87e382002-05-03 19:09:05 +00001109/* This is the ThreadId of the last thread the scheduler ran. */
1110extern ThreadId VG_(last_run_tid);
1111
njn25e49d8e72002-09-23 09:36:25 +00001112/* This is the argument to __NR_exit() supplied by the first thread to
1113 call that syscall. We eventually pass that to __NR_exit() for
1114 real. */
1115extern UInt VG_(exitcode);
1116
sewardjde4a1d02002-03-22 01:27:54 +00001117
1118/* --- Counters, for informational purposes only. --- */
1119
1120/* Number of lookups which miss the fast tt helper. */
1121extern UInt VG_(tt_fast_misses);
1122
1123/* Counts for LRU informational messages. */
1124
1125/* Number and total o/t size of new translations this epoch. */
1126extern UInt VG_(this_epoch_in_count);
1127extern UInt VG_(this_epoch_in_osize);
1128extern UInt VG_(this_epoch_in_tsize);
1129/* Number and total o/t size of discarded translations this epoch. */
1130extern UInt VG_(this_epoch_out_count);
1131extern UInt VG_(this_epoch_out_osize);
1132extern UInt VG_(this_epoch_out_tsize);
1133/* Number and total o/t size of translations overall. */
1134extern UInt VG_(overall_in_count);
1135extern UInt VG_(overall_in_osize);
1136extern UInt VG_(overall_in_tsize);
1137/* Number and total o/t size of discards overall. */
1138extern UInt VG_(overall_out_count);
1139extern UInt VG_(overall_out_osize);
1140extern UInt VG_(overall_out_tsize);
1141
1142/* The number of LRU-clearings of TT/TC. */
1143extern UInt VG_(number_of_lrus);
1144
1145/* Counts pertaining to the register allocator. */
1146
1147/* total number of uinstrs input to reg-alloc */
1148extern UInt VG_(uinstrs_prealloc);
1149
1150/* total number of uinstrs added due to spill code */
1151extern UInt VG_(uinstrs_spill);
1152
1153/* number of bbs requiring spill code */
1154extern UInt VG_(translations_needing_spill);
1155
1156/* total of register ranks over all translations */
1157extern UInt VG_(total_reg_rank);
1158
sewardjde4a1d02002-03-22 01:27:54 +00001159/* Counts pertaining to internal sanity checking. */
1160extern UInt VG_(sanity_fast_count);
1161extern UInt VG_(sanity_slow_count);
1162
sewardj2e93c502002-04-12 11:12:52 +00001163/* Counts pertaining to the scheduler. */
1164extern UInt VG_(num_scheduling_events_MINOR);
1165extern UInt VG_(num_scheduling_events_MAJOR);
1166
sewardjde4a1d02002-03-22 01:27:54 +00001167
1168/* ---------------------------------------------------------------------
1169 Exports of vg_memory.c
1170 ------------------------------------------------------------------ */
1171
njn25e49d8e72002-09-23 09:36:25 +00001172extern void VG_(init_memory) ( void );
1173extern void VG_(new_exe_segment) ( Addr a, UInt len );
1174extern void VG_(remove_if_exe_segment) ( Addr a, UInt len );
sewardjde4a1d02002-03-22 01:27:54 +00001175
njn25e49d8e72002-09-23 09:36:25 +00001176/* Called from generated code. */
1177extern void VG_(handle_esp_assignment) ( Addr new_espA );
sewardjde4a1d02002-03-22 01:27:54 +00001178
1179/* Nasty kludgery to deal with applications which switch stacks,
1180 like netscape. */
sewardjde4a1d02002-03-22 01:27:54 +00001181#define VG_PLAUSIBLE_STACK_SIZE 8000000
1182
sewardjde4a1d02002-03-22 01:27:54 +00001183/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001184 Exports of vg_syscalls.c
sewardjde4a1d02002-03-22 01:27:54 +00001185 ------------------------------------------------------------------ */
1186
njn25e49d8e72002-09-23 09:36:25 +00001187extern void VG_(init_dataseg_end_for_brk) ( void );
1188
sewardj2e93c502002-04-12 11:12:52 +00001189extern void VG_(perform_assumed_nonblocking_syscall) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +00001190
njn25e49d8e72002-09-23 09:36:25 +00001191extern void* VG_(pre_known_blocking_syscall) ( ThreadId tid, Int syscallno );
1192extern void VG_(post_known_blocking_syscall)( ThreadId tid, Int syscallno,
1193 void* pre_res, Int res );
sewardjde4a1d02002-03-22 01:27:54 +00001194
1195extern Bool VG_(is_kerror) ( Int res );
1196
njn25e49d8e72002-09-23 09:36:25 +00001197#define KERNEL_DO_SYSCALL(thread_id, result_lvalue) \
1198 VG_(load_thread_state)(thread_id); \
1199 VG_(copy_baseBlock_to_m_state_static)(); \
1200 VG_(do_syscall)(); \
1201 VG_(copy_m_state_static_to_baseBlock)(); \
1202 VG_(save_thread_state)(thread_id); \
1203 VG_(threads)[thread_id].sh_eax = VG_(written_shadow_reg);\
sewardj018f7622002-05-15 21:13:39 +00001204 result_lvalue = VG_(threads)[thread_id].m_eax;
sewardjde4a1d02002-03-22 01:27:54 +00001205
1206
1207/* ---------------------------------------------------------------------
1208 Exports of vg_transtab.c
1209 ------------------------------------------------------------------ */
1210
1211/* An entry in the translation table (TT). */
1212typedef
1213 struct {
1214 /* +0 */ Addr orig_addr;
1215 /* +4 */ Addr trans_addr;
1216 /* +8 */ UInt mru_epoch;
1217 /* +12 */ UShort orig_size;
1218 /* +14 */ UShort trans_size;
1219 }
1220 TTEntry;
1221
1222/* The number of basic blocks in an epoch (one age-step). */
1223#define VG_BBS_PER_EPOCH 20000
1224
njn25e49d8e72002-09-23 09:36:25 +00001225/* The fast-cache for tt-lookup. */
1226extern Addr VG_(tt_fast)[VG_TT_FAST_SIZE];
1227
sewardjde4a1d02002-03-22 01:27:54 +00001228extern void VG_(get_tt_tc_used) ( UInt* tt_used, UInt* tc_used );
1229extern void VG_(maybe_do_lru_pass) ( void );
1230extern void VG_(flush_transtab) ( void );
1231extern Addr VG_(copy_to_transcache) ( Addr trans_addr, Int trans_size );
1232extern void VG_(add_to_trans_tab) ( TTEntry* tte );
sewardj18d75132002-05-16 11:06:21 +00001233extern void VG_(invalidate_translations) ( Addr start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +00001234
sewardj18d75132002-05-16 11:06:21 +00001235extern void VG_(init_tt_tc) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001236
1237extern void VG_(sanity_check_tc_tt) ( void );
1238extern Addr VG_(search_transtab) ( Addr original_addr );
1239
1240extern void VG_(invalidate_tt_fast)( void );
1241
1242
1243/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001244 Exports of vg_syscall.S
1245 ------------------------------------------------------------------ */
1246
1247extern void VG_(do_syscall) ( void );
1248
1249
1250/* ---------------------------------------------------------------------
1251 Exports of vg_startup.S
1252 ------------------------------------------------------------------ */
1253
sewardjde4a1d02002-03-22 01:27:54 +00001254extern void VG_(switch_to_real_CPU) ( void );
1255
sewardj35805422002-04-21 13:05:34 +00001256extern void VG_(swizzle_esp_then_start_GDB) ( Addr m_eip_at_error,
1257 Addr m_esp_at_error,
1258 Addr m_ebp_at_error );
sewardjde4a1d02002-03-22 01:27:54 +00001259
1260
1261/* ---------------------------------------------------------------------
1262 Exports of vg_dispatch.S
1263 ------------------------------------------------------------------ */
1264
sewardj2e93c502002-04-12 11:12:52 +00001265/* Run a thread for a (very short) while, until some event happens
1266 which means we need to defer to the scheduler. */
1267extern UInt VG_(run_innerloop) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001268
1269
1270/* ---------------------------------------------------------------------
1271 Exports of vg_helpers.S
1272 ------------------------------------------------------------------ */
1273
sewardjde4a1d02002-03-22 01:27:54 +00001274/* Mul, div, etc, -- we don't codegen these directly. */
1275extern void VG_(helper_idiv_64_32);
1276extern void VG_(helper_div_64_32);
1277extern void VG_(helper_idiv_32_16);
1278extern void VG_(helper_div_32_16);
1279extern void VG_(helper_idiv_16_8);
1280extern void VG_(helper_div_16_8);
1281
1282extern void VG_(helper_imul_32_64);
1283extern void VG_(helper_mul_32_64);
1284extern void VG_(helper_imul_16_32);
1285extern void VG_(helper_mul_16_32);
1286extern void VG_(helper_imul_8_16);
1287extern void VG_(helper_mul_8_16);
1288
1289extern void VG_(helper_CLD);
1290extern void VG_(helper_STD);
1291extern void VG_(helper_get_dirflag);
1292
sewardj7d78e782002-06-02 00:04:00 +00001293extern void VG_(helper_CLC);
1294extern void VG_(helper_STC);
1295
sewardjde4a1d02002-03-22 01:27:54 +00001296extern void VG_(helper_shldl);
1297extern void VG_(helper_shldw);
1298extern void VG_(helper_shrdl);
1299extern void VG_(helper_shrdw);
1300
1301extern void VG_(helper_RDTSC);
1302extern void VG_(helper_CPUID);
1303
sewardjde4a1d02002-03-22 01:27:54 +00001304extern void VG_(helper_bsf);
1305extern void VG_(helper_bsr);
1306
1307extern void VG_(helper_fstsw_AX);
1308extern void VG_(helper_SAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001309extern void VG_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001310extern void VG_(helper_DAA);
sewardjde4a1d02002-03-22 01:27:54 +00001311
sewardj20917d82002-05-28 01:36:45 +00001312/* NOT A FUNCTION; this is a bogus RETURN ADDRESS. */
sewardj54cacf02002-04-12 23:24:59 +00001313extern void VG_(signalreturn_bogusRA)( void );
sewardj20917d82002-05-28 01:36:45 +00001314
njn4f9c9342002-04-29 16:03:24 +00001315/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001316 Things relating to the used skin
njn4f9c9342002-04-29 16:03:24 +00001317 ------------------------------------------------------------------ */
1318
njn25e49d8e72002-09-23 09:36:25 +00001319#define VG_TRACK(fn, args...) \
1320 do { \
1321 if (VG_(track_events).fn) \
1322 VG_(track_events).fn(args); \
1323 } while (0)
sewardj18d75132002-05-16 11:06:21 +00001324
1325
sewardjde4a1d02002-03-22 01:27:54 +00001326/* ---------------------------------------------------------------------
1327 The state of the simulated CPU.
1328 ------------------------------------------------------------------ */
1329
sewardjde4a1d02002-03-22 01:27:54 +00001330/* ---------------------------------------------------------------------
1331 Offsets into baseBlock for everything which needs to referred to
1332 from generated code. The order of these decls does not imply
1333 what the order of the actual offsets is. The latter is important
1334 and is set up in vg_main.c.
1335 ------------------------------------------------------------------ */
1336
1337/* An array of words. In generated code, %ebp always points to the
1338 start of this array. Useful stuff, like the simulated CPU state,
1339 and the addresses of helper functions, can then be found by
1340 indexing off %ebp. The following declares variables which, at
1341 startup time, are given values denoting offsets into baseBlock.
1342 These offsets are in *words* from the start of baseBlock. */
1343
1344#define VG_BASEBLOCK_WORDS 200
1345
1346extern UInt VG_(baseBlock)[VG_BASEBLOCK_WORDS];
1347
1348
1349/* -----------------------------------------------------
1350 Read-write parts of baseBlock.
1351 -------------------------------------------------- */
1352
1353/* State of the simulated CPU. */
1354extern Int VGOFF_(m_eax);
1355extern Int VGOFF_(m_ecx);
1356extern Int VGOFF_(m_edx);
1357extern Int VGOFF_(m_ebx);
1358extern Int VGOFF_(m_esp);
1359extern Int VGOFF_(m_ebp);
1360extern Int VGOFF_(m_esi);
1361extern Int VGOFF_(m_edi);
1362extern Int VGOFF_(m_eflags);
1363extern Int VGOFF_(m_fpustate);
1364extern Int VGOFF_(m_eip);
1365
sewardj92a59562002-09-30 00:53:10 +00001366extern Int VGOFF_(m_cs);
1367extern Int VGOFF_(m_ss);
1368extern Int VGOFF_(m_ds);
1369extern Int VGOFF_(m_es);
1370extern Int VGOFF_(m_fs);
1371extern Int VGOFF_(m_gs);
1372
sewardjde4a1d02002-03-22 01:27:54 +00001373/* Reg-alloc spill area (VG_MAX_SPILLSLOTS words long). */
1374extern Int VGOFF_(spillslots);
1375
1376/* Records the valid bits for the 8 integer regs & flags reg. */
1377extern Int VGOFF_(sh_eax);
1378extern Int VGOFF_(sh_ecx);
1379extern Int VGOFF_(sh_edx);
1380extern Int VGOFF_(sh_ebx);
1381extern Int VGOFF_(sh_esp);
1382extern Int VGOFF_(sh_ebp);
1383extern Int VGOFF_(sh_esi);
1384extern Int VGOFF_(sh_edi);
1385extern Int VGOFF_(sh_eflags);
1386
sewardjde4a1d02002-03-22 01:27:54 +00001387/* -----------------------------------------------------
1388 Read-only parts of baseBlock.
1389 -------------------------------------------------- */
1390
sewardj92a59562002-09-30 00:53:10 +00001391/* This thread's LDT pointer. */
1392extern Int VGOFF_(ldt);
1393
sewardjde4a1d02002-03-22 01:27:54 +00001394/* Offsets of addresses of helper functions. A "helper" function is
1395 one which is called from generated code. */
1396
1397extern Int VGOFF_(helper_idiv_64_32);
1398extern Int VGOFF_(helper_div_64_32);
1399extern Int VGOFF_(helper_idiv_32_16);
1400extern Int VGOFF_(helper_div_32_16);
1401extern Int VGOFF_(helper_idiv_16_8);
1402extern Int VGOFF_(helper_div_16_8);
1403
1404extern Int VGOFF_(helper_imul_32_64);
1405extern Int VGOFF_(helper_mul_32_64);
1406extern Int VGOFF_(helper_imul_16_32);
1407extern Int VGOFF_(helper_mul_16_32);
1408extern Int VGOFF_(helper_imul_8_16);
1409extern Int VGOFF_(helper_mul_8_16);
1410
1411extern Int VGOFF_(helper_CLD);
1412extern Int VGOFF_(helper_STD);
1413extern Int VGOFF_(helper_get_dirflag);
1414
sewardj7d78e782002-06-02 00:04:00 +00001415extern Int VGOFF_(helper_CLC);
1416extern Int VGOFF_(helper_STC);
1417
sewardjde4a1d02002-03-22 01:27:54 +00001418extern Int VGOFF_(helper_shldl);
1419extern Int VGOFF_(helper_shldw);
1420extern Int VGOFF_(helper_shrdl);
1421extern Int VGOFF_(helper_shrdw);
1422
1423extern Int VGOFF_(helper_RDTSC);
1424extern Int VGOFF_(helper_CPUID);
1425
sewardjde4a1d02002-03-22 01:27:54 +00001426extern Int VGOFF_(helper_bsf);
1427extern Int VGOFF_(helper_bsr);
1428
1429extern Int VGOFF_(helper_fstsw_AX);
1430extern Int VGOFF_(helper_SAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001431extern Int VGOFF_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001432extern Int VGOFF_(helper_DAA);
sewardjde4a1d02002-03-22 01:27:54 +00001433
sewardjde4a1d02002-03-22 01:27:54 +00001434extern Int VGOFF_(handle_esp_assignment); /* :: Addr -> void */
sewardjde4a1d02002-03-22 01:27:54 +00001435
njn25e49d8e72002-09-23 09:36:25 +00001436/* For storing extension-specific helpers, determined at runtime. The addr
1437 * and offset arrays together form a (addr, offset) map that allows a
1438 * helper's baseBlock offset to be computed from its address. It's done
1439 * like this so CCALL_M_Ns and other helper calls can use the function
1440 * address rather than having to much around with offsets. */
1441extern UInt VG_(n_compact_helpers);
1442extern UInt VG_(n_noncompact_helpers);
1443
1444extern Addr VG_(compact_helper_addrs) [];
1445extern Int VG_(compact_helper_offsets)[];
1446
1447extern Addr VG_(noncompact_helper_addrs) [];
1448extern Int VG_(noncompact_helper_offsets)[];
1449
sewardjde4a1d02002-03-22 01:27:54 +00001450
1451#endif /* ndef __VG_INCLUDE_H */
1452
sewardj3b2736a2002-03-24 12:18:35 +00001453
1454/* ---------------------------------------------------------------------
1455 Finally - autoconf-generated settings
1456 ------------------------------------------------------------------ */
1457
1458#include "config.h"
1459
sewardjde4a1d02002-03-22 01:27:54 +00001460/*--------------------------------------------------------------------*/
1461/*--- end vg_include.h ---*/
1462/*--------------------------------------------------------------------*/