blob: c55ec5291057c3b8cb81a6daac11d8bc8a3870e4 [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
njn717cde52005-05-10 02:47:21 +00003/*--- A header file for various private parts of Valgrind's core. ---*/
rjwalsh7109a8c2004-09-02 00:31:02 +00004/*--- core.h ---*/
sewardjde4a1d02002-03-22 01:27:54 +00005/*--------------------------------------------------------------------*/
6
7/*
njnb9c427c2004-12-01 14:14:42 +00008 This file is part of Valgrind, a dynamic binary instrumentation
9 framework.
sewardjde4a1d02002-03-22 01:27:54 +000010
njn53612422005-03-12 16:22:54 +000011 Copyright (C) 2000-2005 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000012 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000013
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
njn25e49d8e72002-09-23 09:36:25 +000029 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000030*/
31
rjwalsh7109a8c2004-09-02 00:31:02 +000032#ifndef __CORE_H
33#define __CORE_H
sewardjde4a1d02002-03-22 01:27:54 +000034
nethercote7be47252004-09-02 16:02:58 +000035/*
njn2521d322005-05-08 14:45:13 +000036 [This comment is not longer accurate -- we're switching to an easier to
37 understand module-based approach, with one or two headers per module,
38 rather than having monolithic headers as described. --njn 07-May-2005]
39
nethercote7be47252004-09-02 16:02:58 +000040 Header hierarchy:
41
42 - core C files include core.h
43 - core asm files include core_asm.h
44 - tool C files include tool.h
45 - tool asm files include tool_asm.h
46
47 - The hierarchy of the header files themselves is based around the
48 following rules:
49
50 - core headers include tool headers
51 - generic headers include arch/OS/platform headers
52 - C headers include asm headers
53
54 This gives the following hierarchy (only showing 'arch' headers, not
nethercote80cca432004-09-02 16:25:49 +000055 'os' or 'platform' headers), where arrows indicate inclusion, and
56 $VG_ARCH==x86:
nethercote7be47252004-09-02 16:02:58 +000057
nethercote80cca432004-09-02 16:25:49 +000058
59 (include/x86/tool_arch_asm.h?) <----- coregrind/x86/core_arch_asm.h
60 ^ ^ ^ ^
61 / \ / \
62 / \ / \
63 / \ / \
64 include/tool_asm.h <-\---- coregrind/core_asm.h \
65 ^ \ ^ \
66 \ include/x86/tool_arch.h <--------coregrind/x86/core_arch.h
67 \ ^ \ ^
68 \ / \ /
69 \ / \ /
70 \ / \ /
71 include/tool.h <------------ coregrind/core.h
72
nethercote7be47252004-09-02 16:02:58 +000073
74 Note that core.h contains the *declarations* of arch-specific functions
75 and variables, which can be used by the core_arch.h file of any
76 architecture. (The functions/variables are *defined* within arch/.)
77 However, arch-specific macros and types cannot go into core.h, because
78 there is no separation between declaration and definition for
79 macros/types, so they instead go into $VG_ARCH/core_arch.h.
nethercote80cca432004-09-02 16:25:49 +000080
81 The tool-specific headers are all in include/ so they can be seen by any
82 external tools.
nethercote7be47252004-09-02 16:02:58 +000083*/
84
jsgf855d93d2003-10-13 22:26:55 +000085/* For system call numbers __NR_... */
nethercotef94fe2f2004-09-10 14:23:59 +000086#include "vki_unistd.h"
jsgf855d93d2003-10-13 22:26:55 +000087
nethercote13343132004-09-02 15:49:09 +000088#include "core_asm.h" // asm stuff
89#include "tool.h" // tool stuff
nethercotebb4222b2004-09-10 17:42:11 +000090#include "core_arch.h" // arch-specific stuff, eg. x86/core_arch.h
nethercote8ff888f2004-11-17 17:11:45 +000091
92// Ugly: this is needed by linux/core_os.h
93typedef struct _ThreadState ThreadState;
94
nethercotebb4222b2004-09-10 17:42:11 +000095#include "core_platform.h" // platform-specific stuff,
96 // eg. x86-linux/core_platform.h
sewardjb5f6f512005-03-10 23:59:00 +000097#include "core_os.h" // OS-specific stuff, eg. linux/core_os.h
sewardjde4a1d02002-03-22 01:27:54 +000098
njn717cde52005-05-10 02:47:21 +000099#include "pub_core_mallocfree.h" // for type 'ArenaId'
njnd01fef72005-03-25 23:35:48 +0000100#include "pub_core_stacktrace.h" // for type 'StackTrace'
101
fitzhardinge39de4b42003-10-31 07:12:21 +0000102#include "valgrind.h"
sewardjde4a1d02002-03-22 01:27:54 +0000103
nethercote7be47252004-09-02 16:02:58 +0000104/* ---------------------------------------------------------------------
njn14319cc2005-03-13 06:26:22 +0000105 Global macros.
nethercote7be47252004-09-02 16:02:58 +0000106 ------------------------------------------------------------------ */
107
sewardjde4a1d02002-03-22 01:27:54 +0000108/* Max length of a text fragment used to construct error messages. */
njn47b209a2005-03-25 23:47:16 +0000109#define VG_ERRTXT_LEN 4096
sewardjde4a1d02002-03-22 01:27:54 +0000110
sewardjde4a1d02002-03-22 01:27:54 +0000111/* The maximum number of calls we're prepared to save in a
112 backtrace. */
113#define VG_DEEPEST_BACKTRACE 50
114
fitzhardinge98abfc72003-12-16 02:05:15 +0000115/* Useful macros */
116/* a - alignment - must be a power of 2 */
tomde2ec262005-03-29 12:16:10 +0000117#define ROUNDDN(p, a) ((Addr)(p) & ~((Addr)(a)-1))
fitzhardinge98abfc72003-12-16 02:05:15 +0000118#define ROUNDUP(p, a) ROUNDDN((p)+(a)-1, (a))
nethercote73b526f2004-10-31 18:48:21 +0000119#define PGROUNDDN(p) ROUNDDN(p, VKI_PAGE_SIZE)
120#define PGROUNDUP(p) ROUNDUP(p, VKI_PAGE_SIZE)
fitzhardinge98abfc72003-12-16 02:05:15 +0000121
sewardj51ac0872004-12-21 01:20:49 +0000122
nethercote80013e92004-09-05 20:39:51 +0000123/* ---------------------------------------------------------------------
124 Environment variables
125 ------------------------------------------------------------------ */
126
127/* The directory we look for all our auxillary files in */
128#define VALGRINDLIB "VALGRINDLIB"
129
130/* Additional command-line arguments; they are overridden by actual
131 command-line option. Each argument is separated by spaces. There
132 is no quoting mechanism.
133 */
134#define VALGRINDOPTS "VALGRIND_OPTS"
135
136/* If this variable is present in the environment, then valgrind will
137 not parse the command line for options at all; all options come
138 from this variable. Arguments are terminated by ^A (\001). There
139 is no quoting mechanism.
140
141 This variable is not expected to be set by anything other than
142 Valgrind itself, as part of its handling of execve with
143 --trace-children=yes. This variable should not be present in the
144 client environment.
145 */
146#define VALGRINDCLO "_VALGRIND_CLO"
147
fitzhardinge98abfc72003-12-16 02:05:15 +0000148
sewardjde4a1d02002-03-22 01:27:54 +0000149/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000150 Command-line-settable options
151 ------------------------------------------------------------------ */
152
sewardj4f094a72002-11-05 23:37:35 +0000153/* Default destination port to be used in logging over a network, if
154 none specified. */
155#define VG_CLO_DEFAULT_LOGPORT 1500
sewardj73cf3bc2002-11-03 03:20:15 +0000156
157/* The max number of suppression files. */
sewardjde4a1d02002-03-22 01:27:54 +0000158#define VG_CLO_MAX_SFILES 10
159
sewardj4cf05692002-10-27 20:28:29 +0000160/* Describes where logging output is to be sent. */
161typedef
162 enum {
163 VgLogTo_Fd,
164 VgLogTo_File,
sewardj603d4102005-01-11 14:01:02 +0000165 VgLogTo_FileExactly,
sewardj4cf05692002-10-27 20:28:29 +0000166 VgLogTo_Socket
167 } VgLogTo;
168
thughesad1c9562004-06-26 11:27:52 +0000169/* Application-visible file descriptor limits */
170extern Int VG_(fd_soft_limit);
171extern Int VG_(fd_hard_limit);
fitzhardingef0046f22003-12-18 02:39:22 +0000172
sewardj8b635a42004-11-22 19:01:47 +0000173/* Vex iropt control */
174extern VexControl VG_(clo_vex_control);
sewardj72f98ff2002-06-13 17:23:38 +0000175/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000176extern Bool VG_(clo_error_limit);
nethercote04d0fbc2004-01-26 16:48:06 +0000177/* Enquire about whether to attach to a debugger at errors? default: NO */
178extern Bool VG_(clo_db_attach);
179/* The debugger command? default: whatever gdb ./configure found */
180extern Char* VG_(clo_db_command);
sewardjd153fae2005-01-10 17:24:47 +0000181/* Generating a suppression for each error? default: 0 (NO)
182 Other values: 1 (yes, but ask user), 2 (yes, don't ask user) */
183extern Int VG_(clo_gen_suppressions);
sewardjde4a1d02002-03-22 01:27:54 +0000184/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
nethercote27fec902004-06-16 21:26:32 +0000185extern Int VG_(clo_sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000186/* Automatically attempt to demangle C++ names? default: YES */
187extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000188/* Simulate child processes? default: NO */
189extern Bool VG_(clo_trace_children);
sewardj4cf05692002-10-27 20:28:29 +0000190
191/* Where logging output is to be sent to.
192
nethercotef8548672004-06-21 12:42:35 +0000193 When log_to == VgLogTo_Fd, clo_log_fd holds the file id, and is
194 taken from the command line. clo_log_name is irrelevant.
sewardj4cf05692002-10-27 20:28:29 +0000195
nethercotef8548672004-06-21 12:42:35 +0000196 When log_to == VgLogTo_File, clo_log_name holds the log-file
197 name, and is taken from the command line. clo_log_fd is then
198 made to hold the relevant file id, by opening clo_log_name
sewardj4cf05692002-10-27 20:28:29 +0000199 (concatenated with the process ID) for writing.
200
nethercotef8548672004-06-21 12:42:35 +0000201 When log_to == VgLogTo_Socket, clo_log_name holds the
sewardj4cf05692002-10-27 20:28:29 +0000202 hostname:portnumber pair, and is taken from the command line.
nethercotef8548672004-06-21 12:42:35 +0000203 clo_log_fd is then made to hold the relevant file handle, by
sewardj4cf05692002-10-27 20:28:29 +0000204 opening a connection to said hostname:portnumber pair.
205
nethercotef8548672004-06-21 12:42:35 +0000206 Global default is to set log_to == VgLogTo_Fd and log_fd == 2
sewardj4cf05692002-10-27 20:28:29 +0000207 (stderr). */
208extern VgLogTo VG_(clo_log_to);
nethercotef8548672004-06-21 12:42:35 +0000209extern Int VG_(clo_log_fd);
210extern Char* VG_(clo_log_name);
sewardjde4a1d02002-03-22 01:27:54 +0000211
thughes6233a382004-08-21 11:10:44 +0000212/* Add timestamps to log messages? default: NO */
213extern Bool VG_(clo_time_stamp);
214
sewardj6024b212003-07-13 10:54:33 +0000215/* The file descriptor to read for input. default: 0 == stdin */
216extern Int VG_(clo_input_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000217/* The number of suppression files specified. */
218extern Int VG_(clo_n_suppressions);
219/* The names of the suppression files. */
220extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
221
sewardjc771b292004-11-30 18:55:21 +0000222/* DEBUG: print generated code? default: 00000000 ( == NO ) */
sewardjfa8ec112005-01-19 11:55:34 +0000223extern Bool VG_(clo_trace_flags);
224/* DEBUG: do bb profiling? default: 00000000 ( == NO ) */
225extern Bool VG_(clo_profile_flags);
sewardjc771b292004-11-30 18:55:21 +0000226/* DEBUG: if tracing codegen, be quiet until after this bb ( 0 ) */
227extern Int VG_(clo_trace_notbelow);
sewardjde4a1d02002-03-22 01:27:54 +0000228/* DEBUG: print system calls? default: NO */
229extern Bool VG_(clo_trace_syscalls);
230/* DEBUG: print signal details? default: NO */
231extern Bool VG_(clo_trace_signals);
232/* DEBUG: print symtab details? default: NO */
233extern Bool VG_(clo_trace_symtab);
sewardjce058b02005-05-01 08:55:38 +0000234/* DEBUG: print call-frame-info details? default: NO */
235extern Bool VG_(clo_trace_cfi);
sewardjb5f6f512005-03-10 23:59:00 +0000236/* DEBUG: print redirection details? default: NO */
237extern Bool VG_(clo_trace_redir);
sewardj8937c812002-04-12 20:12:20 +0000238/* DEBUG: print thread scheduling events? default: NO */
239extern Bool VG_(clo_trace_sched);
sewardjb5f6f512005-03-10 23:59:00 +0000240/* DEBUG: print pthreads calls? default: NO */
241extern Bool VG_(clo_trace_pthreads);
sewardjde4a1d02002-03-22 01:27:54 +0000242/* Display gory details for the k'th most popular error. default:
243 Infinity. */
244extern Int VG_(clo_dump_error);
245/* Number of parents of a backtrace. Default: 8. */
246extern Int VG_(clo_backtrace_size);
daywalker7e73e5f2003-07-04 16:18:15 +0000247/* Engage miscellaneous weird hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000248extern Char* VG_(clo_weird_hacks);
jsgf855d93d2003-10-13 22:26:55 +0000249
rjwalshf5f536f2003-11-17 17:45:00 +0000250/* Track open file descriptors? */
251extern Bool VG_(clo_track_fds);
252
sewardj858964b2002-10-05 14:15:43 +0000253/* Should we run __libc_freeres at exit? Sometimes causes crashes.
254 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
255 if the latter says False, then the setting of VG_(clo_weird_hacks)
nethercote996901a2004-08-03 13:29:09 +0000256 is ignored. Ie if a tool says no, I don't want this to run, that
sewardj858964b2002-10-05 14:15:43 +0000257 cannot be overridden from the command line. */
258extern Bool VG_(clo_run_libc_freeres);
fitzhardinge462f4f92003-12-18 02:10:54 +0000259/* Generate branch-prediction hints? */
260extern Bool VG_(clo_branchpred);
nethercote77eba602003-11-13 17:35:04 +0000261/* Continue stack traces below main()? Default: NO */
262extern Bool VG_(clo_show_below_main);
fitzhardinge98abfc72003-12-16 02:05:15 +0000263/* Test each client pointer dereference to check it's within the
264 client address space bounds */
265extern Bool VG_(clo_pointercheck);
sewardjb5f6f512005-03-10 23:59:00 +0000266/* Model the pthread library */
267extern Bool VG_(clo_model_pthreads);
sewardjde4a1d02002-03-22 01:27:54 +0000268
sewardj062f3552005-01-06 16:13:40 +0000269/* HACK: Use hacked version of clone for Quadrics Elan3 drivers */
270extern Bool VG_(clo_support_elan3);
271
sewardjb1131a82005-03-19 15:12:21 +0000272/* Should we show VEX emulation warnings? Default: NO */
273extern Bool VG_(clo_show_emwarns);
274
sewardj97724e52005-04-02 23:40:59 +0000275/* How much does the stack pointer have to change before tools
276 consider a stack switch to have happened? Default: 2000000 bytes */
277extern Int VG_(clo_max_stackframe);
278
rjwalshe4e779d2004-04-16 23:02:29 +0000279/* Set up the libc freeres wrapper */
sewardjb5f6f512005-03-10 23:59:00 +0000280extern void VGA_(intercept_libc_freeres_wrapper)(Addr);
rjwalshe4e779d2004-04-16 23:02:29 +0000281
sewardjb5f6f512005-03-10 23:59:00 +0000282// Clean up the client by calling before the final reports
283extern void VGA_(final_tidyup)(ThreadId tid);
284
285// Arch-specific client requests
286extern Bool VGA_(client_requests)(ThreadId tid, UWord *args);
sewardj51ac0872004-12-21 01:20:49 +0000287
sewardjde4a1d02002-03-22 01:27:54 +0000288/* ---------------------------------------------------------------------
nethercote85cdd342004-08-01 22:36:40 +0000289 Profiling stuff
sewardjde4a1d02002-03-22 01:27:54 +0000290 ------------------------------------------------------------------ */
291
njn31066fd2005-03-26 00:42:02 +0000292extern void VG_(init_profiling) ( void );
293extern void VG_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000294
njn25e49d8e72002-09-23 09:36:25 +0000295#undef VGP_PUSHCC
296#undef VGP_POPCC
njn31066fd2005-03-26 00:42:02 +0000297#define VGP_PUSHCC(x) if (VG_(clo_profile)) VG_(pushcc)(x)
298#define VGP_POPCC(x) if (VG_(clo_profile)) VG_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000299
sewardj51ac0872004-12-21 01:20:49 +0000300
sewardjde4a1d02002-03-22 01:27:54 +0000301/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000302 Exports of vg_intercept.c
sewardj2e93c502002-04-12 11:12:52 +0000303 ------------------------------------------------------------------ */
304
njna91498f2005-05-11 22:32:39 +0000305/* These are the internal client request codes. The publically-visible
306 request codes are also defined in valgrind.h, and similar headers for
307 some tools. */
sewardj2e93c502002-04-12 11:12:52 +0000308
njna91498f2005-05-11 22:32:39 +0000309/* Get the tool's malloc-wrapping functions */
fitzhardinge98abfc72003-12-16 02:05:15 +0000310#define VG_USERREQ__GET_MALLOCFUNCS 0x3030
sewardjb5f6f512005-03-10 23:59:00 +0000311
fitzhardinge39de4b42003-10-31 07:12:21 +0000312/* Internal equivalent of VALGRIND_PRINTF . */
313#define VG_USERREQ__INTERNAL_PRINTF 0x3103
sewardj45b4b372002-04-16 22:50:32 +0000314
sewardjb5f6f512005-03-10 23:59:00 +0000315/* Denote the finish of __libc_freeres_wrapper().
316 A synonym for exit. */
317#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
sewardj54cacf02002-04-12 23:24:59 +0000318
njn717cde52005-05-10 02:47:21 +0000319/* Intercept prefix stuff. See
320 coregrind/m_replace_malloc/vg_replace_malloc.c for details.
321 Unfortunately the "_vgi_" literal is also hardcoded in that file, so if
322 you change this one you must also change the other one. */
sewardj9ee81f52005-04-02 17:38:59 +0000323#define VG_INTERCEPT_PREFIX "_vgi_"
324#define VG_INTERCEPT_PREFIX_LEN 5
rjwalshe4e779d2004-04-16 23:02:29 +0000325
sewardj9ee81f52005-04-02 17:38:59 +0000326/* Not sure what these are for. Todo: clarify */
327#define VG_WRAPPER_PREFIX "_vgw_"
328#define VG_WRAPPER_PREFIX_LEN 5
329#define VG_WRAPPER(name) _vgw_##name
330#define VG_WRAPPER_ALIAS(name) "_vgw_" #name
rjwalshe4e779d2004-04-16 23:02:29 +0000331
njn4c791212003-05-02 17:53:54 +0000332
sewardj2e93c502002-04-12 11:12:52 +0000333/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000334 Exports of vg_scheduler.c
335 ------------------------------------------------------------------ */
336
sewardjb5f6f512005-03-10 23:59:00 +0000337/*
338 Thread state machine:
339
340 Empty -> Init -> Runnable <=> WaitSys/Yielding
341 ^ |
342 \---- Zombie -----/
343 */
sewardj2e93c502002-04-12 11:12:52 +0000344typedef
jsgf855d93d2003-10-13 22:26:55 +0000345 enum ThreadStatus {
sewardj2e93c502002-04-12 11:12:52 +0000346 VgTs_Empty, /* this slot is not in use */
sewardjb5f6f512005-03-10 23:59:00 +0000347 VgTs_Init, /* just allocated */
348 VgTs_Runnable, /* ready to run */
jsgf855d93d2003-10-13 22:26:55 +0000349 VgTs_WaitSys, /* waiting for a syscall to complete */
sewardjb5f6f512005-03-10 23:59:00 +0000350 VgTs_Yielding, /* temporarily yielding the CPU */
351 VgTs_Zombie, /* transient state just before exiting */
sewardj2e93c502002-04-12 11:12:52 +0000352 }
353 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000354
sewardjb5f6f512005-03-10 23:59:00 +0000355/* Return codes from the scheduler. */
thughes11975ff2004-06-12 12:58:22 +0000356typedef
sewardjb5f6f512005-03-10 23:59:00 +0000357 enum {
358 VgSrc_None, /* not exiting yet */
359 VgSrc_ExitSyscall, /* client called exit(). This is the normal
360 route out. */
361 VgSrc_FatalSig /* Killed by the default action of a fatal
362 signal */
thughes11975ff2004-06-12 12:58:22 +0000363 }
sewardjb5f6f512005-03-10 23:59:00 +0000364 VgSchedReturnCode;
thughes11975ff2004-06-12 12:58:22 +0000365
sewardjb5f6f512005-03-10 23:59:00 +0000366struct _ThreadState {
njn25e49d8e72002-09-23 09:36:25 +0000367 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
368 The thread identity is simply the index in vg_threads[].
369 ThreadId == 1 is the root thread and has the special property
370 that we don't try and allocate or deallocate its stack. For
371 convenience of generating error message, we also put the
372 ThreadId in this tid field, but be aware that it should
373 ALWAYS == the index in vg_threads[]. */
374 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000375
sewardjb5f6f512005-03-10 23:59:00 +0000376 /* Current scheduling status. */
njn25e49d8e72002-09-23 09:36:25 +0000377 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000378
sewardjb5f6f512005-03-10 23:59:00 +0000379 /* This is set if the thread is in the process of exiting for any
380 reason. The precise details of the exit are in the OS-specific
381 state. */
382 VgSchedReturnCode exitreason;
sewardj3b5d8862002-04-20 13:53:23 +0000383
sewardjb5f6f512005-03-10 23:59:00 +0000384 /* Architecture-specific thread state. */
385 ThreadArchState arch;
sewardjb48e5002002-05-13 00:16:03 +0000386
njn25e49d8e72002-09-23 09:36:25 +0000387 /* This thread's blocked-signals mask. Semantics is that for a
388 signal to be delivered to this thread, the signal must not be
jsgf855d93d2003-10-13 22:26:55 +0000389 blocked by this signal mask. If more than one thread accepts a
390 signal, then it will be delivered to one at random. If all
391 threads block the signal, it will remain pending until either a
sewardjb5f6f512005-03-10 23:59:00 +0000392 thread unblocks it or someone uses sigwaitsig/sigtimedwait. */
nethercote73b526f2004-10-31 18:48:21 +0000393 vki_sigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000394
sewardjb5f6f512005-03-10 23:59:00 +0000395 /* tmp_sig_mask is usually the same as sig_mask, and is kept in
396 sync whenever sig_mask is changed. The only time they have
397 different values is during the execution of a sigsuspend, where
398 tmp_sig_mask is the temporary mask which sigsuspend installs.
399 It is only consulted to compute the signal mask applied to a
400 signal handler. */
401 vki_sigset_t tmp_sig_mask;
sewardj2e93c502002-04-12 11:12:52 +0000402
sewardjb5f6f512005-03-10 23:59:00 +0000403 /* A little signal queue for signals we can't get the kernel to
404 queue for us. This is only allocated as needed, since it should
405 be rare. */
406 struct SigQueue *sig_queue;
407
408 /* Syscall the Thread is currently running; -1 if none. Should only
409 be set while Thread is in VgTs_WaitSys. */
410 Int syscallno;
411
412 /* A value the Tool wants to pass from its pre-syscall to its
413 post-syscall function. */
414 void *tool_pre_syscall_value;
thughes8abf3922004-10-16 10:59:49 +0000415
njn50ba34e2005-04-04 02:41:42 +0000416 /* Client stacks. When a thread slot is freed, we don't deallocate its
njn25e49d8e72002-09-23 09:36:25 +0000417 stack; we just leave it lying around for the next use of the
418 slot. If the next use of the slot requires a larger stack,
419 only then is the old one deallocated and a new one
420 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000421
njn25e49d8e72002-09-23 09:36:25 +0000422 For the main thread (threadid == 0), this mechanism doesn't
423 apply. We don't know the size of the stack since we didn't
424 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000425
njn25e49d8e72002-09-23 09:36:25 +0000426 /* The allocated size of this thread's stack (permanently zero
427 if this is ThreadId == 0, since we didn't allocate its stack) */
njn50ba34e2005-04-04 02:41:42 +0000428 SizeT client_stack_szB;
sewardj2e93c502002-04-12 11:12:52 +0000429
sewardj92a59562002-09-30 00:53:10 +0000430 /* Address of the highest legitimate word in this stack. This is
431 used for error messages only -- not critical for execution
432 correctness. Is is set for all stacks, specifically including
433 ThreadId == 0 (the main thread). */
njn50ba34e2005-04-04 02:41:42 +0000434 Addr client_stack_highest_word;
njn25e49d8e72002-09-23 09:36:25 +0000435
fitzhardinge98c4dc02004-03-16 08:27:29 +0000436 /* Alternate signal stack */
nethercote73b526f2004-10-31 18:48:21 +0000437 vki_stack_t altstack;
fitzhardinge98c4dc02004-03-16 08:27:29 +0000438
sewardjb5f6f512005-03-10 23:59:00 +0000439 /* OS-specific thread state */
440 os_thread_t os_state;
sewardj004e8ca2005-02-28 17:27:04 +0000441
442 /* Used in the syscall handlers. Set to True to indicate that the
443 PRE routine for a syscall has set the syscall result already and
444 so the syscall does not need to be handed to the kernel. */
445 Bool syscall_result_set;
sewardjb5f6f512005-03-10 23:59:00 +0000446
447 /* Per-thread jmp_buf to resume scheduler after a signal */
448 Bool sched_jmpbuf_valid;
449 jmp_buf sched_jmpbuf;
nethercote8ff888f2004-11-17 17:11:45 +0000450};
sewardj2e93c502002-04-12 11:12:52 +0000451
sewardj018f7622002-05-15 21:13:39 +0000452/* The thread table. */
453extern ThreadState VG_(threads)[VG_N_THREADS];
454
sewardjb5f6f512005-03-10 23:59:00 +0000455/* Allocate a new ThreadState */
456extern ThreadId VG_(alloc_ThreadState)(void);
457
458/* A thread exits. tid must currently be running. */
459extern void VG_(exit_thread)(ThreadId tid);
460
461/* Kill a thread. This interrupts whatever a thread is doing, and
462 makes it exit ASAP. This does not set the exitreason or
463 exitcode. */
464extern void VG_(kill_thread)(ThreadId tid);
465
sewardj018f7622002-05-15 21:13:39 +0000466/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000467extern Bool VG_(is_valid_tid) ( ThreadId tid );
468
jsgf855d93d2003-10-13 22:26:55 +0000469/* Get the ThreadState for a particular thread */
470extern ThreadState *VG_(get_ThreadState)(ThreadId tid);
471
sewardjb5f6f512005-03-10 23:59:00 +0000472/* Given an LWP id (ie, real kernel thread id), find the corresponding
473 ThreadId */
474extern ThreadId VG_(get_lwp_tid)(Int lwpid);
475
476/* Returns true if a thread is currently running (ie, has the CPU lock) */
477extern Bool VG_(is_running_thread)(ThreadId tid);
478
479/* Returns true if the thread is in the process of exiting */
480extern Bool VG_(is_exiting)(ThreadId tid);
481
482/* Return the number of non-dead Threads */
483extern Int VG_(count_living_threads)(void);
484
sewardjccef2e62002-05-29 19:26:32 +0000485/* Nuke all threads except tid. */
sewardjb5f6f512005-03-10 23:59:00 +0000486extern void VG_(nuke_all_threads_except) ( ThreadId me, VgSchedReturnCode reason );
sewardjccef2e62002-05-29 19:26:32 +0000487
sewardjb5f6f512005-03-10 23:59:00 +0000488/* Make a thread the running thread. The thread must previously been
489 sleeping, and not holding the CPU semaphore. This will set the
490 thread state to VgTs_Runnable, and the thread will attempt to take
491 the CPU semaphore. By the time it returns, tid will be the running
492 thread. */
493extern void VG_(set_running) ( ThreadId tid );
jsgf855d93d2003-10-13 22:26:55 +0000494
sewardjb5f6f512005-03-10 23:59:00 +0000495/* Set a thread into a sleeping state. Before the call, the thread
496 must be runnable, and holding the CPU semaphore. When this call
497 returns, the thread will be set to the specified sleeping state,
498 and will not be holding the CPU semaphore. Note that another
499 thread could be running by the time this call returns, so the
500 caller must be careful not to touch any shared state. It is also
501 the caller's responsibility to actually block until the thread is
502 ready to run again. */
503extern void VG_(set_sleeping) ( ThreadId tid, ThreadStatus state );
sewardj2e93c502002-04-12 11:12:52 +0000504
sewardjb5f6f512005-03-10 23:59:00 +0000505/* Yield the CPU for a while */
506extern void VG_(vg_yield)(void);
sewardj7e87e382002-05-03 19:09:05 +0000507
sewardjb5f6f512005-03-10 23:59:00 +0000508// The scheduler.
509extern VgSchedReturnCode VG_(scheduler) ( ThreadId tid );
510
511// Do everything which needs doing before the process finally ends,
512// like printing reports, etc
513extern void VG_(shutdown_actions)(ThreadId tid);
sewardj2e93c502002-04-12 11:12:52 +0000514
515extern void VG_(scheduler_init) ( void );
516
sewardj15a43e12002-04-17 19:35:12 +0000517extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000518
nethercote75d26242004-08-01 22:59:18 +0000519// Longjmp back to the scheduler and thus enter the sighandler immediately.
sewardjb5f6f512005-03-10 23:59:00 +0000520extern void VG_(resume_scheduler) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +0000521
sewardjb5f6f512005-03-10 23:59:00 +0000522/* If true, a fault is Valgrind-internal (ie, a bug) */
523extern Bool VG_(my_fault);
nethercote238a3c32004-08-09 13:13:31 +0000524
sewardj2e93c502002-04-12 11:12:52 +0000525/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000526 Exports of vg_signals.c
527 ------------------------------------------------------------------ */
528
sewardjb5f6f512005-03-10 23:59:00 +0000529/* Highest signal the kernel will let us use */
530extern Int VG_(max_signal);
jsgf855d93d2003-10-13 22:26:55 +0000531
sewardjde4a1d02002-03-22 01:27:54 +0000532extern void VG_(sigstartup_actions) ( void );
533
jsgf855d93d2003-10-13 22:26:55 +0000534extern Bool VG_(is_sig_ign) ( Int sigNo );
535
sewardjb5f6f512005-03-10 23:59:00 +0000536/* Poll a thread's set of pending signals, and update the Thread's context to deliver one */
537extern void VG_(poll_signals) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +0000538
539/* Fake system calls for signal handling. */
njn502badb2005-05-08 02:04:49 +0000540extern Int VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss,
541 vki_stack_t* oss );
542extern Int VG_(do_sys_sigaction) ( Int signo,
543 const struct vki_sigaction *new_act,
544 struct vki_sigaction *old_act );
545extern Int VG_(do_sys_sigprocmask) ( ThreadId tid, Int how,
546 vki_sigset_t* set,
547 vki_sigset_t* oldset );
sewardjefbfcdf2002-06-19 17:35:45 +0000548
njn444eba12005-05-12 03:47:31 +0000549extern void VG_(clear_out_queued_signals)
550 ( ThreadId tid, /* OUT */ vki_sigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000551
jsgf855d93d2003-10-13 22:26:55 +0000552extern void VG_(kill_self)(Int sigNo);
553
fitzhardingef1beb252004-03-16 09:49:08 +0000554/* These function synthesize a fault, as if the running instruction
555 had had a fault. These functions do not return - they longjmp back
556 into the scheduler so the signal can be delivered. */
557extern void VG_(synth_fault) (ThreadId tid);
558extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
559extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
sewardj5e2f0012004-12-13 14:10:34 +0000560extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
fitzhardingef1beb252004-03-16 09:49:08 +0000561
sewardjb5f6f512005-03-10 23:59:00 +0000562/* Extend the stack to cover addr, if possible */
563extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);
564
565/* Returns True if the signal is OK for the client to use */
566extern Bool VG_(client_signal_OK)(Int sigNo);
567
568/* Forces the client's signal handler to SIG_DFL - generally just
569 before using that signal to kill the process. */
570extern void VG_(set_default_handler)(Int sig);
571
572/* Adjust a client's signal mask to match our internal requirements */
573extern void VG_(sanitize_client_sigmask)(ThreadId tid, vki_sigset_t *mask);
574
575/* Wait until a thread-related predicate is true */
576extern void VG_(wait_for_threadstate)(Bool (*pred)(void *), void *arg);
sewardj51ac0872004-12-21 01:20:49 +0000577
sewardjde4a1d02002-03-22 01:27:54 +0000578/* ---------------------------------------------------------------------
579 Exports of vg_mylibc.c
580 ------------------------------------------------------------------ */
581
njnca0518d2004-11-26 19:34:36 +0000582// Useful for making failing stubs, when certain things haven't yet been
583// implemented.
njn50ae1a72005-04-08 23:28:23 +0000584#define I_die_here \
sewardj0ab10c42005-05-12 08:26:36 +0000585 VG_(assert_fail) (/*isCore*//*BOGUS*/True, \
586 "Unimplemented functionality", \
njn50ae1a72005-04-08 23:28:23 +0000587 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
588 "valgrind", VG_BUGS_TO, "")
njnca0518d2004-11-26 19:34:36 +0000589
njn50ae1a72005-04-08 23:28:23 +0000590#define vg_assert(expr) \
591 ((void) ((expr) ? 0 : \
592 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
593 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
594 ""), \
595 0)))
596
597#define vg_assert2(expr, format, args...) \
598 ((void) ((expr) ? 0 : \
599 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
600 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
601 format, ##args), \
602 0)))
603
njne427a662002-10-02 11:08:25 +0000604__attribute__ ((__noreturn__))
605extern void VG_(core_panic) ( Char* str );
thughes5876d552004-09-26 18:44:06 +0000606__attribute__ ((__noreturn__))
njnd01fef72005-03-25 23:35:48 +0000607extern void VG_(core_panic_at) ( Char* str, StackTrace ips );
sewardjde4a1d02002-03-22 01:27:54 +0000608
nethercote05675c82004-08-04 10:37:49 +0000609/* Tools use VG_(strdup)() which doesn't expose ArenaId */
njn25e49d8e72002-09-23 09:36:25 +0000610extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +0000611
njn25e49d8e72002-09-23 09:36:25 +0000612extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +0000613extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +0000614
fitzhardinge98abfc72003-12-16 02:05:15 +0000615/* system/mman.h */
nethercote8b5f40c2004-11-02 13:29:50 +0000616extern void* VG_(mmap)( void* start, SizeT length, UInt prot, UInt flags,
nethercote5b9fafd2004-11-04 18:39:22 +0000617 UInt sf_flags, UInt fd, OffT offset );
nethercote8b5f40c2004-11-02 13:29:50 +0000618extern Int VG_(munmap)( void* start, SizeT length );
619extern Int VG_(mprotect)( void *start, SizeT length, UInt prot );
sewardj79048ce2005-02-18 08:28:32 +0000620extern Int VG_(mprotect_native)( void *start, SizeT length, UInt prot );
fitzhardinge98abfc72003-12-16 02:05:15 +0000621
622
jsgf855d93d2003-10-13 22:26:55 +0000623/* Move an fd into the Valgrind-safe range */
624Int VG_(safe_fd)(Int oldfd);
625
sewardj570f8902002-11-03 11:44:36 +0000626extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +0000627
628/* --- Connecting over the network --- */
629extern Int VG_(connect_via_socket)( UChar* str );
630
fitzhardinge98abfc72003-12-16 02:05:15 +0000631/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +0000632extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
633 const Char *val );
634extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
635extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +0000636
sewardjb5f6f512005-03-10 23:59:00 +0000637extern void VG_(nanosleep)(struct vki_timespec *);
njn2521d322005-05-08 14:45:13 +0000638
sewardj570f8902002-11-03 11:44:36 +0000639/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000640 Exports of vg_translate.c
641 ------------------------------------------------------------------ */
642
sewardjfa8ec112005-01-19 11:55:34 +0000643extern
644Bool VG_(translate) ( ThreadId tid,
645 Addr64 orig_addr,
646 Bool debugging_translation,
647 Int debugging_verbosity );
sewardjb5ff83e2002-12-01 19:40:49 +0000648
sewardjde4a1d02002-03-22 01:27:54 +0000649/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000650 Exports of vg_symtab2.c
651 ------------------------------------------------------------------ */
652
fitzhardinge98abfc72003-12-16 02:05:15 +0000653typedef struct _Segment Segment;
sewardjb5f6f512005-03-10 23:59:00 +0000654typedef struct _CodeRedirect CodeRedirect;
fitzhardinge98abfc72003-12-16 02:05:15 +0000655
656extern Bool VG_(is_object_file) ( const void *hdr );
fitzhardinge98abfc72003-12-16 02:05:15 +0000657extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +0000658extern void VG_(symtab_incref) ( SegInfo * );
nethercote8991d5a2004-11-03 17:07:46 +0000659extern void VG_(symtab_decref) ( SegInfo *, Addr a );
sewardjde4a1d02002-03-22 01:27:54 +0000660
njn25e49d8e72002-09-23 09:36:25 +0000661extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +0000662
sewardjb5f6f512005-03-10 23:59:00 +0000663extern Addr VG_(reverse_search_one_symtab) ( const SegInfo* si, const Char* name );
664
sewardjb5f6f512005-03-10 23:59:00 +0000665extern Bool VG_(resolve_redir_allsegs)(CodeRedirect *redir);
666
sewardj35165532005-04-30 18:47:48 +0000667extern Bool VG_(use_CFI_info) ( /*MOD*/Addr* ipP,
668 /*MOD*/Addr* spP,
669 /*MOD*/Addr* fpP,
670 Addr min_accessible,
671 Addr max_accessible );
672
673
sewardjb5f6f512005-03-10 23:59:00 +0000674/* ---------------------------------------------------------------------
675 Exports of vg_redir.c
676 ------------------------------------------------------------------ */
njn36b66df2005-05-12 05:13:04 +0000677
fitzhardinge98abfc72003-12-16 02:05:15 +0000678/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +0000679extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +0000680
njn36b66df2005-05-12 05:13:04 +0000681/* Set up some default redirects */
682extern void VG_(setup_code_redirect_table) ( void );
683
tom748a1312005-04-02 15:53:01 +0000684extern void VG_(add_redirect_sym_to_addr)(const Char *from_lib,
685 const Char *from_sym,
686 Addr to_addr);
687extern void VG_(add_redirect_addr_to_addr)(Addr from_addr, Addr to_addr);
sewardjb5f6f512005-03-10 23:59:00 +0000688extern void VG_(resolve_seg_redirs)(SegInfo *si);
689extern Bool VG_(resolve_redir)(CodeRedirect *redir, const SegInfo *si);
690
691/* Wrapping machinery */
692enum return_type {
693 RT_RETURN,
694 RT_LONGJMP,
695 RT_EXIT,
696};
697
698typedef struct _FuncWrapper FuncWrapper;
699struct _FuncWrapper {
700 void *(*before)(va_list args);
701 void (*after) (void *nonce, enum return_type, Word retval);
702};
703
704extern void VG_(wrap_function)(Addr eip, const FuncWrapper *wrapper);
705extern const FuncWrapper *VG_(is_wrapped)(Addr eip);
706extern Bool VG_(is_wrapper_return)(Addr eip);
707
708/* Primary interface for adding wrappers for client-side functions. */
709extern CodeRedirect *VG_(add_wrapper)(const Char *from_lib, const Char *from_sym,
710 const FuncWrapper *wrapper);
711
712extern Bool VG_(is_resolved)(const CodeRedirect *redir);
sewardj51ac0872004-12-21 01:20:49 +0000713
sewardjde4a1d02002-03-22 01:27:54 +0000714/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000715 Exports of vg_main.c
716 ------------------------------------------------------------------ */
717
sewardj73cf3bc2002-11-03 03:20:15 +0000718/* Tell the logging mechanism whether we are logging to a file
719 descriptor or a socket descriptor. */
720extern Bool VG_(logging_to_filedes);
721
njn25e49d8e72002-09-23 09:36:25 +0000722/* Sanity checks which may be done at any time. The scheduler decides when. */
nethercote885dd912004-08-03 23:14:00 +0000723extern void VG_(sanity_check_general) ( Bool force_expensive );
njn25e49d8e72002-09-23 09:36:25 +0000724
fitzhardinge98abfc72003-12-16 02:05:15 +0000725/* Address space */
726extern Addr VG_(client_base); /* client address space limits */
727extern Addr VG_(client_end);
728extern Addr VG_(client_mapbase); /* base of mappings */
729extern Addr VG_(clstk_base); /* client stack range */
730extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +0000731extern Addr VG_(client_trampoline_code);
732
fitzhardinge98abfc72003-12-16 02:05:15 +0000733extern Addr VG_(brk_base); /* start of brk */
734extern Addr VG_(brk_limit); /* current brk */
nethercote996901a2004-08-03 13:29:09 +0000735extern Addr VG_(shadow_base); /* tool's shadow memory */
fitzhardinge98abfc72003-12-16 02:05:15 +0000736extern Addr VG_(shadow_end);
737extern Addr VG_(valgrind_base); /* valgrind's address range */
nethercote820bd8c2004-09-07 23:04:49 +0000738extern Addr VG_(valgrind_last); // Nb: last byte, rather than one past the end
fitzhardinge98abfc72003-12-16 02:05:15 +0000739
nethercote73b526f2004-10-31 18:48:21 +0000740extern struct vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
741extern struct vki_rlimit VG_(client_rlimit_stack); /* client's original rlimit stack */
fitzhardingeb50068f2004-02-24 23:42:55 +0000742
fitzhardingea49f9b52003-12-16 22:26:45 +0000743/* client executable file descriptor */
744extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +0000745
nethercotef6a1d502004-08-09 12:21:57 +0000746// Help set up the child used when doing execve() with --trace-children=yes
747Char* VG_(build_child_VALGRINDCLO) ( Char* exename );
748Char* VG_(build_child_exename) ( void );
749
sewardjb5f6f512005-03-10 23:59:00 +0000750/* The master thread the one which will be responsible for mopping
751 everything up at exit. Normally it is tid 1, since that's the
752 first thread created, but it may be something else after a
753 fork(). */
754extern ThreadId VG_(master_tid);
755
sewardjde4a1d02002-03-22 01:27:54 +0000756/* Called when some unhandleable client behaviour is detected.
757 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +0000758extern void VG_(unimplemented) ( Char* msg )
759 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +0000760
nethercote04d0fbc2004-01-26 16:48:06 +0000761/* Something of a function looking for a home ... start up debugger. */
njnc6168192004-11-29 13:54:10 +0000762extern void VG_(start_debugger) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +0000763
sewardjde4a1d02002-03-22 01:27:54 +0000764/* Counts downwards in vg_run_innerloop. */
765extern UInt VG_(dispatch_ctr);
766
sewardj4ccf7072004-11-28 16:58:05 +0000767/* Stats ... */
nethercote844e7122004-08-02 15:27:22 +0000768extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000769
njn1f707722005-03-27 03:17:52 +0000770/* 64-bit counter for the number of basic blocks done. */
771extern ULong VG_(bbs_done);
772
nethercote2e05c332004-09-06 16:43:37 +0000773
sewardjde4a1d02002-03-22 01:27:54 +0000774/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000775 Exports of vg_transtab.c
776 ------------------------------------------------------------------ */
777
sewardjfa8ec112005-01-19 11:55:34 +0000778/* The fast-cache for tt-lookup, and for finding counters. */
779extern ULong* VG_(tt_fast) [VG_TT_FAST_SIZE];
780extern UInt* VG_(tt_fastN)[VG_TT_FAST_SIZE];
njn25e49d8e72002-09-23 09:36:25 +0000781
sewardjb5f6f512005-03-10 23:59:00 +0000782
nethercote92e7b7f2004-08-07 17:52:25 +0000783extern void VG_(init_tt_tc) ( void );
sewardj6c3769f2002-11-29 01:02:45 +0000784
sewardjfa8ec112005-01-19 11:55:34 +0000785extern
786void VG_(add_to_trans_tab)( VexGuestExtents* vge,
787 Addr64 entry,
788 AddrH code,
789 UInt code_len );
790
791extern Bool VG_(search_transtab) ( /*OUT*/AddrH* result,
792 Addr64 guest_addr,
793 Bool upd_cache );
794
795extern void VG_(discard_translations) ( Addr64 start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +0000796
sewardj4ccf7072004-11-28 16:58:05 +0000797extern void VG_(sanity_check_tt_tc) ( Char* caller );
sewardjde4a1d02002-03-22 01:27:54 +0000798
nethercote92e7b7f2004-08-07 17:52:25 +0000799extern void VG_(print_tt_tc_stats) ( void );
800
sewardjfa8ec112005-01-19 11:55:34 +0000801extern UInt VG_(get_bbs_translated) ( void );
802
803extern void VG_(show_BB_profile) ( void );
804
sewardjde4a1d02002-03-22 01:27:54 +0000805
sewardjde4a1d02002-03-22 01:27:54 +0000806/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000807 Exports of vg_syscall.S
808 ------------------------------------------------------------------ */
809
njnca6fef02004-11-29 16:49:18 +0000810// We use a full prototype rather than "..." here to ensure that all
811// arguments get converted to a UWord appropriately. Not doing so can
812// cause problems when passing 32-bit integers on 64-bit platforms, because
813// the top 32-bits might not be zeroed appropriately, eg. as would happen
814// with the 6th arg on AMD64 which is passed on the stack.
njnf4aeaea2004-11-29 17:33:31 +0000815extern Word VG_(do_syscall) ( UInt, UWord, UWord, UWord, UWord, UWord, UWord );
njnca6fef02004-11-29 16:49:18 +0000816
817// Macros make life easier.
818#define vgPlain_do_syscall0(s) VG_(do_syscall)((s),0,0,0,0,0,0)
819#define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),0,0,0,0,0)
820#define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),0,0,0,0)
821#define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),0,0,0)
822#define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),(d),0,0)
823#define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),(d),(e),0)
824#define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),(d),(e),(f))
825
fitzhardinge4f10ada2004-06-03 10:00:42 +0000826extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +0000827
828/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000829 Exports of vg_helpers.S
830 ------------------------------------------------------------------ */
831
fitzhardinge92360792003-12-24 10:11:11 +0000832/* Information about trampoline code (for signal return and syscalls) */
833extern const Char VG_(trampoline_code_start);
834extern const Int VG_(trampoline_code_length);
835extern const Int VG_(tramp_sigreturn_offset);
sewardjb5f6f512005-03-10 23:59:00 +0000836extern const Int VG_(tramp_rt_sigreturn_offset);
fitzhardinge92360792003-12-24 10:11:11 +0000837extern const Int VG_(tramp_syscall_offset);
tomee0bcbf2005-05-02 10:28:42 +0000838extern const Int VG_(tramp_gettimeofday_offset);
839extern const Int VG_(tramp_time_offset);
sewardj20917d82002-05-28 01:36:45 +0000840
nethercotec06e2132004-09-03 13:45:29 +0000841// ---------------------------------------------------------------------
842// Architecture-specific things defined in eg. x86/*.c
843// ---------------------------------------------------------------------
844
sewardj51ac0872004-12-21 01:20:49 +0000845// Returns the architecture and subarchitecture, or indicates
846// that this subarchitecture is unable to run Valgrind
847// Returns False to indicate we cannot proceed further.
sewardj51ac0872004-12-21 01:20:49 +0000848extern Bool VGA_(getArchAndSubArch)( /*OUT*/VexArch*,
849 /*OUT*/VexSubArch* );
njncf45fd42004-11-24 16:30:22 +0000850// Accessors for the ThreadArchState
njn35172bc2005-03-26 00:04:03 +0000851#define INSTR_PTR(regs) ((regs).vex.VGA_INSTR_PTR)
852#define STACK_PTR(regs) ((regs).vex.VGA_STACK_PTR)
853#define FRAME_PTR(regs) ((regs).vex.VGA_FRAME_PTR)
854#define CLREQ_ARGS(regs) ((regs).vex.VGA_CLREQ_ARGS)
njn35172bc2005-03-26 00:04:03 +0000855#define CLREQ_RET(regs) ((regs).vex.VGA_CLREQ_RET)
njn16de5572004-11-27 14:27:21 +0000856// Offsets for the Vex state
njn35172bc2005-03-26 00:04:03 +0000857#define O_STACK_PTR (offsetof(VexGuestArchState, VGA_STACK_PTR))
858#define O_FRAME_PTR (offsetof(VexGuestArchState, VGA_FRAME_PTR))
859#define O_CLREQ_RET (offsetof(VexGuestArchState, VGA_CLREQ_RET))
njncf45fd42004-11-24 16:30:22 +0000860
861
sewardj2a99cf62004-11-24 10:44:19 +0000862// Setting up the initial thread (1) state
863extern void
864 VGA_(init_thread1state) ( Addr client_eip,
865 Addr esp_at_startup,
866 /*MOD*/ ThreadArchState* arch );
sewardjde4a1d02002-03-22 01:27:54 +0000867
nethercotec009ebe2004-09-13 11:05:11 +0000868// Thread stuff
sewardj2a99cf62004-11-24 10:44:19 +0000869extern void VGA_(cleanup_thread) ( ThreadArchState* );
870extern void VGA_(setup_child) ( ThreadArchState*, ThreadArchState* );
nethercotef9b59412004-09-10 15:33:32 +0000871
sewardjb5f6f512005-03-10 23:59:00 +0000872// OS/Platform-specific thread clear (after thread exit)
873extern void VGA_(os_state_clear)(ThreadState *);
874
875// OS/Platform-specific thread init (at scheduler init time)
876extern void VGA_(os_state_init)(ThreadState *);
877
878// Run a thread from beginning to end. Does not return if tid == VG_(master_tid).
sewardj0c1a5962005-03-22 00:19:55 +0000879void VGA_(thread_wrapper)(Word /*ThreadId*/ tid);
sewardjb5f6f512005-03-10 23:59:00 +0000880
881// Like VGA_(thread_wrapper), but it allocates a stack before calling
882// to VGA_(thread_wrapper) on that stack, as if it had been set up by
883// clone()
884void VGA_(main_thread_wrapper)(ThreadId tid) __attribute__ ((__noreturn__));
885
886// Return how many bytes of a thread's Valgrind stack are unused
njn990e90c2005-04-05 02:49:09 +0000887SSizeT VGA_(stack_unused)(ThreadId tid);
sewardjb5f6f512005-03-10 23:59:00 +0000888
889// Terminate the process. Does not return.
890void VGA_(terminate)(ThreadId tid, VgSchedReturnCode src) __attribute__((__noreturn__));
891
892// wait until all other threads are dead
893extern void VGA_(reap_threads)(ThreadId self);
894
895// handle an arch-specific client request
896extern Bool VGA_(client_request)(ThreadId tid, UWord *args);
897
nethercotec009ebe2004-09-13 11:05:11 +0000898// Symtab stuff
njncf45fd42004-11-24 16:30:22 +0000899extern UInt* VGA_(reg_addr_from_tst) ( Int regno, ThreadArchState* );
nethercotecd656042004-09-11 23:48:22 +0000900
nethercotefedd8102004-09-13 15:19:34 +0000901// Pointercheck
902extern Bool VGA_(setup_pointercheck) ( void );
903
904// For attaching the debugger
sewardj2a99cf62004-11-24 10:44:19 +0000905extern Int VGA_(ptrace_setregs_from_tst) ( Int pid, ThreadArchState* arch );
nethercotefedd8102004-09-13 15:19:34 +0000906
sewardjb5f6f512005-03-10 23:59:00 +0000907// Used by leakcheck
908extern void VGA_(mark_from_registers)(ThreadId tid, void (*marker)(Addr));
909
sewardjb5f6f512005-03-10 23:59:00 +0000910////typedef struct _ThreadArchAux ThreadArchAux;
nethercote9b3c7652004-10-19 13:18:00 +0000911
912
nethercote41c75da2004-10-18 15:34:14 +0000913// ---------------------------------------------------------------------
914// Platform-specific things defined in eg. x86/*.c
915// ---------------------------------------------------------------------
nethercote775508a2004-09-07 22:38:23 +0000916
njn2521d322005-05-08 14:45:13 +0000917// Do any platform specific redirects.
tom748a1312005-04-02 15:53:01 +0000918extern void VGP_(setup_redirects)(void);
sewardjb5f6f512005-03-10 23:59:00 +0000919
920///* ---------------------------------------------------------------------
921// Thread modelling
922// ------------------------------------------------------------------ */
923//extern void VG_(tm_thread_create) (ThreadId creator, ThreadId tid, Bool detached);
924//extern void VG_(tm_thread_exit) (ThreadId tid);
925//extern Bool VG_(tm_thread_exists) (ThreadId tid);
926//extern void VG_(tm_thread_detach) (ThreadId tid);
927//extern void VG_(tm_thread_join) (ThreadId joiner, ThreadId joinee);
928//extern void VG_(tm_thread_switchto)(ThreadId tid);
929//
930//extern void VG_(tm_mutex_init) (ThreadId tid, Addr mutexp);
931//extern void VG_(tm_mutex_destroy)(ThreadId tid, Addr mutexp);
932//extern void VG_(tm_mutex_trylock)(ThreadId tid, Addr mutexp);
933//extern void VG_(tm_mutex_giveup) (ThreadId tid, Addr mutexp);
934//extern void VG_(tm_mutex_acquire)(ThreadId tid, Addr mutexp);
935//extern void VG_(tm_mutex_tryunlock)(ThreadId tid, Addr mutexp);
936//extern void VG_(tm_mutex_unlock) (ThreadId tid, Addr mutexp);
937//extern Bool VG_(tm_mutex_exists) (Addr mutexp);
938//
939//extern UInt VG_(tm_error_update_extra) (Error *err);
940//extern Bool VG_(tm_error_equal) (VgRes res, Error *e1, Error *e2);
941//extern void VG_(tm_error_print) (Error *err);
942//
943//extern void VG_(tm_init) ();
944//
945//extern void VG_(tm_cond_init) (ThreadId tid, Addr condp);
946//extern void VG_(tm_cond_destroy) (ThreadId tid, Addr condp);
947//extern void VG_(tm_cond_wait) (ThreadId tid, Addr condp, Addr mutexp);
948//extern void VG_(tm_cond_wakeup) (ThreadId tid, Addr condp, Addr mutexp);
949//extern void VG_(tm_cond_signal) (ThreadId tid, Addr condp);
950//
951///* ----- pthreads ----- */
952//extern void VG_(pthread_init) ();
953//extern void VG_(pthread_startfunc_wrapper)(Addr wrapper);
954//
955//struct vg_pthread_newthread_data {
956// void *(*startfunc)(void *arg);
957// void *arg;
958//};
sewardj3b2736a2002-03-24 12:18:35 +0000959
960/* ---------------------------------------------------------------------
961 Finally - autoconf-generated settings
962 ------------------------------------------------------------------ */
963
964#include "config.h"
965
nethercotec06e2132004-09-03 13:45:29 +0000966#endif /* ndef __CORE_H */
967
sewardjde4a1d02002-03-22 01:27:54 +0000968/*--------------------------------------------------------------------*/
nethercote109d0df2004-09-02 08:10:13 +0000969/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +0000970/*--------------------------------------------------------------------*/