mirror of
https://github.com/verilator/verilator.git
synced 2025-04-06 12:42:42 +00:00
parent
2a30a87580
commit
095b1ccb67
@ -853,7 +853,8 @@ public:
|
|||||||
// of the masking node e.g. by the "AND with all ones" rule. If the result width happens
|
// of the masking node e.g. by the "AND with all ones" rule. If the result width happens
|
||||||
// to be 1, we still need to ensure the AstAnd is not dropped, so use a wider mask in this
|
// to be 1, we still need to ensure the AstAnd is not dropped, so use a wider mask in this
|
||||||
// special case.
|
// special case.
|
||||||
const int maskWidth = resultWidth == 1 ? VL_IDATASIZE : resultWidth;
|
const int maskWidth
|
||||||
|
= std::max(resultp->width(), resultWidth == 1 ? VL_IDATASIZE : resultWidth);
|
||||||
|
|
||||||
// Apply final polarity flip
|
// Apply final polarity flip
|
||||||
if (needsFlip) {
|
if (needsFlip) {
|
||||||
|
@ -20,7 +20,7 @@ execute(
|
|||||||
);
|
);
|
||||||
|
|
||||||
if ($Self->{vlt}) {
|
if ($Self->{vlt}) {
|
||||||
file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 42);
|
file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 45);
|
||||||
}
|
}
|
||||||
ok(1);
|
ok(1);
|
||||||
1;
|
1;
|
||||||
|
@ -97,10 +97,11 @@ module Test(/*AUTOARG*/
|
|||||||
logic bug4837_out;
|
logic bug4837_out;
|
||||||
logic bug4857_out;
|
logic bug4857_out;
|
||||||
logic bug4864_out;
|
logic bug4864_out;
|
||||||
|
logic bug5186_out;
|
||||||
|
|
||||||
output logic o;
|
output logic o;
|
||||||
|
|
||||||
logic [18:0] tmp;
|
logic [19:0] tmp;
|
||||||
assign o = ^tmp;
|
assign o = ^tmp;
|
||||||
|
|
||||||
always_ff @(posedge clk) begin
|
always_ff @(posedge clk) begin
|
||||||
@ -135,6 +136,7 @@ module Test(/*AUTOARG*/
|
|||||||
tmp[16]<= bug4837_out;
|
tmp[16]<= bug4837_out;
|
||||||
tmp[17]<= bug4857_out;
|
tmp[17]<= bug4857_out;
|
||||||
tmp[18]<= bug4864_out;
|
tmp[18]<= bug4864_out;
|
||||||
|
tmp[19]<= bug5186_out;
|
||||||
end
|
end
|
||||||
|
|
||||||
bug3182 i_bug3182(.in(d[4:0]), .out(bug3182_out));
|
bug3182 i_bug3182(.in(d[4:0]), .out(bug3182_out));
|
||||||
@ -150,6 +152,7 @@ module Test(/*AUTOARG*/
|
|||||||
bug4837 i_bug4837(.clk(clk), .in(d), .out(bug4837_out));
|
bug4837 i_bug4837(.clk(clk), .in(d), .out(bug4837_out));
|
||||||
bug4857 i_bug4857(.clk(clk), .in(d), .out(bug4857_out));
|
bug4857 i_bug4857(.clk(clk), .in(d), .out(bug4857_out));
|
||||||
bug4864 i_bug4864(.clk(clk), .in(d), .out(bug4864_out));
|
bug4864 i_bug4864(.clk(clk), .in(d), .out(bug4864_out));
|
||||||
|
bug5186 i_bug5186(.clk(clk), .in(d), .out(bug5186_out));
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
@ -543,3 +546,23 @@ module bug4864(input wire clk, input wire [31:0] in, output wire out);
|
|||||||
|
|
||||||
assign out = sig_e;
|
assign out = sig_e;
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
|
||||||
|
// See issue #5168
|
||||||
|
// BitOpTree removes d[38] ^ d[38] correctly, but adds a cleaning AND as
|
||||||
|
// (d[31] & 32'b1) even though d is 64 bit width.
|
||||||
|
// matchMaskedShift() thinks the cleaning AND is redundant because the mask
|
||||||
|
// value is 32 bit width.
|
||||||
|
module bug5186(input wire clk, input wire [31:0] in, output out);
|
||||||
|
logic [63:0] d;
|
||||||
|
always_ff @(posedge clk)
|
||||||
|
d <= {d[31:0], in};
|
||||||
|
|
||||||
|
wire bad;
|
||||||
|
assign bad = {d[38:32], d[38] ^ d[31] ^ d[38]} != d[38:31];
|
||||||
|
|
||||||
|
logic result;
|
||||||
|
always_ff @ (posedge clk)
|
||||||
|
result <= bad;
|
||||||
|
assign out = result;
|
||||||
|
endmodule
|
||||||
|
@ -21,7 +21,7 @@ execute(
|
|||||||
);
|
);
|
||||||
|
|
||||||
if ($Self->{vlt}) {
|
if ($Self->{vlt}) {
|
||||||
file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 37);
|
file_grep($Self->{stats}, qr/Optimizations, Const bit op reduction\s+(\d+)/i, 40);
|
||||||
}
|
}
|
||||||
ok(1);
|
ok(1);
|
||||||
1;
|
1;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
%Error: Internal Error: t/t_const_opt.v:531:34: ../V3Ast.cpp:#: widthMismatch detected 'lhsp()->widthMin() != rhsp()->widthMin()' @ ../V3AstNodes.cpp:#OUT:(G/wu32/1) LHS:(G/w32) RHS:(G/wu32/1)
|
%Error: Internal Error: t/t_const_opt.v:534:34: ../V3Ast.cpp:#: widthMismatch detected 'lhsp()->widthMin() != rhsp()->widthMin()' @ ../V3AstNodes.cpp:#OUT:(G/wu32/1) LHS:(G/w32) RHS:(G/wu32/1)
|
||||||
531 | always_ff @(posedge clkin_data[0], posedge myfirst, posedge mysecond)
|
534 | always_ff @(posedge clkin_data[0], posedge myfirst, posedge mysecond)
|
||||||
| ^
|
| ^
|
||||||
... See the manual at https://verilator.org/verilator_doc.html for more assistance.
|
... See the manual at https://verilator.org/verilator_doc.html for more assistance.
|
||||||
|
Loading…
Reference in New Issue
Block a user