mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
docs: Tidying interactive investigation
More :numref: because I figured out they were only failing if I didn't do a full re-make. Reflow first section a little to help readability. Also includes a css change to prevent code block caption text from bunching into the caption number.
This commit is contained in:
parent
9e35848c8e
commit
c61ab7d627
|
@ -12,4 +12,9 @@
|
||||||
/* Make images full width */
|
/* Make images full width */
|
||||||
.width-helper {
|
.width-helper {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Prevent code block caption text from bunching into the caption number */
|
||||||
|
.literal-block-wrapper .code-block-caption .caption-number {
|
||||||
|
padding-right: 0.5em
|
||||||
|
}
|
||||||
|
|
|
@ -1,26 +1,38 @@
|
||||||
Interactive design investigation
|
Interactive design investigation
|
||||||
--------------------------------
|
--------------------------------
|
||||||
|
|
||||||
|
.. role:: yoscrypt(code)
|
||||||
|
:language: yoscrypt
|
||||||
|
|
||||||
.. _interactive_show:
|
.. _interactive_show:
|
||||||
|
|
||||||
A look at the show command
|
A look at the show command
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
This section introduces the :cmd:ref:`show` command and explains the symbols
|
This section explores the :cmd:ref:`show` command and explains the symbols used
|
||||||
used in the circuit diagrams generated by it.
|
in the circuit diagrams generated by it.
|
||||||
|
|
||||||
A simple circuit
|
A simple circuit
|
||||||
^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
The code listings below show a simple synthesis script and a Verilog file that
|
:numref:`example_v` below provides the Verilog code for a simple circuit which
|
||||||
demonstrate the usage of show in a simple setting. Note that :cmd:ref:`show` is
|
we will use to demonstrate the usage of :cmd:ref:`show` in a simple setting.
|
||||||
called with the ``-pause`` option, that halts execution of the Yosys script
|
|
||||||
until the user presses the Enter key. The ``show -pause`` command also allows
|
.. literalinclude:: /APPNOTE_011_Design_Investigation/example.v
|
||||||
the user to enter an interactive shell to further investigate the circuit before
|
:language: Verilog
|
||||||
continuing synthesis.
|
:caption: ``docs/source/APPNOTE_011_Design_Investigation/example.v``
|
||||||
|
:name: example_v
|
||||||
|
|
||||||
|
The Yosys synthesis script we will be running is included as
|
||||||
|
:numref:`example_ys`. Note that :cmd:ref:`show` is called with the ``-pause``
|
||||||
|
option, that halts execution of the Yosys script until the user presses the
|
||||||
|
Enter key. Using :yoscrypt:`show -pause` also allows the user to enter an
|
||||||
|
interactive shell to further investigate the circuit before continuing
|
||||||
|
synthesis.
|
||||||
|
|
||||||
.. code-block:: yoscrypt
|
.. code-block:: yoscrypt
|
||||||
:caption: ``docs/source/APPNOTE_011_Design_Investigation/example.ys``
|
:caption: ``docs/source/APPNOTE_011_Design_Investigation/example.ys``
|
||||||
|
:name: example_ys
|
||||||
|
|
||||||
read_verilog example.v
|
read_verilog example.v
|
||||||
show -pause # first
|
show -pause # first
|
||||||
|
@ -29,17 +41,14 @@ continuing synthesis.
|
||||||
opt
|
opt
|
||||||
show -pause # third
|
show -pause # third
|
||||||
|
|
||||||
.. literalinclude:: /APPNOTE_011_Design_Investigation/example.v
|
|
||||||
:language: Verilog
|
|
||||||
:caption: ``docs/source/APPNOTE_011_Design_Investigation/example.v``
|
|
||||||
|
|
||||||
This script, when executed, will show the design after each of the three
|
This script, when executed, will show the design after each of the three
|
||||||
synthesis commands.
|
synthesis commands. We will now look at each of these diagrams and explain what
|
||||||
|
is shown.
|
||||||
|
|
||||||
.. figure:: /_images/011/example_00.*
|
.. figure:: /_images/011/example_00.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
|
||||||
Output of the first :cmd:ref:`show` command above
|
Output of the first :cmd:ref:`show` command in :numref:`example_ys`
|
||||||
|
|
||||||
The first output shows the design directly after being read by the Verilog
|
The first output shows the design directly after being read by the Verilog
|
||||||
front-end. Input and output ports are displayed as octagonal shapes. Cells are
|
front-end. Input and output ports are displayed as octagonal shapes. Cells are
|
||||||
|
@ -71,7 +80,7 @@ multiplexer and a d-type flip-flip, which brings us to the second diagram:
|
||||||
.. figure:: /_images/011/example_01.*
|
.. figure:: /_images/011/example_01.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
|
||||||
Output of the second :cmd:ref:`show` command above
|
Output of the second :cmd:ref:`show` command in :numref:`example_ys`
|
||||||
|
|
||||||
The Rhombus shape to the right is a dangling wire. (Wire nodes are only shown if
|
The Rhombus shape to the right is a dangling wire. (Wire nodes are only shown if
|
||||||
they are dangling or have "public" names, for example names assigned from the
|
they are dangling or have "public" names, for example names assigned from the
|
||||||
|
@ -94,7 +103,7 @@ leads us to the third diagram:
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
:name: example_out
|
:name: example_out
|
||||||
|
|
||||||
Output of the third :cmd:ref:`show` command above
|
Output of the third :cmd:ref:`show` command in :numref:`example_ys`
|
||||||
|
|
||||||
Here we see that the :cmd:ref:`proc` command not only has removed the artifacts
|
Here we see that the :cmd:ref:`proc` command not only has removed the artifacts
|
||||||
left behind by :cmd:ref:`proc`, but also determined correctly that it can remove
|
left behind by :cmd:ref:`proc`, but also determined correctly that it can remove
|
||||||
|
@ -110,12 +119,12 @@ accesses.
|
||||||
:caption: ``splice.v``
|
:caption: ``splice.v``
|
||||||
:name: splice_src
|
:name: splice_src
|
||||||
|
|
||||||
Notice how the output for this circuit from the :cmd:ref:`show` command below
|
Notice how the output for this circuit from the :cmd:ref:`show` command
|
||||||
appears quite complex. This is an unfortunate side effect of the way Yosys
|
(:numref:`splice_dia`) appears quite complex. This is an unfortunate side effect
|
||||||
handles signal vectors (aka. multi-bit wires or buses) as native objects. While
|
of the way Yosys handles signal vectors (aka. multi-bit wires or buses) as
|
||||||
this provides great advantages when analyzing circuits that operate on wide
|
native objects. While this provides great advantages when analyzing circuits
|
||||||
integers, it also introduces some additional complexity when the individual bits
|
that operate on wide integers, it also introduces some additional complexity
|
||||||
of of a signal vector are accessed.
|
when the individual bits of of a signal vector are accessed.
|
||||||
|
|
||||||
.. figure:: /_images/011/splice.*
|
.. figure:: /_images/011/splice.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
@ -142,11 +151,15 @@ Yosys commands.
|
||||||
Gate level netlists
|
Gate level netlists
|
||||||
^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
The diagram below shows two common pitfalls when working with
|
:numref:`first_pitfall` shows two common pitfalls when working with designs
|
||||||
designs mapped to a cell library:
|
mapped to a cell library:
|
||||||
|
|
||||||
.. figure:: /_images/011/cmos_00.*
|
.. figure:: /_images/011/cmos_00.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
:name: first_pitfall
|
||||||
|
|
||||||
|
A half-adder built from simple CMOS gates, demonstrating common pitfalls when
|
||||||
|
using :cmd:ref:`show`
|
||||||
|
|
||||||
First, Yosys did not have access to the cell library when this diagram was
|
First, Yosys did not have access to the cell library when this diagram was
|
||||||
generated, resulting in all cell ports defaulting to being inputs. This is why
|
generated, resulting in all cell ports defaulting to being inputs. This is why
|
||||||
|
@ -156,24 +169,25 @@ individual bits, resulting in an unnecessary complex diagram.
|
||||||
|
|
||||||
.. figure:: /_images/011/cmos_01.*
|
.. figure:: /_images/011/cmos_01.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
:name: second_pitfall
|
||||||
|
|
||||||
Effects of :cmd:ref:`splitnets` command and of providing a cell library. (The
|
Effects of :cmd:ref:`splitnets` command and of providing a cell library on
|
||||||
circuit is a half-adder built from simple CMOS gates.)
|
design in :numref:`first_pitfall`
|
||||||
|
|
||||||
For the second diagram, Yosys has been given a description of the cell library
|
For :numref:`second_pitfall`, Yosys has been given a description of the cell
|
||||||
as Verilog file containing blackbox modules. There are two ways to load cell
|
library as Verilog file containing blackbox modules. There are two ways to load
|
||||||
descriptions into Yosys: First the Verilog file for the cell library can be
|
cell descriptions into Yosys: First the Verilog file for the cell library can be
|
||||||
passed directly to the :cmd:ref:`show` command using the ``-lib <filename>``
|
passed directly to the :cmd:ref:`show` command using the ``-lib <filename>``
|
||||||
option. Secondly it is possible to load cell libraries into the design with the
|
option. Secondly it is possible to load cell libraries into the design with the
|
||||||
``read_verilog -lib <filename>`` command. The second method has the great
|
``read_verilog -lib <filename>`` command. The second method has the great
|
||||||
advantage that the library only needs to be loaded once and can then be used in
|
advantage that the library only needs to be loaded once and can then be used in
|
||||||
all subsequent calls to the :cmd:ref:`show` command.
|
all subsequent calls to the :cmd:ref:`show` command.
|
||||||
|
|
||||||
In addition to that, the second diagram was generated after ``splitnet -ports`` was
|
In addition to that, :numref:`second_pitfall` was generated after ``splitnet
|
||||||
run on the design. This command splits all signal vectors into individual signal
|
-ports`` was run on the design. This command splits all signal vectors into
|
||||||
bits, which is often desirable when looking at gate-level circuits. The
|
individual signal bits, which is often desirable when looking at gate-level
|
||||||
``-ports`` option is required to also split module ports. Per default the
|
circuits. The ``-ports`` option is required to also split module ports. Per
|
||||||
command only operates on interior signals.
|
default the command only operates on interior signals.
|
||||||
|
|
||||||
Miscellaneous notes
|
Miscellaneous notes
|
||||||
^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^
|
||||||
|
@ -228,11 +242,14 @@ For most cases, the shell will start with the whole design selected (i.e. when
|
||||||
the synthesis script does not already narrow the selection). The command
|
the synthesis script does not already narrow the selection). The command
|
||||||
:cmd:ref:`ls` can now be used to create a list of all modules. The command
|
:cmd:ref:`ls` can now be used to create a list of all modules. The command
|
||||||
:cmd:ref:`cd` can be used to switch to one of the modules (type ``cd ..`` to
|
:cmd:ref:`cd` can be used to switch to one of the modules (type ``cd ..`` to
|
||||||
switch back). Now the `ls` command lists the objects within that module. The
|
switch back). Now the `ls` command lists the objects within that module.
|
||||||
code block below demonstrates this using the design from :ref:`interactive_show`:
|
:numref:`lscd` below demonstrates this using the ``example.v`` from
|
||||||
|
`A simple circuit`_
|
||||||
|
|
||||||
|
.. todo:: update yosys output with $ternary$example.v$3
|
||||||
|
|
||||||
.. code-block:: none
|
.. code-block:: none
|
||||||
:caption: Demonstration of :cmd:ref:`ls` and :cmd:ref:`cd`
|
:caption: Demonstration of :cmd:ref:`ls` and :cmd:ref:`cd` having run ``yosys example.v``
|
||||||
:name: lscd
|
:name: lscd
|
||||||
|
|
||||||
yosys> ls
|
yosys> ls
|
||||||
|
@ -264,8 +281,8 @@ the selected module. This can also be useful for synthesis scripts where
|
||||||
different synthesis strategies should be applied to different modules in the
|
different synthesis strategies should be applied to different modules in the
|
||||||
design.
|
design.
|
||||||
|
|
||||||
We can see that the cell names from :ref:`example_out` are just abbreviations of
|
We can see that the cell names from :numref:`example_out` are just abbreviations
|
||||||
the actual cell names, namely the part after the last dollar-sign. Most
|
of the actual cell names, namely the part after the last dollar-sign. Most
|
||||||
auto-generated names (the ones starting with a dollar sign) are rather long and
|
auto-generated names (the ones starting with a dollar sign) are rather long and
|
||||||
contains some additional information on the origin of the named object. But in
|
contains some additional information on the origin of the named object. But in
|
||||||
most cases those names can simply be abbreviated using the last part.
|
most cases those names can simply be abbreviated using the last part.
|
||||||
|
@ -277,12 +294,12 @@ Usually all interactive work is done with one module selected using the
|
||||||
start with ``b`` from all modules whose names start with ``a``.
|
start with ``b`` from all modules whose names start with ``a``.
|
||||||
|
|
||||||
The :cmd:ref:`dump` command can be used to print all information about an
|
The :cmd:ref:`dump` command can be used to print all information about an
|
||||||
object. For example ``dump $2`` will print the below. This can for example be
|
object. For example ``dump $2`` will print :numref:`dump2`. This can for example
|
||||||
useful to determine the names of nets connected to cells, as the net-names are
|
be useful to determine the names of nets connected to cells, as the net-names
|
||||||
usually suppressed in the circuit diagram if they are auto-generated.
|
are usually suppressed in the circuit diagram if they are auto-generated.
|
||||||
|
|
||||||
.. code-block:: RTLIL
|
.. code-block:: RTLIL
|
||||||
:caption: Output of ``dump $2`` using the design from ``example.v``
|
:caption: Output of ``dump $2`` using ``example.v`` from `A simple circuit`_
|
||||||
:name: dump2
|
:name: dump2
|
||||||
|
|
||||||
attribute \src "example.v:5"
|
attribute \src "example.v:5"
|
||||||
|
@ -420,8 +437,9 @@ if the circuit under investigation is encapsulated in a separate module.
|
||||||
.. literalinclude:: /APPNOTE_011_Design_Investigation/memdemo.v
|
.. literalinclude:: /APPNOTE_011_Design_Investigation/memdemo.v
|
||||||
:caption: ``memdemo.v``, a demo circuit for demonstrating some advanced Yosys features
|
:caption: ``memdemo.v``, a demo circuit for demonstrating some advanced Yosys features
|
||||||
:language: verilog
|
:language: verilog
|
||||||
|
:name: memdemo_v
|
||||||
|
|
||||||
Let's consider the design above. It serves no purpose other than being a
|
Let's consider :numref:`memdemo_v`. It serves no purpose other than being a
|
||||||
non-trivial circuit for demonstrating some of the advanced Yosys features. We
|
non-trivial circuit for demonstrating some of the advanced Yosys features. We
|
||||||
synthesize the circuit using ``proc; opt; memory; opt`` and change to the
|
synthesize the circuit using ``proc; opt; memory; opt`` and change to the
|
||||||
``memdemo`` module with ``cd memdemo``. If we type :cmd:ref:`show` now we see
|
``memdemo`` module with ``cd memdemo``. If we type :cmd:ref:`show` now we see
|
||||||
|
@ -433,7 +451,7 @@ the following diagram:
|
||||||
``memdemo``
|
``memdemo``
|
||||||
|
|
||||||
Because this produces a rather large circuit, it can be useful to split it into
|
Because this produces a rather large circuit, it can be useful to split it into
|
||||||
smaller parts for viewing and working with. The code below does exactly that,
|
smaller parts for viewing and working with. :numref:`submod` does exactly that,
|
||||||
utilising the :cmd:ref:`submod` command to split the circuit into three
|
utilising the :cmd:ref:`submod` command to split the circuit into three
|
||||||
sections: ``outstage``, ``selstage``, and ``scramble``.
|
sections: ``outstage``, ``selstage``, and ``scramble``.
|
||||||
|
|
||||||
|
@ -459,6 +477,7 @@ below.
|
||||||
|
|
||||||
.. figure:: /_images/011/submod_03.*
|
.. figure:: /_images/011/submod_03.*
|
||||||
:class: width-helper
|
:class: width-helper
|
||||||
|
:name: selstage
|
||||||
|
|
||||||
``selstage``
|
``selstage``
|
||||||
|
|
||||||
|
@ -472,7 +491,7 @@ Evaluation of combinatorial circuits
|
||||||
|
|
||||||
The :cmd:ref:`eval` command can be used to evaluate combinatorial circuits. As
|
The :cmd:ref:`eval` command can be used to evaluate combinatorial circuits. As
|
||||||
an example, we will use the ``selstage`` subnet of ``memdemo`` which we found
|
an example, we will use the ``selstage`` subnet of ``memdemo`` which we found
|
||||||
above.
|
above and is shown in :numref:`selstage`.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
|
@ -580,12 +599,13 @@ circuit.)
|
||||||
prime. But it has a problem.
|
prime. But it has a problem.
|
||||||
:name: primetest
|
:name: primetest
|
||||||
|
|
||||||
The code above shows a miter circuit that is supposed to be used as a prime
|
:numref:`primetest` shows a miter circuit that is supposed to be used as a prime
|
||||||
number test. If ``ok`` is 1 for all input values ``a`` and ``b`` for a given
|
number test. If ``ok`` is 1 for all input values ``a`` and ``b`` for a given
|
||||||
``p``, then ``p`` is prime, or at least that is the idea.
|
``p``, then ``p`` is prime, or at least that is the idea.
|
||||||
|
|
||||||
.. code-block::
|
.. code-block::
|
||||||
:caption: Experiments with the miter circuit from ``primetest.v``.
|
:caption: Experiments with the miter circuit from ``primetest.v``.
|
||||||
|
:name: prime_shell
|
||||||
|
|
||||||
yosys [primetest]> sat -prove ok 1 -set p 31
|
yosys [primetest]> sat -prove ok 1 -set p 31
|
||||||
|
|
||||||
|
@ -617,18 +637,20 @@ number test. If ``ok`` is 1 for all input values ``a`` and ``b`` for a given
|
||||||
\ok 0 0 0
|
\ok 0 0 0
|
||||||
\p 31 1f 0000000000011111
|
\p 31 1f 0000000000011111
|
||||||
|
|
||||||
The Yosys shell session shown above demonstrates that SAT solvers can even find
|
The Yosys shell session shown in :numref:`prime_shell` demonstrates that SAT
|
||||||
the unexpected solutions to a problem: Using integer overflow there actually is
|
solvers can even find the unexpected solutions to a problem: Using integer
|
||||||
a way of "factorizing" 31. The clean solution would of course be to perform the
|
overflow there actually is a way of "factorizing" 31. The clean solution would
|
||||||
test in 32 bits, for example by replacing ``p != a*b`` in the miter with ``p !=
|
of course be to perform the test in 32 bits, for example by replacing ``p !=
|
||||||
{16'd0,a}b``, or by using a temporary variable for the 32 bit product ``a*b``.
|
a*b`` in the miter with ``p != {16'd0,a}b``, or by using a temporary variable
|
||||||
But as 31 fits well into 8 bits (and as the purpose of this document is to show
|
for the 32 bit product ``a*b``. But as 31 fits well into 8 bits (and as the
|
||||||
off Yosys features) we can also simply force the upper 8 bits of ``a`` and ``b``
|
purpose of this document is to show off Yosys features) we can also simply force
|
||||||
to zero for the :cmd:ref:`sat` call, as is done below.
|
the upper 8 bits of ``a`` and ``b`` to zero for the :cmd:ref:`sat` call, as is
|
||||||
|
done below.
|
||||||
|
|
||||||
.. code-block::
|
.. code-block::
|
||||||
:caption: Miter circuit from ``primetest.v``, with the upper 8 bits of ``a``
|
:caption: Miter circuit from ``primetest.v``, with the upper 8 bits of ``a``
|
||||||
and ``b`` constrained to prevent overflow.
|
and ``b`` constrained to prevent overflow.
|
||||||
|
:name: prime_fixed
|
||||||
|
|
||||||
yosys [primetest]> sat -prove ok 1 -set p 31 -set a[15:8],b[15:8] 0
|
yosys [primetest]> sat -prove ok 1 -set p 31 -set a[15:8],b[15:8] 0
|
||||||
|
|
||||||
|
@ -656,10 +678,10 @@ to zero for the :cmd:ref:`sat` call, as is done below.
|
||||||
\____ $$$|__/|________/|__/|_______/|__/
|
\____ $$$|__/|________/|__/|_______/|__/
|
||||||
\__/
|
\__/
|
||||||
|
|
||||||
The ``-prove`` option used in this example works similar to ``-set``, but tries
|
The ``-prove`` option used in :numref:`prime_fixed` works similar to ``-set``,
|
||||||
to find a case in which the two arguments are not equal. If such a case is not
|
but tries to find a case in which the two arguments are not equal. If such a
|
||||||
found, the property is proven to hold for all inputs that satisfy the other
|
case is not found, the property is proven to hold for all inputs that satisfy
|
||||||
constraints.
|
the other constraints.
|
||||||
|
|
||||||
It might be worth noting, that SAT solvers are not particularly efficient at
|
It might be worth noting, that SAT solvers are not particularly efficient at
|
||||||
factorizing large numbers. But if a small factorization problem occurs as part
|
factorizing large numbers. But if a small factorization problem occurs as part
|
||||||
|
@ -671,9 +693,10 @@ Solving sequential SAT problems
|
||||||
|
|
||||||
The SAT solver functionality in Yosys can not only be used to solve
|
The SAT solver functionality in Yosys can not only be used to solve
|
||||||
combinatorial problems, but can also solve sequential problems. Let's consider
|
combinatorial problems, but can also solve sequential problems. Let's consider
|
||||||
the entire memdemo module from ``memdemo.v`` and suppose we want to know
|
the entire memdemo module from ``memdemo.v`` (:numref:`memdemo_v` above) and
|
||||||
which sequence of input values for ``d`` will cause the output y to produce the
|
suppose we want to know which sequence of input values for ``d`` will cause the
|
||||||
sequence 1, 2, 3 from any initial state. Let's use the following command:
|
output y to produce the sequence 1, 2, 3 from any initial state. Let's use the
|
||||||
|
following command:
|
||||||
|
|
||||||
.. code-block:: yoscrypt
|
.. code-block:: yoscrypt
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue