mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-03 16:29:25 +02:00
By adding ivtest to the iverilog source tree, it is easier to keep the regression test synchronized with the source that is being tested. This should be especially helpful for PRs that add a new feature, and have a matching ivtest PR with the regression test for that feature.
204 lines
8.0 KiB
Verilog
204 lines
8.0 KiB
Verilog
// Test implicit casts during net declaration assignments.
|
|
|
|
`ifdef __ICARUS__
|
|
`define SUPPORT_REAL_NETS_IN_IVTEST
|
|
`define SUPPORT_TWO_STATE_NETS_IN_IVTEST
|
|
`endif
|
|
|
|
module implicit_cast();
|
|
|
|
real src_r;
|
|
|
|
bit unsigned [7:0] src_u2;
|
|
bit signed [7:0] src_s2;
|
|
|
|
logic unsigned [7:0] src_u4;
|
|
logic signed [7:0] src_s4;
|
|
|
|
logic unsigned [7:0] src_ux;
|
|
logic signed [7:0] src_sx;
|
|
|
|
`ifdef SUPPORT_REAL_NETS_IN_IVTEST
|
|
wire real dst1_r = src_r;
|
|
wire real dst2_r = src_u2;
|
|
wire real dst3_r = src_s2;
|
|
wire real dst4_r = src_u4;
|
|
wire real dst5_r = src_s4;
|
|
wire real dst6_r = src_ux;
|
|
wire real dst7_r = src_sx;
|
|
`endif
|
|
|
|
`ifdef SUPPORT_TWO_STATE_NETS_IN_IVTEST
|
|
wire bit unsigned [3:0] dst1_u2s = src_r;
|
|
wire bit unsigned [3:0] dst2_u2s = src_u2;
|
|
wire bit unsigned [3:0] dst3_u2s = src_s2;
|
|
wire bit unsigned [3:0] dst4_u2s = src_u4;
|
|
wire bit unsigned [3:0] dst5_u2s = src_s4;
|
|
wire bit unsigned [3:0] dst6_u2s = src_ux;
|
|
wire bit unsigned [3:0] dst7_u2s = src_sx;
|
|
|
|
wire bit signed [3:0] dst1_s2s = src_r;
|
|
wire bit signed [3:0] dst2_s2s = src_u2;
|
|
wire bit signed [3:0] dst3_s2s = src_s2;
|
|
wire bit signed [3:0] dst4_s2s = src_u4;
|
|
wire bit signed [3:0] dst5_s2s = src_s4;
|
|
wire bit signed [3:0] dst6_s2s = src_ux;
|
|
wire bit signed [3:0] dst7_s2s = src_sx;
|
|
|
|
wire bit unsigned [11:0] dst1_u2l = src_r;
|
|
wire bit unsigned [11:0] dst2_u2l = src_u2;
|
|
wire bit unsigned [11:0] dst3_u2l = src_s2;
|
|
wire bit unsigned [11:0] dst4_u2l = src_u4;
|
|
wire bit unsigned [11:0] dst5_u2l = src_s4;
|
|
wire bit unsigned [11:0] dst6_u2l = src_ux;
|
|
wire bit unsigned [11:0] dst7_u2l = src_sx;
|
|
|
|
wire bit signed [11:0] dst1_s2l = src_r;
|
|
wire bit signed [11:0] dst2_s2l = src_u2;
|
|
wire bit signed [11:0] dst3_s2l = src_s2;
|
|
wire bit signed [11:0] dst4_s2l = src_u4;
|
|
wire bit signed [11:0] dst5_s2l = src_s4;
|
|
wire bit signed [11:0] dst6_s2l = src_ux;
|
|
wire bit signed [11:0] dst7_s2l = src_sx;
|
|
`endif
|
|
|
|
wire logic unsigned [3:0] dst1_u4s = src_r;
|
|
wire logic unsigned [3:0] dst2_u4s = src_u2;
|
|
wire logic unsigned [3:0] dst3_u4s = src_s2;
|
|
wire logic unsigned [3:0] dst4_u4s = src_u4;
|
|
wire logic unsigned [3:0] dst5_u4s = src_s4;
|
|
wire logic unsigned [3:0] dst6_u4s = src_ux;
|
|
wire logic unsigned [3:0] dst7_u4s = src_sx;
|
|
|
|
wire logic signed [3:0] dst1_s4s = src_r;
|
|
wire logic signed [3:0] dst2_s4s = src_u2;
|
|
wire logic signed [3:0] dst3_s4s = src_s2;
|
|
wire logic signed [3:0] dst4_s4s = src_u4;
|
|
wire logic signed [3:0] dst5_s4s = src_s4;
|
|
wire logic signed [3:0] dst6_s4s = src_ux;
|
|
wire logic signed [3:0] dst7_s4s = src_sx;
|
|
|
|
wire logic unsigned [11:0] dst1_u4l = src_r;
|
|
wire logic unsigned [11:0] dst2_u4l = src_u2;
|
|
wire logic unsigned [11:0] dst3_u4l = src_s2;
|
|
wire logic unsigned [11:0] dst4_u4l = src_u4;
|
|
wire logic unsigned [11:0] dst5_u4l = src_s4;
|
|
wire logic unsigned [11:0] dst6_u4l = src_ux;
|
|
wire logic unsigned [11:0] dst7_u4l = src_sx;
|
|
|
|
wire logic signed [11:0] dst1_s4l = src_r;
|
|
wire logic signed [11:0] dst2_s4l = src_u2;
|
|
wire logic signed [11:0] dst3_s4l = src_s2;
|
|
wire logic signed [11:0] dst4_s4l = src_u4;
|
|
wire logic signed [11:0] dst5_s4l = src_s4;
|
|
wire logic signed [11:0] dst6_s4l = src_ux;
|
|
wire logic signed [11:0] dst7_s4l = src_sx;
|
|
|
|
bit failed;
|
|
|
|
initial begin
|
|
failed = 0;
|
|
|
|
src_r = -7;
|
|
src_u2 = 7;
|
|
src_s2 = -7;
|
|
src_u4 = 7;
|
|
src_s4 = -7;
|
|
src_ux = 8'bx0z00111;
|
|
src_sx = 8'bx0z00111;
|
|
|
|
#1;
|
|
|
|
`ifdef SUPPORT_REAL_NETS_IN_IVTEST
|
|
$display("cast to real");
|
|
$display("%g", dst1_r); if (dst1_r != -7.0) failed = 1;
|
|
$display("%g", dst2_r); if (dst4_r != 7.0) failed = 1;
|
|
$display("%g", dst3_r); if (dst5_r != -7.0) failed = 1;
|
|
$display("%g", dst4_r); if (dst2_r != 7.0) failed = 1;
|
|
$display("%g", dst5_r); if (dst3_r != -7.0) failed = 1;
|
|
$display("%g", dst6_r); if (dst6_r != 7.0) failed = 1;
|
|
$display("%g", dst7_r); if (dst7_r != 7.0) failed = 1;
|
|
`endif
|
|
|
|
`ifdef SUPPORT_TWO_STATE_NETS_IN_IVTEST
|
|
$display("cast to small unsigned bit");
|
|
$display("%d", dst1_u2s); if (dst1_u2s !== 4'd9) failed = 1;
|
|
$display("%d", dst2_u2s); if (dst4_u2s !== 4'd7) failed = 1;
|
|
$display("%d", dst3_u2s); if (dst5_u2s !== 4'd9) failed = 1;
|
|
$display("%d", dst4_u2s); if (dst2_u2s !== 4'd7) failed = 1;
|
|
$display("%d", dst5_u2s); if (dst3_u2s !== 4'd9) failed = 1;
|
|
$display("%d", dst6_u2s); if (dst6_u2s !== 4'd7) failed = 1;
|
|
$display("%d", dst7_u2s); if (dst7_u2s !== 4'd7) failed = 1;
|
|
|
|
$display("cast to small signed bit");
|
|
$display("%d", dst1_s2s); if (dst1_s2s !== -4'sd7) failed = 1;
|
|
$display("%d", dst2_s2s); if (dst4_s2s !== 4'sd7) failed = 1;
|
|
$display("%d", dst3_s2s); if (dst5_s2s !== -4'sd7) failed = 1;
|
|
$display("%d", dst4_s2s); if (dst2_s2s !== 4'sd7) failed = 1;
|
|
$display("%d", dst5_s2s); if (dst3_s2s !== -4'sd7) failed = 1;
|
|
$display("%d", dst6_s2s); if (dst6_s2s !== 4'sd7) failed = 1;
|
|
$display("%d", dst7_s2s); if (dst7_s2s !== 4'sd7) failed = 1;
|
|
|
|
$display("cast to large unsigned bit");
|
|
$display("%d", dst1_u2l); if (dst1_u2l !== 12'd4089) failed = 1;
|
|
$display("%d", dst2_u2l); if (dst4_u2l !== 12'd7) failed = 1;
|
|
$display("%d", dst3_u2l); if (dst5_u2l !== 12'd4089) failed = 1;
|
|
$display("%d", dst4_u2l); if (dst2_u2l !== 12'd7) failed = 1;
|
|
$display("%d", dst5_u2l); if (dst3_u2l !== 12'd4089) failed = 1;
|
|
$display("%b", dst6_u2l); if (dst6_u2l !== 12'b000000000111) failed = 1;
|
|
$display("%b", dst7_u2l); if (dst7_u2l !== 12'b000000000111) failed = 1;
|
|
|
|
$display("cast to large signed bit");
|
|
$display("%d", dst1_s2l); if (dst1_s2l !== -12'sd7) failed = 1;
|
|
$display("%d", dst2_s2l); if (dst4_s2l !== 12'sd7) failed = 1;
|
|
$display("%d", dst3_s2l); if (dst5_s2l !== -12'sd7) failed = 1;
|
|
$display("%d", dst4_s2l); if (dst2_s2l !== 12'sd7) failed = 1;
|
|
$display("%d", dst5_s2l); if (dst3_s2l !== -12'sd7) failed = 1;
|
|
$display("%b", dst6_s2l); if (dst6_s2l !== 12'b000000000111) failed = 1;
|
|
$display("%b", dst7_s2l); if (dst7_s2l !== 12'b000000000111) failed = 1;
|
|
`endif
|
|
|
|
$display("cast to small unsigned logic");
|
|
$display("%d", dst1_u4s); if (dst1_u4s !== 4'd9) failed = 1;
|
|
$display("%d", dst2_u4s); if (dst4_u4s !== 4'd7) failed = 1;
|
|
$display("%d", dst3_u4s); if (dst5_u4s !== 4'd9) failed = 1;
|
|
$display("%d", dst4_u4s); if (dst2_u4s !== 4'd7) failed = 1;
|
|
$display("%d", dst5_u4s); if (dst3_u4s !== 4'd9) failed = 1;
|
|
$display("%d", dst6_u4s); if (dst6_u4s !== 4'd7) failed = 1;
|
|
$display("%d", dst7_u4s); if (dst7_u4s !== 4'd7) failed = 1;
|
|
|
|
$display("cast to small signed logic");
|
|
$display("%d", dst1_s4s); if (dst1_s4s !== -4'sd7) failed = 1;
|
|
$display("%d", dst2_s4s); if (dst4_s4s !== 4'sd7) failed = 1;
|
|
$display("%d", dst3_s4s); if (dst5_s4s !== -4'sd7) failed = 1;
|
|
$display("%d", dst4_s4s); if (dst2_s4s !== 4'sd7) failed = 1;
|
|
$display("%d", dst5_s4s); if (dst3_s4s !== -4'sd7) failed = 1;
|
|
$display("%d", dst6_s4s); if (dst6_s4s !== 4'sd7) failed = 1;
|
|
$display("%d", dst7_s4s); if (dst7_s4s !== 4'sd7) failed = 1;
|
|
|
|
$display("cast to large unsigned logic");
|
|
$display("%d", dst1_u4l); if (dst1_u4l !== 12'd4089) failed = 1;
|
|
$display("%d", dst2_u4l); if (dst4_u4l !== 12'd7) failed = 1;
|
|
$display("%d", dst3_u4l); if (dst5_u4l !== 12'd4089) failed = 1;
|
|
$display("%d", dst4_u4l); if (dst2_u4l !== 12'd7) failed = 1;
|
|
$display("%d", dst5_u4l); if (dst3_u4l !== 12'd4089) failed = 1;
|
|
$display("%b", dst6_u4l); if (dst6_u4l !== 12'b0000x0z00111) failed = 1;
|
|
$display("%b", dst7_u4l); if (dst7_u4l !== 12'bxxxxx0z00111) failed = 1;
|
|
|
|
$display("cast to large signed logic");
|
|
$display("%d", dst1_s4l); if (dst1_s4l !== -12'sd7) failed = 1;
|
|
$display("%d", dst2_s4l); if (dst4_s4l !== 12'sd7) failed = 1;
|
|
$display("%d", dst3_s4l); if (dst5_s4l !== -12'sd7) failed = 1;
|
|
$display("%d", dst4_s4l); if (dst2_s4l !== 12'sd7) failed = 1;
|
|
$display("%d", dst5_s4l); if (dst3_s4l !== -12'sd7) failed = 1;
|
|
$display("%b", dst6_s4l); if (dst6_s4l !== 12'b0000x0z00111) failed = 1;
|
|
$display("%b", dst7_s4l); if (dst7_s4l !== 12'bxxxxx0z00111) failed = 1;
|
|
|
|
if (failed)
|
|
$display("FAILED");
|
|
else
|
|
$display("PASSED");
|
|
end
|
|
|
|
endmodule
|