mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 00:55:32 +00:00
opt_reduce: Add $bmux and $demux optimization patterns.
This commit is contained in:
parent
772d137bfa
commit
07a657fb0c
3 changed files with 548 additions and 63 deletions
117
tests/opt/opt_reduce_bmux.ys
Normal file
117
tests/opt/opt_reduce_bmux.ys
Normal file
|
@ -0,0 +1,117 @@
|
|||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 12 input 0 \A
|
||||
wire width 2 input 1 \S
|
||||
wire width 6 output 2 \Y
|
||||
|
||||
cell $bmux $0
|
||||
parameter \WIDTH 6
|
||||
parameter \S_WIDTH 2
|
||||
connect \A { \A [11:10] \A [3:2] \A [10:9] \A [7] \A [7] \A [8] \A [2] \A [7:6] \A [5] \A [5] \A [3:2] \A [5:4] \A [1] \A [1] \A [3:0] }
|
||||
connect \S \S
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 1 t:$bmux r:WIDTH=4 %i
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 6 input 0 \A
|
||||
wire width 2 input 1 \S
|
||||
wire width 6 output 2 \Y
|
||||
|
||||
cell $bmux $0
|
||||
parameter \WIDTH 6
|
||||
parameter \S_WIDTH 2
|
||||
connect \A { \A [5:0] \A [5:0] \A [5:0] \A [5:0] }
|
||||
connect \S \S
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 0 t:$bmux
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 160 input 0 \A
|
||||
wire width 2 input 1 \S
|
||||
wire width 5 output 2 \Y
|
||||
|
||||
cell $bmux $0
|
||||
parameter \WIDTH 5
|
||||
parameter \S_WIDTH 5
|
||||
connect \A \A
|
||||
connect \S { \S [1] 1'1 \S [0] \S [1] 1'0 }
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 1 t:$bmux r:S_WIDTH=2 %i
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 10 input 0 \A
|
||||
wire input 1 \S
|
||||
wire width 5 output 2 \Y
|
||||
|
||||
cell $bmux $0
|
||||
parameter \WIDTH 5
|
||||
parameter \S_WIDTH 1
|
||||
connect \A \A
|
||||
connect \S \S
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 0 t:$bmux
|
||||
select -assert-count 1 t:$mux
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 5 input 0 \A
|
||||
wire width 5 output 1 \Y
|
||||
|
||||
cell $bmux $0
|
||||
parameter \WIDTH 5
|
||||
parameter \S_WIDTH 0
|
||||
connect \A \A
|
||||
connect \S { }
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 0 t:$bmux
|
91
tests/opt/opt_reduce_demux.ys
Normal file
91
tests/opt/opt_reduce_demux.ys
Normal file
|
@ -0,0 +1,91 @@
|
|||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 4 input 0 \A
|
||||
wire width 2 input 1 \S
|
||||
wire width 24 output 2 \Y
|
||||
|
||||
cell $demux $0
|
||||
parameter \WIDTH 6
|
||||
parameter \S_WIDTH 2
|
||||
connect \A { \A [3] \A [1] 1'0 \A [2:0] }
|
||||
connect \S \S
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 1 t:$demux r:WIDTH=4 %i
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 2 input 1 \S
|
||||
wire width 24 output 2 \Y
|
||||
|
||||
cell $demux $0
|
||||
parameter \WIDTH 6
|
||||
parameter \S_WIDTH 2
|
||||
connect \A 6'000000
|
||||
connect \S \S
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 0 t:$demux
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 5 input 0 \A
|
||||
wire width 2 input 1 \S
|
||||
wire width 160 output 2 \Y
|
||||
|
||||
cell $demux $0
|
||||
parameter \WIDTH 5
|
||||
parameter \S_WIDTH 5
|
||||
connect \A \A
|
||||
connect \S { \S [0] \S [1] 1'1 \S [0] 1'0 }
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 1 t:$demux r:S_WIDTH=2 %i
|
||||
|
||||
design -reset
|
||||
|
||||
read_ilang << EOT
|
||||
|
||||
module \top
|
||||
wire width 5 input 0 \A
|
||||
wire width 20 output 2 \Y
|
||||
|
||||
cell $demux $0
|
||||
parameter \WIDTH 5
|
||||
parameter \S_WIDTH 2
|
||||
connect \A \A
|
||||
connect \S { 2'10 }
|
||||
connect \Y \Y
|
||||
end
|
||||
end
|
||||
|
||||
EOT
|
||||
|
||||
equiv_opt -assert opt_reduce -fine
|
||||
opt_reduce -fine
|
||||
select -assert-count 0 t:$demux
|
Loading…
Add table
Add a link
Reference in a new issue