blob: dc349a40be78631ac3af68752ff4bf5ded689b1f [file] [log] [blame]
njn12771092005-06-18 02:18:04 +00001
2/*--------------------------------------------------------------------*/
njn93fe3b22005-12-21 20:22:52 +00003/*--- Internal client requests. pub_core_clreq.h ---*/
njn12771092005-06-18 02:18:04 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj9eecbbb2010-05-03 21:37:12 +000010 Copyright (C) 2000-2010 Julian Seward
njn12771092005-06-18 02:18:04 +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
njn93fe3b22005-12-21 20:22:52 +000031#ifndef __PUB_CORE_CLREQ_H
32#define __PUB_CORE_CLREQ_H
njn12771092005-06-18 02:18:04 +000033
34//--------------------------------------------------------------------
njn93fe3b22005-12-21 20:22:52 +000035// PURPOSE: This module defined client requests.
njn12771092005-06-18 02:18:04 +000036//--------------------------------------------------------------------
37
njn93fe3b22005-12-21 20:22:52 +000038#include "pub_tool_clreq.h"
njn12771092005-06-18 02:18:04 +000039
40// The strange choice of values here is due to historical reasons -- there
41// used to be many more internal client requests.
42typedef
43 enum {
44 /* Denote the finish of __libc_freeres_wrapper(). Also causes exit. */
45 VG_USERREQ__LIBC_FREERES_DONE = 0x3029,
46
47 /* Get the tool's malloc-wrapping functions */
48 VG_USERREQ__GET_MALLOCFUNCS = 0x3030,
49
sewardjc560fb32010-01-28 15:23:54 +000050 /* Internal equivalent of VALGRIND_PRINTF_VALIST_BY_REF . */
51 VG_USERREQ__INTERNAL_PRINTF_VALIST_BY_REF = 0x3103,
njn12771092005-06-18 02:18:04 +000052
tomd2645142009-10-29 09:27:11 +000053 /* Add a target for an indirect function redirection. */
54 VG_USERREQ__ADD_IFUNC_TARGET = 0x3104,
55
njn12771092005-06-18 02:18:04 +000056 } Vg_InternalClientRequest;
57
58// Function for printing from code within Valgrind, but which runs on the
59// sim'd CPU. Must be a function rather than macros so that va_list can
60// be used.
61
njn325bf102009-05-21 04:10:38 +000062static int VALGRIND_INTERNAL_PRINTF(const char *format, ...)
63 __attribute__((format(__printf__, 1, 2), __unused__));
64static int VALGRIND_INTERNAL_PRINTF(const char *format, ...)
njn12771092005-06-18 02:18:04 +000065{
66 unsigned long _qzz_res = 0;
sewardjc560fb32010-01-28 15:23:54 +000067 va_list vargs;
68 va_start(vargs, format);
sewardj0ec07f32006-01-12 12:32:32 +000069 VALGRIND_DO_CLIENT_REQUEST(
sewardjc560fb32010-01-28 15:23:54 +000070 _qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF_VALIST_BY_REF,
71 (unsigned long)format, (unsigned long)&vargs, 0, 0, 0
sewardj0ec07f32006-01-12 12:32:32 +000072 );
sewardjc560fb32010-01-28 15:23:54 +000073 va_end(vargs);
njn12771092005-06-18 02:18:04 +000074 return _qzz_res;
75}
76
77
njn93fe3b22005-12-21 20:22:52 +000078#endif // __PUB_CORE_CLREQ_H
njn12771092005-06-18 02:18:04 +000079
80/*--------------------------------------------------------------------*/
81/*--- end ---*/
82/*--------------------------------------------------------------------*/