mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix toggle coverage aggregation on same line (#5248)
Documentation states that minimum of all reported coverage of all signals in a line should be taken. Previous logic would break if there were any signals with zero coverage followed by signals with nonzero coverage - a minimum from those nonzero toggle count would be taken, disregarding zero coverage of previous signals. Internal-tag: [#62193] Signed-off-by: Krzysztof Obłonczek <koblonczek@antmicro.com>
This commit is contained in:
parent
60f9e21d8c
commit
67ea819d82
@ -119,6 +119,7 @@ Kritik Bhimani
|
|||||||
Krzysztof Bieganski
|
Krzysztof Bieganski
|
||||||
Krzysztof Boronski
|
Krzysztof Boronski
|
||||||
Krzysztof Boroński
|
Krzysztof Boroński
|
||||||
|
Krzysztof Obłonczek
|
||||||
Kuba Ober
|
Kuba Ober
|
||||||
Larry Doolittle
|
Larry Doolittle
|
||||||
Liam Braun
|
Liam Braun
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
#include "config_build.h"
|
#include "config_build.h"
|
||||||
#include "verilatedos.h"
|
#include "verilatedos.h"
|
||||||
|
|
||||||
|
#include <limits>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
@ -36,7 +37,7 @@ class VlcSourceCount final {
|
|||||||
|
|
||||||
// MEMBERS
|
// MEMBERS
|
||||||
const int m_lineno; ///< Line number
|
const int m_lineno; ///< Line number
|
||||||
uint64_t m_count = 0; ///< Count
|
uint64_t m_count = std::numeric_limits<uint64_t>::max(); ///< Count
|
||||||
bool m_ok = false; ///< Coverage is above threshold
|
bool m_ok = false; ///< Coverage is above threshold
|
||||||
PointsSet m_points; // Points on this line
|
PointsSet m_points; // Points on this line
|
||||||
|
|
||||||
@ -53,13 +54,11 @@ public:
|
|||||||
|
|
||||||
// METHODS
|
// METHODS
|
||||||
void incCount(uint64_t count, bool ok) {
|
void incCount(uint64_t count, bool ok) {
|
||||||
if (!m_count) {
|
if (m_count == std::numeric_limits<uint64_t>::max())
|
||||||
m_count = count;
|
|
||||||
m_ok = ok;
|
m_ok = ok;
|
||||||
} else {
|
else
|
||||||
m_count = std::min(m_count, count);
|
m_ok = m_ok && ok;
|
||||||
if (!ok) m_ok = false;
|
m_count = std::min(m_count, count);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
void insertPoint(const VlcPoint* pointp) { m_points.emplace(pointp); }
|
void insertPoint(const VlcPoint* pointp) { m_points.emplace(pointp); }
|
||||||
PointsSet& points() { return m_points; }
|
PointsSet& points() { return m_points; }
|
||||||
|
@ -221,7 +221,7 @@
|
|||||||
+000020 point: comment=block
|
+000020 point: comment=block
|
||||||
000020 $write(""); // Always covered
|
000020 $write(""); // Always covered
|
||||||
+000020 point: comment=block
|
+000020 point: comment=block
|
||||||
000020 if (0) begin // CHECK_COVER(0,"top.t.b*",0)
|
%000000 if (0) begin // CHECK_COVER(0,"top.t.b*",0)
|
||||||
-000000 point: comment=if
|
-000000 point: comment=if
|
||||||
+000020 point: comment=else
|
+000020 point: comment=else
|
||||||
// Make sure that we don't optimize away zero buckets
|
// Make sure that we don't optimize away zero buckets
|
||||||
@ -350,7 +350,7 @@
|
|||||||
// because under coverage_module_off
|
// because under coverage_module_off
|
||||||
%000001 $write("");
|
%000001 $write("");
|
||||||
-000001 point: comment=if
|
-000001 point: comment=if
|
||||||
%000001 if (0) ; // CHECK_COVER(0,"top.t.o1",1)
|
%000000 if (0) ; // CHECK_COVER(0,"top.t.o1",1)
|
||||||
-000000 point: comment=if
|
-000000 point: comment=if
|
||||||
-000001 point: comment=else
|
-000001 point: comment=else
|
||||||
end
|
end
|
||||||
|
6
test_regress/t/t_cover_toggle_min.out
Normal file
6
test_regress/t/t_cover_toggle_min.out
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
TN:verilator_coverage
|
||||||
|
SF:t/t_cover_toggle_min.v
|
||||||
|
DA:10,0
|
||||||
|
DA:11,0
|
||||||
|
DA:12,1
|
||||||
|
end_of_record
|
34
test_regress/t/t_cover_toggle_min.pl
Executable file
34
test_regress/t/t_cover_toggle_min.pl
Executable file
@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/env perl
|
||||||
|
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2024 by Wilson Snyder. 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);
|
||||||
|
|
||||||
|
compile(
|
||||||
|
verilator_flags2 => ['--binary', '--coverage-toggle'],
|
||||||
|
);
|
||||||
|
|
||||||
|
execute(
|
||||||
|
all_run_flags => [" +verilator+coverage+file+$Self->{obj_dir}/coverage.dat"],
|
||||||
|
check_finished => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (-e ("$Self->{obj_dir}/coverage.dat")) { # Don't try to write .info if test was skipped
|
||||||
|
run(cmd => ["$ENV{VERILATOR_ROOT}/bin/verilator_coverage",
|
||||||
|
"-write-info", "$Self->{obj_dir}/coverage.info",
|
||||||
|
"$Self->{obj_dir}/coverage.dat",
|
||||||
|
],
|
||||||
|
verilator_run => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
files_identical("$Self->{obj_dir}/coverage.info", $Self->{golden_filename});
|
||||||
|
}
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
22
test_regress/t/t_cover_toggle_min.v
Normal file
22
test_regress/t/t_cover_toggle_min.v
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// Copyright 2024 by Antmicro. 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
|
||||||
|
|
||||||
|
module t();
|
||||||
|
logic[1:0] a;
|
||||||
|
logic[1:0] b;
|
||||||
|
logic[1:0] c;
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
#1 a = 2'b01;
|
||||||
|
#1 b = 2'b10;
|
||||||
|
#1 c = 2'b11;
|
||||||
|
#1 c = 2'b10;
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
endmodule
|
@ -1,4 +1,4 @@
|
|||||||
TN:verilator_coverage
|
TN:verilator_coverage
|
||||||
SF:file1.sp
|
SF:file1.sp
|
||||||
DA:159,1
|
DA:159,0
|
||||||
end_of_record
|
end_of_record
|
||||||
|
Loading…
Reference in New Issue
Block a user