mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 20:22:41 +00:00
Fix false INFINITELOOP on forever..mailbox.get() (#4323).
This commit is contained in:
parent
aa608472ae
commit
19f7279542
1
Changes
1
Changes
@ -19,6 +19,7 @@ Verilator 5.015 devel
|
|||||||
* Support no-parentheses calls to static methods (#4432). [Krzysztof Boroński]
|
* Support no-parentheses calls to static methods (#4432). [Krzysztof Boroński]
|
||||||
* Support 'let'.
|
* Support 'let'.
|
||||||
* Fix Windows filename format, etc (#3873) (#4421). [Anthony Donlon].
|
* Fix Windows filename format, etc (#3873) (#4421). [Anthony Donlon].
|
||||||
|
* Fix false INFINITELOOP on forever..mailbox.get() (#4323). [Srinivasan Venkataramanan]
|
||||||
* Fix data type of condition operation on class objects (#4345) (#4352). [Ryszard Rozak, Antmicro Ltd]
|
* Fix data type of condition operation on class objects (#4345) (#4352). [Ryszard Rozak, Antmicro Ltd]
|
||||||
* Fix ++/-- under statements (#4399). [Aleksander Kiryk, Antmicro Ltd]
|
* Fix ++/-- under statements (#4399). [Aleksander Kiryk, Antmicro Ltd]
|
||||||
* Fix detection of mixed blocking and nonblocking assignment in nested assignments (#4404). [Ryszard Rozak, Antmicro Ltd]
|
* Fix detection of mixed blocking and nonblocking assignment in nested assignments (#4404). [Ryszard Rozak, Antmicro Ltd]
|
||||||
|
@ -3204,8 +3204,17 @@ private:
|
|||||||
iterateChildren(nodep);
|
iterateChildren(nodep);
|
||||||
}
|
}
|
||||||
|
|
||||||
void visit(AstFuncRef* nodep) override {
|
void visit(AstNodeCCall* nodep) override {
|
||||||
iterateChildren(nodep);
|
iterateChildren(nodep);
|
||||||
|
m_hasJumpDelay = true; // As don't analyze inside tasks for timing controls
|
||||||
|
}
|
||||||
|
void visit(AstNodeFTaskRef* nodep) override {
|
||||||
|
// Note excludes AstFuncRef as other visitor below
|
||||||
|
iterateChildren(nodep);
|
||||||
|
m_hasJumpDelay = true; // As don't analyze inside tasks for timing controls
|
||||||
|
}
|
||||||
|
void visit(AstFuncRef* nodep) override {
|
||||||
|
visit(static_cast<AstNodeFTaskRef*>(nodep));
|
||||||
if (m_params) { // Only parameters force us to do constant function call propagation
|
if (m_params) { // Only parameters force us to do constant function call propagation
|
||||||
replaceWithSimulation(nodep);
|
replaceWithSimulation(nodep);
|
||||||
}
|
}
|
||||||
|
23
test_regress/t/t_lint_infinite.pl
Executable file
23
test_regress/t/t_lint_infinite.pl
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#!/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(simulator => 1);
|
||||||
|
|
||||||
|
compile(
|
||||||
|
verilator_flags2 => ["--exe --main --timing"],
|
||||||
|
make_main => 0,
|
||||||
|
);
|
||||||
|
|
||||||
|
execute(
|
||||||
|
check_finished => 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
ok(1);
|
||||||
|
1;
|
36
test_regress/t/t_lint_infinite.v
Normal file
36
test_regress/t/t_lint_infinite.v
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||||||
|
// any use, without warranty, 2023 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
module t;
|
||||||
|
|
||||||
|
mailbox #(int) mbox;
|
||||||
|
|
||||||
|
task main();
|
||||||
|
// See issue #4323; not an INFINITELOOP due to delay inside get()
|
||||||
|
forever begin
|
||||||
|
int i;
|
||||||
|
mbox.get(i);
|
||||||
|
$display("[%0t] Got %0d", $time, i);
|
||||||
|
end
|
||||||
|
endtask
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
mbox = new (1);
|
||||||
|
|
||||||
|
#10;
|
||||||
|
fork
|
||||||
|
main();
|
||||||
|
join_none
|
||||||
|
|
||||||
|
#10;
|
||||||
|
mbox.put(10);
|
||||||
|
mbox.put(11);
|
||||||
|
|
||||||
|
#10;
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
endmodule
|
@ -10,5 +10,6 @@ module t ();
|
|||||||
forever begin end
|
forever begin end
|
||||||
// verilator lint_off UNSIGNED
|
// verilator lint_off UNSIGNED
|
||||||
for (reg [31:0] i=0; i>=0; i=i+1) begin end
|
for (reg [31:0] i=0; i>=0; i=i+1) begin end
|
||||||
|
$display; // So loop not eaten
|
||||||
end
|
end
|
||||||
endmodule
|
endmodule
|
||||||
|
@ -15,7 +15,6 @@ compile(
|
|||||||
"-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-CONSTRAINTIGN -Wno-MISINDENT",
|
"-Wno-PKGNODECL -Wno-IMPLICITSTATIC -Wno-CONSTRAINTIGN -Wno-MISINDENT",
|
||||||
"-Wno-CASEINCOMPLETE -Wno-CASTCONST -Wno-SYMRSVDWORD -Wno-WIDTHEXPAND -Wno-WIDTHTRUNC",
|
"-Wno-CASEINCOMPLETE -Wno-CASTCONST -Wno-SYMRSVDWORD -Wno-WIDTHEXPAND -Wno-WIDTHTRUNC",
|
||||||
"-Wno-REALCVT", # TODO note mostly related to $realtime - could suppress or fix upstream
|
"-Wno-REALCVT", # TODO note mostly related to $realtime - could suppress or fix upstream
|
||||||
"-Wno-INFINITELOOP" , # TODO issue #4323, false warning
|
|
||||||
"-Wno-RANDC", # TODO issue #4349, add support
|
"-Wno-RANDC", # TODO issue #4349, add support
|
||||||
"-Wno-ZERODLY", # TODO issue #4494, add support
|
"-Wno-ZERODLY", # TODO issue #4494, add support
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user