Fix tracing of slow coroutines (#3576 part) (#3579)

This commit is contained in:
Krzysztof Bieganski 2022-08-26 12:11:44 +02:00 committed by GitHub
parent 5c356a4680
commit 2af5304884
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 104 additions and 3 deletions

View File

@ -839,9 +839,11 @@ private:
V3GraphVertex* const funcVtxp = getCFuncVertexp(nodep);
if (!m_finding) { // If public, we need a unique activity code to allow for sets
// directly in this func
if (nodep->funcPublic() || nodep->dpiExportImpl()
|| nodep == v3Global.rootp()->evalp()) {
V3GraphVertex* const activityVtxp = getActivityVertexp(nodep, nodep->slow());
if (nodep->funcPublic() || nodep->dpiExportImpl() || nodep == v3Global.rootp()->evalp()
|| nodep->isCoroutine()) {
// Cannot treat a coroutine as slow, it may be resumed later
const bool slow = nodep->slow() && !nodep->isCoroutine();
V3GraphVertex* const activityVtxp = getActivityVertexp(nodep, slow);
new V3GraphEdge(&m_graph, activityVtxp, funcVtxp, 1);
}
}

View File

@ -0,0 +1,67 @@
$version Generated by VerilatedVcd $end
$date Thu Aug 25 09:56:30 2022 $end
$timescale 1ps $end
$scope module top $end
$scope module t $end
$var wire 1 # clk $end
$var wire 32 $ cyc [31:0] $end
$scope module clkgen $end
$var wire 1 # clk $end
$upscope $end
$upscope $end
$upscope $end
$enddefinitions $end
#0
0#
b00000000000000000000000000000000 $
#5
1#
b00000000000000000000000000000001 $
#10
0#
#15
1#
b00000000000000000000000000000010 $
#20
0#
#25
1#
b00000000000000000000000000000011 $
#30
0#
#35
1#
b00000000000000000000000000000100 $
#40
0#
#45
1#
b00000000000000000000000000000101 $
#50
0#
#55
1#
b00000000000000000000000000000110 $
#60
0#
#65
1#
b00000000000000000000000000000111 $
#70
0#
#75
1#
b00000000000000000000000000001000 $
#80
0#
#85
1#
b00000000000000000000000000001001 $
#90
0#
#95
1#
b00000000000000000000000000001010 $

View File

@ -0,0 +1,32 @@
#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2022 by Antmicro Ltd. 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
scenarios(simulator => 1);
if (!$Self->have_coroutines) {
skip("No coroutine support");
}
else {
top_filename("t/t_timing_clkgen1.v");
compile(
verilator_flags2 => ["--timing --trace -Wno-MINTYPMAXDLY"],
timing_loop => 1
);
execute(
check_finished => 1,
);
vcd_identical($Self->trace_filename, $Self->{golden_filename});
}
ok(1);
1;