blob: 85313afb56334e838fdd18f2374ceaa4e014f2b6 [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/*
njnc9539842002-10-02 13:26:35 +00009 This file is part of Valgrind, an extensible x86 protected-mode
10 emulator for monitoring program execution on x86-Unixes.
sewardjde4a1d02002-03-22 01:27:54 +000011
nethercotebb1c9912004-01-04 16:43:23 +000012 Copyright (C) 2000-2004 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000013 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000014
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
njn25e49d8e72002-09-23 09:36:25 +000030 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000031*/
32
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/*
37 Header hierarchy:
38
39 - core C files include core.h
40 - core asm files include core_asm.h
41 - tool C files include tool.h
42 - tool asm files include tool_asm.h
43
44 - The hierarchy of the header files themselves is based around the
45 following rules:
46
47 - core headers include tool headers
48 - generic headers include arch/OS/platform headers
49 - C headers include asm headers
50
51 This gives the following hierarchy (only showing 'arch' headers, not
52 'os' or 'platform' headers), where arrows indicate inclusion:
53
54 (tool_arch_asm.h?) <------- core_arch_asm.h
55 ^ ^ ^ ^
56 / \ / \
57 / \ / \
58 tool_asm.h <---\---------- core_asm.h \
59 ^ \ ^ \
60 \ tool_arch.h <---------\---- core_arch.h
61 \ ^ \ ^
62 \ / \ /
63 \ / \ /
64 tool.h <------------------ core.h
65
66 Note that core.h contains the *declarations* of arch-specific functions
67 and variables, which can be used by the core_arch.h file of any
68 architecture. (The functions/variables are *defined* within arch/.)
69 However, arch-specific macros and types cannot go into core.h, because
70 there is no separation between declaration and definition for
71 macros/types, so they instead go into $VG_ARCH/core_arch.h.
72*/
73
sewardjde4a1d02002-03-22 01:27:54 +000074
jsgf855d93d2003-10-13 22:26:55 +000075/* For system call numbers __NR_... */
76#include "vg_unistd.h"
77
nethercote13343132004-09-02 15:49:09 +000078#include "core_asm.h" // asm stuff
79#include "tool.h" // tool stuff
sewardjde4a1d02002-03-22 01:27:54 +000080
fitzhardinge39de4b42003-10-31 07:12:21 +000081#include "valgrind.h"
sewardjde4a1d02002-03-22 01:27:54 +000082
fitzhardinge98abfc72003-12-16 02:05:15 +000083#undef SK_
84#define SK_(x) vgSkinInternal_##x
85
nethercote7be47252004-09-02 16:02:58 +000086
87/* ---------------------------------------------------------------------
88 Build options and table sizes. You should be able to change these
89 options or sizes, recompile, and still have a working system.
90 ------------------------------------------------------------------ */
91
sewardjde4a1d02002-03-22 01:27:54 +000092/* Total number of spill slots available for allocation, if a TempReg
93 doesn't make it into a RealReg. Just bomb the entire system if
94 this value is too small; we don't expect it will ever get
95 particularly high. */
96#define VG_MAX_SPILLSLOTS 24
97
98
99/* Constants for the slow translation lookup cache. */
100#define VG_TRANSTAB_SLOW_BITS 11
101#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
102#define VG_TRANSTAB_SLOW_MASK ((VG_TRANSTAB_SLOW_SIZE) - 1)
103
104/* Size of a buffer used for creating messages. */
105#define M_VG_MSGBUF 10000
106
107/* Size of a smallish table used to read /proc/self/map entries. */
sewardjebc82332002-04-24 14:44:23 +0000108#define M_PROCMAP_BUF 50000
sewardjde4a1d02002-03-22 01:27:54 +0000109
110/* Max length of pathname to a .so/executable file. */
111#define M_VG_LIBNAMESTR 100
112
113/* Max length of a text fragment used to construct error messages. */
114#define M_VG_ERRTXT 512
115
116/* Max length of the string copied from env var VG_ARGS at startup. */
117#define M_VG_CMDLINE_STRLEN 1000
118
119/* Max number of options for Valgrind which we can handle. */
120#define M_VG_CMDLINE_OPTS 100
121
122/* After this many different unsuppressed errors have been observed,
123 be more conservative about collecting new ones. */
124#define M_VG_COLLECT_ERRORS_SLOWLY_AFTER 50
125
126/* After this many different unsuppressed errors have been observed,
127 stop collecting errors at all, and tell the user their program is
128 evidently a steaming pile of camel dung. */
sewardj1bebcbf2002-04-24 21:24:18 +0000129#define M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN 300
sewardjf2537be2002-04-24 21:03:47 +0000130
131/* After this many total errors have been observed, stop collecting
132 errors at all. Counterpart to M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN. */
sewardj1bebcbf2002-04-24 21:24:18 +0000133#define M_VG_COLLECT_NO_ERRORS_AFTER_FOUND 30000
sewardjde4a1d02002-03-22 01:27:54 +0000134
sewardjde4a1d02002-03-22 01:27:54 +0000135/* The maximum number of calls we're prepared to save in a
136 backtrace. */
137#define VG_DEEPEST_BACKTRACE 50
138
sewardjde4a1d02002-03-22 01:27:54 +0000139/* Number of lists in which we keep track of ExeContexts. Should be
140 prime. */
sewardj59fb25c2003-09-28 16:32:58 +0000141#define VG_N_EC_LISTS 4999 /* a prime number */
sewardjde4a1d02002-03-22 01:27:54 +0000142
sewardj2e93c502002-04-12 11:12:52 +0000143/* Defines the thread-scheduling timeslice, in terms of the number of
144 basic blocks we attempt to run each thread for. Smaller values
145 give finer interleaving but much increased scheduling overheads. */
sewardj4505b9e2002-05-28 11:27:31 +0000146#define VG_SCHEDULING_QUANTUM 50000
sewardj2e93c502002-04-12 11:12:52 +0000147
fitzhardingef0046f22003-12-18 02:39:22 +0000148/* Number of file descriptors that Valgrind tries to reserve for
149 it's own use - two per thread plues a small number of extras. */
150#define VG_N_RESERVED_FDS (VG_N_THREADS*2 + 4)
sewardj2e93c502002-04-12 11:12:52 +0000151
sewardjbf290b92002-05-01 02:28:01 +0000152/* Stack size for a thread. We try and check that they do not go
153 beyond it. */
sewardjf0b06452002-06-04 08:38:04 +0000154#define VG_PTHREAD_STACK_SIZE (1 << 20)
sewardjbf290b92002-05-01 02:28:01 +0000155
sewardj20917d82002-05-28 01:36:45 +0000156/* Number of entries in the rwlock-remapping table. */
sewardj89745a52002-09-27 01:04:29 +0000157#define VG_N_RWLOCKS 500
sewardj20917d82002-05-28 01:36:45 +0000158
sewardj8ad94e12002-05-29 00:10:20 +0000159/* Number of entries in each thread's cleanup stack. */
sewardj61821c02003-05-04 13:02:10 +0000160#define VG_N_CLEANUPSTACK 16
sewardj8ad94e12002-05-29 00:10:20 +0000161
sewardj2cb00342002-06-28 01:46:26 +0000162/* Number of entries in each thread's fork-handler stack. */
sewardj4700f042003-07-26 17:49:58 +0000163#define VG_N_FORKHANDLERSTACK 4
sewardj2cb00342002-06-28 01:46:26 +0000164
njn25e49d8e72002-09-23 09:36:25 +0000165/* Max number of callers for context in a suppression. */
166#define VG_N_SUPP_CALLERS 4
sewardj73cf3bc2002-11-03 03:20:15 +0000167
fitzhardinge98abfc72003-12-16 02:05:15 +0000168/* Useful macros */
169/* a - alignment - must be a power of 2 */
170#define ROUNDDN(p, a) ((Addr)(p) & ~((a)-1))
171#define ROUNDUP(p, a) ROUNDDN((p)+(a)-1, (a))
172#define PGROUNDDN(p) ROUNDDN(p, VKI_BYTES_PER_PAGE)
173#define PGROUNDUP(p) ROUNDUP(p, VKI_BYTES_PER_PAGE)
174
175
sewardjde4a1d02002-03-22 01:27:54 +0000176/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000177 Command-line-settable options
178 ------------------------------------------------------------------ */
179
sewardj4f094a72002-11-05 23:37:35 +0000180/* Default destination port to be used in logging over a network, if
181 none specified. */
182#define VG_CLO_DEFAULT_LOGPORT 1500
sewardj73cf3bc2002-11-03 03:20:15 +0000183
184/* The max number of suppression files. */
sewardjde4a1d02002-03-22 01:27:54 +0000185#define VG_CLO_MAX_SFILES 10
186
nethercote04d0fbc2004-01-26 16:48:06 +0000187/* Default debugger command. */
188#define VG_CLO_DEFAULT_DBCOMMAND GDB_PATH " -nw %f %p"
189
sewardj4cf05692002-10-27 20:28:29 +0000190/* Describes where logging output is to be sent. */
191typedef
192 enum {
193 VgLogTo_Fd,
194 VgLogTo_File,
195 VgLogTo_Socket
196 } VgLogTo;
197
jsgf855d93d2003-10-13 22:26:55 +0000198/* pid of main process */
199extern Int VG_(main_pid);
200
201/* pgrp of process (global to all threads) */
202extern Int VG_(main_pgrp);
sewardj4cf05692002-10-27 20:28:29 +0000203
thughesad1c9562004-06-26 11:27:52 +0000204/* Application-visible file descriptor limits */
205extern Int VG_(fd_soft_limit);
206extern Int VG_(fd_hard_limit);
fitzhardingef0046f22003-12-18 02:39:22 +0000207
sewardj72f98ff2002-06-13 17:23:38 +0000208/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000209extern Bool VG_(clo_error_limit);
nethercote04d0fbc2004-01-26 16:48:06 +0000210/* Enquire about whether to attach to a debugger at errors? default: NO */
211extern Bool VG_(clo_db_attach);
212/* The debugger command? default: whatever gdb ./configure found */
213extern Char* VG_(clo_db_command);
njn43c799e2003-04-08 00:08:52 +0000214/* Enquire about generating a suppression for each error? default: NO */
215extern Bool VG_(clo_gen_suppressions);
sewardjde4a1d02002-03-22 01:27:54 +0000216/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
nethercote27fec902004-06-16 21:26:32 +0000217extern Int VG_(clo_sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000218/* Automatically attempt to demangle C++ names? default: YES */
219extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000220/* Simulate child processes? default: NO */
221extern Bool VG_(clo_trace_children);
sewardj4cf05692002-10-27 20:28:29 +0000222
223/* Where logging output is to be sent to.
224
nethercotef8548672004-06-21 12:42:35 +0000225 When log_to == VgLogTo_Fd, clo_log_fd holds the file id, and is
226 taken from the command line. clo_log_name is irrelevant.
sewardj4cf05692002-10-27 20:28:29 +0000227
nethercotef8548672004-06-21 12:42:35 +0000228 When log_to == VgLogTo_File, clo_log_name holds the log-file
229 name, and is taken from the command line. clo_log_fd is then
230 made to hold the relevant file id, by opening clo_log_name
sewardj4cf05692002-10-27 20:28:29 +0000231 (concatenated with the process ID) for writing.
232
nethercotef8548672004-06-21 12:42:35 +0000233 When log_to == VgLogTo_Socket, clo_log_name holds the
sewardj4cf05692002-10-27 20:28:29 +0000234 hostname:portnumber pair, and is taken from the command line.
nethercotef8548672004-06-21 12:42:35 +0000235 clo_log_fd is then made to hold the relevant file handle, by
sewardj4cf05692002-10-27 20:28:29 +0000236 opening a connection to said hostname:portnumber pair.
237
nethercotef8548672004-06-21 12:42:35 +0000238 Global default is to set log_to == VgLogTo_Fd and log_fd == 2
sewardj4cf05692002-10-27 20:28:29 +0000239 (stderr). */
240extern VgLogTo VG_(clo_log_to);
nethercotef8548672004-06-21 12:42:35 +0000241extern Int VG_(clo_log_fd);
242extern Char* VG_(clo_log_name);
sewardjde4a1d02002-03-22 01:27:54 +0000243
thughes6233a382004-08-21 11:10:44 +0000244/* Add timestamps to log messages? default: NO */
245extern Bool VG_(clo_time_stamp);
246
sewardj6024b212003-07-13 10:54:33 +0000247/* The file descriptor to read for input. default: 0 == stdin */
248extern Int VG_(clo_input_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000249/* The number of suppression files specified. */
250extern Int VG_(clo_n_suppressions);
251/* The names of the suppression files. */
252extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
253
254/* Single stepping? default: NO */
255extern Bool VG_(clo_single_step);
256/* Code improvement? default: YES */
257extern Bool VG_(clo_optimise);
njn25e49d8e72002-09-23 09:36:25 +0000258/* DEBUG: print generated code? default: 00000 ( == NO ) */
259extern Bool VG_(clo_trace_codegen);
sewardjde4a1d02002-03-22 01:27:54 +0000260/* DEBUG: print system calls? default: NO */
261extern Bool VG_(clo_trace_syscalls);
262/* DEBUG: print signal details? default: NO */
263extern Bool VG_(clo_trace_signals);
264/* DEBUG: print symtab details? default: NO */
265extern Bool VG_(clo_trace_symtab);
sewardj8937c812002-04-12 20:12:20 +0000266/* DEBUG: print thread scheduling events? default: NO */
267extern Bool VG_(clo_trace_sched);
sewardj45b4b372002-04-16 22:50:32 +0000268/* DEBUG: print pthread (mutex etc) events? default: 0 (none), 1
269 (some), 2 (all) */
270extern Int VG_(clo_trace_pthread_level);
sewardjde4a1d02002-03-22 01:27:54 +0000271/* Display gory details for the k'th most popular error. default:
272 Infinity. */
273extern Int VG_(clo_dump_error);
274/* Number of parents of a backtrace. Default: 8. */
275extern Int VG_(clo_backtrace_size);
daywalker7e73e5f2003-07-04 16:18:15 +0000276/* Engage miscellaneous weird hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000277extern Char* VG_(clo_weird_hacks);
jsgf855d93d2003-10-13 22:26:55 +0000278/* How often we should poll for signals, assuming we need to poll for
279 signals. */
280extern Int VG_(clo_signal_polltime);
281
282/* Low latency syscalls and signals */
283extern Bool VG_(clo_lowlat_syscalls);
284extern Bool VG_(clo_lowlat_signals);
285
rjwalshf5f536f2003-11-17 17:45:00 +0000286/* Track open file descriptors? */
287extern Bool VG_(clo_track_fds);
288
sewardj858964b2002-10-05 14:15:43 +0000289/* Should we run __libc_freeres at exit? Sometimes causes crashes.
290 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
291 if the latter says False, then the setting of VG_(clo_weird_hacks)
nethercote996901a2004-08-03 13:29:09 +0000292 is ignored. Ie if a tool says no, I don't want this to run, that
sewardj858964b2002-10-05 14:15:43 +0000293 cannot be overridden from the command line. */
294extern Bool VG_(clo_run_libc_freeres);
sewardjb5ff83e2002-12-01 19:40:49 +0000295/* Use the basic-block chaining optimisation? Default: YES */
sewardj22854b92002-11-30 14:00:47 +0000296extern Bool VG_(clo_chain_bb);
fitzhardinge462f4f92003-12-18 02:10:54 +0000297/* Generate branch-prediction hints? */
298extern Bool VG_(clo_branchpred);
nethercote77eba602003-11-13 17:35:04 +0000299/* Continue stack traces below main()? Default: NO */
300extern Bool VG_(clo_show_below_main);
fitzhardinge98abfc72003-12-16 02:05:15 +0000301/* Test each client pointer dereference to check it's within the
302 client address space bounds */
303extern Bool VG_(clo_pointercheck);
sewardjde4a1d02002-03-22 01:27:54 +0000304
rjwalshe4e779d2004-04-16 23:02:29 +0000305/* Set up the libc freeres wrapper */
306extern void VG_(intercept_libc_freeres_wrapper)(Addr);
307
sewardjde4a1d02002-03-22 01:27:54 +0000308/* ---------------------------------------------------------------------
nethercote85cdd342004-08-01 22:36:40 +0000309 Profiling stuff
sewardjde4a1d02002-03-22 01:27:54 +0000310 ------------------------------------------------------------------ */
311
sewardjde4a1d02002-03-22 01:27:54 +0000312extern void VGP_(init_profiling) ( void );
313extern void VGP_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000314
njn25e49d8e72002-09-23 09:36:25 +0000315#undef VGP_PUSHCC
316#undef VGP_POPCC
317#define VGP_PUSHCC(x) if (VG_(clo_profile)) VGP_(pushcc)(x)
318#define VGP_POPCC(x) if (VG_(clo_profile)) VGP_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000319
sewardjde4a1d02002-03-22 01:27:54 +0000320/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +0000321 Tool-related types
njn810086f2002-11-14 12:42:47 +0000322 ------------------------------------------------------------------ */
nethercote996901a2004-08-03 13:29:09 +0000323/* These structs are not exposed to tools to mitigate possibility of
324 binary-incompatibilities when the core/tool interface changes. Instead,
nethercote46063202004-09-02 08:51:43 +0000325 set functions are provided (see include/tool.h). */
njn810086f2002-11-14 12:42:47 +0000326typedef
327 struct {
328 Char* name;
329 Char* version;
330 Char* description;
331 Char* copyright_author;
332 Char* bug_reports_to;
njn120281f2003-02-03 12:20:07 +0000333 UInt avg_translation_sizeB;
njn810086f2002-11-14 12:42:47 +0000334 }
335 VgDetails;
336
337extern VgDetails VG_(details);
338
339/* If new fields are added to this type, update:
340 * - vg_main.c:initialisation of VG_(needs)
341 * - vg_main.c:sanity_check_needs()
342 *
343 * If the name of this type or any of its fields change, update:
344 * - dependent comments (just search for "VG_(needs)").
345 */
346typedef
347 struct {
348 Bool libc_freeres;
349 Bool core_errors;
njn810086f2002-11-14 12:42:47 +0000350 Bool skin_errors;
351 Bool basic_block_discards;
352 Bool shadow_regs;
353 Bool command_line_options;
354 Bool client_requests;
355 Bool extended_UCode;
356 Bool syscall_wrapper;
njn810086f2002-11-14 12:42:47 +0000357 Bool sanity_checks;
358 Bool data_syms;
fitzhardinge98abfc72003-12-16 02:05:15 +0000359 Bool shadow_memory;
njn810086f2002-11-14 12:42:47 +0000360 }
361 VgNeeds;
362
363extern VgNeeds VG_(needs);
364
fitzhardinge98abfc72003-12-16 02:05:15 +0000365extern void VG_(tool_init_dlsym)(void *dlhandle);
njn810086f2002-11-14 12:42:47 +0000366
fitzhardinge98abfc72003-12-16 02:05:15 +0000367#include "vg_toolint.h"
njn810086f2002-11-14 12:42:47 +0000368
369/* ---------------------------------------------------------------------
370 Exports of vg_needs.c
371 ------------------------------------------------------------------ */
372
373void VG_(sanity_check_needs)(void);
374
375/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000376 Exports of vg_malloc2.c
377 ------------------------------------------------------------------ */
378
379/* Allocation arenas.
njn3e884182003-04-15 13:03:23 +0000380
381 CORE for the core's general use.
nethercote60f5b822004-01-26 17:24:42 +0000382 TOOL for the tool to use (and the only one it uses).
njn3e884182003-04-15 13:03:23 +0000383 SYMTAB for Valgrind's symbol table storage.
384 JITTER for small storage during translation.
nethercote996901a2004-08-03 13:29:09 +0000385 CLIENT for the client's mallocs/frees, if the tool replaces glibc's
386 malloc() et al -- redzone size is chosen by the tool.
njn3e884182003-04-15 13:03:23 +0000387 DEMANGLE for the C++ demangler.
388 EXECTXT for storing ExeContexts.
389 ERRORS for storing CoreErrors.
390 TRANSIENT for very short-term use. It should be empty in between uses.
391
njn25e49d8e72002-09-23 09:36:25 +0000392 When adding a new arena, remember also to add it to ensure_mm_init().
sewardjde4a1d02002-03-22 01:27:54 +0000393*/
394typedef Int ArenaId;
395
njn3e884182003-04-15 13:03:23 +0000396#define VG_N_ARENAS 9
sewardjde4a1d02002-03-22 01:27:54 +0000397
njn3e884182003-04-15 13:03:23 +0000398#define VG_AR_CORE 0
nethercote60f5b822004-01-26 17:24:42 +0000399#define VG_AR_TOOL 1
njn3e884182003-04-15 13:03:23 +0000400#define VG_AR_SYMTAB 2
401#define VG_AR_JITTER 3
402#define VG_AR_CLIENT 4
403#define VG_AR_DEMANGLE 5
404#define VG_AR_EXECTXT 6
405#define VG_AR_ERRORS 7
406#define VG_AR_TRANSIENT 8
sewardjde4a1d02002-03-22 01:27:54 +0000407
nethercote2d5b8162004-08-11 09:40:52 +0000408// This is both the minimum payload size of a malloc'd block, and its
409// minimum alignment. Must be a power of 2 greater than 4, and should be
410// greater than 8.
411#define VG_MIN_MALLOC_SZB 8
412
413// Round-up size for --sloppy-malloc=yes.
414#define VG_SLOPPY_MALLOC_SZB 4
415
njn25e49d8e72002-09-23 09:36:25 +0000416extern void* VG_(arena_malloc) ( ArenaId arena, Int nbytes );
417extern void VG_(arena_free) ( ArenaId arena, void* ptr );
njn3e884182003-04-15 13:03:23 +0000418extern void* VG_(arena_calloc) ( ArenaId arena, Int alignment,
419 Int nmemb, Int nbytes );
njn25e49d8e72002-09-23 09:36:25 +0000420extern void* VG_(arena_realloc) ( ArenaId arena, void* ptr, Int alignment,
421 Int size );
422extern void* VG_(arena_malloc_aligned) ( ArenaId aid, Int req_alignB,
sewardjde4a1d02002-03-22 01:27:54 +0000423 Int req_pszB );
424
njn8a6b6c02003-04-22 22:45:55 +0000425extern Int VG_(arena_payload_szB) ( ArenaId aid, void* payload );
426
nethercote885dd912004-08-03 23:14:00 +0000427extern void VG_(sanity_check_malloc_all) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000428
nethercote3a42fb82004-08-03 18:08:50 +0000429extern void VG_(print_all_arena_stats) ( void );
nethercote885dd912004-08-03 23:14:00 +0000430
sewardjde4a1d02002-03-22 01:27:54 +0000431extern Bool VG_(is_empty_arena) ( ArenaId aid );
432
sewardjde4a1d02002-03-22 01:27:54 +0000433/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000434 Exports of vg_intercept.c
sewardj2e93c502002-04-12 11:12:52 +0000435 ------------------------------------------------------------------ */
436
437/* This doesn't export code or data that valgrind.so needs to link
438 against. However, the scheduler does need to know the following
439 request codes. A few, publically-visible, request codes are also
nethercote996901a2004-08-03 13:29:09 +0000440 defined in valgrind.h, and similar headers for some tools. */
sewardj2e93c502002-04-12 11:12:52 +0000441
njn4c791212003-05-02 17:53:54 +0000442#define VG_USERREQ__MALLOC 0x2001
443#define VG_USERREQ__FREE 0x2002
444
sewardj20917d82002-05-28 01:36:45 +0000445/* (Fn, Arg): Create a new thread and run Fn applied to Arg in it. Fn
446 MUST NOT return -- ever. Eventually it will do either __QUIT or
447 __WAIT_JOINER. */
448#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
449
450/* ( no-args ): calling thread disappears from the system forever.
451 Reclaim resources. */
452#define VG_USERREQ__QUIT 0x3002
453
454/* ( void* ): calling thread waits for joiner and returns the void* to
455 it. */
456#define VG_USERREQ__WAIT_JOINER 0x3003
457
458/* ( ThreadId, void** ): wait to join a thread. */
459#define VG_USERREQ__PTHREAD_JOIN 0x3004
460
461/* Set cancellation state and type for this thread. */
462#define VG_USERREQ__SET_CANCELSTATE 0x3005
463#define VG_USERREQ__SET_CANCELTYPE 0x3006
464
465/* ( no-args ): Test if we are at a cancellation point. */
466#define VG_USERREQ__TESTCANCEL 0x3007
467
468/* ( ThreadId, &thread_exit_wrapper is the only allowable arg ): call
469 with this arg to indicate that a cancel is now pending for the
470 specified thread. */
471#define VG_USERREQ__SET_CANCELPEND 0x3008
472
473/* Set/get detach state for this thread. */
474#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
475
476#define VG_USERREQ__PTHREAD_GET_THREADID 0x300B
477#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300C
478#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
479#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
480#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
481#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
482#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
483#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
484#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
485#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
sewardj00a66b12002-10-12 16:42:35 +0000486#define VG_USERREQ__PTHREAD_SETSPECIFIC_PTR 0x3015
487#define VG_USERREQ__PTHREAD_GETSPECIFIC_PTR 0x3016
sewardj20917d82002-05-28 01:36:45 +0000488#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
489#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
jsgf855d93d2003-10-13 22:26:55 +0000490#define VG_USERREQ__SIGWAIT 0x3019 /* unused */
sewardj20917d82002-05-28 01:36:45 +0000491#define VG_USERREQ__PTHREAD_KILL 0x301A
492#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj00a66b12002-10-12 16:42:35 +0000493#define VG_USERREQ__PTHREAD_KEY_VALIDATE 0x301C
sewardj2e93c502002-04-12 11:12:52 +0000494
sewardj8ad94e12002-05-29 00:10:20 +0000495#define VG_USERREQ__CLEANUP_PUSH 0x3020
496#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000497#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardj8ad94e12002-05-29 00:10:20 +0000498
sewardjef037c72002-05-30 00:40:03 +0000499#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjefbfcdf2002-06-19 17:35:45 +0000500
501/* Ask how many signal handler returns have happened to this
502 thread. */
jsgf855d93d2003-10-13 22:26:55 +0000503#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024 /* unused */
sewardjef037c72002-05-30 00:40:03 +0000504
sewardj2cb00342002-06-28 01:46:26 +0000505/* Get/set entries for a thread's pthread_atfork stack. */
506#define VG_USERREQ__SET_FHSTACK_USED 0x3025
507#define VG_USERREQ__GET_FHSTACK_USED 0x3026
508#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
509#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
sewardjefbfcdf2002-06-19 17:35:45 +0000510
nethercotef971ab72004-08-02 16:27:40 +0000511/* Denote the finish of __libc_freeres_wrapper(). */
sewardj1fe7b002002-07-16 01:43:15 +0000512#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
fitzhardinge98abfc72003-12-16 02:05:15 +0000513
514/* Allocate RT signals */
515#define VG_USERREQ__GET_SIGRT_MIN 0x302B
516#define VG_USERREQ__GET_SIGRT_MAX 0x302C
517#define VG_USERREQ__ALLOC_RTSIG 0x302D
518
519/* Hook for replace_malloc.o to get malloc functions */
520#define VG_USERREQ__GET_MALLOCFUNCS 0x3030
521
thughesdaa34562004-06-27 12:48:53 +0000522/* Get stack information for a thread. */
523#define VG_USERREQ__GET_STACK_INFO 0x3033
524
sewardj45b4b372002-04-16 22:50:32 +0000525/* Cosmetic ... */
526#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000527/* Log a pthread error from client-space. Cosmetic. */
528#define VG_USERREQ__PTHREAD_ERROR 0x3102
fitzhardinge39de4b42003-10-31 07:12:21 +0000529/* Internal equivalent of VALGRIND_PRINTF . */
530#define VG_USERREQ__INTERNAL_PRINTF 0x3103
531/* Internal equivalent of VALGRIND_PRINTF_BACKTRACE . */
532#define VG_USERREQ__INTERNAL_PRINTF_BACKTRACE 0x3104
sewardj45b4b372002-04-16 22:50:32 +0000533
sewardj54cacf02002-04-12 23:24:59 +0000534/*
nethercote5a2664c2004-09-02 15:37:39 +0000535In core_asm.h:
sewardj54cacf02002-04-12 23:24:59 +0000536#define VG_USERREQ__SIGNAL_RETURNS 0x4001
sewardj54cacf02002-04-12 23:24:59 +0000537*/
538
rjwalshe4e779d2004-04-16 23:02:29 +0000539#define VG_INTERCEPT_PREFIX "_vgi__"
540#define VG_INTERCEPT_PREFIX_LEN 6
541#define VG_INTERCEPT(name) _vgi__##name
542#define VG_INTERCEPT_ALIAS(name) "_vgi__" #name
543
544#define VG_WRAPPER_PREFIX "_vgw__"
545#define VG_WRAPPER_PREFIX_LEN 6
546#define VG_WRAPPER(name) _vgw__##name
547#define VG_WRAPPER_ALIAS(name) "_vgw__" #name
548
njn4c791212003-05-02 17:53:54 +0000549
fitzhardinge98abfc72003-12-16 02:05:15 +0000550struct vg_mallocfunc_info {
551 /* things vg_replace_malloc.o needs to know about */
552 Addr sk_malloc;
553 Addr sk_calloc;
554 Addr sk_realloc;
555 Addr sk_memalign;
556 Addr sk___builtin_new;
557 Addr sk___builtin_vec_new;
558 Addr sk_free;
559 Addr sk___builtin_delete;
560 Addr sk___builtin_vec_delete;
561
562 Addr arena_payload_szB;
563
564 Bool clo_sloppy_malloc;
565 Bool clo_trace_malloc;
566};
sewardj1fe7b002002-07-16 01:43:15 +0000567
sewardj2e93c502002-04-12 11:12:52 +0000568/* ---------------------------------------------------------------------
569 Constants pertaining to the simulated CPU state, VG_(baseBlock),
570 which need to go here to avoid ugly circularities.
571 ------------------------------------------------------------------ */
572
sewardjb91ae7f2003-04-29 23:50:00 +0000573/* How big is the saved SSE/SSE2 state? Note that this subsumes the
574 FPU state. On machines without SSE, we just save/restore the FPU
575 state into the first part of this area. */
576/* A general comment about SSE save/restore: It appears that the 7th
577 word (which is the MXCSR) has to be &ed with 0x0000FFBF in order
578 that restoring from it later does not cause a GP fault (which is
579 delivered as a segfault). I guess this will have to be done
580 any time we do fxsave :-( 7th word means word offset 6 or byte
581 offset 24 from the start address of the save area.
582 */
583#define VG_SIZE_OF_SSESTATE 512
sewardj2e93c502002-04-12 11:12:52 +0000584/* ... and in words ... */
sewardjb91ae7f2003-04-29 23:50:00 +0000585#define VG_SIZE_OF_SSESTATE_W ((VG_SIZE_OF_SSESTATE+3)/4)
sewardj2e93c502002-04-12 11:12:52 +0000586
587
588/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000589 Exports of vg_defaults.c
590 ------------------------------------------------------------------ */
591
592extern Bool VG_(sk_malloc_called_by_scheduler);
593
594
595/* ---------------------------------------------------------------------
sewardj92a59562002-09-30 00:53:10 +0000596 Exports of vg_ldt.c
597 ------------------------------------------------------------------ */
598
599/* This is the hardware-format for a segment descriptor, ie what the
600 x86 actually deals with. It is 8 bytes long. It's ugly. */
601
602typedef struct _LDT_ENTRY {
603 union {
604 struct {
605 UShort LimitLow;
606 UShort BaseLow;
607 unsigned BaseMid : 8;
608 unsigned Type : 5;
609 unsigned Dpl : 2;
610 unsigned Pres : 1;
611 unsigned LimitHi : 4;
612 unsigned Sys : 1;
613 unsigned Reserved_0 : 1;
614 unsigned Default_Big : 1;
615 unsigned Granularity : 1;
616 unsigned BaseHi : 8;
617 } Bits;
618 struct {
619 UInt word1;
620 UInt word2;
621 } Words;
622 }
623 LdtEnt;
624} VgLdtEntry;
625
626/* Maximum number of LDT entries supported (by the x86). */
627#define VG_M_LDT_ENTRIES 8192
628/* The size of each LDT entry == sizeof(VgLdtEntry) */
629#define VG_LDT_ENTRY_SIZE 8
630
631/* Alloc & copy, and dealloc. */
nethercote85cdd342004-08-01 22:36:40 +0000632extern VgLdtEntry* VG_(allocate_LDT_for_thread) ( VgLdtEntry* parent_ldt );
633extern void VG_(deallocate_LDT_for_thread) ( VgLdtEntry* ldt );
634extern void VG_(clear_TLS_for_thread) ( VgLdtEntry* tls );
sewardj92a59562002-09-30 00:53:10 +0000635
636/* Simulate the modify_ldt syscall. */
637extern Int VG_(sys_modify_ldt) ( ThreadId tid,
638 Int func, void* ptr, UInt bytecount );
639
fitzhardinge47735af2004-01-21 01:27:27 +0000640/* Simulate the {get,set}_thread_area syscalls. */
641extern Int VG_(sys_set_thread_area) ( ThreadId tid,
642 struct vki_modify_ldt_ldt_s* info );
643extern Int VG_(sys_get_thread_area) ( ThreadId tid,
644 struct vki_modify_ldt_ldt_s* info );
645
sewardje1042472002-09-30 12:33:11 +0000646/* Called from generated code. Given a segment selector and a virtual
647 address, return a linear address, and do limit checks too. */
648extern Addr VG_(do_useseg) ( UInt seg_selector, Addr virtual_addr );
649
sewardj92a59562002-09-30 00:53:10 +0000650
651/* ---------------------------------------------------------------------
nethercote1f0173b2004-02-28 15:40:36 +0000652 Exports of vg_libpthread.c
653 ------------------------------------------------------------------ */
654
655/* Replacements for pthread types, shared between vg_libpthread.c and
656 vg_scheduler.c. See comment in vg_libpthread.c above the other
657 vg_pthread_*_t types for a description of how these are used. */
658
659struct _vg_pthread_fastlock
660{
661 long int __vg_status; /* "Free" or "taken" or head of waiting list */
662 int __vg_spinlock; /* Used by compare_and_swap emulation. Also,
663 adaptive SMP lock stores spin count here. */
664};
665
666typedef struct
667{
668 int __vg_m_reserved; /* Reserved for future use */
669 int __vg_m_count; /* Depth of recursive locking */
670 /*_pthread_descr*/ void* __vg_m_owner; /* Owner thread (if recursive or errcheck) */
671 int __vg_m_kind; /* Mutex kind: fast, recursive or errcheck */
672 struct _vg_pthread_fastlock __vg_m_lock; /* Underlying fast lock */
673} vg_pthread_mutex_t;
674
675typedef struct
676{
677 struct _vg_pthread_fastlock __vg_c_lock; /* Protect against concurrent access */
nethercotedffad082004-02-28 23:32:11 +0000678 /*_pthread_descr*/ void* __vg_c_waiting; /* Threads waiting on this condition */
679
680 // Nb: the following padding removed because it was missing from an
681 // earlier glibc, so the size test in the CONVERT macro was failing.
682 // --njn
683
nethercote1f0173b2004-02-28 15:40:36 +0000684 // Padding ensures the size is 48 bytes
nethercotedffad082004-02-28 23:32:11 +0000685 /*char __vg_padding[48 - sizeof(struct _vg_pthread_fastlock)
nethercote1f0173b2004-02-28 15:40:36 +0000686 - sizeof(void*) - sizeof(long long)];
nethercotedffad082004-02-28 23:32:11 +0000687 long long __vg_align;*/
nethercote1f0173b2004-02-28 15:40:36 +0000688} vg_pthread_cond_t;
689
690
691/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000692 Exports of vg_scheduler.c
693 ------------------------------------------------------------------ */
694
sewardj2e93c502002-04-12 11:12:52 +0000695typedef
jsgf855d93d2003-10-13 22:26:55 +0000696 enum ThreadStatus {
sewardj2e93c502002-04-12 11:12:52 +0000697 VgTs_Empty, /* this slot is not in use */
698 VgTs_Runnable, /* waiting to be scheduled */
699 VgTs_WaitJoiner, /* waiting for someone to do join on me */
700 VgTs_WaitJoinee, /* waiting for the thread I did join on */
sewardj2e93c502002-04-12 11:12:52 +0000701 VgTs_WaitMX, /* waiting on a mutex */
sewardj3b5d8862002-04-20 13:53:23 +0000702 VgTs_WaitCV, /* waiting on a condition variable */
jsgf855d93d2003-10-13 22:26:55 +0000703 VgTs_WaitSys, /* waiting for a syscall to complete */
704 VgTs_Sleeping, /* sleeping for a while */
sewardj2e93c502002-04-12 11:12:52 +0000705 }
706 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000707
thughes11975ff2004-06-12 12:58:22 +0000708typedef
709 enum CleanupType {
710 VgCt_None, /* this cleanup entry is not initialised */
711 VgCt_Function, /* an old-style function pointer cleanup */
712 VgCt_Longjmp /* a new-style longjmp based cleanup */
713 }
714 CleanupType;
715
thughesdaa34562004-06-27 12:48:53 +0000716/* Information on a thread's stack. */
717typedef
718 struct {
719 Addr base;
720 UInt size;
721 UInt guardsize;
722 }
723 StackInfo;
724
sewardj8ad94e12002-05-29 00:10:20 +0000725/* An entry in a threads's cleanup stack. */
726typedef
727 struct {
thughes11975ff2004-06-12 12:58:22 +0000728 CleanupType type;
729 union {
730 struct {
731 void (*fn)(void*);
732 void* arg;
733 } function;
734 struct {
thughesebed9982004-06-12 17:25:25 +0000735 void *ub;
thughes11975ff2004-06-12 12:58:22 +0000736 int ctype;
737 } longjmp;
738 } data;
sewardj8ad94e12002-05-29 00:10:20 +0000739 }
740 CleanupEntry;
sewardj2cb00342002-06-28 01:46:26 +0000741
742/* An entry in a thread's fork-handler stack. */
743typedef
744 struct {
745 void (*prepare)(void);
746 void (*parent)(void);
747 void (*child)(void);
748 }
749 ForkHandlerEntry;
750
jsgf855d93d2003-10-13 22:26:55 +0000751typedef struct ProxyLWP ProxyLWP;
sewardj2cb00342002-06-28 01:46:26 +0000752
njn72718642003-07-24 08:45:32 +0000753typedef
754 struct _ThreadState {
njn25e49d8e72002-09-23 09:36:25 +0000755 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
756 The thread identity is simply the index in vg_threads[].
757 ThreadId == 1 is the root thread and has the special property
758 that we don't try and allocate or deallocate its stack. For
759 convenience of generating error message, we also put the
760 ThreadId in this tid field, but be aware that it should
761 ALWAYS == the index in vg_threads[]. */
762 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000763
njn25e49d8e72002-09-23 09:36:25 +0000764 /* Current scheduling status.
sewardj5f07b662002-04-23 16:52:51 +0000765
njn25e49d8e72002-09-23 09:36:25 +0000766 Complications: whenever this is set to VgTs_WaitMX, you
767 should also set .m_edx to whatever the required return value
768 is for pthread_mutex_lock / pthread_cond_timedwait for when
769 the mutex finally gets unblocked. */
770 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000771
njn25e49d8e72002-09-23 09:36:25 +0000772 /* When .status == WaitMX, points to the mutex I am waiting for.
773 When .status == WaitCV, points to the mutex associated with
774 the condition variable indicated by the .associated_cv field.
775 In all other cases, should be NULL. */
nethercote1f0173b2004-02-28 15:40:36 +0000776 vg_pthread_mutex_t* associated_mx;
sewardj3b5d8862002-04-20 13:53:23 +0000777
njn25e49d8e72002-09-23 09:36:25 +0000778 /* When .status == WaitCV, points to the condition variable I am
779 waiting for. In all other cases, should be NULL. */
780 void* /*pthread_cond_t* */ associated_cv;
sewardj2e93c502002-04-12 11:12:52 +0000781
njn25e49d8e72002-09-23 09:36:25 +0000782 /* If VgTs_Sleeping, this is when we should wake up, measured in
njn6c846552003-09-16 07:41:43 +0000783 milliseconds as supplied by VG_(read_millisecond_timer).
sewardj2e93c502002-04-12 11:12:52 +0000784
njn25e49d8e72002-09-23 09:36:25 +0000785 If VgTs_WaitCV, this indicates the time at which
786 pthread_cond_timedwait should wake up. If == 0xFFFFFFFF,
787 this means infinitely far in the future, viz,
788 pthread_cond_wait. */
789 UInt awaken_at;
sewardj20917d82002-05-28 01:36:45 +0000790
njn25e49d8e72002-09-23 09:36:25 +0000791 /* If VgTs_WaitJoiner, return value, as generated by joinees. */
792 void* joinee_retval;
sewardj20917d82002-05-28 01:36:45 +0000793
njn25e49d8e72002-09-23 09:36:25 +0000794 /* If VgTs_WaitJoinee, place to copy the return value to, and
795 the identity of the thread we're waiting for. */
796 void** joiner_thread_return;
797 ThreadId joiner_jee_tid;
sewardj8ad94e12002-05-29 00:10:20 +0000798
jsgf855d93d2003-10-13 22:26:55 +0000799 /* If VgTs_WaitSys, this is the result of the pre-syscall check */
800 void *sys_pre_res;
801
802 /* If VgTs_WaitSys, this is the syscall we're currently running */
803 Int syscallno;
804
thughesbaa46e52004-07-29 17:44:23 +0000805 /* If VgTs_WaitSys, this is the syscall flags */
806 UInt sys_flags;
807
jsgf855d93d2003-10-13 22:26:55 +0000808 /* Details about this thread's proxy LWP */
809 ProxyLWP *proxy;
810
njn25e49d8e72002-09-23 09:36:25 +0000811 /* Whether or not detached. */
812 Bool detached;
sewardj20917d82002-05-28 01:36:45 +0000813
njn25e49d8e72002-09-23 09:36:25 +0000814 /* Cancelability state and type. */
815 Bool cancel_st; /* False==PTH_CANCEL_DISABLE; True==.._ENABLE */
816 Bool cancel_ty; /* False==PTH_CANC_ASYNCH; True==..._DEFERRED */
817
818 /* Pointer to fn to call to do cancellation. Indicates whether
819 or not cancellation is pending. If NULL, not pending. Else
820 should be &thread_exit_wrapper(), indicating that
821 cancallation is pending. */
822 void (*cancel_pend)(void*);
sewardj2e93c502002-04-12 11:12:52 +0000823
njn25e49d8e72002-09-23 09:36:25 +0000824 /* The cleanup stack. */
825 Int custack_used;
826 CleanupEntry custack[VG_N_CLEANUPSTACK];
sewardj5f07b662002-04-23 16:52:51 +0000827
sewardj00a66b12002-10-12 16:42:35 +0000828 /* A pointer to the thread's-specific-data. This is handled almost
829 entirely from vg_libpthread.c. We just provide hooks to get and
830 set this ptr. This is either NULL, indicating the thread has
831 read/written none of its specifics so far, OR points to a
832 void*[VG_N_THREAD_KEYS], allocated and deallocated in
833 vg_libpthread.c. */
834 void** specifics_ptr;
sewardjb48e5002002-05-13 00:16:03 +0000835
njn25e49d8e72002-09-23 09:36:25 +0000836 /* This thread's blocked-signals mask. Semantics is that for a
837 signal to be delivered to this thread, the signal must not be
jsgf855d93d2003-10-13 22:26:55 +0000838 blocked by this signal mask. If more than one thread accepts a
839 signal, then it will be delivered to one at random. If all
840 threads block the signal, it will remain pending until either a
841 thread unblocks it or someone uses sigwaitsig/sigtimedwait.
842
843 sig_mask reflects what the client told us its signal mask should
844 be, but isn't necessarily the current signal mask of the proxy
845 LWP: it may have more signals blocked because of signal
846 handling, or it may be different because of sigsuspend.
847 */
njn25e49d8e72002-09-23 09:36:25 +0000848 vki_ksigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000849
fitzhardingef0dd7e12004-01-16 02:17:30 +0000850 /* Effective signal mask. This is the mask which currently
851 applies; it may be different from sig_mask while a signal
jsgf855d93d2003-10-13 22:26:55 +0000852 handler is running.
853 */
854 vki_ksigset_t eff_sig_mask;
sewardj2e93c502002-04-12 11:12:52 +0000855
njn25e49d8e72002-09-23 09:36:25 +0000856 /* Stacks. When a thread slot is freed, we don't deallocate its
857 stack; we just leave it lying around for the next use of the
858 slot. If the next use of the slot requires a larger stack,
859 only then is the old one deallocated and a new one
860 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000861
njn25e49d8e72002-09-23 09:36:25 +0000862 For the main thread (threadid == 0), this mechanism doesn't
863 apply. We don't know the size of the stack since we didn't
864 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000865
njn25e49d8e72002-09-23 09:36:25 +0000866 /* The allocated size of this thread's stack (permanently zero
867 if this is ThreadId == 0, since we didn't allocate its stack) */
868 UInt stack_size;
sewardj1e8cdc92002-04-18 11:37:52 +0000869
njn25e49d8e72002-09-23 09:36:25 +0000870 /* Address of the lowest word in this thread's stack. NULL means
871 not allocated yet.
872 */
873 Addr stack_base;
sewardj2e93c502002-04-12 11:12:52 +0000874
thughesdaa34562004-06-27 12:48:53 +0000875 /* The allocated size of this thread's stack's guard area (permanently
876 zero if this is ThreadId == 0, since we didn't allocate its stack) */
877 UInt stack_guard_size;
878
sewardj92a59562002-09-30 00:53:10 +0000879 /* Address of the highest legitimate word in this stack. This is
880 used for error messages only -- not critical for execution
881 correctness. Is is set for all stacks, specifically including
882 ThreadId == 0 (the main thread). */
njn25e49d8e72002-09-23 09:36:25 +0000883 Addr stack_highest_word;
884
fitzhardinge98c4dc02004-03-16 08:27:29 +0000885 /* Alternate signal stack */
886 vki_kstack_t altstack;
887
sewardj92a59562002-09-30 00:53:10 +0000888 /* Pointer to this thread's Local (Segment) Descriptor Table.
889 Starts out as NULL, indicating there is no table, and we hope to
890 keep it that way. If the thread does __NR_modify_ldt to create
891 entries, we allocate a 8192-entry table at that point. This is
892 a straight copy of the Linux kernel's scheme. Don't forget to
893 deallocate this at thread exit. */
894 VgLdtEntry* ldt;
895
fitzhardinge47735af2004-01-21 01:27:27 +0000896 /* TLS table. This consists of a small number (currently 3) of
897 entries from the Global Descriptor Table. */
898 VgLdtEntry tls[VKI_GDT_TLS_ENTRIES];
899
sewardj92a59562002-09-30 00:53:10 +0000900 /* Saved machine context. Note the FPU state, %EIP and segment
901 registers are not shadowed.
902
903 Although the segment registers are 16 bits long, storage
nethercote1d447092004-02-01 17:29:59 +0000904 management here and in VG_(baseBlock) is
sewardj92a59562002-09-30 00:53:10 +0000905 simplified if we pretend they are 32 bits. */
906 UInt m_cs;
907 UInt m_ss;
908 UInt m_ds;
909 UInt m_es;
910 UInt m_fs;
911 UInt m_gs;
912
njn25e49d8e72002-09-23 09:36:25 +0000913 UInt m_eax;
914 UInt m_ebx;
915 UInt m_ecx;
916 UInt m_edx;
917 UInt m_esi;
918 UInt m_edi;
919 UInt m_ebp;
920 UInt m_esp;
921 UInt m_eflags;
922 UInt m_eip;
sewardjb91ae7f2003-04-29 23:50:00 +0000923
924 /* The SSE/FPU state. This array does not (necessarily) have the
925 required 16-byte alignment required to get stuff in/out by
926 fxsave/fxrestore. So we have to do it "by hand".
927 */
928 UInt m_sse[VG_SIZE_OF_SSESTATE_W];
njn25e49d8e72002-09-23 09:36:25 +0000929
930 UInt sh_eax;
931 UInt sh_ebx;
932 UInt sh_ecx;
933 UInt sh_edx;
934 UInt sh_esi;
935 UInt sh_edi;
936 UInt sh_ebp;
937 UInt sh_esp;
938 UInt sh_eflags;
njn72718642003-07-24 08:45:32 +0000939}
940ThreadState;
sewardj2e93c502002-04-12 11:12:52 +0000941
942
sewardj018f7622002-05-15 21:13:39 +0000943/* The thread table. */
944extern ThreadState VG_(threads)[VG_N_THREADS];
945
946/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000947extern Bool VG_(is_valid_tid) ( ThreadId tid );
948
njn72718642003-07-24 08:45:32 +0000949/* Determine if 'tid' is that of the current running thread (Nb: returns
950 False if no thread is currently running. */
951extern Bool VG_(is_running_thread)(ThreadId tid);
952
jsgf855d93d2003-10-13 22:26:55 +0000953/* Get the ThreadState for a particular thread */
954extern ThreadState *VG_(get_ThreadState)(ThreadId tid);
955
sewardj1e8cdc92002-04-18 11:37:52 +0000956/* Similarly ... */
957extern ThreadId VG_(get_current_tid) ( void );
958
sewardjccef2e62002-05-29 19:26:32 +0000959/* Nuke all threads except tid. */
960extern void VG_(nuke_all_threads_except) ( ThreadId me );
961
jsgf855d93d2003-10-13 22:26:55 +0000962/* Give a hint to the scheduler that it may be a good time to find a
963 new runnable thread. If prefer_sched != VG_INVALID_THREADID, then
964 try to schedule that thread.
965*/
966extern void VG_(need_resched) ( ThreadId prefer_sched );
967
sewardj2e93c502002-04-12 11:12:52 +0000968/* Return codes from the scheduler. */
969typedef
sewardj7e87e382002-05-03 19:09:05 +0000970 enum {
971 VgSrc_Deadlock, /* no runnable threads and no prospect of any
972 even if we wait for a long time */
973 VgSrc_ExitSyscall, /* client called exit(). This is the normal
974 route out. */
jsgf855d93d2003-10-13 22:26:55 +0000975 VgSrc_FatalSig /* Killed by the default action of a fatal
976 signal */
sewardj7e87e382002-05-03 19:09:05 +0000977 }
sewardj2e93c502002-04-12 11:12:52 +0000978 VgSchedReturnCode;
979
sewardj7e87e382002-05-03 19:09:05 +0000980
nethercote238a3c32004-08-09 13:13:31 +0000981// The scheduler. 'fatal_sigNo' is only set if VgSrc_FatalSig is returned.
982extern VgSchedReturnCode VG_(scheduler)
983 ( Int* exit_code, ThreadId* last_run_thread, Int* fatal_sigNo );
sewardj2e93c502002-04-12 11:12:52 +0000984
985extern void VG_(scheduler_init) ( void );
986
sewardj15a43e12002-04-17 19:35:12 +0000987extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000988
nethercote75d26242004-08-01 22:59:18 +0000989// Longjmp back to the scheduler and thus enter the sighandler immediately.
990extern void VG_(resume_scheduler) ( Int sigNo, vki_ksiginfo_t *info );
sewardj2e93c502002-04-12 11:12:52 +0000991
nethercote238a3c32004-08-09 13:13:31 +0000992// Longjmp, ending the scheduler, when a fatal signal occurs in the client.
993extern void VG_(scheduler_handle_fatal_signal)( Int sigNo );
994
sewardj2e93c502002-04-12 11:12:52 +0000995/* The red-zone size which we put at the bottom (highest address) of
996 thread stacks, for paranoia reasons. This can be arbitrary, and
997 doesn't really need to be set at compile time. */
nethercote6e4f9dc2004-07-30 23:36:37 +0000998#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB 16
sewardj2e93c502002-04-12 11:12:52 +0000999
njnd3040452003-05-19 15:04:06 +00001000/* Write a value to a client's thread register, and shadow (if necessary) */
1001#define SET_THREAD_REG( zztid, zzval, zzreg, zzREG, zzevent, zzargs... ) \
1002 do { VG_(threads)[zztid].m_##zzreg = (zzval); \
1003 VG_TRACK( zzevent, zztid, R_##zzREG, ##zzargs ); \
sewardj018f7622002-05-15 21:13:39 +00001004 } while (0)
1005
njnd3040452003-05-19 15:04:06 +00001006#define SET_SYSCALL_RETVAL(zztid, zzval) \
1007 SET_THREAD_REG(zztid, zzval, eax, EAX, post_reg_write_syscall_return)
1008
njnd3040452003-05-19 15:04:06 +00001009#define SET_SIGNAL_ESP(zztid, zzval) \
1010 SET_THREAD_REG(zztid, zzval, esp, ESP, post_reg_write_deliver_signal)
1011
1012#define SET_CLREQ_RETVAL(zztid, zzval) \
1013 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_clientreq_return)
1014
1015#define SET_CLCALL_RETVAL(zztid, zzval, f) \
1016 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_clientcall_return, f)
1017
1018#define SET_PTHREQ_ESP(zztid, zzval) \
1019 SET_THREAD_REG(zztid, zzval, esp, ESP, post_reg_write_pthread_return)
1020
1021#define SET_PTHREQ_RETVAL(zztid, zzval) \
1022 SET_THREAD_REG(zztid, zzval, edx, EDX, post_reg_write_pthread_return)
sewardj018f7622002-05-15 21:13:39 +00001023
sewardj2e93c502002-04-12 11:12:52 +00001024
1025/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001026 Exports of vg_signals.c
1027 ------------------------------------------------------------------ */
1028
jsgf855d93d2003-10-13 22:26:55 +00001029extern Bool VG_(do_signal_routing); /* whether scheduler LWP has to route signals */
1030
1031/* RT signal allocation */
1032extern Int VG_(sig_rtmin);
1033extern Int VG_(sig_rtmax);
1034extern Int VG_(sig_alloc_rtsig) ( Int high );
1035
sewardjde4a1d02002-03-22 01:27:54 +00001036extern void VG_(sigstartup_actions) ( void );
1037
jsgf855d93d2003-10-13 22:26:55 +00001038extern void VG_(deliver_signal) ( ThreadId tid, const vki_ksiginfo_t *, Bool async );
sewardjde4a1d02002-03-22 01:27:54 +00001039extern void VG_(unblock_host_signal) ( Int sigNo );
sewardj018f7622002-05-15 21:13:39 +00001040
jsgf855d93d2003-10-13 22:26:55 +00001041extern Bool VG_(is_sig_ign) ( Int sigNo );
1042
1043/* Route pending signals from the scheduler LWP to the appropriate
1044 thread LWP. */
1045extern void VG_(route_signals) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001046
1047/* Fake system calls for signal handling. */
sewardj2342c972002-05-22 23:34:20 +00001048extern void VG_(do__NR_sigaltstack) ( ThreadId tid );
sewardj2e93c502002-04-12 11:12:52 +00001049extern void VG_(do__NR_sigaction) ( ThreadId tid );
nethercote85cdd342004-08-01 22:36:40 +00001050extern void VG_(do__NR_sigprocmask) ( ThreadId tid, Int how,
sewardj018f7622002-05-15 21:13:39 +00001051 vki_ksigset_t* set,
1052 vki_ksigset_t* oldset );
nethercote85cdd342004-08-01 22:36:40 +00001053extern void VG_(do_pthread_sigmask_SCSS_upd) ( ThreadId tid, Int how,
sewardj018f7622002-05-15 21:13:39 +00001054 vki_ksigset_t* set,
1055 vki_ksigset_t* oldset );
sewardjefbfcdf2002-06-19 17:35:45 +00001056
sewardj2e93c502002-04-12 11:12:52 +00001057/* Modify the current thread's state once we have detected it is
1058 returning from a signal handler. */
sewardj77e466c2002-04-14 02:29:29 +00001059extern Bool VG_(signal_returns) ( ThreadId );
sewardjde4a1d02002-03-22 01:27:54 +00001060
sewardj2e93c502002-04-12 11:12:52 +00001061/* Handy utilities to block/restore all host signals. */
1062extern void VG_(block_all_host_signals)
1063 ( /* OUT */ vki_ksigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +00001064extern void VG_(restore_all_host_signals)
sewardj2e93c502002-04-12 11:12:52 +00001065 ( /* IN */ vki_ksigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +00001066
jsgf855d93d2003-10-13 22:26:55 +00001067extern void VG_(kill_self)(Int sigNo);
1068
fitzhardingef1beb252004-03-16 09:49:08 +00001069/* These function synthesize a fault, as if the running instruction
1070 had had a fault. These functions do not return - they longjmp back
1071 into the scheduler so the signal can be delivered. */
1072extern void VG_(synth_fault) (ThreadId tid);
1073extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
1074extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
1075
nethercote759dda32004-08-07 18:16:56 +00001076extern void VG_(get_sigstack_bounds)( Addr* low, Addr* high );
fitzhardingef1beb252004-03-16 09:49:08 +00001077
sewardjde4a1d02002-03-22 01:27:54 +00001078/* ---------------------------------------------------------------------
1079 Exports of vg_mylibc.c
1080 ------------------------------------------------------------------ */
1081
njne427a662002-10-02 11:08:25 +00001082#define vg_assert(expr) \
1083 ((void) ((expr) ? 0 : \
1084 (VG_(core_assert_fail) (VG__STRING(expr), \
1085 __FILE__, __LINE__, \
1086 __PRETTY_FUNCTION__), 0)))
1087__attribute__ ((__noreturn__))
daywalker3222e0a2003-09-18 01:39:50 +00001088extern void VG_(core_assert_fail) ( const Char* expr, const Char* file,
1089 Int line, const Char* fn );
njne427a662002-10-02 11:08:25 +00001090__attribute__ ((__noreturn__))
1091extern void VG_(core_panic) ( Char* str );
sewardjde4a1d02002-03-22 01:27:54 +00001092
nethercote05675c82004-08-04 10:37:49 +00001093/* Tools use VG_(strdup)() which doesn't expose ArenaId */
njn25e49d8e72002-09-23 09:36:25 +00001094extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +00001095
njn25e49d8e72002-09-23 09:36:25 +00001096extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +00001097extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +00001098
fitzhardinge98abfc72003-12-16 02:05:15 +00001099/* system/mman.h */
nethercoteb4250ae2004-07-10 16:50:09 +00001100extern void* VG_(mmap)( void* start, UInt length, UInt prot, UInt flags,
1101 UInt sf_flags, UInt fd, UInt offset );
fitzhardinge98abfc72003-12-16 02:05:15 +00001102extern Int VG_(munmap)( void* start, Int length );
1103extern Int VG_(mprotect)( void *start, Int length, UInt prot );
1104
1105
jsgf855d93d2003-10-13 22:26:55 +00001106/* Move an fd into the Valgrind-safe range */
1107Int VG_(safe_fd)(Int oldfd);
1108
sewardj570f8902002-11-03 11:44:36 +00001109extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +00001110
1111/* --- Connecting over the network --- */
1112extern Int VG_(connect_via_socket)( UChar* str );
1113
fitzhardinge98abfc72003-12-16 02:05:15 +00001114/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +00001115extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
1116 const Char *val );
1117extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
1118extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +00001119
1120/* ---------------------------------------------------------------------
1121 Exports of vg_message.c
1122 ------------------------------------------------------------------ */
1123
1124/* Low-level -- send bytes directly to the message sink. Do not
1125 use. */
1126extern void VG_(send_bytes_to_logging_sink) ( Char* msg, Int nbytes );
1127
nethercoted1da90e2004-08-03 17:26:39 +00001128// Functions for printing from code within Valgrind, but which runs on the
nethercotec91ce8d2004-08-09 11:15:10 +00001129// sim'd CPU. Defined here because needed for vg_libpthread.c,
1130// vg_replace_malloc.c, plus the rest of the core. The weak attribute
1131// ensures the multiple definitions are not a problem. They must be functions
1132// rather than macros so that va_list can be used.
1133
1134__attribute__((weak))
1135int
1136VALGRIND_INTERNAL_PRINTF(char *format, ...)
1137{
1138 unsigned int _qzz_res = 0;
1139 va_list vargs;
1140 va_start(vargs, format);
1141 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF,
1142 (unsigned int)format, (unsigned int)vargs, 0, 0);
1143 va_end(vargs);
1144 return _qzz_res;
1145}
1146
1147__attribute__((weak))
1148int
1149VALGRIND_INTERNAL_PRINTF_BACKTRACE(char *format, ...)
1150{
1151 unsigned int _qzz_res = 0;
1152 va_list vargs;
1153 va_start(vargs, format);
1154 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF_BACKTRACE,
1155 (unsigned int)format, (unsigned int)vargs, 0, 0);
1156 va_end(vargs);
1157 return _qzz_res;
1158}
1159
nethercoted1da90e2004-08-03 17:26:39 +00001160
sewardjde4a1d02002-03-22 01:27:54 +00001161/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001162 Exports of vg_demangle.c
1163 ------------------------------------------------------------------ */
1164
1165extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
1166
sewardjde4a1d02002-03-22 01:27:54 +00001167/* ---------------------------------------------------------------------
1168 Exports of vg_from_ucode.c
1169 ------------------------------------------------------------------ */
1170
sewardj22854b92002-11-30 14:00:47 +00001171extern UChar* VG_(emit_code) ( UCodeBlock* cb, Int* nbytes, UShort jumps[VG_MAX_JUMPS] );
sewardjde4a1d02002-03-22 01:27:54 +00001172
njn25e49d8e72002-09-23 09:36:25 +00001173extern void VG_(print_ccall_stats) ( void );
1174extern void VG_(print_UInstr_histogram) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001175
sewardj22854b92002-11-30 14:00:47 +00001176extern void VG_(unchain_jumpsite) ( Addr jumpsite );
1177extern Addr VG_(get_jmp_dest) ( Addr jumpsite );
sewardj22854b92002-11-30 14:00:47 +00001178
sewardjde4a1d02002-03-22 01:27:54 +00001179/* ---------------------------------------------------------------------
1180 Exports of vg_to_ucode.c
1181 ------------------------------------------------------------------ */
1182
fitzhardingec2dbbac2004-01-23 23:09:01 +00001183Bool VG_(cpu_has_feature)(UInt feat);
1184
sewardjde4a1d02002-03-22 01:27:54 +00001185extern Int VG_(disBB) ( UCodeBlock* cb, Addr eip0 );
sewardjde4a1d02002-03-22 01:27:54 +00001186
1187/* ---------------------------------------------------------------------
1188 Exports of vg_translate.c
1189 ------------------------------------------------------------------ */
1190
njn810086f2002-11-14 12:42:47 +00001191/* Expandable arrays of uinstrs. */
1192struct _UCodeBlock {
sewardj22854b92002-11-30 14:00:47 +00001193 Addr orig_eip;
njn810086f2002-11-14 12:42:47 +00001194 Int used;
1195 Int size;
1196 UInstr* instrs;
1197 Int nextTemp;
1198};
1199
nethercote59a122d2004-08-03 17:16:51 +00001200extern void VG_(translate) ( ThreadId tid, Addr orig_addr, Bool debugging );
sewardjde4a1d02002-03-22 01:27:54 +00001201
nethercote885dd912004-08-03 23:14:00 +00001202extern void VG_(sanity_check_UInstr) ( UInt n, UInstr* u );
sewardjde4a1d02002-03-22 01:27:54 +00001203
nethercotebee3fd92004-08-02 15:17:43 +00001204extern void VG_(print_reg_alloc_stats) ( void );
sewardjb5ff83e2002-12-01 19:40:49 +00001205
sewardjde4a1d02002-03-22 01:27:54 +00001206/* ---------------------------------------------------------------------
1207 Exports of vg_execontext.c.
1208 ------------------------------------------------------------------ */
1209
1210/* Records the PC and a bit of the call chain. The first 4 %eip
1211 values are used in comparisons do remove duplicate errors, and for
1212 comparing against suppression specifications. The rest are purely
1213 informational (but often important). */
1214
njn25e49d8e72002-09-23 09:36:25 +00001215struct _ExeContext {
1216 struct _ExeContext * next;
1217 /* Variable-length array. The size is VG_(clo_backtrace_size); at
njn6c846552003-09-16 07:41:43 +00001218 least 1, at most VG_DEEPEST_BACKTRACE. [0] is the current %eip,
njn25e49d8e72002-09-23 09:36:25 +00001219 [1] is its caller, [2] is the caller of [1], etc. */
1220 Addr eips[0];
1221};
sewardjde4a1d02002-03-22 01:27:54 +00001222
1223
sewardjde4a1d02002-03-22 01:27:54 +00001224/* Print stats (informational only). */
nethercote3a42fb82004-08-03 18:08:50 +00001225extern void VG_(print_ExeContext_stats) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001226
njn25e49d8e72002-09-23 09:36:25 +00001227/* Like VG_(get_ExeContext), but with a slightly different type */
1228extern ExeContext* VG_(get_ExeContext2) ( Addr eip, Addr ebp,
1229 Addr ebp_min, Addr ebp_max );
sewardjde4a1d02002-03-22 01:27:54 +00001230
1231
1232/* ---------------------------------------------------------------------
1233 Exports of vg_errcontext.c.
1234 ------------------------------------------------------------------ */
1235
njn25e49d8e72002-09-23 09:36:25 +00001236extern void VG_(load_suppressions) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001237
njn25e49d8e72002-09-23 09:36:25 +00001238extern void VG_(record_pthread_error) ( ThreadId tid, Char* msg );
sewardjde4a1d02002-03-22 01:27:54 +00001239
njn25e49d8e72002-09-23 09:36:25 +00001240extern void VG_(show_all_errors) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001241
nethercotef2b11482004-08-02 12:36:01 +00001242extern Bool VG_(is_action_requested) ( Char* action, Bool* clo );
njn43c799e2003-04-08 00:08:52 +00001243
nethercotef2b11482004-08-02 12:36:01 +00001244extern UInt VG_(get_n_errs_found) ( void );
njn47363ab2003-04-21 13:24:40 +00001245
sewardjde4a1d02002-03-22 01:27:54 +00001246/* ---------------------------------------------------------------------
1247 Exports of vg_procselfmaps.c
1248 ------------------------------------------------------------------ */
1249
njnfa1016e2003-09-25 17:54:11 +00001250/* Reads /proc/self/maps into a static buffer which can be parsed by
1251 VG_(parse_procselfmaps)(). */
1252extern void VG_(read_procselfmaps) ( void );
njn3e884182003-04-15 13:03:23 +00001253
1254/* Parses /proc/self/maps, calling `record_mapping' for each entry. If
1255 `read_from_file' is True, /proc/self/maps is read directly, otherwise
1256 it's read from the buffer filled by VG_(read_procselfmaps_contents)(). */
sewardjde4a1d02002-03-22 01:27:54 +00001257extern
njnfa1016e2003-09-25 17:54:11 +00001258void VG_(parse_procselfmaps) (
fitzhardinge98abfc72003-12-16 02:05:15 +00001259 void (*record_mapping)( Addr addr, UInt len, Char rr, Char ww, Char xx,
nethercote85cdd342004-08-01 22:36:40 +00001260 UInt dev, UInt ino, ULong foff,
1261 const UChar *filename ) );
sewardjde4a1d02002-03-22 01:27:54 +00001262
1263
1264/* ---------------------------------------------------------------------
1265 Exports of vg_symtab2.c
1266 ------------------------------------------------------------------ */
1267
fitzhardinge98abfc72003-12-16 02:05:15 +00001268typedef struct _Segment Segment;
1269
1270extern Bool VG_(is_object_file) ( const void *hdr );
njnfa1016e2003-09-25 17:54:11 +00001271extern void VG_(mini_stack_dump) ( Addr eips[], UInt n_eips );
fitzhardinge98abfc72003-12-16 02:05:15 +00001272extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +00001273extern void VG_(symtab_incref) ( SegInfo * );
1274extern void VG_(symtab_decref) ( SegInfo *, Addr a, UInt len );
sewardjde4a1d02002-03-22 01:27:54 +00001275
njn25e49d8e72002-09-23 09:36:25 +00001276extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +00001277
fitzhardinge98abfc72003-12-16 02:05:15 +00001278/* Set up some default redirects */
1279extern void VG_(setup_code_redirect_table) ( void );
sewardj25c7c3a2003-07-10 00:17:58 +00001280
fitzhardinge98abfc72003-12-16 02:05:15 +00001281/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +00001282extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +00001283
1284/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001285 Exports of vg_main.c
1286 ------------------------------------------------------------------ */
1287
sewardjb91ae7f2003-04-29 23:50:00 +00001288/* Is this a SSE/SSE2-capable CPU? If so, we had better save/restore
1289 the SSE state all over the place. This is set up very early, in
nethercote1d447092004-02-01 17:29:59 +00001290 main(). We have to determine it early since we can't even
sewardjb91ae7f2003-04-29 23:50:00 +00001291 correctly snapshot the startup machine state without it. */
1292extern Bool VG_(have_ssestate);
1293
sewardj73cf3bc2002-11-03 03:20:15 +00001294/* Tell the logging mechanism whether we are logging to a file
1295 descriptor or a socket descriptor. */
1296extern Bool VG_(logging_to_filedes);
1297
njn25e49d8e72002-09-23 09:36:25 +00001298/* Sanity checks which may be done at any time. The scheduler decides when. */
nethercote885dd912004-08-03 23:14:00 +00001299extern void VG_(sanity_check_general) ( Bool force_expensive );
njn25e49d8e72002-09-23 09:36:25 +00001300
fitzhardinge98abfc72003-12-16 02:05:15 +00001301/* Address space */
1302extern Addr VG_(client_base); /* client address space limits */
1303extern Addr VG_(client_end);
1304extern Addr VG_(client_mapbase); /* base of mappings */
1305extern Addr VG_(clstk_base); /* client stack range */
1306extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +00001307extern Addr VG_(client_trampoline_code);
1308
fitzhardinge98abfc72003-12-16 02:05:15 +00001309extern Addr VG_(brk_base); /* start of brk */
1310extern Addr VG_(brk_limit); /* current brk */
nethercote996901a2004-08-03 13:29:09 +00001311extern Addr VG_(shadow_base); /* tool's shadow memory */
fitzhardinge98abfc72003-12-16 02:05:15 +00001312extern Addr VG_(shadow_end);
1313extern Addr VG_(valgrind_base); /* valgrind's address range */
fitzhardinge98abfc72003-12-16 02:05:15 +00001314extern Addr VG_(valgrind_end);
1315
fitzhardingeb50068f2004-02-24 23:42:55 +00001316extern vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
1317
fitzhardingea49f9b52003-12-16 22:26:45 +00001318/* client executable file descriptor */
1319extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +00001320
nethercotef6a1d502004-08-09 12:21:57 +00001321// Help set up the child used when doing execve() with --trace-children=yes
1322Char* VG_(build_child_VALGRINDCLO) ( Char* exename );
1323Char* VG_(build_child_exename) ( void );
1324
njn9b007f62003-04-07 14:40:25 +00001325/* Determine if %esp adjustment must be noted */
njnf4ce3d32003-02-10 10:17:26 +00001326extern Bool VG_(need_to_handle_esp_assignment) ( void );
1327
sewardjde4a1d02002-03-22 01:27:54 +00001328/* Called when some unhandleable client behaviour is detected.
1329 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +00001330extern void VG_(unimplemented) ( Char* msg )
1331 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +00001332
nethercote04d0fbc2004-01-26 16:48:06 +00001333/* Something of a function looking for a home ... start up debugger. */
1334extern void VG_(start_debugger) ( Int tid );
sewardjde4a1d02002-03-22 01:27:54 +00001335
sewardjde4a1d02002-03-22 01:27:54 +00001336/* Counts downwards in vg_run_innerloop. */
1337extern UInt VG_(dispatch_ctr);
1338
sewardjde4a1d02002-03-22 01:27:54 +00001339/* --- Counters, for informational purposes only. --- */
1340
nethercote92e7b7f2004-08-07 17:52:25 +00001341// These counters must be declared here because they're maintained by
1342// vg_dispatch.S.
1343extern UInt VG_(bb_enchain_count); // Counts of chain operations done
1344extern UInt VG_(bb_dechain_count); // Counts of unchain operations done
1345extern UInt VG_(unchained_jumps_done); // Number of unchained jumps performed
sewardj22854b92002-11-30 14:00:47 +00001346
nethercote844e7122004-08-02 15:27:22 +00001347extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +00001348
sewardjde4a1d02002-03-22 01:27:54 +00001349/* ---------------------------------------------------------------------
1350 Exports of vg_memory.c
1351 ------------------------------------------------------------------ */
1352
fitzhardinge98abfc72003-12-16 02:05:15 +00001353/* A Segment is mapped piece of client memory. This covers all kinds
1354 of mapped memory (exe, brk, mmap, .so, shm, stack, etc)
1355
1356 We try to encode everything we know about a particular segment here.
1357*/
nethercote85cdd342004-08-01 22:36:40 +00001358#define SF_FIXED (1 << 0) // client asked for MAP_FIXED
1359#define SF_SHARED (1 << 1) // shared
1360#define SF_SHM (1 << 2) // SYSV SHM (also SF_SHARED)
1361#define SF_MMAP (1 << 3) // mmap memory
1362#define SF_FILE (1 << 4) // mapping is backed by a file
1363#define SF_STACK (1 << 5) // is a stack
1364#define SF_GROWDOWN (1 << 6) // segment grows down
1365#define SF_GROWUP (1 << 7) // segment grows up
1366#define SF_EXEC (1 << 8) // segment created by exec
1367#define SF_DYNLIB (1 << 9) // mapped from dynamic library
1368#define SF_NOSYMS (1 << 10) // don't load syms, even if present
1369#define SF_BRK (1 << 11) // brk segment
1370#define SF_CORE (1 << 12) // allocated by core on behalf of the client
1371#define SF_VALGRIND (1 << 13) // a valgrind-internal mapping - not in client
1372#define SF_CODE (1 << 14) // segment contains cached code
fitzhardinge98abfc72003-12-16 02:05:15 +00001373
1374struct _Segment {
1375 UInt prot; /* VKI_PROT_* */
1376 UInt flags; /* SF_* */
1377
1378 Addr addr; /* mapped addr (page aligned) */
1379 UInt len; /* size of mapping (page aligned) */
1380
1381 /* These are valid if (flags & SF_FILE) */
1382 ULong offset; /* file offset */
1383 const Char *filename; /* filename (NULL if unknown) */
1384 UInt dev; /* device */
1385 UInt ino; /* inode */
1386
1387 SegInfo *symtab; /* symbol table */
1388};
1389
1390/* segment mapped from a file descriptor */
1391extern void VG_(map_fd_segment) (Addr addr, UInt len, UInt prot, UInt flags,
1392 Int fd, ULong off, const Char *filename);
1393
1394/* segment mapped from a file */
1395extern void VG_(map_file_segment)(Addr addr, UInt len, UInt prot, UInt flags,
1396 UInt dev, UInt ino, ULong off, const Char *filename);
1397
1398/* simple segment */
1399extern void VG_(map_segment) (Addr addr, UInt len, UInt prot, UInt flags);
1400
1401extern void VG_(unmap_range) (Addr addr, UInt len);
1402extern void VG_(mprotect_range)(Addr addr, UInt len, UInt prot);
1403extern Addr VG_(find_map_space)(Addr base, UInt len, Bool for_client);
1404
1405extern Segment *VG_(find_segment)(Addr a);
fitzhardinged65dcad2004-03-13 02:06:58 +00001406extern Segment *VG_(first_segment)(void);
fitzhardinge98abfc72003-12-16 02:05:15 +00001407extern Segment *VG_(next_segment)(Segment *);
1408
1409extern Bool VG_(seg_contains)(const Segment *s, Addr ptr, UInt size);
1410extern Bool VG_(seg_overlaps)(const Segment *s, Addr ptr, UInt size);
1411
thughes9aaebc32004-07-15 23:13:37 +00001412extern void VG_(pad_address_space)(void);
1413extern void VG_(unpad_address_space)(void);
1414
nethercoteeec46302004-08-23 15:06:23 +00001415extern REGPARM(1)
njnfa1016e2003-09-25 17:54:11 +00001416 void VG_(unknown_esp_update) ( Addr new_ESP );
sewardjde4a1d02002-03-22 01:27:54 +00001417
jsgf855d93d2003-10-13 22:26:55 +00001418/* ---------------------------------------------------------------------
1419 Exports of vg_proxylwp.c
1420 ------------------------------------------------------------------ */
1421
1422/* Issue a syscall for thread tid */
1423extern Int VG_(sys_issue)(int tid);
1424
1425extern void VG_(proxy_init) ( void );
1426extern void VG_(proxy_create) ( ThreadId tid );
1427extern void VG_(proxy_delete) ( ThreadId tid, Bool force );
1428extern void VG_(proxy_results) ( void );
1429extern void VG_(proxy_sendsig) ( ThreadId tid, Int signo );
1430extern void VG_(proxy_setsigmask)(ThreadId tid);
1431extern void VG_(proxy_sigack) ( ThreadId tid, const vki_ksigset_t *);
1432extern void VG_(proxy_abort_syscall) ( ThreadId tid );
1433extern void VG_(proxy_waitsig) ( void );
fitzhardinge31ba9052004-01-16 02:15:23 +00001434extern void VG_(proxy_wait_sys) (ThreadId tid, Bool restart);
jsgf855d93d2003-10-13 22:26:55 +00001435
nethercote85cdd342004-08-01 22:36:40 +00001436extern void VG_(proxy_shutdown) ( void ); // shut down the syscall workers
1437extern Int VG_(proxy_resfd) ( void ); // FD something can select on to know
1438 // a syscall finished
jsgf855d93d2003-10-13 22:26:55 +00001439
1440/* Sanity-check the whole proxy-LWP machinery */
nethercote885dd912004-08-03 23:14:00 +00001441void VG_(sanity_check_proxy)(void);
jsgf855d93d2003-10-13 22:26:55 +00001442
1443/* Send a signal from a thread's proxy to the thread. This longjmps
1444 back into the proxy's main loop, so it doesn't return. */
1445__attribute__ ((__noreturn__))
1446extern void VG_(proxy_handlesig)( const vki_ksiginfo_t *siginfo,
1447 const struct vki_sigcontext *sigcontext );
1448
sewardjde4a1d02002-03-22 01:27:54 +00001449/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001450 Exports of vg_syscalls.c
sewardjde4a1d02002-03-22 01:27:54 +00001451 ------------------------------------------------------------------ */
1452
fitzhardinge98abfc72003-12-16 02:05:15 +00001453extern Char *VG_(resolve_filename)(Int fd);
njn25e49d8e72002-09-23 09:36:25 +00001454
jsgf855d93d2003-10-13 22:26:55 +00001455extern Bool VG_(pre_syscall) ( ThreadId tid );
fitzhardinge31ba9052004-01-16 02:15:23 +00001456extern void VG_(post_syscall)( ThreadId tid, Bool restart );
sewardjde4a1d02002-03-22 01:27:54 +00001457
1458extern Bool VG_(is_kerror) ( Int res );
1459
jsgf855d93d2003-10-13 22:26:55 +00001460/* Internal atfork handlers */
1461typedef void (*vg_atfork_t)(ThreadId);
1462extern void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child);
sewardjde4a1d02002-03-22 01:27:54 +00001463
rjwalshf5f536f2003-11-17 17:45:00 +00001464/* fd leakage calls. */
1465extern void VG_(init_preopened_fds) ( void );
nethercote3a42fb82004-08-03 18:08:50 +00001466extern void VG_(show_open_fds) ( void );
rjwalshf5f536f2003-11-17 17:45:00 +00001467
sewardjde4a1d02002-03-22 01:27:54 +00001468/* ---------------------------------------------------------------------
1469 Exports of vg_transtab.c
1470 ------------------------------------------------------------------ */
1471
njn25e49d8e72002-09-23 09:36:25 +00001472/* The fast-cache for tt-lookup. */
1473extern Addr VG_(tt_fast)[VG_TT_FAST_SIZE];
1474
nethercote92e7b7f2004-08-07 17:52:25 +00001475extern void VG_(init_tt_tc) ( void );
sewardjc0d8f682002-11-30 00:49:43 +00001476extern void VG_(add_to_trans_tab) ( Addr orig_addr, Int orig_size,
sewardj22854b92002-11-30 14:00:47 +00001477 Addr trans_addr, Int trans_size,
1478 UShort jumps[VG_MAX_JUMPS]);
nethercote92e7b7f2004-08-07 17:52:25 +00001479extern Addr VG_(search_transtab) ( Addr original_addr );
sewardj6c3769f2002-11-29 01:02:45 +00001480
nethercote92e7b7f2004-08-07 17:52:25 +00001481extern void VG_(invalidate_translations) ( Addr start, UInt range,
1482 Bool unchain_blocks );
sewardjde4a1d02002-03-22 01:27:54 +00001483
nethercote92e7b7f2004-08-07 17:52:25 +00001484extern void VG_(sanity_check_tt_tc) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001485
nethercote92e7b7f2004-08-07 17:52:25 +00001486extern void VG_(print_tt_tc_stats) ( void );
1487
1488extern Int VG_(get_bbs_translated) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001489
sewardjde4a1d02002-03-22 01:27:54 +00001490/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001491 Exports of vg_syscall.S
1492 ------------------------------------------------------------------ */
1493
jsgf855d93d2003-10-13 22:26:55 +00001494extern Int VG_(do_syscall) ( UInt, ... );
1495extern Int VG_(clone) ( Int (*fn)(void *), void *stack, Int flags, void *arg,
1496 Int *child_tid, Int *parent_tid);
fitzhardinge4f10ada2004-06-03 10:00:42 +00001497extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +00001498
1499/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001500 Exports of vg_dispatch.S
1501 ------------------------------------------------------------------ */
1502
sewardj2e93c502002-04-12 11:12:52 +00001503/* Run a thread for a (very short) while, until some event happens
1504 which means we need to defer to the scheduler. */
1505extern UInt VG_(run_innerloop) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001506
sewardj22854b92002-11-30 14:00:47 +00001507/* The patching routing called when a BB wants to chain itself to
1508 another. */
1509extern UInt VG_(patch_me);
sewardjde4a1d02002-03-22 01:27:54 +00001510
1511/* ---------------------------------------------------------------------
1512 Exports of vg_helpers.S
1513 ------------------------------------------------------------------ */
1514
sewardjde4a1d02002-03-22 01:27:54 +00001515/* Mul, div, etc, -- we don't codegen these directly. */
1516extern void VG_(helper_idiv_64_32);
1517extern void VG_(helper_div_64_32);
1518extern void VG_(helper_idiv_32_16);
1519extern void VG_(helper_div_32_16);
1520extern void VG_(helper_idiv_16_8);
1521extern void VG_(helper_div_16_8);
1522
1523extern void VG_(helper_imul_32_64);
1524extern void VG_(helper_mul_32_64);
1525extern void VG_(helper_imul_16_32);
1526extern void VG_(helper_mul_16_32);
1527extern void VG_(helper_imul_8_16);
1528extern void VG_(helper_mul_8_16);
1529
1530extern void VG_(helper_CLD);
1531extern void VG_(helper_STD);
1532extern void VG_(helper_get_dirflag);
1533
sewardj7d78e782002-06-02 00:04:00 +00001534extern void VG_(helper_CLC);
1535extern void VG_(helper_STC);
nethercote1018bdd2004-02-11 23:33:29 +00001536extern void VG_(helper_CMC);
sewardj7d78e782002-06-02 00:04:00 +00001537
sewardjde4a1d02002-03-22 01:27:54 +00001538extern void VG_(helper_shldl);
1539extern void VG_(helper_shldw);
1540extern void VG_(helper_shrdl);
1541extern void VG_(helper_shrdw);
1542
daywalkerb18d2532003-09-27 20:15:01 +00001543extern void VG_(helper_IN);
1544extern void VG_(helper_OUT);
1545
sewardjde4a1d02002-03-22 01:27:54 +00001546extern void VG_(helper_RDTSC);
1547extern void VG_(helper_CPUID);
1548
nethercote1018bdd2004-02-11 23:33:29 +00001549extern void VG_(helper_bsfw);
1550extern void VG_(helper_bsfl);
1551extern void VG_(helper_bsrw);
1552extern void VG_(helper_bsrl);
sewardjde4a1d02002-03-22 01:27:54 +00001553
1554extern void VG_(helper_fstsw_AX);
1555extern void VG_(helper_SAHF);
njnd6251f12003-06-03 13:38:51 +00001556extern void VG_(helper_LAHF);
sewardj4d0ab1f2002-03-24 10:00:09 +00001557extern void VG_(helper_DAS);
sewardjfe8a1662002-03-24 11:54:07 +00001558extern void VG_(helper_DAA);
nethercote1018bdd2004-02-11 23:33:29 +00001559extern void VG_(helper_AAS);
1560extern void VG_(helper_AAA);
1561extern void VG_(helper_AAD);
1562extern void VG_(helper_AAM);
sewardjde4a1d02002-03-22 01:27:54 +00001563
muellerf217c732004-01-02 22:42:29 +00001564extern void VG_(helper_cmpxchg8b);
1565
sewardj51096432002-12-14 23:59:09 +00001566extern void VG_(helper_undefined_instruction);
1567
fitzhardinge92360792003-12-24 10:11:11 +00001568/* Information about trampoline code (for signal return and syscalls) */
1569extern const Char VG_(trampoline_code_start);
1570extern const Int VG_(trampoline_code_length);
1571extern const Int VG_(tramp_sigreturn_offset);
1572extern const Int VG_(tramp_syscall_offset);
sewardj20917d82002-05-28 01:36:45 +00001573
njn4f9c9342002-04-29 16:03:24 +00001574/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +00001575 Things relating to the used tool
njn4f9c9342002-04-29 16:03:24 +00001576 ------------------------------------------------------------------ */
1577
fitzhardinge98abfc72003-12-16 02:05:15 +00001578#define VG_TRACK(fn, args...) \
1579 do { \
1580 if (VG_(defined_##fn)()) \
1581 SK_(fn)(args); \
1582 } while(0)
sewardj18d75132002-05-16 11:06:21 +00001583
fitzhardinge98abfc72003-12-16 02:05:15 +00001584__attribute__ ((noreturn))
1585extern void VG_(missing_tool_func) ( const Char* fn );
sewardj18d75132002-05-16 11:06:21 +00001586
sewardjde4a1d02002-03-22 01:27:54 +00001587/* ---------------------------------------------------------------------
1588 The state of the simulated CPU.
1589 ------------------------------------------------------------------ */
1590
sewardjde4a1d02002-03-22 01:27:54 +00001591/* ---------------------------------------------------------------------
1592 Offsets into baseBlock for everything which needs to referred to
1593 from generated code. The order of these decls does not imply
1594 what the order of the actual offsets is. The latter is important
1595 and is set up in vg_main.c.
1596 ------------------------------------------------------------------ */
1597
1598/* An array of words. In generated code, %ebp always points to the
1599 start of this array. Useful stuff, like the simulated CPU state,
1600 and the addresses of helper functions, can then be found by
1601 indexing off %ebp. The following declares variables which, at
1602 startup time, are given values denoting offsets into baseBlock.
1603 These offsets are in *words* from the start of baseBlock. */
1604
sewardjb91ae7f2003-04-29 23:50:00 +00001605#define VG_BASEBLOCK_WORDS 400
sewardjde4a1d02002-03-22 01:27:54 +00001606
1607extern UInt VG_(baseBlock)[VG_BASEBLOCK_WORDS];
1608
sewardjde4a1d02002-03-22 01:27:54 +00001609/* -----------------------------------------------------
1610 Read-write parts of baseBlock.
1611 -------------------------------------------------- */
1612
1613/* State of the simulated CPU. */
1614extern Int VGOFF_(m_eax);
1615extern Int VGOFF_(m_ecx);
1616extern Int VGOFF_(m_edx);
1617extern Int VGOFF_(m_ebx);
1618extern Int VGOFF_(m_esp);
1619extern Int VGOFF_(m_ebp);
1620extern Int VGOFF_(m_esi);
1621extern Int VGOFF_(m_edi);
1622extern Int VGOFF_(m_eflags);
sewardjb91ae7f2003-04-29 23:50:00 +00001623extern Int VGOFF_(m_ssestate);
sewardjde4a1d02002-03-22 01:27:54 +00001624extern Int VGOFF_(m_eip);
1625
sewardjfa492d42002-12-08 18:20:01 +00001626extern Int VGOFF_(m_dflag); /* D flag is handled specially */
1627
sewardj92a59562002-09-30 00:53:10 +00001628extern Int VGOFF_(m_cs);
1629extern Int VGOFF_(m_ss);
1630extern Int VGOFF_(m_ds);
1631extern Int VGOFF_(m_es);
1632extern Int VGOFF_(m_fs);
1633extern Int VGOFF_(m_gs);
1634
sewardjde4a1d02002-03-22 01:27:54 +00001635/* Reg-alloc spill area (VG_MAX_SPILLSLOTS words long). */
1636extern Int VGOFF_(spillslots);
1637
1638/* Records the valid bits for the 8 integer regs & flags reg. */
1639extern Int VGOFF_(sh_eax);
1640extern Int VGOFF_(sh_ecx);
1641extern Int VGOFF_(sh_edx);
1642extern Int VGOFF_(sh_ebx);
1643extern Int VGOFF_(sh_esp);
1644extern Int VGOFF_(sh_ebp);
1645extern Int VGOFF_(sh_esi);
1646extern Int VGOFF_(sh_edi);
1647extern Int VGOFF_(sh_eflags);
1648
sewardjde4a1d02002-03-22 01:27:54 +00001649/* -----------------------------------------------------
1650 Read-only parts of baseBlock.
1651 -------------------------------------------------- */
1652
sewardj92a59562002-09-30 00:53:10 +00001653/* This thread's LDT pointer. */
1654extern Int VGOFF_(ldt);
1655
fitzhardinge47735af2004-01-21 01:27:27 +00001656/* This thread's TLS pointer. */
nethercoted8510ec2004-08-18 23:11:45 +00001657extern Int VGOFF_(tls_ptr);
fitzhardinge47735af2004-01-21 01:27:27 +00001658
nethercote46063202004-09-02 08:51:43 +00001659/* Nb: Most helper offsets are in include/tool.h, for use by tools */
sewardjde4a1d02002-03-22 01:27:54 +00001660
sewardj51096432002-12-14 23:59:09 +00001661extern Int VGOFF_(helper_undefined_instruction);
1662
rjwalsh7109a8c2004-09-02 00:31:02 +00001663#endif /* ndef __CORE_H */
sewardjde4a1d02002-03-22 01:27:54 +00001664
sewardj3b2736a2002-03-24 12:18:35 +00001665
1666/* ---------------------------------------------------------------------
1667 Finally - autoconf-generated settings
1668 ------------------------------------------------------------------ */
1669
1670#include "config.h"
1671
sewardjde4a1d02002-03-22 01:27:54 +00001672/*--------------------------------------------------------------------*/
nethercote109d0df2004-09-02 08:10:13 +00001673/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +00001674/*--------------------------------------------------------------------*/