Giter Site home page Giter Site logo

Comments (5)

terpstra avatar terpstra commented on September 24, 2024

@jackkoenig This issue is actually blocking me right now. Aside from manually hacking this file in my clone of the repository, is there any way I can override this so as to continue to make progress with the unfixed chiseltest? I noticed that, unfortunately, VerilatorSimulator.generateHarness is private. :-/

from chiseltest.

terpstra avatar terpstra commented on September 24, 2024

It seems that now one is supposed to use timeInc, which would help here, since the simulator state is not a singleton. Not sure how to do this, though.

from chiseltest.

terpstra avatar terpstra commented on September 24, 2024

verilator/verilator#2660 (comment)

from chiseltest.

terpstra avatar terpstra commented on September 24, 2024

Find the fix below. I'd push it into a PR, but I don't have commit rights.

From 2d0144262231b807acb3aab8463763d6af7f2d60 Mon Sep 17 00:00:00 2001
From: "Wesley W. Terpstra" <[email protected]>
Date: Thu, 7 Jul 2022 22:32:27 -0700
Subject: [PATCH] verilator: fix $time

We need to set the time on the simulator context.
Otherwise, $time returns 0 all the time.
---
 .../simulator/jna/VerilatorCppJNAHarnessGenerator.scala         | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/main/scala/chiseltest/simulator/jna/VerilatorCppJNAHarnessGenerator.scala b/src/main/scala/chiseltest/simulator/jna/VerilatorCppJNAHarnessGenerator.scala
index 3e32a65..c4016e9 100644
--- a/src/main/scala/chiseltest/simulator/jna/VerilatorCppJNAHarnessGenerator.scala
+++ b/src/main/scala/chiseltest/simulator/jna/VerilatorCppJNAHarnessGenerator.scala
@@ -258,12 +258,14 @@ static sim_state* create_sim_state() {
                          |
                          |static int64_t _step(VERILATED_C* tfp, TOP_CLASS* top, vluint64_t& main_time) {
                          |    $clockLow
+                         |    Verilated::defaultContextp()->time(main_time);
                          |    top->eval();
                          |#if VM_TRACE
                          |    if (tfp) tfp->dump(main_time);
                          |#endif
                          |    main_time++;
                          |    $clockHigh
+                         |    Verilated::defaultContextp()->time(main_time);
                          |    top->eval();
                          |#if VM_TRACE
                          |    if (tfp) tfp->dump(main_time);
-- 
2.27.0

from chiseltest.

terpstra avatar terpstra commented on September 24, 2024

I tried upgrading the code to use a locally allocated context, but there were too many call sites into the test harness where you did not have a sim_state pointer, so I gave up and took the easy fix.

from chiseltest.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.