df992995ca
ysyx_22040000 李心杨 Linux calcite 6.1.65 #1-NixOS SMP PREEMPT_DYNAMIC Sun Dec 3 06:32:13 UTC 2023 x86_64 GNU/Linux 18:31:48 up 21:29, 2 users, load average: 1.18, 0.83, 0.63
105 lines
3.3 KiB
C++
105 lines
3.3 KiB
C++
// Verilated -*- C++ -*-
|
|
// DESCRIPTION: Verilator output: Model implementation (design independent parts)
|
|
|
|
#include "Vexample__pch.h"
|
|
|
|
//============================================================
|
|
// Constructors
|
|
|
|
Vexample::Vexample(VerilatedContext* _vcontextp__, const char* _vcname__)
|
|
: VerilatedModel{*_vcontextp__}
|
|
, vlSymsp{new Vexample__Syms(contextp(), _vcname__, this)}
|
|
, a{vlSymsp->TOP.a}
|
|
, b{vlSymsp->TOP.b}
|
|
, f{vlSymsp->TOP.f}
|
|
, rootp{&(vlSymsp->TOP)}
|
|
{
|
|
// Register model with the context
|
|
contextp()->addModel(this);
|
|
}
|
|
|
|
Vexample::Vexample(const char* _vcname__)
|
|
: Vexample(Verilated::threadContextp(), _vcname__)
|
|
{
|
|
}
|
|
|
|
//============================================================
|
|
// Destructor
|
|
|
|
Vexample::~Vexample() {
|
|
delete vlSymsp;
|
|
}
|
|
|
|
//============================================================
|
|
// Evaluation function
|
|
|
|
#ifdef VL_DEBUG
|
|
void Vexample___024root___eval_debug_assertions(Vexample___024root* vlSelf);
|
|
#endif // VL_DEBUG
|
|
void Vexample___024root___eval_static(Vexample___024root* vlSelf);
|
|
void Vexample___024root___eval_initial(Vexample___024root* vlSelf);
|
|
void Vexample___024root___eval_settle(Vexample___024root* vlSelf);
|
|
void Vexample___024root___eval(Vexample___024root* vlSelf);
|
|
|
|
void Vexample::eval_step() {
|
|
VL_DEBUG_IF(VL_DBG_MSGF("+++++TOP Evaluate Vexample::eval_step\n"); );
|
|
#ifdef VL_DEBUG
|
|
// Debug assertions
|
|
Vexample___024root___eval_debug_assertions(&(vlSymsp->TOP));
|
|
#endif // VL_DEBUG
|
|
vlSymsp->__Vm_deleter.deleteAll();
|
|
if (VL_UNLIKELY(!vlSymsp->__Vm_didInit)) {
|
|
vlSymsp->__Vm_didInit = true;
|
|
VL_DEBUG_IF(VL_DBG_MSGF("+ Initial\n"););
|
|
Vexample___024root___eval_static(&(vlSymsp->TOP));
|
|
Vexample___024root___eval_initial(&(vlSymsp->TOP));
|
|
Vexample___024root___eval_settle(&(vlSymsp->TOP));
|
|
}
|
|
VL_DEBUG_IF(VL_DBG_MSGF("+ Eval\n"););
|
|
Vexample___024root___eval(&(vlSymsp->TOP));
|
|
// Evaluate cleanup
|
|
Verilated::endOfEval(vlSymsp->__Vm_evalMsgQp);
|
|
}
|
|
|
|
//============================================================
|
|
// Events and timing
|
|
bool Vexample::eventsPending() { return false; }
|
|
|
|
uint64_t Vexample::nextTimeSlot() {
|
|
VL_FATAL_MT(__FILE__, __LINE__, "", "%Error: No delays in the design");
|
|
return 0;
|
|
}
|
|
|
|
//============================================================
|
|
// Utilities
|
|
|
|
const char* Vexample::name() const {
|
|
return vlSymsp->name();
|
|
}
|
|
|
|
//============================================================
|
|
// Invoke final blocks
|
|
|
|
void Vexample___024root___eval_final(Vexample___024root* vlSelf);
|
|
|
|
VL_ATTR_COLD void Vexample::final() {
|
|
Vexample___024root___eval_final(&(vlSymsp->TOP));
|
|
}
|
|
|
|
//============================================================
|
|
// Implementations of abstract methods from VerilatedModel
|
|
|
|
const char* Vexample::hierName() const { return vlSymsp->name(); }
|
|
const char* Vexample::modelName() const { return "Vexample"; }
|
|
unsigned Vexample::threads() const { return 1; }
|
|
void Vexample::prepareClone() const { contextp()->prepareClone(); }
|
|
void Vexample::atClone() const {
|
|
contextp()->threadPoolpOnClone();
|
|
}
|
|
|
|
//============================================================
|
|
// Trace configuration
|
|
|
|
VL_ATTR_COLD void Vexample::trace(VerilatedVcdC* tfp, int levels, int options) {
|
|
vl_fatal(__FILE__, __LINE__, __FILE__,"'Vexample::trace()' called on model that was Verilated without --trace option");
|
|
}
|