Skip to content

Commit 9bd2294

Browse files
authored
Merge pull request #795 from diffblue/new1
Verilog: KNOWNBUG test for new
2 parents 6b0d346 + 48c423e commit 9bd2294

File tree

4 files changed

+31
-0
lines changed

4 files changed

+31
-0
lines changed

regression/verilog/class/new1.desc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
KNOWNBUG
2+
new1.sv
3+
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
--
8+
The class is not yet recognized as a type.

regression/verilog/class/new1.sv

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class myClass;
2+
endclass
3+
4+
module main;
5+
myClass x = new;
6+
endmodule

src/hw_cbmc_irep_ids.h

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ IREP_ID_ONE(verilog_implicit_typecast)
8686
IREP_ID_ONE(verilog_unique)
8787
IREP_ID_ONE(verilog_unique0)
8888
IREP_ID_ONE(verilog_priority)
89+
IREP_ID_ONE(verilog_new)
8990
IREP_ID_ONE(verilog_non_indexed_part_select)
9091
IREP_ID_ONE(verilog_indexed_part_select_plus)
9192
IREP_ID_ONE(verilog_indexed_part_select_minus)

src/verilog/parser.y

+16
Original file line numberDiff line numberDiff line change
@@ -1447,6 +1447,11 @@ enum_name_declaration_list:
14471447
class_scope: class_type TOK_COLONCOLON
14481448
;
14491449

1450+
class_scope_opt:
1451+
/* Optional */
1452+
| class_scope
1453+
;
1454+
14501455
integer_type:
14511456
integer_vector_type
14521457
| integer_atom_type
@@ -1863,6 +1868,12 @@ variable_decl_assignment:
18631868
{ $$ = $1; stack_expr($$).id(ID_declarator);
18641869
addswap($$, ID_type, $2);
18651870
addswap($$, ID_value, $4); }
1871+
| variable_identifier variable_dimension_brace '=' class_new
1872+
;
1873+
1874+
class_new:
1875+
TOK_NEW list_of_arguments_paren_opt
1876+
{ init($$, ID_verilog_new); mto($$, $2); }
18661877
;
18671878

18681879
// System Verilog standard 1800-2017
@@ -3639,6 +3650,11 @@ list_of_arguments_paren:
36393650
{ $$ = $2; }
36403651
;
36413652

3653+
list_of_arguments_paren_opt:
3654+
/* Optional */
3655+
| list_of_arguments_paren
3656+
;
3657+
36423658
list_of_arguments:
36433659
/* Optional */
36443660
{ init($$); }

0 commit comments

Comments
 (0)