mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
045ff25f80
Add very basic support for vpiModule. Basically it allows to traverse the module tree to find a variable etc. It does not support more than vpi_iterate and vpi_scan for vpiModule along basic operations like vpi_get_str on vpiModule. The support is added non-intrusively to non-VPI verilator runs. It essentially: - Tracks the creation of cell instances and keeps them alive until the emit phase. They are there converted to scopes if modules. - Emits empty (don't add anything during construction) VerilatedScopes for all inlined modules, only for those inlined modules that are on the hierarchical path to public variables. - Adds VerilatedHierarchy as abstraction to structure of the scopes. It is only created for VPI designs. It allows to traverse the hierarchy from the top (NULL). Signed-off-by: Stefan Wallentowitz <stefan@wallentowitz.de> Signed-off-by: Wilson Snyder <wsnyder@wsnyder.org>
190 lines
4.6 KiB
C++
190 lines
4.6 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2010-2011 by Wilson Snyder. This program is free software; you can
|
|
// redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License.
|
|
// Version 2.0.
|
|
//
|
|
// Verilator 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.
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifdef IS_VPI
|
|
|
|
#include "vpi_user.h"
|
|
#include <cstdlib>
|
|
|
|
#else
|
|
|
|
#include "Vt_vpi_module.h"
|
|
#include "verilated.h"
|
|
#include "svdpi.h"
|
|
|
|
#include "Vt_vpi_module__Dpi.h"
|
|
|
|
#include "verilated_vpi.h"
|
|
#include "verilated_vcd_c.h"
|
|
|
|
#endif
|
|
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
#include "TestSimulator.h"
|
|
#include "TestVpi.h"
|
|
|
|
// __FILE__ is too long
|
|
#define FILENM "t_vpi_module.cpp"
|
|
|
|
#define DEBUG if (0) printf
|
|
|
|
unsigned int main_time = false;
|
|
|
|
#define CHECK_RESULT_NZ(got) \
|
|
if (!(got)) { \
|
|
printf("%%Error: %s:%d: GOT = NULL EXP = !NULL\n", FILENM,__LINE__); \
|
|
return __LINE__; \
|
|
}
|
|
|
|
#define CHECK_RESULT_CSTR(got, exp) \
|
|
if (strcmp((got), (exp))) { \
|
|
printf("%%Error: %s:%d: GOT = '%s' EXP = '%s'\n", \
|
|
FILENM, __LINE__, (got)?(got):"<null>", (exp)?(exp):"<null>"); \
|
|
return __LINE__; \
|
|
}
|
|
|
|
extern "C" {
|
|
int mon_check() {
|
|
vpiHandle it = vpi_iterate(vpiModule, NULL);
|
|
CHECK_RESULT_NZ(it);
|
|
|
|
vpiHandle topmod = vpi_scan(it);
|
|
CHECK_RESULT_NZ(topmod);
|
|
|
|
char* name = vpi_get_str(vpiName, topmod);
|
|
CHECK_RESULT_NZ(name);
|
|
CHECK_RESULT_CSTR(name, "t");
|
|
|
|
it = vpi_iterate(vpiModule, topmod);
|
|
CHECK_RESULT_NZ(it);
|
|
|
|
vpiHandle mod = vpi_scan(it);
|
|
CHECK_RESULT_NZ(mod);
|
|
|
|
name = vpi_get_str(vpiName, mod);
|
|
CHECK_RESULT_CSTR(name, "mod_a");
|
|
|
|
it = vpi_iterate(vpiModule, mod);
|
|
CHECK_RESULT_NZ(it);
|
|
|
|
mod = vpi_scan(it);
|
|
CHECK_RESULT_NZ(mod);
|
|
|
|
name = vpi_get_str(vpiName, mod);
|
|
if (strcmp(name, "mod_b") == 0) {
|
|
// Full visibility in other simulators, skip mod_b
|
|
mod = vpi_scan(it);
|
|
CHECK_RESULT_NZ(mod);
|
|
name = vpi_get_str(vpiName, mod);
|
|
}
|
|
CHECK_RESULT_CSTR(name, "mod_c.");
|
|
|
|
return 0; // Ok
|
|
}
|
|
}
|
|
//======================================================================
|
|
|
|
#ifdef IS_VPI
|
|
|
|
static int mon_check_vpi() {
|
|
vpiHandle href = vpi_handle(vpiSysTfCall, 0);
|
|
s_vpi_value vpi_value;
|
|
|
|
vpi_value.format = vpiIntVal;
|
|
vpi_value.value.integer = mon_check();
|
|
vpi_put_value(href, &vpi_value, NULL, vpiNoDelay);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static s_vpi_systf_data vpi_systf_data[] = {
|
|
{vpiSysFunc, vpiIntFunc, (PLI_BYTE8*)"$mon_check", (PLI_INT32(*)(PLI_BYTE8*))mon_check_vpi, 0, 0, 0},
|
|
0
|
|
};
|
|
|
|
// cver entry
|
|
void vpi_compat_bootstrap(void) {
|
|
p_vpi_systf_data systf_data_p;
|
|
systf_data_p = &(vpi_systf_data[0]);
|
|
while (systf_data_p->type != 0) vpi_register_systf(systf_data_p++);
|
|
}
|
|
|
|
// icarus entry
|
|
void (*vlog_startup_routines[])() = {
|
|
vpi_compat_bootstrap,
|
|
0
|
|
};
|
|
|
|
#else
|
|
|
|
double sc_time_stamp() {
|
|
return main_time;
|
|
}
|
|
int main(int argc, char **argv, char **env) {
|
|
double sim_time = 1100;
|
|
Verilated::commandArgs(argc, argv);
|
|
Verilated::debug(0);
|
|
// we're going to be checking for these errors do don't crash out
|
|
Verilated::fatalOnVpiError(0);
|
|
|
|
VM_PREFIX* topp = new VM_PREFIX(""); // Note null name - we're flattening it out
|
|
|
|
#ifdef VERILATOR
|
|
# ifdef TEST_VERBOSE
|
|
Verilated::scopesDump();
|
|
# endif
|
|
#endif
|
|
|
|
#if VM_TRACE
|
|
Verilated::traceEverOn(true);
|
|
VL_PRINTF("Enabling waves...\n");
|
|
VerilatedVcdC* tfp = new VerilatedVcdC;
|
|
topp->trace(tfp, 99);
|
|
tfp->open(STRINGIFY(TEST_OBJ_DIR) "/simx.vcd");
|
|
#endif
|
|
|
|
topp->eval();
|
|
topp->clk = 0;
|
|
main_time += 10;
|
|
|
|
while (sc_time_stamp() < sim_time && !Verilated::gotFinish()) {
|
|
main_time += 1;
|
|
topp->eval();
|
|
VerilatedVpi::callValueCbs();
|
|
topp->clk = !topp->clk;
|
|
//mon_do();
|
|
#if VM_TRACE
|
|
if (tfp) tfp->dump (main_time);
|
|
#endif
|
|
}
|
|
if (!Verilated::gotFinish()) {
|
|
vl_fatal(FILENM, __LINE__, "main", "%Error: Timeout; never got a $finish");
|
|
}
|
|
topp->final();
|
|
|
|
#if VM_TRACE
|
|
if (tfp) tfp->close();
|
|
#endif
|
|
|
|
delete topp; topp=NULL;
|
|
exit(0L);
|
|
}
|
|
|
|
#endif
|