mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-30 07:43:40 +00:00
Implement iterative queue-based traversal in wreduce pass to propagate width reductions across dependent cells and wires. Previously, wreduce would process all cells once, then all wires once. This meant that reductions couldn't propagate through chains of operations. The new algorithm maintains work queues for both cells and wires, processing them iteratively until no more reductions are possible. When a cell or wire is reduced, dependent cells and wires are added back to the queues for reprocessing. Add regression test to verify that width reductions propagate through a chain of operations: (a + b)[3:0] + c, ensuring the first addition is reduced from 9 bits to 4 bits.
34 lines
791 B
Text
34 lines
791 B
Text
# Ensure wreduce propagates width reductions across dependent cells.
|
|
read_verilog <<EOT
|
|
module top(input [7:0] a, input [7:0] b, input [3:0] c, output [3:0] y);
|
|
wire [8:0] sum_full;
|
|
wire [3:0] sum_trunc;
|
|
|
|
assign sum_full = a + b;
|
|
assign sum_trunc = sum_full[3:0];
|
|
assign y = sum_trunc + c;
|
|
endmodule
|
|
EOT
|
|
|
|
hierarchy -auto-top
|
|
proc
|
|
opt_expr
|
|
opt_clean
|
|
|
|
design -save gold
|
|
|
|
wreduce
|
|
opt_clean
|
|
|
|
# After wreduce, the first add should be reduced from 9 bits to 4 bits
|
|
select -assert-count 2 t:$add
|
|
select -assert-count 0 t:$add r:Y_WIDTH=9 %i
|
|
select -assert-count 2 t:$add r:Y_WIDTH=4 %i
|
|
|
|
design -stash reduced
|
|
|
|
design -import gold -as gold
|
|
design -import reduced -as reduced
|
|
|
|
miter -equiv -flatten -make_assert -make_outputs gold reduced miter
|
|
sat -verify -prove-asserts -show-ports miter
|