blob: 566cc462c94db22787c0f533375277bdcaef37ed [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +00003/*--- A header file for all private parts of Valgrind's core. ---*/
nethercote5a2664c2004-09-02 15:37:39 +00004/*--- Include no other! (more or less...) ---*/
rjwalsh7109a8c2004-09-02 00:31:02 +00005/*--- core.h ---*/
sewardjde4a1d02002-03-22 01:27:54 +00006/*--------------------------------------------------------------------*/
7
8/*
njnb9c427c2004-12-01 14:14:42 +00009 This file is part of Valgrind, a dynamic binary instrumentation
10 framework.
sewardjde4a1d02002-03-22 01:27:54 +000011
njn53612422005-03-12 16:22:54 +000012 Copyright (C) 2000-2005 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000013 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000014
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
njn25e49d8e72002-09-23 09:36:25 +000030 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000031*/
32
rjwalsh7109a8c2004-09-02 00:31:02 +000033#ifndef __CORE_H
34#define __CORE_H
sewardjde4a1d02002-03-22 01:27:54 +000035
nethercote7be47252004-09-02 16:02:58 +000036/*
njn2521d322005-05-08 14:45:13 +000037 [This comment is not longer accurate -- we're switching to an easier to
38 understand module-based approach, with one or two headers per module,
39 rather than having monolithic headers as described. --njn 07-May-2005]
40
nethercote7be47252004-09-02 16:02:58 +000041 Header hierarchy:
42
43 - core C files include core.h
44 - core asm files include core_asm.h
45 - tool C files include tool.h
46 - tool asm files include tool_asm.h
47
48 - The hierarchy of the header files themselves is based around the
49 following rules:
50
51 - core headers include tool headers
52 - generic headers include arch/OS/platform headers
53 - C headers include asm headers
54
55 This gives the following hierarchy (only showing 'arch' headers, not
nethercote80cca432004-09-02 16:25:49 +000056 'os' or 'platform' headers), where arrows indicate inclusion, and
57 $VG_ARCH==x86:
nethercote7be47252004-09-02 16:02:58 +000058
nethercote80cca432004-09-02 16:25:49 +000059
60 (include/x86/tool_arch_asm.h?) <----- coregrind/x86/core_arch_asm.h
61 ^ ^ ^ ^
62 / \ / \
63 / \ / \
64 / \ / \
65 include/tool_asm.h <-\---- coregrind/core_asm.h \
66 ^ \ ^ \
67 \ include/x86/tool_arch.h <--------coregrind/x86/core_arch.h
68 \ ^ \ ^
69 \ / \ /
70 \ / \ /
71 \ / \ /
72 include/tool.h <------------ coregrind/core.h
73
nethercote7be47252004-09-02 16:02:58 +000074
75 Note that core.h contains the *declarations* of arch-specific functions
76 and variables, which can be used by the core_arch.h file of any
77 architecture. (The functions/variables are *defined* within arch/.)
78 However, arch-specific macros and types cannot go into core.h, because
79 there is no separation between declaration and definition for
80 macros/types, so they instead go into $VG_ARCH/core_arch.h.
nethercote80cca432004-09-02 16:25:49 +000081
82 The tool-specific headers are all in include/ so they can be seen by any
83 external tools.
nethercote7be47252004-09-02 16:02:58 +000084*/
85
jsgf855d93d2003-10-13 22:26:55 +000086/* For system call numbers __NR_... */
nethercotef94fe2f2004-09-10 14:23:59 +000087#include "vki_unistd.h"
jsgf855d93d2003-10-13 22:26:55 +000088
nethercote13343132004-09-02 15:49:09 +000089#include "core_asm.h" // asm stuff
90#include "tool.h" // tool stuff
nethercotebb4222b2004-09-10 17:42:11 +000091#include "core_arch.h" // arch-specific stuff, eg. x86/core_arch.h
nethercote8ff888f2004-11-17 17:11:45 +000092
93// Ugly: this is needed by linux/core_os.h
94typedef struct _ThreadState ThreadState;
95
nethercotebb4222b2004-09-10 17:42:11 +000096#include "core_platform.h" // platform-specific stuff,
97 // eg. x86-linux/core_platform.h
sewardjb5f6f512005-03-10 23:59:00 +000098#include "core_os.h" // OS-specific stuff, eg. linux/core_os.h
sewardjde4a1d02002-03-22 01:27:54 +000099
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
njn26f02512004-11-22 18:33:15 +0000104#undef TL_
105#define TL_(x) vgToolInternal_##x
fitzhardinge98abfc72003-12-16 02:05:15 +0000106
nethercote7be47252004-09-02 16:02:58 +0000107
108/* ---------------------------------------------------------------------
njn14319cc2005-03-13 06:26:22 +0000109 Global macros.
nethercote7be47252004-09-02 16:02:58 +0000110 ------------------------------------------------------------------ */
111
sewardjde4a1d02002-03-22 01:27:54 +0000112/* Max length of a text fragment used to construct error messages. */
njn47b209a2005-03-25 23:47:16 +0000113#define VG_ERRTXT_LEN 4096
sewardjde4a1d02002-03-22 01:27:54 +0000114
sewardjde4a1d02002-03-22 01:27:54 +0000115/* The maximum number of calls we're prepared to save in a
116 backtrace. */
117#define VG_DEEPEST_BACKTRACE 50
118
fitzhardinge98abfc72003-12-16 02:05:15 +0000119/* Useful macros */
120/* a - alignment - must be a power of 2 */
tomde2ec262005-03-29 12:16:10 +0000121#define ROUNDDN(p, a) ((Addr)(p) & ~((Addr)(a)-1))
fitzhardinge98abfc72003-12-16 02:05:15 +0000122#define ROUNDUP(p, a) ROUNDDN((p)+(a)-1, (a))
nethercote73b526f2004-10-31 18:48:21 +0000123#define PGROUNDDN(p) ROUNDDN(p, VKI_PAGE_SIZE)
124#define PGROUNDUP(p) ROUNDUP(p, VKI_PAGE_SIZE)
fitzhardinge98abfc72003-12-16 02:05:15 +0000125
sewardj51ac0872004-12-21 01:20:49 +0000126
nethercote80013e92004-09-05 20:39:51 +0000127/* ---------------------------------------------------------------------
128 Environment variables
129 ------------------------------------------------------------------ */
130
131/* The directory we look for all our auxillary files in */
132#define VALGRINDLIB "VALGRINDLIB"
133
134/* Additional command-line arguments; they are overridden by actual
135 command-line option. Each argument is separated by spaces. There
136 is no quoting mechanism.
137 */
138#define VALGRINDOPTS "VALGRIND_OPTS"
139
140/* If this variable is present in the environment, then valgrind will
141 not parse the command line for options at all; all options come
142 from this variable. Arguments are terminated by ^A (\001). There
143 is no quoting mechanism.
144
145 This variable is not expected to be set by anything other than
146 Valgrind itself, as part of its handling of execve with
147 --trace-children=yes. This variable should not be present in the
148 client environment.
149 */
150#define VALGRINDCLO "_VALGRIND_CLO"
151
fitzhardinge98abfc72003-12-16 02:05:15 +0000152
sewardjde4a1d02002-03-22 01:27:54 +0000153/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000154 Command-line-settable options
155 ------------------------------------------------------------------ */
156
sewardj4f094a72002-11-05 23:37:35 +0000157/* Default destination port to be used in logging over a network, if
158 none specified. */
159#define VG_CLO_DEFAULT_LOGPORT 1500
sewardj73cf3bc2002-11-03 03:20:15 +0000160
161/* The max number of suppression files. */
sewardjde4a1d02002-03-22 01:27:54 +0000162#define VG_CLO_MAX_SFILES 10
163
sewardj4cf05692002-10-27 20:28:29 +0000164/* Describes where logging output is to be sent. */
165typedef
166 enum {
167 VgLogTo_Fd,
168 VgLogTo_File,
sewardj603d4102005-01-11 14:01:02 +0000169 VgLogTo_FileExactly,
sewardj4cf05692002-10-27 20:28:29 +0000170 VgLogTo_Socket
171 } VgLogTo;
172
thughesad1c9562004-06-26 11:27:52 +0000173/* Application-visible file descriptor limits */
174extern Int VG_(fd_soft_limit);
175extern Int VG_(fd_hard_limit);
fitzhardingef0046f22003-12-18 02:39:22 +0000176
sewardj8b635a42004-11-22 19:01:47 +0000177/* Vex iropt control */
178extern VexControl VG_(clo_vex_control);
sewardj72f98ff2002-06-13 17:23:38 +0000179/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000180extern Bool VG_(clo_error_limit);
nethercote04d0fbc2004-01-26 16:48:06 +0000181/* Enquire about whether to attach to a debugger at errors? default: NO */
182extern Bool VG_(clo_db_attach);
183/* The debugger command? default: whatever gdb ./configure found */
184extern Char* VG_(clo_db_command);
sewardjd153fae2005-01-10 17:24:47 +0000185/* Generating a suppression for each error? default: 0 (NO)
186 Other values: 1 (yes, but ask user), 2 (yes, don't ask user) */
187extern Int VG_(clo_gen_suppressions);
sewardjde4a1d02002-03-22 01:27:54 +0000188/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
nethercote27fec902004-06-16 21:26:32 +0000189extern Int VG_(clo_sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000190/* Automatically attempt to demangle C++ names? default: YES */
191extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000192/* Simulate child processes? default: NO */
193extern Bool VG_(clo_trace_children);
sewardj4cf05692002-10-27 20:28:29 +0000194
195/* Where logging output is to be sent to.
196
nethercotef8548672004-06-21 12:42:35 +0000197 When log_to == VgLogTo_Fd, clo_log_fd holds the file id, and is
198 taken from the command line. clo_log_name is irrelevant.
sewardj4cf05692002-10-27 20:28:29 +0000199
nethercotef8548672004-06-21 12:42:35 +0000200 When log_to == VgLogTo_File, clo_log_name holds the log-file
201 name, and is taken from the command line. clo_log_fd is then
202 made to hold the relevant file id, by opening clo_log_name
sewardj4cf05692002-10-27 20:28:29 +0000203 (concatenated with the process ID) for writing.
204
nethercotef8548672004-06-21 12:42:35 +0000205 When log_to == VgLogTo_Socket, clo_log_name holds the
sewardj4cf05692002-10-27 20:28:29 +0000206 hostname:portnumber pair, and is taken from the command line.
nethercotef8548672004-06-21 12:42:35 +0000207 clo_log_fd is then made to hold the relevant file handle, by
sewardj4cf05692002-10-27 20:28:29 +0000208 opening a connection to said hostname:portnumber pair.
209
nethercotef8548672004-06-21 12:42:35 +0000210 Global default is to set log_to == VgLogTo_Fd and log_fd == 2
sewardj4cf05692002-10-27 20:28:29 +0000211 (stderr). */
212extern VgLogTo VG_(clo_log_to);
nethercotef8548672004-06-21 12:42:35 +0000213extern Int VG_(clo_log_fd);
214extern Char* VG_(clo_log_name);
sewardjde4a1d02002-03-22 01:27:54 +0000215
thughes6233a382004-08-21 11:10:44 +0000216/* Add timestamps to log messages? default: NO */
217extern Bool VG_(clo_time_stamp);
218
sewardj6024b212003-07-13 10:54:33 +0000219/* The file descriptor to read for input. default: 0 == stdin */
220extern Int VG_(clo_input_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000221/* The number of suppression files specified. */
222extern Int VG_(clo_n_suppressions);
223/* The names of the suppression files. */
224extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
225
sewardjc771b292004-11-30 18:55:21 +0000226/* DEBUG: print generated code? default: 00000000 ( == NO ) */
sewardjfa8ec112005-01-19 11:55:34 +0000227extern Bool VG_(clo_trace_flags);
228/* DEBUG: do bb profiling? default: 00000000 ( == NO ) */
229extern Bool VG_(clo_profile_flags);
sewardjc771b292004-11-30 18:55:21 +0000230/* DEBUG: if tracing codegen, be quiet until after this bb ( 0 ) */
231extern Int VG_(clo_trace_notbelow);
sewardjde4a1d02002-03-22 01:27:54 +0000232/* DEBUG: print system calls? default: NO */
233extern Bool VG_(clo_trace_syscalls);
234/* DEBUG: print signal details? default: NO */
235extern Bool VG_(clo_trace_signals);
236/* DEBUG: print symtab details? default: NO */
237extern Bool VG_(clo_trace_symtab);
sewardjce058b02005-05-01 08:55:38 +0000238/* DEBUG: print call-frame-info details? default: NO */
239extern Bool VG_(clo_trace_cfi);
sewardjb5f6f512005-03-10 23:59:00 +0000240/* DEBUG: print redirection details? default: NO */
241extern Bool VG_(clo_trace_redir);
sewardj8937c812002-04-12 20:12:20 +0000242/* DEBUG: print thread scheduling events? default: NO */
243extern Bool VG_(clo_trace_sched);
sewardjb5f6f512005-03-10 23:59:00 +0000244/* DEBUG: print pthreads calls? default: NO */
245extern Bool VG_(clo_trace_pthreads);
sewardjde4a1d02002-03-22 01:27:54 +0000246/* Display gory details for the k'th most popular error. default:
247 Infinity. */
248extern Int VG_(clo_dump_error);
249/* Number of parents of a backtrace. Default: 8. */
250extern Int VG_(clo_backtrace_size);
daywalker7e73e5f2003-07-04 16:18:15 +0000251/* Engage miscellaneous weird hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000252extern Char* VG_(clo_weird_hacks);
jsgf855d93d2003-10-13 22:26:55 +0000253
rjwalshf5f536f2003-11-17 17:45:00 +0000254/* Track open file descriptors? */
255extern Bool VG_(clo_track_fds);
256
sewardj858964b2002-10-05 14:15:43 +0000257/* Should we run __libc_freeres at exit? Sometimes causes crashes.
258 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
259 if the latter says False, then the setting of VG_(clo_weird_hacks)
nethercote996901a2004-08-03 13:29:09 +0000260 is ignored. Ie if a tool says no, I don't want this to run, that
sewardj858964b2002-10-05 14:15:43 +0000261 cannot be overridden from the command line. */
262extern Bool VG_(clo_run_libc_freeres);
fitzhardinge462f4f92003-12-18 02:10:54 +0000263/* Generate branch-prediction hints? */
264extern Bool VG_(clo_branchpred);
nethercote77eba602003-11-13 17:35:04 +0000265/* Continue stack traces below main()? Default: NO */
266extern Bool VG_(clo_show_below_main);
fitzhardinge98abfc72003-12-16 02:05:15 +0000267/* Test each client pointer dereference to check it's within the
268 client address space bounds */
269extern Bool VG_(clo_pointercheck);
sewardjb5f6f512005-03-10 23:59:00 +0000270/* Model the pthread library */
271extern Bool VG_(clo_model_pthreads);
sewardjde4a1d02002-03-22 01:27:54 +0000272
sewardj062f3552005-01-06 16:13:40 +0000273/* HACK: Use hacked version of clone for Quadrics Elan3 drivers */
274extern Bool VG_(clo_support_elan3);
275
sewardjb1131a82005-03-19 15:12:21 +0000276/* Should we show VEX emulation warnings? Default: NO */
277extern Bool VG_(clo_show_emwarns);
278
sewardj97724e52005-04-02 23:40:59 +0000279/* How much does the stack pointer have to change before tools
280 consider a stack switch to have happened? Default: 2000000 bytes */
281extern Int VG_(clo_max_stackframe);
282
rjwalshe4e779d2004-04-16 23:02:29 +0000283/* Set up the libc freeres wrapper */
sewardjb5f6f512005-03-10 23:59:00 +0000284extern void VGA_(intercept_libc_freeres_wrapper)(Addr);
rjwalshe4e779d2004-04-16 23:02:29 +0000285
sewardjb5f6f512005-03-10 23:59:00 +0000286// Clean up the client by calling before the final reports
287extern void VGA_(final_tidyup)(ThreadId tid);
288
289// Arch-specific client requests
290extern Bool VGA_(client_requests)(ThreadId tid, UWord *args);
sewardj51ac0872004-12-21 01:20:49 +0000291
sewardjde4a1d02002-03-22 01:27:54 +0000292/* ---------------------------------------------------------------------
nethercote85cdd342004-08-01 22:36:40 +0000293 Profiling stuff
sewardjde4a1d02002-03-22 01:27:54 +0000294 ------------------------------------------------------------------ */
295
njn31066fd2005-03-26 00:42:02 +0000296extern void VG_(init_profiling) ( void );
297extern void VG_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000298
njn25e49d8e72002-09-23 09:36:25 +0000299#undef VGP_PUSHCC
300#undef VGP_POPCC
njn31066fd2005-03-26 00:42:02 +0000301#define VGP_PUSHCC(x) if (VG_(clo_profile)) VG_(pushcc)(x)
302#define VGP_POPCC(x) if (VG_(clo_profile)) VG_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000303
sewardj51ac0872004-12-21 01:20:49 +0000304
sewardjde4a1d02002-03-22 01:27:54 +0000305/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +0000306 Tool-related types
njn810086f2002-11-14 12:42:47 +0000307 ------------------------------------------------------------------ */
nethercote996901a2004-08-03 13:29:09 +0000308/* These structs are not exposed to tools to mitigate possibility of
309 binary-incompatibilities when the core/tool interface changes. Instead,
nethercote46063202004-09-02 08:51:43 +0000310 set functions are provided (see include/tool.h). */
njn810086f2002-11-14 12:42:47 +0000311typedef
312 struct {
313 Char* name;
314 Char* version;
315 Char* description;
316 Char* copyright_author;
317 Char* bug_reports_to;
njn120281f2003-02-03 12:20:07 +0000318 UInt avg_translation_sizeB;
njn810086f2002-11-14 12:42:47 +0000319 }
320 VgDetails;
321
322extern VgDetails VG_(details);
323
324/* If new fields are added to this type, update:
325 * - vg_main.c:initialisation of VG_(needs)
326 * - vg_main.c:sanity_check_needs()
327 *
328 * If the name of this type or any of its fields change, update:
329 * - dependent comments (just search for "VG_(needs)").
330 */
331typedef
332 struct {
333 Bool libc_freeres;
334 Bool core_errors;
njn95ec8702004-11-22 16:46:13 +0000335 Bool tool_errors;
njn810086f2002-11-14 12:42:47 +0000336 Bool basic_block_discards;
njnabb14ad2004-11-24 16:57:16 +0000337 Bool no_longer_used_1; // for backwards compatibility
njn810086f2002-11-14 12:42:47 +0000338 Bool command_line_options;
339 Bool client_requests;
njn37624a72004-11-22 20:37:42 +0000340 Bool no_longer_used_0; // for backwards compatibility
njn810086f2002-11-14 12:42:47 +0000341 Bool syscall_wrapper;
njn810086f2002-11-14 12:42:47 +0000342 Bool sanity_checks;
343 Bool data_syms;
fitzhardinge98abfc72003-12-16 02:05:15 +0000344 Bool shadow_memory;
njn810086f2002-11-14 12:42:47 +0000345 }
346 VgNeeds;
347
348extern VgNeeds VG_(needs);
349
fitzhardinge98abfc72003-12-16 02:05:15 +0000350#include "vg_toolint.h"
njn810086f2002-11-14 12:42:47 +0000351
sewardj51ac0872004-12-21 01:20:49 +0000352
njn810086f2002-11-14 12:42:47 +0000353/* ---------------------------------------------------------------------
354 Exports of vg_needs.c
355 ------------------------------------------------------------------ */
356
357void VG_(sanity_check_needs)(void);
358
sewardj51ac0872004-12-21 01:20:49 +0000359
njn810086f2002-11-14 12:42:47 +0000360/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000361 Exports of vg_malloc2.c
362 ------------------------------------------------------------------ */
363
364/* Allocation arenas.
njn3e884182003-04-15 13:03:23 +0000365
366 CORE for the core's general use.
nethercote60f5b822004-01-26 17:24:42 +0000367 TOOL for the tool to use (and the only one it uses).
njn3e884182003-04-15 13:03:23 +0000368 SYMTAB for Valgrind's symbol table storage.
nethercote996901a2004-08-03 13:29:09 +0000369 CLIENT for the client's mallocs/frees, if the tool replaces glibc's
370 malloc() et al -- redzone size is chosen by the tool.
njn3e884182003-04-15 13:03:23 +0000371 DEMANGLE for the C++ demangler.
372 EXECTXT for storing ExeContexts.
373 ERRORS for storing CoreErrors.
njn3e884182003-04-15 13:03:23 +0000374
njn25e49d8e72002-09-23 09:36:25 +0000375 When adding a new arena, remember also to add it to ensure_mm_init().
sewardjde4a1d02002-03-22 01:27:54 +0000376*/
377typedef Int ArenaId;
378
njn9f46df62005-03-13 18:11:44 +0000379#define VG_N_ARENAS 7
sewardjde4a1d02002-03-22 01:27:54 +0000380
njn3e884182003-04-15 13:03:23 +0000381#define VG_AR_CORE 0
nethercote60f5b822004-01-26 17:24:42 +0000382#define VG_AR_TOOL 1
njn3e884182003-04-15 13:03:23 +0000383#define VG_AR_SYMTAB 2
njn9f46df62005-03-13 18:11:44 +0000384#define VG_AR_CLIENT 3
385#define VG_AR_DEMANGLE 4
386#define VG_AR_EXECTXT 5
387#define VG_AR_ERRORS 6
sewardjde4a1d02002-03-22 01:27:54 +0000388
nethercote2d5b8162004-08-11 09:40:52 +0000389// This is both the minimum payload size of a malloc'd block, and its
390// minimum alignment. Must be a power of 2 greater than 4, and should be
391// greater than 8.
392#define VG_MIN_MALLOC_SZB 8
393
nethercote7ac7f7b2004-11-02 12:36:02 +0000394extern void* VG_(arena_malloc) ( ArenaId arena, SizeT nbytes );
njn25e49d8e72002-09-23 09:36:25 +0000395extern void VG_(arena_free) ( ArenaId arena, void* ptr );
njn828022a2005-03-13 14:56:31 +0000396extern void* VG_(arena_calloc) ( ArenaId arena,
njn926ed472005-03-11 04:44:10 +0000397 SizeT nmemb, SizeT bytes_per_memb );
njn828022a2005-03-13 14:56:31 +0000398extern void* VG_(arena_realloc) ( ArenaId arena, void* ptr, SizeT size );
sewardjde4a1d02002-03-22 01:27:54 +0000399
njn8a97c6d2005-03-31 04:37:24 +0000400/* Sets the size of the redzones at the start and end of heap blocks. This
401 must be called before any of VG_(malloc) and friends are called. */
402extern void VG_(set_client_malloc_redzone_szB) ( SizeT rz_szB );
403
nethercote7ac7f7b2004-11-02 12:36:02 +0000404extern SizeT VG_(arena_payload_szB) ( ArenaId aid, void* payload );
njn8a6b6c02003-04-22 22:45:55 +0000405
nethercote885dd912004-08-03 23:14:00 +0000406extern void VG_(sanity_check_malloc_all) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000407
nethercote3a42fb82004-08-03 18:08:50 +0000408extern void VG_(print_all_arena_stats) ( void );
nethercote885dd912004-08-03 23:14:00 +0000409
sewardj51ac0872004-12-21 01:20:49 +0000410
sewardjde4a1d02002-03-22 01:27:54 +0000411/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000412 Exports of vg_intercept.c
sewardj2e93c502002-04-12 11:12:52 +0000413 ------------------------------------------------------------------ */
414
415/* This doesn't export code or data that valgrind.so needs to link
416 against. However, the scheduler does need to know the following
417 request codes. A few, publically-visible, request codes are also
nethercote996901a2004-08-03 13:29:09 +0000418 defined in valgrind.h, and similar headers for some tools. */
sewardj2e93c502002-04-12 11:12:52 +0000419
njnd13e5e62005-03-26 03:50:14 +0000420/* Obsolete pthread-related requests */
njn4c791212003-05-02 17:53:54 +0000421#define VG_USERREQ__MALLOC 0x2001
422#define VG_USERREQ__FREE 0x2002
sewardj20917d82002-05-28 01:36:45 +0000423#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
sewardj20917d82002-05-28 01:36:45 +0000424#define VG_USERREQ__QUIT 0x3002
sewardj20917d82002-05-28 01:36:45 +0000425#define VG_USERREQ__WAIT_JOINER 0x3003
sewardj20917d82002-05-28 01:36:45 +0000426#define VG_USERREQ__PTHREAD_JOIN 0x3004
sewardj20917d82002-05-28 01:36:45 +0000427#define VG_USERREQ__SET_CANCELSTATE 0x3005
428#define VG_USERREQ__SET_CANCELTYPE 0x3006
sewardj20917d82002-05-28 01:36:45 +0000429#define VG_USERREQ__TESTCANCEL 0x3007
sewardj20917d82002-05-28 01:36:45 +0000430#define VG_USERREQ__SET_CANCELPEND 0x3008
sewardj20917d82002-05-28 01:36:45 +0000431#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
thughese321d492004-10-17 15:00:20 +0000432#define VG_USERREQ__PTHREAD_GET_THREADID 0x300A
433#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300B
434#define VG_USERREQ__PTHREAD_MUTEX_TIMEDLOCK 0x300C
sewardj20917d82002-05-28 01:36:45 +0000435#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
436#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
437#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
438#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
439#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
440#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
441#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
442#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
sewardj00a66b12002-10-12 16:42:35 +0000443#define VG_USERREQ__PTHREAD_SETSPECIFIC_PTR 0x3015
444#define VG_USERREQ__PTHREAD_GETSPECIFIC_PTR 0x3016
njnd13e5e62005-03-26 03:50:14 +0000445#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
sewardj20917d82002-05-28 01:36:45 +0000446#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
sewardjb5f6f512005-03-10 23:59:00 +0000447#define VG_USERREQ__SIGWAIT 0x3019
sewardj20917d82002-05-28 01:36:45 +0000448#define VG_USERREQ__PTHREAD_KILL 0x301A
449#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj00a66b12002-10-12 16:42:35 +0000450#define VG_USERREQ__PTHREAD_KEY_VALIDATE 0x301C
sewardj8ad94e12002-05-29 00:10:20 +0000451#define VG_USERREQ__CLEANUP_PUSH 0x3020
452#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000453#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardjef037c72002-05-30 00:40:03 +0000454#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjb5f6f512005-03-10 23:59:00 +0000455#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024
sewardj2cb00342002-06-28 01:46:26 +0000456#define VG_USERREQ__SET_FHSTACK_USED 0x3025
457#define VG_USERREQ__GET_FHSTACK_USED 0x3026
458#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
459#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
fitzhardinge98abfc72003-12-16 02:05:15 +0000460#define VG_USERREQ__GET_SIGRT_MIN 0x302B
461#define VG_USERREQ__GET_SIGRT_MAX 0x302C
462#define VG_USERREQ__ALLOC_RTSIG 0x302D
fitzhardinge98abfc72003-12-16 02:05:15 +0000463#define VG_USERREQ__GET_MALLOCFUNCS 0x3030
thughesdaa34562004-06-27 12:48:53 +0000464#define VG_USERREQ__GET_STACK_INFO 0x3033
sewardj45b4b372002-04-16 22:50:32 +0000465#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000466#define VG_USERREQ__PTHREAD_ERROR 0x3102
sewardjb5f6f512005-03-10 23:59:00 +0000467
468
fitzhardinge39de4b42003-10-31 07:12:21 +0000469/* Internal equivalent of VALGRIND_PRINTF . */
470#define VG_USERREQ__INTERNAL_PRINTF 0x3103
njnaa3c26b2005-03-12 05:32:28 +0000471/* Internal equivalent of VALGRIND_PRINTF_BACKTRACE . (no longer used) */
472//#define VG_USERREQ__INTERNAL_PRINTF_BACKTRACE 0x3104
sewardj45b4b372002-04-16 22:50:32 +0000473
sewardjb5f6f512005-03-10 23:59:00 +0000474/* Denote the finish of __libc_freeres_wrapper().
475 A synonym for exit. */
476#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
sewardj54cacf02002-04-12 23:24:59 +0000477
sewardj9ee81f52005-04-02 17:38:59 +0000478/* Intercept prefix stuff. See coregrind/vg_replace_malloc.c for
479 details. Unfortunately the "_vgi_" literal is also hardcoded in
480 that file, so if you change this one you must also change the other
481 one. */
482#define VG_INTERCEPT_PREFIX "_vgi_"
483#define VG_INTERCEPT_PREFIX_LEN 5
rjwalshe4e779d2004-04-16 23:02:29 +0000484
sewardj9ee81f52005-04-02 17:38:59 +0000485/* Not sure what these are for. Todo: clarify */
486#define VG_WRAPPER_PREFIX "_vgw_"
487#define VG_WRAPPER_PREFIX_LEN 5
488#define VG_WRAPPER(name) _vgw_##name
489#define VG_WRAPPER_ALIAS(name) "_vgw_" #name
rjwalshe4e779d2004-04-16 23:02:29 +0000490
njn4c791212003-05-02 17:53:54 +0000491
fitzhardinge98abfc72003-12-16 02:05:15 +0000492struct vg_mallocfunc_info {
493 /* things vg_replace_malloc.o needs to know about */
njncf81d552005-03-31 04:52:26 +0000494 void* (*tl_malloc) (ThreadId tid, SizeT n);
495 void* (*tl___builtin_new) (ThreadId tid, SizeT n);
496 void* (*tl___builtin_vec_new) (ThreadId tid, SizeT n);
497 void* (*tl_memalign) (ThreadId tid, SizeT align, SizeT n);
498 void* (*tl_calloc) (ThreadId tid, SizeT nmemb, SizeT n);
499 void (*tl_free) (ThreadId tid, void* p);
500 void (*tl___builtin_delete) (ThreadId tid, void* p);
501 void (*tl___builtin_vec_delete)(ThreadId tid, void* p);
502 void* (*tl_realloc) (ThreadId tid, void* p, SizeT size);
fitzhardinge98abfc72003-12-16 02:05:15 +0000503
njncf81d552005-03-31 04:52:26 +0000504 SizeT (*arena_payload_szB) (ArenaId aid, void* payload);
fitzhardinge98abfc72003-12-16 02:05:15 +0000505
fitzhardinge98abfc72003-12-16 02:05:15 +0000506 Bool clo_trace_malloc;
507};
sewardj1fe7b002002-07-16 01:43:15 +0000508
sewardj51ac0872004-12-21 01:20:49 +0000509
sewardj2e93c502002-04-12 11:12:52 +0000510/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000511 Exports of vg_defaults.c
512 ------------------------------------------------------------------ */
513
njnd13e5e62005-03-26 03:50:14 +0000514extern Bool VG_(tl_malloc_called_deliberately);
njn3e884182003-04-15 13:03:23 +0000515
sewardj51ac0872004-12-21 01:20:49 +0000516
nethercote1f0173b2004-02-28 15:40:36 +0000517
518/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000519 Exports of vg_scheduler.c
520 ------------------------------------------------------------------ */
521
sewardjb5f6f512005-03-10 23:59:00 +0000522/*
523 Thread state machine:
524
525 Empty -> Init -> Runnable <=> WaitSys/Yielding
526 ^ |
527 \---- Zombie -----/
528 */
sewardj2e93c502002-04-12 11:12:52 +0000529typedef
jsgf855d93d2003-10-13 22:26:55 +0000530 enum ThreadStatus {
sewardj2e93c502002-04-12 11:12:52 +0000531 VgTs_Empty, /* this slot is not in use */
sewardjb5f6f512005-03-10 23:59:00 +0000532 VgTs_Init, /* just allocated */
533 VgTs_Runnable, /* ready to run */
jsgf855d93d2003-10-13 22:26:55 +0000534 VgTs_WaitSys, /* waiting for a syscall to complete */
sewardjb5f6f512005-03-10 23:59:00 +0000535 VgTs_Yielding, /* temporarily yielding the CPU */
536 VgTs_Zombie, /* transient state just before exiting */
sewardj2e93c502002-04-12 11:12:52 +0000537 }
538 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000539
sewardjb5f6f512005-03-10 23:59:00 +0000540/* Return codes from the scheduler. */
thughes11975ff2004-06-12 12:58:22 +0000541typedef
sewardjb5f6f512005-03-10 23:59:00 +0000542 enum {
543 VgSrc_None, /* not exiting yet */
544 VgSrc_ExitSyscall, /* client called exit(). This is the normal
545 route out. */
546 VgSrc_FatalSig /* Killed by the default action of a fatal
547 signal */
thughes11975ff2004-06-12 12:58:22 +0000548 }
sewardjb5f6f512005-03-10 23:59:00 +0000549 VgSchedReturnCode;
thughes11975ff2004-06-12 12:58:22 +0000550
sewardjb5f6f512005-03-10 23:59:00 +0000551struct _ThreadState {
njn25e49d8e72002-09-23 09:36:25 +0000552 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
553 The thread identity is simply the index in vg_threads[].
554 ThreadId == 1 is the root thread and has the special property
555 that we don't try and allocate or deallocate its stack. For
556 convenience of generating error message, we also put the
557 ThreadId in this tid field, but be aware that it should
558 ALWAYS == the index in vg_threads[]. */
559 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000560
sewardjb5f6f512005-03-10 23:59:00 +0000561 /* Current scheduling status. */
njn25e49d8e72002-09-23 09:36:25 +0000562 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000563
sewardjb5f6f512005-03-10 23:59:00 +0000564 /* This is set if the thread is in the process of exiting for any
565 reason. The precise details of the exit are in the OS-specific
566 state. */
567 VgSchedReturnCode exitreason;
sewardj3b5d8862002-04-20 13:53:23 +0000568
sewardjb5f6f512005-03-10 23:59:00 +0000569 /* Architecture-specific thread state. */
570 ThreadArchState arch;
sewardjb48e5002002-05-13 00:16:03 +0000571
njn25e49d8e72002-09-23 09:36:25 +0000572 /* This thread's blocked-signals mask. Semantics is that for a
573 signal to be delivered to this thread, the signal must not be
jsgf855d93d2003-10-13 22:26:55 +0000574 blocked by this signal mask. If more than one thread accepts a
575 signal, then it will be delivered to one at random. If all
576 threads block the signal, it will remain pending until either a
sewardjb5f6f512005-03-10 23:59:00 +0000577 thread unblocks it or someone uses sigwaitsig/sigtimedwait. */
nethercote73b526f2004-10-31 18:48:21 +0000578 vki_sigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000579
sewardjb5f6f512005-03-10 23:59:00 +0000580 /* tmp_sig_mask is usually the same as sig_mask, and is kept in
581 sync whenever sig_mask is changed. The only time they have
582 different values is during the execution of a sigsuspend, where
583 tmp_sig_mask is the temporary mask which sigsuspend installs.
584 It is only consulted to compute the signal mask applied to a
585 signal handler. */
586 vki_sigset_t tmp_sig_mask;
sewardj2e93c502002-04-12 11:12:52 +0000587
sewardjb5f6f512005-03-10 23:59:00 +0000588 /* A little signal queue for signals we can't get the kernel to
589 queue for us. This is only allocated as needed, since it should
590 be rare. */
591 struct SigQueue *sig_queue;
592
593 /* Syscall the Thread is currently running; -1 if none. Should only
594 be set while Thread is in VgTs_WaitSys. */
595 Int syscallno;
596
597 /* A value the Tool wants to pass from its pre-syscall to its
598 post-syscall function. */
599 void *tool_pre_syscall_value;
thughes8abf3922004-10-16 10:59:49 +0000600
njn50ba34e2005-04-04 02:41:42 +0000601 /* Client stacks. When a thread slot is freed, we don't deallocate its
njn25e49d8e72002-09-23 09:36:25 +0000602 stack; we just leave it lying around for the next use of the
603 slot. If the next use of the slot requires a larger stack,
604 only then is the old one deallocated and a new one
605 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000606
njn25e49d8e72002-09-23 09:36:25 +0000607 For the main thread (threadid == 0), this mechanism doesn't
608 apply. We don't know the size of the stack since we didn't
609 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000610
njn25e49d8e72002-09-23 09:36:25 +0000611 /* The allocated size of this thread's stack (permanently zero
612 if this is ThreadId == 0, since we didn't allocate its stack) */
njn50ba34e2005-04-04 02:41:42 +0000613 SizeT client_stack_szB;
sewardj2e93c502002-04-12 11:12:52 +0000614
sewardj92a59562002-09-30 00:53:10 +0000615 /* Address of the highest legitimate word in this stack. This is
616 used for error messages only -- not critical for execution
617 correctness. Is is set for all stacks, specifically including
618 ThreadId == 0 (the main thread). */
njn50ba34e2005-04-04 02:41:42 +0000619 Addr client_stack_highest_word;
njn25e49d8e72002-09-23 09:36:25 +0000620
fitzhardinge98c4dc02004-03-16 08:27:29 +0000621 /* Alternate signal stack */
nethercote73b526f2004-10-31 18:48:21 +0000622 vki_stack_t altstack;
fitzhardinge98c4dc02004-03-16 08:27:29 +0000623
sewardjb5f6f512005-03-10 23:59:00 +0000624 /* OS-specific thread state */
625 os_thread_t os_state;
sewardj004e8ca2005-02-28 17:27:04 +0000626
627 /* Used in the syscall handlers. Set to True to indicate that the
628 PRE routine for a syscall has set the syscall result already and
629 so the syscall does not need to be handed to the kernel. */
630 Bool syscall_result_set;
sewardjb5f6f512005-03-10 23:59:00 +0000631
632 /* Per-thread jmp_buf to resume scheduler after a signal */
633 Bool sched_jmpbuf_valid;
634 jmp_buf sched_jmpbuf;
nethercote8ff888f2004-11-17 17:11:45 +0000635};
sewardj2e93c502002-04-12 11:12:52 +0000636
sewardj018f7622002-05-15 21:13:39 +0000637/* The thread table. */
638extern ThreadState VG_(threads)[VG_N_THREADS];
639
sewardjb5f6f512005-03-10 23:59:00 +0000640/* Allocate a new ThreadState */
641extern ThreadId VG_(alloc_ThreadState)(void);
642
643/* A thread exits. tid must currently be running. */
644extern void VG_(exit_thread)(ThreadId tid);
645
646/* Kill a thread. This interrupts whatever a thread is doing, and
647 makes it exit ASAP. This does not set the exitreason or
648 exitcode. */
649extern void VG_(kill_thread)(ThreadId tid);
650
sewardj018f7622002-05-15 21:13:39 +0000651/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000652extern Bool VG_(is_valid_tid) ( ThreadId tid );
653
jsgf855d93d2003-10-13 22:26:55 +0000654/* Get the ThreadState for a particular thread */
655extern ThreadState *VG_(get_ThreadState)(ThreadId tid);
656
sewardjb5f6f512005-03-10 23:59:00 +0000657/* Given an LWP id (ie, real kernel thread id), find the corresponding
658 ThreadId */
659extern ThreadId VG_(get_lwp_tid)(Int lwpid);
660
661/* Returns true if a thread is currently running (ie, has the CPU lock) */
662extern Bool VG_(is_running_thread)(ThreadId tid);
663
664/* Returns true if the thread is in the process of exiting */
665extern Bool VG_(is_exiting)(ThreadId tid);
666
667/* Return the number of non-dead Threads */
668extern Int VG_(count_living_threads)(void);
669
sewardjccef2e62002-05-29 19:26:32 +0000670/* Nuke all threads except tid. */
sewardjb5f6f512005-03-10 23:59:00 +0000671extern void VG_(nuke_all_threads_except) ( ThreadId me, VgSchedReturnCode reason );
sewardjccef2e62002-05-29 19:26:32 +0000672
sewardjb5f6f512005-03-10 23:59:00 +0000673/* Make a thread the running thread. The thread must previously been
674 sleeping, and not holding the CPU semaphore. This will set the
675 thread state to VgTs_Runnable, and the thread will attempt to take
676 the CPU semaphore. By the time it returns, tid will be the running
677 thread. */
678extern void VG_(set_running) ( ThreadId tid );
jsgf855d93d2003-10-13 22:26:55 +0000679
sewardjb5f6f512005-03-10 23:59:00 +0000680/* Set a thread into a sleeping state. Before the call, the thread
681 must be runnable, and holding the CPU semaphore. When this call
682 returns, the thread will be set to the specified sleeping state,
683 and will not be holding the CPU semaphore. Note that another
684 thread could be running by the time this call returns, so the
685 caller must be careful not to touch any shared state. It is also
686 the caller's responsibility to actually block until the thread is
687 ready to run again. */
688extern void VG_(set_sleeping) ( ThreadId tid, ThreadStatus state );
sewardj2e93c502002-04-12 11:12:52 +0000689
sewardjb5f6f512005-03-10 23:59:00 +0000690/* Yield the CPU for a while */
691extern void VG_(vg_yield)(void);
sewardj7e87e382002-05-03 19:09:05 +0000692
sewardjb5f6f512005-03-10 23:59:00 +0000693// The scheduler.
694extern VgSchedReturnCode VG_(scheduler) ( ThreadId tid );
695
696// Do everything which needs doing before the process finally ends,
697// like printing reports, etc
698extern void VG_(shutdown_actions)(ThreadId tid);
sewardj2e93c502002-04-12 11:12:52 +0000699
700extern void VG_(scheduler_init) ( void );
701
sewardj15a43e12002-04-17 19:35:12 +0000702extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000703
nethercote75d26242004-08-01 22:59:18 +0000704// Longjmp back to the scheduler and thus enter the sighandler immediately.
sewardjb5f6f512005-03-10 23:59:00 +0000705extern void VG_(resume_scheduler) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +0000706
sewardjb5f6f512005-03-10 23:59:00 +0000707/* If true, a fault is Valgrind-internal (ie, a bug) */
708extern Bool VG_(my_fault);
nethercote238a3c32004-08-09 13:13:31 +0000709
sewardj2e93c502002-04-12 11:12:52 +0000710/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000711 Exports of vg_signals.c
712 ------------------------------------------------------------------ */
713
sewardjb5f6f512005-03-10 23:59:00 +0000714/* Set the standard set of blocked signals, used wheneever we're not
715 running a client syscall. */
716extern void VG_(block_signals)(ThreadId tid);
jsgf855d93d2003-10-13 22:26:55 +0000717
sewardjb5f6f512005-03-10 23:59:00 +0000718/* Highest signal the kernel will let us use */
719extern Int VG_(max_signal);
jsgf855d93d2003-10-13 22:26:55 +0000720
sewardjde4a1d02002-03-22 01:27:54 +0000721extern void VG_(sigstartup_actions) ( void );
722
jsgf855d93d2003-10-13 22:26:55 +0000723extern Bool VG_(is_sig_ign) ( Int sigNo );
724
sewardjb5f6f512005-03-10 23:59:00 +0000725/* Poll a thread's set of pending signals, and update the Thread's context to deliver one */
726extern void VG_(poll_signals) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +0000727
728/* Fake system calls for signal handling. */
njn502badb2005-05-08 02:04:49 +0000729extern Int VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss,
730 vki_stack_t* oss );
731extern Int VG_(do_sys_sigaction) ( Int signo,
732 const struct vki_sigaction *new_act,
733 struct vki_sigaction *old_act );
734extern Int VG_(do_sys_sigprocmask) ( ThreadId tid, Int how,
735 vki_sigset_t* set,
736 vki_sigset_t* oldset );
sewardjefbfcdf2002-06-19 17:35:45 +0000737
sewardj2e93c502002-04-12 11:12:52 +0000738/* Handy utilities to block/restore all host signals. */
739extern void VG_(block_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000740 ( /* OUT */ vki_sigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +0000741extern void VG_(restore_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000742 ( /* IN */ vki_sigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000743
jsgf855d93d2003-10-13 22:26:55 +0000744extern void VG_(kill_self)(Int sigNo);
745
fitzhardingef1beb252004-03-16 09:49:08 +0000746/* These function synthesize a fault, as if the running instruction
747 had had a fault. These functions do not return - they longjmp back
748 into the scheduler so the signal can be delivered. */
749extern void VG_(synth_fault) (ThreadId tid);
750extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
751extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
sewardj5e2f0012004-12-13 14:10:34 +0000752extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
fitzhardingef1beb252004-03-16 09:49:08 +0000753
sewardjb5f6f512005-03-10 23:59:00 +0000754/* Extend the stack to cover addr, if possible */
755extern Bool VG_(extend_stack)(Addr addr, UInt maxsize);
756
757/* Returns True if the signal is OK for the client to use */
758extern Bool VG_(client_signal_OK)(Int sigNo);
759
760/* Forces the client's signal handler to SIG_DFL - generally just
761 before using that signal to kill the process. */
762extern void VG_(set_default_handler)(Int sig);
763
764/* Adjust a client's signal mask to match our internal requirements */
765extern void VG_(sanitize_client_sigmask)(ThreadId tid, vki_sigset_t *mask);
766
767/* Wait until a thread-related predicate is true */
768extern void VG_(wait_for_threadstate)(Bool (*pred)(void *), void *arg);
sewardj51ac0872004-12-21 01:20:49 +0000769
sewardjde4a1d02002-03-22 01:27:54 +0000770/* ---------------------------------------------------------------------
771 Exports of vg_mylibc.c
772 ------------------------------------------------------------------ */
773
njnca0518d2004-11-26 19:34:36 +0000774// Useful for making failing stubs, when certain things haven't yet been
775// implemented.
njn50ae1a72005-04-08 23:28:23 +0000776#define I_die_here \
777 VG_(assert_fail) ("Unimplemented functionality", \
778 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
779 "valgrind", VG_BUGS_TO, "")
njnca0518d2004-11-26 19:34:36 +0000780
njn50ae1a72005-04-08 23:28:23 +0000781#define vg_assert(expr) \
782 ((void) ((expr) ? 0 : \
783 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
784 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
785 ""), \
786 0)))
787
788#define vg_assert2(expr, format, args...) \
789 ((void) ((expr) ? 0 : \
790 (VG_(assert_fail) (/*isCore*/True, VG_STRINGIFY(expr), \
791 __FILE__, __LINE__, __PRETTY_FUNCTION__, \
792 format, ##args), \
793 0)))
794
njne427a662002-10-02 11:08:25 +0000795__attribute__ ((__noreturn__))
796extern void VG_(core_panic) ( Char* str );
thughes5876d552004-09-26 18:44:06 +0000797__attribute__ ((__noreturn__))
njnd01fef72005-03-25 23:35:48 +0000798extern void VG_(core_panic_at) ( Char* str, StackTrace ips );
sewardjde4a1d02002-03-22 01:27:54 +0000799
nethercote05675c82004-08-04 10:37:49 +0000800/* Tools use VG_(strdup)() which doesn't expose ArenaId */
njn25e49d8e72002-09-23 09:36:25 +0000801extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +0000802
njn25e49d8e72002-09-23 09:36:25 +0000803extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +0000804extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +0000805
fitzhardinge98abfc72003-12-16 02:05:15 +0000806/* system/mman.h */
nethercote8b5f40c2004-11-02 13:29:50 +0000807extern void* VG_(mmap)( void* start, SizeT length, UInt prot, UInt flags,
nethercote5b9fafd2004-11-04 18:39:22 +0000808 UInt sf_flags, UInt fd, OffT offset );
nethercote8b5f40c2004-11-02 13:29:50 +0000809extern Int VG_(munmap)( void* start, SizeT length );
810extern Int VG_(mprotect)( void *start, SizeT length, UInt prot );
sewardj79048ce2005-02-18 08:28:32 +0000811extern Int VG_(mprotect_native)( void *start, SizeT length, UInt prot );
fitzhardinge98abfc72003-12-16 02:05:15 +0000812
813
jsgf855d93d2003-10-13 22:26:55 +0000814/* Move an fd into the Valgrind-safe range */
815Int VG_(safe_fd)(Int oldfd);
816
sewardj570f8902002-11-03 11:44:36 +0000817extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +0000818
819/* --- Connecting over the network --- */
820extern Int VG_(connect_via_socket)( UChar* str );
821
fitzhardinge98abfc72003-12-16 02:05:15 +0000822/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +0000823extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
824 const Char *val );
825extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
826extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +0000827
sewardjb5f6f512005-03-10 23:59:00 +0000828extern void VG_(nanosleep)(struct vki_timespec *);
njn2521d322005-05-08 14:45:13 +0000829
sewardj570f8902002-11-03 11:44:36 +0000830/* ---------------------------------------------------------------------
831 Exports of vg_message.c
832 ------------------------------------------------------------------ */
833
834/* Low-level -- send bytes directly to the message sink. Do not
835 use. */
836extern void VG_(send_bytes_to_logging_sink) ( Char* msg, Int nbytes );
837
sewardjde4a1d02002-03-22 01:27:54 +0000838/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000839 Exports of vg_demangle.c
840 ------------------------------------------------------------------ */
841
842extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
843
sewardjb5f6f512005-03-10 23:59:00 +0000844extern void VG_(reloc_abs_jump) ( UChar *jmp );
sewardj4ccf7072004-11-28 16:58:05 +0000845
sewardjde4a1d02002-03-22 01:27:54 +0000846/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000847 Exports of vg_translate.c
848 ------------------------------------------------------------------ */
849
sewardjfa8ec112005-01-19 11:55:34 +0000850extern
851Bool VG_(translate) ( ThreadId tid,
852 Addr64 orig_addr,
853 Bool debugging_translation,
854 Int debugging_verbosity );
sewardjb5ff83e2002-12-01 19:40:49 +0000855
sewardjde4a1d02002-03-22 01:27:54 +0000856/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000857 Exports of vg_symtab2.c
858 ------------------------------------------------------------------ */
859
fitzhardinge98abfc72003-12-16 02:05:15 +0000860typedef struct _Segment Segment;
sewardjb5f6f512005-03-10 23:59:00 +0000861typedef struct _CodeRedirect CodeRedirect;
fitzhardinge98abfc72003-12-16 02:05:15 +0000862
863extern Bool VG_(is_object_file) ( const void *hdr );
fitzhardinge98abfc72003-12-16 02:05:15 +0000864extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +0000865extern void VG_(symtab_incref) ( SegInfo * );
nethercote8991d5a2004-11-03 17:07:46 +0000866extern void VG_(symtab_decref) ( SegInfo *, Addr a );
sewardjde4a1d02002-03-22 01:27:54 +0000867
njn25e49d8e72002-09-23 09:36:25 +0000868extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +0000869
sewardjb5f6f512005-03-10 23:59:00 +0000870extern Addr VG_(reverse_search_one_symtab) ( const SegInfo* si, const Char* name );
871
fitzhardinge98abfc72003-12-16 02:05:15 +0000872/* Set up some default redirects */
873extern void VG_(setup_code_redirect_table) ( void );
sewardj25c7c3a2003-07-10 00:17:58 +0000874
sewardjb5f6f512005-03-10 23:59:00 +0000875extern Bool VG_(resolve_redir_allsegs)(CodeRedirect *redir);
876
sewardj35165532005-04-30 18:47:48 +0000877extern Bool VG_(use_CFI_info) ( /*MOD*/Addr* ipP,
878 /*MOD*/Addr* spP,
879 /*MOD*/Addr* fpP,
880 Addr min_accessible,
881 Addr max_accessible );
882
883
sewardjb5f6f512005-03-10 23:59:00 +0000884/* ---------------------------------------------------------------------
885 Exports of vg_redir.c
886 ------------------------------------------------------------------ */
fitzhardinge98abfc72003-12-16 02:05:15 +0000887/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +0000888extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +0000889
tom748a1312005-04-02 15:53:01 +0000890extern void VG_(add_redirect_sym_to_addr)(const Char *from_lib,
891 const Char *from_sym,
892 Addr to_addr);
893extern void VG_(add_redirect_addr_to_addr)(Addr from_addr, Addr to_addr);
sewardjb5f6f512005-03-10 23:59:00 +0000894extern void VG_(resolve_seg_redirs)(SegInfo *si);
895extern Bool VG_(resolve_redir)(CodeRedirect *redir, const SegInfo *si);
896
897/* Wrapping machinery */
898enum return_type {
899 RT_RETURN,
900 RT_LONGJMP,
901 RT_EXIT,
902};
903
904typedef struct _FuncWrapper FuncWrapper;
905struct _FuncWrapper {
906 void *(*before)(va_list args);
907 void (*after) (void *nonce, enum return_type, Word retval);
908};
909
910extern void VG_(wrap_function)(Addr eip, const FuncWrapper *wrapper);
911extern const FuncWrapper *VG_(is_wrapped)(Addr eip);
912extern Bool VG_(is_wrapper_return)(Addr eip);
913
914/* Primary interface for adding wrappers for client-side functions. */
915extern CodeRedirect *VG_(add_wrapper)(const Char *from_lib, const Char *from_sym,
916 const FuncWrapper *wrapper);
917
918extern Bool VG_(is_resolved)(const CodeRedirect *redir);
sewardj51ac0872004-12-21 01:20:49 +0000919
sewardjde4a1d02002-03-22 01:27:54 +0000920/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000921 Exports of vg_main.c
922 ------------------------------------------------------------------ */
923
sewardj73cf3bc2002-11-03 03:20:15 +0000924/* Tell the logging mechanism whether we are logging to a file
925 descriptor or a socket descriptor. */
926extern Bool VG_(logging_to_filedes);
927
njn25e49d8e72002-09-23 09:36:25 +0000928/* Sanity checks which may be done at any time. The scheduler decides when. */
nethercote885dd912004-08-03 23:14:00 +0000929extern void VG_(sanity_check_general) ( Bool force_expensive );
njn25e49d8e72002-09-23 09:36:25 +0000930
fitzhardinge98abfc72003-12-16 02:05:15 +0000931/* Address space */
932extern Addr VG_(client_base); /* client address space limits */
933extern Addr VG_(client_end);
934extern Addr VG_(client_mapbase); /* base of mappings */
935extern Addr VG_(clstk_base); /* client stack range */
936extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +0000937extern Addr VG_(client_trampoline_code);
938
fitzhardinge98abfc72003-12-16 02:05:15 +0000939extern Addr VG_(brk_base); /* start of brk */
940extern Addr VG_(brk_limit); /* current brk */
nethercote996901a2004-08-03 13:29:09 +0000941extern Addr VG_(shadow_base); /* tool's shadow memory */
fitzhardinge98abfc72003-12-16 02:05:15 +0000942extern Addr VG_(shadow_end);
943extern Addr VG_(valgrind_base); /* valgrind's address range */
nethercote820bd8c2004-09-07 23:04:49 +0000944extern Addr VG_(valgrind_last); // Nb: last byte, rather than one past the end
fitzhardinge98abfc72003-12-16 02:05:15 +0000945
nethercote73b526f2004-10-31 18:48:21 +0000946extern struct vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
947extern struct vki_rlimit VG_(client_rlimit_stack); /* client's original rlimit stack */
fitzhardingeb50068f2004-02-24 23:42:55 +0000948
fitzhardingea49f9b52003-12-16 22:26:45 +0000949/* client executable file descriptor */
950extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +0000951
nethercotef6a1d502004-08-09 12:21:57 +0000952// Help set up the child used when doing execve() with --trace-children=yes
953Char* VG_(build_child_VALGRINDCLO) ( Char* exename );
954Char* VG_(build_child_exename) ( void );
955
sewardjb5f6f512005-03-10 23:59:00 +0000956/* The master thread the one which will be responsible for mopping
957 everything up at exit. Normally it is tid 1, since that's the
958 first thread created, but it may be something else after a
959 fork(). */
960extern ThreadId VG_(master_tid);
961
sewardjde4a1d02002-03-22 01:27:54 +0000962/* Called when some unhandleable client behaviour is detected.
963 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +0000964extern void VG_(unimplemented) ( Char* msg )
965 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +0000966
nethercote04d0fbc2004-01-26 16:48:06 +0000967/* Something of a function looking for a home ... start up debugger. */
njnc6168192004-11-29 13:54:10 +0000968extern void VG_(start_debugger) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +0000969
sewardjde4a1d02002-03-22 01:27:54 +0000970/* Counts downwards in vg_run_innerloop. */
971extern UInt VG_(dispatch_ctr);
972
sewardj4ccf7072004-11-28 16:58:05 +0000973/* Stats ... */
nethercote844e7122004-08-02 15:27:22 +0000974extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000975
sewardj51ac0872004-12-21 01:20:49 +0000976/* Indicates what arch and subarch we are running on. */
977extern VexArch VG_(vex_arch);
978extern VexSubArch VG_(vex_subarch);
979
njn1f707722005-03-27 03:17:52 +0000980/* 64-bit counter for the number of basic blocks done. */
981extern ULong VG_(bbs_done);
982
nethercote2e05c332004-09-06 16:43:37 +0000983
sewardjde4a1d02002-03-22 01:27:54 +0000984/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000985 Exports of vg_transtab.c
986 ------------------------------------------------------------------ */
987
sewardjfa8ec112005-01-19 11:55:34 +0000988/* The fast-cache for tt-lookup, and for finding counters. */
989extern ULong* VG_(tt_fast) [VG_TT_FAST_SIZE];
990extern UInt* VG_(tt_fastN)[VG_TT_FAST_SIZE];
njn25e49d8e72002-09-23 09:36:25 +0000991
sewardjb5f6f512005-03-10 23:59:00 +0000992
nethercote92e7b7f2004-08-07 17:52:25 +0000993extern void VG_(init_tt_tc) ( void );
sewardj6c3769f2002-11-29 01:02:45 +0000994
sewardjfa8ec112005-01-19 11:55:34 +0000995extern
996void VG_(add_to_trans_tab)( VexGuestExtents* vge,
997 Addr64 entry,
998 AddrH code,
999 UInt code_len );
1000
1001extern Bool VG_(search_transtab) ( /*OUT*/AddrH* result,
1002 Addr64 guest_addr,
1003 Bool upd_cache );
1004
1005extern void VG_(discard_translations) ( Addr64 start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +00001006
sewardj4ccf7072004-11-28 16:58:05 +00001007extern void VG_(sanity_check_tt_tc) ( Char* caller );
sewardjde4a1d02002-03-22 01:27:54 +00001008
nethercote92e7b7f2004-08-07 17:52:25 +00001009extern void VG_(print_tt_tc_stats) ( void );
1010
sewardjfa8ec112005-01-19 11:55:34 +00001011extern UInt VG_(get_bbs_translated) ( void );
1012
1013extern void VG_(show_BB_profile) ( void );
1014
sewardjde4a1d02002-03-22 01:27:54 +00001015
sewardjde4a1d02002-03-22 01:27:54 +00001016/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001017 Exports of vg_syscall.S
1018 ------------------------------------------------------------------ */
1019
njnca6fef02004-11-29 16:49:18 +00001020// We use a full prototype rather than "..." here to ensure that all
1021// arguments get converted to a UWord appropriately. Not doing so can
1022// cause problems when passing 32-bit integers on 64-bit platforms, because
1023// the top 32-bits might not be zeroed appropriately, eg. as would happen
1024// with the 6th arg on AMD64 which is passed on the stack.
njnf4aeaea2004-11-29 17:33:31 +00001025extern Word VG_(do_syscall) ( UInt, UWord, UWord, UWord, UWord, UWord, UWord );
njnca6fef02004-11-29 16:49:18 +00001026
1027// Macros make life easier.
1028#define vgPlain_do_syscall0(s) VG_(do_syscall)((s),0,0,0,0,0,0)
1029#define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),0,0,0,0,0)
1030#define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),0,0,0,0)
1031#define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),0,0,0)
1032#define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),(d),0,0)
1033#define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),(d),(e),0)
1034#define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),(d),(e),(f))
1035
jsgf855d93d2003-10-13 22:26:55 +00001036extern Int VG_(clone) ( Int (*fn)(void *), void *stack, Int flags, void *arg,
sewardjb5f6f512005-03-10 23:59:00 +00001037 Int *child_tid, Int *parent_tid, vki_modify_ldt_t * );
fitzhardinge4f10ada2004-06-03 10:00:42 +00001038extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +00001039
1040/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001041 Exports of vg_dispatch.S
1042 ------------------------------------------------------------------ */
1043
njnd6f157d2004-11-30 17:27:21 +00001044/* This subroutine is called from the C world. It is passed
1045 a pointer to the VEX guest state (arch.vex). It must run code
1046 from the instruction pointer in the guest state, and exit when
1047 VG_(dispatch_ctr) reaches zero, or we need to defer to the scheduler.
1048 The return value must indicate why it returned back to the scheduler.
1049 It can also be exited if the executing code throws a non-resumable
1050 signal, for example SIGSEGV, in which case control longjmp()s back past
1051 here.
1052
1053 This code simply handles the common case fast -- when the translation
1054 address is found in the translation cache. For anything else, the
1055 scheduler does the work.
1056*/
sewardj0312f512005-03-30 19:04:29 +00001057extern UWord VG_(run_innerloop) ( void* guest_state );
sewardjde4a1d02002-03-22 01:27:54 +00001058
sewardjde4a1d02002-03-22 01:27:54 +00001059/* ---------------------------------------------------------------------
1060 Exports of vg_helpers.S
1061 ------------------------------------------------------------------ */
1062
fitzhardinge92360792003-12-24 10:11:11 +00001063/* Information about trampoline code (for signal return and syscalls) */
1064extern const Char VG_(trampoline_code_start);
1065extern const Int VG_(trampoline_code_length);
1066extern const Int VG_(tramp_sigreturn_offset);
sewardjb5f6f512005-03-10 23:59:00 +00001067extern const Int VG_(tramp_rt_sigreturn_offset);
fitzhardinge92360792003-12-24 10:11:11 +00001068extern const Int VG_(tramp_syscall_offset);
tomee0bcbf2005-05-02 10:28:42 +00001069extern const Int VG_(tramp_gettimeofday_offset);
1070extern const Int VG_(tramp_time_offset);
sewardj20917d82002-05-28 01:36:45 +00001071
njn4f9c9342002-04-29 16:03:24 +00001072/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +00001073 Things relating to the used tool
njn4f9c9342002-04-29 16:03:24 +00001074 ------------------------------------------------------------------ */
1075
fitzhardinge98abfc72003-12-16 02:05:15 +00001076#define VG_TRACK(fn, args...) \
1077 do { \
1078 if (VG_(defined_##fn)()) \
njn26f02512004-11-22 18:33:15 +00001079 TL_(fn)(args); \
fitzhardinge98abfc72003-12-16 02:05:15 +00001080 } while(0)
sewardj18d75132002-05-16 11:06:21 +00001081
fitzhardinge98abfc72003-12-16 02:05:15 +00001082__attribute__ ((noreturn))
1083extern void VG_(missing_tool_func) ( const Char* fn );
sewardj18d75132002-05-16 11:06:21 +00001084
nethercotec06e2132004-09-03 13:45:29 +00001085// ---------------------------------------------------------------------
1086// Architecture-specific things defined in eg. x86/*.c
1087// ---------------------------------------------------------------------
1088
sewardj51ac0872004-12-21 01:20:49 +00001089// Returns the architecture and subarchitecture, or indicates
1090// that this subarchitecture is unable to run Valgrind
1091// Returns False to indicate we cannot proceed further.
sewardj51ac0872004-12-21 01:20:49 +00001092extern Bool VGA_(getArchAndSubArch)( /*OUT*/VexArch*,
1093 /*OUT*/VexSubArch* );
njncf45fd42004-11-24 16:30:22 +00001094// Accessors for the ThreadArchState
njn35172bc2005-03-26 00:04:03 +00001095#define INSTR_PTR(regs) ((regs).vex.VGA_INSTR_PTR)
1096#define STACK_PTR(regs) ((regs).vex.VGA_STACK_PTR)
1097#define FRAME_PTR(regs) ((regs).vex.VGA_FRAME_PTR)
1098#define CLREQ_ARGS(regs) ((regs).vex.VGA_CLREQ_ARGS)
njn35172bc2005-03-26 00:04:03 +00001099#define CLREQ_RET(regs) ((regs).vex.VGA_CLREQ_RET)
njn16de5572004-11-27 14:27:21 +00001100// Offsets for the Vex state
njn35172bc2005-03-26 00:04:03 +00001101#define O_STACK_PTR (offsetof(VexGuestArchState, VGA_STACK_PTR))
1102#define O_FRAME_PTR (offsetof(VexGuestArchState, VGA_FRAME_PTR))
1103#define O_CLREQ_RET (offsetof(VexGuestArchState, VGA_CLREQ_RET))
njncf45fd42004-11-24 16:30:22 +00001104
1105
sewardj2a99cf62004-11-24 10:44:19 +00001106// Setting up the initial thread (1) state
1107extern void
1108 VGA_(init_thread1state) ( Addr client_eip,
1109 Addr esp_at_startup,
1110 /*MOD*/ ThreadArchState* arch );
sewardjde4a1d02002-03-22 01:27:54 +00001111
nethercotec009ebe2004-09-13 11:05:11 +00001112// Thread stuff
sewardj2a99cf62004-11-24 10:44:19 +00001113extern void VGA_(cleanup_thread) ( ThreadArchState* );
1114extern void VGA_(setup_child) ( ThreadArchState*, ThreadArchState* );
nethercotef9b59412004-09-10 15:33:32 +00001115
sewardjb5f6f512005-03-10 23:59:00 +00001116// OS/Platform-specific thread clear (after thread exit)
1117extern void VGA_(os_state_clear)(ThreadState *);
1118
1119// OS/Platform-specific thread init (at scheduler init time)
1120extern void VGA_(os_state_init)(ThreadState *);
1121
1122// Run a thread from beginning to end. Does not return if tid == VG_(master_tid).
sewardj0c1a5962005-03-22 00:19:55 +00001123void VGA_(thread_wrapper)(Word /*ThreadId*/ tid);
sewardjb5f6f512005-03-10 23:59:00 +00001124
1125// Like VGA_(thread_wrapper), but it allocates a stack before calling
1126// to VGA_(thread_wrapper) on that stack, as if it had been set up by
1127// clone()
1128void VGA_(main_thread_wrapper)(ThreadId tid) __attribute__ ((__noreturn__));
1129
1130// Return how many bytes of a thread's Valgrind stack are unused
njn990e90c2005-04-05 02:49:09 +00001131SSizeT VGA_(stack_unused)(ThreadId tid);
sewardjb5f6f512005-03-10 23:59:00 +00001132
1133// Terminate the process. Does not return.
1134void VGA_(terminate)(ThreadId tid, VgSchedReturnCode src) __attribute__((__noreturn__));
1135
1136// wait until all other threads are dead
1137extern void VGA_(reap_threads)(ThreadId self);
1138
1139// handle an arch-specific client request
1140extern Bool VGA_(client_request)(ThreadId tid, UWord *args);
1141
nethercotec009ebe2004-09-13 11:05:11 +00001142// Symtab stuff
njncf45fd42004-11-24 16:30:22 +00001143extern UInt* VGA_(reg_addr_from_tst) ( Int regno, ThreadArchState* );
nethercotecd656042004-09-11 23:48:22 +00001144
nethercotefedd8102004-09-13 15:19:34 +00001145// Pointercheck
1146extern Bool VGA_(setup_pointercheck) ( void );
1147
1148// For attaching the debugger
sewardj2a99cf62004-11-24 10:44:19 +00001149extern Int VGA_(ptrace_setregs_from_tst) ( Int pid, ThreadArchState* arch );
nethercotefedd8102004-09-13 15:19:34 +00001150
sewardjb5f6f512005-03-10 23:59:00 +00001151// Used by leakcheck
1152extern void VGA_(mark_from_registers)(ThreadId tid, void (*marker)(Addr));
1153
sewardjb5f6f512005-03-10 23:59:00 +00001154////typedef struct _ThreadArchAux ThreadArchAux;
nethercote9b3c7652004-10-19 13:18:00 +00001155
1156
nethercote41c75da2004-10-18 15:34:14 +00001157// ---------------------------------------------------------------------
1158// Platform-specific things defined in eg. x86/*.c
1159// ---------------------------------------------------------------------
nethercote775508a2004-09-07 22:38:23 +00001160
njn2521d322005-05-08 14:45:13 +00001161// Do any platform specific redirects.
tom748a1312005-04-02 15:53:01 +00001162extern void VGP_(setup_redirects)(void);
sewardjb5f6f512005-03-10 23:59:00 +00001163
1164///* ---------------------------------------------------------------------
1165// Thread modelling
1166// ------------------------------------------------------------------ */
1167//extern void VG_(tm_thread_create) (ThreadId creator, ThreadId tid, Bool detached);
1168//extern void VG_(tm_thread_exit) (ThreadId tid);
1169//extern Bool VG_(tm_thread_exists) (ThreadId tid);
1170//extern void VG_(tm_thread_detach) (ThreadId tid);
1171//extern void VG_(tm_thread_join) (ThreadId joiner, ThreadId joinee);
1172//extern void VG_(tm_thread_switchto)(ThreadId tid);
1173//
1174//extern void VG_(tm_mutex_init) (ThreadId tid, Addr mutexp);
1175//extern void VG_(tm_mutex_destroy)(ThreadId tid, Addr mutexp);
1176//extern void VG_(tm_mutex_trylock)(ThreadId tid, Addr mutexp);
1177//extern void VG_(tm_mutex_giveup) (ThreadId tid, Addr mutexp);
1178//extern void VG_(tm_mutex_acquire)(ThreadId tid, Addr mutexp);
1179//extern void VG_(tm_mutex_tryunlock)(ThreadId tid, Addr mutexp);
1180//extern void VG_(tm_mutex_unlock) (ThreadId tid, Addr mutexp);
1181//extern Bool VG_(tm_mutex_exists) (Addr mutexp);
1182//
1183//extern UInt VG_(tm_error_update_extra) (Error *err);
1184//extern Bool VG_(tm_error_equal) (VgRes res, Error *e1, Error *e2);
1185//extern void VG_(tm_error_print) (Error *err);
1186//
1187//extern void VG_(tm_init) ();
1188//
1189//extern void VG_(tm_cond_init) (ThreadId tid, Addr condp);
1190//extern void VG_(tm_cond_destroy) (ThreadId tid, Addr condp);
1191//extern void VG_(tm_cond_wait) (ThreadId tid, Addr condp, Addr mutexp);
1192//extern void VG_(tm_cond_wakeup) (ThreadId tid, Addr condp, Addr mutexp);
1193//extern void VG_(tm_cond_signal) (ThreadId tid, Addr condp);
1194//
1195///* ----- pthreads ----- */
1196//extern void VG_(pthread_init) ();
1197//extern void VG_(pthread_startfunc_wrapper)(Addr wrapper);
1198//
1199//struct vg_pthread_newthread_data {
1200// void *(*startfunc)(void *arg);
1201// void *arg;
1202//};
sewardj3b2736a2002-03-24 12:18:35 +00001203
1204/* ---------------------------------------------------------------------
1205 Finally - autoconf-generated settings
1206 ------------------------------------------------------------------ */
1207
1208#include "config.h"
1209
nethercotec06e2132004-09-03 13:45:29 +00001210#endif /* ndef __CORE_H */
1211
sewardjde4a1d02002-03-22 01:27:54 +00001212/*--------------------------------------------------------------------*/
nethercote109d0df2004-09-02 08:10:13 +00001213/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +00001214/*--------------------------------------------------------------------*/