njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 1 | |
| 2 | /*--------------------------------------------------------------------*/ |
nethercote | 137bc55 | 2003-11-14 17:47:54 +0000 | [diff] [blame] | 3 | /*--- Nulgrind: The null tool. nl_main.c ---*/ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 4 | /*--------------------------------------------------------------------*/ |
| 5 | |
| 6 | /* |
nethercote | 137bc55 | 2003-11-14 17:47:54 +0000 | [diff] [blame] | 7 | This file is part of Nulgrind, the simplest possible Valgrind tool, |
njn | c953984 | 2002-10-02 13:26:35 +0000 | [diff] [blame] | 8 | which does nothing. |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 9 | |
nethercote | bb1c991 | 2004-01-04 16:43:23 +0000 | [diff] [blame] | 10 | Copyright (C) 2002-2004 Nicholas Nethercote |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 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 | |
nethercote | 4606320 | 2004-09-02 08:51:43 +0000 | [diff] [blame^] | 31 | #include "tool.h" |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 32 | |
nethercote | 3da4a8c | 2004-08-23 14:10:36 +0000 | [diff] [blame] | 33 | void SK_(pre_clo_init)(void) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 34 | { |
njn | 810086f | 2002-11-14 12:42:47 +0000 | [diff] [blame] | 35 | VG_(details_name) ("Nulgrind"); |
| 36 | VG_(details_version) (NULL); |
| 37 | VG_(details_description) ("a binary JIT-compiler"); |
| 38 | VG_(details_copyright_author)( |
nethercote | bb1c991 | 2004-01-04 16:43:23 +0000 | [diff] [blame] | 39 | "Copyright (C) 2002-2004, and GNU GPL'd, by Nicholas Nethercote."); |
nethercote | 421281e | 2003-11-20 16:20:55 +0000 | [diff] [blame] | 40 | VG_(details_bug_reports_to) (VG_BUGS_TO); |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 41 | |
| 42 | /* No needs, no core events to track */ |
| 43 | } |
| 44 | |
nethercote | 3da4a8c | 2004-08-23 14:10:36 +0000 | [diff] [blame] | 45 | void SK_(post_clo_init)(void) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | UCodeBlock* SK_(instrument)(UCodeBlock* cb, Addr a) |
| 50 | { |
| 51 | return cb; |
| 52 | } |
| 53 | |
| 54 | void SK_(fini)(Int exitcode) |
| 55 | { |
| 56 | } |
| 57 | |
| 58 | VG_DETERMINE_INTERFACE_VERSION(SK_(pre_clo_init), 0) |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 59 | |
| 60 | /*--------------------------------------------------------------------*/ |
nethercote | 3da4a8c | 2004-08-23 14:10:36 +0000 | [diff] [blame] | 61 | /*--- end ---*/ |
njn25 | e49d8e7 | 2002-09-23 09:36:25 +0000 | [diff] [blame] | 62 | /*--------------------------------------------------------------------*/ |