blob: b87f47785d069e5518517d344a0d9fe56aa484ed [file] [log] [blame]
njn25e49d8e72002-09-23 09:36:25 +00001
2/*--------------------------------------------------------------------*/
3/*--- The only header your skin will ever need to #include... ---*/
4/*--- vg_skin.h ---*/
5/*--------------------------------------------------------------------*/
6
7/*
njnc9539842002-10-02 13:26:35 +00008 This file is part of Valgrind, an extensible x86 protected-mode
9 emulator for monitoring program execution on x86-Unixes.
njn25e49d8e72002-09-23 09:36:25 +000010
11 Copyright (C) 2000-2002 Julian Seward
12 jseward@acm.org
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License as
16 published by the Free Software Foundation; either version 2 of the
17 License, or (at your option) any later version.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
27 02111-1307, USA.
28
29 The GNU General Public License is contained in the file COPYING.
30*/
31
32#ifndef __VG_SKIN_H
33#define __VG_SKIN_H
34
35#include <stdarg.h> /* ANSI varargs stuff */
36#include <setjmp.h> /* for jmp_buf */
37
38#include "vg_constants_skin.h"
39
40
41/*====================================================================*/
42/*=== Build options and table sizes. ===*/
43/*====================================================================*/
44
45/* You should be able to change these options or sizes, recompile, and
46 still have a working system. */
47
48/* The maximum number of pthreads that we support. This is
49 deliberately not very high since our implementation of some of the
50 scheduler algorithms is surely O(N) in the number of threads, since
51 that's simple, at least. And (in practice) we hope that most
52 programs do not need many threads. */
53#define VG_N_THREADS 50
54
55/* Maximum number of pthread keys available. Again, we start low until
56 the need for a higher number presents itself. */
57#define VG_N_THREAD_KEYS 50
58
59/* Total number of integer registers available for allocation -- all of
60 them except %esp, %ebp. %ebp permanently points at VG_(baseBlock).
61
62 If you change this you'll have to also change at least these:
njn4ba5a792002-09-30 10:23:54 +000063 - VG_(rank_to_realreg)()
64 - VG_(realreg_to_rank)()
njn25e49d8e72002-09-23 09:36:25 +000065 - ppRegsLiveness()
66 - the RegsLive type (maybe -- RegsLive type must have more than
67 VG_MAX_REALREGS bits)
68
69 Do not change this unless you really know what you are doing! */
70#define VG_MAX_REALREGS 6
71
72
73/*====================================================================*/
njn1a1dd8b2002-09-27 10:42:20 +000074/*=== Basic types, useful macros ===*/
njn25e49d8e72002-09-23 09:36:25 +000075/*====================================================================*/
76
njn25e49d8e72002-09-23 09:36:25 +000077typedef unsigned char UChar;
78typedef unsigned short UShort;
79typedef unsigned int UInt;
80typedef unsigned long long int ULong;
81
82typedef signed char Char;
83typedef signed short Short;
84typedef signed int Int;
85typedef signed long long int Long;
86
87typedef unsigned int Addr;
88
89typedef unsigned char Bool;
90#define False ((Bool)0)
91#define True ((Bool)1)
92
93
njn1a1dd8b2002-09-27 10:42:20 +000094#define mycat_wrk(aaa,bbb) aaa##bbb
95#define mycat(aaa,bbb) mycat_wrk(aaa,bbb)
96
97/* No, really. I _am_ that strange. */
98#define OINK(nnn) VG_(message)(Vg_DebugMsg, "OINK %d",nnn)
99
njn25e49d8e72002-09-23 09:36:25 +0000100/* ---------------------------------------------------------------------
101 Now the basic types are set up, we can haul in the kernel-interface
102 definitions.
103 ------------------------------------------------------------------ */
104
njn2574bb4762002-09-24 11:23:50 +0000105#include "../coregrind/vg_kerneliface.h"
njn25e49d8e72002-09-23 09:36:25 +0000106
107
108/*====================================================================*/
109/*=== Command-line options ===*/
110/*====================================================================*/
111
112/* Verbosity level: 0 = silent, 1 (default), > 1 = more verbose. */
113extern Int VG_(clo_verbosity);
114
115/* Profile? */
116extern Bool VG_(clo_profile);
117
njn25e49d8e72002-09-23 09:36:25 +0000118/* Call this if a recognised option was bad for some reason.
119 Note: don't use it just because an option was unrecognised -- return 'False'
120 from SKN_(process_cmd_line_option) to indicate that. */
121extern void VG_(bad_option) ( Char* opt );
122
123/* Client args */
124extern Int VG_(client_argc);
125extern Char** VG_(client_argv);
126
njnd5bb0a52002-09-27 10:24:48 +0000127/* Client environment. Can be inspected with VG_(getenv)() */
njn25e49d8e72002-09-23 09:36:25 +0000128extern Char** VG_(client_envp);
129
130
131/*====================================================================*/
132/*=== Printing messages for the user ===*/
133/*====================================================================*/
134
135/* Print a message prefixed by "??<pid>?? "; '?' depends on the VgMsgKind.
136 Should be used for all user output. */
137
138typedef
139 enum { Vg_UserMsg, /* '?' == '=' */
140 Vg_DebugMsg, /* '?' == '-' */
141 Vg_DebugExtraMsg /* '?' == '+' */
142 }
143 VgMsgKind;
144
145/* Functions for building a message from multiple parts. */
146extern void VG_(start_msg) ( VgMsgKind kind );
147extern void VG_(add_to_msg) ( Char* format, ... );
148/* Ends and prints the message. Appends a newline. */
149extern void VG_(end_msg) ( void );
150
njnd5bb0a52002-09-27 10:24:48 +0000151/* Send a single-part message. Appends a newline. */
njn25e49d8e72002-09-23 09:36:25 +0000152extern void VG_(message) ( VgMsgKind kind, Char* format, ... );
153
154
155/*====================================================================*/
156/*=== Profiling ===*/
157/*====================================================================*/
158
159/* Nb: VGP_(register_profile_event)() relies on VgpUnc being the first one */
160#define VGP_CORE_LIST \
161 /* These ones depend on the core */ \
162 VGP_PAIR(VgpUnc, "unclassified"), \
163 VGP_PAIR(VgpRun, "running"), \
164 VGP_PAIR(VgpSched, "scheduler"), \
165 VGP_PAIR(VgpMalloc, "low-lev malloc/free"), \
166 VGP_PAIR(VgpCliMalloc, "client malloc/free"), \
167 VGP_PAIR(VgpStack, "adjust-stack"), \
168 VGP_PAIR(VgpTranslate, "translate-main"), \
169 VGP_PAIR(VgpToUCode, "to-ucode"), \
170 VGP_PAIR(VgpFromUcode, "from-ucode"), \
171 VGP_PAIR(VgpImprove, "improve"), \
172 VGP_PAIR(VgpRegAlloc, "reg-alloc"), \
173 VGP_PAIR(VgpLiveness, "liveness-analysis"), \
174 VGP_PAIR(VgpDoLRU, "do-lru"), \
175 VGP_PAIR(VgpSlowFindT, "slow-search-transtab"), \
176 VGP_PAIR(VgpInitMem, "init-memory"), \
177 VGP_PAIR(VgpExeContext, "exe-context"), \
178 VGP_PAIR(VgpReadSyms, "read-syms"), \
179 VGP_PAIR(VgpSearchSyms, "search-syms"), \
180 VGP_PAIR(VgpAddToT, "add-to-transtab"), \
181 VGP_PAIR(VgpCoreSysWrap, "core-syscall-wrapper"), \
182 VGP_PAIR(VgpDemangle, "demangle"), \
njn37cea302002-09-30 11:24:00 +0000183 VGP_PAIR(VgpCoreCheapSanity, "core-cheap-sanity"), \
184 VGP_PAIR(VgpCoreExpensiveSanity, "core-expensive-sanity"), \
njn25e49d8e72002-09-23 09:36:25 +0000185 /* These ones depend on the skin */ \
186 VGP_PAIR(VgpPreCloInit, "pre-clo-init"), \
187 VGP_PAIR(VgpPostCloInit, "post-clo-init"), \
188 VGP_PAIR(VgpInstrument, "instrument"), \
189 VGP_PAIR(VgpSkinSysWrap, "skin-syscall-wrapper"), \
njn37cea302002-09-30 11:24:00 +0000190 VGP_PAIR(VgpSkinCheapSanity, "skin-cheap-sanity"), \
191 VGP_PAIR(VgpSkinExpensiveSanity, "skin-expensive-sanity"), \
njn25e49d8e72002-09-23 09:36:25 +0000192 VGP_PAIR(VgpFini, "fini")
193
194#define VGP_PAIR(n,name) n
195typedef enum { VGP_CORE_LIST } VgpCoreCC;
196#undef VGP_PAIR
197
198/* When registering skin profiling events, ensure that the 'n' value is in
199 * the range (VgpFini+1..) */
200extern void VGP_(register_profile_event) ( Int n, Char* name );
201
202extern void VGP_(pushcc) ( UInt cc );
203extern void VGP_(popcc) ( UInt cc );
204
205/* Define them only if they haven't already been defined by vg_profile.c */
206#ifndef VGP_PUSHCC
207# define VGP_PUSHCC(x)
208#endif
209#ifndef VGP_POPCC
210# define VGP_POPCC(x)
211#endif
212
213
214/*====================================================================*/
215/*=== Useful stuff to call from generated code ===*/
216/*====================================================================*/
217
218/* ------------------------------------------------------------------ */
219/* General stuff */
220
njn41557122002-10-14 09:25:37 +0000221/* 64-bit counter for the number of basic blocks done. */
222extern ULong VG_(bbs_done);
223
njn25e49d8e72002-09-23 09:36:25 +0000224/* Get the simulated %esp */
225extern Addr VG_(get_stack_pointer) ( void );
226
njnd5bb0a52002-09-27 10:24:48 +0000227/* Detect if an address is within Valgrind's stack or Valgrind's
228 m_state_static; useful for memory leak detectors to tell if a block
229 is used by Valgrind (and thus can be ignored). */
njn25e49d8e72002-09-23 09:36:25 +0000230extern Bool VG_(within_stack)(Addr a);
njn25e49d8e72002-09-23 09:36:25 +0000231extern Bool VG_(within_m_state_static)(Addr a);
232
233/* Check if an address is 4-byte aligned */
234#define IS_ALIGNED4_ADDR(aaa_p) (0 == (((UInt)(aaa_p)) & 3))
235
236
237/* ------------------------------------------------------------------ */
238/* Thread-related stuff */
239
240/* Special magic value for an invalid ThreadId. It corresponds to
241 LinuxThreads using zero as the initial value for
242 pthread_mutex_t.__m_owner and pthread_cond_t.__c_waiting. */
243#define VG_INVALID_THREADID ((ThreadId)(0))
244
245/* ThreadIds are simply indices into the vg_threads[] array. */
246typedef
247 UInt
248 ThreadId;
249
njnd5bb0a52002-09-27 10:24:48 +0000250/* struct _ThreadState defined elsewhere; ThreadState is abstract as its
251 definition is not important for skins. */
njn25e49d8e72002-09-23 09:36:25 +0000252typedef
253 struct _ThreadState
254 ThreadState;
255
sewardj7ab2aca2002-10-20 19:40:32 +0000256extern ThreadId VG_(get_current_tid) ( void );
njn25e49d8e72002-09-23 09:36:25 +0000257extern ThreadId VG_(get_current_tid_1_if_root) ( void );
sewardj7ab2aca2002-10-20 19:40:32 +0000258extern ThreadId VG_(get_tid_from_ThreadState) ( ThreadState* );
njn25e49d8e72002-09-23 09:36:25 +0000259extern ThreadState* VG_(get_ThreadState) ( ThreadId tid );
260
261
262/*====================================================================*/
263/*=== Valgrind's version of libc ===*/
264/*====================================================================*/
265
266/* Valgrind doesn't use libc at all, for good reasons (trust us). So here
267 are its own versions of C library functions, but with VG_ prefixes. Note
268 that the types of some are slightly different to the real ones. Some
269 extra useful functions are provided too; descriptions of how they work
270 are given below. */
271
272#if !defined(NULL)
273# define NULL ((void*)0)
274#endif
275
276
277/* ------------------------------------------------------------------ */
278/* stdio.h
279 *
280 * Note that they all output to the file descriptor given by the
281 * --logfile-fd=N argument, which defaults to 2 (stderr). Hence no
282 * need for VG_(fprintf)().
njn25e49d8e72002-09-23 09:36:25 +0000283 */
sewardj78e3cd92002-10-22 04:45:48 +0000284extern UInt VG_(printf) ( const char *format, ... );
njn25e49d8e72002-09-23 09:36:25 +0000285/* too noisy ... __attribute__ ((format (printf, 1, 2))) ; */
sewardj78e3cd92002-10-22 04:45:48 +0000286extern UInt VG_(sprintf) ( Char* buf, Char *format, ... );
287extern UInt VG_(vprintf) ( void(*send)(Char),
njn25e49d8e72002-09-23 09:36:25 +0000288 const Char *format, va_list vargs );
289
njn41557122002-10-14 09:25:37 +0000290extern Int VG_(rename) ( Char* old_name, Char* new_name );
291
njn25e49d8e72002-09-23 09:36:25 +0000292/* ------------------------------------------------------------------ */
293/* stdlib.h */
294
295extern void* VG_(malloc) ( Int nbytes );
njnd5bb0a52002-09-27 10:24:48 +0000296extern void VG_(free) ( void* p );
297extern void* VG_(calloc) ( Int n, Int nbytes );
298extern void* VG_(realloc) ( void* p, Int size );
299extern void* VG_(malloc_aligned) ( Int align_bytes, Int nbytes );
njn25e49d8e72002-09-23 09:36:25 +0000300
301extern void VG_(print_malloc_stats) ( void );
302
303
304extern void VG_(exit)( Int status )
305 __attribute__ ((__noreturn__));
njne427a662002-10-02 11:08:25 +0000306/* Prints a panic message (a constant string), appends newline and bug
307 reporting info, aborts. */
308__attribute__ ((__noreturn__))
309extern void VG_(skin_panic) ( Char* str );
njn25e49d8e72002-09-23 09:36:25 +0000310
njnd5bb0a52002-09-27 10:24:48 +0000311/* Looks up VG_(client_envp) */
njn25e49d8e72002-09-23 09:36:25 +0000312extern Char* VG_(getenv) ( Char* name );
313
314/* Crude stand-in for the glibc system() call. */
315extern Int VG_(system) ( Char* cmd );
316
njnd5bb0a52002-09-27 10:24:48 +0000317extern Long VG_(atoll) ( Char* str );
njn25e49d8e72002-09-23 09:36:25 +0000318
319/* Like atoll(), but converts a number of base 2..36 */
320extern Long VG_(atoll36) ( UInt base, Char* str );
321
322
323/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +0000324/* ctype.h */
njn25e49d8e72002-09-23 09:36:25 +0000325extern Bool VG_(isspace) ( Char c );
326extern Bool VG_(isdigit) ( Char c );
327extern Char VG_(toupper) ( Char c );
328
329
330/* ------------------------------------------------------------------ */
331/* string.h */
332extern Int VG_(strlen) ( const Char* str );
333extern Char* VG_(strcat) ( Char* dest, const Char* src );
334extern Char* VG_(strncat) ( Char* dest, const Char* src, Int n );
335extern Char* VG_(strpbrk) ( const Char* s, const Char* accept );
336extern Char* VG_(strcpy) ( Char* dest, const Char* src );
337extern Char* VG_(strncpy) ( Char* dest, const Char* src, Int ndest );
338extern Int VG_(strcmp) ( const Char* s1, const Char* s2 );
339extern Int VG_(strncmp) ( const Char* s1, const Char* s2, Int nmax );
340extern Char* VG_(strstr) ( const Char* haystack, Char* needle );
341extern Char* VG_(strchr) ( const Char* s, Char c );
342extern Char* VG_(strdup) ( const Char* s);
sewardj7ab2aca2002-10-20 19:40:32 +0000343extern void* VG_(memcpy) ( void *d, const void *s, Int sz );
344extern void* VG_(memset) ( void *s, Int c, Int sz );
njn25e49d8e72002-09-23 09:36:25 +0000345
njnd5bb0a52002-09-27 10:24:48 +0000346/* Like strcmp() and strncmp(), but stop comparing at any whitespace. */
njn25e49d8e72002-09-23 09:36:25 +0000347extern Int VG_(strcmp_ws) ( const Char* s1, const Char* s2 );
njn25e49d8e72002-09-23 09:36:25 +0000348extern Int VG_(strncmp_ws) ( const Char* s1, const Char* s2, Int nmax );
349
njnd5bb0a52002-09-27 10:24:48 +0000350/* Like strncpy(), but if 'src' is longer than 'ndest' inserts a '\0' as the
351 last character. */
njn25e49d8e72002-09-23 09:36:25 +0000352extern void VG_(strncpy_safely) ( Char* dest, const Char* src, Int ndest );
353
354/* Mini-regexp function. Searches for 'pat' in 'str'. Supports
355 * meta-symbols '*' and '?'. '\' escapes meta-symbols. */
njn4ba5a792002-09-30 10:23:54 +0000356extern Bool VG_(string_match) ( Char* pat, Char* str );
njn25e49d8e72002-09-23 09:36:25 +0000357
358
359/* ------------------------------------------------------------------ */
360/* math.h */
njnd5bb0a52002-09-27 10:24:48 +0000361/* Returns the base-2 logarithm of x. */
njn25e49d8e72002-09-23 09:36:25 +0000362extern Int VG_(log2) ( Int x );
363
364
365/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +0000366/* unistd.h, fcntl.h, sys/stat.h */
367extern Int VG_(getpid) ( void );
368
njn4aca2d22002-10-04 10:29:38 +0000369extern Int VG_(open) ( const Char* pathname, Int flags, Int mode );
370extern Int VG_(read) ( Int fd, void* buf, Int count);
371extern Int VG_(write) ( Int fd, void* buf, Int count);
372extern void VG_(close) ( Int fd );
njnd5bb0a52002-09-27 10:24:48 +0000373
njn41557122002-10-14 09:25:37 +0000374/* Nb: VG_(rename)() declared in stdio.h section above */
njn4aca2d22002-10-04 10:29:38 +0000375extern Int VG_(unlink) ( Char* file_name );
376extern Int VG_(stat) ( Char* file_name, struct vki_stat* buf );
njn25e49d8e72002-09-23 09:36:25 +0000377
378
379/* ------------------------------------------------------------------ */
380/* assert.h */
381/* Asserts permanently enabled -- no turning off with NDEBUG. Hurrah! */
382#define VG__STRING(__str) #__str
383
njne427a662002-10-02 11:08:25 +0000384#define sk_assert(expr) \
njn25e49d8e72002-09-23 09:36:25 +0000385 ((void) ((expr) ? 0 : \
njne427a662002-10-02 11:08:25 +0000386 (VG_(skin_assert_fail) (VG__STRING(expr), \
387 __FILE__, __LINE__, \
388 __PRETTY_FUNCTION__), 0)))
njn25e49d8e72002-09-23 09:36:25 +0000389
njne427a662002-10-02 11:08:25 +0000390__attribute__ ((__noreturn__))
391extern void VG_(skin_assert_fail) ( Char* expr, Char* file,
392 Int line, Char* fn );
njn25e49d8e72002-09-23 09:36:25 +0000393
394
395/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +0000396/* system/mman.h */
njn25e49d8e72002-09-23 09:36:25 +0000397extern void* VG_(mmap)( void* start, UInt length,
398 UInt prot, UInt flags, UInt fd, UInt offset );
399extern Int VG_(munmap)( void* start, Int length );
400
401/* Get memory by anonymous mmap. */
402extern void* VG_(get_memory_from_mmap) ( Int nBytes, Char* who );
403
404
405/* ------------------------------------------------------------------ */
406/* signal.h.
407
408 Note that these use the vk_ (kernel) structure
409 definitions, which are different in places from those that glibc
410 defines -- hence the 'k' prefix. Since we're operating right at the
411 kernel interface, glibc's view of the world is entirely irrelevant. */
412
413/* --- Signal set ops --- */
njnd5bb0a52002-09-27 10:24:48 +0000414extern Int VG_(ksigfillset) ( vki_ksigset_t* set );
415extern Int VG_(ksigemptyset) ( vki_ksigset_t* set );
njn25e49d8e72002-09-23 09:36:25 +0000416
njnd5bb0a52002-09-27 10:24:48 +0000417extern Bool VG_(kisfullsigset) ( vki_ksigset_t* set );
418extern Bool VG_(kisemptysigset) ( vki_ksigset_t* set );
njn25e49d8e72002-09-23 09:36:25 +0000419
njnd5bb0a52002-09-27 10:24:48 +0000420extern Int VG_(ksigaddset) ( vki_ksigset_t* set, Int signum );
421extern Int VG_(ksigdelset) ( vki_ksigset_t* set, Int signum );
njn25e49d8e72002-09-23 09:36:25 +0000422extern Int VG_(ksigismember) ( vki_ksigset_t* set, Int signum );
423
njnd5bb0a52002-09-27 10:24:48 +0000424extern void VG_(ksigaddset_from_set) ( vki_ksigset_t* dst, vki_ksigset_t* src );
425extern void VG_(ksigdelset_from_set) ( vki_ksigset_t* dst, vki_ksigset_t* src );
njn25e49d8e72002-09-23 09:36:25 +0000426
427/* --- Mess with the kernel's sig state --- */
njnd5bb0a52002-09-27 10:24:48 +0000428extern Int VG_(ksigprocmask) ( Int how, const vki_ksigset_t* set,
njn25e49d8e72002-09-23 09:36:25 +0000429 vki_ksigset_t* oldset );
njnd5bb0a52002-09-27 10:24:48 +0000430extern Int VG_(ksigaction) ( Int signum,
431 const vki_ksigaction* act,
432 vki_ksigaction* oldact );
njn25e49d8e72002-09-23 09:36:25 +0000433
njnd5bb0a52002-09-27 10:24:48 +0000434extern Int VG_(ksignal) ( Int signum, void (*sighandler)(Int) );
435extern Int VG_(ksigaltstack) ( const vki_kstack_t* ss, vki_kstack_t* oss );
njn25e49d8e72002-09-23 09:36:25 +0000436
sewardjdcaf3122002-09-30 23:12:33 +0000437extern Int VG_(kkill) ( Int pid, Int signo );
438extern Int VG_(ksigpending) ( vki_ksigset_t* set );
njn25e49d8e72002-09-23 09:36:25 +0000439
440
441/*====================================================================*/
442/*=== UCode definition ===*/
443/*====================================================================*/
444
sewardje1042472002-09-30 12:33:11 +0000445/* Tags which describe what operands are. Must fit into 4 bits, which
446 they clearly do. */
njn25e49d8e72002-09-23 09:36:25 +0000447typedef
sewardje1042472002-09-30 12:33:11 +0000448enum { TempReg =0, /* virtual temp-reg */
449 ArchReg =1, /* simulated integer reg */
450 ArchRegS =2, /* simulated segment reg */
451 RealReg =3, /* real machine's real reg */
452 SpillNo =4, /* spill slot location */
453 Literal =5, /* literal; .lit32 field has actual value */
454 Lit16 =6, /* literal; .val[123] field has actual value */
455 NoValue =7 /* operand not in use */
456 }
457 Tag;
njn25e49d8e72002-09-23 09:36:25 +0000458
njnd5bb0a52002-09-27 10:24:48 +0000459/* Invalid register numbers (can't be negative) */
njn25e49d8e72002-09-23 09:36:25 +0000460#define INVALID_TEMPREG 999999999
461#define INVALID_REALREG 999999999
462
463/* Microinstruction opcodes. */
464typedef
465 enum {
njnd5bb0a52002-09-27 10:24:48 +0000466 NOP, /* Null op */
njn25e49d8e72002-09-23 09:36:25 +0000467
njnd5bb0a52002-09-27 10:24:48 +0000468 /* Moving values around */
469 GET, PUT, /* simulated register <--> TempReg */
470 GETF, PUTF, /* simulated %eflags <--> TempReg */
471 LOAD, STORE, /* memory <--> TempReg */
472 MOV, /* TempReg <--> TempReg */
473 CMOV, /* Used for cmpxchg and cmov */
njn25e49d8e72002-09-23 09:36:25 +0000474
njnd5bb0a52002-09-27 10:24:48 +0000475 /* Arithmetic/logical ops */
476 ADD, ADC, SUB, SBB, /* Add/subtract (w/wo carry) */
477 AND, OR, XOR, NOT, /* Boolean ops */
478 SHL, SHR, SAR, ROL, ROR, RCL, RCR, /* Shift/rotate (w/wo carry) */
479 NEG, /* Negate */
480 INC, DEC, /* Increment/decrement */
481 BSWAP, /* Big-endian <--> little-endian */
482 CC2VAL, /* Condition code --> 0 or 1 */
483 WIDEN, /* Signed or unsigned widening */
njn25e49d8e72002-09-23 09:36:25 +0000484
njnd5bb0a52002-09-27 10:24:48 +0000485 /* Conditional or unconditional jump */
486 JMP,
487
488 /* FPU ops */
489 FPU, /* Doesn't touch memory */
490 FPU_R, FPU_W, /* Reads/writes memory */
491
492 /* Not strictly needed, but improve address calculation translations. */
njn25e49d8e72002-09-23 09:36:25 +0000493 LEA1, /* reg2 := const + reg1 */
494 LEA2, /* reg3 := const + reg1 + reg2 * 1,2,4 or 8 */
495
njnd5bb0a52002-09-27 10:24:48 +0000496 /* Hack for x86 REP insns. Jump to literal if TempReg/RealReg is zero. */
497 JIFZ,
njn25e49d8e72002-09-23 09:36:25 +0000498
njnd5bb0a52002-09-27 10:24:48 +0000499 /* Advance the simulated %eip by some small (< 128) number. */
500 INCEIP,
njn25e49d8e72002-09-23 09:36:25 +0000501
sewardje1042472002-09-30 12:33:11 +0000502 /* Dealing with segment registers */
503 GETSEG, PUTSEG, /* simulated segment register <--> TempReg */
504 USESEG, /* (LDT/GDT index, virtual addr) --> linear addr */
505
njnd5bb0a52002-09-27 10:24:48 +0000506 /* Not for translating x86 calls -- only to call helpers */
507 CALLM_S, CALLM_E, /* Mark start/end of CALLM push/pop sequence */
508 PUSH, POP, CLEAR, /* Add/remove/zap args for helpers */
509 CALLM, /* Call assembly-code helper */
510
511 /* Not for translating x86 calls -- only to call C helper functions of
512 up to three arguments (or two if the functions has a return value).
513 Arguments and return value must be word-sized. More arguments can
514 be faked with global variables (eg. use VG_(set_global_var)()).
515
516 Seven possibilities: 'arg[123]' show where args go, 'ret' shows
517 where return value goes (if present).
njn25e49d8e72002-09-23 09:36:25 +0000518
519 CCALL(-, -, - ) void f(void)
520 CCALL(arg1, -, - ) void f(UInt arg1)
521 CCALL(arg1, arg2, - ) void f(UInt arg1, UInt arg2)
522 CCALL(arg1, arg2, arg3) void f(UInt arg1, UInt arg2, UInt arg3)
523 CCALL(-, -, ret ) UInt f(UInt)
524 CCALL(arg1, -, ret ) UInt f(UInt arg1)
njnd5bb0a52002-09-27 10:24:48 +0000525 CCALL(arg1, arg2, ret ) UInt f(UInt arg1, UInt arg2) */
njn25e49d8e72002-09-23 09:36:25 +0000526 CCALL,
527
njnd5bb0a52002-09-27 10:24:48 +0000528 /* This opcode makes it easy for skins that extend UCode to do this to
529 avoid opcode overlap:
njn25e49d8e72002-09-23 09:36:25 +0000530
njnd5bb0a52002-09-27 10:24:48 +0000531 enum { EU_OP1 = DUMMY_FINAL_UOPCODE + 1, ... }
njn25e49d8e72002-09-23 09:36:25 +0000532
533 WARNING: Do not add new opcodes after this one! They can be added
534 before, though. */
535 DUMMY_FINAL_UOPCODE
536 }
537 Opcode;
538
539
njnd5bb0a52002-09-27 10:24:48 +0000540/* Condition codes, using the Intel encoding. CondAlways is an extra. */
njn25e49d8e72002-09-23 09:36:25 +0000541typedef
542 enum {
543 CondO = 0, /* overflow */
544 CondNO = 1, /* no overflow */
545 CondB = 2, /* below */
546 CondNB = 3, /* not below */
547 CondZ = 4, /* zero */
548 CondNZ = 5, /* not zero */
549 CondBE = 6, /* below or equal */
550 CondNBE = 7, /* not below or equal */
551 CondS = 8, /* negative */
sewardje1042472002-09-30 12:33:11 +0000552 CondNS = 9, /* not negative */
njn25e49d8e72002-09-23 09:36:25 +0000553 CondP = 10, /* parity even */
554 CondNP = 11, /* not parity even */
555 CondL = 12, /* jump less */
556 CondNL = 13, /* not less */
557 CondLE = 14, /* less or equal */
558 CondNLE = 15, /* not less or equal */
559 CondAlways = 16 /* Jump always */
560 }
561 Condcode;
562
563
564/* Descriptions of additional properties of *unconditional* jumps. */
565typedef
566 enum {
567 JmpBoring=0, /* boring unconditional jump */
568 JmpCall=1, /* jump due to an x86 call insn */
569 JmpRet=2, /* jump due to an x86 ret insn */
570 JmpSyscall=3, /* do a system call, then jump */
571 JmpClientReq=4 /* do a client request, then jump */
572 }
573 JmpKind;
574
575
576/* Flags. User-level code can only read/write O(verflow), S(ign),
577 Z(ero), A(ux-carry), C(arry), P(arity), and may also write
578 D(irection). That's a total of 7 flags. A FlagSet is a bitset,
579 thusly:
580 76543210
581 DOSZACP
582 and bit 7 must always be zero since it is unused.
583*/
584typedef UChar FlagSet;
585
586#define FlagD (1<<6)
587#define FlagO (1<<5)
588#define FlagS (1<<4)
589#define FlagZ (1<<3)
590#define FlagA (1<<2)
591#define FlagC (1<<1)
592#define FlagP (1<<0)
593
594#define FlagsOSZACP (FlagO | FlagS | FlagZ | FlagA | FlagC | FlagP)
595#define FlagsOSZAP (FlagO | FlagS | FlagZ | FlagA | FlagP)
596#define FlagsOSZCP (FlagO | FlagS | FlagZ | FlagC | FlagP)
597#define FlagsOSACP (FlagO | FlagS | FlagA | FlagC | FlagP)
598#define FlagsSZACP ( FlagS | FlagZ | FlagA | FlagC | FlagP)
599#define FlagsSZAP ( FlagS | FlagZ | FlagA | FlagP)
600#define FlagsZCP ( FlagZ | FlagC | FlagP)
601#define FlagsOC (FlagO | FlagC )
602#define FlagsAC ( FlagA | FlagC )
603
604#define FlagsALL (FlagsOSZACP | FlagD)
605#define FlagsEmpty (FlagSet)0
606
607
608/* Liveness of general purpose registers, useful for code generation.
609 Reg rank order 0..N-1 corresponds to bits 0..N-1, ie. first
610 reg's liveness in bit 0, last reg's in bit N-1. Note that
611 these rankings don't match the Intel register ordering. */
612typedef UInt RRegSet;
613
614#define ALL_RREGS_DEAD 0 /* 0000...00b */
njne7c258c2002-10-03 08:57:01 +0000615#define ALL_RREGS_LIVE ((1 << VG_MAX_REALREGS)-1) /* 0011...11b */
njn25e49d8e72002-09-23 09:36:25 +0000616#define UNIT_RREGSET(rank) (1 << (rank))
617
618#define IS_RREG_LIVE(rank,rregs_live) (rregs_live & UNIT_RREGSET(rank))
619#define SET_RREG_LIVENESS(rank,rregs_live,b) \
620 do { RRegSet unit = UNIT_RREGSET(rank); \
621 if (b) rregs_live |= unit; \
622 else rregs_live &= ~unit; \
623 } while(0)
624
625
626/* A Micro (u)-instruction. */
627typedef
628 struct {
629 /* word 1 */
630 UInt lit32; /* 32-bit literal */
631
632 /* word 2 */
633 UShort val1; /* first operand */
634 UShort val2; /* second operand */
635
636 /* word 3 */
637 UShort val3; /* third operand */
638 UChar opcode; /* opcode */
639 UChar size; /* data transfer size */
640
641 /* word 4 */
642 FlagSet flags_r; /* :: FlagSet */
643 FlagSet flags_w; /* :: FlagSet */
644 UChar tag1:4; /* first operand tag */
645 UChar tag2:4; /* second operand tag */
646 UChar tag3:4; /* third operand tag */
647 UChar extra4b:4; /* Spare field, used by WIDEN for src
648 -size, and by LEA2 for scale (1,2,4 or 8),
649 and by JMPs for original x86 instr size */
650
651 /* word 5 */
652 UChar cond; /* condition, for jumps */
653 Bool signed_widen:1; /* signed or unsigned WIDEN ? */
654 JmpKind jmpkind:3; /* additional properties of unconditional JMP */
655
656 /* Additional properties for UInstrs that call C functions:
657 - CCALL
658 - PUT (when %ESP is the target)
659 - possibly skin-specific UInstrs
660 */
661 UChar argc:2; /* Number of args, max 3 */
662 UChar regparms_n:2; /* Number of args passed in registers */
663 Bool has_ret_val:1; /* Function has return value? */
664
665 /* RealReg liveness; only sensical after reg alloc and liveness
666 analysis done. This info is a little bit arch-specific --
667 VG_MAX_REALREGS can vary on different architectures. Note that
668 to use this information requires converting between register ranks
njn4ba5a792002-09-30 10:23:54 +0000669 and the Intel register numbers, using VG_(realreg_to_rank)()
670 and/or VG_(rank_to_realreg)() */
njn25e49d8e72002-09-23 09:36:25 +0000671 RRegSet regs_live_after:VG_MAX_REALREGS;
672 }
673 UInstr;
674
675
676/* Expandable arrays of uinstrs. */
677typedef
678 struct {
679 Int used;
680 Int size;
681 UInstr* instrs;
682 Int nextTemp;
683 }
684 UCodeBlock;
685
686
687/*====================================================================*/
688/*=== Instrumenting UCode ===*/
689/*====================================================================*/
690
691/* A structure for communicating TempReg and RealReg uses of UInstrs. */
692typedef
693 struct {
694 Int num;
695 Bool isWrite;
696 }
697 RegUse;
698
699/* Find what this instruction does to its regs. Tag indicates whether we're
700 * considering TempRegs (pre-reg-alloc) or RealRegs (post-reg-alloc).
701 * Useful for analysis/optimisation passes. */
njn4ba5a792002-09-30 10:23:54 +0000702extern Int VG_(get_reg_usage) ( UInstr* u, Tag tag, RegUse* arr );
njn25e49d8e72002-09-23 09:36:25 +0000703
704
705/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +0000706/* Used to register helper functions to be called from generated code. A
707 limited number of compact helpers can be registered; the code generated
708 to call them is slightly shorter -- so register the mostly frequently
709 called helpers as compact. */
njn25e49d8e72002-09-23 09:36:25 +0000710extern void VG_(register_compact_helper) ( Addr a );
711extern void VG_(register_noncompact_helper) ( Addr a );
712
713
714/* ------------------------------------------------------------------ */
715/* Virtual register allocation */
716
717/* Get a new virtual register */
njn4ba5a792002-09-30 10:23:54 +0000718extern Int VG_(get_new_temp) ( UCodeBlock* cb );
njn25e49d8e72002-09-23 09:36:25 +0000719
720/* Get a new virtual shadow register */
njn4ba5a792002-09-30 10:23:54 +0000721extern Int VG_(get_new_shadow) ( UCodeBlock* cb );
njn25e49d8e72002-09-23 09:36:25 +0000722
723/* Get a virtual register's corresponding virtual shadow register */
724#define SHADOW(tempreg) ((tempreg)+1)
725
726
727/* ------------------------------------------------------------------ */
728/* Low-level UInstr builders */
njn4ba5a792002-09-30 10:23:54 +0000729extern void VG_(new_NOP) ( UInstr* u );
730extern void VG_(new_UInstr0) ( UCodeBlock* cb, Opcode opcode, Int sz );
731extern void VG_(new_UInstr1) ( UCodeBlock* cb, Opcode opcode, Int sz,
njn25e49d8e72002-09-23 09:36:25 +0000732 Tag tag1, UInt val1 );
njn4ba5a792002-09-30 10:23:54 +0000733extern void VG_(new_UInstr2) ( UCodeBlock* cb, Opcode opcode, Int sz,
njn25e49d8e72002-09-23 09:36:25 +0000734 Tag tag1, UInt val1,
735 Tag tag2, UInt val2 );
njn4ba5a792002-09-30 10:23:54 +0000736extern void VG_(new_UInstr3) ( UCodeBlock* cb, Opcode opcode, Int sz,
njn25e49d8e72002-09-23 09:36:25 +0000737 Tag tag1, UInt val1,
738 Tag tag2, UInt val2,
739 Tag tag3, UInt val3 );
njn25e49d8e72002-09-23 09:36:25 +0000740
njn4ba5a792002-09-30 10:23:54 +0000741extern void VG_(set_flag_RW) ( UInstr* u, FlagSet fr, FlagSet fw );
742extern void VG_(set_lit_field) ( UCodeBlock* cb, UInt lit32 );
743extern void VG_(set_ccall_fields) ( UCodeBlock* cb, Addr fn, UChar argc,
744 UChar regparms_n, Bool has_ret_val );
njn25e49d8e72002-09-23 09:36:25 +0000745
njn4ba5a792002-09-30 10:23:54 +0000746extern void VG_(copy_UInstr) ( UCodeBlock* cb, UInstr* instr );
747
748extern Bool VG_(any_flag_use)( UInstr* u );
njn25e49d8e72002-09-23 09:36:25 +0000749
njnac6c1762002-10-04 14:34:15 +0000750/* Macro versions of the above; just shorter to type. */
751#define uInstr0 VG_(new_UInstr0)
752#define uInstr1 VG_(new_UInstr1)
753#define uInstr2 VG_(new_UInstr2)
754#define uInstr3 VG_(new_UInstr3)
755#define uLiteral VG_(set_lit_field)
756#define uCCall VG_(set_ccall_fields)
757#define newTemp VG_(get_new_temp)
758#define newShadow VG_(get_new_shadow)
759
njn25e49d8e72002-09-23 09:36:25 +0000760/* Refer to `the last instruction stuffed in' (can be lvalue). */
761#define LAST_UINSTR(cb) (cb)->instrs[(cb)->used-1]
762
763
764/* ------------------------------------------------------------------ */
765/* Higher-level UInstr sequence builders */
njn4ba5a792002-09-30 10:23:54 +0000766extern void VG_(call_helper_0_0) ( UCodeBlock* cb, Addr f);
767extern void VG_(call_helper_1_0) ( UCodeBlock* cb, Addr f, UInt arg1,
768 UInt regparms_n);
769extern void VG_(call_helper_2_0) ( UCodeBlock* cb, Addr f, UInt arg1, UInt arg2,
770 UInt regparms_n);
njn25e49d8e72002-09-23 09:36:25 +0000771
772/* One way around the 3-arg C function limit is to pass args via global
773 * variables... ugly, but it works. */
njn4ba5a792002-09-30 10:23:54 +0000774extern void VG_(set_global_var) ( UCodeBlock* cb, Addr globvar_ptr, UInt val);
njn25e49d8e72002-09-23 09:36:25 +0000775
776/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +0000777/* Allocating/freeing basic blocks of UCode */
njn4ba5a792002-09-30 10:23:54 +0000778extern UCodeBlock* VG_(alloc_UCodeBlock) ( void );
779extern void VG_(free_UCodeBlock) ( UCodeBlock* cb );
njnd5bb0a52002-09-27 10:24:48 +0000780
781/* ------------------------------------------------------------------ */
782/* UCode pretty/ugly printing. Probably only useful to call from a skin
njn25e49d8e72002-09-23 09:36:25 +0000783 if VG_(needs).extended_UCode == True. */
784
785/* When True, all generated code is/should be printed. */
786extern Bool VG_(print_codegen);
787
njn4ba5a792002-09-30 10:23:54 +0000788/* Pretty/ugly printing functions */
789extern void VG_(pp_UCodeBlock) ( UCodeBlock* cb, Char* title );
790extern void VG_(pp_UInstr) ( Int instrNo, UInstr* u );
791extern void VG_(pp_UInstr_regs) ( Int instrNo, UInstr* u );
792extern void VG_(up_UInstr) ( Int instrNo, UInstr* u );
793extern Char* VG_(name_UOpcode) ( Bool upper, Opcode opc );
794extern void VG_(pp_UOperand) ( UInstr* u, Int operandNo,
795 Int sz, Bool parens );
njn25e49d8e72002-09-23 09:36:25 +0000796
njn25e49d8e72002-09-23 09:36:25 +0000797
798/*====================================================================*/
njnd5bb0a52002-09-27 10:24:48 +0000799/*=== Generating x86 code from UCode ===*/
njn25e49d8e72002-09-23 09:36:25 +0000800/*====================================================================*/
801
njnd5bb0a52002-09-27 10:24:48 +0000802/* All this only necessary for skins with VG_(needs).extends_UCode == True. */
njn25e49d8e72002-09-23 09:36:25 +0000803
sewardje1042472002-09-30 12:33:11 +0000804/* This is the Intel register encoding -- integer regs. */
njn25e49d8e72002-09-23 09:36:25 +0000805#define R_EAX 0
806#define R_ECX 1
807#define R_EDX 2
808#define R_EBX 3
809#define R_ESP 4
810#define R_EBP 5
811#define R_ESI 6
812#define R_EDI 7
813
814#define R_AL (0+R_EAX)
815#define R_CL (0+R_ECX)
816#define R_DL (0+R_EDX)
817#define R_BL (0+R_EBX)
818#define R_AH (4+R_EAX)
819#define R_CH (4+R_ECX)
820#define R_DH (4+R_EDX)
821#define R_BH (4+R_EBX)
822
sewardje1042472002-09-30 12:33:11 +0000823/* This is the Intel register encoding -- segment regs. */
824#define R_ES 0
825#define R_CS 1
826#define R_SS 2
827#define R_DS 3
828#define R_FS 4
829#define R_GS 5
830
njn25e49d8e72002-09-23 09:36:25 +0000831/* For pretty printing x86 code */
sewardje1042472002-09-30 12:33:11 +0000832extern Char* VG_(name_of_seg_reg) ( Int sreg );
njn4ba5a792002-09-30 10:23:54 +0000833extern Char* VG_(name_of_int_reg) ( Int size, Int reg );
834extern Char VG_(name_of_int_size) ( Int size );
njn25e49d8e72002-09-23 09:36:25 +0000835
njnac6c1762002-10-04 14:34:15 +0000836/* Shorter macros for convenience */
837#define nameIReg VG_(name_of_int_reg)
838#define nameISize VG_(name_of_int_size)
839#define nameSReg VG_(name_of_seg_reg)
840
njn25e49d8e72002-09-23 09:36:25 +0000841/* Randomly useful things */
842extern UInt VG_(extend_s_8to32) ( UInt x );
843
844/* Code emitters */
njn4ba5a792002-09-30 10:23:54 +0000845extern void VG_(emitB) ( UInt b );
846extern void VG_(emitW) ( UInt w );
847extern void VG_(emitL) ( UInt l );
848extern void VG_(new_emit) ( void );
njn25e49d8e72002-09-23 09:36:25 +0000849
850/* Finding offsets */
njn4ba5a792002-09-30 10:23:54 +0000851extern Int VG_(helper_offset) ( Addr a );
852extern Int VG_(shadow_reg_offset) ( Int arch );
853extern Int VG_(shadow_flags_offset) ( void );
njn25e49d8e72002-09-23 09:36:25 +0000854
njnd5bb0a52002-09-27 10:24:48 +0000855/* Convert reg ranks <-> Intel register ordering, for using register
856 liveness information. */
njn4ba5a792002-09-30 10:23:54 +0000857extern Int VG_(realreg_to_rank) ( Int realreg );
858extern Int VG_(rank_to_realreg) ( Int rank );
njn25e49d8e72002-09-23 09:36:25 +0000859
njnd5bb0a52002-09-27 10:24:48 +0000860/* Call a subroutine. Does no argument passing, stack manipulations, etc. */
njn4ba5a792002-09-30 10:23:54 +0000861extern void VG_(synth_call) ( Bool ensure_shortform, Int word_offset );
njn25e49d8e72002-09-23 09:36:25 +0000862
njnd5bb0a52002-09-27 10:24:48 +0000863/* For calling C functions -- saves caller save regs, pushes args, calls,
864 clears the stack, restores caller save regs. `fn' must be registered in
865 the baseBlock first. Acceptable tags are RealReg and Literal. Optimises
866 things, eg. by not preserving non-live caller-save registers.
njn25e49d8e72002-09-23 09:36:25 +0000867
njnd5bb0a52002-09-27 10:24:48 +0000868 WARNING: a UInstr should *not* be translated with synth_ccall() followed
869 by some other x86 assembly code; this will invalidate the results of
870 vg_realreg_liveness_analysis() and everything will fall over. */
njn4ba5a792002-09-30 10:23:54 +0000871extern void VG_(synth_ccall) ( Addr fn, Int argc, Int regparms_n, UInt argv[],
872 Tag tagv[], Int ret_reg,
873 RRegSet regs_live_before,
874 RRegSet regs_live_after );
njn25e49d8e72002-09-23 09:36:25 +0000875
876/* Addressing modes */
njn4ba5a792002-09-30 10:23:54 +0000877extern void VG_(emit_amode_offregmem_reg)( Int off, Int regmem, Int reg );
878extern void VG_(emit_amode_ereg_greg) ( Int e_reg, Int g_reg );
njn25e49d8e72002-09-23 09:36:25 +0000879
880/* v-size (4, or 2 with OSO) insn emitters */
njn4ba5a792002-09-30 10:23:54 +0000881extern void VG_(emit_movv_offregmem_reg) ( Int sz, Int off, Int areg, Int reg );
882extern void VG_(emit_movv_reg_offregmem) ( Int sz, Int reg, Int off, Int areg );
883extern void VG_(emit_movv_reg_reg) ( Int sz, Int reg1, Int reg2 );
884extern void VG_(emit_nonshiftopv_lit_reg)( Int sz, Opcode opc, UInt lit,
885 Int reg );
886extern void VG_(emit_shiftopv_lit_reg) ( Int sz, Opcode opc, UInt lit,
887 Int reg );
888extern void VG_(emit_nonshiftopv_reg_reg)( Int sz, Opcode opc,
889 Int reg1, Int reg2 );
890extern void VG_(emit_movv_lit_reg) ( Int sz, UInt lit, Int reg );
891extern void VG_(emit_unaryopv_reg) ( Int sz, Opcode opc, Int reg );
892extern void VG_(emit_pushv_reg) ( Int sz, Int reg );
893extern void VG_(emit_popv_reg) ( Int sz, Int reg );
njn25e49d8e72002-09-23 09:36:25 +0000894
njn4ba5a792002-09-30 10:23:54 +0000895extern void VG_(emit_pushl_lit32) ( UInt int32 );
896extern void VG_(emit_pushl_lit8) ( Int lit8 );
897extern void VG_(emit_cmpl_zero_reg) ( Int reg );
898extern void VG_(emit_swapl_reg_EAX) ( Int reg );
899extern void VG_(emit_movv_lit_offregmem) ( Int sz, UInt lit, Int off,
900 Int memreg );
njn25e49d8e72002-09-23 09:36:25 +0000901
902/* b-size (1 byte) instruction emitters */
njn4ba5a792002-09-30 10:23:54 +0000903extern void VG_(emit_movb_lit_offregmem) ( UInt lit, Int off, Int memreg );
904extern void VG_(emit_movb_reg_offregmem) ( Int reg, Int off, Int areg );
905extern void VG_(emit_unaryopb_reg) ( Opcode opc, Int reg );
906extern void VG_(emit_testb_lit_reg) ( UInt lit, Int reg );
njn25e49d8e72002-09-23 09:36:25 +0000907
908/* zero-extended load emitters */
njn4ba5a792002-09-30 10:23:54 +0000909extern void VG_(emit_movzbl_offregmem_reg) ( Int off, Int regmem, Int reg );
910extern void VG_(emit_movzwl_offregmem_reg) ( Int off, Int areg, Int reg );
njn25e49d8e72002-09-23 09:36:25 +0000911
912/* misc instruction emitters */
njn4ba5a792002-09-30 10:23:54 +0000913extern void VG_(emit_call_reg) ( Int reg );
914extern void VG_(emit_add_lit_to_esp) ( Int lit );
915extern void VG_(emit_jcondshort_delta) ( Condcode cond, Int delta );
916extern void VG_(emit_pushal) ( void );
917extern void VG_(emit_popal) ( void );
918extern void VG_(emit_AMD_prefetch_reg) ( Int reg );
njn25e49d8e72002-09-23 09:36:25 +0000919
920
921/*====================================================================*/
922/*=== Execution contexts ===*/
923/*====================================================================*/
924
925/* Generic resolution type used in a few different ways, such as deciding
926 how closely to compare two errors for equality. */
927typedef
928 enum { Vg_LowRes, Vg_MedRes, Vg_HighRes }
929 VgRes;
930
931typedef
932 struct _ExeContext
933 ExeContext;
934
njnd5bb0a52002-09-27 10:24:48 +0000935/* Compare two ExeContexts. Number of callers considered depends on `res':
936 Vg_LowRes: 2
937 Vg_MedRes: 4
938 Vg_HighRes: all */
njn25e49d8e72002-09-23 09:36:25 +0000939extern Bool VG_(eq_ExeContext) ( VgRes res,
940 ExeContext* e1, ExeContext* e2 );
941
942/* Print an ExeContext. */
943extern void VG_(pp_ExeContext) ( ExeContext* );
944
945/* Take a snapshot of the client's stack. Search our collection of
946 ExeContexts to see if we already have it, and if not, allocate a
947 new one. Either way, return a pointer to the context. */
948extern ExeContext* VG_(get_ExeContext) ( ThreadState *tst );
949
950
951/*====================================================================*/
952/*=== Error reporting ===*/
953/*====================================================================*/
954
955/* ------------------------------------------------------------------ */
956/* Suppressions describe errors which we want to suppress, ie, not
957 show the user, usually because it is caused by a problem in a library
958 which we can't fix, replace or work around. Suppressions are read from
njnd5bb0a52002-09-27 10:24:48 +0000959 a file at startup time. This gives flexibility so that new
njn25e49d8e72002-09-23 09:36:25 +0000960 suppressions can be added to the file as and when needed.
961*/
962
963typedef
964 Int /* Do not make this unsigned! */
965 SuppKind;
966
967/* An extensible (via the 'extra' field) suppression record. This holds
968 the suppression details of interest to a skin. Skins can use a normal
969 enum (with element values in the normal range (0..)) for `skind'.
970
971 If VG_(needs).report_errors==True, for each suppression read in by core
972 SKN_(recognised_suppression)() and SKN_(read_extra_suppression_info) will
973 be called. The `skind' field is filled in by the value returned in the
974 argument of the first function; the second function can fill in the
975 `string' and `extra' fields if it wants.
976*/
977typedef
978 struct {
979 /* What kind of suppression. Must use the range (0..) */
980 SuppKind skind;
981 /* String -- use is optional. NULL by default. */
982 Char* string;
983 /* Anything else -- use is optional. NULL by default. */
984 void* extra;
985 }
986 SkinSupp;
987
988
989/* ------------------------------------------------------------------ */
990/* Error records contain enough info to generate an error report. The idea
991 is that (typically) the same few points in the program generate thousands
njnd5bb0a52002-09-27 10:24:48 +0000992 of errors, and we don't want to spew out a fresh error message for each
993 one. Instead, we use these structures to common up duplicates.
njn25e49d8e72002-09-23 09:36:25 +0000994*/
995
996typedef
997 Int /* Do not make this unsigned! */
998 ErrorKind;
999
1000/* An extensible (via the 'extra' field) error record. This holds
1001 the error details of interest to a skin. Skins can use a normal
1002 enum (with element values in the normal range (0..)) for `ekind'.
1003
1004 When errors are found and recorded with VG_(maybe_record_error)(), all
1005 the skin must do is pass in the four parameters; core will
1006 allocate/initialise the error record.
1007*/
1008typedef
1009 struct {
1010 /* Used by ALL. Must be in the range (0..) */
1011 Int ekind;
1012 /* Used frequently */
1013 Addr addr;
1014 /* Used frequently */
1015 Char* string;
njnd5bb0a52002-09-27 10:24:48 +00001016 /* For any skin-specific extras */
njn25e49d8e72002-09-23 09:36:25 +00001017 void* extra;
1018 }
1019 SkinError;
1020
1021
1022/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +00001023/* Call this when an error occurs. It will be recorded if it hasn't been
njn25e49d8e72002-09-23 09:36:25 +00001024 seen before. If it has, the existing error record will have its count
1025 incremented.
1026
1027 If the error occurs in generated code, 'tst' should be NULL. If the
1028 error occurs in non-generated code, 'tst' should be non-NULL. The
1029 `extra' field can be stack-allocated; it will be copied (using
1030 SKN_(dup_extra_and_update)()) if needed. But it won't be copied
1031 if it's NULL.
njnd5bb0a52002-09-27 10:24:48 +00001032
1033 If no 'a', 's' or 'extra' of interest needs to be recorded, just use
1034 NULL for them.
njn25e49d8e72002-09-23 09:36:25 +00001035*/
1036extern void VG_(maybe_record_error) ( ThreadState* tst, ErrorKind ekind,
1037 Addr a, Char* s, void* extra );
1038
1039/* Gets a non-blank, non-comment line of at most nBuf chars from fd.
1040 Skips leading spaces on the line. Returns True if EOF was hit instead.
1041 Useful for reading in extra skin-specific suppression lines.
1042*/
njn4ba5a792002-09-30 10:23:54 +00001043extern Bool VG_(get_line) ( Int fd, Char* buf, Int nBuf );
njn25e49d8e72002-09-23 09:36:25 +00001044
1045
1046/*====================================================================*/
1047/*=== Obtaining debug information ===*/
1048/*====================================================================*/
1049
1050/* Get the file/function/line number of the instruction at address 'a'.
1051 For these four, if debug info for the address is found, it copies the
1052 info into the buffer/UInt and returns True. If not, it returns False and
1053 nothing is copied. VG_(get_fnname) always demangles C++ function names.
1054*/
1055extern Bool VG_(get_filename) ( Addr a, Char* filename, Int n_filename );
1056extern Bool VG_(get_fnname) ( Addr a, Char* fnname, Int n_fnname );
1057extern Bool VG_(get_linenum) ( Addr a, UInt* linenum );
1058
1059/* This one is more efficient if getting both filename and line number,
1060 because the two lookups are done together. */
1061extern Bool VG_(get_filename_linenum)
1062 ( Addr a, Char* filename, Int n_filename,
1063 UInt* linenum );
1064
1065/* Succeeds only if we find from debug info that 'a' is the address of the
1066 first instruction in a function -- as opposed to VG_(get_fnname) which
1067 succeeds if we find from debug info that 'a' is the address of any
1068 instruction in a function. Use this to instrument the start of
njnd5bb0a52002-09-27 10:24:48 +00001069 a particular function. Nb: if an executable/shared object is stripped
njn25e49d8e72002-09-23 09:36:25 +00001070 of its symbols, this function will not be able to recognise function
1071 entry points within it. */
1072extern Bool VG_(get_fnname_if_entry) ( Addr a, Char* filename, Int n_filename );
1073
1074/* Succeeds if the address is within a shared object or the main executable.
1075 It doesn't matter if debug info is present or not. */
1076extern Bool VG_(get_objname) ( Addr a, Char* objname, Int n_objname );
1077
sewardj47104382002-10-20 18:35:48 +00001078/* A way to get information about what segments are mapped */
1079typedef struct _SegInfo SegInfo;
1080
1081extern const SegInfo* VG_(next_seginfo)(const SegInfo *);
1082extern Addr VG_(seg_start)(const SegInfo *);
1083extern UInt VG_(seg_size)(const SegInfo *);
1084extern const UChar* VG_(seg_filename)(const SegInfo *);
1085extern UInt VG_(seg_sym_offset)(const SegInfo *);
1086
1087typedef
1088 enum {
1089 Vg_SectUnknown,
1090 Vg_SectText,
sewardj8fe15a32002-10-20 19:29:21 +00001091 Vg_SectData,
1092 Vg_SectBSS,
sewardj47104382002-10-20 18:35:48 +00001093 Vg_SectGOT,
sewardj8fe15a32002-10-20 19:29:21 +00001094 Vg_SectPLT,
sewardj47104382002-10-20 18:35:48 +00001095 }
1096 VgSectKind;
1097
1098extern VgSectKind VG_(seg_sect_kind)(Addr);
1099
njn25e49d8e72002-09-23 09:36:25 +00001100
1101/*====================================================================*/
1102/*=== Shadow chunks and block-finding ===*/
1103/*====================================================================*/
1104
1105typedef
1106 enum {
1107 Vg_AllocMalloc = 0,
1108 Vg_AllocNew = 1,
1109 Vg_AllocNewVec = 2
1110 }
1111 VgAllocKind;
1112
1113/* Description of a malloc'd chunk. skin_extra[] part can be used by
1114 the skin; size of array is given by VG_(needs).sizeof_shadow_chunk. */
1115typedef
1116 struct _ShadowChunk {
1117 struct _ShadowChunk* next;
1118 UInt size : 30; /* size requested */
1119 VgAllocKind allockind : 2; /* which wrapper did the allocation */
1120 Addr data; /* ptr to actual block */
1121 UInt skin_extra[0]; /* extra skin-specific info */
1122 }
1123 ShadowChunk;
1124
1125/* Use this to free blocks if VG_(needs).alternative_free == True.
1126 It frees the ShadowChunk and the malloc'd block it points to. */
njn4ba5a792002-09-30 10:23:54 +00001127extern void VG_(free_ShadowChunk) ( ShadowChunk* sc );
njn25e49d8e72002-09-23 09:36:25 +00001128
1129/* Makes an array of pointers to all the shadow chunks of malloc'd blocks */
1130extern ShadowChunk** VG_(get_malloc_shadows) ( /*OUT*/ UInt* n_shadows );
1131
1132/* Determines if address 'a' is within the bounds of the block at start.
1133 Allows a little 'slop' round the edges. */
1134extern Bool VG_(addr_is_in_block) ( Addr a, Addr start, UInt size );
1135
1136/* Searches through currently malloc'd blocks until a matching one is found.
1137 Returns NULL if none match. Extra arguments can be implicitly passed to
njnd5bb0a52002-09-27 10:24:48 +00001138 p using nested functions; see memcheck/mc_errcontext.c for an example. */
njn25e49d8e72002-09-23 09:36:25 +00001139extern ShadowChunk* VG_(any_matching_mallocd_ShadowChunks)
1140 ( Bool (*p) ( ShadowChunk* ));
1141
1142/* Searches through all thread's stacks to see if any match. Returns
1143 * VG_INVALID_THREADID if none match. */
1144extern ThreadId VG_(any_matching_thread_stack)
1145 ( Bool (*p) ( Addr stack_min, Addr stack_max ));
1146
sewardja4495682002-10-21 07:29:59 +00001147/* Do memory leak detection. */
1148extern void VG_(generic_detect_memory_leaks) (
1149 Bool is_valid_64k_chunk ( UInt ),
1150 Bool is_valid_address ( Addr ),
1151 ExeContext* get_where ( ShadowChunk* ),
1152 VgRes leak_resolution,
1153 Bool show_reachable
1154 );
1155
1156
njn25e49d8e72002-09-23 09:36:25 +00001157/*====================================================================*/
1158/*=== Skin-specific stuff ===*/
1159/*====================================================================*/
1160
njnd04b7c62002-10-03 14:05:52 +00001161/* ------------------------------------------------------------------ */
1162/* Details */
1163typedef
1164 struct {
1165 /* Information used in the startup message. `name' also determines the
1166 string used for identifying suppressions in a suppression file as
1167 belonging to this skin. `version' can be NULL, in which case (not
1168 surprisingly) no version info is printed; this mechanism is
1169 designed for skins distributed with Valgrind that share a version
1170 number with Valgrind. Other skins not distributed as part of
1171 Valgrind should probably have their own version number. */
1172 Char* name;
1173 Char* version;
1174 Char* description;
1175 Char* copyright_author;
1176
1177 /* String printed if an `sk_assert' assertion fails or VG_(skin_panic)
1178 is called. Should probably be an email address. */
1179 Char* bug_reports_to;
1180 }
1181 VgDetails;
1182
1183extern VgDetails VG_(details);
1184
1185/* ------------------------------------------------------------------ */
1186/* Needs */
1187
1188/* If new fields are added to this type, update:
njnd5bb0a52002-09-27 10:24:48 +00001189 * - vg_main.c:initialisation of VG_(needs)
njn25e49d8e72002-09-23 09:36:25 +00001190 * - vg_main.c:sanity_check_needs()
1191 *
1192 * If the name of this type or any of its fields change, update:
1193 * - dependent comments (just search for "VG_(needs)").
1194 */
1195typedef
1196 struct {
njnd5bb0a52002-09-27 10:24:48 +00001197 /* Booleans that decide core behaviour, but don't require extra
1198 operations to be defined if `True' */
1199
1200 /* Should __libc_freeres() be run? Bugs in it can crash the skin. */
njnd04b7c62002-10-03 14:05:52 +00001201 Bool libc_freeres;
njn25e49d8e72002-09-23 09:36:25 +00001202
1203 /* Want to have errors detected by Valgrind's core reported? Includes:
1204 - pthread API errors (many; eg. unlocking a non-locked mutex)
1205 - silly arguments to malloc() et al (eg. negative size)
1206 - invalid file descriptors to blocking syscalls read() and write()
1207 - bad signal numbers passed to sigaction()
1208 - attempt to install signal handler for SIGKILL or SIGSTOP */
1209 Bool core_errors;
njn25e49d8e72002-09-23 09:36:25 +00001210
1211 /* Booleans that indicate extra operations are defined; if these are
1212 True, the corresponding template functions (given below) must be
1213 defined. A lot like being a member of a type class. */
1214
njnd5bb0a52002-09-27 10:24:48 +00001215 /* Want to report errors from the skin? This implies use of
1216 suppressions, too. */
1217 Bool skin_errors;
1218
njn25e49d8e72002-09-23 09:36:25 +00001219 /* Is information kept about specific individual basic blocks? (Eg. for
njnd5bb0a52002-09-27 10:24:48 +00001220 cachegrind there are cost-centres for every instruction, stored at a
njn25e49d8e72002-09-23 09:36:25 +00001221 basic block level.) If so, it sometimes has to be discarded, because
1222 .so mmap/munmap-ping or self-modifying code (informed by the
1223 DISCARD_TRANSLATIONS user request) can cause one instruction address
njnd5bb0a52002-09-27 10:24:48 +00001224 to be used for more than one instruction in one program run... */
njn25e49d8e72002-09-23 09:36:25 +00001225 Bool basic_block_discards;
1226
njnd5bb0a52002-09-27 10:24:48 +00001227 /* Skin maintains information about each register? */
njn25e49d8e72002-09-23 09:36:25 +00001228 Bool shadow_regs;
1229
1230 /* Skin defines its own command line options? */
1231 Bool command_line_options;
1232 /* Skin defines its own client requests? */
1233 Bool client_requests;
1234
1235 /* Skin defines its own UInstrs? */
1236 Bool extended_UCode;
1237
1238 /* Skin does stuff before and/or after system calls? */
1239 Bool syscall_wrapper;
1240
1241 /* Size, in words, of extra info about malloc'd blocks recorded by
1242 skin. Be careful to get this right or you'll get seg faults! */
1243 UInt sizeof_shadow_block;
1244
1245 /* Skin does free()s itself? */
1246 Bool alternative_free;
1247
1248 /* Are skin-state sanity checks performed? */
1249 Bool sanity_checks;
sewardj8fe15a32002-10-20 19:29:21 +00001250
1251 /* Do we need to see data symbols? */
1252 Bool data_syms;
njn25e49d8e72002-09-23 09:36:25 +00001253 }
1254 VgNeeds;
1255
1256extern VgNeeds VG_(needs);
1257
1258
1259/* ------------------------------------------------------------------ */
1260/* Core events to track */
1261
1262/* Part of the core from which this call was made. Useful for determining
njnd5bb0a52002-09-27 10:24:48 +00001263 what kind of error message should be emitted. */
njn25e49d8e72002-09-23 09:36:25 +00001264typedef
1265 enum { Vg_CorePThread, Vg_CoreSignal, Vg_CoreSysCall, Vg_CoreTranslate }
1266 CorePart;
1267
1268/* Events happening in core to track. To be notified, assign a function
njnd5bb0a52002-09-27 10:24:48 +00001269 to the function pointer. To ignore an event, don't do anything
1270 (default assignment is to NULL in which case the call is skipped). */
njn25e49d8e72002-09-23 09:36:25 +00001271typedef
1272 struct {
1273 /* Memory events */
1274 void (*new_mem_startup)( Addr a, UInt len, Bool rr, Bool ww, Bool xx );
1275 void (*new_mem_heap) ( Addr a, UInt len, Bool is_inited );
1276 void (*new_mem_stack) ( Addr a, UInt len );
1277 void (*new_mem_stack_aligned) ( Addr a, UInt len );
1278 void (*new_mem_stack_signal) ( Addr a, UInt len );
1279 void (*new_mem_brk) ( Addr a, UInt len );
1280 void (*new_mem_mmap) ( Addr a, UInt len,
1281 Bool nn, Bool rr, Bool ww, Bool xx );
1282
1283 void (*copy_mem_heap) ( Addr from, Addr to, UInt len );
1284 void (*copy_mem_remap) ( Addr from, Addr to, UInt len );
1285 void (*change_mem_mprotect) ( Addr a, UInt len,
1286 Bool nn, Bool rr, Bool ww, Bool xx );
1287
njnd5bb0a52002-09-27 10:24:48 +00001288 /* Used on redzones around malloc'd blocks and at end of stack */
njn25e49d8e72002-09-23 09:36:25 +00001289 void (*ban_mem_heap) ( Addr a, UInt len );
1290 void (*ban_mem_stack) ( Addr a, UInt len );
1291
1292 void (*die_mem_heap) ( Addr a, UInt len );
1293 void (*die_mem_stack) ( Addr a, UInt len );
1294 void (*die_mem_stack_aligned) ( Addr a, UInt len );
1295 void (*die_mem_stack_signal) ( Addr a, UInt len );
1296 void (*die_mem_brk) ( Addr a, UInt len );
1297 void (*die_mem_munmap) ( Addr a, UInt len );
1298
1299 void (*bad_free) ( ThreadState* tst, Addr a );
1300 void (*mismatched_free) ( ThreadState* tst, Addr a );
1301
1302 void (*pre_mem_read) ( CorePart part, ThreadState* tst,
1303 Char* s, Addr a, UInt size );
1304 void (*pre_mem_read_asciiz) ( CorePart part, ThreadState* tst,
1305 Char* s, Addr a );
1306 void (*pre_mem_write) ( CorePart part, ThreadState* tst,
1307 Char* s, Addr a, UInt size );
1308 /* Not implemented yet -- have to add in lots of places, which is a
1309 pain. Won't bother unless/until there's a need. */
1310 /* void (*post_mem_read) ( ThreadState* tst, Char* s,
1311 Addr a, UInt size ); */
1312 void (*post_mem_write) ( Addr a, UInt size );
1313
1314
njnd5bb0a52002-09-27 10:24:48 +00001315 /* Scheduler events (not exhaustive) */
njn25e49d8e72002-09-23 09:36:25 +00001316 void (*thread_run) ( ThreadId tid );
1317
1318
njnd5bb0a52002-09-27 10:24:48 +00001319 /* Mutex events (not exhaustive) */
njn25e49d8e72002-09-23 09:36:25 +00001320 void (*post_mutex_lock) ( ThreadId tid,
1321 void* /*pthread_mutex_t* */ mutex );
1322 void (*post_mutex_unlock) ( ThreadId tid,
1323 void* /*pthread_mutex_t* */ mutex );
njn25e49d8e72002-09-23 09:36:25 +00001324
njnd5bb0a52002-09-27 10:24:48 +00001325
1326 /* Others... thread, condition variable, signal events... */
njn25e49d8e72002-09-23 09:36:25 +00001327 /* ... */
1328 }
1329 VgTrackEvents;
1330
1331/* Declare the struct instance */
1332extern VgTrackEvents VG_(track_events);
1333
1334
1335/* ------------------------------------------------------------------ */
1336/* Template functions */
1337
1338/* These are the parameterised functions in the core. The default definitions
njnd5bb0a52002-09-27 10:24:48 +00001339 are overridden by LD_PRELOADed skin version. At the very least, a skin
1340 must define the fundamental template functions. Depending on what needs
1341 are set, extra template functions will be used too. Functions are
1342 grouped under the needs that govern their use. */
njn25e49d8e72002-09-23 09:36:25 +00001343
1344
1345/* ------------------------------------------------------------------ */
1346/* Fundamental template functions */
1347
1348/* Initialise skin. Must do the following:
njnd04b7c62002-10-03 14:05:52 +00001349 - initialise the `details' struct
njn25e49d8e72002-09-23 09:36:25 +00001350 - register any helpers called by generated code
1351
1352 May do the following:
njnd04b7c62002-10-03 14:05:52 +00001353 - initialise the `needs' struct to indicate certain requirements
1354 - initialise the `track' struct to indicate core events of interest
njn25e49d8e72002-09-23 09:36:25 +00001355 - register any skin-specific profiling events
1356 - any other skin-specific initialisation
1357*/
njnd04b7c62002-10-03 14:05:52 +00001358extern void SK_(pre_clo_init) ( VgDetails* details, VgNeeds* needs,
1359 VgTrackEvents* track );
njn25e49d8e72002-09-23 09:36:25 +00001360
njnd5bb0a52002-09-27 10:24:48 +00001361/* Do initialisation that can only be done after command line processing. */
njn25e49d8e72002-09-23 09:36:25 +00001362extern void SK_(post_clo_init)( void );
1363
1364/* Instrument a basic block. Must be a true function, ie. the same input
1365 always results in the same output, because basic blocks can be
1366 retranslated. Unless you're doing something really strange...
1367 'orig_addr' is the address of the first instruction in the block. */
1368extern UCodeBlock* SK_(instrument) ( UCodeBlock* cb, Addr orig_addr );
1369
1370/* Finish up, print out any results, etc. */
1371extern void SK_(fini) ( void );
1372
1373
1374/* ------------------------------------------------------------------ */
1375/* VG_(needs).report_errors */
1376
1377/* Identify if two errors are equal, or equal enough. `res' indicates how
1378 close is "close enough". `res' should be passed on as necessary, eg. if
1379 the SkinError's extra field contains an ExeContext, `res' should be
1380 passed to VG_(eq_ExeContext)() if the ExeContexts are considered. Other
1381 than that, probably don't worry about it unless you have lots of very
1382 similar errors occurring.
1383 */
1384extern Bool SK_(eq_SkinError) ( VgRes res,
1385 SkinError* e1, SkinError* e2 );
1386
1387/* Print error context. The passed function pp_ExeContext() can be (and
1388 probably should be) used to print the location of the error. */
1389extern void SK_(pp_SkinError) ( SkinError* ec, void (*pp_ExeContext)(void) );
1390
1391/* Copy the ec->extra part and replace ec->extra with the new copy. This is
1392 necessary to move from a temporary stack copy to a permanent heap one.
1393
1394 Then fill in any details that could be postponed until after the decision
1395 whether to ignore the error (ie. details not affecting the result of
1396 SK_(eq_SkinError)()). This saves time when errors are ignored.
1397
1398 Yuk.
1399*/
1400extern void SK_(dup_extra_and_update)(SkinError* ec);
1401
1402/* Return value indicates recognition. If recognised, type goes in `skind'. */
1403extern Bool SK_(recognised_suppression) ( Char* name, SuppKind *skind );
1404
1405/* Read any extra info for this suppression kind. For filling up the
1406 `string' and `extra' fields in a `SkinSupp' struct if necessary. */
1407extern Bool SK_(read_extra_suppression_info) ( Int fd, Char* buf,
njnd5bb0a52002-09-27 10:24:48 +00001408 Int nBuf, SkinSupp *s );
njn25e49d8e72002-09-23 09:36:25 +00001409
1410/* This should just check the kinds match and maybe some stuff in the
1411 'extra' field if appropriate */
1412extern Bool SK_(error_matches_suppression)(SkinError* ec, SkinSupp* su);
1413
1414
1415/* ------------------------------------------------------------------ */
1416/* VG_(needs).basic_block_discards */
1417
njnd5bb0a52002-09-27 10:24:48 +00001418/* Should discard any information that pertains to specific basic blocks
1419 or instructions within the address range given. */
njn25e49d8e72002-09-23 09:36:25 +00001420extern void SK_(discard_basic_block_info) ( Addr a, UInt size );
1421
1422
1423/* ------------------------------------------------------------------ */
1424/* VG_(needs).shadow_regs */
1425
1426/* Valid values for general registers and EFLAGS register, for initialising
1427 and updating registers when written in certain places in core. */
1428extern void SK_(written_shadow_regs_values) ( UInt* gen_reg, UInt* eflags );
1429
1430
1431/* ------------------------------------------------------------------ */
1432/* VG_(needs).command_line_options */
1433
njnd5bb0a52002-09-27 10:24:48 +00001434/* Return True if option was recognised. Presumably sets some state to
1435 record the option as well. */
1436extern Bool SK_(process_cmd_line_option) ( Char* argv );
njn25e49d8e72002-09-23 09:36:25 +00001437
1438/* Print out command line usage for skin options */
1439extern Char* SK_(usage) ( void );
1440
1441
1442/* ------------------------------------------------------------------ */
1443/* VG_(needs).client_requests */
1444
sewardj34042512002-10-22 04:14:35 +00001445extern Bool SK_(handle_client_request) ( ThreadState* tst, UInt* arg_block, UInt *ret );
njn25e49d8e72002-09-23 09:36:25 +00001446
1447
1448/* ------------------------------------------------------------------ */
1449/* VG_(needs).extends_UCode */
1450
njn4ba5a792002-09-30 10:23:54 +00001451/* Useful to use in VG_(get_Xreg_usage)() */
njnd5bb0a52002-09-27 10:24:48 +00001452#define VG_UINSTR_READS_REG(ono) \
njn25e49d8e72002-09-23 09:36:25 +00001453 { if (mycat(u->tag,ono) == tag) \
1454 { arr[n].num = mycat(u->val,ono); \
1455 arr[n].isWrite = False; \
1456 n++; \
1457 } \
1458 }
njnd5bb0a52002-09-27 10:24:48 +00001459#define VG_UINSTR_WRITES_REG(ono) \
1460 { if (mycat(u->tag,ono) == tag) \
1461 { arr[n].num = mycat(u->val,ono); \
1462 arr[n].isWrite = True; \
1463 n++; \
1464 } \
njn25e49d8e72002-09-23 09:36:25 +00001465 }
1466
njn4ba5a792002-09-30 10:23:54 +00001467/* 'X' prefix indicates eXtended UCode. */
1468extern Int SK_(get_Xreg_usage) ( UInstr* u, Tag tag, RegUse* arr );
1469extern void SK_(emit_XUInstr) ( UInstr* u, RRegSet regs_live_before );
1470extern Bool SK_(sane_XUInstr) ( Bool beforeRA, Bool beforeLiveness,
njn25e49d8e72002-09-23 09:36:25 +00001471 UInstr* u );
njn4ba5a792002-09-30 10:23:54 +00001472extern Char* SK_(name_XUOpcode) ( Opcode opc );
1473extern void SK_(pp_XUInstr) ( UInstr* u );
njn25e49d8e72002-09-23 09:36:25 +00001474
1475
1476/* ------------------------------------------------------------------ */
1477/* VG_(needs).syscall_wrapper */
1478
1479/* If either of the pre_ functions malloc() something to return, the
1480 * corresponding post_ function had better free() it!
1481 */
1482extern void* SK_( pre_syscall) ( ThreadId tid, UInt syscallno,
1483 Bool is_blocking );
1484extern void SK_(post_syscall) ( ThreadId tid, UInt syscallno,
1485 void* pre_result, Int res,
1486 Bool is_blocking );
1487
njnd5bb0a52002-09-27 10:24:48 +00001488
njn25e49d8e72002-09-23 09:36:25 +00001489/* ------------------------------------------------------------------ */
njnd5bb0a52002-09-27 10:24:48 +00001490/* VG_(needs).sizeof_shadow_chunk (if > 0) */
njn25e49d8e72002-09-23 09:36:25 +00001491
1492extern void SK_(complete_shadow_chunk) ( ShadowChunk* sc, ThreadState* tst );
1493
1494
1495/* ------------------------------------------------------------------ */
1496/* VG_(needs).alternative_free */
1497
1498extern void SK_(alt_free) ( ShadowChunk* sc, ThreadState* tst );
1499
njnd5bb0a52002-09-27 10:24:48 +00001500
njn25e49d8e72002-09-23 09:36:25 +00001501/* ---------------------------------------------------------------------
1502 VG_(needs).sanity_checks */
1503
njnd5bb0a52002-09-27 10:24:48 +00001504/* Can be useful for ensuring a skin's correctness. SK_(cheap_sanity_check)
1505 is called very frequently; SK_(expensive_sanity_check) is called less
1506 frequently and can be more involved. */
njn25e49d8e72002-09-23 09:36:25 +00001507extern Bool SK_(cheap_sanity_check) ( void );
1508extern Bool SK_(expensive_sanity_check) ( void );
1509
1510
1511#endif /* NDEF __VG_SKIN_H */
1512
1513/*--------------------------------------------------------------------*/
1514/*--- end vg_skin.h ---*/
1515/*--------------------------------------------------------------------*/
1516