blob: ea7694417a662b70eeaeb362f27702df1d8f1860 [file] [log] [blame]
njna7598f62005-06-18 03:27:58 +00001
2/*--------------------------------------------------------------------*/
3/*--- The trampoline code page. pub_core_trampoline.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj4d474d02008-02-11 11:34:59 +000010 Copyright (C) 2000-2008 Julian Seward
njna7598f62005-06-18 03:27:58 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_TRAMPOLINE_H
32#define __PUB_CORE_TRAMPOLINE_H
33
34//--------------------------------------------------------------------
sewardjb9bce632005-06-21 01:41:34 +000035// PURPOSE: This module defines a few replacement functions for Linux
36// vsyscalls, which we can't implement directly. It also contains
37// stubs for signal returns. Note, all the code within runs on the
38// simulated CPU. The vsyscall stubs are gotten to by use of the
39// redirect mechanism.
sewardja672ea32006-04-29 18:03:14 +000040//
41// Note: generally, putting replacement functions in here is a bad
42// idea, since any Dwarf frame-unwind info attached to them will not
43// be seen by the unwinder in gcc's runtime support. This means
44// unwinding during exception handling by gcc tends to fail if it
45// encounters one of these replacement functions. A better place to
46// put them is in one of the .so's preloaded into the client, since
47// the client's ld.so will know about it and so gcc's unwinder
48// (somehow) is able to get hold of it.
njna7598f62005-06-18 03:27:58 +000049//--------------------------------------------------------------------
50
sewardjb9bce632005-06-21 01:41:34 +000051/* These two delimit our handwritten assembly code, so we can tell
52 tools which track memory that this area should be regarded as
53 readable, at least. Otherwise Memcheck complains we're jumping to
54 invalid addresses. */
njn7d2a9c42005-06-19 21:49:28 +000055
sewardjb9bce632005-06-21 01:41:34 +000056extern void VG_(trampoline_stuff_start);
57extern void VG_(trampoline_stuff_end);
njna7598f62005-06-18 03:27:58 +000058
sewardjb9bce632005-06-21 01:41:34 +000059#if defined(VGP_x86_linux)
60extern void VG_(x86_linux_SUBST_FOR_sigreturn);
61extern void VG_(x86_linux_SUBST_FOR_rt_sigreturn);
sewardj6a443b22005-11-20 19:37:54 +000062extern Char* VG_(x86_linux_REDIR_FOR_index) ( const Char*, Int );
sewardjb9bce632005-06-21 01:41:34 +000063#endif
njna7598f62005-06-18 03:27:58 +000064
sewardjb9bce632005-06-21 01:41:34 +000065#if defined(VGP_amd64_linux)
66extern void VG_(amd64_linux_SUBST_FOR_rt_sigreturn);
67extern void VG_(amd64_linux_REDIR_FOR_vgettimeofday);
68extern void VG_(amd64_linux_REDIR_FOR_vtime);
69#endif
sewardjad50be32005-08-18 11:54:30 +000070
71#if defined(VGP_ppc32_linux)
sewardja5940262007-09-10 16:28:38 +000072extern void VG_(ppc32_linux_SUBST_FOR_sigreturn);
73extern void VG_(ppc32_linux_SUBST_FOR_rt_sigreturn);
sewardj31d83422005-10-15 02:00:41 +000074extern UInt VG_(ppc32_linux_REDIR_FOR_strlen)( void* );
75extern UInt VG_(ppc32_linux_REDIR_FOR_strcmp)( void*, void* );
76extern void* VG_(ppc32_linux_REDIR_FOR_strchr)( void*, Int );
sewardjad50be32005-08-18 11:54:30 +000077#endif
sewardjf0915fc2006-01-05 14:07:04 +000078
79#if defined(VGP_ppc64_linux)
sewardj53092c62007-09-10 16:52:09 +000080extern void VG_(ppc64_linux_SUBST_FOR_rt_sigreturn);
sewardjf0915fc2006-01-05 14:07:04 +000081extern UInt VG_(ppc64_linux_REDIR_FOR_strlen)( void* );
sewardj1a85f4f2006-01-12 21:15:35 +000082extern void* VG_(ppc64_linux_REDIR_FOR_strchr)( void*, Int );
sewardj658f05a2006-01-17 02:21:09 +000083/* A label (sans dot) marking the ultra-magical return stub via which
84 all redirected and wrapped functions are made to "return" on
sewardjf832bb92006-10-17 01:54:54 +000085 ppc64-linux/ppc64-aix5/ppc32-aix5. The one insn at this label is
86 never really translated. Instead, m_translate generates IR to
87 restore the thread's LR and R2 registers from a small stack in the
88 ppc64 guest state structure, and then branch to LR. Convoluted?
89 Confusing? You betcha. Could I think of anything simpler? No. */
90extern void VG_(ppctoc_magic_redirect_return_stub);
91#endif
92
93#if defined(VGP_ppc32_aix5)
94/* A label (sans dot) marking the client start point for ppc32_aix5.
95 This function is entered with r3 holding a pointer to the
96 AIX5PreloadPage struct set up by m_initimg. It first tries to
97 __loadx the _core.so and _tool.so preloads mentioned in the struct;
98 then it cleans up the register state to be more what it really
99 should be at client startup, and finally it jumps to the client's
100 real entry point. */
101extern void VG_(ppc32_aix5_do_preloads_then_start_client);
102
103/* See comment for VG_(ppctoc_magic_redirect_return_stub) above. */
104extern void VG_(ppctoc_magic_redirect_return_stub);
105#endif
106
107#if defined(VGP_ppc64_aix5)
108/* See comment for VG_(ppctoc_magic_redirect_return_stub) above. */
109extern void VG_(ppctoc_magic_redirect_return_stub);
110
111/* See comment for ppc32_aix5 equivalent above. */
112extern void VG_(ppc64_aix5_do_preloads_then_start_client);
sewardjf0915fc2006-01-05 14:07:04 +0000113#endif
njna7598f62005-06-18 03:27:58 +0000114
115#endif // __PUB_CORE_TRAMPOLINE_H
116
117/*--------------------------------------------------------------------*/
118/*--- end ---*/
119/*--------------------------------------------------------------------*/