Extend out-of-range select (#5159) (#5164)

This commit is contained in:
Geza Lore 2024-06-09 22:05:14 +01:00 committed by GitHub
parent 29db25b70e
commit 2bc883f3b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 65 additions and 0 deletions

View File

@ -993,6 +993,12 @@ class WidthVisitor final : public VNVisitor {
<< " outside " << frommsb << ":" << fromlsb); << " outside " << frommsb << ":" << fromlsb);
UINFO(1, " Related node: " << nodep << endl); UINFO(1, " Related node: " << nodep << endl);
} }
// Extend it.
const int extendTo = nodep->msbConst() + 1;
AstNodeDType* const subDTypep = nodep->findLogicDType(
extendTo, extendTo, nodep->fromp()->dtypep()->numeric());
widthCheckSized(nodep, "errorless...", nodep->fromp(), subDTypep, EXTEND_EXP,
false /*noerror*/);
} }
// iterate FINAL is two blocks above // iterate FINAL is two blocks above
// //

View File

@ -72,6 +72,10 @@
: ... note: In instance 't' : ... note: In instance 't'
25 | sel2 = mi[1<<29 : 0]; 25 | sel2 = mi[1<<29 : 0];
| ^ | ^
%Warning-SELRANGE: t/t_select_bad_range4.v:25:16: Extracting 536870913 bits from only 536870873 bit number
: ... note: In instance 't'
25 | sel2 = mi[1<<29 : 0];
| ^
%Warning-WIDTHTRUNC: t/t_select_bad_range4.v:25:12: Operator ASSIGN expects 4 bits on the Assign RHS, but Assign RHS's SEL generates 536870913 bits. %Warning-WIDTHTRUNC: t/t_select_bad_range4.v:25:12: Operator ASSIGN expects 4 bits on the Assign RHS, but Assign RHS's SEL generates 536870913 bits.
: ... note: In instance 't' : ... note: In instance 't'
25 | sel2 = mi[1<<29 : 0]; 25 | sel2 = mi[1<<29 : 0];

View File

@ -12,6 +12,10 @@
: ... note: In instance 't' : ... note: In instance 't'
16 | assign mi = unk[3:2]; 16 | assign mi = unk[3:2];
| ^ | ^
%Warning-WIDTHEXPAND: t/t_select_bad_range5.v:16:19: Bit extraction of var[3:0] requires 2 bit index, not 1 bits.
: ... note: In instance 't'
16 | assign mi = unk[3:2];
| ^
%Warning-WIDTHTRUNC: t/t_select_bad_range5.v:16:14: Operator ASSIGNW expects 1 bits on the Assign RHS, but Assign RHS's SEL generates 2 bits. %Warning-WIDTHTRUNC: t/t_select_bad_range5.v:16:14: Operator ASSIGNW expects 1 bits on the Assign RHS, but Assign RHS's SEL generates 2 bits.
: ... note: In instance 't' : ... note: In instance 't'
16 | assign mi = unk[3:2]; 16 | assign mi = unk[3:2];

View File

@ -0,0 +1,11 @@
%Warning-SELRANGE: t/t_select_bad_range6.v:13:16: Extracting 31 bits from only 12 bit number
: ... note: In instance 't'
13 | assign o = i[31:1];
| ^
... For warning description see https://verilator.org/warn/SELRANGE?v=latest
... Use "/* verilator lint_off SELRANGE */" and lint_on around source to disable this message.
%Warning-SELRANGE: t/t_select_bad_range6.v:13:16: Selection index out of range: 31:1 outside 11:0
: ... note: In instance 't'
13 | assign o = i[31:1];
| ^
%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);
compile(
fails => $Self->{vlt_all},
expect_filename => $Self->{golden_filename},
);
ok(1);
1;

View File

@ -0,0 +1,21 @@
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2024 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
module t (clk);
input clk;
logic [11:0] i;
logic [30:0] o;
assign o = i[31:1];
always @(posedge clk) begin
i = 12'h123;
end
always @(negedge clk) begin
$write ("Bad select %x\n", o);
end
endmodule