Fix top level parameter overwrite when a package has same parameter (#3241) (#3247)

This commit is contained in:
Adrien Le Masle 2021-12-11 19:55:59 +00:00 committed by GitHub
parent 59d170c6f8
commit 00ef0519f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 52 additions and 0 deletions

View File

@ -1127,6 +1127,7 @@ class LinkDotFindVisitor final : public AstNVisitor {
}
if (ins) {
if (m_statep->forPrimary() && nodep->isGParam()
&& VN_IS(m_modSymp->nodep(), Module)
&& (m_statep->rootEntp()->nodep() == m_modSymp->parentp()->nodep())) {
// This is the toplevel module. Check for command line overwrites of parameters
// We first search if the parameter is overwritten and then replace it with a

View 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 => ['-GPARAM_A=1'],
ms_flags2 => ['-GPARAM_A=1'],
);
execute(
check_finished => 1,
);
ok(1);
1;

View File

@ -0,0 +1,28 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed into the Public Domain, for any use,
// without warranty, 2021 by Adrien Le Masle.
// SPDX-License-Identifier: CC0-1.0
package pack_a;
parameter PARAM_A = 0;
endpackage : pack_a
//module t;
module t (/*AUTOARG*/
// Inputs
clk
);
input clk;
parameter PARAM_A = 0;
initial begin
$display(PARAM_A);
if (PARAM_A != 1) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule