blob: a7283dcf1e21a537af9436cba4b84092ca6e4f2f [file] [log] [blame]
njn25e49d8e72002-09-23 09:36:25 +00001
2/*--------------------------------------------------------------------*/
njnc9539842002-10-02 13:26:35 +00003/*--- Nulgrind: The null skin. nl_main.c ---*/
njn25e49d8e72002-09-23 09:36:25 +00004/*--------------------------------------------------------------------*/
5
6/*
njnc9539842002-10-02 13:26:35 +00007 This file is part of Nulgrind, the simplest possible Valgrind skin,
8 which does nothing.
njn25e49d8e72002-09-23 09:36:25 +00009
njn0e1b5142003-04-15 14:58:06 +000010 Copyright (C) 2002-2003 Nicholas Nethercote
njn25e49d8e72002-09-23 09:36:25 +000011 njn25@cam.ac.uk
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#include "vg_skin.h"
32
njn27f1a382002-11-08 15:48:16 +000033VG_DETERMINE_INTERFACE_VERSION
njn25e49d8e72002-09-23 09:36:25 +000034
njn810086f2002-11-14 12:42:47 +000035void SK_(pre_clo_init)(void)
njn25e49d8e72002-09-23 09:36:25 +000036{
njn810086f2002-11-14 12:42:47 +000037 VG_(details_name) ("Nulgrind");
38 VG_(details_version) (NULL);
39 VG_(details_description) ("a binary JIT-compiler");
40 VG_(details_copyright_author)(
njn0e1b5142003-04-15 14:58:06 +000041 "Copyright (C) 2002-2003, and GNU GPL'd, by Nicholas Nethercote.");
njn810086f2002-11-14 12:42:47 +000042 VG_(details_bug_reports_to) ("njn25@cam.ac.uk");
njn25e49d8e72002-09-23 09:36:25 +000043
44 /* No needs, no core events to track */
45}
46
47void SK_(post_clo_init)(void)
48{
49}
50
51UCodeBlock* SK_(instrument)(UCodeBlock* cb, Addr a)
52{
53 return cb;
54}
55
njn7d9f94d2003-04-22 21:41:40 +000056void SK_(fini)(Int exitcode)
njn25e49d8e72002-09-23 09:36:25 +000057{
58}
59
60/*--------------------------------------------------------------------*/
njn25cac76cb2002-09-23 11:21:57 +000061/*--- end nl_main.c ---*/
njn25e49d8e72002-09-23 09:36:25 +000062/*--------------------------------------------------------------------*/