forked from github/verilator
Fix output of loops on waiving (#2355)
When an unopt loop is waived, we also don't want the loop's example path being plot. Signed-off-by: Stefan Wallentowitz <stefan.wallentowitz@hm.edu>
This commit is contained in:
parent
7f32d4dc45
commit
68a2ed6776
@ -360,8 +360,8 @@ void FileLine::v3errorEnd(std::ostringstream& sstr, const string& locationStr) {
|
||||
lstr << std::setw(ascii().length()) << " "
|
||||
<< ": " << locationStr;
|
||||
}
|
||||
if (warnIsOff(V3Error::errorCode())
|
||||
|| V3Config::waive(this, V3Error::errorCode(), sstr.str())) {
|
||||
m_waive = V3Config::waive(this, V3Error::errorCode(), sstr.str());
|
||||
if (warnIsOff(V3Error::errorCode()) || m_waive) {
|
||||
V3Error::suppressThisWarning();
|
||||
} else if (!V3Error::errorContexted()) {
|
||||
nsstr << warnContextPrimary();
|
||||
|
@ -103,6 +103,7 @@ class FileLine {
|
||||
VFileContent* m_contentp; // Source text contents line is within
|
||||
FileLine* m_parent; // Parent line that included this line
|
||||
std::bitset<V3ErrorCode::_ENUM_MAX> m_warnOn;
|
||||
bool m_waive; // Waive warning
|
||||
|
||||
protected:
|
||||
// User routines should never need to change line numbers
|
||||
@ -134,7 +135,8 @@ public:
|
||||
, m_contentLineno(0)
|
||||
, m_contentp(NULL)
|
||||
, m_parent(NULL)
|
||||
, m_warnOn(defaultFileLine().m_warnOn) {}
|
||||
, m_warnOn(defaultFileLine().m_warnOn)
|
||||
, m_waive(false) {}
|
||||
explicit FileLine(FileLine* fromp)
|
||||
: m_firstLineno(fromp->m_firstLineno)
|
||||
, m_firstColumn(fromp->m_firstColumn)
|
||||
@ -144,7 +146,8 @@ public:
|
||||
, m_contentLineno(fromp->m_contentLineno)
|
||||
, m_contentp(fromp->m_contentp)
|
||||
, m_parent(fromp->m_parent)
|
||||
, m_warnOn(fromp->m_warnOn) {}
|
||||
, m_warnOn(fromp->m_warnOn)
|
||||
, m_waive(fromp->m_waive) {}
|
||||
struct EmptySecret {}; // Constructor selection
|
||||
explicit FileLine(EmptySecret);
|
||||
FileLine* copyOrSameFileLine();
|
||||
@ -213,6 +216,7 @@ public:
|
||||
void warnStyleOff(bool flag);
|
||||
void warnStateFrom(const FileLine& from) { m_warnOn = from.m_warnOn; }
|
||||
void warnResetDefault() { warnStateFrom(defaultFileLine()); }
|
||||
bool lastWarnWaived() { return m_waive; }
|
||||
|
||||
// Specific flag ACCESSORS/METHODS
|
||||
bool coverageOn() const { return m_warnOn.test(V3ErrorCode::I_COVERAGE); }
|
||||
|
@ -816,7 +816,8 @@ private:
|
||||
nodep->v3warn(UNOPT,
|
||||
"Signal unoptimizable: Feedback to public clock or circular logic: "
|
||||
<< nodep->prettyNameQ());
|
||||
if (!nodep->fileline()->warnIsOff(V3ErrorCode::UNOPT)) {
|
||||
if (!nodep->fileline()->warnIsOff(V3ErrorCode::UNOPT)
|
||||
&& !nodep->fileline()->lastWarnWaived()) {
|
||||
nodep->fileline()->modifyWarnOff(V3ErrorCode::UNOPT,
|
||||
true); // Complain just once
|
||||
// Give the user an example.
|
||||
@ -834,7 +835,8 @@ private:
|
||||
nodep->v3warn(UNOPTFLAT,
|
||||
"Signal unoptimizable: Feedback to clock or circular logic: "
|
||||
<< nodep->prettyNameQ());
|
||||
if (!nodep->fileline()->warnIsOff(V3ErrorCode::UNOPTFLAT)) {
|
||||
if (!nodep->fileline()->warnIsOff(V3ErrorCode::UNOPTFLAT)
|
||||
&& !nodep->fileline()->lastWarnWaived()) {
|
||||
nodep->fileline()->modifyWarnOff(V3ErrorCode::UNOPTFLAT,
|
||||
true); // Complain just once
|
||||
// Give the user an example.
|
||||
|
3
test_regress/t/t_unopt_combo.vlt
Normal file
3
test_regress/t/t_unopt_combo.vlt
Normal file
@ -0,0 +1,3 @@
|
||||
`verilator_config
|
||||
|
||||
lint_off -rule UNOPTFLAT -file "*t_unopt_combo.v" -match "Signal unoptimizable: Feedback to clock or circular logic: 't.c'"
|
0
test_regress/t/t_unopt_combo_waive.out
Normal file
0
test_regress/t/t_unopt_combo_waive.out
Normal file
21
test_regress/t/t_unopt_combo_waive.pl
Executable file
21
test_regress/t/t_unopt_combo_waive.pl
Executable file
@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env perl
|
||||
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
|
||||
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||
#
|
||||
# Copyright 2003 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(vlt_all => 1);
|
||||
|
||||
top_filename("t/t_unopt_combo.v");
|
||||
|
||||
compile(
|
||||
v_flags2 => ['+define+ATTRIBUTES', "t/t_unopt_combo.vlt"],
|
||||
expect_filename => $Self->{golden_filename}, # Expect no output, as we waived
|
||||
);
|
||||
|
||||
ok(1);
|
||||
1;
|
Loading…
Reference in New Issue
Block a user