Fix parameters in a class body to be localparam (#4061)

This commit is contained in:
Ryszard Rozak 2023-03-23 10:20:35 +01:00 committed by GitHub
parent 277bd67f72
commit f439a7927f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 76 additions and 1 deletions

View File

@ -96,6 +96,7 @@ public:
bool m_pinAnsi = false; // In ANSI port list bool m_pinAnsi = false; // In ANSI port list
bool m_tracingParse = true; // Tracing disable for parser bool m_tracingParse = true; // Tracing disable for parser
bool m_inImplements = false; // Is inside class implements list 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_insideProperty = false; // Is inside property declaration
bool m_typedPropertyPort = false; // Typed property port occurred on port lists bool m_typedPropertyPort = false; // Typed property port occurred on port lists
bool m_modportImpExpActive bool m_modportImpExpActive
@ -1947,7 +1948,12 @@ net_type: // ==IEEE: net_type
; ;
varParamReset: varParamReset:
yPARAMETER { VARRESET_NONLIST(GPARAM); } yPARAMETER
{ if (GRAMMARP->m_insideClass) {
VARRESET_NONLIST(LPARAM);
} else {
VARRESET_NONLIST(GPARAM);
} }
| yLOCALPARAM { VARRESET_NONLIST(LPARAM); } | yLOCALPARAM { VARRESET_NONLIST(LPARAM); }
; ;
@ -6708,6 +6714,7 @@ class_declaration<nodep>: // ==IEEE: part of class_declaration
classFront parameter_port_listE classExtendsE classImplementsE ';' classFront parameter_port_listE classExtendsE classImplementsE ';'
/*mid*/ { // Allow resolving types declared in base extends class /*mid*/ { // Allow resolving types declared in base extends class
if ($<scp>3) SYMP->importExtends($<scp>3); if ($<scp>3) SYMP->importExtends($<scp>3);
GRAMMARP->m_insideClass = true;
} }
/*cont*/ class_itemListE yENDCLASS endLabelE /*cont*/ class_itemListE yENDCLASS endLabelE
{ $$ = $1; $1->addMembersp($2); { $$ = $1; $1->addMembersp($2);
@ -6715,6 +6722,7 @@ class_declaration<nodep>: // ==IEEE: part of class_declaration
$1->addExtendsp($4); $1->addExtendsp($4);
$1->addMembersp($7); $1->addMembersp($7);
SYMP->popScope($$); SYMP->popScope($$);
GRAMMARP->m_insideClass = false;
GRAMMARP->endLabel($<fl>9, $1, $9); } GRAMMARP->endLabel($<fl>9, $1, $9); }
; ;

View File

@ -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

View File

@ -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;

View File

@ -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