blob: a39184fd235540e1c3bb693aec590a7da2ea1e7b [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
nethercotebb1c9912004-01-04 16:43:23 +000012 Copyright (C) 2000-2004 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000013 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/* ---------------------------------------------------------------------
37 Build options and table sizes. You should be able to change these
38 options or sizes, recompile, and still have a working system.
39 ------------------------------------------------------------------ */
40
jsgf855d93d2003-10-13 22:26:55 +000041/* For system call numbers __NR_... */
42#include "vg_unistd.h"
43
sewardjde4a1d02002-03-22 01:27:54 +000044#include "vg_constants.h"
45
sewardj4cf05692002-10-27 20:28:29 +000046/* All stuff visible to core and skins goes in vg_skin.h. Things
47 * visible to core but not visible to any skins should go in this
48 * file, vg_include.h. */
njn25e49d8e72002-09-23 09:36:25 +000049#include "vg_skin.h"
fitzhardinge39de4b42003-10-31 07:12:21 +000050#include "valgrind.h"
sewardjde4a1d02002-03-22 01:27:54 +000051
fitzhardinge98abfc72003-12-16 02:05:15 +000052#undef SK_
53#define SK_(x) vgSkinInternal_##x
54
sewardjde4a1d02002-03-22 01:27:54 +000055/* Total number of spill slots available for allocation, if a TempReg
56 doesn't make it into a RealReg. Just bomb the entire system if
57 this value is too small; we don't expect it will ever get
58 particularly high. */
59#define VG_MAX_SPILLSLOTS 24
60
61
62/* Constants for the slow translation lookup cache. */
63#define VG_TRANSTAB_SLOW_BITS 11
64#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
65#define VG_TRANSTAB_SLOW_MASK ((VG_TRANSTAB_SLOW_SIZE) - 1)
66
67/* Size of a buffer used for creating messages. */
68#define M_VG_MSGBUF 10000
69
70/* Size of a smallish table used to read /proc/self/map entries. */
sewardjebc82332002-04-24 14:44:23 +000071#define M_PROCMAP_BUF 50000
sewardjde4a1d02002-03-22 01:27:54 +000072
73/* Max length of pathname to a .so/executable file. */
74#define M_VG_LIBNAMESTR 100
75
76/* Max length of a text fragment used to construct error messages. */
77#define M_VG_ERRTXT 512
78
79/* Max length of the string copied from env var VG_ARGS at startup. */
80#define M_VG_CMDLINE_STRLEN 1000
81
82/* Max number of options for Valgrind which we can handle. */
83#define M_VG_CMDLINE_OPTS 100
84
85/* After this many different unsuppressed errors have been observed,
86 be more conservative about collecting new ones. */
87#define M_VG_COLLECT_ERRORS_SLOWLY_AFTER 50
88
89/* After this many different unsuppressed errors have been observed,
90 stop collecting errors at all, and tell the user their program is
91 evidently a steaming pile of camel dung. */
sewardj1bebcbf2002-04-24 21:24:18 +000092#define M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN 300
sewardjf2537be2002-04-24 21:03:47 +000093
94/* After this many total errors have been observed, stop collecting
95 errors at all. Counterpart to M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN. */
sewardj1bebcbf2002-04-24 21:24:18 +000096#define M_VG_COLLECT_NO_ERRORS_AFTER_FOUND 30000
sewardjde4a1d02002-03-22 01:27:54 +000097
sewardjde4a1d02002-03-22 01:27:54 +000098/* The maximum number of calls we're prepared to save in a
99 backtrace. */
100#define VG_DEEPEST_BACKTRACE 50
101
sewardjde4a1d02002-03-22 01:27:54 +0000102/* Number of lists in which we keep track of ExeContexts. Should be
103 prime. */
sewardj59fb25c2003-09-28 16:32:58 +0000104#define VG_N_EC_LISTS 4999 /* a prime number */
sewardjde4a1d02002-03-22 01:27:54 +0000105
sewardj2e93c502002-04-12 11:12:52 +0000106/* Defines the thread-scheduling timeslice, in terms of the number of
107 basic blocks we attempt to run each thread for. Smaller values
108 give finer interleaving but much increased scheduling overheads. */
sewardj4505b9e2002-05-28 11:27:31 +0000109#define VG_SCHEDULING_QUANTUM 50000
sewardj2e93c502002-04-12 11:12:52 +0000110
fitzhardingef0046f22003-12-18 02:39:22 +0000111/* Number of file descriptors that Valgrind tries to reserve for
112 it's own use - two per thread plues a small number of extras. */
113#define VG_N_RESERVED_FDS (VG_N_THREADS*2 + 4)
sewardj2e93c502002-04-12 11:12:52 +0000114
sewardjbf290b92002-05-01 02:28:01 +0000115/* Stack size for a thread. We try and check that they do not go
116 beyond it. */
sewardjf0b06452002-06-04 08:38:04 +0000117#define VG_PTHREAD_STACK_SIZE (1 << 20)
sewardjbf290b92002-05-01 02:28:01 +0000118
sewardj20917d82002-05-28 01:36:45 +0000119/* Number of entries in the rwlock-remapping table. */
sewardj89745a52002-09-27 01:04:29 +0000120#define VG_N_RWLOCKS 500
sewardj20917d82002-05-28 01:36:45 +0000121
sewardj8ad94e12002-05-29 00:10:20 +0000122/* Number of entries in each thread's cleanup stack. */
sewardj61821c02003-05-04 13:02:10 +0000123#define VG_N_CLEANUPSTACK 16
sewardj8ad94e12002-05-29 00:10:20 +0000124
sewardj2cb00342002-06-28 01:46:26 +0000125/* Number of entries in each thread's fork-handler stack. */
sewardj4700f042003-07-26 17:49:58 +0000126#define VG_N_FORKHANDLERSTACK 4
sewardj2cb00342002-06-28 01:46:26 +0000127
njn25e49d8e72002-09-23 09:36:25 +0000128/* Max number of callers for context in a suppression. */
129#define VG_N_SUPP_CALLERS 4
sewardj73cf3bc2002-11-03 03:20:15 +0000130
nethercote4792edf2004-06-30 17:34:30 +0000131/* Valgrind's signal stack size, in words */
njn6eba4ef2003-05-01 08:06:41 +0000132#define VG_SIGSTACK_SIZE_W 10000
njn12a57142003-04-30 20:49:10 +0000133
fitzhardinge98abfc72003-12-16 02:05:15 +0000134/* Useful macros */
135/* a - alignment - must be a power of 2 */
136#define ROUNDDN(p, a) ((Addr)(p) & ~((a)-1))
137#define ROUNDUP(p, a) ROUNDDN((p)+(a)-1, (a))
138#define PGROUNDDN(p) ROUNDDN(p, VKI_BYTES_PER_PAGE)
139#define PGROUNDUP(p) ROUNDUP(p, VKI_BYTES_PER_PAGE)
140
141
sewardjde4a1d02002-03-22 01:27:54 +0000142/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000143 Command-line-settable options
144 ------------------------------------------------------------------ */
145
sewardj4f094a72002-11-05 23:37:35 +0000146/* Default destination port to be used in logging over a network, if
147 none specified. */
148#define VG_CLO_DEFAULT_LOGPORT 1500
sewardj73cf3bc2002-11-03 03:20:15 +0000149
150/* The max number of suppression files. */
sewardjde4a1d02002-03-22 01:27:54 +0000151#define VG_CLO_MAX_SFILES 10
152
nethercote04d0fbc2004-01-26 16:48:06 +0000153/* Default debugger command. */
154#define VG_CLO_DEFAULT_DBCOMMAND GDB_PATH " -nw %f %p"
155
sewardj4cf05692002-10-27 20:28:29 +0000156/* Describes where logging output is to be sent. */
157typedef
158 enum {
159 VgLogTo_Fd,
160 VgLogTo_File,
161 VgLogTo_Socket
162 } VgLogTo;
163
jsgf855d93d2003-10-13 22:26:55 +0000164/* pid of main process */
165extern Int VG_(main_pid);
166
167/* pgrp of process (global to all threads) */
168extern Int VG_(main_pgrp);
sewardj4cf05692002-10-27 20:28:29 +0000169
thughesad1c9562004-06-26 11:27:52 +0000170/* Application-visible file descriptor limits */
171extern Int VG_(fd_soft_limit);
172extern Int VG_(fd_hard_limit);
fitzhardingef0046f22003-12-18 02:39:22 +0000173
sewardj72f98ff2002-06-13 17:23:38 +0000174/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000175extern Bool VG_(clo_error_limit);
nethercote04d0fbc2004-01-26 16:48:06 +0000176/* Enquire about whether to attach to a debugger at errors? default: NO */
177extern Bool VG_(clo_db_attach);
178/* The debugger command? default: whatever gdb ./configure found */
179extern Char* VG_(clo_db_command);
njn43c799e2003-04-08 00:08:52 +0000180/* Enquire about generating a suppression for each error? default: NO */
181extern Bool VG_(clo_gen_suppressions);
sewardjde4a1d02002-03-22 01:27:54 +0000182/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
nethercote27fec902004-06-16 21:26:32 +0000183extern Int VG_(clo_sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000184/* Automatically attempt to demangle C++ names? default: YES */
185extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000186/* Simulate child processes? default: NO */
187extern Bool VG_(clo_trace_children);
sewardj4cf05692002-10-27 20:28:29 +0000188
189/* Where logging output is to be sent to.
190
nethercotef8548672004-06-21 12:42:35 +0000191 When log_to == VgLogTo_Fd, clo_log_fd holds the file id, and is
192 taken from the command line. clo_log_name is irrelevant.
sewardj4cf05692002-10-27 20:28:29 +0000193
nethercotef8548672004-06-21 12:42:35 +0000194 When log_to == VgLogTo_File, clo_log_name holds the log-file
195 name, and is taken from the command line. clo_log_fd is then
196 made to hold the relevant file id, by opening clo_log_name
sewardj4cf05692002-10-27 20:28:29 +0000197 (concatenated with the process ID) for writing.
198
nethercotef8548672004-06-21 12:42:35 +0000199 When log_to == VgLogTo_Socket, clo_log_name holds the
sewardj4cf05692002-10-27 20:28:29 +0000200 hostname:portnumber pair, and is taken from the command line.
nethercotef8548672004-06-21 12:42:35 +0000201 clo_log_fd is then made to hold the relevant file handle, by
sewardj4cf05692002-10-27 20:28:29 +0000202 opening a connection to said hostname:portnumber pair.
203
nethercotef8548672004-06-21 12:42:35 +0000204 Global default is to set log_to == VgLogTo_Fd and log_fd == 2
sewardj4cf05692002-10-27 20:28:29 +0000205 (stderr). */
206extern VgLogTo VG_(clo_log_to);
nethercotef8548672004-06-21 12:42:35 +0000207extern Int VG_(clo_log_fd);
208extern Char* VG_(clo_log_name);
sewardjde4a1d02002-03-22 01:27:54 +0000209
sewardj6024b212003-07-13 10:54:33 +0000210/* The file descriptor to read for input. default: 0 == stdin */
211extern Int VG_(clo_input_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000212/* The number of suppression files specified. */
213extern Int VG_(clo_n_suppressions);
214/* The names of the suppression files. */
215extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
216
217/* Single stepping? default: NO */
218extern Bool VG_(clo_single_step);
219/* Code improvement? default: YES */
220extern Bool VG_(clo_optimise);
njn25e49d8e72002-09-23 09:36:25 +0000221/* DEBUG: print generated code? default: 00000 ( == NO ) */
222extern Bool VG_(clo_trace_codegen);
sewardjde4a1d02002-03-22 01:27:54 +0000223/* DEBUG: print system calls? default: NO */
224extern Bool VG_(clo_trace_syscalls);
225/* DEBUG: print signal details? default: NO */
226extern Bool VG_(clo_trace_signals);
227/* DEBUG: print symtab details? default: NO */
228extern Bool VG_(clo_trace_symtab);
sewardj8937c812002-04-12 20:12:20 +0000229/* DEBUG: print thread scheduling events? default: NO */
230extern Bool VG_(clo_trace_sched);
sewardj45b4b372002-04-16 22:50:32 +0000231/* DEBUG: print pthread (mutex etc) events? default: 0 (none), 1
232 (some), 2 (all) */
233extern Int VG_(clo_trace_pthread_level);
sewardjde4a1d02002-03-22 01:27:54 +0000234/* Display gory details for the k'th most popular error. default:
235 Infinity. */
236extern Int VG_(clo_dump_error);
237/* Number of parents of a backtrace. Default: 8. */
238extern Int VG_(clo_backtrace_size);
daywalker7e73e5f2003-07-04 16:18:15 +0000239/* Engage miscellaneous weird hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000240extern Char* VG_(clo_weird_hacks);
jsgf855d93d2003-10-13 22:26:55 +0000241/* How often we should poll for signals, assuming we need to poll for
242 signals. */
243extern Int VG_(clo_signal_polltime);
244
245/* Low latency syscalls and signals */
246extern Bool VG_(clo_lowlat_syscalls);
247extern Bool VG_(clo_lowlat_signals);
248
rjwalshf5f536f2003-11-17 17:45:00 +0000249/* Track open file descriptors? */
250extern Bool VG_(clo_track_fds);
251
sewardj858964b2002-10-05 14:15:43 +0000252/* Should we run __libc_freeres at exit? Sometimes causes crashes.
253 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
254 if the latter says False, then the setting of VG_(clo_weird_hacks)
255 is ignored. Ie if a skin says no, I don't want this to run, that
256 cannot be overridden from the command line. */
257extern Bool VG_(clo_run_libc_freeres);
sewardjb5ff83e2002-12-01 19:40:49 +0000258/* Use the basic-block chaining optimisation? Default: YES */
sewardj22854b92002-11-30 14:00:47 +0000259extern Bool VG_(clo_chain_bb);
fitzhardinge462f4f92003-12-18 02:10:54 +0000260/* Generate branch-prediction hints? */
261extern Bool VG_(clo_branchpred);
nethercote77eba602003-11-13 17:35:04 +0000262/* Continue stack traces below main()? Default: NO */
263extern Bool VG_(clo_show_below_main);
fitzhardinge98abfc72003-12-16 02:05:15 +0000264/* Test each client pointer dereference to check it's within the
265 client address space bounds */
266extern Bool VG_(clo_pointercheck);
sewardjde4a1d02002-03-22 01:27:54 +0000267
rjwalshe4e779d2004-04-16 23:02:29 +0000268/* Set up the libc freeres wrapper */
269extern void VG_(intercept_libc_freeres_wrapper)(Addr);
270
sewardjde4a1d02002-03-22 01:27:54 +0000271/* ---------------------------------------------------------------------
nethercote85cdd342004-08-01 22:36:40 +0000272 Profiling stuff
sewardjde4a1d02002-03-22 01:27:54 +0000273 ------------------------------------------------------------------ */
274
sewardjde4a1d02002-03-22 01:27:54 +0000275extern void VGP_(init_profiling) ( void );
276extern void VGP_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000277
njn25e49d8e72002-09-23 09:36:25 +0000278#undef VGP_PUSHCC
279#undef VGP_POPCC
280#define VGP_PUSHCC(x) if (VG_(clo_profile)) VGP_(pushcc)(x)
281#define VGP_POPCC(x) if (VG_(clo_profile)) VGP_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000282
sewardjde4a1d02002-03-22 01:27:54 +0000283/* ---------------------------------------------------------------------
njn810086f2002-11-14 12:42:47 +0000284 Skin-related types
285 ------------------------------------------------------------------ */
286/* These structs are not exposed to skins to mitigate possibility of
287 binary-incompatibilities when the core/skin interface changes. Instead,
288 set functions are provided (see include/vg_skin.h). */
289typedef
290 struct {
291 Char* name;
292 Char* version;
293 Char* description;
294 Char* copyright_author;
295 Char* bug_reports_to;
njn120281f2003-02-03 12:20:07 +0000296 UInt avg_translation_sizeB;
njn810086f2002-11-14 12:42:47 +0000297 }
298 VgDetails;
299
300extern VgDetails VG_(details);
301
302/* If new fields are added to this type, update:
303 * - vg_main.c:initialisation of VG_(needs)
304 * - vg_main.c:sanity_check_needs()
305 *
306 * If the name of this type or any of its fields change, update:
307 * - dependent comments (just search for "VG_(needs)").
308 */
309typedef
310 struct {
311 Bool libc_freeres;
312 Bool core_errors;
njn810086f2002-11-14 12:42:47 +0000313 Bool skin_errors;
314 Bool basic_block_discards;
315 Bool shadow_regs;
316 Bool command_line_options;
317 Bool client_requests;
318 Bool extended_UCode;
319 Bool syscall_wrapper;
njn810086f2002-11-14 12:42:47 +0000320 Bool sanity_checks;
321 Bool data_syms;
fitzhardinge98abfc72003-12-16 02:05:15 +0000322 Bool shadow_memory;
njn810086f2002-11-14 12:42:47 +0000323 }
324 VgNeeds;
325
326extern VgNeeds VG_(needs);
327
fitzhardinge98abfc72003-12-16 02:05:15 +0000328extern void VG_(tool_init_dlsym)(void *dlhandle);
njn810086f2002-11-14 12:42:47 +0000329
fitzhardinge98abfc72003-12-16 02:05:15 +0000330#include "vg_toolint.h"
njn810086f2002-11-14 12:42:47 +0000331
332/* ---------------------------------------------------------------------
333 Exports of vg_needs.c
334 ------------------------------------------------------------------ */
335
336void VG_(sanity_check_needs)(void);
337
338/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000339 Exports of vg_malloc2.c
340 ------------------------------------------------------------------ */
341
342/* Allocation arenas.
njn3e884182003-04-15 13:03:23 +0000343
344 CORE for the core's general use.
nethercote60f5b822004-01-26 17:24:42 +0000345 TOOL for the tool to use (and the only one it uses).
njn3e884182003-04-15 13:03:23 +0000346 SYMTAB for Valgrind's symbol table storage.
347 JITTER for small storage during translation.
348 CLIENT for the client's mallocs/frees, if the skin replaces glibc's
349 malloc() et al -- redzone size is chosen by the skin.
350 DEMANGLE for the C++ demangler.
351 EXECTXT for storing ExeContexts.
352 ERRORS for storing CoreErrors.
353 TRANSIENT for very short-term use. It should be empty in between uses.
354
njn25e49d8e72002-09-23 09:36:25 +0000355 When adding a new arena, remember also to add it to ensure_mm_init().
sewardjde4a1d02002-03-22 01:27:54 +0000356*/
357typedef Int ArenaId;
358
njn3e884182003-04-15 13:03:23 +0000359#define VG_N_ARENAS 9
sewardjde4a1d02002-03-22 01:27:54 +0000360
njn3e884182003-04-15 13:03:23 +0000361#define VG_AR_CORE 0
nethercote60f5b822004-01-26 17:24:42 +0000362#define VG_AR_TOOL 1
njn3e884182003-04-15 13:03:23 +0000363#define VG_AR_SYMTAB 2
364#define VG_AR_JITTER 3
365#define VG_AR_CLIENT 4
366#define VG_AR_DEMANGLE 5
367#define VG_AR_EXECTXT 6
368#define VG_AR_ERRORS 7
369#define VG_AR_TRANSIENT 8
sewardjde4a1d02002-03-22 01:27:54 +0000370
njn25e49d8e72002-09-23 09:36:25 +0000371extern void* VG_(arena_malloc) ( ArenaId arena, Int nbytes );
372extern void VG_(arena_free) ( ArenaId arena, void* ptr );
njn3e884182003-04-15 13:03:23 +0000373extern void* VG_(arena_calloc) ( ArenaId arena, Int alignment,
374 Int nmemb, Int nbytes );
njn25e49d8e72002-09-23 09:36:25 +0000375extern void* VG_(arena_realloc) ( ArenaId arena, void* ptr, Int alignment,
376 Int size );
377extern void* VG_(arena_malloc_aligned) ( ArenaId aid, Int req_alignB,
sewardjde4a1d02002-03-22 01:27:54 +0000378 Int req_pszB );
379
njn8a6b6c02003-04-22 22:45:55 +0000380extern Int VG_(arena_payload_szB) ( ArenaId aid, void* payload );
381
sewardjde4a1d02002-03-22 01:27:54 +0000382extern void VG_(mallocSanityCheckAll) ( void );
383
384extern void VG_(show_all_arena_stats) ( void );
385extern Bool VG_(is_empty_arena) ( ArenaId aid );
386
sewardjde4a1d02002-03-22 01:27:54 +0000387/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000388 Exports of vg_intercept.c
sewardj2e93c502002-04-12 11:12:52 +0000389 ------------------------------------------------------------------ */
390
391/* This doesn't export code or data that valgrind.so needs to link
392 against. However, the scheduler does need to know the following
393 request codes. A few, publically-visible, request codes are also
njn25e49d8e72002-09-23 09:36:25 +0000394 defined in valgrind.h, and similar headers for some skins. */
sewardj2e93c502002-04-12 11:12:52 +0000395
njn4c791212003-05-02 17:53:54 +0000396#define VG_USERREQ__MALLOC 0x2001
397#define VG_USERREQ__FREE 0x2002
398
sewardj20917d82002-05-28 01:36:45 +0000399/* (Fn, Arg): Create a new thread and run Fn applied to Arg in it. Fn
400 MUST NOT return -- ever. Eventually it will do either __QUIT or
401 __WAIT_JOINER. */
402#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
403
404/* ( no-args ): calling thread disappears from the system forever.
405 Reclaim resources. */
406#define VG_USERREQ__QUIT 0x3002
407
408/* ( void* ): calling thread waits for joiner and returns the void* to
409 it. */
410#define VG_USERREQ__WAIT_JOINER 0x3003
411
412/* ( ThreadId, void** ): wait to join a thread. */
413#define VG_USERREQ__PTHREAD_JOIN 0x3004
414
415/* Set cancellation state and type for this thread. */
416#define VG_USERREQ__SET_CANCELSTATE 0x3005
417#define VG_USERREQ__SET_CANCELTYPE 0x3006
418
419/* ( no-args ): Test if we are at a cancellation point. */
420#define VG_USERREQ__TESTCANCEL 0x3007
421
422/* ( ThreadId, &thread_exit_wrapper is the only allowable arg ): call
423 with this arg to indicate that a cancel is now pending for the
424 specified thread. */
425#define VG_USERREQ__SET_CANCELPEND 0x3008
426
427/* Set/get detach state for this thread. */
428#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
429
430#define VG_USERREQ__PTHREAD_GET_THREADID 0x300B
431#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300C
432#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
433#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
434#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
435#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
436#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
437#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
438#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
439#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
sewardj00a66b12002-10-12 16:42:35 +0000440#define VG_USERREQ__PTHREAD_SETSPECIFIC_PTR 0x3015
441#define VG_USERREQ__PTHREAD_GETSPECIFIC_PTR 0x3016
sewardj20917d82002-05-28 01:36:45 +0000442#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
443#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
jsgf855d93d2003-10-13 22:26:55 +0000444#define VG_USERREQ__SIGWAIT 0x3019 /* unused */
sewardj20917d82002-05-28 01:36:45 +0000445#define VG_USERREQ__PTHREAD_KILL 0x301A
446#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj00a66b12002-10-12 16:42:35 +0000447#define VG_USERREQ__PTHREAD_KEY_VALIDATE 0x301C
sewardj2e93c502002-04-12 11:12:52 +0000448
sewardj8ad94e12002-05-29 00:10:20 +0000449#define VG_USERREQ__CLEANUP_PUSH 0x3020
450#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000451#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardj8ad94e12002-05-29 00:10:20 +0000452
sewardjef037c72002-05-30 00:40:03 +0000453#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjefbfcdf2002-06-19 17:35:45 +0000454
455/* Ask how many signal handler returns have happened to this
456 thread. */
jsgf855d93d2003-10-13 22:26:55 +0000457#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024 /* unused */
sewardjef037c72002-05-30 00:40:03 +0000458
sewardj2cb00342002-06-28 01:46:26 +0000459/* Get/set entries for a thread's pthread_atfork stack. */
460#define VG_USERREQ__SET_FHSTACK_USED 0x3025
461#define VG_USERREQ__GET_FHSTACK_USED 0x3026
462#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
463#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
sewardjefbfcdf2002-06-19 17:35:45 +0000464
nethercotef971ab72004-08-02 16:27:40 +0000465/* Denote the finish of __libc_freeres_wrapper(). */
sewardj1fe7b002002-07-16 01:43:15 +0000466#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
fitzhardinge98abfc72003-12-16 02:05:15 +0000467
468/* Allocate RT signals */
469#define VG_USERREQ__GET_SIGRT_MIN 0x302B
470#define VG_USERREQ__GET_SIGRT_MAX 0x302C
471#define VG_USERREQ__ALLOC_RTSIG 0x302D
472
473/* Hook for replace_malloc.o to get malloc functions */
474#define VG_USERREQ__GET_MALLOCFUNCS 0x3030
475
thughesdaa34562004-06-27 12:48:53 +0000476/* Get stack information for a thread. */
477#define VG_USERREQ__GET_STACK_INFO 0x3033
478
sewardj45b4b372002-04-16 22:50:32 +0000479/* Cosmetic ... */
480#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000481/* Log a pthread error from client-space. Cosmetic. */
482#define VG_USERREQ__PTHREAD_ERROR 0x3102
fitzhardinge39de4b42003-10-31 07:12:21 +0000483/* Internal equivalent of VALGRIND_PRINTF . */
484#define VG_USERREQ__INTERNAL_PRINTF 0x3103
485/* Internal equivalent of VALGRIND_PRINTF_BACKTRACE . */
486#define VG_USERREQ__INTERNAL_PRINTF_BACKTRACE 0x3104
sewardj45b4b372002-04-16 22:50:32 +0000487
sewardj54cacf02002-04-12 23:24:59 +0000488/*
489In vg_constants.h:
490#define VG_USERREQ__SIGNAL_RETURNS 0x4001
sewardj54cacf02002-04-12 23:24:59 +0000491*/
492
rjwalshe4e779d2004-04-16 23:02:29 +0000493#define VG_INTERCEPT_PREFIX "_vgi__"
494#define VG_INTERCEPT_PREFIX_LEN 6
495#define VG_INTERCEPT(name) _vgi__##name
496#define VG_INTERCEPT_ALIAS(name) "_vgi__" #name
497
498#define VG_WRAPPER_PREFIX "_vgw__"
499#define VG_WRAPPER_PREFIX_LEN 6
500#define VG_WRAPPER(name) _vgw__##name
501#define VG_WRAPPER_ALIAS(name) "_vgw__" #name
502
njn4c791212003-05-02 17:53:54 +0000503
fitzhardinge98abfc72003-12-16 02:05:15 +0000504struct vg_mallocfunc_info {
505 /* things vg_replace_malloc.o needs to know about */
506 Addr sk_malloc;
507 Addr sk_calloc;
508 Addr sk_realloc;
509 Addr sk_memalign;
510 Addr sk___builtin_new;
511 Addr sk___builtin_vec_new;
512 Addr sk_free;
513 Addr sk___builtin_delete;
514 Addr sk___builtin_vec_delete;
515
516 Addr arena_payload_szB;
517
518 Bool clo_sloppy_malloc;
519 Bool clo_trace_malloc;
520};
sewardj1fe7b002002-07-16 01:43:15 +0000521
fitzhardinge39de4b42003-10-31 07:12:21 +0000522__attribute__((weak))
523int
524VALGRIND_INTERNAL_PRINTF(char *format, ...)
525{
526 unsigned int _qzz_res = 0;
527 va_list vargs;
528 va_start(vargs, format);
529 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF,
530 (unsigned int)format, (unsigned int)vargs, 0, 0);
531 va_end(vargs);
532 return _qzz_res;
533}
534
535__attribute__((weak))
536int
537VALGRIND_INTERNAL_PRINTF_BACKTRACE(char *format, ...)
538{
539 unsigned int _qzz_res = 0;
540 va_list vargs;
541 va_start(vargs, format);
542 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF_BACKTRACE,
543 (unsigned int)format, (unsigned int)vargs, 0, 0);
544 va_end(vargs);
545 return _qzz_res;
546}
547
sewardj54cacf02002-04-12 23:24:59 +0000548
sewardj2e93c502002-04-12 11:12:52 +0000549/* ---------------------------------------------------------------------
550 Constants pertaining to the simulated CPU state, VG_(baseBlock),
551 which need to go here to avoid ugly circularities.
552 ------------------------------------------------------------------ */
553
sewardjb91ae7f2003-04-29 23:50:00 +0000554/* How big is the saved SSE/SSE2 state? Note that this subsumes the
555 FPU state. On machines without SSE, we just save/restore the FPU
556 state into the first part of this area. */
557/* A general comment about SSE save/restore: It appears that the 7th
558 word (which is the MXCSR) has to be &ed with 0x0000FFBF in order
559 that restoring from it later does not cause a GP fault (which is
560 delivered as a segfault). I guess this will have to be done
561 any time we do fxsave :-( 7th word means word offset 6 or byte
562 offset 24 from the start address of the save area.
563 */
564#define VG_SIZE_OF_SSESTATE 512
sewardj2e93c502002-04-12 11:12:52 +0000565/* ... and in words ... */
sewardjb91ae7f2003-04-29 23:50:00 +0000566#define VG_SIZE_OF_SSESTATE_W ((VG_SIZE_OF_SSESTATE+3)/4)
sewardj2e93c502002-04-12 11:12:52 +0000567
568
569/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000570 Exports of vg_defaults.c
571 ------------------------------------------------------------------ */
572
573extern Bool VG_(sk_malloc_called_by_scheduler);
574
575
576/* ---------------------------------------------------------------------
sewardj92a59562002-09-30 00:53:10 +0000577 Exports of vg_ldt.c
578 ------------------------------------------------------------------ */
579
580/* This is the hardware-format for a segment descriptor, ie what the
581 x86 actually deals with. It is 8 bytes long. It's ugly. */
582
583typedef struct _LDT_ENTRY {
584 union {
585 struct {
586 UShort LimitLow;
587 UShort BaseLow;
588 unsigned BaseMid : 8;
589 unsigned Type : 5;
590 unsigned Dpl : 2;
591 unsigned Pres : 1;
592 unsigned LimitHi : 4;
593 unsigned Sys : 1;
594 unsigned Reserved_0 : 1;
595 unsigned Default_Big : 1;
596 unsigned Granularity : 1;
597 unsigned BaseHi : 8;
598 } Bits;
599 struct {
600 UInt word1;
601 UInt word2;
602 } Words;
603 }
604 LdtEnt;
605} VgLdtEntry;
606
607/* Maximum number of LDT entries supported (by the x86). */
608#define VG_M_LDT_ENTRIES 8192
609/* The size of each LDT entry == sizeof(VgLdtEntry) */
610#define VG_LDT_ENTRY_SIZE 8
611
612/* Alloc & copy, and dealloc. */
nethercote85cdd342004-08-01 22:36:40 +0000613extern VgLdtEntry* VG_(allocate_LDT_for_thread) ( VgLdtEntry* parent_ldt );
614extern void VG_(deallocate_LDT_for_thread) ( VgLdtEntry* ldt );
615extern void VG_(clear_TLS_for_thread) ( VgLdtEntry* tls );
sewardj92a59562002-09-30 00:53:10 +0000616
617/* Simulate the modify_ldt syscall. */
618extern Int VG_(sys_modify_ldt) ( ThreadId tid,
619 Int func, void* ptr, UInt bytecount );
620
fitzhardinge47735af2004-01-21 01:27:27 +0000621/* Simulate the {get,set}_thread_area syscalls. */
622extern Int VG_(sys_set_thread_area) ( ThreadId tid,
623 struct vki_modify_ldt_ldt_s* info );
624extern Int VG_(sys_get_thread_area) ( ThreadId tid,
625 struct vki_modify_ldt_ldt_s* info );
626
sewardje1042472002-09-30 12:33:11 +0000627/* Called from generated code. Given a segment selector and a virtual
628 address, return a linear address, and do limit checks too. */
629extern Addr VG_(do_useseg) ( UInt seg_selector, Addr virtual_addr );
630
sewardj92a59562002-09-30 00:53:10 +0000631
632/* ---------------------------------------------------------------------
nethercote1f0173b2004-02-28 15:40:36 +0000633 Exports of vg_libpthread.c
634 ------------------------------------------------------------------ */
635
636/* Replacements for pthread types, shared between vg_libpthread.c and
637 vg_scheduler.c. See comment in vg_libpthread.c above the other
638 vg_pthread_*_t types for a description of how these are used. */
639
640struct _vg_pthread_fastlock
641{
642 long int __vg_status; /* "Free" or "taken" or head of waiting list */
643 int __vg_spinlock; /* Used by compare_and_swap emulation. Also,
644 adaptive SMP lock stores spin count here. */
645};
646
647typedef struct
648{
649 int __vg_m_reserved; /* Reserved for future use */
650 int __vg_m_count; /* Depth of recursive locking */
651 /*_pthread_descr*/ void* __vg_m_owner; /* Owner thread (if recursive or errcheck) */
652 int __vg_m_kind; /* Mutex kind: fast, recursive or errcheck */
653 struct _vg_pthread_fastlock __vg_m_lock; /* Underlying fast lock */
654} vg_pthread_mutex_t;
655
656typedef struct
657{
658 struct _vg_pthread_fastlock __vg_c_lock; /* Protect against concurrent access */
nethercotedffad082004-02-28 23:32:11 +0000659 /*_pthread_descr*/ void* __vg_c_waiting; /* Threads waiting on this condition */
660
661 // Nb: the following padding removed because it was missing from an
662 // earlier glibc, so the size test in the CONVERT macro was failing.
663 // --njn
664
nethercote1f0173b2004-02-28 15:40:36 +0000665 // Padding ensures the size is 48 bytes
nethercotedffad082004-02-28 23:32:11 +0000666 /*char __vg_padding[48 - sizeof(struct _vg_pthread_fastlock)
nethercote1f0173b2004-02-28 15:40:36 +0000667 - sizeof(void*) - sizeof(long long)];
nethercotedffad082004-02-28 23:32:11 +0000668 long long __vg_align;*/
nethercote1f0173b2004-02-28 15:40:36 +0000669} vg_pthread_cond_t;
670
671
672/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000673 Exports of vg_scheduler.c
674 ------------------------------------------------------------------ */
675
sewardj2e93c502002-04-12 11:12:52 +0000676typedef
jsgf855d93d2003-10-13 22:26:55 +0000677 enum ThreadStatus {
sewardj2e93c502002-04-12 11:12:52 +0000678 VgTs_Empty, /* this slot is not in use */
679 VgTs_Runnable, /* waiting to be scheduled */
680 VgTs_WaitJoiner, /* waiting for someone to do join on me */
681 VgTs_WaitJoinee, /* waiting for the thread I did join on */
sewardj2e93c502002-04-12 11:12:52 +0000682 VgTs_WaitMX, /* waiting on a mutex */
sewardj3b5d8862002-04-20 13:53:23 +0000683 VgTs_WaitCV, /* waiting on a condition variable */
jsgf855d93d2003-10-13 22:26:55 +0000684 VgTs_WaitSys, /* waiting for a syscall to complete */
685 VgTs_Sleeping, /* sleeping for a while */
sewardj2e93c502002-04-12 11:12:52 +0000686 }
687 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000688
thughes11975ff2004-06-12 12:58:22 +0000689typedef
690 enum CleanupType {
691 VgCt_None, /* this cleanup entry is not initialised */
692 VgCt_Function, /* an old-style function pointer cleanup */
693 VgCt_Longjmp /* a new-style longjmp based cleanup */
694 }
695 CleanupType;
696
thughesdaa34562004-06-27 12:48:53 +0000697/* Information on a thread's stack. */
698typedef
699 struct {
700 Addr base;
701 UInt size;
702 UInt guardsize;
703 }
704 StackInfo;
705
sewardj8ad94e12002-05-29 00:10:20 +0000706/* An entry in a threads's cleanup stack. */
707typedef
708 struct {
thughes11975ff2004-06-12 12:58:22 +0000709 CleanupType type;
710 union {
711 struct {
712 void (*fn)(void*);
713 void* arg;
714 } function;
715 struct {
thughesebed9982004-06-12 17:25:25 +0000716 void *ub;
thughes11975ff2004-06-12 12:58:22 +0000717 int ctype;
718 } longjmp;
719 } data;
sewardj8ad94e12002-05-29 00:10:20 +0000720 }
721 CleanupEntry;
sewardj2cb00342002-06-28 01:46:26 +0000722
723/* An entry in a thread's fork-handler stack. */
724typedef
725 struct {
726 void (*prepare)(void);
727 void (*parent)(void);
728 void (*child)(void);
729 }
730 ForkHandlerEntry;
731
jsgf855d93d2003-10-13 22:26:55 +0000732typedef struct ProxyLWP ProxyLWP;
sewardj2cb00342002-06-28 01:46:26 +0000733
njn72718642003-07-24 08:45:32 +0000734typedef
735 struct _ThreadState {
njn25e49d8e72002-09-23 09:36:25 +0000736 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
737 The thread identity is simply the index in vg_threads[].
738 ThreadId == 1 is the root thread and has the special property
739 that we don't try and allocate or deallocate its stack. For
740 convenience of generating error message, we also put the
741 ThreadId in this tid field, but be aware that it should
742 ALWAYS == the index in vg_threads[]. */
743 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000744
njn25e49d8e72002-09-23 09:36:25 +0000745 /* Current scheduling status.
sewardj5f07b662002-04-23 16:52:51 +0000746
njn25e49d8e72002-09-23 09:36:25 +0000747 Complications: whenever this is set to VgTs_WaitMX, you
748 should also set .m_edx to whatever the required return value
749 is for pthread_mutex_lock / pthread_cond_timedwait for when
750 the mutex finally gets unblocked. */
751 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000752
njn25e49d8e72002-09-23 09:36:25 +0000753 /* When .status == WaitMX, points to the mutex I am waiting for.
754 When .status == WaitCV, points to the mutex associated with
755 the condition variable indicated by the .associated_cv field.
756 In all other cases, should be NULL. */
nethercote1f0173b2004-02-28 15:40:36 +0000757 vg_pthread_mutex_t* associated_mx;
sewardj3b5d8862002-04-20 13:53:23 +0000758
njn25e49d8e72002-09-23 09:36:25 +0000759 /* When .status == WaitCV, points to the condition variable I am
760 waiting for. In all other cases, should be NULL. */
761 void* /*pthread_cond_t* */ associated_cv;
sewardj2e93c502002-04-12 11:12:52 +0000762
njn25e49d8e72002-09-23 09:36:25 +0000763 /* If VgTs_Sleeping, this is when we should wake up, measured in
njn6c846552003-09-16 07:41:43 +0000764 milliseconds as supplied by VG_(read_millisecond_timer).
sewardj2e93c502002-04-12 11:12:52 +0000765
njn25e49d8e72002-09-23 09:36:25 +0000766 If VgTs_WaitCV, this indicates the time at which
767 pthread_cond_timedwait should wake up. If == 0xFFFFFFFF,
768 this means infinitely far in the future, viz,
769 pthread_cond_wait. */
770 UInt awaken_at;
sewardj20917d82002-05-28 01:36:45 +0000771
njn25e49d8e72002-09-23 09:36:25 +0000772 /* If VgTs_WaitJoiner, return value, as generated by joinees. */
773 void* joinee_retval;
sewardj20917d82002-05-28 01:36:45 +0000774
njn25e49d8e72002-09-23 09:36:25 +0000775 /* If VgTs_WaitJoinee, place to copy the return value to, and
776 the identity of the thread we're waiting for. */
777 void** joiner_thread_return;
778 ThreadId joiner_jee_tid;
sewardj8ad94e12002-05-29 00:10:20 +0000779
jsgf855d93d2003-10-13 22:26:55 +0000780 /* If VgTs_WaitSys, this is the result of the pre-syscall check */
781 void *sys_pre_res;
782
783 /* If VgTs_WaitSys, this is the syscall we're currently running */
784 Int syscallno;
785
thughesbaa46e52004-07-29 17:44:23 +0000786 /* If VgTs_WaitSys, this is the syscall flags */
787 UInt sys_flags;
788
jsgf855d93d2003-10-13 22:26:55 +0000789 /* Details about this thread's proxy LWP */
790 ProxyLWP *proxy;
791
njn25e49d8e72002-09-23 09:36:25 +0000792 /* Whether or not detached. */
793 Bool detached;
sewardj20917d82002-05-28 01:36:45 +0000794
njn25e49d8e72002-09-23 09:36:25 +0000795 /* Cancelability state and type. */
796 Bool cancel_st; /* False==PTH_CANCEL_DISABLE; True==.._ENABLE */
797 Bool cancel_ty; /* False==PTH_CANC_ASYNCH; True==..._DEFERRED */
798
799 /* Pointer to fn to call to do cancellation. Indicates whether
800 or not cancellation is pending. If NULL, not pending. Else
801 should be &thread_exit_wrapper(), indicating that
802 cancallation is pending. */
803 void (*cancel_pend)(void*);
sewardj2e93c502002-04-12 11:12:52 +0000804
njn25e49d8e72002-09-23 09:36:25 +0000805 /* The cleanup stack. */
806 Int custack_used;
807 CleanupEntry custack[VG_N_CLEANUPSTACK];
sewardj5f07b662002-04-23 16:52:51 +0000808
sewardj00a66b12002-10-12 16:42:35 +0000809 /* A pointer to the thread's-specific-data. This is handled almost
810 entirely from vg_libpthread.c. We just provide hooks to get and
811 set this ptr. This is either NULL, indicating the thread has
812 read/written none of its specifics so far, OR points to a
813 void*[VG_N_THREAD_KEYS], allocated and deallocated in
814 vg_libpthread.c. */
815 void** specifics_ptr;
sewardjb48e5002002-05-13 00:16:03 +0000816
njn25e49d8e72002-09-23 09:36:25 +0000817 /* This thread's blocked-signals mask. Semantics is that for a
818 signal to be delivered to this thread, the signal must not be
jsgf855d93d2003-10-13 22:26:55 +0000819 blocked by this signal mask. If more than one thread accepts a
820 signal, then it will be delivered to one at random. If all
821 threads block the signal, it will remain pending until either a
822 thread unblocks it or someone uses sigwaitsig/sigtimedwait.
823
824 sig_mask reflects what the client told us its signal mask should
825 be, but isn't necessarily the current signal mask of the proxy
826 LWP: it may have more signals blocked because of signal
827 handling, or it may be different because of sigsuspend.
828 */
njn25e49d8e72002-09-23 09:36:25 +0000829 vki_ksigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000830
fitzhardingef0dd7e12004-01-16 02:17:30 +0000831 /* Effective signal mask. This is the mask which currently
832 applies; it may be different from sig_mask while a signal
jsgf855d93d2003-10-13 22:26:55 +0000833 handler is running.
834 */
835 vki_ksigset_t eff_sig_mask;
sewardj2e93c502002-04-12 11:12:52 +0000836
njn25e49d8e72002-09-23 09:36:25 +0000837 /* Stacks. When a thread slot is freed, we don't deallocate its
838 stack; we just leave it lying around for the next use of the
839 slot. If the next use of the slot requires a larger stack,
840 only then is the old one deallocated and a new one
841 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000842
njn25e49d8e72002-09-23 09:36:25 +0000843 For the main thread (threadid == 0), this mechanism doesn't
844 apply. We don't know the size of the stack since we didn't
845 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000846
njn25e49d8e72002-09-23 09:36:25 +0000847 /* The allocated size of this thread's stack (permanently zero
848 if this is ThreadId == 0, since we didn't allocate its stack) */
849 UInt stack_size;
sewardj1e8cdc92002-04-18 11:37:52 +0000850
njn25e49d8e72002-09-23 09:36:25 +0000851 /* Address of the lowest word in this thread's stack. NULL means
852 not allocated yet.
853 */
854 Addr stack_base;
sewardj2e93c502002-04-12 11:12:52 +0000855
thughesdaa34562004-06-27 12:48:53 +0000856 /* The allocated size of this thread's stack's guard area (permanently
857 zero if this is ThreadId == 0, since we didn't allocate its stack) */
858 UInt stack_guard_size;
859
sewardj92a59562002-09-30 00:53:10 +0000860 /* Address of the highest legitimate word in this stack. This is
861 used for error messages only -- not critical for execution
862 correctness. Is is set for all stacks, specifically including
863 ThreadId == 0 (the main thread). */
njn25e49d8e72002-09-23 09:36:25 +0000864 Addr stack_highest_word;
865
fitzhardinge98c4dc02004-03-16 08:27:29 +0000866 /* Alternate signal stack */
867 vki_kstack_t altstack;
868
sewardj92a59562002-09-30 00:53:10 +0000869 /* Pointer to this thread's Local (Segment) Descriptor Table.
870 Starts out as NULL, indicating there is no table, and we hope to
871 keep it that way. If the thread does __NR_modify_ldt to create
872 entries, we allocate a 8192-entry table at that point. This is
873 a straight copy of the Linux kernel's scheme. Don't forget to
874 deallocate this at thread exit. */
875 VgLdtEntry* ldt;
876
fitzhardinge47735af2004-01-21 01:27:27 +0000877 /* TLS table. This consists of a small number (currently 3) of
878 entries from the Global Descriptor Table. */
879 VgLdtEntry tls[VKI_GDT_TLS_ENTRIES];
880
sewardj92a59562002-09-30 00:53:10 +0000881 /* Saved machine context. Note the FPU state, %EIP and segment
882 registers are not shadowed.
883
884 Although the segment registers are 16 bits long, storage
nethercote1d447092004-02-01 17:29:59 +0000885 management here and in VG_(baseBlock) is
sewardj92a59562002-09-30 00:53:10 +0000886 simplified if we pretend they are 32 bits. */
887 UInt m_cs;
888 UInt m_ss;
889 UInt m_ds;
890 UInt m_es;
891 UInt m_fs;
892 UInt m_gs;
893
njn25e49d8e72002-09-23 09:36:25 +0000894 UInt m_eax;
895 UInt m_ebx;
896 UInt m_ecx;
897 UInt m_edx;
898 UInt m_esi;
899 UInt m_edi;
900 UInt m_ebp;
901 UInt m_esp;
902 UInt m_eflags;
903 UInt m_eip;
sewardjb91ae7f2003-04-29 23:50:00 +0000904
905 /* The SSE/FPU state. This array does not (necessarily) have the
906 required 16-byte alignment required to get stuff in/out by
907 fxsave/fxrestore. So we have to do it "by hand".
908 */
909 UInt m_sse[VG_SIZE_OF_SSESTATE_W];
njn25e49d8e72002-09-23 09:36:25 +0000910
911 UInt sh_eax;
912 UInt sh_ebx;
913 UInt sh_ecx;
914 UInt sh_edx;
915 UInt sh_esi;
916 UInt sh_edi;
917 UInt sh_ebp;
918 UInt sh_esp;
919 UInt sh_eflags;
njn72718642003-07-24 08:45:32 +0000920}
921ThreadState;
sewardj2e93c502002-04-12 11:12:52 +0000922
923
sewardj018f7622002-05-15 21:13:39 +0000924/* The thread table. */
925extern ThreadState VG_(threads)[VG_N_THREADS];
926
927/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000928extern Bool VG_(is_valid_tid) ( ThreadId tid );
929
sewardj018f7622002-05-15 21:13:39 +0000930/* Check that tid is in range. */
931extern Bool VG_(is_valid_or_empty_tid) ( ThreadId tid );
932
njn72718642003-07-24 08:45:32 +0000933/* Determine if 'tid' is that of the current running thread (Nb: returns
934 False if no thread is currently running. */
935extern Bool VG_(is_running_thread)(ThreadId tid);
936
jsgf855d93d2003-10-13 22:26:55 +0000937/* Get the ThreadState for a particular thread */
938extern ThreadState *VG_(get_ThreadState)(ThreadId tid);
939
sewardj1e8cdc92002-04-18 11:37:52 +0000940/* And for the currently running one, if valid. */
941extern ThreadState* VG_(get_current_thread_state) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000942
sewardj1e8cdc92002-04-18 11:37:52 +0000943/* Similarly ... */
944extern ThreadId VG_(get_current_tid) ( void );
945
sewardjccef2e62002-05-29 19:26:32 +0000946/* Nuke all threads except tid. */
947extern void VG_(nuke_all_threads_except) ( ThreadId me );
948
jsgf855d93d2003-10-13 22:26:55 +0000949/* Give a hint to the scheduler that it may be a good time to find a
950 new runnable thread. If prefer_sched != VG_INVALID_THREADID, then
951 try to schedule that thread.
952*/
953extern void VG_(need_resched) ( ThreadId prefer_sched );
954
sewardj2e93c502002-04-12 11:12:52 +0000955/* Return codes from the scheduler. */
956typedef
sewardj7e87e382002-05-03 19:09:05 +0000957 enum {
958 VgSrc_Deadlock, /* no runnable threads and no prospect of any
959 even if we wait for a long time */
960 VgSrc_ExitSyscall, /* client called exit(). This is the normal
961 route out. */
jsgf855d93d2003-10-13 22:26:55 +0000962 VgSrc_FatalSig /* Killed by the default action of a fatal
963 signal */
sewardj7e87e382002-05-03 19:09:05 +0000964 }
sewardj2e93c502002-04-12 11:12:52 +0000965 VgSchedReturnCode;
966
sewardj7e87e382002-05-03 19:09:05 +0000967
sewardj2e93c502002-04-12 11:12:52 +0000968/* The scheduler. */
nethercote47dd12c2004-06-22 14:18:42 +0000969extern VgSchedReturnCode VG_(scheduler) ( Int* exit_code );
sewardj2e93c502002-04-12 11:12:52 +0000970
971extern void VG_(scheduler_init) ( void );
972
sewardj15a43e12002-04-17 19:35:12 +0000973extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000974
nethercote75d26242004-08-01 22:59:18 +0000975// Longjmp back to the scheduler and thus enter the sighandler immediately.
976extern void VG_(resume_scheduler) ( Int sigNo, vki_ksiginfo_t *info );
sewardj2e93c502002-04-12 11:12:52 +0000977
sewardj2e93c502002-04-12 11:12:52 +0000978/* The red-zone size which we put at the bottom (highest address) of
979 thread stacks, for paranoia reasons. This can be arbitrary, and
980 doesn't really need to be set at compile time. */
nethercote6e4f9dc2004-07-30 23:36:37 +0000981#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB 16
sewardj2e93c502002-04-12 11:12:52 +0000982
njnd3040452003-05-19 15:04:06 +0000983/* Write a value to a client's thread register, and shadow (if necessary) */
984#define SET_THREAD_REG( zztid, zzval, zzreg, zzREG, zzevent, zzargs... ) \
985 do { VG_(threads)[zztid].m_##zzreg = (zzval); \
986 VG_TRACK( zzevent, zztid, R_##zzREG, ##zzargs ); \
sewardj018f7622002-05-15 21:13:39 +0000987 } while (0)
988
njnd3040452003-05-19 15:04:06 +0000989#define SET_SYSCALL_RETVAL(zztid, zzval) \
990 SET_THREAD_REG(zztid, zzval, eax, EAX, post_reg_write_syscall_return)
991
njnd3040452003-05-19 15:04:06 +0000992#define SET_SIGNAL_ESP(zztid, zzval) \
993 SET_THREAD_REG(zztid, zzval, esp, ESP, post_reg_write_deliver_signal)
994
995#define SET_CLREQ_RETVAL(zztid, zzval) \
996 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_clientreq_return)
997
998#define SET_CLCALL_RETVAL(zztid, zzval, f) \
999 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_clientcall_return, f)
1000
1001#define SET_PTHREQ_ESP(zztid, zzval) \
1002 SET_THREAD_REG(zztid, zzval, esp, ESP, post_reg_write_pthread_return)
1003
1004#define SET_PTHREQ_RETVAL(zztid, zzval) \
1005 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_pthread_return)
sewardj018f7622002-05-15 21:13:39 +00001006
sewardj2e93c502002-04-12 11:12:52 +00001007
1008/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001009 Exports of vg_signals.c
1010 ------------------------------------------------------------------ */
1011
jsgf855d93d2003-10-13 22:26:55 +00001012extern Bool VG_(do_signal_routing); /* whether scheduler LWP has to route signals */
1013
1014/* RT signal allocation */
1015extern Int VG_(sig_rtmin);
1016extern Int VG_(sig_rtmax);
1017extern Int VG_(sig_alloc_rtsig) ( Int high );
1018
sewardjde4a1d02002-03-22 01:27:54 +00001019extern void VG_(sigstartup_actions) ( void );
sewardj839299f2003-06-14 11:57:59 +00001020extern void VG_(sigshutdown_actions) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001021
jsgf855d93d2003-10-13 22:26:55 +00001022extern void VG_(deliver_signal) ( ThreadId tid, const vki_ksiginfo_t *, Bool async );
sewardjde4a1d02002-03-22 01:27:54 +00001023extern void VG_(unblock_host_signal) ( Int sigNo );
sewardj018f7622002-05-15 21:13:39 +00001024extern void VG_(handle_SCSS_change) ( Bool force_update );
1025
jsgf855d93d2003-10-13 22:26:55 +00001026extern Bool VG_(is_sig_ign) ( Int sigNo );
1027
1028/* Route pending signals from the scheduler LWP to the appropriate
1029 thread LWP. */
1030extern void VG_(route_signals) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001031
1032/* Fake system calls for signal handling. */
sewardj2342c972002-05-22 23:34:20 +00001033extern void VG_(do__NR_sigaltstack) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +00001034extern void VG_(do__NR_sigaction) ( ThreadId tid );
nethercote85cdd342004-08-01 22:36:40 +00001035extern void VG_(do__NR_sigprocmask) ( ThreadId tid, Int how,
sewardj018f7622002-05-15 21:13:39 +00001036 vki_ksigset_t* set,
1037 vki_ksigset_t* oldset );
nethercote85cdd342004-08-01 22:36:40 +00001038extern void VG_(do_pthread_sigmask_SCSS_upd) ( ThreadId tid, Int how,
sewardj018f7622002-05-15 21:13:39 +00001039 vki_ksigset_t* set,
1040 vki_ksigset_t* oldset );
sewardjefbfcdf2002-06-19 17:35:45 +00001041
sewardj2e93c502002-04-12 11:12:52 +00001042/* Modify the current thread's state once we have detected it is
1043 returning from a signal handler. */
sewardj77e466c2002-04-14 02:29:29 +00001044extern Bool VG_(signal_returns) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +00001045
sewardj2e93c502002-04-12 11:12:52 +00001046/* Handy utilities to block/restore all host signals. */
1047extern void VG_(block_all_host_signals)
1048 ( /* OUT */ vki_ksigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +00001049extern void VG_(restore_all_host_signals)
sewardj2e93c502002-04-12 11:12:52 +00001050 ( /* IN */ vki_ksigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +00001051
jsgf855d93d2003-10-13 22:26:55 +00001052extern void VG_(kill_self)(Int sigNo);
1053
fitzhardingef1beb252004-03-16 09:49:08 +00001054/* These function synthesize a fault, as if the running instruction
1055 had had a fault. These functions do not return - they longjmp back
1056 into the scheduler so the signal can be delivered. */
1057extern void VG_(synth_fault) (ThreadId tid);
1058extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
1059extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
1060
1061
sewardjde4a1d02002-03-22 01:27:54 +00001062/* ---------------------------------------------------------------------
1063 Exports of vg_mylibc.c
1064 ------------------------------------------------------------------ */
1065
njne427a662002-10-02 11:08:25 +00001066#define vg_assert(expr) \
1067 ((void) ((expr) ? 0 : \
1068 (VG_(core_assert_fail) (VG__STRING(expr), \
1069 __FILE__, __LINE__, \
1070 __PRETTY_FUNCTION__), 0)))
1071__attribute__ ((__noreturn__))
daywalker3222e0a2003-09-18 01:39:50 +00001072extern void VG_(core_assert_fail) ( const Char* expr, const Char* file,
1073 Int line, const Char* fn );
njne427a662002-10-02 11:08:25 +00001074__attribute__ ((__noreturn__))
1075extern void VG_(core_panic) ( Char* str );
sewardjde4a1d02002-03-22 01:27:54 +00001076
njn25e49d8e72002-09-23 09:36:25 +00001077/* Skins use VG_(strdup)() which doesn't expose ArenaId */
1078extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +00001079
njn25e49d8e72002-09-23 09:36:25 +00001080extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +00001081extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +00001082
fitzhardinge98abfc72003-12-16 02:05:15 +00001083/* system/mman.h */
nethercoteb4250ae2004-07-10 16:50:09 +00001084extern void* VG_(mmap)( void* start, UInt length, UInt prot, UInt flags,
1085 UInt sf_flags, UInt fd, UInt offset );
fitzhardinge98abfc72003-12-16 02:05:15 +00001086extern Int VG_(munmap)( void* start, Int length );
1087extern Int VG_(mprotect)( void *start, Int length, UInt prot );
1088
1089
jsgf855d93d2003-10-13 22:26:55 +00001090/* Move an fd into the Valgrind-safe range */
1091Int VG_(safe_fd)(Int oldfd);
1092
sewardj570f8902002-11-03 11:44:36 +00001093extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +00001094
1095/* --- Connecting over the network --- */
1096extern Int VG_(connect_via_socket)( UChar* str );
1097
fitzhardinge98abfc72003-12-16 02:05:15 +00001098/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +00001099extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
1100 const Char *val );
1101extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
1102extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +00001103
1104/* ---------------------------------------------------------------------
1105 Exports of vg_message.c
1106 ------------------------------------------------------------------ */
1107
1108/* Low-level -- send bytes directly to the message sink. Do not
1109 use. */
1110extern void VG_(send_bytes_to_logging_sink) ( Char* msg, Int nbytes );
1111
1112
sewardjde4a1d02002-03-22 01:27:54 +00001113/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001114 Exports of vg_demangle.c
1115 ------------------------------------------------------------------ */
1116
1117extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
1118
sewardjde4a1d02002-03-22 01:27:54 +00001119/* ---------------------------------------------------------------------
1120 Exports of vg_from_ucode.c
1121 ------------------------------------------------------------------ */
1122
sewardj22854b92002-11-30 14:00:47 +00001123extern UChar* VG_(emit_code) ( UCodeBlock* cb, Int* nbytes, UShort jumps[VG_MAX_JUMPS] );
sewardjde4a1d02002-03-22 01:27:54 +00001124
njn25e49d8e72002-09-23 09:36:25 +00001125extern void VG_(print_ccall_stats) ( void );
1126extern void VG_(print_UInstr_histogram) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001127
sewardj22854b92002-11-30 14:00:47 +00001128extern void VG_(unchain_jumpsite) ( Addr jumpsite );
1129extern Addr VG_(get_jmp_dest) ( Addr jumpsite );
sewardj22854b92002-11-30 14:00:47 +00001130
sewardjde4a1d02002-03-22 01:27:54 +00001131/* ---------------------------------------------------------------------
1132 Exports of vg_to_ucode.c
1133 ------------------------------------------------------------------ */
1134
fitzhardingec2dbbac2004-01-23 23:09:01 +00001135Bool VG_(cpu_has_feature)(UInt feat);
1136
sewardjde4a1d02002-03-22 01:27:54 +00001137extern Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 );
sewardjde4a1d02002-03-22 01:27:54 +00001138
1139/* ---------------------------------------------------------------------
1140 Exports of vg_translate.c
1141 ------------------------------------------------------------------ */
1142
njn810086f2002-11-14 12:42:47 +00001143/* Expandable arrays of uinstrs. */
1144struct _UCodeBlock {
sewardj22854b92002-11-30 14:00:47 +00001145 Addr orig_eip;
njn810086f2002-11-14 12:42:47 +00001146 Int used;
1147 Int size;
1148 UInstr* instrs;
1149 Int nextTemp;
1150};
1151
1152extern UCodeBlock* VG_(alloc_UCodeBlock) ( void );
1153
nethercotebee3fd92004-08-02 15:17:43 +00001154extern void VG_(translate) ( ThreadId tid,
1155 Addr orig_addr,
1156 UInt* orig_size,
1157 Addr* trans_addr,
1158 UInt* trans_size,
1159 UShort jumps[VG_MAX_JUMPS]);
sewardjde4a1d02002-03-22 01:27:54 +00001160
nethercotebee3fd92004-08-02 15:17:43 +00001161extern Bool VG_(saneUInstr) ( Bool beforeRA, Bool beforeLiveness,
1162 UInstr* u );
1163extern void VG_(saneUCodeBlock) ( UCodeBlock* cb );
1164extern Bool VG_(saneUCodeBlockCalls) ( UCodeBlock* cb );
sewardjde4a1d02002-03-22 01:27:54 +00001165
nethercotebee3fd92004-08-02 15:17:43 +00001166extern void VG_(print_reg_alloc_stats) ( void );
sewardjb5ff83e2002-12-01 19:40:49 +00001167
sewardjde4a1d02002-03-22 01:27:54 +00001168/* ---------------------------------------------------------------------
1169 Exports of vg_execontext.c.
1170 ------------------------------------------------------------------ */
1171
1172/* Records the PC and a bit of the call chain. The first 4 %eip
1173 values are used in comparisons do remove duplicate errors, and for
1174 comparing against suppression specifications. The rest are purely
1175 informational (but often important). */
1176
njn25e49d8e72002-09-23 09:36:25 +00001177struct _ExeContext {
1178 struct _ExeContext * next;
1179 /* Variable-length array. The size is VG_(clo_backtrace_size); at
njn6c846552003-09-16 07:41:43 +00001180 least 1, at most VG_DEEPEST_BACKTRACE. [0] is the current %eip,
njn25e49d8e72002-09-23 09:36:25 +00001181 [1] is its caller, [2] is the caller of [1], etc. */
1182 Addr eips[0];
1183};
sewardjde4a1d02002-03-22 01:27:54 +00001184
1185
sewardjde4a1d02002-03-22 01:27:54 +00001186/* Print stats (informational only). */
1187extern void VG_(show_ExeContext_stats) ( void );
1188
njn25e49d8e72002-09-23 09:36:25 +00001189/* Like VG_(get_ExeContext), but with a slightly different type */
1190extern ExeContext* VG_(get_ExeContext2) ( Addr eip, Addr ebp,
1191 Addr ebp_min, Addr ebp_max );
sewardjde4a1d02002-03-22 01:27:54 +00001192
1193
1194/* ---------------------------------------------------------------------
1195 Exports of vg_errcontext.c.
1196 ------------------------------------------------------------------ */
1197
njn25e49d8e72002-09-23 09:36:25 +00001198extern void VG_(load_suppressions) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001199
njn25e49d8e72002-09-23 09:36:25 +00001200extern void VG_(record_pthread_error) ( ThreadId tid, Char* msg );
sewardjde4a1d02002-03-22 01:27:54 +00001201
njn25e49d8e72002-09-23 09:36:25 +00001202extern void VG_(show_all_errors) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001203
nethercotef2b11482004-08-02 12:36:01 +00001204extern Bool VG_(is_action_requested) ( Char* action, Bool* clo );
njn43c799e2003-04-08 00:08:52 +00001205
nethercotef2b11482004-08-02 12:36:01 +00001206extern UInt VG_(get_n_errs_found) ( void );
njn47363ab2003-04-21 13:24:40 +00001207
sewardjde4a1d02002-03-22 01:27:54 +00001208/* ---------------------------------------------------------------------
1209 Exports of vg_procselfmaps.c
1210 ------------------------------------------------------------------ */
1211
njnfa1016e2003-09-25 17:54:11 +00001212/* Reads /proc/self/maps into a static buffer which can be parsed by
1213 VG_(parse_procselfmaps)(). */
1214extern void VG_(read_procselfmaps) ( void );
njn3e884182003-04-15 13:03:23 +00001215
1216/* Parses /proc/self/maps, calling `record_mapping' for each entry. If
1217 `read_from_file' is True, /proc/self/maps is read directly, otherwise
1218 it's read from the buffer filled by VG_(read_procselfmaps_contents)(). */
sewardjde4a1d02002-03-22 01:27:54 +00001219extern
njnfa1016e2003-09-25 17:54:11 +00001220void VG_(parse_procselfmaps) (
fitzhardinge98abfc72003-12-16 02:05:15 +00001221 void (*record_mapping)( Addr addr, UInt len, Char rr, Char ww, Char xx,
nethercote85cdd342004-08-01 22:36:40 +00001222 UInt dev, UInt ino, ULong foff,
1223 const UChar *filename ) );
sewardjde4a1d02002-03-22 01:27:54 +00001224
1225
1226/* ---------------------------------------------------------------------
1227 Exports of vg_symtab2.c
1228 ------------------------------------------------------------------ */
1229
fitzhardinge98abfc72003-12-16 02:05:15 +00001230typedef struct _Segment Segment;
1231
1232extern Bool VG_(is_object_file) ( const void *hdr );
njnfa1016e2003-09-25 17:54:11 +00001233extern void VG_(mini_stack_dump) ( Addr eips[], UInt n_eips );
fitzhardinge98abfc72003-12-16 02:05:15 +00001234extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +00001235extern void VG_(symtab_incref) ( SegInfo * );
1236extern void VG_(symtab_decref) ( SegInfo *, Addr a, UInt len );
sewardjde4a1d02002-03-22 01:27:54 +00001237
njn25e49d8e72002-09-23 09:36:25 +00001238extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +00001239
fitzhardinge98abfc72003-12-16 02:05:15 +00001240/* Set up some default redirects */
1241extern void VG_(setup_code_redirect_table) ( void );
sewardj25c7c3a2003-07-10 00:17:58 +00001242
fitzhardinge98abfc72003-12-16 02:05:15 +00001243/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +00001244extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +00001245
1246/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001247 Exports of vg_main.c
1248 ------------------------------------------------------------------ */
1249
sewardjb91ae7f2003-04-29 23:50:00 +00001250/* Is this a SSE/SSE2-capable CPU? If so, we had better save/restore
1251 the SSE state all over the place. This is set up very early, in
nethercote1d447092004-02-01 17:29:59 +00001252 main(). We have to determine it early since we can't even
sewardjb91ae7f2003-04-29 23:50:00 +00001253 correctly snapshot the startup machine state without it. */
1254extern Bool VG_(have_ssestate);
1255
sewardj73cf3bc2002-11-03 03:20:15 +00001256/* Tell the logging mechanism whether we are logging to a file
1257 descriptor or a socket descriptor. */
1258extern Bool VG_(logging_to_filedes);
1259
njn25e49d8e72002-09-23 09:36:25 +00001260/* Sanity checks which may be done at any time. The scheduler decides when. */
1261extern void VG_(do_sanity_checks) ( Bool force_expensive );
1262
fitzhardinge98abfc72003-12-16 02:05:15 +00001263/* Address space */
1264extern Addr VG_(client_base); /* client address space limits */
1265extern Addr VG_(client_end);
1266extern Addr VG_(client_mapbase); /* base of mappings */
1267extern Addr VG_(clstk_base); /* client stack range */
1268extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +00001269extern Addr VG_(client_trampoline_code);
1270
fitzhardinge98abfc72003-12-16 02:05:15 +00001271extern Addr VG_(brk_base); /* start of brk */
1272extern Addr VG_(brk_limit); /* current brk */
1273extern Addr VG_(shadow_base); /* skin's shadow memory */
1274extern Addr VG_(shadow_end);
1275extern Addr VG_(valgrind_base); /* valgrind's address range */
fitzhardinge98abfc72003-12-16 02:05:15 +00001276extern Addr VG_(valgrind_end);
1277
fitzhardingeb50068f2004-02-24 23:42:55 +00001278extern vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
1279
fitzhardinge98abfc72003-12-16 02:05:15 +00001280/* stage1 executable file descriptor */
fitzhardingea49f9b52003-12-16 22:26:45 +00001281extern Int VG_(vgexecfd);
1282
1283/* client executable file descriptor */
1284extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +00001285
njn9b007f62003-04-07 14:40:25 +00001286/* Determine if %esp adjustment must be noted */
njnf4ce3d32003-02-10 10:17:26 +00001287extern Bool VG_(need_to_handle_esp_assignment) ( void );
1288
sewardjde4a1d02002-03-22 01:27:54 +00001289/* Called when some unhandleable client behaviour is detected.
1290 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +00001291extern void VG_(unimplemented) ( Char* msg )
1292 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +00001293
njn25e49d8e72002-09-23 09:36:25 +00001294/* Similarly, we have to ask for signals to be delivered on an alternative
1295 stack, since it is possible, although unlikely, that we'll have to run
1296 client code from inside the Valgrind-installed signal handler. If this
1297 happens it will be done by vg_deliver_signal_immediately(). */
njn6eba4ef2003-05-01 08:06:41 +00001298extern UInt VG_(sigstack)[VG_SIGSTACK_SIZE_W];
sewardjde4a1d02002-03-22 01:27:54 +00001299
fitzhardinge98abfc72003-12-16 02:05:15 +00001300/* Valgrind's argc and argv */
1301extern Int VG_(vg_argc);
1302extern Char **VG_(vg_argv);
1303
nethercote04d0fbc2004-01-26 16:48:06 +00001304/* Something of a function looking for a home ... start up debugger. */
1305extern void VG_(start_debugger) ( Int tid );
sewardjde4a1d02002-03-22 01:27:54 +00001306
sewardjde4a1d02002-03-22 01:27:54 +00001307/* Counts downwards in vg_run_innerloop. */
1308extern UInt VG_(dispatch_ctr);
1309
sewardj7e87e382002-05-03 19:09:05 +00001310/* This is the ThreadId of the last thread the scheduler ran. */
1311extern ThreadId VG_(last_run_tid);
1312
jsgf855d93d2003-10-13 22:26:55 +00001313/* If we're doing the default action of a fatal signal */
nethercote31294822004-08-02 13:15:26 +00001314extern jmp_buf* VG_(fatal_signal_jmpbuf_ptr);
1315extern Int VG_(fatal_sigNo); /* the fatal signal */
sewardjde4a1d02002-03-22 01:27:54 +00001316
1317/* --- Counters, for informational purposes only. --- */
1318
1319/* Number of lookups which miss the fast tt helper. */
1320extern UInt VG_(tt_fast_misses);
1321
sewardjc0d8f682002-11-30 00:49:43 +00001322/* Counts for TT/TC informational messages. */
sewardjde4a1d02002-03-22 01:27:54 +00001323
sewardjde4a1d02002-03-22 01:27:54 +00001324/* Number and total o/t size of translations overall. */
1325extern UInt VG_(overall_in_count);
1326extern UInt VG_(overall_in_osize);
1327extern UInt VG_(overall_in_tsize);
1328/* Number and total o/t size of discards overall. */
1329extern UInt VG_(overall_out_count);
1330extern UInt VG_(overall_out_osize);
1331extern UInt VG_(overall_out_tsize);
sewardjc0d8f682002-11-30 00:49:43 +00001332/* The number of discards of TT/TC. */
1333extern UInt VG_(number_of_tc_discards);
sewardj22854b92002-11-30 14:00:47 +00001334/* Counts of chain and unchain operations done. */
1335extern UInt VG_(bb_enchain_count);
1336extern UInt VG_(bb_dechain_count);
1337/* Number of unchained jumps performed. */
1338extern UInt VG_(unchained_jumps_done);
1339
nethercote844e7122004-08-02 15:27:22 +00001340extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +00001341
sewardjde4a1d02002-03-22 01:27:54 +00001342/* ---------------------------------------------------------------------
1343 Exports of vg_memory.c
1344 ------------------------------------------------------------------ */
1345
fitzhardinge98abfc72003-12-16 02:05:15 +00001346/* A Segment is mapped piece of client memory. This covers all kinds
1347 of mapped memory (exe, brk, mmap, .so, shm, stack, etc)
1348
1349 We try to encode everything we know about a particular segment here.
1350*/
nethercote85cdd342004-08-01 22:36:40 +00001351#define SF_FIXED (1 << 0) // client asked for MAP_FIXED
1352#define SF_SHARED (1 << 1) // shared
1353#define SF_SHM (1 << 2) // SYSV SHM (also SF_SHARED)
1354#define SF_MMAP (1 << 3) // mmap memory
1355#define SF_FILE (1 << 4) // mapping is backed by a file
1356#define SF_STACK (1 << 5) // is a stack
1357#define SF_GROWDOWN (1 << 6) // segment grows down
1358#define SF_GROWUP (1 << 7) // segment grows up
1359#define SF_EXEC (1 << 8) // segment created by exec
1360#define SF_DYNLIB (1 << 9) // mapped from dynamic library
1361#define SF_NOSYMS (1 << 10) // don't load syms, even if present
1362#define SF_BRK (1 << 11) // brk segment
1363#define SF_CORE (1 << 12) // allocated by core on behalf of the client
1364#define SF_VALGRIND (1 << 13) // a valgrind-internal mapping - not in client
1365#define SF_CODE (1 << 14) // segment contains cached code
fitzhardinge98abfc72003-12-16 02:05:15 +00001366
1367struct _Segment {
1368 UInt prot; /* VKI_PROT_* */
1369 UInt flags; /* SF_* */
1370
1371 Addr addr; /* mapped addr (page aligned) */
1372 UInt len; /* size of mapping (page aligned) */
1373
1374 /* These are valid if (flags & SF_FILE) */
1375 ULong offset; /* file offset */
1376 const Char *filename; /* filename (NULL if unknown) */
1377 UInt dev; /* device */
1378 UInt ino; /* inode */
1379
1380 SegInfo *symtab; /* symbol table */
1381};
1382
1383/* segment mapped from a file descriptor */
1384extern void VG_(map_fd_segment) (Addr addr, UInt len, UInt prot, UInt flags,
1385 Int fd, ULong off, const Char *filename);
1386
1387/* segment mapped from a file */
1388extern void VG_(map_file_segment)(Addr addr, UInt len, UInt prot, UInt flags,
1389 UInt dev, UInt ino, ULong off, const Char *filename);
1390
1391/* simple segment */
1392extern void VG_(map_segment) (Addr addr, UInt len, UInt prot, UInt flags);
1393
1394extern void VG_(unmap_range) (Addr addr, UInt len);
1395extern void VG_(mprotect_range)(Addr addr, UInt len, UInt prot);
1396extern Addr VG_(find_map_space)(Addr base, UInt len, Bool for_client);
1397
1398extern Segment *VG_(find_segment)(Addr a);
fitzhardinged65dcad2004-03-13 02:06:58 +00001399extern Segment *VG_(first_segment)(void);
fitzhardinge98abfc72003-12-16 02:05:15 +00001400extern Segment *VG_(next_segment)(Segment *);
1401
1402extern Bool VG_(seg_contains)(const Segment *s, Addr ptr, UInt size);
1403extern Bool VG_(seg_overlaps)(const Segment *s, Addr ptr, UInt size);
1404
thughes9aaebc32004-07-15 23:13:37 +00001405extern void VG_(pad_address_space)(void);
1406extern void VG_(unpad_address_space)(void);
1407
njn9b007f62003-04-07 14:40:25 +00001408extern __attribute__((regparm(1)))
njnfa1016e2003-09-25 17:54:11 +00001409 void VG_(unknown_esp_update) ( Addr new_ESP );
sewardjde4a1d02002-03-22 01:27:54 +00001410
jsgf855d93d2003-10-13 22:26:55 +00001411/* ---------------------------------------------------------------------
1412 Exports of vg_proxylwp.c
1413 ------------------------------------------------------------------ */
1414
1415/* Issue a syscall for thread tid */
1416extern Int VG_(sys_issue)(int tid);
1417
1418extern void VG_(proxy_init) ( void );
1419extern void VG_(proxy_create) ( ThreadId tid );
1420extern void VG_(proxy_delete) ( ThreadId tid, Bool force );
1421extern void VG_(proxy_results) ( void );
1422extern void VG_(proxy_sendsig) ( ThreadId tid, Int signo );
1423extern void VG_(proxy_setsigmask)(ThreadId tid);
1424extern void VG_(proxy_sigack) ( ThreadId tid, const vki_ksigset_t *);
1425extern void VG_(proxy_abort_syscall) ( ThreadId tid );
1426extern void VG_(proxy_waitsig) ( void );
fitzhardinge31ba9052004-01-16 02:15:23 +00001427extern void VG_(proxy_wait_sys) (ThreadId tid, Bool restart);
jsgf855d93d2003-10-13 22:26:55 +00001428
nethercote85cdd342004-08-01 22:36:40 +00001429extern void VG_(proxy_shutdown) ( void ); // shut down the syscall workers
1430extern Int VG_(proxy_resfd) ( void ); // FD something can select on to know
1431 // a syscall finished
jsgf855d93d2003-10-13 22:26:55 +00001432
1433/* Sanity-check the whole proxy-LWP machinery */
1434void VG_(proxy_sanity)(void);
1435
1436/* Send a signal from a thread's proxy to the thread. This longjmps
1437 back into the proxy's main loop, so it doesn't return. */
1438__attribute__ ((__noreturn__))
1439extern void VG_(proxy_handlesig)( const vki_ksiginfo_t *siginfo,
1440 const struct vki_sigcontext *sigcontext );
1441
sewardjde4a1d02002-03-22 01:27:54 +00001442/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001443 Exports of vg_syscalls.c
sewardjde4a1d02002-03-22 01:27:54 +00001444 ------------------------------------------------------------------ */
1445
fitzhardinge98abfc72003-12-16 02:05:15 +00001446extern Char *VG_(resolve_filename)(Int fd);
njn25e49d8e72002-09-23 09:36:25 +00001447
jsgf855d93d2003-10-13 22:26:55 +00001448extern Bool VG_(pre_syscall) ( ThreadId tid );
fitzhardinge31ba9052004-01-16 02:15:23 +00001449extern void VG_(post_syscall)( ThreadId tid, Bool restart );
sewardjde4a1d02002-03-22 01:27:54 +00001450
1451extern Bool VG_(is_kerror) ( Int res );
1452
jsgf855d93d2003-10-13 22:26:55 +00001453/* Internal atfork handlers */
1454typedef void (*vg_atfork_t)(ThreadId);
1455extern void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child);
sewardjde4a1d02002-03-22 01:27:54 +00001456
rjwalshf5f536f2003-11-17 17:45:00 +00001457/* fd leakage calls. */
1458extern void VG_(init_preopened_fds) ( void );
1459extern void VG_(fd_stats) ( void );
1460
sewardjde4a1d02002-03-22 01:27:54 +00001461/* ---------------------------------------------------------------------
1462 Exports of vg_transtab.c
1463 ------------------------------------------------------------------ */
1464
njn25e49d8e72002-09-23 09:36:25 +00001465/* The fast-cache for tt-lookup. */
1466extern Addr VG_(tt_fast)[VG_TT_FAST_SIZE];
1467
sewardjc0d8f682002-11-30 00:49:43 +00001468extern void VG_(add_to_trans_tab) ( Addr orig_addr, Int orig_size,
sewardj22854b92002-11-30 14:00:47 +00001469 Addr trans_addr, Int trans_size,
1470 UShort jumps[VG_MAX_JUMPS]);
sewardj6c3769f2002-11-29 01:02:45 +00001471
sewardj97ad5522003-05-04 12:32:56 +00001472extern void VG_(invalidate_translations) ( Addr start, UInt range, Bool unchain_blocks );
sewardjde4a1d02002-03-22 01:27:54 +00001473
sewardj18d75132002-05-16 11:06:21 +00001474extern void VG_(init_tt_tc) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001475
1476extern void VG_(sanity_check_tc_tt) ( void );
1477extern Addr VG_(search_transtab) ( Addr original_addr );
1478
sewardjde4a1d02002-03-22 01:27:54 +00001479/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001480 Exports of vg_syscall.S
1481 ------------------------------------------------------------------ */
1482
jsgf855d93d2003-10-13 22:26:55 +00001483extern Int VG_(do_syscall) ( UInt, ... );
1484extern Int VG_(clone) ( Int (*fn)(void *), void *stack, Int flags, void *arg,
1485 Int *child_tid, Int *parent_tid);
fitzhardinge4f10ada2004-06-03 10:00:42 +00001486extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +00001487
1488/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001489 Exports of vg_dispatch.S
1490 ------------------------------------------------------------------ */
1491
sewardj2e93c502002-04-12 11:12:52 +00001492/* Run a thread for a (very short) while, until some event happens
1493 which means we need to defer to the scheduler. */
1494extern UInt VG_(run_innerloop) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001495
sewardj22854b92002-11-30 14:00:47 +00001496/* The patching routing called when a BB wants to chain itself to
1497 another. */
1498extern UInt VG_(patch_me);
sewardjde4a1d02002-03-22 01:27:54 +00001499
1500/* ---------------------------------------------------------------------
1501 Exports of vg_helpers.S
1502 ------------------------------------------------------------------ */
1503
sewardjde4a1d02002-03-22 01:27:54 +00001504/* Mul, div, etc, -- we don't codegen these directly. */
1505extern void VG_(helper_idiv_64_32);
1506extern void VG_(helper_div_64_32);
1507extern void VG_(helper_idiv_32_16);
1508extern void VG_(helper_div_32_16);
1509extern void VG_(helper_idiv_16_8);
1510extern void VG_(helper_div_16_8);
1511
1512extern void VG_(helper_imul_32_64);
1513extern void VG_(helper_mul_32_64);
1514extern void VG_(helper_imul_16_32);
1515extern void VG_(helper_mul_16_32);
1516extern void VG_(helper_imul_8_16);
1517extern void VG_(helper_mul_8_16);
1518
1519extern void VG_(helper_CLD);
1520extern void VG_(helper_STD);
1521extern void VG_(helper_get_dirflag);
1522
sewardj7d78e782002-06-02 00:04:00 +00001523extern void VG_(helper_CLC);
1524extern void VG_(helper_STC);
nethercote1018bdd2004-02-11 23:33:29 +00001525extern void VG_(helper_CMC);
sewardj7d78e782002-06-02 00:04:00 +00001526
sewardjde4a1d02002-03-22 01:27:54 +00001527extern void VG_(helper_shldl);
1528extern void VG_(helper_shldw);
1529extern void VG_(helper_shrdl);
1530extern void VG_(helper_shrdw);
1531
daywalkerb18d2532003-09-27 20:15:01 +00001532extern void VG_(helper_IN);
1533extern void VG_(helper_OUT);
1534
sewardjde4a1d02002-03-22 01:27:54 +00001535extern void VG_(helper_RDTSC);
1536extern void VG_(helper_CPUID);
1537
nethercote1018bdd2004-02-11 23:33:29 +00001538extern void VG_(helper_bsfw);
1539extern void VG_(helper_bsfl);
1540extern void VG_(helper_bsrw);
1541extern void VG_(helper_bsrl);
sewardjde4a1d02002-03-22 01:27:54 +00001542
1543extern void VG_(helper_fstsw_AX);
1544extern void VG_(helper_SAHF);
njnd6251f12003-06-03 13:38:51 +00001545extern void VG_(helper_LAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001546extern void VG_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001547extern void VG_(helper_DAA);
nethercote1018bdd2004-02-11 23:33:29 +00001548extern void VG_(helper_AAS);
1549extern void VG_(helper_AAA);
1550extern void VG_(helper_AAD);
1551extern void VG_(helper_AAM);
sewardjde4a1d02002-03-22 01:27:54 +00001552
muellerf217c732004-01-02 22:42:29 +00001553extern void VG_(helper_cmpxchg8b);
1554
sewardj51096432002-12-14 23:59:09 +00001555extern void VG_(helper_undefined_instruction);
1556
fitzhardinge92360792003-12-24 10:11:11 +00001557/* Information about trampoline code (for signal return and syscalls) */
1558extern const Char VG_(trampoline_code_start);
1559extern const Int VG_(trampoline_code_length);
1560extern const Int VG_(tramp_sigreturn_offset);
1561extern const Int VG_(tramp_syscall_offset);
sewardj20917d82002-05-28 01:36:45 +00001562
njn4f9c9342002-04-29 16:03:24 +00001563/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001564 Things relating to the used skin
njn4f9c9342002-04-29 16:03:24 +00001565 ------------------------------------------------------------------ */
1566
fitzhardinge98abfc72003-12-16 02:05:15 +00001567#define VG_TRACK(fn, args...) \
1568 do { \
1569 if (VG_(defined_##fn)()) \
1570 SK_(fn)(args); \
1571 } while(0)
sewardj18d75132002-05-16 11:06:21 +00001572
fitzhardinge98abfc72003-12-16 02:05:15 +00001573__attribute__ ((noreturn))
1574extern void VG_(missing_tool_func) ( const Char* fn );
sewardj18d75132002-05-16 11:06:21 +00001575
sewardjde4a1d02002-03-22 01:27:54 +00001576/* ---------------------------------------------------------------------
1577 The state of the simulated CPU.
1578 ------------------------------------------------------------------ */
1579
sewardjde4a1d02002-03-22 01:27:54 +00001580/* ---------------------------------------------------------------------
1581 Offsets into baseBlock for everything which needs to referred to
1582 from generated code. The order of these decls does not imply
1583 what the order of the actual offsets is. The latter is important
1584 and is set up in vg_main.c.
1585 ------------------------------------------------------------------ */
1586
1587/* An array of words. In generated code, %ebp always points to the
1588 start of this array. Useful stuff, like the simulated CPU state,
1589 and the addresses of helper functions, can then be found by
1590 indexing off %ebp. The following declares variables which, at
1591 startup time, are given values denoting offsets into baseBlock.
1592 These offsets are in *words* from the start of baseBlock. */
1593
sewardjb91ae7f2003-04-29 23:50:00 +00001594#define VG_BASEBLOCK_WORDS 400
sewardjde4a1d02002-03-22 01:27:54 +00001595
1596extern UInt VG_(baseBlock)[VG_BASEBLOCK_WORDS];
1597
1598
1599/* -----------------------------------------------------
1600 Read-write parts of baseBlock.
1601 -------------------------------------------------- */
1602
1603/* State of the simulated CPU. */
1604extern Int VGOFF_(m_eax);
1605extern Int VGOFF_(m_ecx);
1606extern Int VGOFF_(m_edx);
1607extern Int VGOFF_(m_ebx);
1608extern Int VGOFF_(m_esp);
1609extern Int VGOFF_(m_ebp);
1610extern Int VGOFF_(m_esi);
1611extern Int VGOFF_(m_edi);
1612extern Int VGOFF_(m_eflags);
sewardjb91ae7f2003-04-29 23:50:00 +00001613extern Int VGOFF_(m_ssestate);
sewardjde4a1d02002-03-22 01:27:54 +00001614extern Int VGOFF_(m_eip);
1615
sewardjfa492d42002-12-08 18:20:01 +00001616extern Int VGOFF_(m_dflag); /* D flag is handled specially */
1617
sewardj92a59562002-09-30 00:53:10 +00001618extern Int VGOFF_(m_cs);
1619extern Int VGOFF_(m_ss);
1620extern Int VGOFF_(m_ds);
1621extern Int VGOFF_(m_es);
1622extern Int VGOFF_(m_fs);
1623extern Int VGOFF_(m_gs);
1624
sewardjde4a1d02002-03-22 01:27:54 +00001625/* Reg-alloc spill area (VG_MAX_SPILLSLOTS words long). */
1626extern Int VGOFF_(spillslots);
1627
1628/* Records the valid bits for the 8 integer regs & flags reg. */
1629extern Int VGOFF_(sh_eax);
1630extern Int VGOFF_(sh_ecx);
1631extern Int VGOFF_(sh_edx);
1632extern Int VGOFF_(sh_ebx);
1633extern Int VGOFF_(sh_esp);
1634extern Int VGOFF_(sh_ebp);
1635extern Int VGOFF_(sh_esi);
1636extern Int VGOFF_(sh_edi);
1637extern Int VGOFF_(sh_eflags);
1638
sewardjde4a1d02002-03-22 01:27:54 +00001639/* -----------------------------------------------------
1640 Read-only parts of baseBlock.
1641 -------------------------------------------------- */
1642
sewardj92a59562002-09-30 00:53:10 +00001643/* This thread's LDT pointer. */
1644extern Int VGOFF_(ldt);
1645
fitzhardinge47735af2004-01-21 01:27:27 +00001646/* This thread's TLS pointer. */
1647extern Int VGOFF_(tls);
1648
njn211b6ad2003-02-03 12:33:31 +00001649/* Nb: Most helper offsets are in include/vg_skin.h, for use by skins */
sewardjde4a1d02002-03-22 01:27:54 +00001650
sewardj51096432002-12-14 23:59:09 +00001651extern Int VGOFF_(helper_undefined_instruction);
1652
njn25e49d8e72002-09-23 09:36:25 +00001653/* For storing extension-specific helpers, determined at runtime. The addr
1654 * and offset arrays together form a (addr, offset) map that allows a
1655 * helper's baseBlock offset to be computed from its address. It's done
1656 * like this so CCALL_M_Ns and other helper calls can use the function
1657 * address rather than having to much around with offsets. */
1658extern UInt VG_(n_compact_helpers);
1659extern UInt VG_(n_noncompact_helpers);
1660
1661extern Addr VG_(compact_helper_addrs) [];
1662extern Int VG_(compact_helper_offsets)[];
1663
1664extern Addr VG_(noncompact_helper_addrs) [];
1665extern Int VG_(noncompact_helper_offsets)[];
1666
sewardjde4a1d02002-03-22 01:27:54 +00001667#endif /* ndef __VG_INCLUDE_H */
1668
sewardj3b2736a2002-03-24 12:18:35 +00001669
1670/* ---------------------------------------------------------------------
1671 Finally - autoconf-generated settings
1672 ------------------------------------------------------------------ */
1673
1674#include "config.h"
1675
sewardjde4a1d02002-03-22 01:27:54 +00001676/*--------------------------------------------------------------------*/
1677/*--- end vg_include.h ---*/
1678/*--------------------------------------------------------------------*/