Refine dynamic NBA condition (#4773)

Signed-off-by: Krzysztof Bieganski <kbieganski@antmicro.com>
This commit is contained in:
Krzysztof Bieganski 2023-12-20 18:12:17 +01:00 committed by GitHub
parent 69b779b4a8
commit 016e630ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 1 deletions

View File

@ -414,7 +414,9 @@ class DynScopeVisitor final : public VNVisitor {
void visit(AstAssignDly* nodep) override {
if (m_procp && !nodep->user2() // Unhandled AssignDly in function/task
&& nodep->lhsp()->exists( // And writes to a local variable
[](AstVarRef* refp) { return refp->varp()->isFuncLocal(); })) {
[](AstVarRef* refp) {
return refp->access().isWriteOrRW() && refp->varp()->isFuncLocal();
})) {
nodep->user2(true);
// Put it in a fork to prevent lifetime issues with the local
AstFork* const forkp = new AstFork{nodep->fileline(), "", nullptr};

View File

@ -0,0 +1,17 @@
#!/usr/bin/env perl
if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; }
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
#
# Copyright 2019 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(
);
ok(1);
1;

View File

@ -0,0 +1,22 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2023 by Antmicro Ltd.
// SPDX-License-Identifier: CC0-1.0
module t (
input clk,
input [7:0] d,
input [2:0] a,
output [7:0] q
);
always_ff @(posedge clk) tick(a);
logic [7:0] d_ = d;
logic [7:0] q_;
assign q = q_;
task automatic tick(logic [2:0] a);
q_[a] <= d_[a];
endtask
endmodule