From 35fbbfc70d82581fcefd17251a60778e6f83a4ee Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Tue, 16 Aug 2016 14:50:40 -0700 Subject: [PATCH] put test harness on the heap in emulator --- csrc/emulator.cc | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/csrc/emulator.cc b/csrc/emulator.cc index 4d6eb07c..264e8d48 100644 --- a/csrc/emulator.cc +++ b/csrc/emulator.cc @@ -64,14 +64,14 @@ int main(int argc, char** argv) srand48(random_seed); Verilated::randReset(2); - VTestHarness tile; + VTestHarness *tile = new VTestHarness; #if VM_TRACE Verilated::traceEverOn(true); // Verilator must compute traced signals std::unique_ptr vcdfd(new VerilatedVcdFILE(vcdfile)); std::unique_ptr tfp(new VerilatedVcdC(vcdfd.get())); if (vcdfile) { - tile.trace(tfp.get(), 99); // Trace 99 levels of hierarchy + tile->trace(tfp.get(), 99); // Trace 99 levels of hierarchy tfp->open(""); } #endif @@ -82,25 +82,25 @@ int main(int argc, char** argv) // reset for several cycles to handle pipelined reset for (int i = 0; i < 10; i++) { - tile.reset = 1; - tile.clk = 0; - tile.eval(); - tile.clk = 1; - tile.eval(); - tile.reset = 0; + tile->reset = 1; + tile->clk = 0; + tile->eval(); + tile->clk = 1; + tile->eval(); + tile->reset = 0; } - while (!dtm->done() && !tile.io_success && trace_count < max_cycles) { - tile.clk = 0; - tile.eval(); + while (!dtm->done() && !tile->io_success && trace_count < max_cycles) { + tile->clk = 0; + tile->eval(); #if VM_TRACE bool dump = tfp && trace_count >= start; if (dump) tfp->dump(trace_count * 2); #endif - tile.clk = 1; - tile.eval(); + tile->clk = 1; + tile->eval(); #if VM_TRACE if (dump) tfp->dump(trace_count * 2 + 1); @@ -132,6 +132,7 @@ int main(int argc, char** argv) } delete dtm; + delete tile; return ret; }