mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-15 13:28:59 +00:00
opt_expr: add $alu tests
This commit is contained in:
parent
8d1fa0e3b9
commit
5e2562f1a2
63
tests/opt/opt_expr_alu.ys
Normal file
63
tests/opt/opt_expr_alu.ys
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
read_verilog <<EOT
|
||||||
|
module test(input a, output [1:0] y);
|
||||||
|
assign y = {a,1'b0} + 1'b1;
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
alumacc
|
||||||
|
equiv_opt opt_expr -fine
|
||||||
|
design -load postopt
|
||||||
|
select -assert-count 1 t:$pos
|
||||||
|
select -assert-count none t:$pos t:* %D
|
||||||
|
|
||||||
|
|
||||||
|
design -reset
|
||||||
|
read_verilog <<EOT
|
||||||
|
module test(input a, output [1:0] y);
|
||||||
|
assign y = {a,1'b1} + 1'b1;
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
alumacc
|
||||||
|
select -assert-count 1 t:$alu
|
||||||
|
select -assert-count none t:$alu t:* %D
|
||||||
|
|
||||||
|
|
||||||
|
design -reset
|
||||||
|
read_verilog <<EOT
|
||||||
|
module test(input a, output [1:0] y);
|
||||||
|
assign y = {a,1'b1} - 1'b1;
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
equiv_opt opt_expr -fine
|
||||||
|
design -load postopt
|
||||||
|
select -assert-count 1 t:$pos
|
||||||
|
select -assert-count none t:$pos t:* %D
|
||||||
|
|
||||||
|
|
||||||
|
design -reset
|
||||||
|
read_verilog <<EOT
|
||||||
|
module test(input a, output [3:0] y);
|
||||||
|
assign y = {a,3'b101} - 1'b1;
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
equiv_opt opt_expr -fine
|
||||||
|
design -load postopt
|
||||||
|
select -assert-count 1 t:$pos
|
||||||
|
select -assert-count none t:$pos t:* %D
|
||||||
|
|
||||||
|
|
||||||
|
design -reset
|
||||||
|
read_verilog <<EOT
|
||||||
|
module test(input a, output [3:0] y);
|
||||||
|
assign y = {a,3'b101} - 1'b1;
|
||||||
|
endmodule
|
||||||
|
EOT
|
||||||
|
|
||||||
|
alumacc
|
||||||
|
equiv_opt opt_expr -fine
|
||||||
|
design -load postopt
|
||||||
|
select -assert-count 1 t:$pos
|
||||||
|
select -assert-count none t:$pos t:* %D
|
Loading…
Reference in a new issue