forked from github/verilator
Add error on real edge event control.
This commit is contained in:
parent
038d57070b
commit
14f58ed6c7
1
Changes
1
Changes
@ -40,6 +40,7 @@ Verilator 4.228 2022-10-01
|
|||||||
* Add --build-jobs, and rework arguments for -j (#3623). [Kamil Rakoczy]
|
* Add --build-jobs, and rework arguments for -j (#3623). [Kamil Rakoczy]
|
||||||
* Rename --bin to --build-dep-bin.
|
* Rename --bin to --build-dep-bin.
|
||||||
* Rename debug flags --dumpi-tree, --dumpi-graph, etc. [Geza Lore]
|
* Rename debug flags --dumpi-tree, --dumpi-graph, etc. [Geza Lore]
|
||||||
|
* Add error on real edge event control.
|
||||||
* Fix thread saftey in SystemC VL_ASSIGN_SBW/WSB (#3494) (#3513). [Mladen Slijepcevic]
|
* Fix thread saftey in SystemC VL_ASSIGN_SBW/WSB (#3494) (#3513). [Mladen Slijepcevic]
|
||||||
* Fix crash in gate optimization of circular logic (#3543). [Bill Flynn]
|
* Fix crash in gate optimization of circular logic (#3543). [Bill Flynn]
|
||||||
* Fix arguments in non-static method call (#3547) (#3582). [Gustav Svensk]
|
* Fix arguments in non-static method call (#3547) (#3582). [Gustav Svensk]
|
||||||
|
@ -297,6 +297,7 @@ public:
|
|||||||
};
|
};
|
||||||
return clocked[m_e];
|
return clocked[m_e];
|
||||||
}
|
}
|
||||||
|
bool anEdge() const { return m_e == ET_BOTHEDGE || m_e == ET_POSEDGE || m_e == ET_NEGEDGE; }
|
||||||
VEdgeType invert() const {
|
VEdgeType invert() const {
|
||||||
switch (m_e) {
|
switch (m_e) {
|
||||||
case ET_CHANGED: return ET_CHANGED;
|
case ET_CHANGED: return ET_CHANGED;
|
||||||
|
@ -5131,6 +5131,10 @@ private:
|
|||||||
VL_DO_DANGLING(nodep->deleteTree(), nodep);
|
VL_DO_DANGLING(nodep->deleteTree(), nodep);
|
||||||
} else {
|
} else {
|
||||||
userIterateChildren(nodep, WidthVP(SELF, BOTH).p());
|
userIterateChildren(nodep, WidthVP(SELF, BOTH).p());
|
||||||
|
if (nodep->edgeType().anEdge() && nodep->sensp()->dtypep()->skipRefp()->isDouble()) {
|
||||||
|
nodep->sensp()->v3error(
|
||||||
|
"Edge event control not legal on real type (IEEE 1800-2017 6.12.1)");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void visit(AstWait* nodep) override {
|
void visit(AstWait* nodep) override {
|
||||||
|
5
test_regress/t/t_lint_edge_real.out
Normal file
5
test_regress/t/t_lint_edge_real.out
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
%Error: t/t_lint_edge_real.v:16:22: Edge event control not legal on real type (IEEE 1800-2017 6.12.1)
|
||||||
|
: ... In instance t
|
||||||
|
16 | always @ (posedge rbad) $stop;
|
||||||
|
| ^~~~
|
||||||
|
%Error: Exiting due to
|
19
test_regress/t/t_lint_edge_real.pl
Executable file
19
test_regress/t/t_lint_edge_real.pl
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/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-2009 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 => 1);
|
||||||
|
|
||||||
|
lint(
|
||||||
|
fails => 1,
|
||||||
|
expect_filename => $Self->{golden_filename},
|
||||||
|
);
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
18
test_regress/t/t_lint_edge_real.v
Normal file
18
test_regress/t/t_lint_edge_real.v
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||||||
|
// any use, without warranty, 2022 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
module t (/*AUTOARG*/
|
||||||
|
// Inputs
|
||||||
|
rbad, rok
|
||||||
|
);
|
||||||
|
input real rbad;
|
||||||
|
input real rok;
|
||||||
|
|
||||||
|
always @ (rok) $stop;
|
||||||
|
|
||||||
|
always @ (posedge rbad) $stop;
|
||||||
|
|
||||||
|
endmodule
|
Loading…
Reference in New Issue
Block a user