blob: 1b9d0d268af1cb86e0fc2922588eea7329be8207 [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
sewardj2e93c502002-04-12 11:12:52 +0000549/* Handy utilities to block/restore all host signals. */
550extern void VG_(block_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000551 ( /* OUT */ vki_sigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +0000552extern void VG_(restore_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000553 ( /* IN */ vki_sigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000554
jsgf855d93d2003-10-13 22:26:55 +0000555extern void VG_(kill_self)(Int sigNo);
556
fitzhardingef1beb252004-03-16 09:49:08 +0000557/* These function synthesize a fault, as if the running instruction
558 had had a fault. These functions do not return - they longjmp back
559 into the scheduler so the signal can be delivered. */
560extern void VG_(synth_fault) (ThreadId tid);
561extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
562extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
sewardj5e2f0012004-12-13 14:10:34 +0000563extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
fitzhardingef1beb252004-03-16 09:49:08 +0000564
sewardjb5f6f512005-03-10 23:59:00 +0000565/* Extend the stack to cover addr, if possible */
566extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);
567
568/* Returns True if the signal is OK for the client to use */
569extern Bool VG_(client_signal_OK)(Int sigNo);
570
571/* Forces the client's signal handler to SIG_DFL - generally just
572 before using that signal to kill the process. */
573extern void VG_(set_default_handler)(Int sig);
574
575/* Adjust a client's signal mask to match our internal requirements */
576extern void VG_(sanitize_client_sigmask)(ThreadId tid, vki_sigset_t *mask);
577
578/* Wait until a thread-related predicate is true */
579extern void VG_(wait_for_threadstate)(Bool (*pred)(void *), void *arg);
sewardj51ac0872004-12-21 01:20:49 +0000580
sewardjde4a1d02002-03-22 01:27:54 +0000581/* ---------------------------------------------------------------------
582 Exports of vg_mylibc.c
583 ------------------------------------------------------------------ */
584
njnca0518d2004-11-26 19:34:36 +0000585// Useful for making failing stubs, when certain things haven't yet been
586// implemented.
njn50ae1a72005-04-08 23:28:23 +0000587#define I_die_here \
588 VG_(assert_fail) ("Unimplemented functionality", \
589 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
590 "valgrind", VG_BUGS_TO, "")
njnca0518d2004-11-26 19:34:36 +0000591
njn50ae1a72005-04-08 23:28:23 +0000592#define vg_assert(expr) \
593 ((void) ((expr) ? 0 : \
594 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
595 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
596 ""), \
597 0)))
598
599#define vg_assert2(expr, format, args...) \
600 ((void) ((expr) ? 0 : \
601 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
602 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
603 format, ##args), \
604 0)))
605
njne427a662002-10-02 11:08:25 +0000606__attribute__ ((__noreturn__))
607extern void VG_(core_panic) ( Char* str );
thughes5876d552004-09-26 18:44:06 +0000608__attribute__ ((__noreturn__))
njnd01fef72005-03-25 23:35:48 +0000609extern void VG_(core_panic_at) ( Char* str, StackTrace ips );
sewardjde4a1d02002-03-22 01:27:54 +0000610
nethercote05675c82004-08-04 10:37:49 +0000611/* Tools use VG_(strdup)() which doesn't expose ArenaId */
njn25e49d8e72002-09-23 09:36:25 +0000612extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +0000613
njn25e49d8e72002-09-23 09:36:25 +0000614extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +0000615extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +0000616
fitzhardinge98abfc72003-12-16 02:05:15 +0000617/* system/mman.h */
nethercote8b5f40c2004-11-02 13:29:50 +0000618extern void* VG_(mmap)( void* start, SizeT length, UInt prot, UInt flags,
nethercote5b9fafd2004-11-04 18:39:22 +0000619 UInt sf_flags, UInt fd, OffT offset );
nethercote8b5f40c2004-11-02 13:29:50 +0000620extern Int VG_(munmap)( void* start, SizeT length );
621extern Int VG_(mprotect)( void *start, SizeT length, UInt prot );
sewardj79048ce2005-02-18 08:28:32 +0000622extern Int VG_(mprotect_native)( void *start, SizeT length, UInt prot );
fitzhardinge98abfc72003-12-16 02:05:15 +0000623
624
jsgf855d93d2003-10-13 22:26:55 +0000625/* Move an fd into the Valgrind-safe range */
626Int VG_(safe_fd)(Int oldfd);
627
sewardj570f8902002-11-03 11:44:36 +0000628extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +0000629
630/* --- Connecting over the network --- */
631extern Int VG_(connect_via_socket)( UChar* str );
632
fitzhardinge98abfc72003-12-16 02:05:15 +0000633/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +0000634extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
635 const Char *val );
636extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
637extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +0000638
sewardjb5f6f512005-03-10 23:59:00 +0000639extern void VG_(nanosleep)(struct vki_timespec *);
njn2521d322005-05-08 14:45:13 +0000640
sewardj570f8902002-11-03 11:44:36 +0000641/* ---------------------------------------------------------------------
642 Exports of vg_message.c
643 ------------------------------------------------------------------ */
644
645/* Low-level -- send bytes directly to the message sink. Do not
646 use. */
647extern void VG_(send_bytes_to_logging_sink) ( Char* msg, Int nbytes );
648
sewardjde4a1d02002-03-22 01:27:54 +0000649/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000650 Exports of vg_translate.c
651 ------------------------------------------------------------------ */
652
sewardjfa8ec112005-01-19 11:55:34 +0000653extern
654Bool VG_(translate) ( ThreadId tid,
655 Addr64 orig_addr,
656 Bool debugging_translation,
657 Int debugging_verbosity );
sewardjb5ff83e2002-12-01 19:40:49 +0000658
sewardjde4a1d02002-03-22 01:27:54 +0000659/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000660 Exports of vg_symtab2.c
661 ------------------------------------------------------------------ */
662
fitzhardinge98abfc72003-12-16 02:05:15 +0000663typedef struct _Segment Segment;
sewardjb5f6f512005-03-10 23:59:00 +0000664typedef struct _CodeRedirect CodeRedirect;
fitzhardinge98abfc72003-12-16 02:05:15 +0000665
666extern Bool VG_(is_object_file) ( const void *hdr );
fitzhardinge98abfc72003-12-16 02:05:15 +0000667extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +0000668extern void VG_(symtab_incref) ( SegInfo * );
nethercote8991d5a2004-11-03 17:07:46 +0000669extern void VG_(symtab_decref) ( SegInfo *, Addr a );
sewardjde4a1d02002-03-22 01:27:54 +0000670
njn25e49d8e72002-09-23 09:36:25 +0000671extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +0000672
sewardjb5f6f512005-03-10 23:59:00 +0000673extern Addr VG_(reverse_search_one_symtab) ( const SegInfo* si, const Char* name );
674
fitzhardinge98abfc72003-12-16 02:05:15 +0000675/* Set up some default redirects */
676extern void VG_(setup_code_redirect_table) ( void );
sewardj25c7c3a2003-07-10 00:17:58 +0000677
sewardjb5f6f512005-03-10 23:59:00 +0000678extern Bool VG_(resolve_redir_allsegs)(CodeRedirect *redir);
679
sewardj35165532005-04-30 18:47:48 +0000680extern Bool VG_(use_CFI_info) ( /*MOD*/Addr* ipP,
681 /*MOD*/Addr* spP,
682 /*MOD*/Addr* fpP,
683 Addr min_accessible,
684 Addr max_accessible );
685
686
sewardjb5f6f512005-03-10 23:59:00 +0000687/* ---------------------------------------------------------------------
688 Exports of vg_redir.c
689 ------------------------------------------------------------------ */
fitzhardinge98abfc72003-12-16 02:05:15 +0000690/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +0000691extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +0000692
tom748a1312005-04-02 15:53:01 +0000693extern void VG_(add_redirect_sym_to_addr)(const Char *from_lib,
694 const Char *from_sym,
695 Addr to_addr);
696extern void VG_(add_redirect_addr_to_addr)(Addr from_addr, Addr to_addr);
sewardjb5f6f512005-03-10 23:59:00 +0000697extern void VG_(resolve_seg_redirs)(SegInfo *si);
698extern Bool VG_(resolve_redir)(CodeRedirect *redir, const SegInfo *si);
699
700/* Wrapping machinery */
701enum return_type {
702 RT_RETURN,
703 RT_LONGJMP,
704 RT_EXIT,
705};
706
707typedef struct _FuncWrapper FuncWrapper;
708struct _FuncWrapper {
709 void *(*before)(va_list args);
710 void (*after) (void *nonce, enum return_type, Word retval);
711};
712
713extern void VG_(wrap_function)(Addr eip, const FuncWrapper *wrapper);
714extern const FuncWrapper *VG_(is_wrapped)(Addr eip);
715extern Bool VG_(is_wrapper_return)(Addr eip);
716
717/* Primary interface for adding wrappers for client-side functions. */
718extern CodeRedirect *VG_(add_wrapper)(const Char *from_lib, const Char *from_sym,
719 const FuncWrapper *wrapper);
720
721extern Bool VG_(is_resolved)(const CodeRedirect *redir);
sewardj51ac0872004-12-21 01:20:49 +0000722
sewardjde4a1d02002-03-22 01:27:54 +0000723/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000724 Exports of vg_main.c
725 ------------------------------------------------------------------ */
726
sewardj73cf3bc2002-11-03 03:20:15 +0000727/* Tell the logging mechanism whether we are logging to a file
728 descriptor or a socket descriptor. */
729extern Bool VG_(logging_to_filedes);
730
njn25e49d8e72002-09-23 09:36:25 +0000731/* Sanity checks which may be done at any time. The scheduler decides when. */
nethercote885dd912004-08-03 23:14:00 +0000732extern void VG_(sanity_check_general) ( Bool force_expensive );
njn25e49d8e72002-09-23 09:36:25 +0000733
fitzhardinge98abfc72003-12-16 02:05:15 +0000734/* Address space */
735extern Addr VG_(client_base); /* client address space limits */
736extern Addr VG_(client_end);
737extern Addr VG_(client_mapbase); /* base of mappings */
738extern Addr VG_(clstk_base); /* client stack range */
739extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +0000740extern Addr VG_(client_trampoline_code);
741
fitzhardinge98abfc72003-12-16 02:05:15 +0000742extern Addr VG_(brk_base); /* start of brk */
743extern Addr VG_(brk_limit); /* current brk */
nethercote996901a2004-08-03 13:29:09 +0000744extern Addr VG_(shadow_base); /* tool's shadow memory */
fitzhardinge98abfc72003-12-16 02:05:15 +0000745extern Addr VG_(shadow_end);
746extern Addr VG_(valgrind_base); /* valgrind's address range */
nethercote820bd8c2004-09-07 23:04:49 +0000747extern Addr VG_(valgrind_last); // Nb: last byte, rather than one past the end
fitzhardinge98abfc72003-12-16 02:05:15 +0000748
nethercote73b526f2004-10-31 18:48:21 +0000749extern struct vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
750extern struct vki_rlimit VG_(client_rlimit_stack); /* client's original rlimit stack */
fitzhardingeb50068f2004-02-24 23:42:55 +0000751
fitzhardingea49f9b52003-12-16 22:26:45 +0000752/* client executable file descriptor */
753extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +0000754
nethercotef6a1d502004-08-09 12:21:57 +0000755// Help set up the child used when doing execve() with --trace-children=yes
756Char* VG_(build_child_VALGRINDCLO) ( Char* exename );
757Char* VG_(build_child_exename) ( void );
758
sewardjb5f6f512005-03-10 23:59:00 +0000759/* The master thread the one which will be responsible for mopping
760 everything up at exit. Normally it is tid 1, since that's the
761 first thread created, but it may be something else after a
762 fork(). */
763extern ThreadId VG_(master_tid);
764
sewardjde4a1d02002-03-22 01:27:54 +0000765/* Called when some unhandleable client behaviour is detected.
766 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +0000767extern void VG_(unimplemented) ( Char* msg )
768 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +0000769
nethercote04d0fbc2004-01-26 16:48:06 +0000770/* Something of a function looking for a home ... start up debugger. */
njnc6168192004-11-29 13:54:10 +0000771extern void VG_(start_debugger) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +0000772
sewardjde4a1d02002-03-22 01:27:54 +0000773/* Counts downwards in vg_run_innerloop. */
774extern UInt VG_(dispatch_ctr);
775
sewardj4ccf7072004-11-28 16:58:05 +0000776/* Stats ... */
nethercote844e7122004-08-02 15:27:22 +0000777extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000778
sewardj51ac0872004-12-21 01:20:49 +0000779/* Indicates what arch and subarch we are running on. */
780extern VexArch VG_(vex_arch);
781extern VexSubArch VG_(vex_subarch);
782
njn1f707722005-03-27 03:17:52 +0000783/* 64-bit counter for the number of basic blocks done. */
784extern ULong VG_(bbs_done);
785
nethercote2e05c332004-09-06 16:43:37 +0000786
sewardjde4a1d02002-03-22 01:27:54 +0000787/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000788 Exports of vg_transtab.c
789 ------------------------------------------------------------------ */
790
sewardjfa8ec112005-01-19 11:55:34 +0000791/* The fast-cache for tt-lookup, and for finding counters. */
792extern ULong* VG_(tt_fast) [VG_TT_FAST_SIZE];
793extern UInt* VG_(tt_fastN)[VG_TT_FAST_SIZE];
njn25e49d8e72002-09-23 09:36:25 +0000794
sewardjb5f6f512005-03-10 23:59:00 +0000795
nethercote92e7b7f2004-08-07 17:52:25 +0000796extern void VG_(init_tt_tc) ( void );
sewardj6c3769f2002-11-29 01:02:45 +0000797
sewardjfa8ec112005-01-19 11:55:34 +0000798extern
799void VG_(add_to_trans_tab)( VexGuestExtents* vge,
800 Addr64 entry,
801 AddrH code,
802 UInt code_len );
803
804extern Bool VG_(search_transtab) ( /*OUT*/AddrH* result,
805 Addr64 guest_addr,
806 Bool upd_cache );
807
808extern void VG_(discard_translations) ( Addr64 start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +0000809
sewardj4ccf7072004-11-28 16:58:05 +0000810extern void VG_(sanity_check_tt_tc) ( Char* caller );
sewardjde4a1d02002-03-22 01:27:54 +0000811
nethercote92e7b7f2004-08-07 17:52:25 +0000812extern void VG_(print_tt_tc_stats) ( void );
813
sewardjfa8ec112005-01-19 11:55:34 +0000814extern UInt VG_(get_bbs_translated) ( void );
815
816extern void VG_(show_BB_profile) ( void );
817
sewardjde4a1d02002-03-22 01:27:54 +0000818
sewardjde4a1d02002-03-22 01:27:54 +0000819/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000820 Exports of vg_syscall.S
821 ------------------------------------------------------------------ */
822
njnca6fef02004-11-29 16:49:18 +0000823// We use a full prototype rather than "..." here to ensure that all
824// arguments get converted to a UWord appropriately. Not doing so can
825// cause problems when passing 32-bit integers on 64-bit platforms, because
826// the top 32-bits might not be zeroed appropriately, eg. as would happen
827// with the 6th arg on AMD64 which is passed on the stack.
njnf4aeaea2004-11-29 17:33:31 +0000828extern Word VG_(do_syscall) ( UInt, UWord, UWord, UWord, UWord, UWord, UWord );
njnca6fef02004-11-29 16:49:18 +0000829
830// Macros make life easier.
831#define vgPlain_do_syscall0(s) VG_(do_syscall)((s),0,0,0,0,0,0)
832#define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),0,0,0,0,0)
833#define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),0,0,0,0)
834#define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),0,0,0)
835#define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),(d),0,0)
836#define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),(d),(e),0)
837#define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),(d),(e),(f))
838
jsgf855d93d2003-10-13 22:26:55 +0000839extern Int VG_(clone) ( Int (*fn)(void *), void *stack, Int flags, void *arg,
sewardjb5f6f512005-03-10 23:59:00 +0000840 Int *child_tid, Int *parent_tid, vki_modify_ldt_t * );
fitzhardinge4f10ada2004-06-03 10:00:42 +0000841extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +0000842
843/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000844 Exports of vg_dispatch.S
845 ------------------------------------------------------------------ */
846
njnd6f157d2004-11-30 17:27:21 +0000847/* This subroutine is called from the C world. It is passed
848 a pointer to the VEX guest state (arch.vex). It must run code
849 from the instruction pointer in the guest state, and exit when
850 VG_(dispatch_ctr) reaches zero, or we need to defer to the scheduler.
851 The return value must indicate why it returned back to the scheduler.
852 It can also be exited if the executing code throws a non-resumable
853 signal, for example SIGSEGV, in which case control longjmp()s back past
854 here.
855
856 This code simply handles the common case fast -- when the translation
857 address is found in the translation cache. For anything else, the
858 scheduler does the work.
859*/
sewardj0312f512005-03-30 19:04:29 +0000860extern UWord VG_(run_innerloop) ( void* guest_state );
sewardjde4a1d02002-03-22 01:27:54 +0000861
sewardjde4a1d02002-03-22 01:27:54 +0000862/* ---------------------------------------------------------------------
863 Exports of vg_helpers.S
864 ------------------------------------------------------------------ */
865
fitzhardinge92360792003-12-24 10:11:11 +0000866/* Information about trampoline code (for signal return and syscalls) */
867extern const Char VG_(trampoline_code_start);
868extern const Int VG_(trampoline_code_length);
869extern const Int VG_(tramp_sigreturn_offset);
sewardjb5f6f512005-03-10 23:59:00 +0000870extern const Int VG_(tramp_rt_sigreturn_offset);
fitzhardinge92360792003-12-24 10:11:11 +0000871extern const Int VG_(tramp_syscall_offset);
tomee0bcbf2005-05-02 10:28:42 +0000872extern const Int VG_(tramp_gettimeofday_offset);
873extern const Int VG_(tramp_time_offset);
sewardj20917d82002-05-28 01:36:45 +0000874
nethercotec06e2132004-09-03 13:45:29 +0000875// ---------------------------------------------------------------------
876// Architecture-specific things defined in eg. x86/*.c
877// ---------------------------------------------------------------------
878
sewardj51ac0872004-12-21 01:20:49 +0000879// Returns the architecture and subarchitecture, or indicates
880// that this subarchitecture is unable to run Valgrind
881// Returns False to indicate we cannot proceed further.
sewardj51ac0872004-12-21 01:20:49 +0000882extern Bool VGA_(getArchAndSubArch)( /*OUT*/VexArch*,
883 /*OUT*/VexSubArch* );
njncf45fd42004-11-24 16:30:22 +0000884// Accessors for the ThreadArchState
njn35172bc2005-03-26 00:04:03 +0000885#define INSTR_PTR(regs) ((regs).vex.VGA_INSTR_PTR)
886#define STACK_PTR(regs) ((regs).vex.VGA_STACK_PTR)
887#define FRAME_PTR(regs) ((regs).vex.VGA_FRAME_PTR)
888#define CLREQ_ARGS(regs) ((regs).vex.VGA_CLREQ_ARGS)
njn35172bc2005-03-26 00:04:03 +0000889#define CLREQ_RET(regs) ((regs).vex.VGA_CLREQ_RET)
njn16de5572004-11-27 14:27:21 +0000890// Offsets for the Vex state
njn35172bc2005-03-26 00:04:03 +0000891#define O_STACK_PTR (offsetof(VexGuestArchState, VGA_STACK_PTR))
892#define O_FRAME_PTR (offsetof(VexGuestArchState, VGA_FRAME_PTR))
893#define O_CLREQ_RET (offsetof(VexGuestArchState, VGA_CLREQ_RET))
njncf45fd42004-11-24 16:30:22 +0000894
895
sewardj2a99cf62004-11-24 10:44:19 +0000896// Setting up the initial thread (1) state
897extern void
898 VGA_(init_thread1state) ( Addr client_eip,
899 Addr esp_at_startup,
900 /*MOD*/ ThreadArchState* arch );
sewardjde4a1d02002-03-22 01:27:54 +0000901
nethercotec009ebe2004-09-13 11:05:11 +0000902// Thread stuff
sewardj2a99cf62004-11-24 10:44:19 +0000903extern void VGA_(cleanup_thread) ( ThreadArchState* );
904extern void VGA_(setup_child) ( ThreadArchState*, ThreadArchState* );
nethercotef9b59412004-09-10 15:33:32 +0000905
sewardjb5f6f512005-03-10 23:59:00 +0000906// OS/Platform-specific thread clear (after thread exit)
907extern void VGA_(os_state_clear)(ThreadState *);
908
909// OS/Platform-specific thread init (at scheduler init time)
910extern void VGA_(os_state_init)(ThreadState *);
911
912// Run a thread from beginning to end. Does not return if tid == VG_(master_tid).
sewardj0c1a5962005-03-22 00:19:55 +0000913void VGA_(thread_wrapper)(Word /*ThreadId*/ tid);
sewardjb5f6f512005-03-10 23:59:00 +0000914
915// Like VGA_(thread_wrapper), but it allocates a stack before calling
916// to VGA_(thread_wrapper) on that stack, as if it had been set up by
917// clone()
918void VGA_(main_thread_wrapper)(ThreadId tid) __attribute__ ((__noreturn__));
919
920// Return how many bytes of a thread's Valgrind stack are unused
njn990e90c2005-04-05 02:49:09 +0000921SSizeT VGA_(stack_unused)(ThreadId tid);
sewardjb5f6f512005-03-10 23:59:00 +0000922
923// Terminate the process. Does not return.
924void VGA_(terminate)(ThreadId tid, VgSchedReturnCode src) __attribute__((__noreturn__));
925
926// wait until all other threads are dead
927extern void VGA_(reap_threads)(ThreadId self);
928
929// handle an arch-specific client request
930extern Bool VGA_(client_request)(ThreadId tid, UWord *args);
931
nethercotec009ebe2004-09-13 11:05:11 +0000932// Symtab stuff
njncf45fd42004-11-24 16:30:22 +0000933extern UInt* VGA_(reg_addr_from_tst) ( Int regno, ThreadArchState* );
nethercotecd656042004-09-11 23:48:22 +0000934
nethercotefedd8102004-09-13 15:19:34 +0000935// Pointercheck
936extern Bool VGA_(setup_pointercheck) ( void );
937
938// For attaching the debugger
sewardj2a99cf62004-11-24 10:44:19 +0000939extern Int VGA_(ptrace_setregs_from_tst) ( Int pid, ThreadArchState* arch );
nethercotefedd8102004-09-13 15:19:34 +0000940
sewardjb5f6f512005-03-10 23:59:00 +0000941// Used by leakcheck
942extern void VGA_(mark_from_registers)(ThreadId tid, void (*marker)(Addr));
943
sewardjb5f6f512005-03-10 23:59:00 +0000944////typedef struct _ThreadArchAux ThreadArchAux;
nethercote9b3c7652004-10-19 13:18:00 +0000945
946
nethercote41c75da2004-10-18 15:34:14 +0000947// ---------------------------------------------------------------------
948// Platform-specific things defined in eg. x86/*.c
949// ---------------------------------------------------------------------
nethercote775508a2004-09-07 22:38:23 +0000950
njn2521d322005-05-08 14:45:13 +0000951// Do any platform specific redirects.
tom748a1312005-04-02 15:53:01 +0000952extern void VGP_(setup_redirects)(void);
sewardjb5f6f512005-03-10 23:59:00 +0000953
954///* ---------------------------------------------------------------------
955// Thread modelling
956// ------------------------------------------------------------------ */
957//extern void VG_(tm_thread_create) (ThreadId creator, ThreadId tid, Bool detached);
958//extern void VG_(tm_thread_exit) (ThreadId tid);
959//extern Bool VG_(tm_thread_exists) (ThreadId tid);
960//extern void VG_(tm_thread_detach) (ThreadId tid);
961//extern void VG_(tm_thread_join) (ThreadId joiner, ThreadId joinee);
962//extern void VG_(tm_thread_switchto)(ThreadId tid);
963//
964//extern void VG_(tm_mutex_init) (ThreadId tid, Addr mutexp);
965//extern void VG_(tm_mutex_destroy)(ThreadId tid, Addr mutexp);
966//extern void VG_(tm_mutex_trylock)(ThreadId tid, Addr mutexp);
967//extern void VG_(tm_mutex_giveup) (ThreadId tid, Addr mutexp);
968//extern void VG_(tm_mutex_acquire)(ThreadId tid, Addr mutexp);
969//extern void VG_(tm_mutex_tryunlock)(ThreadId tid, Addr mutexp);
970//extern void VG_(tm_mutex_unlock) (ThreadId tid, Addr mutexp);
971//extern Bool VG_(tm_mutex_exists) (Addr mutexp);
972//
973//extern UInt VG_(tm_error_update_extra) (Error *err);
974//extern Bool VG_(tm_error_equal) (VgRes res, Error *e1, Error *e2);
975//extern void VG_(tm_error_print) (Error *err);
976//
977//extern void VG_(tm_init) ();
978//
979//extern void VG_(tm_cond_init) (ThreadId tid, Addr condp);
980//extern void VG_(tm_cond_destroy) (ThreadId tid, Addr condp);
981//extern void VG_(tm_cond_wait) (ThreadId tid, Addr condp, Addr mutexp);
982//extern void VG_(tm_cond_wakeup) (ThreadId tid, Addr condp, Addr mutexp);
983//extern void VG_(tm_cond_signal) (ThreadId tid, Addr condp);
984//
985///* ----- pthreads ----- */
986//extern void VG_(pthread_init) ();
987//extern void VG_(pthread_startfunc_wrapper)(Addr wrapper);
988//
989//struct vg_pthread_newthread_data {
990// void *(*startfunc)(void *arg);
991// void *arg;
992//};
sewardj3b2736a2002-03-24 12:18:35 +0000993
994/* ---------------------------------------------------------------------
995 Finally - autoconf-generated settings
996 ------------------------------------------------------------------ */
997
998#include "config.h"
999
nethercotec06e2132004-09-03 13:45:29 +00001000#endif /* ndef __CORE_H */
1001
sewardjde4a1d02002-03-22 01:27:54 +00001002/*--------------------------------------------------------------------*/
nethercote109d0df2004-09-02 08:10:13 +00001003/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +00001004/*--------------------------------------------------------------------*/