mirror of
https://github.com/verilator/verilator.git
synced 2025-01-06 06:37:45 +00:00
180 lines
4.5 KiB
C++
180 lines
4.5 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.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//*************************************************************************
|
|
|
|
#ifdef IS_VPI
|
|
|
|
#include "vpi_user.h"
|
|
|
|
#else
|
|
|
|
#include "verilated.h"
|
|
#include "verilated_vcd_c.h"
|
|
#include "verilated_vpi.h"
|
|
|
|
#include "Vt_vpi_zero_time_cb.h"
|
|
#include "Vt_vpi_zero_time_cb__Dpi.h"
|
|
#include "svdpi.h"
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
#include <cstdio>
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
// These require the above. Comment prevents clang-format moving them
|
|
#include "TestCheck.h"
|
|
#include "TestSimulator.h"
|
|
#include "TestVpi.h"
|
|
|
|
int errors = 0;
|
|
unsigned int callback_count_zero_time = 0;
|
|
unsigned int callback_count_start_of_sim = 0;
|
|
|
|
//======================================================================
|
|
|
|
#ifdef IS_VPI
|
|
|
|
static int _zero_time_cb(p_cb_data cb_data) {
|
|
callback_count_zero_time++;
|
|
return 0;
|
|
}
|
|
|
|
static int _start_of_sim_cb(p_cb_data cb_data) {
|
|
#ifdef TEST_VERBOSE
|
|
printf("-_start_of_sim_cb\n");
|
|
#endif
|
|
|
|
t_cb_data cb_data_n;
|
|
bzero(&cb_data_n, sizeof(cb_data_n));
|
|
s_vpi_time t;
|
|
|
|
cb_data_n.reason = cbAfterDelay;
|
|
t.type = vpiSimTime;
|
|
t.high = 0;
|
|
t.low = 0;
|
|
cb_data_n.time = &t;
|
|
cb_data_n.cb_rtn = _zero_time_cb;
|
|
TestVpiHandle _cb_data_n_h = vpi_register_cb(&cb_data_n);
|
|
callback_count_start_of_sim++;
|
|
return 0;
|
|
}
|
|
|
|
static int _end_of_sim_cb(p_cb_data cb_data) {
|
|
TEST_CHECK_EQ(callback_count_start_of_sim, 1);
|
|
TEST_CHECK_EQ(callback_count_zero_time, 1);
|
|
if (!errors) fprintf(stdout, "*-* All Finished *-*\n");
|
|
return 0;
|
|
}
|
|
|
|
// cver entry
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
|
|
// clang-format off
|
|
void vpi_compat_bootstrap(void) {
|
|
// clang-format on
|
|
t_cb_data cb_data;
|
|
bzero(&cb_data, sizeof(cb_data));
|
|
|
|
// VL_PRINTF("register start-of-sim callback\n");
|
|
cb_data.reason = cbStartOfSimulation;
|
|
cb_data.time = 0;
|
|
cb_data.cb_rtn = _start_of_sim_cb;
|
|
TestVpiHandle _start_of_sim_cb_h = vpi_register_cb(&cb_data);
|
|
|
|
cb_data.reason = cbEndOfSimulation;
|
|
cb_data.time = 0;
|
|
cb_data.cb_rtn = _end_of_sim_cb;
|
|
TestVpiHandle _end_of_sim_cb_h = vpi_register_cb(&cb_data);
|
|
}
|
|
|
|
// icarus entry
|
|
void (*vlog_startup_routines[])() = {vpi_compat_bootstrap, 0};
|
|
|
|
#else
|
|
|
|
int main(int argc, char** argv) {
|
|
const std::unique_ptr<VerilatedContext> contextp{new VerilatedContext};
|
|
|
|
uint64_t sim_time = 1100;
|
|
contextp->debug(0);
|
|
contextp->commandArgs(argc, argv);
|
|
|
|
const std::unique_ptr<VM_PREFIX> topp{new VM_PREFIX{contextp.get(),
|
|
// Note null name - we're flattening it out
|
|
""}};
|
|
|
|
// clang-format off
|
|
#ifdef VERILATOR
|
|
# ifdef TEST_VERBOSE
|
|
contextp->scopesDump();
|
|
# endif
|
|
#endif
|
|
// clang-format on
|
|
|
|
#if VM_TRACE
|
|
contextp->traceEverOn(true);
|
|
VL_PRINTF("Enabling waves...\n");
|
|
VerilatedVcdC* tfp = new VerilatedVcdC;
|
|
topp->trace(tfp, 99);
|
|
tfp->open(VL_STRINGIFY(TEST_OBJ_DIR) "/simx.vcd");
|
|
#endif
|
|
|
|
// Load and initialize the PLI application
|
|
{
|
|
const char* filenamep = VL_STRINGIFY(TEST_OBJ_DIR) "/libvpi.so";
|
|
void* lib = dlopen(filenamep, RTLD_LAZY);
|
|
void* bootstrap = dlsym(lib, "vpi_compat_bootstrap");
|
|
if (!bootstrap) {
|
|
const std::string msg = "%Error: Could not dlopen "s + filenamep;
|
|
vl_fatal(__FILE__, __LINE__, "main", msg.c_str());
|
|
}
|
|
((void (*)(void))bootstrap)();
|
|
}
|
|
|
|
VerilatedVpi::callCbs(cbStartOfSimulation);
|
|
|
|
topp->eval();
|
|
topp->clk = 0;
|
|
contextp->timeInc(1);
|
|
|
|
while (contextp->time() < sim_time && !contextp->gotFinish()) {
|
|
contextp->timeInc(1);
|
|
topp->eval();
|
|
VerilatedVpi::callValueCbs();
|
|
VerilatedVpi::callTimedCbs();
|
|
topp->clk = !topp->clk;
|
|
// mon_do();
|
|
#if VM_TRACE
|
|
if (tfp) tfp->dump(contextp->time());
|
|
#endif
|
|
}
|
|
|
|
VerilatedVpi::callCbs(cbEndOfSimulation);
|
|
|
|
if (!contextp->gotFinish()) {
|
|
vl_fatal(__FILE__, __LINE__, "main", "%Error: Timeout; never got a $finish");
|
|
}
|
|
topp->final();
|
|
|
|
#if VM_TRACE
|
|
if (tfp) tfp->close();
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
#endif
|