wrap verilated model
This commit is contained in:
parent
db66021248
commit
a91adb3a7d
1 changed files with 47 additions and 22 deletions
|
@ -1,12 +1,11 @@
|
||||||
#include "VFlow___024root.h"
|
|
||||||
#include "tracer.h"
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
#include <cstdint>
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
|
#include <sys/types.h>
|
||||||
#include <vpi_user.h>
|
#include <vpi_user.h>
|
||||||
#include <VFlow.h>
|
#include <VFlow.h>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <vector>
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <verilated.h>
|
#include <verilated.h>
|
||||||
#include <verilated_vcd_c.h>
|
#include <verilated_vcd_c.h>
|
||||||
|
@ -15,18 +14,15 @@
|
||||||
#define MAX_SIM_TIME 100
|
#define MAX_SIM_TIME 100
|
||||||
#define VERILATOR_TRACE
|
#define VERILATOR_TRACE
|
||||||
|
|
||||||
std::vector<vpiHandle> regsHandle;
|
|
||||||
int regs[32];
|
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
class Tracer {
|
class Tracer {
|
||||||
#ifdef VERILATOR_TRACE
|
#ifdef VERILATOR_TRACE
|
||||||
std::shared_ptr<T> top;
|
std::shared_ptr<T> top;
|
||||||
std::unique_ptr<VerilatedVcdC> m_trace;
|
std::unique_ptr<VerilatedVcdC> m_trace;
|
||||||
uint64_t time = 0;
|
uint64_t cycle = 0;
|
||||||
#endif
|
#endif
|
||||||
public:
|
public:
|
||||||
Tracer(std::shared_ptr<T> top, std::filesystem::path wavefile) {
|
Tracer(T *top, std::filesystem::path wavefile) {
|
||||||
#ifdef VERILATOR_TRACE
|
#ifdef VERILATOR_TRACE
|
||||||
top = top;
|
top = top;
|
||||||
Verilated::traceEverOn(true);
|
Verilated::traceEverOn(true);
|
||||||
|
@ -46,7 +42,7 @@ class Tracer {
|
||||||
*/
|
*/
|
||||||
void update() {
|
void update() {
|
||||||
#ifdef VERILATOR_TRACE
|
#ifdef VERILATOR_TRACE
|
||||||
m_trace->dump(time++);
|
m_trace->dump(cycle++);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -88,6 +84,8 @@ class _RegistersVPI : public _RegistersBase<T, nr> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef _RegistersVPI<uint32_t, 32> Registers;
|
||||||
|
|
||||||
template <typename T, std::size_t n>
|
template <typename T, std::size_t n>
|
||||||
class Memory {
|
class Memory {
|
||||||
std::array<T, n> mem;
|
std::array<T, n> mem;
|
||||||
|
@ -101,30 +99,57 @@ class Memory {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef _RegistersVPI<uint32_t, 32> Registers;
|
template <typename T>
|
||||||
static int sim_time = 0;
|
class VlModuleInterfaceCommon : public T {
|
||||||
|
uint64_t sim_time = 0;
|
||||||
|
uint64_t posedge_cnt = 0;
|
||||||
|
std::unique_ptr<Tracer<T>> tracer;
|
||||||
|
public:
|
||||||
|
VlModuleInterfaceCommon<T>(bool do_trace, std::filesystem::path wavefile = "waveform.vcd") {
|
||||||
|
if(do_trace) tracer = std::make_unique<Tracer<T>>(this, wavefile);
|
||||||
|
}
|
||||||
|
void eval() {
|
||||||
|
if(this->is_posedge()) {
|
||||||
|
posedge_cnt++;
|
||||||
|
}
|
||||||
|
T::clock = !T::clock;
|
||||||
|
sim_time++;
|
||||||
|
T::eval();
|
||||||
|
if(tracer) tracer->update();
|
||||||
|
}
|
||||||
|
void eval(int n) {
|
||||||
|
for(int i = 0; i < n; i++) {
|
||||||
|
this->eval();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void reset_eval(int n) {
|
||||||
|
this->reset = 1;
|
||||||
|
this->eval(n);
|
||||||
|
this->reset = 0;
|
||||||
|
}
|
||||||
|
bool is_posedge() {
|
||||||
|
// Will be posedge when eval is called
|
||||||
|
return T::clock == 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef VlModuleInterfaceCommon<VFlow> VlModule;
|
||||||
|
|
||||||
int main(int argc, char **argv, char **env) {
|
int main(int argc, char **argv, char **env) {
|
||||||
int sim_time = 0;
|
|
||||||
int posedge_cnt = 0;
|
|
||||||
Verilated::commandArgs(argc, argv);
|
Verilated::commandArgs(argc, argv);
|
||||||
|
|
||||||
auto top = std::make_shared<VFlow>();
|
auto top = std::make_shared<VlModule>(false, "waveform.vcd");
|
||||||
auto top_tracer = std::make_unique<Tracer<VFlow>>(top, "waveform.vcd");
|
|
||||||
|
|
||||||
Registers regs("TOP.Flow.reg_0.regFile_");
|
Registers regs("TOP.Flow.reg_0.regFile_");
|
||||||
|
|
||||||
top->reset = 0;
|
top->reset_eval(10);
|
||||||
top->eval();
|
for (int i = 0; i < MAX_SIM_TIME; i++) {
|
||||||
for (sim_time = 10; sim_time < MAX_SIM_TIME; sim_time++) {
|
if(top->is_posedge()) {
|
||||||
top->clock = !top->clock;
|
|
||||||
if(top->clock == 1) {
|
|
||||||
// Posedge
|
// Posedge
|
||||||
++posedge_cnt;
|
|
||||||
regs.update();
|
regs.update();
|
||||||
regs.print_regs();
|
regs.print_regs();
|
||||||
}
|
}
|
||||||
top->eval();
|
top->eval();
|
||||||
}
|
}
|
||||||
exit(EXIT_SUCCESS);
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue