-
Notifications
You must be signed in to change notification settings - Fork 903
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3734 from jix/fix_unbased_unsized_const
verilog: Fix const eval of unbased unsized constants
- Loading branch information
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module pass_through( | ||
input [63:0] inp, | ||
output [63:0] out | ||
); | ||
assign out = inp; | ||
endmodule | ||
|
||
module top; | ||
logic [63:0] s0c, s1c, sxc, s0d, s1d, sxd, d; | ||
|
||
pass_through pt(8, d); | ||
|
||
assign s0c = '0 << 8; | ||
assign s1c = '1 << 8; | ||
assign sxc = 'x << 8; | ||
assign s0d = '0 << d; | ||
assign s1d = '1 << d; | ||
assign sxd = 'x << d; | ||
|
||
always @* begin | ||
assert (s0c === 64'h0000_0000_0000_0000); | ||
assert (s1c === 64'hFFFF_FFFF_FFFF_FF00); | ||
assert (sxc === 64'hxxxx_xxxx_xxxx_xx00); | ||
assert (s0d === 64'h0000_0000_0000_0000); | ||
assert (s1d === 64'hFFFF_FFFF_FFFF_FF00); | ||
assert (sxd === 64'hxxxx_xxxx_xxxx_xx00); | ||
end | ||
endmodule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
read_verilog -sv unbased_unsized_shift.sv | ||
hierarchy | ||
proc | ||
flatten | ||
opt -full | ||
select -module top | ||
sat -verify -seq 1 -tempinduct -prove-asserts -show-all |