3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

abstract: test -value

This commit is contained in:
Emil J. Tywoniak 2025-02-18 15:20:09 +01:00
parent d3a90021ad
commit 34e3fcbb31
2 changed files with 74 additions and 0 deletions

View file

@ -0,0 +1,74 @@
read_verilog <<EOT
module split_output (A, B, Y, magic);
input [1:0] A;
input [1:0] B;
output [1:0] Y;
input magic;
wire W;
assign Y = A + B;
assign W = Y[0]; // <--- look here
endmodule
EOT
proc
design -save split_output
# Basic -value test
abstract -value -enable magic w:W
# show
check -assert
# Connections to $add Y output port
select -set conn_to_y t:$add %x:+[Y] t:$add %d
# The $add Y output port feeds partially into a mux
select -set mux @conn_to_y %ci t:$mux %i
select -assert-count 1 @mux
# and also the Y module output
select -assert-count 1 @conn_to_y %a o:Y %i
# The S input port is fed with the magic wire
select -assert-count 1 @mux %x:+[S] w:magic %i
# The B input port is fed with an anyseq
select -assert-count 1 @mux %x:+[B] %ci t:$anyseq %i
# The Y output port feeds into the Y module output
select -assert-count 1 @mux %x:+[Y] %co o:Y %i
# -----------------------------------------------------------------------------
design -reset
read_verilog <<EOT
module split_input (A, B, Y, magic);
input [1:0] A;
input [1:0] B;
output [1:0] Y;
input magic;
wire W;
assign Y = A + B;
assign W = A[0]; // <--- look here
endmodule
EOT
proc
design -save split_input
# The mux goes on an input this time
abstract -value -enable magic w:W
# show
check -assert
# Connections to add A input port
select -set conn_to_a t:$add %x:+[A] t:$add %d
# The B input port is partially fed with a mux
select -set mux @conn_to_a %ci t:$mux %i
select -assert-count 1 @mux
# and also the A input
select -assert-count 1 @conn_to_a %a w:A %i
# The S input port is fed with the magic wire
select -assert-count 1 @mux %x:+[S] w:magic %i
# The A input port is fed with the module input A
select -assert-count 1 @mux %x:+[A] %ci i:A %i
# The B input port is fed with an anyseq
select -assert-count 1 @mux %x:+[B] %ci t:$anyseq %i
# -----------------------------------------------------------------------------
# All wires selected, excluding magic -> muxes on inputs and outputs
design -load split_output
select -assert-count 0 t:$mux
abstract -value -enable magic w:* w:magic %d
select -assert-count 3 t:$mux
# All cells selected -> muxes on outputs only
design -load split_output
select -assert-count 0 t:$mux
abstract -value -enable magic t:*
select -assert-count 1 t:$mux
# -----------------------------------------------------------------------------