diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-26 07:30:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 07:30:27 +0000 |
commit | 12c016ebdc61d3eba681579e7b0b4d81672e498f (patch) | |
tree | a4b2953cb6ea25865915721b71d2f22a1e06f725 /tests/opt/opt_expr_combined_assign.ys | |
parent | d6bdc09422e89c30207810cf00021b9ea37991e7 (diff) | |
parent | 39c39848a21dc4f4a2c3b17842d854047ba6c16f (diff) | |
download | yosys-12c016ebdc61d3eba681579e7b0b4d81672e498f.tar.gz yosys-12c016ebdc61d3eba681579e7b0b4d81672e498f.tar.bz2 yosys-12c016ebdc61d3eba681579e7b0b4d81672e498f.zip |
Merge pull request #2188 from antmicro/missing-operators
Add logic-assignments operators
Diffstat (limited to 'tests/opt/opt_expr_combined_assign.ys')
-rw-r--r-- | tests/opt/opt_expr_combined_assign.ys | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/tests/opt/opt_expr_combined_assign.ys b/tests/opt/opt_expr_combined_assign.ys new file mode 100644 index 000000000..b18923c7b --- /dev/null +++ b/tests/opt/opt_expr_combined_assign.ys @@ -0,0 +1,83 @@ +read_verilog -sv <<EOT +module opt_expr_or_test(input [3:0] i, input [7:0] j, output [8:0] o); +wire[8:0] a = 8'b0; +initial begin + a |= i; + a |= j; +end + assign o = a; +endmodule +EOT +proc +equiv_opt -assert opt_expr -fine +design -load postopt + +select -assert-count 1 t:$or r:A_WIDTH=4 r:B_WIDTH=4 r:Y_WIDTH=4 %i %i %i + +design -reset +read_verilog -sv <<EOT +module opt_expr_add_test(input [3:0] i, input [7:0] j, output [8:0] o); +wire[8:0] a = 8'b0; +initial begin + a += i; + a += j; +end + assign o = a; +endmodule +EOT +proc +equiv_opt -assert opt_expr -fine +design -load postopt + +select -assert-count 1 t:$add r:A_WIDTH=9 r:B_WIDTH=8 r:Y_WIDTH=9 %i %i %i + +design -reset +read_verilog -sv <<EOT +module opt_expr_xor_test(input [3:0] i, input [7:0] j, output [8:0] o); +wire[8:0] a = 8'b0; +initial begin + a ^= i; + a ^= j; +end + assign o = a; +endmodule +EOT +proc +equiv_opt -assert opt_expr -fine +design -load postopt + +select -assert-count 1 t:$xor r:A_WIDTH=4 r:B_WIDTH=4 r:Y_WIDTH=4 %i %i %i + +design -reset +read_verilog -sv <<EOT +module opt_expr_sub_test(input [3:0] i, input [7:0] j, output [8:0] o); +wire[8:0] a = 8'b0; +initial begin + a -= i; + a -= j; +end + assign o = a; +endmodule +EOT +proc +equiv_opt -assert opt_expr -fine +design -load postopt + +select -assert-count 1 t:$sub r:A_WIDTH=9 r:B_WIDTH=8 r:Y_WIDTH=9 %i %i %i + +design -reset +read_verilog -sv <<EOT +module opt_expr_and_test(input [3:0] i, input [7:0] j, output [8:0] o); +wire[8:0] a = 8'b11111111; +initial begin + a &= i; + a &= j; +end + assign o = a; +endmodule +EOT +proc +equiv_opt -assert opt_expr -fine +design -load postopt + +select -assert-count 1 t:$and r:A_WIDTH=4 r:B_WIDTH=4 r:Y_WIDTH=4 %i %i %i |