117 lines
3.4 KiB
C
117 lines
3.4 KiB
C
/*
|
|
* Copyright (c) 2003-2008 Stephen Williams (steve@icarus.com)
|
|
*
|
|
* This source code is free software; you can redistribute it
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
* General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
# include "sys_priv.h"
|
|
|
|
/*
|
|
* This file contains do nothing stubs of all the VCD routines.
|
|
*/
|
|
|
|
# include "vpi_user.h"
|
|
# include <stdio.h>
|
|
# include <stdlib.h>
|
|
# include <string.h>
|
|
# include <assert.h>
|
|
# include <time.h>
|
|
#ifdef HAVE_MALLOC_H
|
|
# include <malloc.h>
|
|
#endif
|
|
# include "vcd_priv.h"
|
|
|
|
|
|
static int dump_flag = 0;
|
|
|
|
static PLI_INT32 sys_dummy_calltf(PLI_BYTE8*name)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static PLI_INT32 sys_dumpvars_calltf(PLI_BYTE8*name)
|
|
{
|
|
if (dump_flag == 0) {
|
|
vpi_printf("VCD info: dumping is suppressed.\n");
|
|
dump_flag = 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void sys_vcdoff_register()
|
|
{
|
|
s_vpi_systf_data tf_data;
|
|
|
|
/* All the compiletf routines are located in vcd_priv.c. */
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpall";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_no_arg_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpall";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpfile";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_dumpfile_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpfile";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpflush";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_no_arg_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpflush";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumplimit";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_one_numeric_arg_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumplimit";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpoff";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_no_arg_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpoff";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpon";
|
|
tf_data.calltf = sys_dummy_calltf;
|
|
tf_data.compiletf = sys_no_arg_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpon";
|
|
vpi_register_systf(&tf_data);
|
|
|
|
tf_data.type = vpiSysTask;
|
|
tf_data.tfname = "$dumpvars";
|
|
tf_data.calltf = sys_dumpvars_calltf;
|
|
tf_data.compiletf = sys_dumpvars_compiletf;
|
|
tf_data.sizetf = 0;
|
|
tf_data.user_data = "$dumpvars";
|
|
vpi_register_systf(&tf_data);
|
|
}
|