Fix hierarchical references used inside a function (#2267) (#2572)

This commit is contained in:
James Pallister 2020-09-27 15:10:44 +01:00 committed by GitHub
parent 4ba2637360
commit e3a1954e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 71 additions and 1 deletions

View File

@ -25,6 +25,7 @@ Iztok Jeras
James Hanlon James Hanlon
James Hutchinson James Hutchinson
Jamey Hicks Jamey Hicks
James Pallister
Jan Van Winkel Jan Van Winkel
Jeremy Bennett Jeremy Bennett
John Coiner John Coiner

View File

@ -203,7 +203,7 @@ private:
} }
virtual void visit(AstVarXRef* nodep) override { virtual void visit(AstVarXRef* nodep) override {
UINFO(9, " VARXREF " << nodep << endl); UINFO(9, " VARXREF " << nodep << endl);
if (m_namedScope != "" && nodep->inlinedDots() == "") { if (m_namedScope != "" && nodep->inlinedDots() == "" && !m_ftaskp) {
nodep->inlinedDots(m_namedScope); nodep->inlinedDots(m_namedScope);
UINFO(9, " rescope to " << nodep << endl); UINFO(9, " rescope to " << nodep << endl);
} }

21
test_regress/t/t_hier_task.pl Executable file
View 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(simulator => 1);
compile(
);
execute(
check_finished => 1,
);
ok(1);
1;

View File

@ -0,0 +1,48 @@
// DESCRIPTION: Verilator: Test for issue #2267
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2020 by James Pallister.
// SPDX-License-Identifier: CC0-1.0
module mod_a;
mod_inner u_inner;
mod_a_mon u_a_mon;
initial begin
bit x;
u_inner.x = 1;
u_a_mon.y = 0;
u_a_mon.accessor;
if (u_a_mon.y != 1) begin
$write("%%Error: Incorrect value placed in submodule\n");
$stop;
end
u_inner.x = 0;
u_a_mon.accessor;
if (u_a_mon.y != 0) begin
$write("%%Error: Incorrect value placed in submodule\n");
$stop;
end
$write("*-* All Finished *-*\n");
$finish;
end
endmodule : mod_a
module mod_inner;
logic x;
endmodule : mod_inner
module mod_a_mon;
bit y;
function void accessor;
begin : accessor_block
bit read_x = mod_a.u_inner.x;
y = read_x;
end
endfunction
endmodule