2002-03-09 22:54:48 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2002 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
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2003-04-27 04:22:27 +02:00
|
|
|
#ident "$Id: sys_lxt.c,v 1.19 2003/04/27 02:22:27 steve Exp $"
|
2002-03-09 22:54:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "config.h"
|
2002-08-15 04:12:20 +02:00
|
|
|
# include "sys_priv.h"
|
2002-03-09 22:54:48 +01:00
|
|
|
# include "lxt_write.h"
|
2003-02-11 06:21:33 +01:00
|
|
|
# include "vcd_priv.h"
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This file contains the implementations of the VCD related
|
|
|
|
|
* funcitons.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# 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
|
2003-02-13 19:13:28 +01:00
|
|
|
# include "stringheap.h"
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
|
2003-02-20 01:50:06 +01:00
|
|
|
static enum lxm_optimum_mode_e {
|
|
|
|
|
LXM_NONE = 0,
|
|
|
|
|
LXM_SPACE = 1,
|
|
|
|
|
LXM_SPEED = 2
|
|
|
|
|
} lxm_optimum_mode = LXM_SPEED;
|
|
|
|
|
|
|
|
|
|
|
2002-07-15 05:57:30 +02:00
|
|
|
/*
|
|
|
|
|
* The lxt_scope head and current pointers are used to keep a scope
|
|
|
|
|
* stack that can be accessed from the bottom. The lxt_scope_head
|
|
|
|
|
* points to the first (bottom) item in the stack and
|
|
|
|
|
* lxt_scope_current points to the last (top) item in the stack. The
|
|
|
|
|
* push_scope and pop_scope methods manipulate the stack.
|
|
|
|
|
*/
|
2002-03-09 22:54:48 +01:00
|
|
|
struct lxt_scope
|
|
|
|
|
{
|
2002-07-15 05:57:30 +02:00
|
|
|
struct lxt_scope *next, *prev;
|
|
|
|
|
char *name;
|
|
|
|
|
int len;
|
2002-03-09 22:54:48 +01:00
|
|
|
};
|
|
|
|
|
|
2002-07-15 05:57:30 +02:00
|
|
|
static struct lxt_scope *lxt_scope_head=NULL, *lxt_scope_current=NULL;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
static void push_scope(const char *name)
|
|
|
|
|
{
|
2002-07-15 05:57:30 +02:00
|
|
|
struct lxt_scope *t = (struct lxt_scope *)
|
|
|
|
|
calloc(1, sizeof(struct lxt_scope));
|
|
|
|
|
|
|
|
|
|
t->name = strdup(name);
|
|
|
|
|
t->len = strlen(name);
|
|
|
|
|
|
|
|
|
|
if(!lxt_scope_head) {
|
|
|
|
|
lxt_scope_head = lxt_scope_current = t;
|
|
|
|
|
} else {
|
|
|
|
|
lxt_scope_current->next = t;
|
|
|
|
|
t->prev = lxt_scope_current;
|
|
|
|
|
lxt_scope_current = t;
|
|
|
|
|
}
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void pop_scope(void)
|
|
|
|
|
{
|
2002-07-15 05:57:30 +02:00
|
|
|
struct lxt_scope *t;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
2002-07-15 05:57:30 +02:00
|
|
|
assert(lxt_scope_current);
|
2002-03-09 22:54:48 +01:00
|
|
|
|
2002-07-15 05:57:30 +02:00
|
|
|
t=lxt_scope_current->prev;
|
|
|
|
|
free(lxt_scope_current->name);
|
|
|
|
|
free(lxt_scope_current);
|
|
|
|
|
lxt_scope_current = t;
|
|
|
|
|
if (lxt_scope_current) {
|
|
|
|
|
lxt_scope_current->next = 0;
|
|
|
|
|
} else {
|
|
|
|
|
lxt_scope_head = 0;
|
|
|
|
|
}
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
2002-07-15 05:57:30 +02:00
|
|
|
/*
|
|
|
|
|
* This function uses the scope stack to generate a hierarchical
|
|
|
|
|
* name. Scan the scope stack from the bottom up to construct the
|
|
|
|
|
* name.
|
|
|
|
|
*/
|
2002-03-09 22:54:48 +01:00
|
|
|
static char *create_full_name(const char *name)
|
|
|
|
|
{
|
2002-07-15 05:57:30 +02:00
|
|
|
char *n, *n2;
|
|
|
|
|
int len = 0;
|
|
|
|
|
struct lxt_scope *t = lxt_scope_head;
|
|
|
|
|
|
|
|
|
|
/* Figure out how long the combined string will be. */
|
|
|
|
|
while(t) {
|
|
|
|
|
len+=t->len+1;
|
|
|
|
|
t=t->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
len += strlen(name) + 1;
|
|
|
|
|
|
|
|
|
|
/* Allocate a string buffer. */
|
|
|
|
|
n = n2 = malloc(len);
|
|
|
|
|
|
|
|
|
|
t = lxt_scope_head;
|
|
|
|
|
while(t) {
|
|
|
|
|
strcpy(n2, t->name);
|
|
|
|
|
n2 += t->len;
|
|
|
|
|
*n2 = '.';
|
|
|
|
|
n2++;
|
|
|
|
|
t=t->next;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
strcpy(n2, name);
|
|
|
|
|
n2 += strlen(n2);
|
|
|
|
|
assert( (n2 - n + 1) == len );
|
|
|
|
|
|
2003-02-13 19:13:28 +01:00
|
|
|
return n;
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct lt_trace *dump_file = 0;
|
|
|
|
|
|
|
|
|
|
struct vcd_info {
|
|
|
|
|
vpiHandle item;
|
|
|
|
|
vpiHandle cb;
|
|
|
|
|
struct t_vpi_time time;
|
|
|
|
|
struct lt_symbol *sym;
|
2003-04-27 04:22:27 +02:00
|
|
|
struct vcd_info *next;
|
|
|
|
|
struct vcd_info *dmp_next;
|
|
|
|
|
int scheduled;
|
2002-03-09 22:54:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct vcd_info*vcd_list = 0;
|
2003-04-27 04:22:27 +02:00
|
|
|
static struct vcd_info*vcd_dmp_list = 0;
|
2002-03-09 22:54:48 +01:00
|
|
|
static unsigned long vcd_cur_time = 0;
|
|
|
|
|
static int dump_is_off = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void show_this_item(struct vcd_info*info)
|
|
|
|
|
{
|
|
|
|
|
s_vpi_value value;
|
|
|
|
|
|
2003-02-11 06:21:33 +01:00
|
|
|
if (vpi_get(vpiType,info->item) == vpiRealVar) {
|
|
|
|
|
value.format = vpiRealVal;
|
|
|
|
|
vpi_get_value(info->item, &value);
|
|
|
|
|
lt_emit_value_double(dump_file, info->sym, 0, value.value.real);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
value.format = vpiBinStrVal;
|
|
|
|
|
vpi_get_value(info->item, &value);
|
|
|
|
|
lt_emit_value_bit_string(dump_file, info->sym,
|
|
|
|
|
0 /* array row */,
|
|
|
|
|
value.value.str);
|
|
|
|
|
}
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void show_this_item_x(struct vcd_info*info)
|
|
|
|
|
{
|
2003-02-12 06:28:01 +01:00
|
|
|
if (vpi_get(vpiType,info->item) == vpiRealVar) {
|
|
|
|
|
/* Should write a NaN here? */
|
|
|
|
|
} else {
|
|
|
|
|
lt_emit_value_bit_string(dump_file, info->sym, 0, "x");
|
|
|
|
|
}
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* managed qsorted list of scope names for duplicates bsearching
|
|
|
|
|
*/
|
|
|
|
|
|
2003-02-11 06:21:33 +01:00
|
|
|
struct vcd_names_list_s lxt_tab;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
static int dumpvars_status = 0; /* 0:fresh 1:cb installed, 2:callback done */
|
|
|
|
|
static unsigned long dumpvars_time;
|
|
|
|
|
inline static int dump_header_pending(void)
|
|
|
|
|
{
|
|
|
|
|
return dumpvars_status != 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function writes out all the traced variables, whether they
|
|
|
|
|
* changed or not.
|
|
|
|
|
*/
|
|
|
|
|
static void vcd_checkpoint()
|
|
|
|
|
{
|
|
|
|
|
struct vcd_info*cur;
|
|
|
|
|
|
|
|
|
|
for (cur = vcd_list ; cur ; cur = cur->next)
|
|
|
|
|
show_this_item(cur);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void vcd_checkpoint_x()
|
|
|
|
|
{
|
|
|
|
|
struct vcd_info*cur;
|
|
|
|
|
|
|
|
|
|
for (cur = vcd_list ; cur ; cur = cur->next)
|
|
|
|
|
show_this_item_x(cur);
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-27 04:22:27 +02:00
|
|
|
static int variable_cb_2(p_cb_data cause)
|
2002-03-09 22:54:48 +01:00
|
|
|
{
|
2003-04-27 04:22:27 +02:00
|
|
|
struct vcd_info* info = vcd_dmp_list;
|
2002-03-09 22:54:48 +01:00
|
|
|
unsigned long now = cause->time->low;
|
2003-04-27 04:22:27 +02:00
|
|
|
|
|
|
|
|
if (now != vcd_cur_time) {
|
2002-03-09 22:54:48 +01:00
|
|
|
lt_set_time(dump_file, now);
|
|
|
|
|
vcd_cur_time = now;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-27 04:22:27 +02:00
|
|
|
do {
|
|
|
|
|
show_this_item(info);
|
|
|
|
|
info->scheduled = 0;
|
|
|
|
|
} while ((info = info->dmp_next) != 0);
|
|
|
|
|
|
|
|
|
|
vcd_dmp_list = 0;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int variable_cb_1(p_cb_data cause)
|
|
|
|
|
{
|
|
|
|
|
struct t_cb_data cb;
|
|
|
|
|
struct vcd_info*info = (struct vcd_info*)cause->user_data;
|
|
|
|
|
|
|
|
|
|
if (dump_is_off) return 0;
|
|
|
|
|
if (dump_header_pending()) return 0;
|
|
|
|
|
if (info->scheduled) return 0;
|
|
|
|
|
|
|
|
|
|
if (!vcd_dmp_list) {
|
|
|
|
|
cb = *cause;
|
|
|
|
|
cb.reason = cbReadOnlySynch;
|
|
|
|
|
cb.cb_rtn = variable_cb_2;
|
|
|
|
|
vpi_register_cb(&cb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
info->scheduled = 1;
|
|
|
|
|
info->dmp_next = vcd_dmp_list;
|
|
|
|
|
vcd_dmp_list = info;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int dumpvars_cb(p_cb_data cause)
|
|
|
|
|
{
|
|
|
|
|
if (dumpvars_status != 1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
dumpvars_status = 2;
|
|
|
|
|
|
|
|
|
|
dumpvars_time = cause->time->low;
|
|
|
|
|
vcd_cur_time = dumpvars_time;
|
|
|
|
|
|
|
|
|
|
if (!dump_is_off) {
|
|
|
|
|
lt_set_time(dump_file, dumpvars_time);
|
|
|
|
|
vcd_checkpoint();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline static int install_dumpvars_callback(void)
|
|
|
|
|
{
|
|
|
|
|
struct t_cb_data cb;
|
|
|
|
|
static struct t_vpi_time time;
|
|
|
|
|
|
|
|
|
|
if (dumpvars_status == 1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (dumpvars_status == 2) {
|
|
|
|
|
vpi_mcd_printf(6, "VCD Error:"
|
|
|
|
|
" $dumpvars ignored,"
|
|
|
|
|
" previously called at simtime %lu\n",
|
|
|
|
|
dumpvars_time);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
time.type = vpiSimTime;
|
|
|
|
|
cb.time = &time;
|
|
|
|
|
cb.reason = cbReadOnlySynch;
|
|
|
|
|
cb.cb_rtn = dumpvars_cb;
|
|
|
|
|
cb.user_data = 0x0;
|
|
|
|
|
cb.obj = 0x0;
|
|
|
|
|
|
|
|
|
|
vpi_register_cb(&cb);
|
|
|
|
|
|
|
|
|
|
dumpvars_status = 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sys_dumpoff_calltf(char*name)
|
|
|
|
|
{
|
|
|
|
|
s_vpi_time now;
|
|
|
|
|
|
|
|
|
|
if (dump_is_off)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
dump_is_off = 1;
|
|
|
|
|
|
|
|
|
|
if (dump_file == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (dump_header_pending())
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-12-21 01:55:57 +01:00
|
|
|
now.type = vpiSimTime;
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_get_time(0, &now);
|
|
|
|
|
if (now.low > vcd_cur_time)
|
|
|
|
|
lt_set_time(dump_file, now.low);
|
|
|
|
|
vcd_cur_time = now.low;
|
|
|
|
|
|
2003-02-20 01:50:06 +01:00
|
|
|
lt_set_dumpoff(dump_file);
|
2003-02-21 02:36:25 +01:00
|
|
|
vcd_checkpoint_x();
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sys_dumpon_calltf(char*name)
|
|
|
|
|
{
|
|
|
|
|
s_vpi_time now;
|
|
|
|
|
|
|
|
|
|
if (!dump_is_off)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
dump_is_off = 0;
|
|
|
|
|
|
|
|
|
|
if (dump_file == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (dump_header_pending())
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-12-21 01:55:57 +01:00
|
|
|
now.type = vpiSimTime;
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_get_time(0, &now);
|
|
|
|
|
if (now.low > vcd_cur_time)
|
|
|
|
|
lt_set_time(dump_file, now.low);
|
|
|
|
|
vcd_cur_time = now.low;
|
|
|
|
|
|
2003-02-21 02:36:25 +01:00
|
|
|
lt_set_dumpon(dump_file);
|
2002-03-09 22:54:48 +01:00
|
|
|
vcd_checkpoint();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sys_dumpall_calltf(char*name)
|
|
|
|
|
{
|
|
|
|
|
s_vpi_time now;
|
|
|
|
|
|
|
|
|
|
if (dump_file == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (dump_header_pending())
|
|
|
|
|
return 0;
|
|
|
|
|
|
2002-12-21 01:55:57 +01:00
|
|
|
now.type = vpiSimTime;
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_get_time(0, &now);
|
|
|
|
|
if (now.low > vcd_cur_time)
|
|
|
|
|
lt_set_time(dump_file, now.low);
|
|
|
|
|
vcd_cur_time = now.low;
|
|
|
|
|
|
|
|
|
|
vcd_checkpoint();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void *close_dumpfile(void)
|
|
|
|
|
{
|
|
|
|
|
lt_close(dump_file);
|
|
|
|
|
return(dump_file = NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void open_dumpfile(const char*path)
|
|
|
|
|
{
|
|
|
|
|
dump_file = lt_init(path);
|
|
|
|
|
|
|
|
|
|
if (dump_file == 0) {
|
|
|
|
|
vpi_mcd_printf(6,
|
|
|
|
|
"LXT Error: Unable to open %s for output.\n",
|
|
|
|
|
path);
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
int prec = vpi_get(vpiTimePrecision, 0);
|
|
|
|
|
|
|
|
|
|
vpi_mcd_printf(4,
|
|
|
|
|
"LXT info: dumpfile %s opened for output.\n",
|
|
|
|
|
path);
|
|
|
|
|
|
|
|
|
|
assert(prec >= -15);
|
|
|
|
|
lt_set_timescale(dump_file, prec);
|
|
|
|
|
|
|
|
|
|
lt_set_initial_value(dump_file, 'x');
|
|
|
|
|
lt_set_clock_compress(dump_file);
|
|
|
|
|
|
|
|
|
|
atexit((void(*)(void))close_dumpfile);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sys_dumpfile_calltf(char*name)
|
|
|
|
|
{
|
|
|
|
|
char*path;
|
|
|
|
|
|
|
|
|
|
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
|
|
|
|
|
vpiHandle argv = vpi_iterate(vpiArgument, sys);
|
|
|
|
|
vpiHandle item;
|
|
|
|
|
|
|
|
|
|
if (argv && (item = vpi_scan(argv))) {
|
|
|
|
|
s_vpi_value value;
|
|
|
|
|
|
|
|
|
|
if (vpi_get(vpiType, item) != vpiConstant
|
|
|
|
|
|| vpi_get(vpiConstType, item) != vpiStringConst) {
|
|
|
|
|
vpi_mcd_printf(6,
|
|
|
|
|
"LXT Error:"
|
|
|
|
|
" %s parameter must be a string constant\n",
|
|
|
|
|
name);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
value.format = vpiStringVal;
|
|
|
|
|
vpi_get_value(item, &value);
|
|
|
|
|
path = strdup(value.value.str);
|
|
|
|
|
|
|
|
|
|
vpi_free_object(argv);
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
path = strdup("dumpfile.lxt");
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-17 23:28:42 +01:00
|
|
|
if (dump_file)
|
|
|
|
|
close_dumpfile();
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
assert(dump_file == 0);
|
|
|
|
|
open_dumpfile(path);
|
|
|
|
|
|
|
|
|
|
free(path);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void scan_item(unsigned depth, vpiHandle item, int skip)
|
|
|
|
|
{
|
|
|
|
|
struct t_cb_data cb;
|
|
|
|
|
struct vcd_info* info;
|
|
|
|
|
|
|
|
|
|
const char* type;
|
|
|
|
|
const char* name;
|
|
|
|
|
const char* ident;
|
|
|
|
|
int nexus_id;
|
|
|
|
|
|
2002-07-12 19:08:13 +02:00
|
|
|
/* list of types to iterate upon */
|
|
|
|
|
int i;
|
|
|
|
|
static int types[] = {
|
|
|
|
|
/* Value */
|
|
|
|
|
vpiNet,
|
|
|
|
|
vpiReg,
|
2002-07-17 07:13:43 +02:00
|
|
|
vpiVariables,
|
2002-07-12 19:08:13 +02:00
|
|
|
/* Scope */
|
|
|
|
|
vpiFunction,
|
|
|
|
|
vpiModule,
|
|
|
|
|
vpiNamedBegin,
|
|
|
|
|
vpiNamedFork,
|
|
|
|
|
vpiTask,
|
|
|
|
|
-1
|
|
|
|
|
};
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
switch (vpi_get(vpiType, item)) {
|
|
|
|
|
|
2002-06-03 05:56:06 +02:00
|
|
|
case vpiMemory:
|
|
|
|
|
/* don't know how to watch memories. */
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case vpiNamedEvent:
|
|
|
|
|
/* There is nothing in named events to dump. */
|
|
|
|
|
break;
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
case vpiNet: type = "wire"; if(0){
|
2002-06-21 06:59:35 +02:00
|
|
|
case vpiIntegerVar:
|
2002-07-17 07:13:43 +02:00
|
|
|
case vpiTimeVar:
|
2002-03-09 22:54:48 +01:00
|
|
|
case vpiReg: type = "reg"; }
|
|
|
|
|
|
|
|
|
|
if (skip)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
name = vpi_get_str(vpiName, item);
|
|
|
|
|
nexus_id = vpi_get(_vpiNexusId, item);
|
|
|
|
|
if (nexus_id) {
|
|
|
|
|
ident = find_nexus_ident(nexus_id);
|
|
|
|
|
} else {
|
|
|
|
|
ident = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!ident) {
|
2003-02-13 19:13:28 +01:00
|
|
|
char*tmp = create_full_name(name);
|
|
|
|
|
ident = strdup_sh(&name_heap, tmp);
|
|
|
|
|
free(tmp);
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
if (nexus_id)
|
|
|
|
|
set_nexus_ident(nexus_id, ident);
|
|
|
|
|
|
|
|
|
|
info = malloc(sizeof(*info));
|
|
|
|
|
|
|
|
|
|
info->time.type = vpiSimTime;
|
|
|
|
|
info->item = item;
|
|
|
|
|
info->sym = lt_symbol_add(dump_file, ident, 0 /* array rows */, vpi_get(vpiSize, item)-1, 0, LT_SYM_F_BITS);
|
2003-04-27 04:22:27 +02:00
|
|
|
info->scheduled = 0;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
cb.time = &info->time;
|
|
|
|
|
cb.user_data = (char*)info;
|
|
|
|
|
cb.value = NULL;
|
|
|
|
|
cb.obj = item;
|
|
|
|
|
cb.reason = cbValueChange;
|
2003-04-27 04:22:27 +02:00
|
|
|
cb.cb_rtn = variable_cb_1;
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
info->next = vcd_list;
|
|
|
|
|
vcd_list = info;
|
|
|
|
|
|
|
|
|
|
info->cb = vpi_register_cb(&cb);
|
2002-07-15 05:57:30 +02:00
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
char *n = create_full_name(name);
|
|
|
|
|
lt_symbol_alias(dump_file, ident, n,
|
|
|
|
|
vpi_get(vpiSize, item)-1, 0);
|
|
|
|
|
free(n);
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
2003-02-11 06:21:33 +01:00
|
|
|
|
|
|
|
|
case vpiRealVar:
|
|
|
|
|
|
|
|
|
|
if (skip)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
name = vpi_get_str(vpiName, item);
|
2003-02-13 19:13:28 +01:00
|
|
|
{ char*tmp = create_full_name(name);
|
|
|
|
|
ident = strdup_sh(&name_heap, tmp);
|
|
|
|
|
free(tmp);
|
|
|
|
|
}
|
2003-02-11 06:21:33 +01:00
|
|
|
info = malloc(sizeof(*info));
|
|
|
|
|
|
|
|
|
|
info->time.type = vpiSimTime;
|
|
|
|
|
info->item = item;
|
|
|
|
|
info->sym = lt_symbol_add(dump_file, ident, 0 /* array rows */, vpi_get(vpiSize, item)-1, 0, LT_SYM_F_DOUBLE);
|
2003-04-27 04:22:27 +02:00
|
|
|
info->scheduled = 0;
|
2003-02-11 06:21:33 +01:00
|
|
|
|
|
|
|
|
cb.time = &info->time;
|
|
|
|
|
cb.user_data = (char*)info;
|
|
|
|
|
cb.value = NULL;
|
|
|
|
|
cb.obj = item;
|
|
|
|
|
cb.reason = cbValueChange;
|
2003-04-27 04:22:27 +02:00
|
|
|
cb.cb_rtn = variable_cb_1;
|
2003-02-11 06:21:33 +01:00
|
|
|
|
|
|
|
|
info->next = vcd_list;
|
|
|
|
|
vcd_list = info;
|
|
|
|
|
|
|
|
|
|
info->cb = vpi_register_cb(&cb);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
case vpiModule: type = "module"; if(0){
|
|
|
|
|
case vpiNamedBegin: type = "begin"; }if(0){
|
|
|
|
|
case vpiTask: type = "task"; }if(0){
|
|
|
|
|
case vpiFunction: type = "function"; }if(0){
|
|
|
|
|
case vpiNamedFork: type = "fork"; }
|
|
|
|
|
|
|
|
|
|
if (depth > 0) {
|
|
|
|
|
int nskip;
|
|
|
|
|
vpiHandle argv;
|
|
|
|
|
|
|
|
|
|
const char* fullname =
|
|
|
|
|
vpi_get_str(vpiFullName, item);
|
|
|
|
|
|
|
|
|
|
vpi_mcd_printf(4,
|
|
|
|
|
"LXT info:"
|
|
|
|
|
" scanning scope %s, %u levels\n",
|
|
|
|
|
fullname, depth);
|
|
|
|
|
|
2003-02-11 06:21:33 +01:00
|
|
|
nskip = 0 != vcd_names_search(&lxt_tab, fullname);
|
2002-03-09 22:54:48 +01:00
|
|
|
|
|
|
|
|
if (!nskip)
|
2003-02-11 06:21:33 +01:00
|
|
|
vcd_names_add(&lxt_tab, fullname);
|
2002-03-09 22:54:48 +01:00
|
|
|
else
|
|
|
|
|
vpi_mcd_printf(6,
|
|
|
|
|
"LXT warning:"
|
|
|
|
|
" ignoring signals"
|
|
|
|
|
" in previously scanned scope %s\n",
|
|
|
|
|
fullname);
|
|
|
|
|
|
|
|
|
|
name = vpi_get_str(vpiName, item);
|
|
|
|
|
|
|
|
|
|
push_scope(name); /* keep in type info determination for possible future usage */
|
|
|
|
|
|
2002-07-12 19:08:13 +02:00
|
|
|
for (i=0; types[i]>0; i++) {
|
|
|
|
|
vpiHandle hand;
|
|
|
|
|
argv = vpi_iterate(types[i], item);
|
|
|
|
|
while (argv && (hand = vpi_scan(argv))) {
|
|
|
|
|
scan_item(depth-1, hand, nskip);
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pop_scope();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
vpi_mcd_printf(6,
|
|
|
|
|
"LXT Error: $lxtdumpvars: Unsupported parameter "
|
|
|
|
|
"type (%d)\n", vpi_get(vpiType, item));
|
|
|
|
|
}
|
2002-07-15 05:57:30 +02:00
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int draw_scope(vpiHandle item)
|
|
|
|
|
{
|
|
|
|
|
int depth;
|
|
|
|
|
const char *name;
|
|
|
|
|
char *type;
|
|
|
|
|
|
|
|
|
|
vpiHandle scope = vpi_handle(vpiScope, item);
|
|
|
|
|
if (!scope)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
depth = 1 + draw_scope(scope);
|
|
|
|
|
name = vpi_get_str(vpiName, scope);
|
|
|
|
|
|
|
|
|
|
switch (vpi_get(vpiType, item)) {
|
|
|
|
|
case vpiNamedBegin: type = "begin"; break;
|
|
|
|
|
case vpiTask: type = "task"; break;
|
|
|
|
|
case vpiFunction: type = "function"; break;
|
|
|
|
|
case vpiNamedFork: type = "fork"; break;
|
|
|
|
|
default: type = "module"; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
push_scope(name); /* keep in type info determination for possible future usage */
|
|
|
|
|
|
|
|
|
|
return depth;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int sys_dumpvars_calltf(char*name)
|
|
|
|
|
{
|
|
|
|
|
unsigned depth;
|
|
|
|
|
s_vpi_value value;
|
|
|
|
|
vpiHandle item = 0;
|
|
|
|
|
vpiHandle sys = vpi_handle(vpiSysTfCall, 0);
|
|
|
|
|
vpiHandle argv;
|
|
|
|
|
|
|
|
|
|
if (dump_file == 0) {
|
|
|
|
|
open_dumpfile("dumpfile.lxt");
|
|
|
|
|
if (dump_file == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (install_dumpvars_callback()) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
argv = vpi_iterate(vpiArgument, sys);
|
|
|
|
|
|
|
|
|
|
depth = 0;
|
|
|
|
|
if (argv && (item = vpi_scan(argv)))
|
|
|
|
|
switch (vpi_get(vpiType, item)) {
|
|
|
|
|
case vpiConstant:
|
|
|
|
|
case vpiNet:
|
2002-06-21 06:59:35 +02:00
|
|
|
case vpiIntegerVar:
|
2002-03-09 22:54:48 +01:00
|
|
|
case vpiReg:
|
|
|
|
|
case vpiMemoryWord:
|
|
|
|
|
value.format = vpiIntVal;
|
|
|
|
|
vpi_get_value(item, &value);
|
|
|
|
|
depth = value.value.integer;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!depth)
|
|
|
|
|
depth = 10000;
|
|
|
|
|
|
|
|
|
|
if (!argv) {
|
|
|
|
|
// $dumpvars;
|
|
|
|
|
// search for the toplevel module
|
|
|
|
|
vpiHandle parent = vpi_handle(vpiScope, sys);
|
|
|
|
|
while (parent) {
|
|
|
|
|
item = parent;
|
|
|
|
|
parent = vpi_handle(vpiScope, item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else if (!item || !(item = vpi_scan(argv))) {
|
|
|
|
|
// $dumpvars(level);
|
|
|
|
|
// $dumpvars();
|
|
|
|
|
// dump the current scope
|
|
|
|
|
item = vpi_handle(vpiScope, sys);
|
|
|
|
|
argv = 0x0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( ; item; item = argv ? vpi_scan(argv) : 0x0) {
|
|
|
|
|
|
|
|
|
|
int dep = draw_scope(item);
|
|
|
|
|
|
2003-02-11 06:21:33 +01:00
|
|
|
vcd_names_sort(&lxt_tab);
|
2002-03-09 22:54:48 +01:00
|
|
|
scan_item(depth, item, 0);
|
|
|
|
|
|
|
|
|
|
while (dep--) {
|
|
|
|
|
pop_scope();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-20 01:50:06 +01:00
|
|
|
/* Most effective compression. */
|
|
|
|
|
if (lxm_optimum_mode == LXM_SPACE)
|
|
|
|
|
lt_set_no_interlace(dump_file);
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void sys_lxt_register()
|
|
|
|
|
{
|
2003-02-20 01:50:06 +01:00
|
|
|
int idx;
|
|
|
|
|
struct t_vpi_vlog_info vlog_info;
|
2002-03-09 22:54:48 +01:00
|
|
|
s_vpi_systf_data tf_data;
|
|
|
|
|
|
2003-02-20 01:50:06 +01:00
|
|
|
|
|
|
|
|
/* Scan the extended arguments, looking for lxt optimization
|
|
|
|
|
flags. */
|
|
|
|
|
vpi_get_vlog_info(&vlog_info);
|
|
|
|
|
|
|
|
|
|
for (idx = 0 ; idx < vlog_info.argc ; idx += 1) {
|
|
|
|
|
if (strcmp(vlog_info.argv[idx],"-lxt-space") == 0) {
|
|
|
|
|
lxm_optimum_mode = LXM_SPACE;
|
|
|
|
|
|
|
|
|
|
} else if (strcmp(vlog_info.argv[idx],"-lxt-speed") == 0) {
|
|
|
|
|
lxm_optimum_mode = LXM_SPEED;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.type = vpiSysTask;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.tfname = "$dumpall";
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.calltf = sys_dumpall_calltf;
|
|
|
|
|
tf_data.compiletf = 0;
|
|
|
|
|
tf_data.sizetf = 0;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.user_data = "$dumpall";
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_register_systf(&tf_data);
|
|
|
|
|
|
|
|
|
|
tf_data.type = vpiSysTask;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.tfname = "$dumpoff";
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.calltf = sys_dumpoff_calltf;
|
|
|
|
|
tf_data.compiletf = 0;
|
|
|
|
|
tf_data.sizetf = 0;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.user_data = "$dumpoff";
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_register_systf(&tf_data);
|
|
|
|
|
|
|
|
|
|
tf_data.type = vpiSysTask;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.tfname = "$dumpon";
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.calltf = sys_dumpon_calltf;
|
|
|
|
|
tf_data.compiletf = 0;
|
|
|
|
|
tf_data.sizetf = 0;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.user_data = "$dumpon";
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_register_systf(&tf_data);
|
|
|
|
|
|
|
|
|
|
tf_data.type = vpiSysTask;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.tfname = "$dumpfile";
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.calltf = sys_dumpfile_calltf;
|
|
|
|
|
tf_data.compiletf = 0;
|
|
|
|
|
tf_data.sizetf = 0;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.user_data = "$dumpfile";
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_register_systf(&tf_data);
|
|
|
|
|
|
|
|
|
|
tf_data.type = vpiSysTask;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.tfname = "$dumpvars";
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.calltf = sys_dumpvars_calltf;
|
2002-08-15 04:12:20 +02:00
|
|
|
tf_data.compiletf = sys_vcd_dumpvars_compiletf;
|
2002-03-09 22:54:48 +01:00
|
|
|
tf_data.sizetf = 0;
|
2002-04-06 23:33:29 +02:00
|
|
|
tf_data.user_data = "$dumpvars";
|
2002-03-09 22:54:48 +01:00
|
|
|
vpi_register_systf(&tf_data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: sys_lxt.c,v $
|
2003-04-27 04:22:27 +02:00
|
|
|
* Revision 1.19 2003/04/27 02:22:27 steve
|
|
|
|
|
* Capture VCD dump value in the rosync time period.
|
|
|
|
|
*
|
2003-02-21 02:36:25 +01:00
|
|
|
* Revision 1.18 2003/02/21 01:36:25 steve
|
|
|
|
|
* Move dumpon/dumpoff around to the right times.
|
|
|
|
|
*
|
2003-02-20 01:50:06 +01:00
|
|
|
* Revision 1.17 2003/02/20 00:50:06 steve
|
|
|
|
|
* Update lxt_write implementation, and add compression control flags.
|
|
|
|
|
*
|
2003-02-13 19:13:28 +01:00
|
|
|
* Revision 1.16 2003/02/13 18:13:28 steve
|
|
|
|
|
* Make lxt use stringheap to perm-allocate strings.
|
|
|
|
|
*
|
2003-02-12 06:28:01 +01:00
|
|
|
* Revision 1.15 2003/02/12 05:28:01 steve
|
|
|
|
|
* Set dumpoff of real variables to NaN.
|
|
|
|
|
*
|
2003-02-11 06:21:33 +01:00
|
|
|
* Revision 1.14 2003/02/11 05:21:33 steve
|
|
|
|
|
* Support dump of vpiRealVar objects.
|
|
|
|
|
*
|
2002-12-21 01:55:57 +01:00
|
|
|
* Revision 1.13 2002/12/21 00:55:58 steve
|
|
|
|
|
* The $time system task returns the integer time
|
|
|
|
|
* scaled to the local units. Change the internal
|
|
|
|
|
* implementation of vpiSystemTime the $time functions
|
|
|
|
|
* to properly account for this. Also add $simtime
|
|
|
|
|
* to get the simulation time.
|
|
|
|
|
*
|
2002-11-17 23:28:42 +01:00
|
|
|
* Revision 1.12 2002/11/17 22:28:42 steve
|
|
|
|
|
* Close old file if $dumpfile is called again.
|
|
|
|
|
*
|
2002-08-15 04:12:20 +02:00
|
|
|
* Revision 1.11 2002/08/15 02:12:20 steve
|
|
|
|
|
* add dumpvars_compiletf to check first argument.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.10 2002/08/12 01:35:04 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-07-17 07:13:43 +02:00
|
|
|
* Revision 1.9 2002/07/17 05:13:43 steve
|
|
|
|
|
* Implementation of vpi_handle_by_name, and
|
|
|
|
|
* add the vpiVariables iterator.
|
|
|
|
|
*
|
2002-07-15 05:57:30 +02:00
|
|
|
* Revision 1.8 2002/07/15 03:57:30 steve
|
|
|
|
|
* Fix dangling pointer in pop_scope.
|
|
|
|
|
*
|
2002-07-12 19:09:21 +02:00
|
|
|
* Revision 1.7 2002/07/12 17:09:21 steve
|
|
|
|
|
* Remember to scan IntegerVars.
|
|
|
|
|
*
|
2002-07-12 19:08:13 +02:00
|
|
|
* Revision 1.6 2002/07/12 17:08:13 steve
|
|
|
|
|
* Eliminate use of vpiInternalScope.
|
|
|
|
|
*
|
2002-06-21 06:59:35 +02:00
|
|
|
* Revision 1.5 2002/06/21 04:59:36 steve
|
|
|
|
|
* Carry integerness throughout the compilation.
|
|
|
|
|
*
|
2002-06-03 05:56:06 +02:00
|
|
|
* Revision 1.4 2002/06/03 03:56:06 steve
|
|
|
|
|
* Ignore memories and named events.
|
|
|
|
|
*
|
2002-04-06 23:33:29 +02:00
|
|
|
* Revision 1.3 2002/04/06 21:33:29 steve
|
|
|
|
|
* allow runtime selection of VCD vs LXT.
|
|
|
|
|
*
|
2002-04-06 22:25:45 +02:00
|
|
|
* Revision 1.2 2002/04/06 20:25:45 steve
|
|
|
|
|
* cbValueChange automatically replays.
|
|
|
|
|
*
|
2002-03-09 22:54:48 +01:00
|
|
|
* Revision 1.1 2002/03/09 21:54:49 steve
|
|
|
|
|
* Add LXT dumper support. (Anthony Bybell)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|