blob: 609e6e3fc209bb0f8914af1cb4ad2c0a74398c3d [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
10 Copyright (C) 2002 Nicholas Nethercote
11 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
njnd04b7c62002-10-03 14:05:52 +000035void SK_(pre_clo_init)(VgDetails* details, VgNeeds* not_used1,
36 VgTrackEvents* not_used2)
njn25e49d8e72002-09-23 09:36:25 +000037{
sewardj4aa62ba2002-10-05 15:49:27 +000038 details->name = "Nulgrind";
njnd04b7c62002-10-03 14:05:52 +000039 details->version = NULL;
40 details->description = "a binary JIT-compiler";
41 details->copyright_author =
42 "Copyright (C) 2002, and GNU GPL'd, by Nicholas Nethercote.";
43 details->bug_reports_to = "njn25@cam.ac.uk";
njn25e49d8e72002-09-23 09:36:25 +000044
45 /* No needs, no core events to track */
46}
47
48void SK_(post_clo_init)(void)
49{
50}
51
52UCodeBlock* SK_(instrument)(UCodeBlock* cb, Addr a)
53{
54 return cb;
55}
56
57void SK_(fini)(void)
58{
59}
60
61/*--------------------------------------------------------------------*/
njn25cac76cb2002-09-23 11:21:57 +000062/*--- end nl_main.c ---*/
njn25e49d8e72002-09-23 09:36:25 +000063/*--------------------------------------------------------------------*/