diff --git a/src/verilog.y b/src/verilog.y index d98a33172..e2e0cd2e2 100644 --- a/src/verilog.y +++ b/src/verilog.y @@ -96,6 +96,7 @@ public: bool m_pinAnsi = false; // In ANSI port list bool m_tracingParse = true; // Tracing disable for parser bool m_inImplements = false; // Is inside class implements list + bool m_insideClass = false; // Is inside a class body bool m_insideProperty = false; // Is inside property declaration bool m_typedPropertyPort = false; // Typed property port occurred on port lists bool m_modportImpExpActive @@ -1947,7 +1948,12 @@ net_type: // ==IEEE: net_type ; varParamReset: - yPARAMETER { VARRESET_NONLIST(GPARAM); } + yPARAMETER + { if (GRAMMARP->m_insideClass) { + VARRESET_NONLIST(LPARAM); + } else { + VARRESET_NONLIST(GPARAM); + } } | yLOCALPARAM { VARRESET_NONLIST(LPARAM); } ; @@ -6708,6 +6714,7 @@ class_declaration: // ==IEEE: part of class_declaration classFront parameter_port_listE classExtendsE classImplementsE ';' /*mid*/ { // Allow resolving types declared in base extends class if ($3) SYMP->importExtends($3); + GRAMMARP->m_insideClass = true; } /*cont*/ class_itemListE yENDCLASS endLabelE { $$ = $1; $1->addMembersp($2); @@ -6715,6 +6722,7 @@ class_declaration: // ==IEEE: part of class_declaration $1->addExtendsp($4); $1->addMembersp($7); SYMP->popScope($$); + GRAMMARP->m_insideClass = false; GRAMMARP->endLabel($9, $1, $9); } ; diff --git a/test_regress/t/t_class_param_override_local_bad.out b/test_regress/t/t_class_param_override_local_bad.out new file mode 100644 index 000000000..dacafe468 --- /dev/null +++ b/test_regress/t/t_class_param_override_local_bad.out @@ -0,0 +1,14 @@ +%Error-PINNOTFOUND: t/t_class_param_override_local_bad.v:23:30: Parameter pin not found: '__paramNumber1' + 23 | class Cls3 implements Icls1#(2), Icls2#(0); + | ^ + ... For error description see https://verilator.org/warn/PINNOTFOUND?v=latest +%Error-PINNOTFOUND: t/t_class_param_override_local_bad.v:23:41: Parameter pin not found: '__paramNumber1' + 23 | class Cls3 implements Icls1#(2), Icls2#(0); + | ^ +%Error-PINNOTFOUND: t/t_class_param_override_local_bad.v:29:23: Parameter pin not found: '__paramNumber1' + 29 | automatic Cls1#(bit) cls1 = new; + | ^~~ +%Error-PINNOTFOUND: t/t_class_param_override_local_bad.v:30:23: Parameter pin not found: '__paramNumber1' + 30 | automatic Cls2#(1) cls2 = new; + | ^ +%Error: Exiting due to diff --git a/test_regress/t/t_class_param_override_local_bad.pl b/test_regress/t/t_class_param_override_local_bad.pl new file mode 100755 index 000000000..a5846c699 --- /dev/null +++ b/test_regress/t/t_class_param_override_local_bad.pl @@ -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 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; diff --git a/test_regress/t/t_class_param_override_local_bad.v b/test_regress/t/t_class_param_override_local_bad.v new file mode 100644 index 000000000..a608fbefa --- /dev/null +++ b/test_regress/t/t_class_param_override_local_bad.v @@ -0,0 +1,34 @@ +// 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 + +class Cls1; + parameter type T = int; +endclass + +class Cls2; + localparam int P = 0; +endclass + +interface class Icls1; + localparam LP1 = 1; +endclass + +interface class Icls2; + parameter LP1 = 1; +endclass + +class Cls3 implements Icls1#(2), Icls2#(0); +endclass + +module t (/*AUTOARG*/); + + initial begin + automatic Cls1#(bit) cls1 = new; + automatic Cls2#(1) cls2 = new; + automatic Cls3 cls3 = new; + $stop; + end +endmodule