From b12f8b3d73f7bbcfff231fb859551f5acfac6745 Mon Sep 17 00:00:00 2001 From: Yan Xu <934348725@qq.com> Date: Fri, 1 Mar 2024 22:14:49 +0800 Subject: [PATCH] Fix V3Unknown unpacked struct x-assign (#4934) --- docs/CONTRIBUTORS | 1 + src/V3Unknown.cpp | 4 ++- test_regress/t/t_struct_unpacked_array.pl | 22 ++++++++++++ test_regress/t/t_struct_unpacked_array.v | 41 +++++++++++++++++++++++ 4 files changed, 67 insertions(+), 1 deletion(-) create mode 100755 test_regress/t/t_struct_unpacked_array.pl create mode 100644 test_regress/t/t_struct_unpacked_array.v diff --git a/docs/CONTRIBUTORS b/docs/CONTRIBUTORS index c700e0810..89010f63c 100644 --- a/docs/CONTRIBUTORS +++ b/docs/CONTRIBUTORS @@ -189,6 +189,7 @@ Vito Gamberini William D. Jones Wilson Snyder Xi Zhang +Yan Xu Yinan Xu Yoda Lee Yossi Nivin diff --git a/src/V3Unknown.cpp b/src/V3Unknown.cpp index 69fca0873..d8e5d5679 100644 --- a/src/V3Unknown.cpp +++ b/src/V3Unknown.cpp @@ -471,7 +471,9 @@ class UnknownVisitor final : public VNVisitor { VL_DO_DANGLING(condp->deleteTree(), condp); } else if (!lvalue // Making a scalar would break if we're making an array - && !VN_IS(nodep->dtypep()->skipRefp(), NodeArrayDType)) { + && !VN_IS(nodep->dtypep()->skipRefp(), NodeArrayDType) + && !(VN_IS(nodep->dtypep()->skipRefp(), NodeUOrStructDType) + && !VN_CAST(nodep->dtypep()->skipRefp(), NodeUOrStructDType)->packed())) { // ARRAYSEL(...) -> COND(LT(bitunlinkFrBack(&replaceHandle); diff --git a/test_regress/t/t_struct_unpacked_array.pl b/test_regress/t/t_struct_unpacked_array.pl new file mode 100755 index 000000000..eacb5f80e --- /dev/null +++ b/test_regress/t/t_struct_unpacked_array.pl @@ -0,0 +1,22 @@ +#!/usr/bin/env perl +if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } +# DESCRIPTION: Verilator: Verilog Test driver/expect definition +# +# Copyright 2023 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=>["--x-assign unique --x-initial unique -Wno-WIDTH -O0"] + ); + +execute( + check_finished => 1, + ); + +ok(1); +1; diff --git a/test_regress/t/t_struct_unpacked_array.v b/test_regress/t/t_struct_unpacked_array.v new file mode 100644 index 000000000..4d29b517a --- /dev/null +++ b/test_regress/t/t_struct_unpacked_array.v @@ -0,0 +1,41 @@ +// DESCRIPTION: Verilator: Verilog Test module +// +// This file ONLY is placed under the Creative Commons Public Domain, for +// any use, without warranty, 2023 by Wilson Snyder. +// SPDX-License-Identifier: CC0-1.0 + + +typedef struct { + logic a; +} Data_t; + +module t (/*AUTOARG*/ + clk +); + input clk; + int cyc = 0; + + localparam int SIZE = 20; + reg[$clog2(SIZE)-1 : 0] ptr; + Data_t buffer[SIZE]; + Data_t out; + reg out1; + + always_ff @( posedge clk ) begin + int i; + cyc <= cyc + 1; + if (cyc == 0) begin + for (i=0;i