blob: 3bd6320507978e29c9d7c591f213448bc9a71a0d [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
33
njnd04b7c62002-10-03 14:05:52 +000034void SK_(pre_clo_init)(VgDetails* details, VgNeeds* not_used1,
35 VgTrackEvents* not_used2)
njn25e49d8e72002-09-23 09:36:25 +000036{
sewardj4aa62ba2002-10-05 15:49:27 +000037 details->name = "Nulgrind";
njnd04b7c62002-10-03 14:05:52 +000038 details->version = NULL;
39 details->description = "a binary JIT-compiler";
40 details->copyright_author =
41 "Copyright (C) 2002, and GNU GPL'd, by Nicholas Nethercote.";
42 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
56void SK_(fini)(void)
57{
58}
59
60/*--------------------------------------------------------------------*/
njn25cac76cb2002-09-23 11:21:57 +000061/*--- end nl_main.c ---*/
njn25e49d8e72002-09-23 09:36:25 +000062/*--------------------------------------------------------------------*/