2013-07-20 08:19:12 -05:00
% Generated using the yosys 'help -write-tex-command-reference-manual' command.
\section { abc -- use ABC for technology mapping}
\label { cmd:abc}
\begin { lstlisting} [numbers=left,frame=single]
abc [options] [selection]
This pass uses the ABC tool [1] for technology mapping of yosys's internal gate
library to a target architecture.
-exe <command>
2016-11-02 13:25:28 -05:00
use the specified command instead of "<yosys-bindir>/yosys-abc" to execute ABC.
2013-07-20 08:19:12 -05:00
This can e.g. be used to call a specific version of ABC or a wrapper.
-script <file>
use the specified ABC script file instead of the default script.
2014-11-08 03:59:48 -06:00
if <file> starts with a plus sign (+), then the rest of the filename
2015-08-14 03:56:05 -05:00
string is interpreted as the command string to be passed to ABC. The
2014-11-08 03:59:48 -06:00
leading plus sign is removed and all commas (,) in the string are
replaced with blanks before the string is passed to ABC.
if no -script parameter is given, the following scripts are used:
for -liberty without -constr:
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; & get -n; & dch -f;
& nf { D} ; & put
2014-11-08 03:59:48 -06:00
for -liberty with -constr:
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; & get -n; & dch -f;
& nf { D} ; & put; buffer; upsize { D} ; dnsize { D} ; stime -p
2014-11-08 03:59:48 -06:00
2016-11-02 13:25:28 -05:00
for -lut/-luts (only one LUT size):
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; dch -f; if; mfs2;
lutpack { S}
2016-11-02 13:25:28 -05:00
for -lut/-luts (different LUT sizes):
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; dch -f; if; mfs2
2016-11-02 13:25:28 -05:00
for -sop:
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; dch -f;
2016-11-02 13:25:28 -05:00
cover { I} { P}
2014-11-08 03:59:48 -06:00
otherwise:
2018-10-16 08:28:37 -05:00
strash; ifraig; scorr; dc2; dretime; strash; & get -n; & dch -f;
& nf { D} ; & put
2014-11-08 03:59:48 -06:00
-fast
use different default scripts that are slightly faster (at the cost
of output quality):
for -liberty without -constr:
2018-10-16 08:28:37 -05:00
strash; dretime; map { D}
2014-11-08 03:59:48 -06:00
for -liberty with -constr:
2018-10-16 08:28:37 -05:00
strash; dretime; map { D} ; buffer; upsize { D} ; dnsize { D} ;
stime -p
2014-11-08 03:59:48 -06:00
2016-11-02 13:25:28 -05:00
for -lut/-luts:
2018-10-16 08:28:37 -05:00
strash; dretime; if
2016-11-02 13:25:28 -05:00
for -sop:
2018-10-16 08:28:37 -05:00
strash; dretime; cover -I { I} -P { P}
2014-11-08 03:59:48 -06:00
otherwise:
2018-10-16 08:28:37 -05:00
strash; dretime; map
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
-liberty <file>
generate netlists for the specified cell library (using the liberty
2014-11-08 03:59:48 -06:00
file format).
2013-07-20 08:19:12 -05:00
2013-11-22 08:02:40 -06:00
-constr <file>
2014-11-08 03:59:48 -06:00
pass this file with timing constraints to ABC. use with -liberty.
a constr file contains two lines:
set_ driving_ cell <cell_ name>
set_ load <floating_ point_ number>
the set_ driving_ cell statement defines which cell type is assumed to
drive the primary inputs and the set_ load statement sets the load in
femtofarads for each primary output.
-D <picoseconds>
set delay target. the string { D} in the default scripts above is
replaced by this option when used, and an empty string otherwise.
2018-10-16 08:28:37 -05:00
this also replaces 'dretime' with 'dretime; retime -o { D} ' in the
default scripts above.
2013-11-22 08:02:40 -06:00
2016-11-02 13:25:28 -05:00
-I <num>
maximum number of SOP inputs.
(replaces { I} in the default scripts above)
-P <num>
maximum number of SOP products.
(replaces { P} in the default scripts above)
2018-10-16 08:28:37 -05:00
-S <num>
maximum number of LUT inputs shared.
(replaces { S} in the default scripts above, default: -S 1)
2013-09-15 04:41:05 -05:00
-lut <width>
generate netlist using luts of (max) the specified width.
2015-02-09 05:05:02 -06:00
-lut <w1>:<w2>
generate netlist using luts of (max) the specified width <w2>. All
luts with width <= <w1> have constant cost. for luts larger than <w1>
the area cost doubles with each additional input bit. the delay cost
is still constant for all lut widths.
2016-02-14 04:02:11 -06:00
-luts <cost1>,<cost2>,<cost3>,<sizeN>:<cost4-N>,..
generate netlist using luts. Use the specified costs for luts with 1,
2, 3, .. inputs.
2016-11-02 13:25:28 -05:00
-sop
map to sum-of-product cells and inverters
2016-02-14 04:02:11 -06:00
-g type1,type2,...
2018-10-16 08:28:37 -05:00
Map to the specified list of gate types. Supported gates types are:
2020-04-11 11:36:51 -05:00
AND, NAND, OR, NOR, XOR, XNOR, ANDNOT, ORNOT, MUX,
NMUX, AOI3, OAI3, AOI4, OAI4.
2016-02-14 04:02:11 -06:00
(The NOT gate is always added to this list automatically.)
2018-10-16 08:28:37 -05:00
The following aliases can be used to reference common sets of gate types:
simple: AND OR XOR MUX
2020-04-11 11:36:51 -05:00
cmos2: NAND NOR
cmos3: NAND NOR AOI3 OAI3
cmos4: NAND NOR AOI3 OAI3 AOI4 OAI4
cmos: NAND NOR AOI3 OAI3 AOI4 OAI4 NMUX MUX XOR XNOR
gates: AND NAND OR NOR XOR XNOR ANDNOT ORNOT
aig: AND NAND OR NOR ANDNOT ORNOT
The alias 'all' represent the full set of all gate types.
2018-10-16 08:28:37 -05:00
Prefix a gate type with a '-' to remove it from the list. For example
the arguments 'AND,OR,XOR' and 'simple,-MUX' are equivalent.
2020-04-11 11:36:51 -05:00
The default is 'all,-NMUX,-AOI3,-OAI3,-AOI4,-OAI4'.
2014-11-08 03:59:48 -06:00
-dff
2015-02-09 05:05:02 -06:00
also pass $ _ DFF _ ? _ and $ _ DFFE_ ??_ cells through ABC. modules with many
clock domains are automatically partitioned in clock domains and each
domain is passed through ABC independently.
2014-11-08 03:59:48 -06:00
2015-02-09 05:05:02 -06:00
-clk [!]<clock-signal-name>[,[!]<enable-signal-name>]
use only the specified clock domain. this is like -dff, but only FF
cells that belong to the specified clock domain are used.
2014-11-08 03:59:48 -06:00
-keepff
set the "keep" attribute on flip-flop output wires. (and thus preserve
2015-08-14 03:56:05 -05:00
them, for example for equivalence checking.)
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
-nocleanup
when this option is used, the temporary files created by this pass
are not removed. this is useful for debugging.
2015-02-09 05:05:02 -06:00
-showtmp
print the temp dir name in log. usually this is suppressed so that the
command output is identical across runs.
-markgroups
set a 'abcgroup' attribute on all objects created by ABC. The value of
this attribute is a unique integer for each ABC process started. This
is useful for debugging the partitioning of clock domains.
2020-04-11 11:36:51 -05:00
-dress
run the 'dress' command after all other ABC commands. This aims to
preserve naming by an equivalence check between the original and post-ABC
netlists (experimental).
2014-11-08 03:59:48 -06:00
When neither -liberty nor -lut is used, the Yosys standard cell library is
loaded into ABC before the ABC script is executed.
2018-10-16 08:28:37 -05:00
Note that this is a logic optimization pass within Yosys that is calling ABC
internally. This is not going to "run ABC on your design". It will instead run
ABC on logic snippets extracted from your design. You will not get any useful
output when passing an ABC script that writes a file. Instead write your full
2020-04-11 11:36:51 -05:00
design as BLIF file with write_ blif and then load that into ABC externally if
you want to use ABC to convert your design into another format.
[1] http://www.eecs.berkeley.edu/~alanmi/abc/
\end { lstlisting}
\section { abc9 -- use ABC9 for technology mapping}
\label { cmd:abc9}
\begin { lstlisting} [numbers=left,frame=single]
abc9 [options] [selection]
This script pass performs a sequence of commands to facilitate the use of the ABC
tool [1] for technology mapping of the current design to a target FPGA
architecture. Only fully-selected modules are supported.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-exe <command>
use the specified command instead of "<yosys-bindir>/yosys-abc" to execute ABC.
This can e.g. be used to call a specific version of ABC or a wrapper.
-script <file>
use the specified ABC script file instead of the default script.
if <file> starts with a plus sign (+), then the rest of the filename
string is interpreted as the command string to be passed to ABC. The
leading plus sign is removed and all commas (,) in the string are
replaced with blanks before the string is passed to ABC.
if no -script parameter is given, the following scripts are used:
& scorr; & sweep; & dc2; & dch -f; & ps; & if { C} { W} { D} { R} -v; & mfs
-fast
use different default scripts that are slightly faster (at the cost
of output quality):
& if { C} { W} { D} { R} -v
-D <picoseconds>
set delay target. the string { D} in the default scripts above is
replaced by this option when used, and an empty string otherwise
(indicating best possible delay).
-lut <width>
generate netlist using luts of (max) the specified width.
-lut <w1>:<w2>
generate netlist using luts of (max) the specified width <w2>. All
luts with width <= <w1> have constant cost. for luts larger than <w1>
the area cost doubles with each additional input bit. the delay cost
is still constant for all lut widths.
-lut <file>
pass this file with lut library to ABC.
-luts <cost1>,<cost2>,<cost3>,<sizeN>:<cost4-N>,..
generate netlist using luts. Use the specified costs for luts with 1,
2, 3, .. inputs.
-maxlut <width>
when auto-generating the lut library, discard all luts equal to or
greater than this size (applicable when neither -lut nor -luts is
specified).
-dff
also pass $ _ ABC 9 _ FF _ cells through to ABC. modules with many clock
domains are marked as such and automatically partitioned by ABC.
-nocleanup
when this option is used, the temporary files created by this pass
are not removed. this is useful for debugging.
-showtmp
print the temp dir name in log. usually this is suppressed so that the
command output is identical across runs.
-box <file>
pass this file with box library to ABC.
Note that this is a logic optimization pass within Yosys that is calling ABC
internally. This is not going to "run ABC on your design". It will instead run
ABC on logic snippets extracted from your design. You will not get any useful
output when passing an ABC script that writes a file. Instead write your full
design as an XAIGER file with `write_ xaiger' and then load that into ABC
externally if you want to use ABC to convert your design into another format.
[1] http://www.eecs.berkeley.edu/~alanmi/abc/
pre:
abc9_ ops -check
scc -set_ attr abc9_ scc_ id { }
abc9_ ops -mark_ scc -prep_ delays -prep_ xaiger [-dff] (option for -dff)
abc9_ ops -prep_ lut <maxlut> (skip if -lut or -luts)
abc9_ ops -prep_ box [-dff] (skip if -box)
select -set abc9_ holes A:abc9_ holes
flatten -wb @abc9_ holes
techmap @abc9_ holes
abc9_ ops -prep_ dff (only if -dff)
opt -purge @abc9_ holes
aigmap
wbflip @abc9_ holes
map:
foreach module in selection
abc9_ ops -write_ lut <abc-temp-dir>/input.lut (skip if '-lut' or '-luts')
abc9_ ops -write_ box <abc-temp-dir>/input.box
write_ xaiger -map <abc-temp-dir>/input.sym <abc-temp-dir>/input.xaig
abc9_ exe [options] -cwd <abc-temp-dir> [-lut <abc-temp-dir>/input.lut] -box <abc-temp-dir>/input.box
read_ aiger -xaiger -wideports -module_ name <module-name>$ abc 9 - map <abc - temp - dir> / input.sym <abc - temp - dir> / output.aig
abc9_ ops -reintegrate
\end { lstlisting}
\section { abc9\_ exe -- use ABC9 for technology mapping}
\label { cmd:abc9_ exe}
\begin { lstlisting} [numbers=left,frame=single]
abc9_ exe [options]
This pass uses the ABC tool [1] for technology mapping of the top module
(according to the (* top *) attribute or if only one module is currently selected)
to a target FPGA architecture.
-exe <command>
use the specified command instead of "<yosys-bindir>/yosys-abc" to execute ABC.
This can e.g. be used to call a specific version of ABC or a wrapper.
-script <file>
use the specified ABC script file instead of the default script.
if <file> starts with a plus sign (+), then the rest of the filename
string is interpreted as the command string to be passed to ABC. The
leading plus sign is removed and all commas (,) in the string are
replaced with blanks before the string is passed to ABC.
if no -script parameter is given, the following scripts are used:
& scorr; & sweep; & dc2; & dch -f; & ps; & if { C} { W} { D} { R} -v; & mfs
-fast
use different default scripts that are slightly faster (at the cost
of output quality):
& if { C} { W} { D} { R} -v
-D <picoseconds>
set delay target. the string { D} in the default scripts above is
replaced by this option when used, and an empty string otherwise
(indicating best possible delay).
-lut <width>
generate netlist using luts of (max) the specified width.
-lut <w1>:<w2>
generate netlist using luts of (max) the specified width <w2>. All
luts with width <= <w1> have constant cost. for luts larger than <w1>
the area cost doubles with each additional input bit. the delay cost
is still constant for all lut widths.
-lut <file>
pass this file with lut library to ABC.
-luts <cost1>,<cost2>,<cost3>,<sizeN>:<cost4-N>,..
generate netlist using luts. Use the specified costs for luts with 1,
2, 3, .. inputs.
-showtmp
print the temp dir name in log. usually this is suppressed so that the
command output is identical across runs.
-box <file>
pass this file with box library to ABC.
-cwd <dir>
use this as the current working directory, inside which the 'input.xaig'
file is expected. temporary files will be created in this directory, and
the mapped result will be written to 'output.aig'.
Note that this is a logic optimization pass within Yosys that is calling ABC
internally. This is not going to "run ABC on your design". It will instead run
ABC on logic snippets extracted from your design. You will not get any useful
output when passing an ABC script that writes a file. Instead write your full
design as BLIF file with write_ blif and then load that into ABC externally if
2018-10-16 08:28:37 -05:00
you want to use ABC to convert your design into another format.
2013-07-20 08:19:12 -05:00
[1] http://www.eecs.berkeley.edu/~alanmi/abc/
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { abc9\_ ops -- helper functions for ABC9}
\label { cmd:abc9_ ops}
\begin { lstlisting} [numbers=left,frame=single]
abc9_ ops [options] [selection]
This pass contains a set of supporting operations for use during ABC technology
mapping, and is expected to be called in conjunction with other operations from
the `abc9' script pass. Only fully-selected modules are supported.
-check
check that the design is valid, e.g. (* abc9_ box_ id *) values are unique,
(* abc9_ carry *) is only given for one input/output port, etc.
-prep_ delays
insert `$ _ _ ABC 9 _ DELAY' blackbox cells into the design to account for
certain required times.
-mark_ scc
for an arbitrarily chosen cell in each unique SCC of each selected module
(tagged with an (* abc9_ scc_ id = <int> *) attribute), temporarily mark all
wires driven by this cell's outputs with a (* keep *) attribute in order
to break the SCC. this temporary attribute will be removed on -reintegrate.
-prep_ xaiger
prepare the design for XAIGER output. this includes computing the
topological ordering of ABC9 boxes, as well as preparing the
'<module-name>$ holes' module that contains the logic behaviour of ABC 9
whiteboxes.
-dff
consider flop cells (those instantiating modules marked with (* abc9_ flop *))
during -prep_ { delays,xaiger,box} .
-prep_ dff
compute the clock domain and initial value of each flop in the design.
process the '$ holes' module to support clock - enable functionality.
-prep_ lut <maxlut>
pre-compute the lut library by analysing all modules marked with
(* abc9_ lut=<area> *).
-write_ lut <dst>
write the pre-computed lut library to <dst>.
-prep_ box
pre-compute the box library by analysing all modules marked with
(* abc9_ box *).
-write_ box <dst>
write the pre-computed box library to <dst>.
-reintegrate
for each selected module, re-intergrate the module '<module-name>$ abc 9 '
by first recovering ABC9 boxes, and then stitching in the remaining primary
inputs and outputs.
\end { lstlisting}
2013-11-22 08:02:40 -06:00
\section { add -- add objects to the design}
\label { cmd:add}
\begin { lstlisting} [numbers=left,frame=single]
add <command> [selection]
This command adds objects to the design. It operates on all fully selected
modules. So e.g. 'add -wire foo' will add a wire foo to all selected modules.
add { -wire|-input|-inout|-output} <name> <width> [selection]
Add a wire (input, inout, output port) with the given name and width. The
command will fail if the object exists already and has different properties
than the object to be created.
add -global_ input <name> <width> [selection]
Like 'add -input', but also connect the signal between instances of the
selected modules.
2020-04-11 11:36:51 -05:00
add { -assert|-assume|-live|-fair|-cover} <name1> [-if <name2>]
Add an $ assert, $ assume, etc. cell connected to a wire named name1, with its
enable signal optionally connected to a wire named name2 (default: 1'b1).
add -mod <name[s]>
Add module[s] with the specified name[s].
2013-11-22 08:02:40 -06:00
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { aigmap -- map logic to and-inverter-graph circuit}
\label { cmd:aigmap}
\begin { lstlisting} [numbers=left,frame=single]
aigmap [options] [selection]
Replace all logic cells with circuits made of only $ _ AND _ and
$ _ NOT _ cells.
-nand
Enable creation of $ _ NAND _ cells
2020-04-11 11:36:51 -05:00
-select
Overwrite replaced cells in the current selection with new $ _ AND _ ,
$ _ NOT _ , and $ _ NAND_ , cells
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { alumacc -- extract ALU and MACC cells}
\label { cmd:alumacc}
\begin { lstlisting} [numbers=left,frame=single]
alumacc [selection]
2015-02-09 05:05:02 -06:00
This pass translates arithmetic operations like $ add, $ mul, $ lt, etc. to $ alu
and $ macc cells.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { anlogic\_ eqn -- Anlogic: Calculate equations for luts}
\label { cmd:anlogic_ eqn}
\begin { lstlisting} [numbers=left,frame=single]
anlogic_ eqn [selection]
Calculate equations for luts since bitstream generator depends on it.
\end { lstlisting}
\section { anlogic\_ fixcarry -- Anlogic: fix carry chain}
\label { cmd:anlogic_ fixcarry}
\begin { lstlisting} [numbers=left,frame=single]
anlogic_ fixcarry [options] [selection]
Add Anlogic adders to fix carry chain if needed.
\end { lstlisting}
\section { assertpmux -- adds asserts for parallel muxes}
2016-11-02 13:25:28 -05:00
\label { cmd:assertpmux}
\begin { lstlisting} [numbers=left,frame=single]
assertpmux [options] [selection]
This command adds asserts to the design that assert that all parallel muxes
($ pmux cells ) have a maximum of one of their inputs enable at any time.
-noinit
do not enforce the pmux condition during the init state
-always
usually the $ pmux condition is only checked when the $ pmux output
2020-04-11 11:36:51 -05:00
is used by the mux tree it drives. this option will deactivate this
additional constraint and check the $ pmux condition always.
2016-11-02 13:25:28 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { async2sync -- convert async FF inputs to sync circuits}
\label { cmd:async2sync}
\begin { lstlisting} [numbers=left,frame=single]
async2sync [options] [selection]
This command replaces async FF inputs with sync circuits emulating the same
behavior for when the async signals are actually synchronized to the clock.
This pass assumes negative hold time for the async FF inputs. For example when
a reset deasserts with the clock edge, then the FF output will still drive the
reset value in the next cycle regardless of the data-in value at the time of
the clock edge.
2020-04-11 11:36:51 -05:00
Currently only $ adff, $ dffsr, and $ dlatch cells are supported by this pass.
2018-10-16 08:28:37 -05:00
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { attrmap -- renaming attributes}
\label { cmd:attrmap}
\begin { lstlisting} [numbers=left,frame=single]
attrmap [options] [selection]
2020-04-11 11:36:51 -05:00
This command renames attributes and/or maps key/value pairs to
2016-11-02 13:25:28 -05:00
other key/value pairs.
-tocase <name>
Match attribute names case-insensitively and set it to the specified
name.
-rename <old_ name> <new_ name>
Rename attributes as specified
-map <old_ name>=<old_ value> <new_ name>=<new_ value>
Map key/value pairs as indicated.
-imap <old_ name>=<old_ value> <new_ name>=<new_ value>
Like -map, but use case-insensitive match for <old_ value> when
it is a string value.
-remove <name>=<value>
Remove attributes matching this pattern.
-modattr
Operate on module attributes instead of attributes on wires and cells.
For example, mapping Xilinx-style "keep" attributes to Yosys-style:
attrmap -tocase keep -imap keep="true" keep=1 \
-imap keep="false" keep=0 -remove keep=0
\end { lstlisting}
\section { attrmvcp -- move or copy attributes from wires to driving cells}
\label { cmd:attrmvcp}
\begin { lstlisting} [numbers=left,frame=single]
attrmvcp [options] [selection]
Move or copy attributes on wires to the cells driving them.
-copy
By default, attributes are moved. This will only add
the attribute to the cell, without removing it from
the wire.
-purge
If no selected cell consumes the attribute, then it is
left on the wire by default. This option will cause the
attribute to be removed from the wire, even if no selected
cell takes it.
-driven
By default, attriburtes are moved to the cell driving the
wire. With this option set it will be moved to the cell
driven by the wire instead.
-attr <attrname>
Move or copy this attribute. This option can be used
multiple times.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { autoname -- automatically assign names to objects}
\label { cmd:autoname}
\begin { lstlisting} [numbers=left,frame=single]
autoname [selection]
Assign auto-generated public names to objects with private names (the ones
with $ - prefix ) .
\end { lstlisting}
\section { blackbox -- convert modules into blackbox modules}
2018-10-16 08:28:37 -05:00
\label { cmd:blackbox}
\begin { lstlisting} [numbers=left,frame=single]
blackbox [options] [selection]
Convert modules into blackbox modules (remove contents and set the blackbox
module attribute).
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { bugpoint -- minimize testcases}
\label { cmd:bugpoint}
\begin { lstlisting} [numbers=left,frame=single]
bugpoint [options]
This command minimizes testcases that crash Yosys. It removes an arbitrary part
of the design and recursively invokes Yosys with a given script, repeating these
steps while it can find a smaller design that still causes a crash. Once this
command finishes, it replaces the current design with the smallest testcase it
was able to produce.
It is possible to specify the kinds of design part that will be removed. If none
are specified, all parts of design will be removed.
-yosys <filename>
use this Yosys binary. if not specified, `yosys` is used.
-script <filename>
use this script to crash Yosys. required.
-grep <string>
only consider crashes that place this string in the log file.
-fast
run `proc_ clean; clean -purge` after each minimization step. converges
faster, but produces larger testcases, and may fail to produce any
testcase at all if the crash is related to dangling wires.
-clean
run `proc_ clean; clean -purge` before checking testcase and after
finishing. produces smaller and more useful testcases, but may fail to
produce any testcase at all if the crash is related to dangling wires.
-modules
try to remove modules.
-ports
try to remove module ports.
-cells
try to remove cells.
-connections
try to reconnect ports to 'x.
-assigns
try to remove process assigns from cases.
-updates
try to remove process updates from syncs.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { cd -- a shortcut for 'select -module <name>'}
\label { cmd:cd}
\begin { lstlisting} [numbers=left,frame=single]
cd <modname>
This is just a shortcut for 'select -module <modname>'.
cd <cellname>
When no module with the specified name is found, but there is a cell
2015-08-14 03:56:05 -05:00
with the specified name in the current module, then this is equivalent
2013-07-20 08:19:12 -05:00
to 'cd <celltype>'.
cd ..
2018-10-16 08:28:37 -05:00
Remove trailing substrings that start with '.' in current module name until
the name of a module in the current design is generated, then switch to that
module. Otherwise clear the current selection.
cd
2013-07-20 08:19:12 -05:00
This is just a shortcut for 'select -clear'.
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { check -- check for obvious problems in the design}
\label { cmd:check}
\begin { lstlisting} [numbers=left,frame=single]
check [options] [selection]
This pass identifies the following problems in the current design:
- combinatorial loops
- two or more conflicting drivers for one wire
- used wires that do not have a driver
2020-04-11 11:36:51 -05:00
Options:
-noinit
Also check for wires which have the 'init' attribute set.
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
-initdrv
Also check for wires that have the 'init' attribute set and are not
driven by an FF cell type.
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
-mapped
Also check for internal cells that have not been mapped to cells of the
target architecture.
-allow-tbuf
Modify the -mapped behavior to still allow $ _ TBUF _ cells.
-assert
Produce a runtime error if any problems are found in the current design.
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { chformal -- change formal constraints of the design}
\label { cmd:chformal}
\begin { lstlisting} [numbers=left,frame=single]
chformal [types] [mode] [options] [selection]
Make changes to the formal constraints of the design. The [types] options
2020-04-11 11:36:51 -05:00
the type of constraint to operate on. If none of the following options are given,
2018-10-16 08:28:37 -05:00
the command will operate on all constraint types:
-assert $ assert cells, representing assert ( ... ) constraints
-assume $ assume cells, representing assume ( ... ) constraints
-live $ live cells, representing assert ( s _ eventually ... )
-fair $ fair cells, representing assume ( s _ eventually ... )
-cover $ cover cells, representing cover ( ) statements
Exactly one of the following modes must be specified:
-remove
remove the cells and thus constraints from the design
-early
bypass FFs that only delay the activation of a constraint
-delay <N>
delay activation of the constraint by <N> clock cycles
-skip <N>
ignore activation of the constraint in the first <N> clock cycles
-assert2assume
-assume2assert
-live2fair
-fair2live
2020-04-11 11:36:51 -05:00
change the roles of cells as indicated. these options can be combined
2018-10-16 08:28:37 -05:00
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { chparam -- re-evaluate modules with new parameters}
\label { cmd:chparam}
\begin { lstlisting} [numbers=left,frame=single]
chparam [ -set name value ]... [selection]
Re-evaluate the selected modules with new parameters. String values must be
passed in double quotes (").
chparam -list [selection]
List the available parameters of the selected modules.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { chtype -- change type of cells in the design}
\label { cmd:chtype}
\begin { lstlisting} [numbers=left,frame=single]
chtype [options] [selection]
Change the types of cells in the design.
-set <type>
set the cell type to the given type
-map <old_ type> <new_ type>
change cells types that match <old_ type> to <new_ type>
\end { lstlisting}
2013-09-15 04:41:05 -05:00
\section { clean -- remove unused cells and wires}
\label { cmd:clean}
\begin { lstlisting} [numbers=left,frame=single]
clean [options] [selection]
This is identical to 'opt_ clean', but less verbose.
2014-09-06 01:47:06 -05:00
When commands are separated using the ';;' token, this command will be executed
2013-09-15 04:41:05 -05:00
between the commands.
2014-09-06 01:47:06 -05:00
When commands are separated using the ';;;' token, this command will be executed
2013-09-15 04:41:05 -05:00
in -purge mode between the commands.
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { clk2fflogic -- convert clocked FFs to generic \$ ff cells}
\label { cmd:clk2fflogic}
\begin { lstlisting} [numbers=left,frame=single]
clk2fflogic [options] [selection]
This command replaces clocked flip-flops with generic $ ff cells that use the
implicit global clock. This is useful for formal verification of designs with
multiple clocks.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { clkbufmap -- insert global buffers on clock networks}
\label { cmd:clkbufmap}
\begin { lstlisting} [numbers=left,frame=single]
clkbufmap [options] [selection]
Inserts global buffers between nets connected to clock inputs and their drivers.
In the absence of any selection, all wires without the 'clkbuf_ inhibit'
attribute will be considered for global buffer insertion.
Alternatively, to consider all wires without the 'buffer_ type' attribute set to
'none' or 'bufr' one would specify:
'w:* a:buffer_ type=none a:buffer_ type=bufr %u %d'
as the selection.
-buf <celltype> <portname_ out>:<portname_ in>
Specifies the cell type to use for the global buffers
and its port names. The first port will be connected to
the clock network sinks, and the second will be connected
to the actual clock source. This option is required.
-inpad <celltype> <portname_ out>:<portname_ in>
If specified, a PAD cell of the given type is inserted on
clock nets that are also top module's inputs (in addition
to the global buffer).
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { connect -- create or remove connections}
\label { cmd:connect}
\begin { lstlisting} [numbers=left,frame=single]
connect [-nomap] [-nounset] -set <lhs-expr> <rhs-expr>
2015-08-14 03:56:05 -05:00
Create a connection. This is equivalent to adding the statement 'assign
<lhs-expr> = <rhs-expr>;' to the Verilog input. Per default, all existing
2014-11-08 03:59:48 -06:00
drivers for <lhs-expr> are unconnected. This can be overwritten by using
the -nounset option.
connect [-nomap] -unset <expr>
Unconnect all existing drivers for the specified expression.
connect [-nomap] -port <cell> <port> <expr>
Connect the specified cell port to the specified cell port.
Per default signal alias names are resolved and all signal names are mapped
the the signal name of the primary driver. Using the -nomap option deactivates
this behavior.
The connect command operates in one module only. Either only one module must
be selected or an active module must be set using the 'cd' command.
This command does not operate on module with processes.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { connect\_ rpc -- connect to RPC frontend}
\label { cmd:connect_ rpc}
\begin { lstlisting} [numbers=left,frame=single]
connect_ rpc -exec <command> [args...]
connect_ rpc -path <path>
Load modules using an out-of-process frontend.
-exec <command> [args...]
run <command> with arguments [args...]. send requests on stdin, read
responses from stdout.
-path <path>
connect to Unix domain socket at <path>. (Unix)
connect to bidirectional byte-type named pipe at <path>. (Windows)
A simple JSON-based, newline-delimited protocol is used for communicating with
the frontend. Yosys requests data from the frontend by sending exactly 1 line
of JSON. Frontend responds with data or error message by replying with exactly
1 line of JSON as well.
-> { "method": "modules"}
<- { "modules": ["<module-name>", ...]}
<- { "error": "<error-message>"}
request for the list of modules that can be derived by this frontend.
the 'hierarchy' command will call back into this frontend if a cell
with type <module-name> is instantiated in the design.
-> { "method": "derive", "module": "<module-name">, "parameters": {
"<param-name>": { "type": "[unsigned|signed|string|real]",
"value": "<param-value>"} , ...} }
<- { "frontend": "[ilang|verilog|...]","source": "<source>"} }
<- { "error": "<error-message>"}
request for the module <module-name> to be derived for a specific set of
parameters. <param-name> starts with \ for named parameters, and with $
for unnamed parameters, which are numbered starting at 1.<param-value>
for integer parameters is always specified as a binary string of unlimited
precision. the <source> returned by the frontend is hygienically parsed
by a built-in Yosys <frontend>, allowing the RPC frontend to return any
convenient representation of the module. the derived module is cached,
so the response should be the same whenever the same set of parameters
is provided.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { connwrappers -- match width of input-output port pairs}
2014-11-08 03:59:48 -06:00
\label { cmd:connwrappers}
\begin { lstlisting} [numbers=left,frame=single]
connwrappers [options] [selection]
Wrappers are used in coarse-grain synthesis to wrap cells with smaller ports
in wrapper cells with a (larger) constant port size. I.e. the upper bits
2015-08-14 03:56:05 -05:00
of the wrapper output are signed/unsigned bit extended. This command uses this
knowledge to rewire the inputs of the driven cells to match the output of
2014-11-08 03:59:48 -06:00
the driving cell.
-signed <cell_ type> <port_ name> <width_ param>
-unsigned <cell_ type> <port_ name> <width_ param>
consider the specified signed/unsigned wrapper output
-port <cell_ type> <port_ name> <width_ param> <sign_ param>
use the specified parameter to decide if signed or unsigned
The options -signed, -unsigned, and -port can be specified multiple times.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { coolrunner2\_ fixup -- insert necessary buffer cells for CoolRunner-II architecture}
\label { cmd:coolrunner2_ fixup}
\begin { lstlisting} [numbers=left,frame=single]
coolrunner2_ fixup [options] [selection]
Insert necessary buffer cells for CoolRunner-II architecture.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { coolrunner2\_ sop -- break \$ sop cells into ANDTERM/ORTERM cells}
\label { cmd:coolrunner2_ sop}
\begin { lstlisting} [numbers=left,frame=single]
coolrunner2_ sop [options] [selection]
Break $ sop cells into ANDTERM / ORTERM cells.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { copy -- copy modules in the design}
\label { cmd:copy}
\begin { lstlisting} [numbers=left,frame=single]
copy old_ name new_ name
Copy the specified module. Note that selection patterns are not supported
by this command.
\end { lstlisting}
\section { cover -- print code coverage counters}
\label { cmd:cover}
\begin { lstlisting} [numbers=left,frame=single]
cover [options] [pattern]
Print the code coverage counters collected using the cover() macro in the Yosys
C++ code. This is useful to figure out what parts of Yosys are utilized by a
test bench.
-q
Do not print output to the normal destination (console and/or log file)
-o file
Write output to this file, truncate if exists.
-a file
Write output to this file, append if exists.
-d dir
Write output to a newly created file in the specified directory.
When one or more pattern (shell wildcards) are specified, then only counters
matching at least one pattern are printed.
It is also possible to instruct Yosys to print the coverage counters on program
exit to a file using environment variables:
YOSYS_ COVER_ DIR="{ dir-name} " yosys { args}
This will create a file (with an auto-generated name) in this
directory and write the coverage counters to it.
YOSYS_ COVER_ FILE="{ file-name} " yosys { args}
This will append the coverage counters to the specified file.
Hint: Use the following AWK command to consolidate Yosys coverage files:
gawk '{ p[$ 3 ] = $ 1; c[$ 3 ] + = $ 2; } END { for (i in p)
printf "%-60s %10d %s\n", p[i], c[i], i; }' {files} | sort -k3
2015-02-09 05:05:02 -06:00
Coverage counters are only available in Yosys for Linux.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { cutpoint -- adds formal cut points to the design}
\label { cmd:cutpoint}
\begin { lstlisting} [numbers=left,frame=single]
cutpoint [options] [selection]
This command adds formal cut points to the design.
-undef
set cupoint nets to undef (x). the default behavior is to create a
$ anyseq cell and drive the cutpoint net from that
\end { lstlisting}
\section { debug -- run command with debug log messages enabled}
\label { cmd:debug}
\begin { lstlisting} [numbers=left,frame=single]
debug cmd
Execute the specified command with debug log messages enabled
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { delete -- delete objects in the design}
\label { cmd:delete}
\begin { lstlisting} [numbers=left,frame=single]
delete [selection]
Deletes the selected objects. This will also remove entire modules, if the
whole module is selected.
delete { -input|-output|-port} [selection]
Does not delete any object but removes the input and/or output flag on the
selected wires, thus 'deleting' module ports.
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { deminout -- demote inout ports to input or output}
\label { cmd:deminout}
\begin { lstlisting} [numbers=left,frame=single]
deminout [options] [selection]
"Demote" inout ports to input or output ports, if possible.
\end { lstlisting}
2013-09-15 04:41:05 -05:00
\section { design -- save, restore and reset current design}
\label { cmd:design}
\begin { lstlisting} [numbers=left,frame=single]
design -reset
Clear the current design.
design -save <name>
Save the current design under the given name.
2014-11-08 03:59:48 -06:00
design -stash <name>
Save the current design under the given name and then clear the current design.
design -push
Push the current design to the stack and then clear the current design.
2020-04-11 11:36:51 -05:00
design -push-copy
Push the current design to the stack without clearing the current design.
2014-11-08 03:59:48 -06:00
design -pop
Reset the current design and pop the last design from the stack.
2013-09-15 04:41:05 -05:00
design -load <name>
Reset the current design and load the design previously saved under the given
name.
2014-11-08 03:59:48 -06:00
design -copy-from <name> [-as <new_ mod_ name>] <selection>
Copy modules from the specified design into the current one. The selection is
evaluated in the other design.
design -copy-to <name> [-as <new_ mod_ name>] [selection]
2015-08-14 03:56:05 -05:00
Copy modules from the current design into the specified one.
2018-10-16 08:28:37 -05:00
design -import <name> [-as <new_ top_ name>] [selection]
Import the specified design into the current design. The source design must
either have a selected top module or the selection must contain exactly one
module that is then used as top module for this command.
design -reset-vlog
The Verilog front-end remembers defined macros and top-level declarations
between calls to 'read_ verilog'. This command resets this memory.
2013-09-15 04:41:05 -05:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { determine\_ init -- Determine the init value of cells}
\label { cmd:determine_ init}
\begin { lstlisting} [numbers=left,frame=single]
determine_ init [selection]
Determine the init value of cells that doesn't allow unknown init value.
\end { lstlisting}
2015-02-09 06:24:29 -06:00
\section { dff2dffe -- transform \$ dff cells to \$ dffe cells}
2015-02-09 05:05:02 -06:00
\label { cmd:dff2dffe}
\begin { lstlisting} [numbers=left,frame=single]
2015-08-14 04:27:19 -05:00
dff2dffe [options] [selection]
2015-02-09 05:05:02 -06:00
This pass transforms $ dff cells driven by a tree of multiplexers with one or
more feedback paths to $ dffe cells. It also works on gate - level cells such as
$ _ DFF _ P _ , $ _ DFF_ N_ and $ _ MUX _ .
-unmap
operate in the opposite direction: replace $ dffe cells with combinations
2020-04-11 11:36:51 -05:00
of $ dff and $ mux cells. the options below are ignored in unmap mode.
-unmap-mince N
Same as -unmap but only unmap $ dffe where the clock enable port
signal is used by less $ dffe than the specified number
2015-02-09 05:05:02 -06:00
-direct <internal_ gate_ type> <external_ gate_ type>
map directly to external gate type. <internal_ gate_ type> can
be any internal gate-level FF cell (except $ _ DFFE _ ?? _ ) . the
<external_ gate_ type> is the cell type name for a cell with an
identical interface to the <internal_ gate_ type>, except it
also has an high-active enable port 'E'.
2015-08-14 03:56:05 -05:00
Usually <external_ gate_ type> is an intermediate cell type
2015-02-09 05:05:02 -06:00
that is then translated to the final type using 'techmap'.
2015-08-14 04:27:19 -05:00
-direct-match <pattern>
like -direct for all DFF cell types matching the expression.
this will use $ _ _ DFFE _ * as <external _ gate _ type> matching the
2018-10-16 08:28:37 -05:00
internal gate type $ _ DFF _ * _ , and $ _ _ DFFSE_ * for those matching
$ _ DFFS _ * _ , except for $ _ DFF_ [NP]_ , which is converted to
$ _ DFFE _ [ NP ] _ .
\end { lstlisting}
\section { dff2dffs -- process sync set/reset with SR over CE priority}
\label { cmd:dff2dffs}
\begin { lstlisting} [numbers=left,frame=single]
dff2dffs [options] [selection]
Merge synchronous set/reset $ _ MUX _ cells to create $ _ _ DFFS_ [NP][NP][01], to be run before
dff2dffe for SR over CE priority.
2020-04-11 11:36:51 -05:00
-match-init
Disallow merging synchronous set/reset that has polarity opposite of the
output wire's init attribute (if any).
2015-08-14 04:27:19 -05:00
\end { lstlisting}
\section { dffinit -- set INIT param on FF cells}
\label { cmd:dffinit}
\begin { lstlisting} [numbers=left,frame=single]
dffinit [options] [selection]
This pass sets an FF cell parameter to the the initial value of the net it
drives. (This is primarily used in FPGA flows.)
-ff <cell_ name> <output_ port> <init_ param>
operate on the specified cell type. this option can be used
multiple times.
2018-10-16 08:28:37 -05:00
-highlow
use the string values "high" and "low" to represent a single-bit
initial value of 1 or 0. (multi-bit values are not supported in this
mode.)
2020-04-11 11:36:51 -05:00
-strinit <string for high> <string for low>
use string values in the command line to represent a single-bit
initial value of 1 or 0. (multi-bit values are not supported in this
mode.)
-noreinit
fail if the FF cell has already a defined initial value set in other
passes and the initial value of the net it drives is not equal to
the already defined initial value.
2015-02-09 05:05:02 -06:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { dfflibmap -- technology mapping of flip-flops}
\label { cmd:dfflibmap}
\begin { lstlisting} [numbers=left,frame=single]
2015-02-09 05:05:02 -06:00
dfflibmap [-prepare] -liberty <file> [selection]
2013-07-20 08:19:12 -05:00
Map internal flip-flop cells to the flip-flop cells in the technology
library specified in the given liberty file.
This pass may add inverters as needed. Therefore it is recommended to
first run this pass and then map the logic paths to the target technology.
2015-02-09 05:05:02 -06:00
When called with -prepare, this command will convert the internal FF cells
to the internal cell types that best match the cells found in the given
liberty file.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { dump -- print parts of the design in ilang format}
\label { cmd:dump}
\begin { lstlisting} [numbers=left,frame=single]
dump [options] [selection]
Write the selected parts of the design to the console or specified file in
ilang format.
2013-12-28 05:14:47 -06:00
-m
also dump the module headers, even if only parts of a single
module is selected
-n
only dump the module headers if the entire module is selected
2015-02-09 05:05:02 -06:00
-o <filename>
2014-11-08 03:59:48 -06:00
write to the specified file.
2015-02-09 05:05:02 -06:00
-a <filename>
2014-11-08 03:59:48 -06:00
like -outfile but append instead of overwrite
\end { lstlisting}
\section { echo -- turning echoing back of commands on and off}
\label { cmd:echo}
\begin { lstlisting} [numbers=left,frame=single]
echo on
Print all commands to log before executing them.
echo off
Do not print all commands to log before executing them. (default)
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { ecp5\_ ffinit -- ECP5: handle FF init values}
\label { cmd:ecp5_ ffinit}
\begin { lstlisting} [numbers=left,frame=single]
ecp5_ ffinit [options] [selection]
Remove init values for FF output signals when equal to reset value.
If reset is not used, set the reset value to the init value, otherwise
unmap out the reset (if not an async reset).
\end { lstlisting}
\section { ecp5\_ gsr -- ECP5: handle GSR}
\label { cmd:ecp5_ gsr}
\begin { lstlisting} [numbers=left,frame=single]
ecp5_ gsr [options] [selection]
Trim active low async resets connected to GSR and resolve GSR parameter,
if a GSR or SGSR primitive is used in the design.
If any cell has the GSR parameter set to "AUTO", this will be resolved
to "ENABLED" if a GSR primitive is present and the (* nogsr *) attribute
is not set, otherwise it will be resolved to "DISABLED".
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { edgetypes -- list all types of edges in selection}
\label { cmd:edgetypes}
\begin { lstlisting} [numbers=left,frame=single]
edgetypes [options] [selection]
This command lists all unique types of 'edges' found in the selection. An 'edge'
is a 4-tuple of source and sink cell type and port name.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { efinix\_ fixcarry -- Efinix: fix carry chain}
\label { cmd:efinix_ fixcarry}
\begin { lstlisting} [numbers=left,frame=single]
efinix_ fixcarry [options] [selection]
Add Efinix adders to fix carry chain if needed.
\end { lstlisting}
\section { efinix\_ gbuf -- Efinix: insert global clock buffers}
\label { cmd:efinix_ gbuf}
\begin { lstlisting} [numbers=left,frame=single]
efinix_ gbuf [options] [selection]
Add Efinix global clock buffers to top module as needed.
\end { lstlisting}
2015-02-09 06:24:29 -06:00
\section { equiv\_ add -- add a \$ equiv cell}
2015-02-09 05:05:02 -06:00
\label { cmd:equiv_ add}
\begin { lstlisting} [numbers=left,frame=single]
2016-02-14 04:02:11 -06:00
equiv_ add [-try] gold_ sig gate_ sig
2015-02-09 05:05:02 -06:00
This command adds an $ equiv cell for the specified signals.
2016-02-14 04:02:11 -06:00
equiv_ add [-try] -cell gold_ cell gate_ cell
This command adds $ equiv cells for the ports of the specified cells.
2015-02-09 05:05:02 -06:00
\end { lstlisting}
2015-02-09 06:24:29 -06:00
\section { equiv\_ induct -- proving \$ equiv cells using temporal induction}
2015-02-09 05:05:02 -06:00
\label { cmd:equiv_ induct}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ induct [options] [selection]
Uses a version of temporal induction to prove $ equiv cells.
Only selected $ equiv cells are proven and only selected cells are used to
perform the proof.
-undef
enable modelling of undef states
-seq <N>
the max. number of time steps to be considered (default = 4)
This command is very effective in proving complex sequential circuits, when
the internal state of the circuit quickly propagates to $ equiv cells.
However, this command uses a weak definition of 'equivalence': This command
proves that the two circuits will not diverge after they produce equal
outputs (observable points via $ equiv ) for at least <N> cycles ( the <N>
specified via -seq).
Combined with simulation this is very powerful because simulation can give
you confidence that the circuits start out synced for at least <N> cycles
after reset.
\end { lstlisting}
\section { equiv\_ make -- prepare a circuit for equivalence checking}
\label { cmd:equiv_ make}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ make [options] gold_ module gate_ module equiv_ module
This creates a module annotated with $ equiv cells from two presumably
equivalent modules. Use commands such as 'equiv_ simple' and 'equiv_ status'
to work with the created equivalent checking module.
-inames
Also match cells and wires with $ ... names.
-blacklist <file>
Do not match cells or signals that match the names in the file.
-encfile <file>
2015-08-14 03:56:05 -05:00
Match FSM encodings using the description from the file.
2015-02-09 05:05:02 -06:00
See 'help fsm_ recode' for details.
Note: The circuit created by this command is not a miter (with something like
a trigger output), but instead uses $ equiv cells to encode the equivalence
checking problem. Use 'miter -equiv' if you want to create a miter circuit.
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { equiv\_ mark -- mark equivalence checking regions}
\label { cmd:equiv_ mark}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ mark [options] [selection]
This command marks the regions in an equivalence checking module. Region 0 is
the proven part of the circuit. Regions with higher numbers are connected
unproven subcricuits. The integer attribute 'equiv_ region' is set on all
wires and cells.
\end { lstlisting}
2015-02-09 05:05:02 -06:00
\section { equiv\_ miter -- extract miter from equiv circuit}
\label { cmd:equiv_ miter}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ miter [options] miter_ module [selection]
This creates a miter module for further analysis of the selected $ equiv cells.
-trigger
Create a trigger output
-cmp
Create cmp_ * outputs for individual unproven $ equiv cells
-assert
Create a $ assert cell for each unproven $ equiv cell
-undef
Create compare logic that handles undefs correctly
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { equiv\_ opt -- prove equivalence for optimized circuit}
\label { cmd:equiv_ opt}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ opt [options] [command]
This command uses temporal induction to check circuit equivalence before and
after an optimization pass.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to the start of the command list, and empty to
label is synonymous to the end of the command list.
-map <filename>
expand the modules in this file before proving equivalence. this is
useful for handling architecture-specific primitives.
-blacklist <file>
Do not match cells or signals that match the names in the file
(passed to equiv_ make).
-assert
produce an error if the circuits are not equivalent.
-multiclock
run clk2fflogic before equivalence checking.
-async2sync
run async2sync before equivalence checking.
-undef
enable modelling of undef states during equiv_ induct.
The following commands are executed by this verification command:
run_ pass:
hierarchy -auto-top
design -save preopt
[command]
design -stash postopt
prepare:
design -copy-from preopt -as gold A:top
design -copy-from postopt -as gate A:top
techmap: (only with -map)
techmap -wb -D EQUIV -autoproc -map <filename> ...
prove:
clk2fflogic (only with -multiclock)
async2sync (only with -async2sync)
equiv_ make -blacklist <filename> ... gold gate equiv
equiv_ induct [-undef] equiv
equiv_ status [-assert] equiv
restore:
design -load preopt
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { equiv\_ purge -- purge equivalence checking module}
\label { cmd:equiv_ purge}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ purge [options] [selection]
This command removes the proven part of an equivalence checking module, leaving
only the unproven segments in the design. This will also remove and add module
ports as needed.
\end { lstlisting}
2015-02-09 06:24:29 -06:00
\section { equiv\_ remove -- remove \$ equiv cells}
2015-02-09 05:05:02 -06:00
\label { cmd:equiv_ remove}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ remove [options] [selection]
This command removes the selected $ equiv cells. If neither - gold nor - gate is
used then only proven cells are removed.
-gold
keep gold circuit
-gate
keep gate circuit
\end { lstlisting}
2015-02-09 06:24:29 -06:00
\section { equiv\_ simple -- try proving simple \$ equiv instances}
2015-02-09 05:05:02 -06:00
\label { cmd:equiv_ simple}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ simple [options] [selection]
This command tries to prove $ equiv cells using a simple direct SAT approach.
-v
verbose output
-undef
enable modelling of undef states
2018-10-16 08:28:37 -05:00
-short
create shorter input cones that stop at shared nodes. This yields
simpler SAT problems but sometimes fails to prove equivalence.
2015-02-09 05:05:02 -06:00
-nogroup
disabling grouping of $ equiv cells by output wire
-seq <N>
the max. number of time steps to be considered (default = 1)
\end { lstlisting}
\section { equiv\_ status -- print status of equivalent checking module}
\label { cmd:equiv_ status}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ status [options] [selection]
This command prints status information for all selected $ equiv cells.
-assert
produce an error if any unproven $ equiv cell is found
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { equiv\_ struct -- structural equivalence checking}
\label { cmd:equiv_ struct}
\begin { lstlisting} [numbers=left,frame=single]
equiv_ struct [options] [selection]
This command adds additional $ equiv cells based on the assumption that the
gold and gate circuit are structurally equivalent. Note that this can introduce
bad $ equiv cells in cases where the netlists are not structurally equivalent,
for example when analyzing circuits with cells with commutative inputs. This
command will also de-duplicate gates.
-fwd
by default this command performans forward sweeps until nothing can
be merged by forwards sweeps, then backward sweeps until forward
sweeps are effective again. with this option set only forward sweeps
are performed.
-fwonly <cell_ type>
add the specified cell type to the list of cell types that are only
merged in forward sweeps and never in backward sweeps. $ equiv is in
this list automatically.
-icells
by default, the internal RTL and gate cell types are ignored. add
this option to also process those cell types with this command.
-maxiter <N>
maximum number of iterations to run before aborting
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { eval -- evaluate the circuit given an input}
\label { cmd:eval}
\begin { lstlisting} [numbers=left,frame=single]
eval [options] [selection]
This command evaluates the value of a signal given the value of all required
inputs.
-set <signal> <value>
set the specified signal to the specified value.
2013-12-28 05:14:47 -06:00
-set-undef
set all unspecified source signals to undef (x)
-table <signal>
create a truth table using the specified input signals
2013-07-20 08:19:12 -05:00
-show <signal>
show the value for the specified signal. if no -show option is passed
then all output ports of the current module are used.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { exec -- execute commands in the operating system shell}
\label { cmd:exec}
\begin { lstlisting} [numbers=left,frame=single]
exec [options] -- [command]
Execute a command in the operating system shell. All supplied arguments are
concatenated and passed as a command to popen(3). Whitespace is not guaranteed
to be preserved, even if quoted. stdin and stderr are not connected, while stdout is
logged unless the "-q" option is specified.
-q
Suppress stdout and stderr from subprocess
-expect-return <int>
Generate an error if popen() does not return specified value.
May only be specified once; the final specified value is controlling
if specified multiple times.
-expect-stdout <regex>
Generate an error if the specified regex does not match any line
in subprocess's stdout. May be specified multiple times.
-not-expect-stdout <regex>
Generate an error if the specified regex matches any line
in subprocess's stdout. May be specified multiple times.
Example: exec -q -expect-return 0 -- echo "bananapie" | grep "nana"
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { expose -- convert internal signals to module ports}
\label { cmd:expose}
\begin { lstlisting} [numbers=left,frame=single]
expose [options] [selection]
This command exposes all selected internal signals of a module as additional
outputs.
-dff
only consider wires that are directly driven by register cell.
-cut
when exposing a wire, create an input/output pair and cut the internal
signal path at that wire.
2018-10-16 08:28:37 -05:00
-input
when exposing a wire, create an input port and disconnect the internal
driver.
2014-11-08 03:59:48 -06:00
-shared
2015-08-14 03:56:05 -05:00
only expose those signals that are shared among the selected modules.
this is useful for preparing modules for equivalence checking.
2014-11-08 03:59:48 -06:00
-evert
also turn connections to instances of other modules to additional
inputs and outputs and remove the module instances.
-evert-dff
turn flip-flops to sets of inputs and outputs.
-sep <separator>
when creating new wire/port names, the original object name is suffixed
with this separator (default: '.') and the port name or a type
designator for the exposed signal.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { extract -- find subcircuits and replace them with cells}
\label { cmd:extract}
\begin { lstlisting} [numbers=left,frame=single]
extract -map <map_ file> [options] [selection]
extract -mine <out_ file> [options] [selection]
This pass looks for subcircuits that are isomorphic to any of the modules
in the given map file and replaces them with instances of this modules. The
2015-08-14 03:56:05 -05:00
map file can be a Verilog source file (*.v) or an ilang file (*.il).
2013-07-20 08:19:12 -05:00
-map <map_ file>
2014-11-08 03:59:48 -06:00
use the modules in this file as reference. This option can be used
multiple times.
-map %<design-name>
use the modules in this in-memory design as reference. This option can
be used multiple times.
2013-07-20 08:19:12 -05:00
-verbose
print debug output while analyzing
-constports
also find instances with constant drivers. this may be much
slower than the normal operation.
-nodefaultswaps
normally builtin port swapping rules for internal cells are used per
default. This turns that off, so e.g. 'a^ b' does not match 'b^ a'
when this option is used.
-compat <needle_ type> <haystack_ type>
Per default, the cells in the map file (needle) must have the
type as the cells in the active design (haystack). This option
can be used to register additional pairs of types that should
match. This option can be used multiple times.
-swap <needle_ type> <port1>,<port2>[,...]
2015-08-14 03:56:05 -05:00
Register a set of swappable ports for a needle cell type.
2013-07-20 08:19:12 -05:00
This option can be used multiple times.
-perm <needle_ type> <port1>,<port2>[,...] <portA>,<portB>[,...]
2015-08-14 03:56:05 -05:00
Register a valid permutation of swappable ports for a needle
2013-07-20 08:19:12 -05:00
cell type. This option can be used multiple times.
-cell_ attr <attribute_ name>
Attributes on cells with the given name must match.
-wire_ attr <attribute_ name>
Attributes on wires with the given name must match.
2014-11-08 03:59:48 -06:00
-ignore_ parameters
Do not use parameters when matching cells.
-ignore_ param <cell_ type> <parameter_ name>
Do not use this parameter when matching cells.
2015-08-14 03:56:05 -05:00
This pass does not operate on modules with unprocessed processes in it.
2013-07-20 08:19:12 -05:00
(I.e. the 'proc' pass should be used first to convert processes to netlists.)
This pass can also be used for mining for frequent subcircuits. In this mode
the following options are to be used instead of the -map option.
-mine <out_ file>
mine for frequent subcircuits and write them to the given ilang file
-mine_ cells_ span <min> <max>
only mine for subcircuits with the specified number of cells
default value: 3 5
-mine_ min_ freq <num>
only mine for subcircuits with at least the specified number of matches
default value: 10
-mine_ limit_ matches_ per_ module <num>
when calculating the number of matches for a subcircuit, don't count
more than the specified number of matches per module
-mine_ max_ fanout <num>
don't consider internal signals with more than <num> connections
The modules in the map file may have the attribute 'extract_ order' set to an
integer value. Then this value is used to determine the order in which the pass
tries to map the modules to the design (ascending, default value is 0).
See 'help techmap' for a pass that does the opposite thing.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { extract\_ counter -- Extract GreenPak4 counter cells}
\label { cmd:extract_ counter}
\begin { lstlisting} [numbers=left,frame=single]
extract_ counter [options] [selection]
This pass converts non-resettable or async resettable down counters to
counter cells. Use a target-specific 'techmap' map file to convert those cells
to the actual target cells.
-maxwidth N
2020-04-11 11:36:51 -05:00
Only extract counters up to N bits wide (default 64)
-minwidth N
Only extract counters at least N bits wide (default 2)
-allow_ arst yes|no
Allow counters to have async reset (default yes)
-dir up|down|both
Look for up-counters, down-counters, or both (default down)
2018-10-16 08:28:37 -05:00
-pout X,Y,...
Only allow parallel output from the counter to the listed cell types
(if not specified, parallel outputs are not restricted)
\end { lstlisting}
\section { extract\_ fa -- find and extract full/half adders}
\label { cmd:extract_ fa}
\begin { lstlisting} [numbers=left,frame=single]
extract_ fa [options] [selection]
This pass extracts full/half adders from a gate-level design.
-fa, -ha
Enable cell types (fa=full adder, ha=half adder)
All types are enabled if none of this options is used
-d <int>
Set maximum depth for extracted logic cones (default=20)
-b <int>
Set maximum breadth for extracted logic cones (default=6)
-v
Verbose output
\end { lstlisting}
\section { extract\_ reduce -- converts gate chains into \$ reduce\_ * cells}
\label { cmd:extract_ reduce}
\begin { lstlisting} [numbers=left,frame=single]
extract_ reduce [options] [selection]
converts gate chains into $ reduce _ * cells
This command finds chains of $ _ AND _ , $ _ OR_ , and $ _ XOR _ cells and replaces them
with their corresponding $ reduce _ * cells. Because this command only operates on
these cell types, it is recommended to map the design to only these cell types
using the `abc -g` command. Note that, in some cases, it may be more effective
to map the design to only $ _ AND _ cells, run extract _ reduce, map the remaining
parts of the design to AND/OR/XOR cells, and run extract_ reduce a second time.
-allow-off-chain
Allows matching of cells that have loads outside the chain. These cells
will be replicated and folded into the $ reduce _ * cell, but the original
cell will remain, driving its original loads.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { extractinv -- extract explicit inverter cells for invertible cell pins}
\label { cmd:extractinv}
\begin { lstlisting} [numbers=left,frame=single]
extractinv [options] [selection]
Searches the design for all cells with invertible pins controlled by a cell
parameter (eg. IS_ CLK_ INVERTED on many Xilinx cells) and removes the parameter.
If the parameter was set to 1, inserts an explicit inverter cell in front of
the pin instead. Normally used for output to ISE, which does not support the
inversion parameters.
To mark a cell port as invertible, use (* invertible_ pin = "param_ name" *)
on the wire in the blackbox module. The parameter value should have
the same width as the port, and will be effectively XORed with it.
-inv <celltype> <portname_ out>:<portname_ in>
Specifies the cell type to use for the inverters and its port names.
This option is required.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { flatten -- flatten design}
\label { cmd:flatten}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
flatten [options] [selection]
2013-07-20 08:19:12 -05:00
This pass flattens the design by replacing cells by their implementation. This
2015-08-14 03:56:05 -05:00
pass is very similar to the 'techmap' pass. The only difference is that this
2013-07-20 08:19:12 -05:00
pass is using the current design as mapping library.
2015-08-14 04:27:19 -05:00
2015-08-14 15:23:01 -05:00
Cells and/or modules with the 'keep_ hierarchy' attribute set will not be
2015-08-14 04:27:19 -05:00
flattened by this command.
2020-04-11 11:36:51 -05:00
-wb
Ignore the 'whitebox' attribute on cell implementations.
\end { lstlisting}
\section { flowmap -- pack LUTs with FlowMap}
\label { cmd:flowmap}
\begin { lstlisting} [numbers=left,frame=single]
flowmap [options] [selection]
This pass uses the FlowMap technology mapping algorithm to pack logic gates
into k-LUTs with optimal depth. It allows mapping any circuit elements that can
be evaluated with the `eval` pass, including cells with multiple output ports
and multi-bit input and output ports.
-maxlut k
perform technology mapping for a k-LUT architecture. if not specified,
defaults to 3.
-minlut n
only produce n-input or larger LUTs. if not specified, defaults to 1.
-cells <cell>[,<cell>,...]
map specified cells. if not specified, maps $ _ NOT _ , $ _ AND_ , $ _ OR _ ,
$ _ XOR _ and $ _ MUX_ , which are the outputs of the `simplemap` pass.
-relax
perform depth relaxation and area minimization.
-r-alpha n, -r-beta n, -r-gamma n
parameters of depth relaxation heuristic potential function.
if not specified, alpha=8, beta=2, gamma=1.
-optarea n
optimize for area by trading off at most n logic levels for fewer LUTs.
n may be zero, to optimize for area without increasing depth.
implies -relax.
-debug
dump intermediate graphs.
-debug-relax
explain decisions performed during depth relaxation.
\end { lstlisting}
\section { fmcombine -- combine two instances of a cell into one}
\label { cmd:fmcombine}
\begin { lstlisting} [numbers=left,frame=single]
fmcombine [options] module_ name gold_ cell gate_ cell
This pass takes two cells, which are instances of the same module, and replaces
them with one instance of a special 'combined' module, that effectively
contains two copies of the original module, plus some formal properties.
This is useful for formal test benches that check what differences in behavior
a slight difference in input causes in a module.
-initeq
Insert assumptions that initially all FFs in both circuits have the
same initial values.
-anyeq
Do not duplicate $ anyseq / $ anyconst cells.
-fwd
Insert forward hint assumptions into the combined module.
-bwd
Insert backward hint assumptions into the combined module.
(Backward hints are logically equivalend to fordward hits, but
some solvers are faster with bwd hints, or even both -bwd and -fwd.)
-nop
Don't insert hint assumptions into the combined module.
(This should not provide any speedup over the original design, but
strangely sometimes it does.)
If none of -fwd, -bwd, and -nop is given, then -fwd is used as default.
\end { lstlisting}
\section { fminit -- set init values/sequences for formal}
\label { cmd:fminit}
\begin { lstlisting} [numbers=left,frame=single]
fminit [options] <selection>
This pass creates init constraints (for example for reset sequences) in a formal
model.
-seq <signal> <sequence>
Set sequence using comma-separated list of values, use 'z for
unconstrained bits. The last value is used for the remainder of the
trace.
-set <signal> <value>
Add constant value constraint
-posedge <signal>
-negedge <signal>
Set clock for init sequences
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2013-09-15 04:41:05 -05:00
\section { freduce -- perform functional reduction}
\label { cmd:freduce}
\begin { lstlisting} [numbers=left,frame=single]
freduce [options] [selection]
This pass performs functional reduction in the circuit. I.e. if two nodes are
2015-08-14 03:56:05 -05:00
equivalent, they are merged to one node and one of the redundant drivers is
2014-11-08 03:59:48 -06:00
disconnected. A subsequent call to 'clean' will remove the redundant drivers.
-v, -vv
enable verbose or very verbose output
-inv
enable explicit handling of inverted signals
-stop <n>
stop after <n> reduction operations. this is mostly used for
debugging the freduce command itself.
2013-09-15 04:41:05 -05:00
2014-11-08 03:59:48 -06:00
-dump <prefix>
dump the design to <prefix>_ <module>_ <num>.il after each reduction
operation. this is mostly used for debugging the freduce command.
This pass is undef-aware, i.e. it considers don't-care values for detecting
2015-08-14 03:56:05 -05:00
equivalent nodes.
2014-11-08 03:59:48 -06:00
All selected wires are considered for rewiring. The selected cells cover the
circuit that is analyzed.
2013-09-15 04:41:05 -05:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { fsm -- extract and optimize finite state machines}
\label { cmd:fsm}
\begin { lstlisting} [numbers=left,frame=single]
fsm [options] [selection]
This pass calls all the other fsm_ * passes in a useful order. This performs
2015-08-14 03:56:05 -05:00
FSM extraction and optimization. It also calls opt_ clean as needed:
2013-07-20 08:19:12 -05:00
fsm_ detect unless got option -nodetect
fsm_ extract
fsm_ opt
opt_ clean
fsm_ opt
fsm_ expand if got option -expand
opt_ clean if got option -expand
fsm_ opt if got option -expand
fsm_ recode unless got option -norecode
fsm_ info
fsm_ export if got option -export
fsm_ map unless got option -nomap
Options:
-expand, -norecode, -export, -nomap
enable or disable passes as indicated above
2016-11-02 13:25:28 -05:00
-fullexpand
call expand with -full option
2015-08-14 03:56:05 -05:00
-encoding type
2013-07-20 08:19:12 -05:00
-fm_ set_ fsm_ file file
2015-02-09 05:05:02 -06:00
-encfile file
2013-07-20 08:19:12 -05:00
passed through to fsm_ recode pass
\end { lstlisting}
\section { fsm\_ detect -- finding FSMs in design}
\label { cmd:fsm_ detect}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ detect [selection]
This pass detects finite state machines by identifying the state signal.
The state signal is then marked by setting the attribute 'fsm_ encoding'
on the state signal to "auto".
Existing 'fsm_ encoding' attributes are not changed by this pass.
Signals can be protected from being detected by this pass by setting the
'fsm_ encoding' attribute to "none".
\end { lstlisting}
\section { fsm\_ expand -- expand FSM cells by merging logic into it}
\label { cmd:fsm_ expand}
\begin { lstlisting} [numbers=left,frame=single]
2016-11-02 13:25:28 -05:00
fsm_ expand [-full] [selection]
2013-07-20 08:19:12 -05:00
The fsm_ extract pass is conservative about the cells that belong to a finite
state machine. This pass can be used to merge additional auxiliary gates into
2015-08-14 03:56:05 -05:00
the finite state machine.
2016-11-02 13:25:28 -05:00
By default, fsm_ expand is still a bit conservative regarding merging larger
word-wide cells. Call with -full to consider all cells for merging.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { fsm\_ export -- exporting FSMs to KISS2 files}
\label { cmd:fsm_ export}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ export [-noauto] [-o filename] [-origenc] [selection]
This pass creates a KISS2 file for every selected FSM. For FSMs with the
'fsm_ export' attribute set, the attribute value is used as filename, otherwise
the module and cell name is used as filename. If the parameter '-o' is given,
the first exported FSM is written to the specified filename. This overwrites
the setting as specified with the 'fsm_ export' attribute. All other FSMs are
exported to the default name as mentioned above.
-noauto
only export FSMs that have the 'fsm_ export' attribute set
-o filename
filename of the first exported FSM
-origenc
use binary state encoding as state names instead of s0, s1, ...
\end { lstlisting}
\section { fsm\_ extract -- extracting FSMs in design}
\label { cmd:fsm_ extract}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ extract [selection]
This pass operates on all signals marked as FSM state signals using the
'fsm_ encoding' attribute. It consumes the logic that creates the state signal
and uses the state signal to generate control signal and replaces it with an
FSM cell.
The generated FSM cell still generates the original state signal with its
original encoding. The 'fsm_ opt' pass can be used in combination with the
'opt_ clean' pass to eliminate this signal.
\end { lstlisting}
\section { fsm\_ info -- print information on finite state machines}
\label { cmd:fsm_ info}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ info [selection]
This pass dumps all internal information on FSM cells. It can be useful for
analyzing the synthesis process and is called automatically by the 'fsm'
pass so that this information is included in the synthesis log file.
\end { lstlisting}
\section { fsm\_ map -- mapping FSMs to basic logic}
\label { cmd:fsm_ map}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ map [selection]
This pass translates FSM cells to flip-flops and logic.
\end { lstlisting}
\section { fsm\_ opt -- optimize finite state machines}
\label { cmd:fsm_ opt}
\begin { lstlisting} [numbers=left,frame=single]
fsm_ opt [selection]
This pass optimizes FSM cells. It detects which output signals are actually
not used and removes them from the FSM. This pass is usually used in
combination with the 'opt_ clean' pass (see also 'help fsm').
\end { lstlisting}
\section { fsm\_ recode -- recoding finite state machines}
\label { cmd:fsm_ recode}
\begin { lstlisting} [numbers=left,frame=single]
2015-02-09 05:05:02 -06:00
fsm_ recode [options] [selection]
2013-07-20 08:19:12 -05:00
This pass reassign the state encodings for FSM cells. At the moment only
2015-02-09 05:05:02 -06:00
one-hot encoding and binary encoding is supported.
-encoding <type>
specify the encoding scheme used for FSMs without the
'fsm_ encoding' attribute or with the attribute set to `auto'.
-fm_ set_ fsm_ file <file>
generate a file containing the mapping from old to new FSM encoding
in form of Synopsys Formality set_ fsm_ * commands.
2013-07-20 08:19:12 -05:00
2015-02-09 05:05:02 -06:00
-encfile <file>
write the mappings from old to new FSM encoding to a file in the
following format:
.fsm <module_ name> <state_ signal>
.map <old_ bitpattern> <new_ bitpattern>
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { greenpak4\_ dffinv -- merge greenpak4 inverters and DFF/latches}
2016-11-02 13:25:28 -05:00
\label { cmd:greenpak4_ dffinv}
\begin { lstlisting} [numbers=left,frame=single]
greenpak4_ dffinv [options] [selection]
2018-10-16 08:28:37 -05:00
Merge GP_ INV cells with GP_ DFF* and GP_ DLATCH* cells.
2016-11-02 13:25:28 -05:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { help -- display help messages}
\label { cmd:help}
\begin { lstlisting} [numbers=left,frame=single]
2016-02-14 04:02:11 -06:00
help ................ list all commands
help <command> ...... print help message for given command
help -all ........... print complete command reference
help -cells .......... list all cell types
help <celltype> ..... print help message for given cell type
help <celltype>+ .... print verilog code for given cell type
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { hierarchy -- check, expand and clean up design hierarchy}
\label { cmd:hierarchy}
\begin { lstlisting} [numbers=left,frame=single]
hierarchy [-check] [-top <module>]
hierarchy -generate <cell-types> <port-decls>
2014-09-06 01:47:06 -05:00
In parametric designs, a module might exists in several variations with
2013-07-20 08:19:12 -05:00
different parameter values. This pass looks at all modules in the current
design an re-runs the language frontends for the parametric modules as
2020-04-11 11:36:51 -05:00
needed. It also resolves assignments to wired logic data types (wand/wor),
resolves positional module parameters, unroll array instances, and more.
2013-07-20 08:19:12 -05:00
-check
also check the design hierarchy. this generates an error when
an unknown module is used as cell type.
2018-10-16 08:28:37 -05:00
-simcheck
2020-04-11 11:36:51 -05:00
like -check, but also throw an error if blackbox modules are
instantiated, and throw an error if the design has no top module.
2018-10-16 08:28:37 -05:00
2014-11-08 03:59:48 -06:00
-purge_ lib
by default the hierarchy command will not remove library (blackbox)
2015-08-14 04:27:19 -05:00
modules. use this option to also remove unused blackbox modules.
2014-11-08 03:59:48 -06:00
-libdir <directory>
search for files named <module_ name>.v in the specified directory
for unknown modules and automatically run read_ verilog for each
unknown module.
2013-11-22 08:02:40 -06:00
-keep_ positionals
per default this pass also converts positional arguments in cells
2020-04-11 11:36:51 -05:00
to arguments using port names. This option disables this behavior.
2013-11-22 08:02:40 -06:00
2018-10-16 08:28:37 -05:00
-keep_ portwidths
per default this pass adjusts the port width on cells that are
2020-04-11 11:36:51 -05:00
module instances when the width does not match the module port. This
2018-10-16 08:28:37 -05:00
option disables this behavior.
2020-04-11 11:36:51 -05:00
-nodefaults
do not resolve input port default values
2014-11-08 03:59:48 -06:00
-nokeep_ asserts
per default this pass sets the "keep" attribute on all modules
2020-04-11 11:36:51 -05:00
that directly or indirectly contain one or more formal properties.
This option disables this behavior.
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
-top <module>
2020-04-11 11:36:51 -05:00
use the specified top module to build the design hierarchy. Modules
2013-07-20 08:19:12 -05:00
outside this tree (unused modules) are removed.
2013-12-28 05:14:47 -06:00
when the -top option is used, the 'top' attribute will be set on the
specified top module. otherwise a module with the 'top' attribute set
will implicitly be used as top module, if such a module exists.
2015-08-14 04:27:19 -05:00
-auto-top
automatically determine the top of the design hierarchy and mark it.
2020-04-11 11:36:51 -05:00
-chparam name value
elaborate the top module using this parameter value. Modules on which
this parameter does not exist may cause a warning message to be output.
This option can be specified multiple times to override multiple
parameters. String values must be passed in double quotes (").
2013-11-22 08:02:40 -06:00
In -generate mode this pass generates blackbox modules for the given cell
2013-07-20 08:19:12 -05:00
types (wildcards supported). For this the design is searched for cells that
match the given types and then the given port declarations are used to
determine the direction of the ports. The syntax for a port declaration is:
{ i|o|io} [@<num>]:<portname>
Input ports are specified with the 'i' prefix, output ports with the 'o'
prefix and inout ports with the 'io' prefix. The optional <num> specifies
2015-08-14 03:56:05 -05:00
the position of the port in the parameter list (needed when instantiated
2013-07-20 08:19:12 -05:00
using positional arguments). When <num> is not specified, the <portname> can
also contain wildcard characters.
This pass ignores the current selection and always operates on all modules
in the current design.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { hilomap -- technology mapping of constant hi- and/or lo-drivers}
\label { cmd:hilomap}
\begin { lstlisting} [numbers=left,frame=single]
hilomap [options] [selection]
Map constants to 'tielo' and 'tiehi' driver cells.
-hicell <celltype> <portname>
Replace constant hi bits with this cell.
-locell <celltype> <portname>
Replace constant lo bits with this cell.
-singleton
Create only one hi/lo cell and connect all constant bits
to that cell. Per default a separate cell is created for
each constant bit.
\end { lstlisting}
2013-12-28 05:14:47 -06:00
\section { history -- show last interactive commands}
\label { cmd:history}
\begin { lstlisting} [numbers=left,frame=single]
history
This command prints all commands in the shell history buffer. This are
all commands executed in an interactive session, but not the commands
from executed scripts.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { ice40\_ braminit -- iCE40: perform SB\_ RAM40\_ 4K initialization from file}
\label { cmd:ice40_ braminit}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ braminit
This command processes all SB_ RAM40_ 4K blocks with a non-empty INIT_ FILE
parameter and converts it into the required INIT_ x attributes
\end { lstlisting}
\section { ice40\_ dsp -- iCE40: map multipliers}
\label { cmd:ice40_ dsp}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ dsp [options] [selection]
Map multipliers ($ mul / SB _ MAC 16 ) and multiply - accumulate ( $ mul/SB_ MAC16 + $ add )
cells into iCE40 DSP resources.
Currently, only the 16x16 multiply mode is supported and not the 2 x 8x8 mode.
Pack input registers (A, B, { C,D} ; with optional hold), pipeline registers
({ F,J,K,G} , H), output registers (O -- full 32-bits or lower 16-bits only; with
optional hold), and post-adder into into the SB_ MAC16 resource.
Multiply-accumulate operations using the post-adder with feedback on the { C,D}
input will be folded into the DSP. In this scenario only, resetting the
the accumulator to an arbitrary value can be inferred to use the { C,D} input.
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { ice40\_ ffinit -- iCE40: handle FF init values}
\label { cmd:ice40_ ffinit}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ ffinit [options] [selection]
Remove zero init values for FF output signals. Add inverters to implement
nonzero init values.
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { ice40\_ ffssr -- iCE40: merge synchronous set/reset into FF cells}
\label { cmd:ice40_ ffssr}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ ffssr [options] [selection]
Merge synchronous set/reset $ _ MUX _ cells into iCE 40 FFs.
\end { lstlisting}
\section { ice40\_ opt -- iCE40: perform simple optimizations}
\label { cmd:ice40_ opt}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ opt [options] [selection]
This command executes the following script:
do
<ice40 specific optimizations>
2016-11-02 13:25:28 -05:00
opt_ expr -mux_ undef -undriven [-full]
opt_ merge
2015-08-14 04:27:19 -05:00
opt_ rmdff
opt_ clean
while <changed design>
2020-04-11 11:36:51 -05:00
\end { lstlisting}
\section { ice40\_ wrapcarry -- iCE40: wrap carries}
\label { cmd:ice40_ wrapcarry}
\begin { lstlisting} [numbers=left,frame=single]
ice40_ wrapcarry [selection]
Wrap manually instantiated SB_ CARRY cells, along with their associated SB_ LUT4s,
into an internal $ _ _ ICE 40 _ CARRY _ WRAPPER cell for preservation across technology
mapping.
2016-11-02 13:25:28 -05:00
2020-04-11 11:36:51 -05:00
Attributes on both cells will have their names prefixed with 'SB_ CARRY.' or
'SB_ LUT4.' and attached to the wrapping cell.
A (* keep *) attribute on either cell will be logically OR-ed together.
-unwrap
unwrap $ _ _ ICE 40 _ CARRY _ WRAPPER cells back into SB _ CARRYs and SB _ LUT 4 s,
including restoring their attributes.
2016-11-02 13:25:28 -05:00
\end { lstlisting}
\section { insbuf -- insert buffer cells for connected wires}
\label { cmd:insbuf}
\begin { lstlisting} [numbers=left,frame=single]
insbuf [options] [selection]
Insert buffer cells into the design for directly connected wires.
-buf <celltype> <in-portname> <out-portname>
Use the given cell type instead of $ _ BUF _ . ( Notice that the next
call to "clean" will remove all $ _ BUF _ in the design. )
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2013-11-22 08:02:40 -06:00
\section { iopadmap -- technology mapping of i/o pads (or buffers)}
\label { cmd:iopadmap}
\begin { lstlisting} [numbers=left,frame=single]
iopadmap [options] [selection]
Map module inputs/outputs to PAD cells from a library. This pass
can only map to very simple PAD cells. Use 'techmap' to further map
the resulting cells to more sophisticated PAD cells.
-inpad <celltype> <portname>[:<portname>]
2016-02-14 04:02:11 -06:00
Map module input ports to the given cell type with the
given output port name. if a 2nd portname is given, the
2013-11-22 08:02:40 -06:00
signal is passed through the pad call, using the 2nd
2016-11-02 13:25:28 -05:00
portname as the port facing the module port.
2013-11-22 08:02:40 -06:00
-outpad <celltype> <portname>[:<portname>]
-inoutpad <celltype> <portname>[:<portname>]
Similar to -inpad, but for output and inout ports.
2016-11-02 13:25:28 -05:00
-toutpad <celltype> <portname>:<portname>[:<portname>]
Merges $ _ TBUF _ cells into the output pad cell. This takes precedence
over the other -outpad cell. The first portname is the enable input
of the tristate driver.
-tinoutpad <celltype> <portname>:<portname>:<portname>[:<portname>]
Merges $ _ TBUF _ cells into the inout pad cell. This takes precedence
over the other -inoutpad cell. The first portname is the enable input
of the tristate driver and the 2nd portname is the internal output
buffering the external signal.
2020-04-11 11:36:51 -05:00
-ignore <celltype> <portname>[:<portname>]*
Skips mapping inputs/outputs that are already connected to given
ports of the given cell. Can be used multiple times. This is in
addition to the cells specified as mapping targets.
2013-11-22 08:02:40 -06:00
-widthparam <param_ name>
Use the specified parameter name to set the port width.
-nameparam <param_ name>
Use the specified parameter to set the port name.
2014-11-08 03:59:48 -06:00
-bits
create individual bit-wide buffers even for ports that
2015-02-09 05:05:02 -06:00
are wider. (the default behavior is to create word-wide
buffers using -widthparam to set the word size on the cell.)
2016-11-02 13:25:28 -05:00
Tristate PADS (-toutpad, -tinoutpad) always operate in -bits mode.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { json -- write design in JSON format}
\label { cmd:json}
\begin { lstlisting} [numbers=left,frame=single]
json [options] [selection]
Write a JSON netlist of all selected objects.
-o <filename>
write to the specified file.
-aig
also include AIG models for the different gate types
2020-04-11 11:36:51 -05:00
-compat-int
emit 32-bit or smaller fully-defined parameter values directly
as JSON numbers (for compatibility with old parsers)
2015-08-14 04:27:19 -05:00
See 'help write_ json' for a description of the JSON format used.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { log -- print text and log files}
\label { cmd:log}
\begin { lstlisting} [numbers=left,frame=single]
log string
Print the given string to the screen and/or the log file. This is useful for TCL
scripts, because the TCL command "puts" only goes to stdout but not to
logfiles.
-stdout
Print the output to stdout too. This is useful when all Yosys is executed
with a script and the -q (quiet operation) argument to notify the user.
-stderr
Print the output to stderr too.
-nolog
Don't use the internal log() command. Use either -stdout or -stderr,
otherwise no output will be generated at all.
-n
do not append a newline
2013-11-22 08:02:40 -06:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { logger -- set logger properties}
\label { cmd:logger}
\begin { lstlisting} [numbers=left,frame=single]
logger [options]
This command sets global logger properties, also available using command line
options.
-[no]time
enable/disable display of timestamp in log output.
-[no]stderr
enable/disable logging errors to stderr.
-warn regex
print a warning for all log messages matching the regex.
-nowarn regex
if a warning message matches the regex, it is printed as regular
message instead.
-werror regex
if a warning message matches the regex, it is printed as error
message instead and the tool terminates with a nonzero return code.
-[no]debug
globally enable/disable debug log messages.
-experimental <feature>
do not print warnings for the specified experimental feature
-expect <type> <regex> <expected_ count>
expect log,warning or error to appear. In case of error return code is 0.
-expect-no-warnings
gives error in case there is at least one warning that is not expected.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { ls -- list modules or objects in modules}
\label { cmd:ls}
\begin { lstlisting} [numbers=left,frame=single]
2015-02-09 05:05:02 -06:00
ls [selection]
2013-07-20 08:19:12 -05:00
2015-02-09 05:05:02 -06:00
When no active module is selected, this prints a list of modules.
2013-07-20 08:19:12 -05:00
When an active module is selected, this prints a list of objects in the module.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { ltp -- print longest topological path}
\label { cmd:ltp}
\begin { lstlisting} [numbers=left,frame=single]
ltp [options] [selection]
This command prints the longest topological path in the design. (Only considers
paths within a single module, so the design must be flattened.)
-noff
automatically exclude FF cell types
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { lut2mux -- convert \$ lut to \$ \_ MUX\_ }
\label { cmd:lut2mux}
\begin { lstlisting} [numbers=left,frame=single]
lut2mux [options] [selection]
This pass converts $ lut cells to $ _ MUX_ gates.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { maccmap -- mapping macc cells}
\label { cmd:maccmap}
\begin { lstlisting} [numbers=left,frame=single]
maccmap [-unmap] [selection]
2015-08-14 04:27:19 -05:00
This pass maps $ macc cells to yosys $ fa and $ alu cells. When the - unmap option
is used then the $ macc cell is mapped to $ add, $ sub, etc. cells instead.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { memory -- translate memories to basic cells}
\label { cmd:memory}
\begin { lstlisting} [numbers=left,frame=single]
2016-11-02 13:25:28 -05:00
memory [-nomap] [-nordff] [-memx] [-bram <bram_ rules>] [selection]
2013-07-20 08:19:12 -05:00
This pass calls all the other memory_ * passes in a useful order:
2020-04-11 11:36:51 -05:00
opt_ mem
2016-11-02 13:25:28 -05:00
memory_ dff [-nordff] (-memx implies -nordff)
2014-11-08 03:59:48 -06:00
opt_ clean
memory_ share
opt_ clean
2016-11-02 13:25:28 -05:00
memory_ memx (when called with -memx)
2013-07-20 08:19:12 -05:00
memory_ collect
2015-02-09 05:05:02 -06:00
memory_ bram -rules <bram_ rules> (when called with -bram)
memory_ map (skipped if called with -nomap)
2013-07-20 08:19:12 -05:00
This converts memories to word-wide DFFs and address decoders
2013-11-22 08:02:40 -06:00
or multiport memory blocks if called with the -nomap option.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2015-02-09 05:05:02 -06:00
\section { memory\_ bram -- map memories to block rams}
\label { cmd:memory_ bram}
\begin { lstlisting} [numbers=left,frame=single]
memory_ bram -rules <rule_ file> [selection]
This pass converts the multi-port $ mem memory cells into block ram instances.
The given rules file describes the available resources and how they should be
used.
2020-04-11 11:36:51 -05:00
The rules file contains configuration options, a set of block ram description
and a sequence of match rules.
The option 'attr_ icase' configures how attribute values are matched. The value 0
means case-sensitive, 1 means case-insensitive.
A block ram description looks like this:
2015-02-09 05:05:02 -06:00
bram RAMB1024X32 # name of BRAM cell
2015-08-14 04:27:19 -05:00
init 1 # set to '1' if BRAM can be initialized
2015-02-09 05:05:02 -06:00
abits 10 # number of address bits
dbits 32 # number of data bits
groups 2 # number of port groups
ports 1 1 # number of ports in each group
wrmode 1 0 # set to '1' if this groups is write ports
2016-02-14 04:02:11 -06:00
enable 4 1 # number of enable bits
2015-08-14 03:56:05 -05:00
transp 0 2 # transparent (for read ports)
2015-02-09 05:05:02 -06:00
clocks 1 2 # clock configuration
clkpol 2 2 # clock polarity configuration
endbram
For the option 'transp' the value 0 means non-transparent, 1 means transparent
and a value greater than 1 means configurable. All groups with the same
value greater than 1 share the same configuration bit.
For the option 'clocks' the value 0 means non-clocked, and a value greater
than 0 means clocked. All groups with the same value share the same clock
signal.
For the option 'clkpol' the value 0 means negative edge, 1 means positive edge
and a value greater than 1 means configurable. All groups with the same value
greater than 1 share the same configuration bit.
Using the same bram name in different bram blocks will create different variants
2015-08-14 03:56:05 -05:00
of the bram. Verilog configuration parameters for the bram are created as needed.
2015-02-09 05:05:02 -06:00
It is also possible to create variants by repeating statements in the bram block
and appending '@<label>' to the individual statements.
A match rule looks like this:
match RAMB1024X32
max waste 16384 # only use this bram if <= 16k ram bits are unused
min efficiency 80 # only use this bram if efficiency is at least 80%
endmatch
It is possible to match against the following values with min/max rules:
words ........ number of words in memory in design
abits ........ number of address bits on memory in design
dbits ........ number of data bits on memory in design
wports ....... number of write ports on memory in design
rports ....... number of read ports on memory in design
ports ........ number of ports on memory in design
bits ......... number of bits in memory in design
dups .......... number of duplications for more read ports
awaste ....... number of unused address slots for this match
dwaste ....... number of unused data bits for this match
bwaste ....... number of unused bram bits for this match
waste ........ total number of unused bram bits (bwaste*dups)
efficiency ... total percentage of used and non-duplicated bits
acells ....... number of cells in 'address-direction'
dcells ....... number of cells in 'data-direction'
cells ........ total number of cells (acells*dcells*dups)
2020-04-11 11:36:51 -05:00
A match containing the command 'attribute' followed by a list of space
separated 'name[=string_ value]' values requires that the memory contains any
one of the given attribute name and string values (where specified), or name
and integer 1 value (if no string_ value given, since Verilog will interpret
'(* attr *)' as '(* attr=1 *)').
A name prefixed with '!' indicates that the attribute must not exist.
2015-08-14 03:56:05 -05:00
The interface for the created bram instances is derived from the bram
2015-02-09 05:05:02 -06:00
description. Use 'techmap' to convert the created bram instances into
instances of the actual bram cells of your target architecture.
A match containing the command 'or_ next_ if_ better' is only used if it
has a higher efficiency than the next match (and the one after that if
the next also has 'or_ next_ if_ better' set, and so forth).
A match containing the command 'make_ transp' will add external circuitry
to simulate 'transparent read', if necessary.
2015-08-14 04:27:19 -05:00
A match containing the command 'make_ outreg' will add external flip-flops
to implement synchronous read ports, if necessary.
2015-02-09 05:05:02 -06:00
A match containing the command 'shuffle_ enable A' will re-organize
the data bits to accommodate the enable pattern of port A.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { memory\_ collect -- creating multi-port memory cells}
\label { cmd:memory_ collect}
\begin { lstlisting} [numbers=left,frame=single]
memory_ collect [selection]
This pass collects memories and memory ports and creates generic multiport
memory cells.
\end { lstlisting}
\section { memory\_ dff -- merge input/output DFFs into memories}
\label { cmd:memory_ dff}
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
memory_ dff [options] [selection]
2013-07-20 08:19:12 -05:00
This pass detects DFFs at memory ports and merges them into the memory port.
I.e. it consumes an asynchronous memory port and the flip-flops at its
interface and yields a synchronous memory port.
2014-11-08 03:59:48 -06:00
2015-08-14 04:27:19 -05:00
-nordfff
2014-11-08 03:59:48 -06:00
do not merge registers on read ports
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { memory\_ map -- translate multiport memories to basic cells}
\label { cmd:memory_ map}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
memory_ map [options] [selection]
2013-07-20 08:19:12 -05:00
This pass converts multiport memory cells as generated by the memory_ collect
pass to word-wide DFFs and address decoders.
2020-04-11 11:36:51 -05:00
-attr !<name>
do not map memories that have attribute <name> set.
-attr <name>[=<value>]
for memories that have attribute <name> set, only map them if its value
is a string <value> (if specified), or an integer 1 (otherwise). if this
option is specified multiple times, map the memory if the attribute is
to any of the values.
-iattr
for -attr, ignore case of <value>.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { memory\_ memx -- emulate vlog sim behavior for mem ports}
\label { cmd:memory_ memx}
\begin { lstlisting} [numbers=left,frame=single]
memory_ memx [selection]
This pass adds additional circuitry that emulates the Verilog simulation
behavior for out-of-bounds memory reads and writes.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { memory\_ nordff -- extract read port FFs from memories}
\label { cmd:memory_ nordff}
\begin { lstlisting} [numbers=left,frame=single]
memory_ nordff [options] [selection]
This pass extracts FFs from memory read ports. This results in a netlist
similar to what one would get from calling memory_ dff with -nordff.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { memory\_ share -- consolidate memory ports}
\label { cmd:memory_ share}
\begin { lstlisting} [numbers=left,frame=single]
memory_ share [selection]
This pass merges share-able memory ports into single memory ports.
The following methods are used to consolidate the number of memory ports:
- When write ports are connected to async read ports accessing the same
address, then this feedback path is converted to a write port with
byte/part enable signals.
- When multiple write ports access the same address then this is converted
to a single write port with a more complex data and/or enable logic path.
- When multiple write ports are never accessed at the same time (a SAT
solver is used to determine this), then the ports are merged into a single
write port.
Note that in addition to the algorithms implemented in this pass, the $ memrd
and $ memwr cells are also subject to generic resource sharing passes ( and other
2016-11-02 13:25:28 -05:00
optimizations) such as "share" and "opt_ merge".
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { memory\_ unpack -- unpack multi-port memory cells}
\label { cmd:memory_ unpack}
\begin { lstlisting} [numbers=left,frame=single]
memory_ unpack [selection]
This pass converts the multi-port $ mem memory cells into individual $ memrd and
$ memwr cells. It is the counterpart to the memory _ collect pass.
\end { lstlisting}
\section { miter -- automatically create a miter circuit}
\label { cmd:miter}
\begin { lstlisting} [numbers=left,frame=single]
miter -equiv [options] gold_ name gate_ name miter_ name
2015-08-14 03:56:05 -05:00
Creates a miter circuit for equivalence checking. The gold- and gate- modules
2014-11-08 03:59:48 -06:00
must have the same interfaces. The miter circuit will have all inputs of the
two source modules, prefixed with 'in_ '. The miter circuit has a 'trigger'
output that goes high if an output mismatch between the two source modules is
detected.
-ignore_ gold_ x
a undef (x) bit in the gold module output will match any value in
the gate module output.
-make_ outputs
also route the gold- and gate-outputs to 'gold_ *' and 'gate_ *' outputs
on the miter circuit.
-make_ outcmp
also create a cmp_ * output for each gold/gate output pair.
-make_ assert
also create an 'assert' cell that checks if trigger is always low.
-flatten
2020-04-11 11:36:51 -05:00
call 'flatten -wb; opt_ expr -keepdc -undriven;;' on the miter circuit.
2015-08-14 04:27:19 -05:00
miter -assert [options] module [miter_ name]
Creates a miter circuit for property checking. All input ports are kept,
output ports are discarded. An additional output 'trigger' is created that
goes high when an assert is violated. Without a miter_ name, the existing
module is modified.
-make_ outputs
keep module output ports.
-flatten
2020-04-11 11:36:51 -05:00
call 'flatten -wb; opt_ expr -keepdc -undriven;;' on the miter circuit.
\end { lstlisting}
\section { mutate -- generate or apply design mutations}
\label { cmd:mutate}
\begin { lstlisting} [numbers=left,frame=single]
mutate -list N [options] [selection]
Create a list of N mutations using an even sampling.
-o filename
Write list to this file instead of console output
-s filename
Write a list of all src tags found in the design to the specified file
-seed N
RNG seed for selecting mutations
-none
Include a "none" mutation in the output
-ctrl name width value
Add -ctrl options to the output. Use 'value' for first mutation, then
simply count up from there.
-mode name
-module name
-cell name
-port name
-portbit int
-ctrlbit int
-wire name
-wirebit int
-src string
Filter list of mutation candidates to those matching
the given parameters.
-cfg option int
Set a configuration option. Options available:
weight_ pq_ w weight_ pq_ b weight_ pq_ c weight_ pq_ s
weight_ pq_ mw weight_ pq_ mb weight_ pq_ mc weight_ pq_ ms
weight_ cover pick_ cover_ prcnt
mutate -mode MODE [options]
Apply the given mutation.
-ctrl name width value
Add a control signal with the given name and width. The mutation is
activated if the control signal equals the given value.
-module name
-cell name
-port name
-portbit int
-ctrlbit int
Mutation parameters, as generated by 'mutate -list N'.
-wire name
-wirebit int
-src string
Ignored. (They are generated by -list for documentation purposes.)
2015-08-14 04:27:19 -05:00
\end { lstlisting}
\section { muxcover -- cover trees of MUX cells with wider MUXes}
\label { cmd:muxcover}
\begin { lstlisting} [numbers=left,frame=single]
muxcover [options] [selection]
Cover trees of $ _ MUX _ cells with $ _ MUX{ 4,8,16} _ cells
2020-04-11 11:36:51 -05:00
-mux4[=cost], -mux8[=cost], -mux16[=cost]
Cover $ _ MUX _ trees using the specified types of MUXes ( with optional
integer costs). If none of these options are given, the effect is the
same as if all of them are.
Default costs: $ _ MUX 4 _ = 220 , $ _ MUX8_ = 460,
$ _ MUX 16 _ = 940
-mux2=cost
Use the specified cost for $ _ MUX _ cells when making covering decisions.
Default cost: $ _ MUX _ = 100
-dmux=cost
Use the specified cost for $ _ MUX _ cells used in decoders.
Default cost: 90
2015-08-14 04:27:19 -05:00
-nodecode
Do not insert decoder logic. This reduces the number of possible
substitutions, but guarantees that the resulting circuit is not
less efficient than the original circuit.
2020-04-11 11:36:51 -05:00
-nopartial
Do not consider mappings that use $ _ MUX<N> _ to select from less
than <N> different signals.
\end { lstlisting}
\section { muxpack -- \$ mux/\$ pmux cascades to \$ pmux}
\label { cmd:muxpack}
\begin { lstlisting} [numbers=left,frame=single]
muxpack [selection]
This pass converts cascaded chains of $ pmux cells ( e.g. those create from case
constructs) and $ mux cells ( e.g. those created by if - else constructs ) into
$ pmux cells.
This optimisation is conservative --- it will only pack $ mux or $ pmux cells
whose select lines are driven by '$ eq' cells with other such cells if it can be
certain that their select inputs are mutually exclusive.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { nlutmap -- map to LUTs of different sizes}
\label { cmd:nlutmap}
\begin { lstlisting} [numbers=left,frame=single]
nlutmap [options] [selection]
This pass uses successive calls to 'abc' to map to an architecture. That
provides a small number of differently sized LUTs.
-luts N_ 1,N_ 2,N_ 3,...
The number of LUTs with 1, 2, 3, ... inputs that are
available in the target architecture.
2016-11-02 13:25:28 -05:00
-assert
Create an error if not all logic can be mapped
2016-02-14 04:02:11 -06:00
Excess logic that does not fit into the specified LUTs is mapped back
to generic logic gates ($ _ AND _ , etc. ) .
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { onehot -- optimize \$ eq cells for onehot signals}
\label { cmd:onehot}
\begin { lstlisting} [numbers=left,frame=single]
onehot [options] [selection]
This pass optimizes $ eq cells that compare one - hot signals against constants
-v, -vv
verbose output
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { opt -- perform simple optimizations}
\label { cmd:opt}
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
opt [options] [selection]
2013-07-20 08:19:12 -05:00
This pass calls all the other opt_ * passes in a useful order. This performs
a series of trivial optimizations and cleanups. This pass executes the other
passes in the following order:
2016-11-02 13:25:28 -05:00
opt_ expr [-mux_ undef] [-mux_ bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]
opt_ merge [-share_ all] -nomux
2013-07-20 08:19:12 -05:00
do
opt_ muxtree
2014-11-08 03:59:48 -06:00
opt_ reduce [-fine] [-full]
2016-11-02 13:25:28 -05:00
opt_ merge [-share_ all]
2020-04-11 11:36:51 -05:00
opt_ share (-full only)
opt_ rmdff [-keepdc] [-sat]
2014-11-08 03:59:48 -06:00
opt_ clean [-purge]
2016-11-02 13:25:28 -05:00
opt_ expr [-mux_ undef] [-mux_ bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]
2014-11-08 03:59:48 -06:00
while <changed design>
When called with -fast the following script is used instead:
do
2016-11-02 13:25:28 -05:00
opt_ expr [-mux_ undef] [-mux_ bool] [-undriven] [-clkinv] [-fine] [-full] [-keepdc]
opt_ merge [-share_ all]
2020-04-11 11:36:51 -05:00
opt_ rmdff [-keepdc] [-sat]
2014-11-08 03:59:48 -06:00
opt_ clean [-purge]
while <changed design in opt_ rmdff>
Note: Options in square brackets (such as [-keepdc]) are passed through to
the opt_ * commands when given to 'opt'.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { opt\_ clean -- remove unused cells and wires}
\label { cmd:opt_ clean}
\begin { lstlisting} [numbers=left,frame=single]
opt_ clean [options] [selection]
This pass identifies wires and cells that are unused and removes them. Other
passes often remove cells but leave the wires in the design or reconnect the
wires but leave the old cells in the design. This pass can be used to clean up
after the passes that do the actual work.
This pass only operates on completely selected modules without processes.
-purge
also remove internal nets if they have a public name
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { opt\_ demorgan -- Optimize reductions with DeMorgan equivalents}
\label { cmd:opt_ demorgan}
\begin { lstlisting} [numbers=left,frame=single]
opt_ demorgan [selection]
This pass pushes inverters through $ reduce _ * cells if this will reduce the
overall gate count of the circuit
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { opt\_ expr -- perform const folding and simple expression rewriting}
\label { cmd:opt_ expr}
2013-07-20 08:19:12 -05:00
\begin { lstlisting} [numbers=left,frame=single]
2016-11-02 13:25:28 -05:00
opt_ expr [options] [selection]
2013-07-20 08:19:12 -05:00
This pass performs const folding on internal cell types with constant inputs.
2020-04-11 11:36:51 -05:00
It also performs some simple expression rewriting.
2014-11-08 03:59:48 -06:00
-mux_ undef
remove 'undef' inputs from $ mux, $ pmux and $ _ MUX _ cells
-mux_ bool
replace $ mux cells with inverters or buffers when possible
-undriven
replace undriven nets with undef (x) constants
2015-08-14 04:27:19 -05:00
-clkinv
optimize clock inverters by changing FF types
2014-11-08 03:59:48 -06:00
-fine
perform fine-grain optimizations
-full
alias for -mux_ undef -mux_ bool -undriven -fine
-keepdc
some optimizations change the behavior of the circuit with respect to
don't-care bits. for example in 'a+0' a single x-bit in 'a' will cause
all result bits to be set to x. this behavior changes when 'a+0' is
replaced by 'a'. the -keepdc option disables all such optimizations.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { opt\_ lut -- optimize LUT cells}
\label { cmd:opt_ lut}
\begin { lstlisting} [numbers=left,frame=single]
opt_ lut [options] [selection]
This pass combines cascaded $ lut cells with unused inputs.
-dlogic <type>:<cell-port>=<LUT-input>[:<cell-port>=<LUT-input>...]
preserve connections to dedicated logic cell <type> that has ports
<cell-port> connected to LUT inputs <LUT-input>. this includes
the case where both LUT and dedicated logic input are connected to
the same constant.
-limit N
only perform the first N combines, then stop. useful for debugging.
\end { lstlisting}
\section { opt\_ lut\_ ins -- discard unused LUT inputs}
\label { cmd:opt_ lut_ ins}
\begin { lstlisting} [numbers=left,frame=single]
opt_ lut_ ins [options] [selection]
This pass removes unused inputs from LUT cells (that is, inputs that can not
influence the output signal given this LUT's value). While such LUTs cannot
be directly emitted by ABC, they can be a result of various post-ABC
transformations, such as mapping wide LUTs (not all sub-LUTs will use the
full set of inputs) or optimizations such as xilinx_ dffopt.
-tech <technology>
Instead of generic $ lut cells, operate on LUT cells specific
to the given technology. Valid values are: xilinx, ecp5, gowin.
\end { lstlisting}
\section { opt\_ mem -- optimize memories}
\label { cmd:opt_ mem}
\begin { lstlisting} [numbers=left,frame=single]
opt_ mem [options] [selection]
This pass performs various optimizations on memories in the design.
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { opt\_ merge -- consolidate identical cells}
\label { cmd:opt_ merge}
\begin { lstlisting} [numbers=left,frame=single]
opt_ merge [options] [selection]
This pass identifies cells with identical type and input signals. Such cells
are then merged to one cell.
-nomux
Do not merge MUX cells.
-share_ all
Operate on all cell types, not just built-in types.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { opt\_ muxtree -- eliminate dead trees in multiplexer trees}
\label { cmd:opt_ muxtree}
\begin { lstlisting} [numbers=left,frame=single]
opt_ muxtree [selection]
This pass analyzes the control signals for the multiplexer trees in the design
and identifies inputs that can never be active. It then removes this dead
branches from the multiplexer trees.
This pass only operates on completely selected modules without processes.
\end { lstlisting}
\section { opt\_ reduce -- simplify large MUXes and AND/OR gates}
\label { cmd:opt_ reduce}
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
opt_ reduce [options] [selection]
2013-07-20 08:19:12 -05:00
This pass performs two interlinked optimizations:
1. it consolidates trees of large AND gates or OR gates and eliminates
duplicated inputs.
2. it identifies duplicated inputs to MUXes and replaces them with a single
input with the original control signals OR'ed together.
2014-11-08 03:59:48 -06:00
-fine
perform fine-grain optimizations
-full
alias for -fine
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { opt\_ rmdff -- remove DFFs with constant inputs}
\label { cmd:opt_ rmdff}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
opt_ rmdff [-keepdc] [-sat] [selection]
2013-07-20 08:19:12 -05:00
This pass identifies flip-flops with constant inputs and replaces them with
a constant driver.
2020-04-11 11:36:51 -05:00
-sat
additionally invoke SAT solver to detect and remove flip-flops (with
non-constant inputs) that can also be replaced with a constant driver
\end { lstlisting}
\section { opt\_ share -- merge mutually exclusive cells of the same type that share an input signal}
\label { cmd:opt_ share}
\begin { lstlisting} [numbers=left,frame=single]
opt_ share [selection]
This pass identifies mutually exclusive cells of the same type that:
(a) share an input signal,
(b) drive the same $ mux, $ _ MUX_ , or $ pmux multiplexing cell,
allowing the cell to be merged and the multiplexer to be moved from
multiplexing its output to multiplexing the non-shared input signals.
\end { lstlisting}
\section { paramap -- renaming cell parameters}
\label { cmd:paramap}
\begin { lstlisting} [numbers=left,frame=single]
paramap [options] [selection]
This command renames cell parameters and/or maps key/value pairs to
other key/value pairs.
-tocase <name>
Match attribute names case-insensitively and set it to the specified
name.
-rename <old_ name> <new_ name>
Rename attributes as specified
-map <old_ name>=<old_ value> <new_ name>=<new_ value>
Map key/value pairs as indicated.
-imap <old_ name>=<old_ value> <new_ name>=<new_ value>
Like -map, but use case-insensitive match for <old_ value> when
it is a string value.
-remove <name>=<value>
Remove attributes matching this pattern.
For example, mapping Diamond-style ECP5 "init" attributes to Yosys-style:
paramap -tocase INIT t:LUT4
\end { lstlisting}
\section { peepopt -- collection of peephole optimizers}
\label { cmd:peepopt}
\begin { lstlisting} [numbers=left,frame=single]
peepopt [options] [selection]
This pass applies a collection of peephole optimizers to the current design.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { plugin -- load and list loaded plugins}
\label { cmd:plugin}
\begin { lstlisting} [numbers=left,frame=single]
plugin [options]
Load and list loaded plugins.
-i <plugin_ filename>
Load (install) the specified plugin.
-a <alias_ name>
Register the specified alias name for the loaded plugin
-l
List loaded plugins
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { pmux2shiftx -- transform \$ pmux cells to \$ shiftx cells}
\label { cmd:pmux2shiftx}
\begin { lstlisting} [numbers=left,frame=single]
pmux2shiftx [options] [selection]
This pass transforms $ pmux cells to $ shiftx cells.
-v, -vv
verbose output
-min_ density <percentage>
specifies the minimum density for the shifter
default: 50
-min_ choices <int>
specified the minimum number of choices for a control signal
default: 3
-onehot ignore|pmux|shiftx
select strategy for one-hot encoded control signals
default: pmux
-norange
disable $ sub inference for "range decoders"
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { pmuxtree -- transform \$ pmux cells to trees of \$ mux cells}
\label { cmd:pmuxtree}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
pmuxtree [selection]
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
This pass transforms $ pmux cells to trees of $ mux cells.
\end { lstlisting}
\section { portlist -- list (top-level) ports}
\label { cmd:portlist}
\begin { lstlisting} [numbers=left,frame=single]
portlist [options] [selection]
This command lists all module ports found in the selected modules.
If no selection is provided then it lists the ports on the top module.
-m
print verilog blackbox module definitions instead of port lists
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { prep -- generic synthesis script}
\label { cmd:prep}
\begin { lstlisting} [numbers=left,frame=single]
prep [options]
This command runs a conservative RTL synthesis. A typical application for this
is the preparation stage of a verification flow. This command does not operate
on partly selected designs.
-top <module>
use the specified module as top module (default='top')
2016-11-02 13:25:28 -05:00
-auto-top
automatically determine the top of the design hierarchy
-flatten
flatten the design before synthesis. this will pass '-auto-top' to
'hierarchy' if no top module is specified.
-ifx
passed to 'proc'. uses verilog simulation behavior for verilog if/case
undef handling. this also prevents 'wreduce' from being run.
-memx
simulate verilog simulation behavior for out-of-bounds memory accesses
2018-10-16 08:28:37 -05:00
using the 'memory_ memx' pass.
2016-11-02 13:25:28 -05:00
-nomem
do not run any of the memory_ * passes
2018-10-16 08:28:37 -05:00
-rdff
do not pass -nordff to 'memory_ dff'. This enables merging of FFs into
memory read ports.
2016-02-14 04:02:11 -06:00
2018-10-16 08:28:37 -05:00
-nokeepdc
2016-11-02 13:25:28 -05:00
do not call opt_ * with -keepdc
2016-02-14 04:02:11 -06:00
-run <from_ label>[:<to_ label>]
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
The following commands are executed by this synthesis command:
begin:
2016-11-02 13:25:28 -05:00
hierarchy -check [-top <top> | -auto-top]
2016-02-14 04:02:11 -06:00
2016-11-02 13:25:28 -05:00
coarse:
proc [-ifx]
flatten (if -flatten)
opt_ expr -keepdc
2016-02-14 04:02:11 -06:00
opt_ clean
check
opt -keepdc
2020-04-11 11:36:51 -05:00
wreduce -keepdc [-memx]
2016-02-14 04:02:11 -06:00
memory_ dff [-nordff]
2016-11-02 13:25:28 -05:00
memory_ memx (if -memx)
2016-02-14 04:02:11 -06:00
opt_ clean
memory_ collect
opt -keepdc -fast
check:
stat
check
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { proc -- translate processes to netlists}
\label { cmd:proc}
\begin { lstlisting} [numbers=left,frame=single]
2013-11-22 08:02:40 -06:00
proc [options] [selection]
2013-07-20 08:19:12 -05:00
This pass calls all the other proc_ * passes in the most common order.
proc_ clean
proc_ rmdead
2020-04-11 11:36:51 -05:00
proc_ prune
2013-11-22 08:02:40 -06:00
proc_ init
2013-07-20 08:19:12 -05:00
proc_ arst
proc_ mux
2015-08-14 04:27:19 -05:00
proc_ dlatch
2013-07-20 08:19:12 -05:00
proc_ dff
proc_ clean
2015-08-14 04:27:19 -05:00
This replaces the processes in the design with multiplexers,
flip-flops and latches.
2013-11-22 08:02:40 -06:00
The following options are supported:
-global_ arst [!]<netname>
This option is passed through to proc_ arst.
2016-11-02 13:25:28 -05:00
-ifx
This option is passed through to proc_ mux. proc_ rmdead is not
executed in -ifx mode.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { proc\_ arst -- detect asynchronous resets}
\label { cmd:proc_ arst}
\begin { lstlisting} [numbers=left,frame=single]
2013-11-22 08:02:40 -06:00
proc_ arst [-global_ arst [!]<netname>] [selection]
2013-07-20 08:19:12 -05:00
This pass identifies asynchronous resets in the processes and converts them
to a different internal representation that is suitable for generating
flip-flop cells with asynchronous resets.
2013-11-22 08:02:40 -06:00
-global_ arst [!]<netname>
In modules that have a net with the given name, use this net as async
reset for registers that have been assign initial values in their
declaration ('reg foobar = constant_ value;'). Use the '!' modifier for
active low reset signals. Note: the frontend stores the default value
in the 'init' attribute on the net.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { proc\_ clean -- remove empty parts of processes}
\label { cmd:proc_ clean}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
proc_ clean [options] [selection]
-quiet
do not print any messages.
2013-07-20 08:19:12 -05:00
This pass removes empty parts of processes and ultimately removes a process
if it contains only empty structures.
\end { lstlisting}
\section { proc\_ dff -- extract flip-flops from processes}
\label { cmd:proc_ dff}
\begin { lstlisting} [numbers=left,frame=single]
proc_ dff [selection]
This pass identifies flip-flops in the processes and converts them to
d-type flip-flop cells.
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { proc\_ dlatch -- extract latches from processes}
\label { cmd:proc_ dlatch}
\begin { lstlisting} [numbers=left,frame=single]
proc_ dlatch [selection]
This pass identifies latches in the processes and converts them to
d-type latches.
\end { lstlisting}
2013-11-22 08:02:40 -06:00
\section { proc\_ init -- convert initial block to init attributes}
\label { cmd:proc_ init}
\begin { lstlisting} [numbers=left,frame=single]
proc_ init [selection]
2015-08-14 03:56:05 -05:00
This pass extracts the 'init' actions from processes (generated from Verilog
2013-11-22 08:02:40 -06:00
'initial' blocks) and sets the initial value to the 'init' attribute on the
respective wire.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { proc\_ mux -- convert decision trees to multiplexers}
\label { cmd:proc_ mux}
\begin { lstlisting} [numbers=left,frame=single]
2016-11-02 13:25:28 -05:00
proc_ mux [options] [selection]
2013-07-20 08:19:12 -05:00
This pass converts the decision trees in processes (originating from if-else
and case statements) to trees of multiplexer cells.
2016-11-02 13:25:28 -05:00
-ifx
Use Verilog simulation behavior with respect to undef values in
'case' expressions and 'if' conditions.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { proc\_ prune -- remove redundant assignments}
\label { cmd:proc_ prune}
\begin { lstlisting} [numbers=left,frame=single]
proc_ prune [selection]
This pass identifies assignments in processes that are always overwritten by
a later assignment to the same signal and removes them.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { proc\_ rmdead -- eliminate dead trees in decision trees}
\label { cmd:proc_ rmdead}
\begin { lstlisting} [numbers=left,frame=single]
proc_ rmdead [selection]
This pass identifies unreachable branches in decision trees and removes them.
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { qwp -- quadratic wirelength placer}
\label { cmd:qwp}
\begin { lstlisting} [numbers=left,frame=single]
qwp [options] [selection]
This command runs quadratic wirelength placement on the selected modules and
annotates the cells in the design with 'qwp_ position' attributes.
-ltr
Add left-to-right constraints: constrain all inputs on the left border
outputs to the right border.
-alpha
Add constraints for inputs/outputs to be placed in alphanumerical
order along the y-axis (top-to-bottom).
-grid N
Number of grid divisions in x- and y-direction. (default=16)
-dump <html_ file_ name>
Dump a protocol of the placement algorithm to the html file.
2016-11-02 13:25:28 -05:00
-v
Verbose solver output for profiling or debugging
2016-02-14 04:02:11 -06:00
Note: This implementation of a quadratic wirelength placer uses exact
dense matrix operations. It is only a toy-placer for small circuits.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { read -- load HDL designs}
\label { cmd:read}
\begin { lstlisting} [numbers=left,frame=single]
read { -vlog95|-vlog2k|-sv2005|-sv2009|-sv2012|-sv|-formal} <verilog-file>..
Load the specified Verilog/SystemVerilog files. (Full SystemVerilog support
is only available via Verific.)
Additional -D<macro>[=<value>] options may be added after the option indicating
the language version (and before file names) to set additional verilog defines.
read { -vhdl87|-vhdl93|-vhdl2k|-vhdl2008|-vhdl} <vhdl-file>..
Load the specified VHDL files. (Requires Verific.)
read -define <macro>[=<value>]..
Set global Verilog/SystemVerilog defines.
read -undef <macro>..
Unset global Verilog/SystemVerilog defines.
read -incdir <directory>
Add directory to global Verilog/SystemVerilog include directories.
2020-04-11 11:36:51 -05:00
read -verific
read -noverific
Subsequent calls to 'read' will either use or not use Verific. Calling 'read'
with -verific will result in an error on Yosys binaries that are built without
Verific support. The default is to use Verific if it is available.
\end { lstlisting}
\section { read\_ aiger -- read AIGER file}
\label { cmd:read_ aiger}
\begin { lstlisting} [numbers=left,frame=single]
read_ aiger [options] [filename]
Load module from an AIGER file into the current design.
-module_ name <module_ name>
name of module to be created (default: <filename>)
-clk_ name <wire_ name>
if specified, AIGER latches to be transformed into $ _ DFF _ P _ cells
clocked by wire of this name. otherwise, $ _ FF _ cells will be used
-map <filename>
read file with port and latch symbols
-wideports
merge ports that match the pattern 'name[int]' into a single
multi-bit port 'name'
-xaiger
read XAIGER extensions
2018-10-16 08:28:37 -05:00
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { read\_ blif -- read BLIF file}
\label { cmd:read_ blif}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
read_ blif [options] [filename]
2015-08-14 04:27:19 -05:00
Load modules from a BLIF file into the current design.
2016-11-02 13:25:28 -05:00
-sop
Create $ sop cells instead of $ lut cells
2018-10-16 08:28:37 -05:00
-wideports
Merge ports that match the pattern 'name[int]' into a single
multi-bit port 'name'.
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { read\_ ilang -- read modules from ilang file}
\label { cmd:read_ ilang}
\begin { lstlisting} [numbers=left,frame=single]
read_ ilang [filename]
Load modules from an ilang file to the current design. (ilang is a text
representation of a design in yosys's internal format.)
2020-04-11 11:36:51 -05:00
-nooverwrite
ignore re-definitions of modules. (the default behavior is to
create an error message if the existing module is not a blackbox
module, and overwrite the existing module if it is a blackbox module.)
-overwrite
overwrite existing modules with the same name
-lib
only create empty blackbox modules
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { read\_ json -- read JSON file}
\label { cmd:read_ json}
\begin { lstlisting} [numbers=left,frame=single]
read_ json [filename]
Load modules from a JSON file into the current design See "help write_ json"
for a description of the file format.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { read\_ liberty -- read cells from liberty file}
\label { cmd:read_ liberty}
\begin { lstlisting} [numbers=left,frame=single]
read_ liberty [filename]
Read cells from liberty file as modules into current design.
-lib
only create empty blackbox modules
2018-10-16 08:28:37 -05:00
-nooverwrite
2014-11-08 03:59:48 -06:00
ignore re-definitions of modules. (the default behavior is to
2018-10-16 08:28:37 -05:00
create an error message if the existing module is not a blackbox
module, and overwrite the existing module if it is a blackbox module.)
-overwrite
overwrite existing modules with the same name
2014-11-08 03:59:48 -06:00
-ignore_ miss_ func
ignore cells with missing function specification of outputs
-ignore_ miss_ dir
ignore cells with a missing or invalid direction
specification on a pin
2018-10-16 08:28:37 -05:00
-ignore_ miss_ data_ latch
ignore latches with missing data and/or enable pins
2014-11-08 03:59:48 -06:00
-setattr <attribute_ name>
set the specified attribute (to the value 1) on all loaded modules
\end { lstlisting}
2015-08-14 03:56:05 -05:00
\section { read\_ verilog -- read modules from Verilog file}
2013-07-20 08:19:12 -05:00
\label { cmd:read_ verilog}
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
read_ verilog [options] [filename]
2013-07-20 08:19:12 -05:00
2015-08-14 03:56:05 -05:00
Load modules from a Verilog file to the current design. A large subset of
2013-07-20 08:19:12 -05:00
Verilog-2005 is supported.
2014-11-08 03:59:48 -06:00
-sv
enable support for SystemVerilog features. (only a small subset
of SystemVerilog is supported)
2015-08-14 04:27:19 -05:00
-formal
2016-11-02 13:25:28 -05:00
enable support for SystemVerilog assertions and some Yosys extensions
2016-02-14 04:02:11 -06:00
replace the implicit -D SYNTHESIS with -D FORMAL
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
-noassert
ignore assert() statements
-noassume
ignore assume() statements
2016-11-02 13:25:28 -05:00
-norestrict
2020-04-11 11:36:51 -05:00
ignore restrict() statements
2016-11-02 13:25:28 -05:00
-assume-asserts
treat all assert() statements like assume() statements
2020-04-11 11:36:51 -05:00
-assert-assumes
treat all assume() statements like assert() statements
-debug
alias for -dump_ ast1 -dump_ ast2 -dump_ vlog1 -dump_ vlog2 -yydebug
2013-09-15 04:41:05 -05:00
-dump_ ast1
dump abstract syntax tree (before simplification)
2013-07-20 08:19:12 -05:00
2013-09-15 04:41:05 -05:00
-dump_ ast2
dump abstract syntax tree (after simplification)
2013-07-20 08:19:12 -05:00
2018-10-16 08:28:37 -05:00
-no_ dump_ ptr
do not include hex memory addresses in dump (easier to diff dumps)
2020-04-11 11:36:51 -05:00
-dump_ vlog1
dump ast as Verilog code (before simplification)
-dump_ vlog2
2015-08-14 03:56:05 -05:00
dump ast as Verilog code (after simplification)
2013-07-20 08:19:12 -05:00
2016-11-02 13:25:28 -05:00
-dump_ rtlil
dump generated RTLIL netlist
2013-07-20 08:19:12 -05:00
-yydebug
enable parser debug output
-nolatches
usually latches are synthesized into logic loops
this option prohibits this and sets the output to 'x'
in what would be the latches hold condition
this behavior can also be achieved by setting the
'nolatches' attribute on the respective module or
always block.
-nomem2reg
under certain conditions memories are converted to registers
early during simplification to ensure correct handling of
complex corner cases. this option disables this behavior.
this can also be achieved by setting the 'nomem2reg'
attribute on the respective module or register.
2015-08-14 04:27:19 -05:00
This is potentially dangerous. Usually the front-end has good
reasons for converting an array to a list of registers.
Prohibiting this step will likely result in incorrect synthesis
results.
2013-07-20 08:19:12 -05:00
-mem2reg
always convert memories to registers. this can also be
achieved by setting the 'mem2reg' attribute on the respective
module or register.
2015-08-14 04:27:19 -05:00
-nomeminit
do not infer $ meminit cells and instead convert initialized
memories to registers directly in the front-end.
2013-07-20 08:19:12 -05:00
-ppdump
2015-08-14 03:56:05 -05:00
dump Verilog code after pre-processor
2013-07-20 08:19:12 -05:00
-nopp
do not run the pre-processor
2016-02-14 04:02:11 -06:00
-nodpi
disable DPI-C support
2020-04-11 11:36:51 -05:00
-noblackbox
do not automatically add a (* blackbox *) attribute to an
empty module.
2013-07-20 08:19:12 -05:00
-lib
2015-08-14 04:27:19 -05:00
only create empty blackbox modules. This implies -DBLACKBOX.
2020-04-11 11:36:51 -05:00
modules with the (* whitebox *) attribute will be preserved.
(* lib_ whitebox *) will be treated like (* whitebox *).
-nowb
delete (* whitebox *) and (* lib_ whitebox *) attributes from
all modules.
-specify
parse and import specify blocks
2013-07-20 08:19:12 -05:00
-noopt
don't perform basic optimizations (such as const folding) in the
high-level front-end.
2014-11-08 03:59:48 -06:00
-icells
interpret cell types starting with '$ ' as internal cell types
2020-04-11 11:36:51 -05:00
-pwires
add a wire for each module parameter
2018-10-16 08:28:37 -05:00
-nooverwrite
2013-12-28 05:14:47 -06:00
ignore re-definitions of modules. (the default behavior is to
2018-10-16 08:28:37 -05:00
create an error message if the existing module is not a black box
module, and overwrite the existing module otherwise.)
-overwrite
overwrite existing modules with the same name
2013-12-28 05:14:47 -06:00
2014-11-08 03:59:48 -06:00
-defer
only read the abstract syntax tree and defer actual compilation
to a later 'hierarchy' command. Useful in cases where the default
parameters of modules yield invalid or not synthesizable code.
2015-08-14 04:27:19 -05:00
-noautowire
make the default of `default_ nettype be "none" instead of "wire".
2014-11-08 03:59:48 -06:00
-setattr <attribute_ name>
set the specified attribute (to the value 1) on all loaded modules
2013-07-20 08:19:12 -05:00
-Dname[=definition]
define the preprocessor symbol 'name' and set its optional value
'definition'
2013-09-15 04:41:05 -05:00
-Idir
add 'dir' to the directories which are used when searching include
files
2014-11-08 03:59:48 -06:00
The command 'verilog_ defaults' can be used to register default options for
subsequent calls to 'read_ verilog'.
Note that the Verilog frontend does a pretty good job of processing valid
verilog input, but has not very good error reporting. It generally is
2015-08-14 03:56:05 -05:00
recommended to use a simulator (for example Icarus Verilog) for checking
2014-11-08 03:59:48 -06:00
the syntax of the code, rather than to rely on read_ verilog for that.
2016-11-02 13:25:28 -05:00
2018-10-16 08:28:37 -05:00
Depending on if read_ verilog is run in -formal mode, either the macro
SYNTHESIS or FORMAL is defined automatically. In addition, read_ verilog
always defines the macro YOSYS.
2016-11-02 13:25:28 -05:00
See the Yosys README file for a list of non-standard Verilog features
supported by the Yosys Verilog front-end.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { rename -- rename object in the design}
\label { cmd:rename}
\begin { lstlisting} [numbers=left,frame=single]
rename old_ name new_ name
2020-04-11 11:36:51 -05:00
Rename the specified object. Note that selection patterns are not supported
by this command.
rename -output old_ name new_ name
Like above, but also make the wire an output. This will fail if the object is
not a wire.
rename -src [selection]
Assign names auto-generated from the src attribute to all selected wires and
cells with private names.
rename -wire [selection]
Assign auto-generated names based on the wires they drive to all selected
cells with private names. Ignores cells driving privatly named wires.
2013-09-15 04:41:05 -05:00
2014-11-08 03:59:48 -06:00
rename -enumerate [-pattern <pattern>] [selection]
2013-09-15 04:41:05 -05:00
Assign short auto-generated names to all selected wires and cells with private
2014-11-08 03:59:48 -06:00
names. The -pattern option can be used to set the pattern for the new names.
The character % in the pattern is replaced with a integer number. The default
pattern is '_ %_'.
2020-04-11 11:36:51 -05:00
2014-11-08 03:59:48 -06:00
rename -hide [selection]
Assign private names (the ones with $ - prefix ) to all selected wires and cells
with public names. This ignores all selected ports.
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
2015-08-14 04:27:19 -05:00
rename -top new_ name
Rename top module.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { rmports -- remove module ports with no connections}
\label { cmd:rmports}
\begin { lstlisting} [numbers=left,frame=single]
rmports [selection]
This pass identifies ports in the selected modules which are not used or
driven and removes them.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { sat -- solve a SAT problem in the circuit}
\label { cmd:sat}
\begin { lstlisting} [numbers=left,frame=single]
sat [options] [selection]
This command solves a SAT problem defined over the currently selected circuit
and additional constraints passed as parameters.
-all
show all solutions to the problem (this can grow exponentially, use
-max <N> instead to get <N> solutions)
-max <N>
like -all, but limit number of solutions to <N>
2013-12-28 05:14:47 -06:00
-enable_ undef
enable modeling of undef value (aka 'x-bits')
this option is implied by -set-def, -set-undef et. cetera
-max_ undef
maximize the number of undef bits in solutions, giving a better
picture of which input bits are actually vital to the solution.
2013-07-20 08:19:12 -05:00
-set <signal> <value>
set the specified signal to the specified value.
2013-12-28 05:14:47 -06:00
-set-def <signal>
add a constraint that all bits of the given signal must be defined
-set-any-undef <signal>
add a constraint that at least one bit of the given signal is undefined
-set-all-undef <signal>
add a constraint that all bits of the given signal are undefined
-set-def-inputs
add -set-def constraints for all module inputs
2013-07-20 08:19:12 -05:00
-show <signal>
show the model for the specified signal. if no -show option is
passed then a set of signals to be shown is automatically selected.
2015-02-09 05:05:02 -06:00
-show-inputs, -show-outputs, -show-ports
add all module (input/output) ports to the list of shown signals
2014-11-08 03:59:48 -06:00
2016-02-14 04:02:11 -06:00
-show-regs, -show-public, -show-all
show all registers, show signals with 'public' names, show all signals
2013-09-15 04:41:05 -05:00
-ignore_ div_ by_ zero
ignore all solutions that involve a division by zero
2014-11-08 03:59:48 -06:00
-ignore_ unknown_ cells
ignore all cells that can not be matched to a SAT model
2013-07-20 08:19:12 -05:00
The following options can be used to set up a sequential problem:
-seq <N>
set up a sequential problem with <N> time steps. The steps will
be numbered from 1 to N.
2015-08-14 04:27:19 -05:00
note: for large <N> it can be significantly faster to use
-tempinduct-baseonly -maxsteps <N> instead of -seq <N>.
2013-07-20 08:19:12 -05:00
-set-at <N> <signal> <value>
-unset-at <N> <signal>
set or unset the specified signal to the specified value in the
given timestep. this has priority over a -set for the same signal.
2015-08-14 04:27:19 -05:00
-set-assumes
set all assumptions provided via $ assume cells
2013-12-28 05:14:47 -06:00
-set-def-at <N> <signal>
-set-any-undef-at <N> <signal>
-set-all-undef-at <N> <signal>
2014-09-06 01:47:06 -05:00
add undef constraints in the given timestep.
2013-12-28 05:14:47 -06:00
-set-init <signal> <value>
set the initial value for the register driving the signal to the value
-set-init-undef
set all initial states (not set using -set-init) to undef
2014-11-08 03:59:48 -06:00
-set-init-def
do not force a value for the initial state but do not allow undef
-set-init-zero
set all initial states (not set using -set-init) to zero
-dump_ vcd <vcd-file-name>
dump SAT model (counter example in proof) to VCD file
2015-08-14 04:27:19 -05:00
-dump_ json <json-file-name>
dump SAT model (counter example in proof) to a WaveJSON file.
2014-11-08 03:59:48 -06:00
-dump_ cnf <cnf-file-name>
dump CNF of SAT problem (in DIMACS format). in temporal induction
proofs this is the CNF of the first induction step.
2013-07-20 08:19:12 -05:00
The following additional options can be used to set up a proof. If also -seq
is passed, a temporal induction proof is performed.
2014-11-08 03:59:48 -06:00
-tempinduct
2015-08-14 03:56:05 -05:00
Perform a temporal induction proof. In a temporal induction proof it is
2014-11-08 03:59:48 -06:00
proven that the condition holds forever after the number of time steps
specified using -seq.
-tempinduct-def
Perform a temporal induction proof. Assume an initial state with all
registers set to defined values for the induction step.
2015-08-14 04:27:19 -05:00
-tempinduct-baseonly
Run only the basecase half of temporal induction (requires -maxsteps)
-tempinduct-inductonly
Run only the induction half of temporal induction
-tempinduct-skip <N>
Skip the first <N> steps of the induction proof.
note: this will assume that the base case holds for <N> steps.
this must be proven independently with "-tempinduct-baseonly
-maxsteps <N>". Use -initsteps if you just want to set a
minimal induction length.
2013-07-20 08:19:12 -05:00
-prove <signal> <value>
2014-11-08 03:59:48 -06:00
Attempt to proof that <signal> is always <value>.
2013-07-20 08:19:12 -05:00
2013-12-28 05:14:47 -06:00
-prove-x <signal> <value>
Like -prove, but an undef (x) bit in the lhs matches any value on
2015-08-14 03:56:05 -05:00
the right hand side. Useful for equivalence checking.
2013-12-28 05:14:47 -06:00
2014-11-08 03:59:48 -06:00
-prove-asserts
Prove that all asserts in the design hold.
-prove-skip <N>
Do not enforce the prove-condition for the first <N> time steps.
2013-07-20 08:19:12 -05:00
-maxsteps <N>
Set a maximum length for the induction.
2014-11-08 03:59:48 -06:00
-initsteps <N>
Set initial length for the induction.
2015-08-14 04:27:19 -05:00
This will speed up the search of the right induction length
for deep induction proofs.
-stepsize <N>
Increase the size of the induction proof in steps of <N>.
This will speed up the search of the right induction length
for deep induction proofs.
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
-timeout <N>
Maximum number of seconds a single SAT instance may take.
-verify
Return an error and stop the synthesis script if the proof fails.
-verify-no-timeout
Like -verify but do not return an error for timeouts.
2014-11-08 03:59:48 -06:00
-falsify
Return an error and stop the synthesis script if the proof succeeds.
-falsify-no-timeout
Like -falsify but do not return an error for timeouts.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { scatter -- add additional intermediate nets}
\label { cmd:scatter}
\begin { lstlisting} [numbers=left,frame=single]
scatter [selection]
This command adds additional intermediate nets on all cell ports. This is used
2013-09-15 04:41:05 -05:00
for testing the correct use of the SigMap helper in passes. If you don't know
2013-07-20 08:19:12 -05:00
what this means: don't worry -- you only need this pass when testing your own
extensions to Yosys.
Use the opt_ clean command to get rid of the additional nets.
\end { lstlisting}
\section { scc -- detect strongly connected components (logic loops)}
\label { cmd:scc}
\begin { lstlisting} [numbers=left,frame=single]
scc [options] [selection]
This command identifies strongly connected components (aka logic loops) in the
design.
2015-08-14 04:27:19 -05:00
-expect <num>
expect to find exactly <num> SSCs. A different number of SSCs will
produce an error.
2013-07-20 08:19:12 -05:00
-max_ depth <num>
2015-08-14 04:27:19 -05:00
limit to loops not longer than the specified number of cells. This
can e.g. be useful in identifying small local loops in a module that
implements one large SCC.
-nofeedback
do not count cells that have their output fed back into one of their
inputs as single-cell scc.
2013-07-20 08:19:12 -05:00
-all_ cell_ types
Usually this command only considers internal non-memory cells. With
2014-09-06 01:47:06 -05:00
this option set, all cells are considered. For unknown cells all ports
2013-07-20 08:19:12 -05:00
are assumed to be bidirectional 'inout' ports.
-set_ attr <name> <value>
2018-10-16 08:28:37 -05:00
set the specified attribute on all cells that are part of a logic
loop. the special token { } in the value is replaced with a unique
identifier for the logic loop.
2013-07-20 08:19:12 -05:00
-select
replace the current selection with a selection of all cells and wires
that are part of a found logic loop
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { scratchpad -- get/set values in the scratchpad}
\label { cmd:scratchpad}
\begin { lstlisting} [numbers=left,frame=single]
scratchpad [options]
This pass allows to read and modify values from the scratchpad of the current
design. Options:
-get <identifier>
print the value saved in the scratchpad under the given identifier.
-set <identifier> <value>
save the given value in the scratchpad under the given identifier.
-unset <identifier>
remove the entry for the given identifier from the scratchpad.
-copy <identifier_ from> <identifier_ to>
copy the value of the first identifier to the second identifier.
-assert <identifier> <value>
assert that the entry for the given identifier is set to the given value.
-assert-set <identifier>
assert that the entry for the given identifier exists.
-assert-unset <identifier>
assert that the entry for the given identifier does not exist.
The identifier may not contain whitespace. By convention, it is usually prefixed
by the name of the pass that uses it, e.g. 'opt.did_ something'. If the value
contains whitespace, it must be enclosed in double quotes.
\end { lstlisting}
\section { script -- execute commands from file or wire}
2013-07-20 08:19:12 -05:00
\label { cmd:script}
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
script <filename> [<from_ label>:<to_ label>]
2020-04-11 11:36:51 -05:00
script -scriptwire [selection]
2013-07-20 08:19:12 -05:00
2020-04-11 11:36:51 -05:00
This command executes the yosys commands in the specified file (default
behaviour), or commands embedded in the constant text value connected to the
selected wires.
2014-11-08 03:59:48 -06:00
2020-04-11 11:36:51 -05:00
In the default (file) case, the 2nd argument can be used to only execute the
section of the file between the specified labels. An empty from label is
synonymous with the beginning of the file and an empty to label is synonymous
with the end of the file.
2014-11-08 03:59:48 -06:00
If only one label is specified (without ':') then only the block
marked with that label (until the next label) is executed.
2020-04-11 11:36:51 -05:00
In "-scriptwire" mode, the commands on the selected wire(s) will be executed
in the scope of (and thus, relative to) the wires' owning module(s). This
'-module' mode can be exited by using the 'cd' command.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { select -- modify and view the list of selected objects}
\label { cmd:select}
\begin { lstlisting} [numbers=left,frame=single]
2015-02-09 05:05:02 -06:00
select [ -add | -del | -set <name> ] { -read <filename> | <selection>}
2016-11-02 13:25:28 -05:00
select [ <assert_ option> ] { -read <filename> | <selection>}
2013-07-20 08:19:12 -05:00
select [ -list | -write <filename> | -count | -clear ]
select -module <modname>
Most commands use the list of currently selected objects to determine which part
of the design to operate on. This command can be used to modify and view this
list of selected objects.
Note that many commands support an optional [selection] argument that can be
2020-04-11 11:36:51 -05:00
used to override the global selection for the command. The syntax of this
2013-07-20 08:19:12 -05:00
optional argument is identical to the syntax of the <selection> argument
described here.
-add, -del
add or remove the given objects to the current selection.
without this options the current selection is replaced.
-set <name>
do not modify the current selection. instead save the new selection
2014-11-08 03:59:48 -06:00
under the given name (see @<name> below). to save the current selection,
use "select -set <name> %"
-assert-none
do not modify the current selection. instead assert that the given
selection is empty. i.e. produce an error if any object matching the
selection is found.
-assert-any
do not modify the current selection. instead assert that the given
selection is non-empty. i.e. produce an error if no object matching
the selection is found.
-assert-count N
do not modify the current selection. instead assert that the given
selection contains exactly N objects.
2013-07-20 08:19:12 -05:00
2016-11-02 13:25:28 -05:00
-assert-max N
do not modify the current selection. instead assert that the given
selection contains less than or exactly N objects.
-assert-min N
do not modify the current selection. instead assert that the given
selection contains at least N objects.
2013-07-20 08:19:12 -05:00
-list
list all objects in the current selection
-write <filename>
like -list but write the output to the specified file
2015-02-09 05:05:02 -06:00
-read <filename>
read the specified file (written by -write)
2013-07-20 08:19:12 -05:00
-count
count all objects in the current selection
-clear
2014-11-08 03:59:48 -06:00
clear the current selection. this effectively selects the whole
design. it also resets the selected module (see -module). use the
command 'select *' to select everything but stay in the current module.
-none
create an empty selection. the current module is unchanged.
2013-07-20 08:19:12 -05:00
-module <modname>
limit the current scope to the specified module.
the difference between this and simply selecting the module
is that all object names are interpreted relative to this
module after this command until the selection is cleared again.
When this command is called without an argument, the current selection
is displayed in a compact form (i.e. only the module name when a whole module
is selected).
The <selection> argument itself is a series of commands for a simple stack
machine. Each element on the stack represents a set of selected objects.
After this commands have been executed, the union of all remaining sets
on the stack is computed and used as selection for the command.
Pushing (selecting) object when not in -module mode:
<mod_ pattern>
select the specified module(s)
<mod_ pattern>/<obj_ pattern>
select the specified object(s) from the module(s)
Pushing (selecting) object when in -module mode:
<obj_ pattern>
select the specified object(s) from the current module
2014-11-08 03:59:48 -06:00
A <mod_ pattern> can be a module name, wildcard expression (*, ?, [..])
matching module names, or one of the following:
A:<pattern>, A:<pattern>=<pattern>
all modules with an attribute matching the given pattern
in addition to = also <, <=, >=, and > are supported
2013-07-20 08:19:12 -05:00
2020-04-11 11:36:51 -05:00
N:<pattern>
all modules with a name matching the given pattern
(i.e. 'N:' is optional as it is the default matching rule)
2013-07-20 08:19:12 -05:00
An <obj_ pattern> can be an object name, wildcard expression, or one of
the following:
w:<pattern>
all wires with a name matching the given wildcard pattern
2014-11-08 03:59:48 -06:00
i:<pattern>, o:<pattern>, x:<pattern>
all inputs (i:), outputs (o:) or any ports (x:) with matching names
s:<size>, s:<min>:<max>
all wires with a matching width
2013-07-20 08:19:12 -05:00
m:<pattern>
all memories with a name matching the given pattern
c:<pattern>
all cells with a name matching the given pattern
t:<pattern>
all cells with a type matching the given pattern
p:<pattern>
all processes with a name matching the given pattern
a:<pattern>
all objects with an attribute name matching the given pattern
a:<pattern>=<pattern>
2014-11-08 03:59:48 -06:00
all objects with a matching attribute name-value-pair.
in addition to = also <, <=, >=, and > are supported
r:<pattern>, r:<pattern>=<pattern>
cells with matching parameters. also with <, <=, >= and >.
2013-07-20 08:19:12 -05:00
n:<pattern>
all objects with a name matching the given pattern
(i.e. 'n:' is optional as it is the default matching rule)
@<name>
push the selection saved prior with 'select -set <name> ...'
The following actions can be performed on the top sets on the stack:
%
push a copy of the current selection to the stack
%%
replace the stack with a union of all elements on it
%n
replace top set with its invert
%u
replace the two top sets on the stack with their union
%i
replace the two top sets on the stack with their intersection
%d
pop the top set from the stack and subtract it from the new top
2014-11-08 03:59:48 -06:00
%D
like %d but swap the roles of two top sets on the stack
%c
2015-08-14 03:56:05 -05:00
create a copy of the top set from the stack and push it
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
%x[<num1>|*][.<num2>][:<rule>[:<rule>..]]
expand top set <num1> num times according to the specified rules.
(i.e. select all cells connected to selected wires and select all
wires connected to selected cells) The rules specify which cell
ports to use for this. the syntax for a rule is a '-' for exclusion
2014-09-06 01:47:06 -05:00
and a '+' for inclusion, followed by an optional comma separated
2013-07-20 08:19:12 -05:00
list of cell types followed by an optional comma separated list of
cell ports in square brackets. a rule can also be just a cell or wire
name that limits the expansion (is included but does not go beyond).
select at most <num2> objects. a warning message is printed when this
limit is reached. When '*' is used instead of <num1> then the process
is repeated until no further object are selected.
%ci[<num1>|*][.<num2>][:<rule>[:<rule>..]]
%co[<num1>|*][.<num2>][:<rule>[:<rule>..]]
2015-08-14 03:56:05 -05:00
similar to %x, but only select input (%ci) or output cones (%co)
2013-07-20 08:19:12 -05:00
2015-08-14 04:27:19 -05:00
%xe[...] %cie[...] %coe
like %x, %ci, and %co but only consider combinatorial cells
2014-11-08 03:59:48 -06:00
%a
expand top set by selecting all wires that are (at least in part)
aliases for selected wires.
%s
2015-08-14 04:27:19 -05:00
expand top set by adding all modules that implement cells in selected
2014-11-08 03:59:48 -06:00
modules
%m
expand top set by selecting all modules that contain selected objects
2015-08-14 04:27:19 -05:00
%M
select modules that implement selected cells
%C
select cells that implement selected modules
2016-02-14 04:02:11 -06:00
%R[<num>]
select <num> random objects from top selection (default 1)
2013-07-20 08:19:12 -05:00
Example: the following command selects all wires that are connected to a
'GATE' input of a 'SWITCH' cell:
select */t:SWITCH %x:+[GATE] */t:SWITCH %d
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { setattr -- set/unset attributes on objects}
\label { cmd:setattr}
\begin { lstlisting} [numbers=left,frame=single]
setattr [ -mod ] [ -set name value | -unset name ]... [selection]
Set/unset the given attributes on the selected objects. String values must be
passed in double quotes (").
When called with -mod, this command will set and unset attributes on modules
instead of objects within modules.
\end { lstlisting}
\section { setparam -- set/unset parameters on objects}
\label { cmd:setparam}
\begin { lstlisting} [numbers=left,frame=single]
2016-11-02 13:25:28 -05:00
setparam [ -type cell_ type ] [ -set name value | -unset name ]... [selection]
2014-11-08 03:59:48 -06:00
Set/unset the given parameters on the selected cells. String values must be
passed in double quotes (").
2016-11-02 13:25:28 -05:00
The -type option can be used to change the cell type of the selected cells.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { setundef -- replace undef values with defined constants}
\label { cmd:setundef}
\begin { lstlisting} [numbers=left,frame=single]
setundef [options] [selection]
2018-10-16 08:28:37 -05:00
This command replaces undef (x) constants with defined (0/1) constants.
2014-11-08 03:59:48 -06:00
-undriven
also set undriven nets to constant values
2018-10-16 08:28:37 -05:00
-expose
also expose undriven nets as inputs (use with -undriven)
2014-11-08 03:59:48 -06:00
-zero
replace with bits cleared (0)
-one
replace with bits set (1)
2018-10-16 08:28:37 -05:00
-undef
replace with undef (x) bits, may be used with -undriven
-anyseq
replace with $ anyseq drivers ( for formal )
-anyconst
replace with $ anyconst drivers ( for formal )
2014-11-08 03:59:48 -06:00
-random <seed>
2020-04-11 11:36:51 -05:00
replace with random bits using the specified integer as seed
2014-11-08 03:59:48 -06:00
value for the random number generator.
2016-11-02 13:25:28 -05:00
-init
also create/update init values for flip-flops
2020-04-11 11:36:51 -05:00
-params
replace undef in cell parameters
\end { lstlisting}
\section { sf2\_ iobs -- SF2: insert IO buffers}
\label { cmd:sf2_ iobs}
\begin { lstlisting} [numbers=left,frame=single]
sf2_ iobs [options] [selection]
Add SF2 I/O buffers and global buffers to top module as needed.
-clkbuf
Insert PAD->global_ net clock buffers
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { share -- perform sat-based resource sharing}
\label { cmd:share}
\begin { lstlisting} [numbers=left,frame=single]
share [options] [selection]
2015-08-14 04:27:19 -05:00
This pass merges shareable resources into a single resource. A SAT solver
2014-11-08 03:59:48 -06:00
is used to determine if two resources are share-able.
-force
Per default the selection of cells that is considered for sharing is
narrowed using a list of cell types. With this option all selected
cells are considered for resource sharing.
IMPORTANT NOTE: If the -all option is used then no cells with internal
state must be selected!
-aggressive
Per default some heuristics are used to reduce the number of cells
considered for resource sharing to only large resources. This options
turns this heuristics off, resulting in much more cells being considered
for resource sharing.
-fast
Only consider the simple part of the control logic in SAT solving, resulting
2015-08-14 03:56:05 -05:00
in much easier SAT problems at the cost of maybe missing some opportunities
2014-11-08 03:59:48 -06:00
for resource sharing.
-limit N
Only perform the first N merges, then stop. This is useful for debugging.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { shell -- enter interactive command mode}
\label { cmd:shell}
\begin { lstlisting} [numbers=left,frame=single]
shell
This command enters the interactive command mode. This can be useful
in a script to interrupt the script at a certain point and allow for
interactive inspection or manual synthesis of the design at this point.
The command prompt of the interactive shell indicates the current
selection (see 'help select'):
yosys>
the entire design is selected
yosys*>
only part of the design is selected
yosys [modname]>
the entire module 'modname' is selected using 'select -module modname'
yosys [modname]*>
only part of current module 'modname' is selected
When in interactive shell, some errors (e.g. invalid command arguments)
do not terminate yosys but return to the command prompt.
This command is the default action if nothing else has been specified
on the command line.
Press Ctrl-D or type 'exit' to leave the interactive shell.
\end { lstlisting}
\section { show -- generate schematics using graphviz}
\label { cmd:show}
\begin { lstlisting} [numbers=left,frame=single]
show [options] [selection]
Create a graphviz DOT file for the selected part of the design and compile it
to a graphics file (usually SVG or PostScript).
-viewer <viewer>
Run the specified command with the graphics file as parameter.
2018-10-16 08:28:37 -05:00
On Windows, this pauses yosys until the viewer exits.
2013-07-20 08:19:12 -05:00
-format <format>
2016-11-02 13:25:28 -05:00
Generate a graphics file in the specified format. Use 'dot' to just
generate a .dot file, or other <format> strings such as 'svg' or 'ps'
to generate files in other formats (this calls the 'dot' command).
2013-07-20 08:19:12 -05:00
-lib <verilog_ or_ ilang_ file>
Use the specified library file for determining whether cell ports are
inputs or outputs. This option can be used multiple times to specify
more than one library.
2015-08-14 04:27:19 -05:00
note: in most cases it is better to load the library before calling
show with 'read_ verilog -lib <filename>'. it is also possible to
load liberty files with 'read_ liberty -lib <filename>'.
2013-07-20 08:19:12 -05:00
-prefix <prefix>
2013-09-15 04:41:05 -05:00
generate <prefix>.* instead of ~/.yosys_ show.*
2013-07-20 08:19:12 -05:00
2014-11-08 03:59:48 -06:00
-color <color> <object>
assign the specified color to the specified object. The object can be
2013-07-20 08:19:12 -05:00
a single selection wildcard expressions or a saved set of objects in
the @<name> syntax (see "help select" for details).
2014-11-08 03:59:48 -06:00
-label <text> <object>
assign the specified label text to the specified object. The object can
be a single selection wildcard expressions or a saved set of objects in
the @<name> syntax (see "help select" for details).
2013-07-20 08:19:12 -05:00
-colors <seed>
Randomly assign colors to the wires. The integer argument is the seed
for the random number generator. Change the seed value if the colored
2015-08-14 03:56:05 -05:00
graph still is ambiguous. A seed of zero deactivates the coloring.
2013-07-20 08:19:12 -05:00
2015-02-09 05:05:02 -06:00
-colorattr <attribute_ name>
Use the specified attribute to assign colors. A unique color is
assigned to each unique value of this attribute.
2013-07-20 08:19:12 -05:00
-width
2020-04-11 11:36:51 -05:00
annotate buses with a label indicating the width of the bus.
2013-07-20 08:19:12 -05:00
2014-11-08 03:59:48 -06:00
-signed
2015-08-14 03:56:05 -05:00
mark ports (A, B) that are declared as signed (using the [AB]_ SIGNED
2014-11-08 03:59:48 -06:00
cell parameter) with an asterisk next to the port name.
2013-07-20 08:19:12 -05:00
-stretch
stretch the graph so all inputs are on the left side and all outputs
(including inout ports) are on the right side.
2013-12-28 05:14:47 -06:00
-pause
wait for the use to press enter to before returning
-enum
enumerate objects with internal ($ - prefixed ) names
-long
2015-08-14 03:56:05 -05:00
do not abbreviate objects with internal ($ - prefixed ) names
2013-12-28 05:14:47 -06:00
2014-11-08 03:59:48 -06:00
-notitle
do not add the module name as graph title to the dot file
2020-04-11 11:36:51 -05:00
-nobg
don't run viewer in the background, IE wait for the viewer tool to
exit before returning
2014-11-08 03:59:48 -06:00
When no <format> is specified, 'dot' is used. When no <format> and <viewer> is
2018-10-16 08:28:37 -05:00
specified, 'xdot' is used to display the schematic (POSIX systems only).
2013-07-20 08:19:12 -05:00
The generated output files are '~/.yosys_ show.dot' and '~/.yosys_ show.<format>',
unless another prefix is specified using -prefix <prefix>.
2015-08-14 04:27:19 -05:00
Yosys on Windows and YosysJS use different defaults: The output is written
2016-11-02 13:25:28 -05:00
to 'show.dot' in the current directory and new viewer is launched each time
the 'show' command is executed.
\end { lstlisting}
\section { shregmap -- map shift registers}
\label { cmd:shregmap}
\begin { lstlisting} [numbers=left,frame=single]
shregmap [options] [selection]
This pass converts chains of $ _ DFF _ [ NP ] _ gates to target specific shift register
primitives. The generated shift register will be of type $ _ _ SHREG _ DFF _ [ NP ] _ and
will use the same interface as the original $ _ DFF _ * _ cells. The cell parameter
'DEPTH' will contain the depth of the shift register. Use a target-specific
'techmap' map file to convert those cells to the actual target cells.
-minlen N
minimum length of shift register (default = 2)
(this is the length after -keep_ before and -keep_ after)
-maxlen N
maximum length of shift register (default = no limit)
larger chains will be mapped to multiple shift register instances
-keep_ before N
number of DFFs to keep before the shift register (default = 0)
-keep_ after N
number of DFFs to keep after the shift register (default = 0)
-clkpol pos|neg|any
limit match to only positive or negative edge clocks. (default = any)
-enpol pos|neg|none|any_ or_ none|any
limit match to FFs with the specified enable polarity. (default = none)
-match <cell_ type>[:<d_ port_ name>:<q_ port_ name>]
match the specified cells instead of $ _ DFF _ N _ and $ _ DFF_ P_ . If
':<d_ port_ name>:<q_ port_ name>' is omitted then 'D' and 'Q' is used
by default. E.g. the option '-clkpol pos' is just an alias for
'-match $ _ DFF _ P _ ', which is an alias for ' - match $ _ DFF_ P_ :D:Q'.
-params
instead of encoding the clock and enable polarity in the cell name by
deriving from the original cell name, simply name all generated cells
$ _ _ SHREG _ and use CLKPOL and ENPOL parameters. An ENPOL value of 2 is
used to denote cells without enable input. The ENPOL parameter is
omitted when '-enpol none' (or no -enpol option) is passed.
-zinit
assume the shift register is automatically zero-initialized, so it
becomes legal to merge zero initialized FFs into the shift register.
-init
map initialized registers to the shift reg, add an INIT parameter to
generated cells with the initialization value. (first bit to shift out
in LSB position)
-tech greenpak4
map to greenpak4 shift registers.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { sim -- simulate the circuit}
\label { cmd:sim}
\begin { lstlisting} [numbers=left,frame=single]
sim [options] [top-level]
This command simulates the circuit using the given top-level module.
-vcd <filename>
write the simulation results to the given VCD file
-clock <portname>
name of top-level clock input
-clockn <portname>
name of top-level clock input (inverse polarity)
-reset <portname>
name of top-level reset input (active high)
-resetn <portname>
name of top-level inverted reset input (active low)
-rstlen <integer>
number of cycles reset should stay active (default: 1)
-zinit
zero-initialize all uninitialized regs and memories
-n <integer>
number of cycles to simulate (default: 20)
-a
include all nets in VCD output, not just those with public names
-w
writeback mode: use final simulation state as new init state
-d
enable debug output
\end { lstlisting}
2013-12-28 05:14:47 -06:00
\section { simplemap -- mapping simple coarse-grain cells}
\label { cmd:simplemap}
\begin { lstlisting} [numbers=left,frame=single]
simplemap [selection]
This pass maps a small selection of simple coarse-grain cells to yosys gate
primitives. The following internal cell types are mapped by this pass:
2014-09-03 19:07:52 -05:00
$ not, $ pos, $ and, $ or, $ xor, $ xnor
2013-12-28 05:14:47 -06:00
$ reduce _ and, $ reduce_ or, $ reduce _ xor, $ reduce_ xnor, $ reduce _ bool
2016-02-14 04:02:11 -06:00
$ logic _ not, $ logic_ and, $ logic _ or, $ mux, $ tribuf
2016-11-02 13:25:28 -05:00
$ sr, $ ff, $ dff, $ dffsr, $ adff, $ dlatch
2013-12-28 05:14:47 -06:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { splice -- create explicit splicing cells}
\label { cmd:splice}
\begin { lstlisting} [numbers=left,frame=single]
splice [options] [selection]
This command adds $ slice and $ concat cells to the design to make the splicing
of multi-bit signals explicit. This for example is useful for coarse grain
2015-08-14 03:56:05 -05:00
synthesis, where dedicated hardware is needed to splice signals.
2014-11-08 03:59:48 -06:00
-sel_ by_ cell
only select the cell ports to rewire by the cell. if the selection
contains a cell, than all cell inputs are rewired, if necessary.
-sel_ by_ wire
only select the cell ports to rewire by the wire. if the selection
contains a wire, than all cell ports driven by this wire are wired,
if necessary.
-sel_ any_ bit
it is sufficient if the driver of any bit of a cell port is selected.
by default all bits must be selected.
2015-08-14 04:27:19 -05:00
-wires
also add $ slice and $ concat cells to drive otherwise unused wires.
2014-11-08 03:59:48 -06:00
-no_ outputs
do not rewire selected module outputs.
-port <name>
only rewire cell ports with the specified name. can be used multiple
times. implies -no_ output.
-no_ port <name>
do not rewire cell ports with the specified name. can be used multiple
times. can not be combined with -port <name>.
By default selected output wires and all cell ports of selected cells driven
by selected wires are rewired.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { splitnets -- split up multi-bit nets}
\label { cmd:splitnets}
\begin { lstlisting} [numbers=left,frame=single]
splitnets [options] [selection]
This command splits multi-bit nets into single-bit nets.
2014-11-08 03:59:48 -06:00
-format char1[char2[char3]]
2013-11-22 08:02:40 -06:00
the first char is inserted between the net name and the bit index, the
second char is appended to the netname. e.g. -format () creates net
2014-11-08 03:59:48 -06:00
names like 'mysignal(42)'. the 3rd character is the range separation
character when creating multi-bit wires. the default is '[]:'.
2013-11-22 08:02:40 -06:00
2013-07-20 08:19:12 -05:00
-ports
also split module ports. per default only internal signals are split.
2014-11-08 03:59:48 -06:00
-driver
don't blindly split nets in individual bits. instead look at the driver
and split nets so that no driver drives only part of a net.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2013-12-28 05:14:47 -06:00
\section { stat -- print some statistics}
\label { cmd:stat}
\begin { lstlisting} [numbers=left,frame=single]
stat [options] [selection]
Print some statistics (number of objects) on the selected portion of the
design.
-top <module>
print design hierarchy with this module as top. if the design is fully
selected and a module has the 'top' attribute set, this module is used
default value for this option.
2014-11-08 03:59:48 -06:00
2016-02-14 04:02:11 -06:00
-liberty <liberty_ file>
use cell area information from the provided liberty file
2020-04-11 11:36:51 -05:00
-tech <technology>
print area estemate for the specified technology. Currently supported
values for <technology>: xilinx, cmos
2014-11-08 03:59:48 -06:00
-width
annotate internal cell types with their word width.
e.g. $ add _ 8 for an 8 bit wide $ add cell.
2013-12-28 05:14:47 -06:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { submod -- moving part of a module to a new submodule}
\label { cmd:submod}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
submod [options] [selection]
2013-07-20 08:19:12 -05:00
This pass identifies all cells with the 'submod' attribute and moves them to
a newly created module. The value of the attribute is used as name for the
cell that replaces the group of cells with the same attribute value.
This pass can be used to create a design hierarchy in flat design. This can
be useful for analyzing or reverse-engineering a design.
This pass only operates on completely selected modules with no processes
or memories.
2020-04-11 11:36:51 -05:00
-copy
by default the cells are 'moved' from the source module and the source
module will use an instance of the new module after this command is
finished. call with -copy to not modify the source module.
-name <name>
don't use the 'submod' attribute but instead use the selection. only
objects from one module might be selected. the value of the -name option
is used as the value of the 'submod' attribute instead.
2013-07-20 08:19:12 -05:00
2020-04-11 11:36:51 -05:00
-hidden
instead of creating submodule ports with public names, create ports with
private names so that a subsequent 'flatten; clean' call will restore the
original module with original public names.
\end { lstlisting}
2013-07-20 08:19:12 -05:00
2020-04-11 11:36:51 -05:00
\section { supercover -- add hi/lo cover cells for each wire bit}
\label { cmd:supercover}
\begin { lstlisting} [numbers=left,frame=single]
supercover [options] [selection]
2016-02-14 04:02:11 -06:00
2020-04-11 11:36:51 -05:00
This command adds two cover cells for each bit of each selected wire, one
checking for a hi signal level and one checking for lo level.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { synth -- generic synthesis script}
\label { cmd:synth}
\begin { lstlisting} [numbers=left,frame=single]
synth [options]
This command runs the default synthesis script. This command does not operate
on partly selected designs.
-top <module>
use the specified module as top module (default='top')
2016-11-02 13:25:28 -05:00
-auto-top
automatically determine the top of the design hierarchy
-flatten
flatten the design before synthesis. this will pass '-auto-top' to
'hierarchy' if no top module is specified.
2015-02-09 05:05:02 -06:00
-encfile <file>
passed to 'fsm_ recode' via 'fsm'
2020-04-11 11:36:51 -05:00
-lut <k>
perform synthesis for a k-LUT architecture.
2015-08-14 04:27:19 -05:00
-nofsm
do not run FSM optimization
2015-02-09 05:05:02 -06:00
-noabc
do not run abc (as if yosys was compiled without ABC support)
2015-08-14 04:27:19 -05:00
-noalumacc
do not run 'alumacc' pass. i.e. keep arithmetic operators in
their direct form ($ add, $ sub, etc.).
-nordff
passed to 'memory'. prohibits merging of FFs into memory read ports
2018-10-16 08:28:37 -05:00
-noshare
do not run SAT-based resource sharing
2014-11-08 03:59:48 -06:00
-run <from_ label>[:<to_ label>]
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
2020-04-11 11:36:51 -05:00
-abc9
use new ABC9 flow (EXPERIMENTAL)
-flowmap
use FlowMap LUT techmapping instead of ABC
2014-11-08 03:59:48 -06:00
The following commands are executed by this synthesis command:
begin:
2016-11-02 13:25:28 -05:00
hierarchy -check [-top <top> | -auto-top]
2014-11-08 03:59:48 -06:00
coarse:
proc
2020-04-11 11:36:51 -05:00
flatten (if -flatten)
2016-11-02 13:25:28 -05:00
opt_ expr
2015-08-14 04:27:19 -05:00
opt_ clean
check
2014-11-08 03:59:48 -06:00
opt
wreduce
2020-04-11 11:36:51 -05:00
peepopt
opt_ clean
techmap -map +/cmp2lut.v -map +/cmp2lcu.v (if -lut)
alumacc (unless -noalumacc)
share (unless -noshare)
2014-11-08 03:59:48 -06:00
opt
2020-04-11 11:36:51 -05:00
fsm (unless -nofsm)
2014-11-08 03:59:48 -06:00
opt -fast
memory -nomap
opt_ clean
fine:
opt -fast -full
memory_ map
opt -full
techmap
2020-04-11 11:36:51 -05:00
techmap -map +/gate2lut.v (if -noabc and -lut)
clean; opt_ lut (if -noabc and -lut)
flowmap -maxlut K (if -flowmap and -lut)
2014-11-08 03:59:48 -06:00
opt -fast
2020-04-11 11:36:51 -05:00
abc -fast (unless -noabc, unless -lut)
abc -fast -lut k (unless -noabc, if -lut)
opt -fast (unless -noabc)
2015-08-14 04:27:19 -05:00
check:
hierarchy -check
stat
check
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { synth\_ achronix -- synthesis for Acrhonix Speedster22i FPGAs.}
\label { cmd:synth_ achronix}
2016-11-02 13:25:28 -05:00
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
synth_ achronix [options]
2016-11-02 13:25:28 -05:00
2018-10-16 08:28:37 -05:00
This command runs synthesis for Achronix Speedster eFPGAs. This work is still experimental.
2016-11-02 13:25:28 -05:00
-top <module>
use the specified module as top module (default='top')
-vout <file>
write the design to the specified Verilog netlist file. writing of an
output file is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
2018-10-16 08:28:37 -05:00
-noflatten
do not flatten design before synthesis
2016-11-02 13:25:28 -05:00
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2016-11-02 13:25:28 -05:00
The following commands are executed by this synthesis command:
begin:
2018-10-16 08:28:37 -05:00
read_ verilog -sv -lib +/achronix/speedster22i/cells_ sim.v
2016-11-02 13:25:28 -05:00
hierarchy -check -top <top>
2018-10-16 08:28:37 -05:00
flatten: (unless -noflatten)
2016-11-02 13:25:28 -05:00
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
fine:
2018-10-16 08:28:37 -05:00
opt -fast -mux_ undef -undriven -fine -full
2016-11-02 13:25:28 -05:00
memory_ map
opt -undriven -fine
2018-10-16 08:28:37 -05:00
dff2dffe -direct-match $ _ DFF _ *
opt -fine
techmap -map +/techmap.v
opt -full
2016-11-02 13:25:28 -05:00
clean -purge
setundef -undriven -zero
2020-04-11 11:36:51 -05:00
abc -markgroups -dff -D 1 (only if -retime)
2016-11-02 13:25:28 -05:00
map_ luts:
abc -lut 4
clean
map_ cells:
2018-10-16 08:28:37 -05:00
iopadmap -bits -outpad $ _ _ outpad I:O - inpad $ _ _ inpad O:I
techmap -map +/achronix/speedster22i/cells_ map.v
2016-11-02 13:25:28 -05:00
clean -purge
check:
hierarchy -check
stat
check -noinit
vout:
2018-10-16 08:28:37 -05:00
write_ verilog -nodec -attr2comment -defparam -renameprefix syn_ <file-name>
2016-11-02 13:25:28 -05:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { synth\_ anlogic -- synthesis for Anlogic FPGAs}
\label { cmd:synth_ anlogic}
\begin { lstlisting} [numbers=left,frame=single]
synth_ anlogic [options]
This command runs synthesis for Anlogic FPGAs.
-top <module>
use the specified module as top module
-edif <file>
write the design to the specified EDIF file. writing of an output file
is omitted if this parameter is not specified.
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
run 'abc' with '-dff -D 1' options
-nolutram
do not use EG_ LOGIC_ DRAM16X4 cells in output netlist
The following commands are executed by this synthesis command:
begin:
read_ verilog -lib +/anlogic/cells_ sim.v +/anlogic/eagle_ bb.v
hierarchy -check -top <top>
flatten: (unless -noflatten)
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
map_ lutram: (skip if -nolutram)
memory_ bram -rules +/anlogic/lutrams.txt
techmap -map +/anlogic/lutrams_ map.v
setundef -zero -params t:EG_ LOGIC_ DRAM16X4
map_ ffram:
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
map_ gates:
techmap -map +/techmap.v -map +/anlogic/arith_ map.v
opt -fast
abc -dff -D 1 (only if -retime)
map_ ffs:
techmap -D NO_ LUT -map +/anlogic/cells_ map.v
dffinit -strinit SET RESET -ff AL_ MAP_ SEQ q REGSET -noreinit
opt_ expr -mux_ undef
simplemap
map_ luts:
abc -lut 4:6
clean
map_ cells:
techmap -map +/anlogic/cells_ map.v
clean
map_ anlogic:
anlogic_ fixcarry
anlogic_ eqn
check:
hierarchy -check
stat
check -noinit
edif:
write_ edif <file-name>
json:
write_ json <file-name>
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { synth\_ coolrunner2 -- synthesis for Xilinx Coolrunner-II CPLDs}
\label { cmd:synth_ coolrunner2}
2016-02-14 04:02:11 -06:00
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
synth_ coolrunner2 [options]
2016-02-14 04:02:11 -06:00
2018-10-16 08:28:37 -05:00
This command runs synthesis for Coolrunner-II CPLDs. This work is experimental.
It is intended to be used with https://github.com/azonenberg/openfpga as the
place-and-route.
2016-02-14 04:02:11 -06:00
-top <module>
use the specified module as top module (default='top')
2016-11-02 13:25:28 -05:00
-json <file>
write the design to the specified JSON file. writing of an output file
2016-02-14 04:02:11 -06:00
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2016-02-14 04:02:11 -06:00
The following commands are executed by this synthesis command:
begin:
2018-10-16 08:28:37 -05:00
read_ verilog -lib +/coolrunner2/cells_ sim.v
2016-02-14 04:02:11 -06:00
hierarchy -check -top <top>
2016-11-02 13:25:28 -05:00
flatten: (unless -noflatten)
2016-02-14 04:02:11 -06:00
proc
flatten
tribuf -logic
coarse:
synth -run coarse
fine:
2020-04-11 11:36:51 -05:00
extract_ counter -dir up -allow_ arst no
techmap -map +/coolrunner2/cells_ counter_ map.v
clean
2018-10-16 08:28:37 -05:00
opt -fast -full
2020-04-11 11:36:51 -05:00
techmap -map +/techmap.v -map +/coolrunner2/cells_ latch.v
opt -fast
2018-10-16 08:28:37 -05:00
dfflibmap -prepare -liberty +/coolrunner2/xc2_ dff.lib
2016-02-14 04:02:11 -06:00
2018-10-16 08:28:37 -05:00
map_ tff:
abc -g AND,XOR
clean
extract -map +/coolrunner2/tff_ extract.v
map_ pla:
abc -sop -I 40 -P 56
2016-02-14 04:02:11 -06:00
clean
map_ cells:
2018-10-16 08:28:37 -05:00
dfflibmap -liberty +/coolrunner2/xc2_ dff.lib
dffinit -ff FDCP Q INIT
dffinit -ff FDCP_ N Q INIT
dffinit -ff FTCP Q INIT
dffinit -ff FTCP_ N Q INIT
dffinit -ff LDCP Q INIT
dffinit -ff LDCP_ N Q INIT
coolrunner2_ sop
2020-04-11 11:36:51 -05:00
clean
2018-10-16 08:28:37 -05:00
iopadmap -bits -inpad IBUF O:I -outpad IOBUFE I:IO -inoutpad IOBUFE O:IO -toutpad IOBUFE E:I:IO -tinoutpad IOBUFE E:O:I:IO
attrmvcp -attr src -attr LOC t:IOBUFE n:*
attrmvcp -attr src -attr LOC -driven t:IBUF n:*
2020-04-11 11:36:51 -05:00
coolrunner2_ fixup
2018-10-16 08:28:37 -05:00
splitnets
2016-02-14 04:02:11 -06:00
clean
check:
hierarchy -check
stat
check -noinit
2016-11-02 13:25:28 -05:00
json:
write_ json <file-name>
2016-02-14 04:02:11 -06:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { synth\_ easic -- synthesis for eASIC platform}
\label { cmd:synth_ easic}
2015-08-14 04:27:19 -05:00
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
synth_ easic [options]
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
This command runs synthesis for eASIC platform.
2015-08-14 04:27:19 -05:00
-top <module>
2018-10-16 08:28:37 -05:00
use the specified module as top module
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
-vlog <file>
write the design to the specified structural Verilog file. writing of
an output file is omitted if this parameter is not specified.
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
-etools <path>
set path to the eTools installation. (default=/opt/eTools)
2015-08-14 04:27:19 -05:00
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2015-08-14 04:27:19 -05:00
The following commands are executed by this synthesis command:
begin:
2018-10-16 08:28:37 -05:00
read_ liberty -lib <etools_ phys_ clk_ lib>
read_ liberty -lib <etools_ logic_ lut_ lib>
2015-08-14 04:27:19 -05:00
hierarchy -check -top <top>
2016-11-02 13:25:28 -05:00
flatten: (unless -noflatten)
2015-08-14 04:27:19 -05:00
proc
flatten
coarse:
synth -run coarse
fine:
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
2018-10-16 08:28:37 -05:00
techmap
opt -fast
2020-04-11 11:36:51 -05:00
abc -dff -D 1 (only if -retime)
2018-10-16 08:28:37 -05:00
opt_ clean (only if -retime)
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
map:
dfflibmap -liberty <etools_ phys_ clk_ lib>
abc -liberty <etools_ logic_ lut_ lib>
opt_ clean
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
check:
hierarchy -check
stat
check -noinit
vlog:
write_ verilog -noexpr -attr2comment <file-name>
\end { lstlisting}
\section { synth\_ ecp5 -- synthesis for ECP5 FPGAs}
\label { cmd:synth_ ecp5}
\begin { lstlisting} [numbers=left,frame=single]
synth_ ecp5 [options]
This command runs synthesis for ECP5 FPGAs.
-top <module>
use the specified module as top module
-blif <file>
write the design to the specified BLIF file. writing of an output file
is omitted if this parameter is not specified.
-edif <file>
write the design to the specified EDIF file. writing of an output file
is omitted if this parameter is not specified.
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2018-10-16 08:28:37 -05:00
-noccu2
do not use CCU2 cells in output netlist
-nodffe
do not use flipflops with CE in output netlist
-nobram
2020-04-11 11:36:51 -05:00
do not use block RAM cells in output netlist
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
-nolutram
do not use LUT RAM cells in output netlist
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
-nowidelut
2018-10-16 08:28:37 -05:00
do not use PFU muxes to implement LUTs larger than LUT4s
2020-04-11 11:36:51 -05:00
-asyncprld
use async PRLD mode to implement DLATCH and DFFSR (EXPERIMENTAL)
2018-10-16 08:28:37 -05:00
-abc2
run two passes of 'abc' for slightly improved logic density
2020-04-11 11:36:51 -05:00
-abc9
use new ABC9 flow (EXPERIMENTAL)
2018-10-16 08:28:37 -05:00
-vpr
generate an output netlist (and BLIF file) suitable for VPR
(this feature is experimental and incomplete)
2020-04-11 11:36:51 -05:00
-nodsp
do not map multipliers to MULT18X18D
2018-10-16 08:28:37 -05:00
The following commands are executed by this synthesis command:
begin:
2020-04-11 11:36:51 -05:00
read_ verilog -lib -specify +/ecp5/cells_ sim.v +/ecp5/cells_ bb.v
2018-10-16 08:28:37 -05:00
hierarchy -check -top <top>
2020-04-11 11:36:51 -05:00
coarse:
2018-10-16 08:28:37 -05:00
proc
flatten
tribuf -logic
deminout
2020-04-11 11:36:51 -05:00
opt_ expr
opt_ clean
check
opt
wreduce
peepopt
opt_ clean
share
techmap -map +/cmp2lut.v -D LUT_ WIDTH=4
opt_ expr
opt_ clean
techmap -map +/mul2dsp.v -map +/ecp5/dsp_ map.v -D DSP_ A_ MAXWIDTH=18 -D DSP_ B_ MAXWIDTH=18 -D DSP_ A_ MINWIDTH=2 -D DSP_ B_ MINWIDTH=2 -D DSP_ NAME=$ _ _ MUL 18 X 18 ( unless - nodsp )
chtype -set $ mul t: $ _ _ soft_ mul (unless -nodsp)
alumacc
opt
fsm
opt -fast
memory -nomap
opt_ clean
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ bram: (skip if -nobram)
memory_ bram -rules +/ecp5/brams.txt
techmap -map +/ecp5/brams_ map.v
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ lutram: (skip if -nolutram)
memory_ bram -rules +/ecp5/lutrams.txt
techmap -map +/ecp5/lutrams_ map.v
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ ffram:
2018-10-16 08:28:37 -05:00
opt -fast -mux_ undef -undriven -fine
2020-04-11 11:36:51 -05:00
memory_ map -iattr -attr !ram_ block -attr !rom_ block -attr logic_ block -attr syn_ ramstyle=auto -attr syn_ ramstyle=registers -attr syn_ romstyle=auto -attr syn_ romstyle=logic
2018-10-16 08:28:37 -05:00
opt -undriven -fine
2020-04-11 11:36:51 -05:00
map_ gates:
2018-10-16 08:28:37 -05:00
techmap -map +/techmap.v -map +/ecp5/arith_ map.v
2020-04-11 11:36:51 -05:00
opt -fast
abc -dff -D 1 (only if -retime)
2018-10-16 08:28:37 -05:00
map_ ffs:
dff2dffs
opt_ clean
dff2dffe -direct-match $ _ DFF _ * - direct - match $ _ _ DFFS_ *
2020-04-11 11:36:51 -05:00
techmap -D NO_ LUT [-D ASYNC_ PRLD] -map +/ecp5/cells_ map.v
opt_ expr -undriven -mux_ undef
2018-10-16 08:28:37 -05:00
simplemap
2020-04-11 11:36:51 -05:00
ecp5_ ffinit
ecp5_ gsr
attrmvcp -copy -attr syn_ useioff
opt_ clean
2018-10-16 08:28:37 -05:00
map_ luts:
abc (only if -abc2)
2020-04-11 11:36:51 -05:00
techmap -map +/ecp5/latches_ map.v
abc -lut 4:7 -dress
2018-10-16 08:28:37 -05:00
clean
map_ cells:
techmap -map +/ecp5/cells_ map.v (with -D NO_ LUT in vpr mode)
2020-04-11 11:36:51 -05:00
opt_ lut_ ins -tech ecp5
2018-10-16 08:28:37 -05:00
clean
check:
2020-04-11 11:36:51 -05:00
autoname
2018-10-16 08:28:37 -05:00
hierarchy -check
stat
check -noinit
blif:
opt_ clean -purge (vpr mode)
write_ blif -attr -cname -conn -param <file-name> (vpr mode)
write_ blif -gates -attr -param <file-name> (non-vpr mode)
edif:
write_ edif <file-name>
json:
write_ json <file-name>
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { synth\_ efinix -- synthesis for Efinix FPGAs}
\label { cmd:synth_ efinix}
\begin { lstlisting} [numbers=left,frame=single]
synth_ efinix [options]
This command runs synthesis for Efinix FPGAs.
-top <module>
use the specified module as top module
-edif <file>
write the design to the specified EDIF file. writing of an output file
is omitted if this parameter is not specified.
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
run 'abc' with '-dff -D 1' options
-nobram
do not use EFX_ RAM_ 5K cells in output netlist
The following commands are executed by this synthesis command:
begin:
read_ verilog -lib +/efinix/cells_ sim.v
hierarchy -check -top <top>
flatten: (unless -noflatten)
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
memory_ bram -rules +/efinix/brams.txt
techmap -map +/efinix/brams_ map.v
setundef -zero -params t:EFX_ RAM_ 5K
map_ ffram:
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
map_ gates:
techmap -map +/techmap.v -map +/efinix/arith_ map.v
opt -fast
abc -dff -D 1 (only if -retime)
map_ ffs:
techmap -D NO_ LUT -map +/efinix/cells_ map.v
dffinit -strinit SET RESET -ff AL_ MAP_ SEQ q REGSET -noreinit
opt_ expr -mux_ undef
simplemap
map_ luts:
abc -lut 4
clean
map_ cells:
techmap -map +/efinix/cells_ map.v
clean
map_ gbuf:
efinix_ gbuf
efinix_ fixcarry
clean
check:
hierarchy -check
stat
check -noinit
edif:
write_ edif <file-name>
json:
write_ json <file-name>
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { synth\_ gowin -- synthesis for Gowin FPGAs}
\label { cmd:synth_ gowin}
\begin { lstlisting} [numbers=left,frame=single]
synth_ gowin [options]
This command runs synthesis for Gowin FPGAs. This work is experimental.
-top <module>
use the specified module as top module (default='top')
-vout <file>
write the design to the specified Verilog netlist file. writing of an
output file is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
2020-04-11 11:36:51 -05:00
-nodffe
do not use flipflops with CE in output netlist
-nobram
do not use BRAM cells in output netlist
-nolutram
do not use distributed RAM cells in output netlist
-noflatten
do not flatten design before synthesis
2018-10-16 08:28:37 -05:00
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
-nowidelut
do not use muxes to implement LUTs larger than LUT4s
-noiopads
do not emit IOB at top level ports
2018-10-16 08:28:37 -05:00
The following commands are executed by this synthesis command:
begin:
read_ verilog -lib +/gowin/cells_ sim.v
hierarchy -check -top <top>
2020-04-11 11:36:51 -05:00
flatten: (unless -noflatten)
2018-10-16 08:28:37 -05:00
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
2020-04-11 11:36:51 -05:00
map_ bram: (skip if -nobram)
memory_ bram -rules +/gowin/brams.txt
techmap -map +/gowin/brams_ map.v
map_ lutram: (skip if -nolutram)
memory_ bram -rules +/gowin/lutrams.txt
techmap -map +/gowin/lutrams_ map.v
determine_ init
map_ ffram:
2018-10-16 08:28:37 -05:00
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
2020-04-11 11:36:51 -05:00
map_ gates:
techmap -map +/techmap.v -map +/gowin/arith_ map.v
opt -fast
abc -dff -D 1 (only if -retime)
splitnets
map_ ffs:
dff2dffs -match-init
opt_ clean
dff2dffe -direct-match $ _ DFF _ * - direct - match $ _ _ DFFS_ *
techmap -map +/gowin/cells_ map.v
opt_ expr -mux_ undef
simplemap
2018-10-16 08:28:37 -05:00
map_ luts:
2020-04-11 11:36:51 -05:00
abc -lut 4:8
2018-10-16 08:28:37 -05:00
clean
map_ cells:
techmap -map +/gowin/cells_ map.v
2020-04-11 11:36:51 -05:00
opt_ lut_ ins -tech gowin
setundef -undriven -params -zero
hilomap -singleton -hicell VCC V -locell GND G
iopadmap -bits -inpad IBUF O:I -outpad OBUF I:O -toutpad TBUF OEN:I:O -tinoutpad IOBUF OEN:O:I:IO (unless -noiopads)
clean
2018-10-16 08:28:37 -05:00
check:
hierarchy -check
stat
check -noinit
vout:
2020-04-11 11:36:51 -05:00
write_ verilog -decimal -attr2comment -defparam -renameprefix gen <file-name>
2018-10-16 08:28:37 -05:00
\end { lstlisting}
\section { synth\_ greenpak4 -- synthesis for GreenPAK4 FPGAs}
\label { cmd:synth_ greenpak4}
\begin { lstlisting} [numbers=left,frame=single]
synth_ greenpak4 [options]
This command runs synthesis for GreenPAK4 FPGAs. This work is experimental.
It is intended to be used with https://github.com/azonenberg/openfpga as the
place-and-route.
-top <module>
use the specified module as top module (default='top')
-part <part>
synthesize for the specified part. Valid values are SLG46140V,
SLG46620V, and SLG46621V (default).
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2018-10-16 08:28:37 -05:00
The following commands are executed by this synthesis command:
begin:
read_ verilog -lib +/greenpak4/cells_ sim.v
hierarchy -check -top <top>
flatten: (unless -noflatten)
proc
flatten
tribuf -logic
coarse:
synth -run coarse
fine:
extract_ counter -pout GP_ DCMP,GP_ DAC -maxwidth 14
clean
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
2020-04-11 11:36:51 -05:00
techmap -map +/techmap.v -map +/greenpak4/cells_ latch.v
2018-10-16 08:28:37 -05:00
dfflibmap -prepare -liberty +/greenpak4/gp_ dff.lib
opt -fast
2020-04-11 11:36:51 -05:00
abc -dff -D 1 (only if -retime)
2018-10-16 08:28:37 -05:00
map_ luts:
nlutmap -assert -luts 0,6,8,2 (for -part SLG46140V)
nlutmap -assert -luts 2,8,16,2 (for -part SLG46620V)
nlutmap -assert -luts 2,8,16,2 (for -part SLG46621V)
clean
map_ cells:
shregmap -tech greenpak4
dfflibmap -liberty +/greenpak4/gp_ dff.lib
dffinit -ff GP_ DFF Q INIT
dffinit -ff GP_ DFFR Q INIT
dffinit -ff GP_ DFFS Q INIT
dffinit -ff GP_ DFFSR Q INIT
iopadmap -bits -inpad GP_ IBUF OUT:IN -outpad GP_ OBUF IN:OUT -inoutpad GP_ OBUF OUT:IN -toutpad GP_ OBUFT OE:IN:OUT -tinoutpad GP_ IOBUF OE:OUT:IN:IO
attrmvcp -attr src -attr LOC t:GP_ OBUF t:GP_ OBUFT t:GP_ IOBUF n:*
attrmvcp -attr src -attr LOC -driven t:GP_ IBUF n:*
techmap -map +/greenpak4/cells_ map.v
greenpak4_ dffinv
clean
check:
hierarchy -check
stat
check -noinit
json:
write_ json <file-name>
\end { lstlisting}
\section { synth\_ ice40 -- synthesis for iCE40 FPGAs}
\label { cmd:synth_ ice40}
\begin { lstlisting} [numbers=left,frame=single]
synth_ ice40 [options]
This command runs synthesis for iCE40 FPGAs.
2020-04-11 11:36:51 -05:00
-device < hx | lp | u >
relevant only for '-abc9' flow, optimise timing for the specified device.
default: hx
2018-10-16 08:28:37 -05:00
-top <module>
use the specified module as top module
-blif <file>
write the design to the specified BLIF file. writing of an output file
is omitted if this parameter is not specified.
-edif <file>
write the design to the specified EDIF file. writing of an output file
is omitted if this parameter is not specified.
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2018-10-16 08:28:37 -05:00
-nocarry
do not use SB_ CARRY cells in output netlist
-nodffe
do not use SB_ DFFE* cells in output netlist
2020-04-11 11:36:51 -05:00
-dffe_ min_ ce_ use <min_ ce_ use>
do not use SB_ DFFE* cells if the resulting CE line would go to less
than min_ ce_ use SB_ DFFE* in output netlist
2018-10-16 08:28:37 -05:00
-nobram
do not use SB_ RAM40_ 4K* cells in output netlist
2020-04-11 11:36:51 -05:00
-dsp
use iCE40 UltraPlus DSP cells for large arithmetic
-noabc
use built-in Yosys LUT techmapping instead of abc
2018-10-16 08:28:37 -05:00
-abc2
run two passes of 'abc' for slightly improved logic density
-vpr
generate an output netlist (and BLIF file) suitable for VPR
(this feature is experimental and incomplete)
2020-04-11 11:36:51 -05:00
-abc9
use new ABC9 flow (EXPERIMENTAL)
-flowmap
use FlowMap LUT techmapping instead of abc (EXPERIMENTAL)
2018-10-16 08:28:37 -05:00
The following commands are executed by this synthesis command:
begin:
2020-04-11 11:36:51 -05:00
read_ verilog -D ICE40_ HX -lib -specify +/ice40/cells_ sim.v
2018-10-16 08:28:37 -05:00
hierarchy -check -top <top>
2020-04-11 11:36:51 -05:00
proc
2018-10-16 08:28:37 -05:00
flatten: (unless -noflatten)
flatten
tribuf -logic
deminout
coarse:
2020-04-11 11:36:51 -05:00
opt_ expr
opt_ clean
check
opt
wreduce
peepopt
opt_ clean
share
techmap -map +/cmp2lut.v -D LUT_ WIDTH=4
opt_ expr
opt_ clean
memory_ dff
wreduce t:$ mul
techmap -map +/mul2dsp.v -map +/ice40/dsp_ map.v -D DSP_ A_ MAXWIDTH=16 -D DSP_ B_ MAXWIDTH=16 -D DSP_ A_ MINWIDTH=2 -D DSP_ B_ MINWIDTH=2 -D DSP_ Y_ MINWIDTH=11 -D DSP_ NAME=$ _ _ MUL 16 X 16 ( if - dsp )
select a:mul2dsp (if -dsp)
setattr -unset mul2dsp (if -dsp)
opt_ expr -fine (if -dsp)
wreduce (if -dsp)
select -clear (if -dsp)
ice40_ dsp (if -dsp)
chtype -set $ mul t: $ _ _ soft_ mul (if -dsp)
alumacc
opt
fsm
opt -fast
memory -nomap
opt_ clean
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ bram: (skip if -nobram)
2018-10-16 08:28:37 -05:00
memory_ bram -rules +/ice40/brams.txt
techmap -map +/ice40/brams_ map.v
2020-04-11 11:36:51 -05:00
ice40_ braminit
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ ffram:
2018-10-16 08:28:37 -05:00
opt -fast -mux_ undef -undriven -fine
2020-04-11 11:36:51 -05:00
memory_ map -iattr -attr !ram_ block -attr !rom_ block -attr logic_ block -attr syn_ ramstyle=auto -attr syn_ ramstyle=registers -attr syn_ romstyle=auto -attr syn_ romstyle=logic
2018-10-16 08:28:37 -05:00
opt -undriven -fine
2020-04-11 11:36:51 -05:00
map_ gates:
ice40_ wrapcarry
2018-10-16 08:28:37 -05:00
techmap -map +/techmap.v -map +/ice40/arith_ map.v
2020-04-11 11:36:51 -05:00
opt -fast
abc -dff -D 1 (only if -retime)
2018-10-16 08:28:37 -05:00
ice40_ opt
map_ ffs:
dff2dffe -direct-match $ _ DFF _ *
2020-04-11 11:36:51 -05:00
techmap -D NO_ LUT -D NO_ ADDER -map +/ice40/cells_ map.v
2018-10-16 08:28:37 -05:00
opt_ expr -mux_ undef
simplemap
ice40_ ffinit
ice40_ ffssr
ice40_ opt -full
map_ luts:
abc (only if -abc2)
ice40_ opt (only if -abc2)
2016-11-02 13:25:28 -05:00
techmap -map +/ice40/latches_ map.v
2020-04-11 11:36:51 -05:00
simplemap (if -noabc or -flowmap)
techmap -map +/gate2lut.v -D LUT_ WIDTH=4 (only if -noabc)
flowmap -maxlut 4 (only if -flowmap)
abc -dress -lut 4 (skip if -noabc)
ice40_ wrapcarry -unwrap
techmap -D NO_ LUT -map +/ice40/cells_ map.v
2015-08-14 04:27:19 -05:00
clean
2020-04-11 11:36:51 -05:00
opt_ lut -dlogic SB_ CARRY:I0=2:I1=1:CI=0
2015-08-14 04:27:19 -05:00
map_ cells:
2018-10-16 08:28:37 -05:00
techmap -map +/ice40/cells_ map.v (with -D NO_ LUT in vpr mode)
2015-08-14 04:27:19 -05:00
clean
check:
2020-04-11 11:36:51 -05:00
autoname
2015-08-14 04:27:19 -05:00
hierarchy -check
stat
check -noinit
blif:
2018-10-16 08:28:37 -05:00
opt_ clean -purge (vpr mode)
write_ blif -attr -cname -conn -param <file-name> (vpr mode)
write_ blif -gates -attr -param <file-name> (non-vpr mode)
2015-08-14 04:27:19 -05:00
edif:
write_ edif <file-name>
2018-10-16 08:28:37 -05:00
json:
write_ json <file-name>
\end { lstlisting}
\section { synth\_ intel -- synthesis for Intel (Altera) FPGAs.}
\label { cmd:synth_ intel}
\begin { lstlisting} [numbers=left,frame=single]
synth_ intel [options]
This command runs synthesis for Intel FPGAs.
2020-04-11 11:36:51 -05:00
-family <max10 | arria10gx | cyclone10lp | cyclonev | cycloneiv | cycloneive>
2018-10-16 08:28:37 -05:00
generate the synthesis netlist for the specified family.
2020-04-11 11:36:51 -05:00
MAX10 is the default target if no family argument specified.
For Cyclone IV GX devices, use cycloneiv argument; for Cyclone IV E, use cycloneive.
Cyclone V and Arria 10 GX devices are experimental.
2018-10-16 08:28:37 -05:00
-top <module>
use the specified module as top module (default='top')
-vqm <file>
write the design to the specified Verilog Quartus Mapping File. Writing of an
output file is omitted if this parameter is not specified.
2020-04-11 11:36:51 -05:00
Note that this backend has not been tested and is likely incompatible
with recent versions of Quartus.
2018-10-16 08:28:37 -05:00
-vpr <file>
write BLIF files for VPR flow experiments. The synthesized BLIF output file is not
compatible with the Quartus flow. Writing of an
output file is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
2020-04-11 11:36:51 -05:00
-iopads
use IO pad cells in output netlist
2018-10-16 08:28:37 -05:00
-nobram
2020-04-11 11:36:51 -05:00
do not use block RAM cells in output netlist
2018-10-16 08:28:37 -05:00
-noflatten
do not flatten design before synthesis
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-dff -D 1' options
2018-10-16 08:28:37 -05:00
The following commands are executed by this synthesis command:
begin:
family:
read_ verilog -sv -lib +/intel/max10/cells_ sim.v
read_ verilog -sv -lib +/intel/common/m9k_ bb.v
read_ verilog -sv -lib +/intel/common/altpll_ bb.v
hierarchy -check -top <top>
flatten: (unless -noflatten)
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
2020-04-11 11:36:51 -05:00
map_ bram: (skip if -nobram)
memory_ bram -rules +/intel/common/brams_ m9k.txt (if applicable for family)
techmap -map +/intel/common/brams_ map_ m9k.v (if applicable for family)
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
map_ ffram:
2018-10-16 08:28:37 -05:00
opt -fast -mux_ undef -undriven -fine -full
memory_ map
opt -undriven -fine
dff2dffe -direct-match $ _ DFF _ *
opt -fine
techmap -map +/techmap.v
opt -full
clean -purge
setundef -undriven -zero
2020-04-11 11:36:51 -05:00
abc -markgroups -dff -D 1 (only if -retime)
2018-10-16 08:28:37 -05:00
map_ luts:
abc -lut 4
clean
map_ cells:
2020-04-11 11:36:51 -05:00
iopadmap -bits -outpad $ _ _ outpad I:O - inpad $ _ _ inpad O:I (if -iopads)
2018-10-16 08:28:37 -05:00
techmap -map +/intel/max10/cells_ map.v
dffinit -highlow -ff dffeas q power_ up
clean -purge
check:
hierarchy -check
stat
check -noinit
vqm:
write_ verilog -attr2comment -defparam -nohex -decimal -renameprefix syn_ <file-name>
vpr:
opt_ clean -purge
write_ blif <file-name>
2020-04-11 11:36:51 -05:00
WARNING: THE 'synth_ intel' COMMAND IS EXPERIMENTAL.
\end { lstlisting}
\section { synth\_ sf2 -- synthesis for SmartFusion2 and IGLOO2 FPGAs}
\label { cmd:synth_ sf2}
\begin { lstlisting} [numbers=left,frame=single]
synth_ sf2 [options]
This command runs synthesis for SmartFusion2 and IGLOO2 FPGAs.
-top <module>
use the specified module as top module
-edif <file>
write the design to the specified EDIF file. writing of an output file
is omitted if this parameter is not specified.
-vlog <file>
write the design to the specified Verilog file. writing of an output file
is omitted if this parameter is not specified.
-json <file>
write the design to the specified JSON file. writing of an output file
is omitted if this parameter is not specified.
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
-noflatten
do not flatten design before synthesis
-noiobs
run synthesis in "block mode", i.e. do not insert IO buffers
-clkbuf
insert direct PAD->global_ net buffers
-retime
run 'abc' with '-dff -D 1' options
The following commands are executed by this synthesis command:
begin:
read_ verilog -lib +/sf2/cells_ sim.v
hierarchy -check -top <top>
flatten: (unless -noflatten)
proc
flatten
tribuf -logic
deminout
coarse:
synth -run coarse
fine:
opt -fast -mux_ undef -undriven -fine
memory_ map
opt -undriven -fine
techmap -map +/techmap.v -map +/sf2/arith_ map.v
opt -fast
abc -dff -D 1 (only if -retime)
map_ ffs:
techmap -D NO_ LUT -map +/sf2/cells_ map.v
opt_ expr -mux_ undef
simplemap
map_ luts:
abc -lut 4
clean
map_ cells:
techmap -map +/sf2/cells_ map.v
clean
map_ iobs:
sf2_ iobs [-clkbuf] (unless -noiobs)
clean
check:
hierarchy -check
stat
check -noinit
edif:
write_ edif -gndvccy <file-name>
vlog:
write_ verilog <file-name>
json:
write_ json <file-name>
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2013-11-22 08:02:40 -06:00
\section { synth\_ xilinx -- synthesis for Xilinx FPGAs}
\label { cmd:synth_ xilinx}
\begin { lstlisting} [numbers=left,frame=single]
synth_ xilinx [options]
This command runs synthesis for Xilinx FPGAs. This command does not operate on
2015-02-09 05:05:02 -06:00
partly selected designs. At the moment this command creates netlists that are
compatible with 7-Series Xilinx devices.
2013-11-22 08:02:40 -06:00
-top <module>
2015-08-14 04:27:19 -05:00
use the specified module as top module
2013-11-22 08:02:40 -06:00
2020-04-11 11:36:51 -05:00
-family <family>
run synthesis for the specified Xilinx architecture
generate the synthesis netlist for the specified family.
supported values:
- xcup: Ultrascale Plus
- xcu: Ultrascale
- xc7: Series 7 (default)
- xc6s: Spartan 6
- xc6v: Virtex 6
- xc5v: Virtex 5 (EXPERIMENTAL)
- xc4v: Virtex 4 (EXPERIMENTAL)
- xc3sda: Spartan 3A DSP (EXPERIMENTAL)
- xc3sa: Spartan 3A (EXPERIMENTAL)
- xc3se: Spartan 3E (EXPERIMENTAL)
- xc3s: Spartan 3 (EXPERIMENTAL)
- xc2vp: Virtex 2 Pro (EXPERIMENTAL)
- xc2v: Virtex 2 (EXPERIMENTAL)
- xcve: Virtex E, Spartan 2E (EXPERIMENTAL)
- xcv: Virtex, Spartan 2 (EXPERIMENTAL)
2013-11-22 08:02:40 -06:00
-edif <file>
write the design to the specified edif file. writing of an output file
is omitted if this parameter is not specified.
2018-10-16 08:28:37 -05:00
-blif <file>
write the design to the specified BLIF file. writing of an output file
is omitted if this parameter is not specified.
-vpr
generate an output netlist (and BLIF file) suitable for VPR
(this feature is experimental and incomplete)
2020-04-11 11:36:51 -05:00
-ise
generate an output netlist suitable for ISE
-nobram
do not use block RAM cells in output netlist
-nolutram
do not use distributed RAM cells in output netlist
-nosrl
do not use distributed SRL cells in output netlist
-nocarry
do not use XORCY/MUXCY/CARRY4 cells in output netlist
-nowidelut
do not use MUXF[5-9] resources to implement LUTs larger than native for the target
-nodsp
do not use DSP48*s to implement multipliers and associated logic
-noiopad
disable I/O buffer insertion (useful for hierarchical or
out-of-context flows)
-noclkbuf
disable automatic clock buffer insertion
-uram
infer URAM288s for large memories (xcup only)
-widemux <int>
enable inference of hard multiplexer resources (MUXF[78]) for muxes at or
above this number of inputs (minimum value 2, recommended value >= 5).
default: 0 (no inference)
2013-11-22 08:02:40 -06:00
-run <from_ label>:<to_ label>
only run the commands between the labels (see below). an empty
from label is synonymous to 'begin', and empty to label is
synonymous to the end of the command list.
2015-02-09 05:05:02 -06:00
-flatten
flatten design before synthesis
2020-04-11 11:36:51 -05:00
-dff
run 'abc'/'abc9' with -dff option
2015-02-09 05:05:02 -06:00
-retime
2020-04-11 11:36:51 -05:00
run 'abc' with '-D 1' option to enable flip-flop retiming.
implies -dff.
-abc9
use new ABC9 flow (EXPERIMENTAL)
2015-02-09 05:05:02 -06:00
2013-11-22 08:02:40 -06:00
The following commands are executed by this synthesis command:
begin:
2020-04-11 11:36:51 -05:00
read_ verilog -lib -specify +/xilinx/cells_ sim.v
2016-11-02 13:25:28 -05:00
read_ verilog -lib +/xilinx/cells_ xtra.v
2020-04-11 11:36:51 -05:00
hierarchy -check -auto-top
2013-11-22 08:02:40 -06:00
2020-04-11 11:36:51 -05:00
prepare:
2013-11-22 08:02:40 -06:00
proc
2020-04-11 11:36:51 -05:00
flatten (with '-flatten')
tribuf -logic
deminout
opt_ expr
opt_ clean
check
opt
wreduce [-keepdc] (option for '-widemux')
peepopt
opt_ clean
muxpack ('-widemux' only)
pmux2shiftx (skip if '-nosrl' and '-widemux=0')
clean (skip if '-nosrl' and '-widemux=0')
map_ dsp: (skip if '-nodsp')
memory_ dff
techmap -map +/mul2dsp.v -map +/xilinx/{ family} _ dsp_ map.v { options}
select a:mul2dsp
setattr -unset mul2dsp
opt_ expr -fine
wreduce
select -clear
xilinx_ dsp -family <family>
chtype -set $ mul t: $ _ _ soft_ mul
2015-02-09 05:05:02 -06:00
coarse:
2020-04-11 11:36:51 -05:00
techmap -map +/cmp2lut.v -map +/cmp2lcu.v -D LUT_ WIDTH=[46]
alumacc
share
opt
fsm
opt -fast
memory -nomap
opt_ clean
2015-02-09 05:05:02 -06:00
2020-04-11 11:36:51 -05:00
map_ uram: (only if '-uram')
memory_ bram -rules +/xilinx/{ family} _ urams.txt
techmap -map +/xilinx/{ family} _ urams_ map.v
2013-11-22 08:02:40 -06:00
2020-04-11 11:36:51 -05:00
map_ bram: (skip if '-nobram')
memory_ bram -rules +/xilinx/{ family} _ brams.txt
techmap -map +/xilinx/{ family} _ brams_ map.v
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
map_ lutram: (skip if '-nolutram')
memory_ bram -rules +/xilinx/lut[46]_ lutrams.txt
techmap -map +/xilinx/lutrams_ map.v
map_ ffram:
simplemap t:$ dff t: $ adff t:$ mux
dff2dffs [-match-init] (-match-init for xc6s only)
2015-02-09 05:05:02 -06:00
opt -fast -full
memory_ map
2020-04-11 11:36:51 -05:00
fine:
dff2dffe -direct-match $ _ DFF _ * - direct - match $ _ _ DFFS_ *
muxcover <internal options> ('-widemux' only)
2015-02-09 05:05:02 -06:00
opt -full
2020-04-11 11:36:51 -05:00
xilinx_ srl -variable -minlen 3 (skip if '-nosrl')
techmap -map +/techmap.v -D LUT_ SIZE=[46] [-map +/xilinx/mux_ map.v] -map +/xilinx/arith_ map.v
2015-02-09 05:05:02 -06:00
opt -fast
2013-11-22 08:02:40 -06:00
2020-04-11 11:36:51 -05:00
map_ cells:
iopadmap -bits -outpad OBUF I:O -inpad IBUF O:I -toutpad $ _ _ XILINX _ TOUTPAD OE:I:O - tinoutpad $ _ _ XILINX_ TINOUTPAD OE:O:I:IO A:top (skip if '-noiopad')
techmap -map +/techmap.v -map +/xilinx/cells_ map.v
2013-11-22 08:02:40 -06:00
clean
2020-04-11 11:36:51 -05:00
map_ ffs:
techmap -map +/xilinx/{ family} _ ff_ map.v ('-abc9' only)
map_ luts:
opt_ expr -mux_ undef
abc -luts 2:2,3,6:5[,10,20] [-dff] [-D 1] (option for 'nowidelut', '-dff', '-retime')
clean
xilinx_ srl -fixed -minlen 3 (skip if '-nosrl')
techmap -map +/xilinx/lut_ map.v -map +/xilinx/cells_ map.v -map +/xilinx/{ family} _ ff_ map.v -D LUT_ WIDTH=[46]
xilinx_ dffopt [-lut4]
opt_ lut_ ins -tech xilinx
finalize:
clkbufmap -buf BUFG O:I (skip if '-noclkbuf')
extractinv -inv INV O:I (only if '-ise')
2013-11-22 08:02:40 -06:00
clean
2015-08-14 04:27:19 -05:00
check:
hierarchy -check
2020-04-11 11:36:51 -05:00
stat -tech xilinx
2015-08-14 04:27:19 -05:00
check -noinit
2020-04-11 11:36:51 -05:00
edif:
write_ edif -pvector bra
2018-10-16 08:28:37 -05:00
2020-04-11 11:36:51 -05:00
blif:
write_ blif
2013-11-22 08:02:40 -06:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { tcl -- execute a TCL script file}
\label { cmd:tcl}
\begin { lstlisting} [numbers=left,frame=single]
2020-04-11 11:36:51 -05:00
tcl <filename> [args]
2013-07-20 08:19:12 -05:00
This command executes the tcl commands in the specified file.
Use 'yosys cmd' to run the yosys command 'cmd' from tcl.
The tcl command 'yosys -import' can be used to import all yosys
2018-10-16 08:28:37 -05:00
commands directly as tcl commands to the tcl shell. Yosys commands
'proc' and 'rename' are wrapped to tcl commands 'procs' and 'renames'
in order to avoid a name collision with the built in commands.
2020-04-11 11:36:51 -05:00
If any arguments are specified, these arguments are provided to the script via
the standard $ argc and $ argv variables.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { techmap -- generic technology mapper}
2013-07-20 08:19:12 -05:00
\label { cmd:techmap}
\begin { lstlisting} [numbers=left,frame=single]
techmap [-map filename] [selection]
This pass implements a very simple technology mapper that replaces cells in
2015-08-14 03:56:05 -05:00
the design with implementations given in form of a Verilog or ilang source
2013-07-20 08:19:12 -05:00
file.
-map filename
the library of cell implementations to be used.
without this parameter a builtin library is used that
transforms the internal RTL cells to the internal gate
library.
2014-11-08 03:59:48 -06:00
-map %<design-name>
like -map above, but with an in-memory design instead of a file.
-extern
load the cell implementations as separate modules into the design
instead of inlining them.
-max_ iter <number>
2020-04-11 11:36:51 -05:00
only run the specified number of iterations on each module.
default: unlimited
2014-11-08 03:59:48 -06:00
-recursive
instead of the iterative breadth-first algorithm use a recursive
2015-08-14 03:56:05 -05:00
depth-first algorithm. both methods should yield equivalent results,
2014-11-08 03:59:48 -06:00
but may differ in performance.
-autoproc
Automatically call "proc" on implementations that contain processes.
2020-04-11 11:36:51 -05:00
-wb
Ignore the 'whitebox' attribute on cell implementations.
2014-11-08 03:59:48 -06:00
-assert
this option will cause techmap to exit with an error if it can't map
a selected cell. only cell types that end on an underscore are accepted
as final cell types by this mode.
2013-12-28 05:14:47 -06:00
-D <define>, -I <incdir>
2015-08-14 03:56:05 -05:00
this options are passed as-is to the Verilog frontend for loading the
map file. Note that the Verilog frontend is also called with the
2018-10-16 08:28:37 -05:00
'-nooverwrite' option set.
2013-12-28 05:14:47 -06:00
2013-11-23 13:09:47 -06:00
When a module in the map file has the 'techmap_ celltype' attribute set, it will
2013-12-28 05:14:47 -06:00
match cells with a type that match the text value of this attribute. Otherwise
the module name will be used to match the cell.
When a module in the map file has the 'techmap_ simplemap' attribute set, techmap
will use 'simplemap' (see 'help simplemap') to map cells matching the module.
2013-11-23 13:09:47 -06:00
2014-11-08 03:59:48 -06:00
When a module in the map file has the 'techmap_ maccmap' attribute set, techmap
will use 'maccmap' (see 'help maccmap') to map cells matching the module.
When a module in the map file has the 'techmap_ wrap' attribute set, techmap
will create a wrapper for the cell and then run the command string that the
attribute is set to on the wrapper module.
2020-04-11 11:36:51 -05:00
When a port on a module in the map file has the 'techmap_ autopurge' attribute
set, and that port is not connected in the instantiation that is mapped, then
then a cell port connected only to such wires will be omitted in the mapped
version of the circuit.
2013-11-23 13:09:47 -06:00
All wires in the modules from the map file matching the pattern _ TECHMAP_ *
or *._ TECHMAP_ * are special wires that are used to pass instructions from
2013-12-28 05:14:47 -06:00
the mapping module to the techmap command. At the moment the following special
2013-11-23 13:09:47 -06:00
wires are supported:
_ TECHMAP_ FAIL_
When this wire is set to a non-zero constant value, techmap will not
use this module and instead try the next module with a matching
'techmap_ celltype' attribute.
When such a wire exists but does not have a constant value after all
_ TECHMAP_ DO_ * commands have been executed, an error is generated.
_ TECHMAP_ DO_ *
This wires are evaluated in alphabetical order. The constant text value
of this wire is a yosys command (or sequence of commands) that is run
by techmap on the module. A common use case is to run 'proc' on modules
that are written using always-statements.
When such a wire has a non-constant value at the time it is to be
evaluated, an error is produced. That means it is possible for such a
wire to start out as non-constant and evaluate to a constant value
during processing of other _ TECHMAP_ DO_ * commands.
2013-07-20 08:19:12 -05:00
2014-11-08 03:59:48 -06:00
A _ TECHMAP_ DO_ * command may start with the special token 'CONSTMAP; '.
in this case techmap will create a copy for each distinct configuration
of constant inputs and shorted inputs at this point and import the
constant and connected bits into the map module. All further commands
are executed in this copy. This is a very convenient way of creating
2015-08-14 03:56:05 -05:00
optimized specializations of techmap modules without using the special
2014-11-08 03:59:48 -06:00
parameters described below.
A _ TECHMAP_ DO_ * command may start with the special token 'RECURSION; '.
then techmap will recursively replace the cells in the module with their
implementation. This is not affected by the -max_ iter option.
It is possible to combine both prefixes to 'RECURSION; CONSTMAP; '.
2020-04-11 11:36:51 -05:00
_ TECHMAP_ REMOVEINIT_ <port-name>_
When this wire is set to a constant value, the init attribute of the wire(s)
connected to this port will be consumed. This wire must have the same
width as the given port, and for every bit that is set to 1 in the value,
the corresponding init attribute bit will be changed to 1'bx. If all
bits of an init attribute are left as x, it will be removed.
2013-12-28 05:14:47 -06:00
In addition to this special wires, techmap also supports special parameters in
modules in the map file:
_ TECHMAP_ CELLTYPE_
When a parameter with this name exists, it will be set to the type name
of the cell that matches the module.
2014-11-08 03:59:48 -06:00
_ TECHMAP_ CONSTMSK_ <port-name>_
_ TECHMAP_ CONSTVAL_ <port-name>_
When this pair of parameters is available in a module for a port, then
former has a 1-bit for each constant input bit and the latter has the
value for this bit. The unused bits of the latter are set to undef (x).
2020-04-11 11:36:51 -05:00
_ TECHMAP_ WIREINIT_ <port-name>_
When a parameter with this name exists, it will be set to the initial
value of the wire(s) connected to the given port, as specified by the init
attribute. If the attribute doesn't exist, x will be filled for the
missing bits. To remove the init attribute bits used, use the
_ TECHMAP_ REMOVEINIT_ *_ wires.
2014-11-08 03:59:48 -06:00
_ TECHMAP_ BITS_ CONNMAP_
_ TECHMAP_ CONNMAP_ <port-name>_
For an N-bit port, the _ TECHMAP_ CONNMAP_ <port-name>_ parameter, if it
exists, will be set to an N*_ TECHMAP_ BITS_ CONNMAP_ bit vector containing
N words (of _ TECHMAP_ BITS_ CONNMAP_ bits each) that assign each single
bit driver a unique id. The values 0-3 are reserved for 0, 1, x, and z.
This can be used to detect shorted inputs.
2013-07-20 08:19:12 -05:00
When a module in the map file has a parameter where the according cell in the
design has a port, the module from the map file is only used if the port in
the design is connected to a constant value. The parameter is then set to the
constant value.
2014-11-08 03:59:48 -06:00
A cell with the name _ TECHMAP_ REPLACE_ in the map file will inherit the name
2018-10-16 08:28:37 -05:00
and attributes of the cell that is being replaced.
2020-04-11 11:36:51 -05:00
A cell with a name of the form `_ TECHMAP_ REPLACE_ .<suffix>` in the map file will
be named thus but with the `_ TECHMAP_ REPLACE_ ' prefix substituted with the name
of the cell being replaced.
Similarly, a wire named in the form `_ TECHMAP_ REPLACE_ .<suffix>` will cause a
new wire alias to be created and named as above but with the `_ TECHMAP_ REPLACE_ '
prefix also substituted.
2014-11-08 03:59:48 -06:00
2013-07-20 08:19:12 -05:00
See 'help extract' for a pass that does the opposite thing.
See 'help flatten' for a pass that does flatten the design (which is
2015-08-14 03:56:05 -05:00
essentially techmap but using the design itself as map library).
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { tee -- redirect command output to file}
\label { cmd:tee}
\begin { lstlisting} [numbers=left,frame=single]
tee [-q] [-o logfile|-a logfile] cmd
Execute the specified command, optionally writing the commands output to the
specified logfile(s).
-q
2020-04-11 11:36:51 -05:00
Do not print output to the normal destination (console and/or log file).
2014-11-08 03:59:48 -06:00
-o logfile
Write output to this file, truncate if exists.
-a logfile
Write output to this file, append if exists.
2016-11-02 13:25:28 -05:00
+INT, -INT
2020-04-11 11:36:51 -05:00
Add/subtract INT from the -v setting for this command.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { test\_ abcloop -- automatically test handling of loops in abc command}
\label { cmd:test_ abcloop}
\begin { lstlisting} [numbers=left,frame=single]
test_ abcloop [options]
Test handling of logic loops in ABC.
-n { integer}
create this number of circuits and test them (default = 100).
-s { positive_ integer}
use this value as rng seed value (default = unix time).
\end { lstlisting}
\section { test\_ autotb -- generate simple test benches}
\label { cmd:test_ autotb}
2013-07-20 08:19:12 -05:00
\begin { lstlisting} [numbers=left,frame=single]
2014-11-08 03:59:48 -06:00
test_ autotb [options] [filename]
2013-07-20 08:19:12 -05:00
2015-08-14 03:56:05 -05:00
Automatically create primitive Verilog test benches for all modules in the
2013-07-20 08:19:12 -05:00
design. The generated testbenches toggle the input pins of the module in
a semi-random manner and dumps the resulting output signals.
This can be used to check the synthesis results for simple circuits by
comparing the testbench output for the input files and the synthesis results.
The backend automatically detects clock signals. Additionally a signal can
be forced to be interpreted as clock signal by setting the attribute
'gentb_ clock' on the signal.
The attribute 'gentb_ constant' can be used to force a signal to a constant
value after initialization. This can e.g. be used to force a reset signal
low in order to explore more inner states in a state machine.
2014-11-08 03:59:48 -06:00
2020-04-11 11:36:51 -05:00
The attribute 'gentb_ skip' can be attached to modules to suppress testbench
generation.
2014-11-08 03:59:48 -06:00
-n <int>
2015-08-14 03:56:05 -05:00
number of iterations the test bench should run (default = 1000)
2020-04-11 11:36:51 -05:00
-seed <int>
seed used for pseudo-random number generation (default = 0).
a value of 0 will cause an arbitrary seed to be chosen, based on
the current system time.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { test\_ cell -- automatically test the implementation of a cell type}
\label { cmd:test_ cell}
\begin { lstlisting} [numbers=left,frame=single]
test_ cell [options] { cell-types}
Tests the internal implementation of the given cell type (for example '$ add' )
by comparing SAT solver, EVAL and TECHMAP implementations of the cell types..
Run with 'all' instead of a cell type to run the test on all supported
2015-02-09 05:05:02 -06:00
cell types. Use for example 'all /$ add' for all cell types except $ add.
2014-11-08 03:59:48 -06:00
-n { integer}
create this number of cell instances and test them (default = 100).
-s { positive_ integer}
use this value as rng seed value (default = unix time).
-f { ilang_ file}
don't generate circuits. instead load the specified ilang file.
2015-02-09 05:05:02 -06:00
-w { filename_ prefix}
don't test anything. just generate the circuits and write them
to ilang files with the specified prefix
2014-11-08 03:59:48 -06:00
-map { filename}
pass this option to techmap.
-simlib
2016-11-02 13:25:28 -05:00
use "techmap -D SIMLIB_ NOCHECKS -map +/simlib.v -max_ iter 2 -autoproc"
2014-11-08 03:59:48 -06:00
2015-08-14 04:27:19 -05:00
-aigmap
instead of calling "techmap", call "aigmap"
2015-02-09 05:05:02 -06:00
-muxdiv
when creating test benches with dividers, create an additional mux
to mask out the division-by-zero case
2014-11-08 03:59:48 -06:00
-script { script_ file}
instead of calling "techmap", call "script { script_ file} ".
-const
set some input bits to random constant values
-nosat
do not check SAT model or run SAT equivalence checking
2016-02-14 04:02:11 -06:00
-noeval
do not check const-eval models
2016-11-02 13:25:28 -05:00
-edges
test cell edges db creator against sat-based implementation
2014-11-08 03:59:48 -06:00
-v
print additional debug information to the console
-vlog { filename}
2015-08-14 03:56:05 -05:00
create a Verilog test bench to test simlib and write_ verilog
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { test\_ pmgen -- test pass for pmgen}
\label { cmd:test_ pmgen}
\begin { lstlisting} [numbers=left,frame=single]
test_ pmgen -reduce_ chain [options] [selection]
Demo for recursive pmgen patterns. Map chains of AND/OR/XOR to $ reduce _ * .
test_ pmgen -reduce_ tree [options] [selection]
Demo for recursive pmgen patterns. Map trees of AND/OR/XOR to $ reduce _ * .
test_ pmgen -eqpmux [options] [selection]
Demo for recursive pmgen patterns. Optimize EQ/NE/PMUX circuits.
test_ pmgen -generate [options] <pattern_ name>
Create modules that match the specified pattern.
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { torder -- print cells in topological order}
\label { cmd:torder}
\begin { lstlisting} [numbers=left,frame=single]
torder [options] [selection]
This command prints the selected cells in topological order.
-stop <cell_ type> <cell_ port>
do not use the specified cell port in topological sorting
-noautostop
by default Q outputs of internal FF cells and memory read port outputs
are not used in topological sorting. this option deactivates that.
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { trace -- redirect command output to file}
\label { cmd:trace}
\begin { lstlisting} [numbers=left,frame=single]
trace cmd
Execute the specified command, logging all changes the command performs on
the design in real time.
\end { lstlisting}
2016-02-14 04:02:11 -06:00
\section { tribuf -- infer tri-state buffers}
\label { cmd:tribuf}
\begin { lstlisting} [numbers=left,frame=single]
tribuf [options] [selection]
This pass transforms $ mux cells with 'z' inputs to tristate buffers.
-merge
merge multiple tri-state buffers driving the same net
into a single buffer.
-logic
convert tri-state buffers that do not drive output ports
to non-tristate logic. this option implies -merge.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { uniquify -- create unique copies of modules}
\label { cmd:uniquify}
\begin { lstlisting} [numbers=left,frame=single]
uniquify [selection]
By default, a module that is instantiated by several other modules is only
kept once in the design. This preserves the original modularity of the design
and reduces the overall size of the design in memory. But it prevents certain
optimizations and other operations on the design. This pass creates unique
modules for all selected cells. The created modules are marked with the
'unique' attribute.
This commands only operates on modules that by themself have the 'unique'
attribute set (the 'top' module is unique implicitly).
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { verific -- load Verilog and VHDL designs using Verific}
\label { cmd:verific}
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
verific { -vlog95|-vlog2k|-sv2005|-sv2009|-sv2012|-sv} <verilog-file>..
2014-11-08 03:59:48 -06:00
Load the specified Verilog/SystemVerilog files into Verific.
2018-10-16 08:28:37 -05:00
All files specified in one call to this command are one compilation unit.
Files passed to different calls to this command are treated as belonging to
different compilation units.
Additional -D<macro>[=<value>] options may be added after the option indicating
the language version (and before file names) to set additional verilog defines.
The macros SYNTHESIS and VERIFIC are defined implicitly.
verific -formal <verilog-file>..
Like -sv, but define FORMAL instead of SYNTHESIS.
2014-11-08 03:59:48 -06:00
2018-10-16 08:28:37 -05:00
verific { -vhdl87|-vhdl93|-vhdl2k|-vhdl2008|-vhdl} <vhdl-file>..
2014-11-08 03:59:48 -06:00
Load the specified VHDL files into Verific.
2020-04-11 11:36:51 -05:00
verific [-work <libname>] { -sv|-vhdl|...} <hdl-file>
2018-10-16 08:28:37 -05:00
Load the specified Verilog/SystemVerilog/VHDL file into the specified library.
(default library when -work is not present: "work")
2020-04-11 11:36:51 -05:00
verific [-L <libname>] { -sv|-vhdl|...} <hdl-file>
Look up external definitions in the specified library.
(-L may be used more than once)
2018-10-16 08:28:37 -05:00
verific -vlog-incdir <directory>..
Add Verilog include directories.
verific -vlog-libdir <directory>..
Add Verilog library directories. Verific will search in this directories to
find undefined modules.
verific -vlog-define <macro>[=<value>]..
Add Verilog defines.
verific -vlog-undef <macro>..
Remove Verilog defines previously set with -vlog-define.
verific -set-error <msg_ id>..
verific -set-warning <msg_ id>..
verific -set-info <msg_ id>..
verific -set-ignore <msg_ id>..
Set message severity. <msg_ id> is the string in square brackets when a message
is printed, such as VERI-1209.
verific -import [options] <top-module>..
2014-11-08 03:59:48 -06:00
2015-08-14 03:56:05 -05:00
Elaborate the design for the specified top modules, import to Yosys and
2018-10-16 08:28:37 -05:00
reset the internal state of Verific.
Import options:
-all
Elaborate all modules, not just the hierarchy below the given top
modules. With this option the list of modules to import is optional.
-gates
Create a gate-level netlist.
-flatten
Flatten the design in Verific before importing.
-extnets
Resolve references to external nets by adding module ports as needed.
-autocover
Generate automatic cover statements for all asserts
2020-04-11 11:36:51 -05:00
-fullinit
Keep all register initializations, even those for non-FF registers.
-chparam name value
Elaborate the specified top modules (all modules when -all given) using
this parameter value. Modules on which this parameter does not exist will
cause Verific to produce a VERI-1928 or VHDL-1676 message. This option
can be specified multiple times to override multiple parameters.
String values must be passed in double quotes (").
2018-10-16 08:28:37 -05:00
-v, -vv
Verbose log messages. (-vv is even more verbose than -v.)
The following additional import options are useful for debugging the Verific
bindings (for Yosys and/or Verific developers):
-k
Keep going after an unsupported verific primitive is found. The
unsupported primitive is added as blockbox module to the design.
This will also add all SVA related cells to the design parallel to
the checker logic inferred by it.
-V
Import Verific netlist as-is without translating to Yosys cell types.
-nosva
Ignore SVA properties, do not infer checker logic.
-L <int>
Maximum number of ctrl bits for SVA checker FSMs (default=16).
-n
Keep all Verific names on instances and nets. By default only
user-declared names are preserved.
-d <dump_ file>
Dump the Verific netlist as a verilog file.
2014-11-08 03:59:48 -06:00
2020-04-11 11:36:51 -05:00
Use Symbiotic EDA Suite if you need Yosys+Verifc.
https://www.symbioticeda.com/seda-suite
Contact office@symbioticeda.com for free evaluation
binaries of Symbiotic EDA Suite.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
\section { verilog\_ defaults -- set default options for read\_ verilog}
\label { cmd:verilog_ defaults}
\begin { lstlisting} [numbers=left,frame=single]
verilog_ defaults -add [options]
2015-08-14 03:56:05 -05:00
Add the specified options to the list of default options to read_ verilog.
2014-11-08 03:59:48 -06:00
verilog_ defaults -clear
2016-11-02 13:25:28 -05:00
2015-08-14 03:56:05 -05:00
Clear the list of Verilog default options.
2014-11-08 03:59:48 -06:00
2016-11-02 13:25:28 -05:00
verilog_ defaults -push
verilog_ defaults -pop
2014-11-08 03:59:48 -06:00
Push or pop the list of default options to a stack. Note that -push does
not imply -clear.
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { verilog\_ defines -- define and undefine verilog defines}
\label { cmd:verilog_ defines}
2014-11-08 03:59:48 -06:00
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
verilog_ defines [options]
2014-11-08 03:59:48 -06:00
2018-10-16 08:28:37 -05:00
Define and undefine verilog preprocessor macros.
2014-11-08 03:59:48 -06:00
2018-10-16 08:28:37 -05:00
-Dname[=definition]
define the preprocessor symbol 'name' and set its optional value
'definition'
2014-11-08 03:59:48 -06:00
2018-10-16 08:28:37 -05:00
-Uname[=definition]
undefine the preprocessor symbol 'name'
2020-04-11 11:36:51 -05:00
-reset
clear list of defined preprocessor symbols
-list
list currently defined preprocessor symbols
\end { lstlisting}
\section { wbflip -- flip the whitebox attribute}
\label { cmd:wbflip}
\begin { lstlisting} [numbers=left,frame=single]
wbflip [selection]
Flip the whitebox attribute on selected cells. I.e. if it's set, unset it, and
vice-versa. Blackbox cells are not effected by this command.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { wreduce -- reduce the word size of operations if possible}
2014-11-08 03:59:48 -06:00
\label { cmd:wreduce}
\begin { lstlisting} [numbers=left,frame=single]
wreduce [options] [selection]
This command reduces the word size of operations. For example it will replace
the 32 bit adders in the following code with adders of more appropriate widths:
module test(input [3:0] a, b, c, output [7:0] y);
assign y = a + b + c + 1;
endmodule
2016-11-02 13:25:28 -05:00
Options:
-memx
Do not change the width of memory address ports. Use this options in
flows that use the 'memory_ memx' pass.
2020-04-11 11:36:51 -05:00
-keepdc
Do not optimize explicit don't-care values.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { write\_ aiger -- write design to AIGER file}
\label { cmd:write_ aiger}
\begin { lstlisting} [numbers=left,frame=single]
write_ aiger [options] [filename]
Write the current design to an AIGER file. The design must be flattened and
must not contain any cell types except $ _ AND _ , $ _ NOT_ , simple FF types,
$ assert and $ assume cells, and $ initstate cells.
$ assert and $ assume cells are converted to AIGER bad state properties and
invariant constraints.
-ascii
2020-04-11 11:36:51 -05:00
write ASCII version of AIGER format
2018-10-16 08:28:37 -05:00
-zinit
convert FFs to zero-initialized FFs, adding additional inputs for
uninitialized FFs.
-miter
design outputs are AIGER bad state properties
-symbols
include a symbol table in the generated AIGER file
-map <filename>
write an extra file with port and latch symbols
-vmap <filename>
like -map, but more verbose
2020-04-11 11:36:51 -05:00
-I, -O, -B, -L
If the design contains no input/output/assert/flip-flop then create one
dummy input/output/bad_ state-pin or latch to make the tools reading the
AIGER file happy.
2018-10-16 08:28:37 -05:00
\end { lstlisting}
2013-11-22 08:02:40 -06:00
\section { write\_ blif -- write design to BLIF file}
\label { cmd:write_ blif}
\begin { lstlisting} [numbers=left,frame=single]
write_ blif [options] [filename]
Write the current design to an BLIF file.
-top top_ module
set the specified module as design top module
-buf <cell-type> <in-port> <out-port>
use cells of type <cell-type> with the specified port names for buffers
2015-02-09 05:05:02 -06:00
-unbuf <cell-type> <in-port> <out-port>
replace buffer cells with the specified name and port names with
a .names statement that models a buffer
2013-11-22 08:02:40 -06:00
-true <cell-type> <out-port>
-false <cell-type> <out-port>
2015-02-09 05:05:02 -06:00
-undef <cell-type> <out-port>
use the specified cell types to drive nets that are constant 1, 0, or
undefined. when '-' is used as <cell-type>, then <out-port> specifies
the wire name to be used for the constant signal and no cell driving
2016-11-02 13:25:28 -05:00
that wire is generated. when '+' is used as <cell-type>, then <out-port>
specifies the wire name to be used for the constant signal and a .names
statement is generated to drive the wire.
-noalias
if a net name is aliasing another net name, then by default a net
without fanout is created that is driven by the other net. This option
suppresses the generation of this nets without fanout.
2013-11-22 08:02:40 -06:00
2014-09-06 01:47:06 -05:00
The following options can be useful when the generated file is not going to be
2013-11-22 08:02:40 -06:00
read by a BLIF parser but a custom tool. It is recommended to not name the output
file *.blif when any of this options is used.
2014-11-08 03:59:48 -06:00
-icells
2013-11-22 08:02:40 -06:00
do not translate Yosys's internal gates to generic BLIF logic
2014-11-08 03:59:48 -06:00
functions. Instead create .subckt or .gate lines for all cells.
-gates
print .gate instead of .subckt lines for all cells that are not
instantiations of other modules from this design.
2013-11-22 08:02:40 -06:00
-conn
do not generate buffers for connected wires. instead use the
non-standard .conn statement.
2015-08-14 04:27:19 -05:00
-attr
use the non-standard .attr statement to write cell attributes
2014-11-08 03:59:48 -06:00
-param
2015-08-14 04:27:19 -05:00
use the non-standard .param statement to write cell parameters
2014-11-08 03:59:48 -06:00
2016-02-14 04:02:11 -06:00
-cname
use the non-standard .cname statement to write cell names
2018-10-16 08:28:37 -05:00
-iname, -iattr
enable -cname and -attr functionality for .names statements
(the .cname and .attr statements will be included in the BLIF
output after the truth table for the .names statement)
2015-02-09 05:05:02 -06:00
-blackbox
write blackbox cells with .blackbox statement.
2013-11-22 08:02:40 -06:00
-impltf
2015-02-09 05:05:02 -06:00
do not write definitions for the $ true, $ false and $ undef wires.
2013-11-22 08:02:40 -06:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { write\_ btor -- write design to BTOR file}
\label { cmd:write_ btor}
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
write_ btor [options] [filename]
Write a BTOR description of the current design.
-v
Add comments and indentation to BTOR output file
2014-11-08 03:59:48 -06:00
2018-10-16 08:28:37 -05:00
-s
Output only a single bad property for all asserts
2020-04-11 11:36:51 -05:00
-c
Output cover properties using 'bad' statements instead of asserts
-i <filename>
Create additional info file with auxiliary information
\end { lstlisting}
\section { write\_ cxxrtl -- convert design to C++ RTL simulation}
\label { cmd:write_ cxxrtl}
\begin { lstlisting} [numbers=left,frame=single]
write_ cxxrtl [options] [filename]
Write C++ code for simulating the design. The generated code requires a driver;
the following simple driver is provided as an example:
#include "top.cc"
int main() {
cxxrtl_ design::p_ top top;
while (1) {
top.p_ clk.next = value<1> { 1u} ;
top.step();
top.p_ clk.next = value<1> { 0u} ;
top.step();
}
}
The following options are supported by this backend:
-O <level>
set the optimization level. the default is -O5. higher optimization
levels dramatically decrease compile and run time, and highest level
possible for a design should be used.
-O0
no optimization.
-O1
elide internal wires if possible.
-O2
like -O1, and localize internal wires if possible.
-O3
like -O2, and elide public wires not marked (*keep*) if possible.
-O4
like -O3, and localize public wires not marked (*keep*) if possible.
-O5
like -O4, and run `splitnets -driver; opt_ clean -purge` first.
2014-11-08 03:59:48 -06:00
\end { lstlisting}
2013-09-15 04:41:05 -05:00
\section { write\_ edif -- write design to EDIF netlist file}
\label { cmd:write_ edif}
\begin { lstlisting} [numbers=left,frame=single]
write_ edif [options] [filename]
Write the current design to an EDIF netlist file.
-top top_ module
set the specified module as design top module
2013-11-22 08:02:40 -06:00
2016-11-02 13:25:28 -05:00
-nogndvcc
do not create "GND" and "VCC" cells. (this will produce an error
if the design contains constant nets. use "hilomap" to map to custom
constant drivers first)
2020-04-11 11:36:51 -05:00
-gndvccy
create "GND" and "VCC" cells with "Y" outputs. (the default is "G"
for "GND" and "P" for "VCC".)
-attrprop
create EDIF properties for cell attributes
2018-10-16 08:28:37 -05:00
-pvector { par|bra|ang}
sets the delimiting character for module port rename clauses to
parentheses, square brackets, or angle brackets.
2013-11-22 08:02:40 -06:00
Unfortunately there are different "flavors" of the EDIF file format. This
command generates EDIF files for the Xilinx place& route tools. It might be
necessary to make small modifications to this command when a different tool
is targeted.
2013-09-15 04:41:05 -05:00
\end { lstlisting}
2014-11-08 03:59:48 -06:00
\section { write\_ file -- write a text to a file}
\label { cmd:write_ file}
\begin { lstlisting} [numbers=left,frame=single]
write_ file [options] output_ file [input_ file]
2015-08-14 03:56:05 -05:00
Write the text from the input file to the output file.
2014-11-08 03:59:48 -06:00
-a
Append to output file (instead of overwriting)
Inside a script the input file can also can a here-document:
write_ file hello.txt <<EOT
Hello World!
EOT
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { write\_ firrtl -- write design to a FIRRTL file}
\label { cmd:write_ firrtl}
\begin { lstlisting} [numbers=left,frame=single]
write_ firrtl [options] [filename]
Write a FIRRTL netlist of the current design.
2020-04-11 11:36:51 -05:00
The following commands are executed by this command:
pmuxtree
2018-10-16 08:28:37 -05:00
\end { lstlisting}
2013-07-20 08:19:12 -05:00
\section { write\_ ilang -- write design to ilang file}
\label { cmd:write_ ilang}
\begin { lstlisting} [numbers=left,frame=single]
write_ ilang [filename]
Write the current design to an 'ilang' file. (ilang is a text representation
of a design in yosys's internal format.)
2013-09-15 04:41:05 -05:00
-selected
only write selected parts of the design.
2013-07-20 08:19:12 -05:00
\end { lstlisting}
\section { write\_ intersynth -- write design to InterSynth netlist file}
\label { cmd:write_ intersynth}
\begin { lstlisting} [numbers=left,frame=single]
write_ intersynth [options] [filename]
Write the current design to an 'intersynth' netlist file. InterSynth is
a tool for Coarse-Grain Example-Driven Interconnect Synthesis.
-notypes
do not generate celltypes and conntypes commands. i.e. just output
the netlists. this is used for postsilicon synthesis.
-lib <verilog_ or_ ilang_ file>
Use the specified library file for determining whether cell ports are
inputs or outputs. This option can be used multiple times to specify
more than one library.
2013-09-15 04:41:05 -05:00
-selected
only write selected modules. modules must be selected entirely or
not at all.
2013-07-20 08:19:12 -05:00
http://www.clifford.at/intersynth/
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { write\_ json -- write design to a JSON file}
\label { cmd:write_ json}
\begin { lstlisting} [numbers=left,frame=single]
write_ json [options] [filename]
Write a JSON netlist of the current design.
-aig
include AIG models for the different gate types
2020-04-11 11:36:51 -05:00
-compat-int
emit 32-bit or smaller fully-defined parameter values directly
as JSON numbers (for compatibility with old parsers)
2015-08-14 04:27:19 -05:00
The general syntax of the JSON output created by this command is as follows:
{
"modules": {
<module_ name>: {
"ports": {
<port_ name>: <port_ details>,
...
} ,
"cells": {
<cell_ name>: <cell_ details>,
...
} ,
"netnames": {
<net_ name>: <net_ details>,
...
}
}
} ,
"models": {
...
} ,
}
Where <port_ details> is:
{
"direction": <"input" | "output" | "inout">,
"bits": <bit_ vector>
}
And <cell_ details> is:
{
"hide_ name": <1 | 0>,
"type": <cell_ type>,
"parameters": {
<parameter_ name>: <parameter_ value>,
...
} ,
"attributes": {
<attribute_ name>: <attribute_ value>,
...
} ,
"port_ directions": {
<port_ name>: <"input" | "output" | "inout">,
...
} ,
"connections": {
<port_ name>: <bit_ vector>,
...
} ,
}
And <net_ details> is:
{
"hide_ name": <1 | 0>,
"bits": <bit_ vector>
}
The "hide_ name" fields are set to 1 when the name of this cell or net is
automatically created and is likely not of interest for a regular user.
The "port_ directions" section is only included for cells for which the
interface is known.
Module and cell ports and nets can be single bit wide or vectors of multiple
bits. Each individual signal bit is assigned a unique integer. The <bit_ vector>
values referenced above are vectors of this integers. Signal bits that are
2020-04-11 11:36:51 -05:00
connected to a constant driver are denoted as string "0", "1", "x", or
"z" instead of a number.
2015-08-14 04:27:19 -05:00
2020-04-11 11:36:51 -05:00
Bit vectors (including integers) are written as string holding the binaryrepresentation of the value. Strings are written as strings, with an appendedblank in cases of strings of the form /[01xz]* */.
2018-10-16 08:28:37 -05:00
2015-08-14 15:23:01 -05:00
For example the following Verilog code:
2015-08-14 04:27:19 -05:00
module test(input x, y);
(* keep *) foo #(.P(42), .Q(1337))
foo_ inst (.A({ x, y} ), .B({ y, x} ), .C({ 4'd10, { 4{ x} } } ));
endmodule
Translates to the following JSON output:
{
"modules": {
"test": {
"ports": {
"x": {
"direction": "input",
"bits": [ 2 ]
} ,
"y": {
"direction": "input",
"bits": [ 3 ]
}
} ,
"cells": {
"foo_ inst": {
"hide_ name": 0,
"type": "foo",
"parameters": {
"Q": 1337,
"P": 42
} ,
"attributes": {
"keep": 1,
"src": "test.v:2"
} ,
"connections": {
"C": [ 2, 2, 2, 2, "0", "1", "0", "1" ],
"B": [ 2, 3 ],
"A": [ 3, 2 ]
}
}
} ,
"netnames": {
"y": {
"hide_ name": 0,
"bits": [ 3 ],
"attributes": {
"src": "test.v:1"
}
} ,
"x": {
"hide_ name": 0,
"bits": [ 2 ],
"attributes": {
"src": "test.v:1"
}
}
}
}
}
}
The models are given as And-Inverter-Graphs (AIGs) in the following form:
"models": {
<model_ name>: [
/* 0 */ [ <node-spec> ],
/* 1 */ [ <node-spec> ],
/* 2 */ [ <node-spec> ],
...
],
...
} ,
The following node-types may be used:
[ "port", <portname>, <bitindex>, <out-list> ]
- the value of the specified input port bit
[ "nport", <portname>, <bitindex>, <out-list> ]
- the inverted value of the specified input port bit
[ "and", <node-index>, <node-index>, <out-list> ]
2016-02-28 16:14:01 -06:00
- the ANDed value of the specified nodes
2015-08-14 04:27:19 -05:00
[ "nand", <node-index>, <node-index>, <out-list> ]
2016-02-28 16:14:01 -06:00
- the inverted ANDed value of the specified nodes
2015-08-14 04:27:19 -05:00
[ "true", <out-list> ]
- the constant value 1
[ "false", <out-list> ]
- the constant value 0
All nodes appear in topological order. I.e. only nodes with smaller indices
are referenced by "and" and "nand" nodes.
The optional <out-list> at the end of a node specification is a list of
output portname and bitindex pairs, specifying the outputs driven by this node.
For example, the following is the model for a 3-input 3-output $ reduce _ and cell
inferred by the following code:
module test(input [2:0] in, output [2:0] out);
assign in = & out;
endmodule
"$ reduce _ and: 3 U: 3 ": [
/* 0 */ [ "port", "A", 0 ],
/* 1 */ [ "port", "A", 1 ],
/* 2 */ [ "and", 0, 1 ],
/* 3 */ [ "port", "A", 2 ],
/* 4 */ [ "and", 2, 3, "Y", 0 ],
/* 5 */ [ "false", "Y", 1, "Y", 2 ]
]
Future version of Yosys might add support for additional fields in the JSON
2016-02-28 16:14:01 -06:00
format. A program processing this format must ignore all unknown fields.
2015-08-14 04:27:19 -05:00
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { write\_ simplec -- convert design to simple C code}
\label { cmd:write_ simplec}
2015-02-09 05:05:02 -06:00
\begin { lstlisting} [numbers=left,frame=single]
2018-10-16 08:28:37 -05:00
write_ simplec [options] [filename]
2015-02-09 05:05:02 -06:00
2020-04-11 11:36:51 -05:00
Write simple C code for simulating the design. The C code written can be used to
2018-10-16 08:28:37 -05:00
simulate the design in a C environment, but the purpose of this command is to
generate code that works well with C-based formal verification.
2015-02-09 05:05:02 -06:00
2018-10-16 08:28:37 -05:00
-verbose
this will print the recursive walk used to export the modules.
2015-02-09 05:05:02 -06:00
2018-10-16 08:28:37 -05:00
-i8, -i16, -i32, -i64
set the maximum integer bit width to use in the generated code.
2015-02-09 05:05:02 -06:00
2018-10-16 08:28:37 -05:00
THIS COMMAND IS UNDER CONSTRUCTION
\end { lstlisting}
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
\section { write\_ smt2 -- write design to SMT-LIBv2 file}
\label { cmd:write_ smt2}
\begin { lstlisting} [numbers=left,frame=single]
write_ smt2 [options] [filename]
2015-08-14 04:27:19 -05:00
2018-10-16 08:28:37 -05:00
Write a SMT-LIBv2 [1] description of the current design. For a module with name
'<mod>' this will declare the sort '<mod>_ s' (state of the module) and will
define and declare functions operating on that state.
The following SMT2 functions are generated for a module with name '<mod>'.
Some declarations/definitions are printed with a special comment. A prover
using the SMT2 files can use those comments to collect all relevant metadata
about the design.
; yosys-smt2-module <mod>
(declare-sort |<mod>_ s| 0)
The sort representing a state of module <mod>.
(define-fun |<mod>_ h| ((state |<mod>_ s|)) Bool (...))
This function must be asserted for each state to establish the
design hierarchy.
; yosys-smt2-input <wirename> <width>
; yosys-smt2-output <wirename> <width>
; yosys-smt2-register <wirename> <width>
; yosys-smt2-wire <wirename> <width>
(define-fun |<mod>_ n <wirename>| (|<mod>_ s|) (_ BitVec <width>))
(define-fun |<mod>_ n <wirename>| (|<mod>_ s|) Bool)
For each port, register, and wire with the 'keep' attribute set an
accessor function is generated. Single-bit wires are returned as Bool,
multi-bit wires as BitVec.
; yosys-smt2-cell <submod> <instancename>
(declare-fun |<mod>_ h <instancename>| (|<mod>_ s|) |<submod>_ s|)
There is a function like that for each hierarchical instance. It
returns the sort that represents the state of the sub-module that
implements the instance.
(declare-fun |<mod>_ is| (|<mod>_ s|) Bool)
This function must be asserted 'true' for initial states, and 'false'
otherwise.
(define-fun |<mod>_ i| ((state |<mod>_ s|)) Bool (...))
This function must be asserted 'true' for initial states. For
non-initial states it must be left unconstrained.
(define-fun |<mod>_ t| ((state |<mod>_ s|) (next_ state |<mod>_ s|)) Bool (...))
This function evaluates to 'true' if the states 'state' and
'next_ state' form a valid state transition.
(define-fun |<mod>_ a| ((state |<mod>_ s|)) Bool (...))
This function evaluates to 'true' if all assertions hold in the state.
(define-fun |<mod>_ u| ((state |<mod>_ s|)) Bool (...))
This function evaluates to 'true' if all assumptions hold in the state.
; yosys-smt2-assert <id> <filename:linenum>
(define-fun |<mod>_ a <id>| ((state |<mod>_ s|)) Bool (...))
Each $ assert cell is converted into one of this functions. The function
evaluates to 'true' if the assert statement holds in the state.
; yosys-smt2-assume <id> <filename:linenum>
(define-fun |<mod>_ u <id>| ((state |<mod>_ s|)) Bool (...))
Each $ assume cell is converted into one of this functions. The function
evaluates to 'true' if the assume statement holds in the state.
; yosys-smt2-cover <id> <filename:linenum>
(define-fun |<mod>_ c <id>| ((state |<mod>_ s|)) Bool (...))
Each $ cover cell is converted into one of this functions. The function
evaluates to 'true' if the cover statement is activated in the state.
2016-11-02 13:25:28 -05:00
2018-10-16 08:28:37 -05:00
Options:
2015-08-14 04:27:19 -05:00
-verbose
this will print the recursive walk used to export the modules.
2018-10-16 08:28:37 -05:00
-stbv
Use a BitVec sort to represent a state instead of an uninterpreted
sort. As a side-effect this will prevent use of arrays to model
memories.
-stdt
Use SMT-LIB 2.6 style datatypes to represent a state instead of an
uninterpreted sort.
2016-11-02 13:25:28 -05:00
-nobv
disable support for BitVec (FixedSizeBitVectors theory). without this
option multi-bit wires are represented using the BitVec sort and
2015-02-09 05:05:02 -06:00
support for coarse grain cells (incl. arithmetic) is enabled.
2016-11-02 13:25:28 -05:00
-nomem
disable support for memories (via ArraysEx theory). this option is
implied by -nobv. only $ mem cells without merged registers in
2015-08-14 04:27:19 -05:00
read ports are supported. call "memory" with -nordff to make sure
that no registers are merged into $ mem read ports. '<mod> _ m' functions
will be generated for accessing the arrays that are used to represent
memories.
2016-02-14 04:02:11 -06:00
-wires
2016-11-02 13:25:28 -05:00
create '<mod>_ n' functions for all public wires. by default only ports,
registers, and wires with the 'keep' attribute are exported.
2016-02-14 04:02:11 -06:00
2015-02-09 05:05:02 -06:00
-tpl <template_ file>
use the given template file. the line containing only the token '%%'
is replaced with the regular output of this command.
[1] For more information on SMT-LIBv2 visit http://smt-lib.org/ or read David
R. Cok's tutorial: http://www.grammatech.com/resources/smt/SMTLIBTutorial.pdf
---------------------------------------------------------------------------
Example:
Consider the following module (test.v). We want to prove that the output can
never transition from a non-zero value to a zero value.
module test(input clk, output reg [3:0] y);
always @(posedge clk)
y <= (y << 1) | ^ y;
endmodule
For this proof we create the following template (test.tpl).
2020-03-23 04:14:26 -05:00
; we need QF_ UFBV for this proof
2015-02-09 05:05:02 -06:00
(set-logic QF_ UFBV)
; insert the auto-generated code here
%%
; declare two state variables s1 and s2
(declare-fun s1 () test_ s)
(declare-fun s2 () test_ s)
; state s2 is the successor of state s1
(assert (test_ t s1 s2))
; we are looking for a model with y non-zero in s1
(assert (distinct (|test_ n y| s1) #b0000))
; we are looking for a model with y zero in s2
(assert (= (|test_ n y| s2) #b0000))
; is there such a model?
(check-sat)
The following yosys script will create a 'test.smt2' file for our proof:
read_ verilog test.v
2015-08-14 04:27:19 -05:00
hierarchy -check; proc; opt; check -assert
2015-02-09 05:05:02 -06:00
write_ smt2 -bv -tpl test.tpl test.smt2
Running 'cvc4 test.smt2' will print 'unsat' because y can never transition
from non-zero to zero in the test design.
\end { lstlisting}
2015-08-14 04:27:19 -05:00
\section { write\_ smv -- write design to SMV file}
\label { cmd:write_ smv}
\begin { lstlisting} [numbers=left,frame=single]
write_ smv [options] [filename]
Write an SMV description of the current design.
-verbose
this will print the recursive walk used to export the modules.
-tpl <template_ file>
use the given template file. the line containing only the token '%%'
is replaced with the regular output of this command.
THIS COMMAND IS UNDER CONSTRUCTION
\end { lstlisting}
2013-09-15 04:41:05 -05:00
\section { write\_ spice -- write design to SPICE netlist file}
\label { cmd:write_ spice}
\begin { lstlisting} [numbers=left,frame=single]
write_ spice [options] [filename]
Write the current design to an SPICE netlist file.
-big_ endian
2015-07-02 04:14:30 -05:00
generate multi-bit ports in MSB first order
2013-09-15 04:41:05 -05:00
(default is LSB first)
-neg net_ name
set the net name for constant 0 (default: Vss)
-pos net_ name
set the net name for constant 1 (default: Vdd)
-nc_ prefix
prefix for not-connected nets (default: _ NC)
2016-11-02 13:25:28 -05:00
-inames
include names of internal ($ - prefixed ) nets in outputs
(default is to use net numbers instead)
2013-09-15 04:41:05 -05:00
-top top_ module
set the specified module as design top module
\end { lstlisting}
2018-10-16 08:28:37 -05:00
\section { write\_ table -- write design as connectivity table}
\label { cmd:write_ table}
\begin { lstlisting} [numbers=left,frame=single]
write_ table [options] [filename]
Write the current design as connectivity table. The output is a tab-separated
ASCII table with the following columns:
module name
cell name
cell type
cell port
direction
signal
module inputs and outputs are output using cell type and port '-' and with
'pi' (primary input) or 'po' (primary output) or 'pio' as direction.
\end { lstlisting}
2015-08-14 03:56:05 -05:00
\section { write\_ verilog -- write design to Verilog file}
2013-07-20 08:19:12 -05:00
\label { cmd:write_ verilog}
\begin { lstlisting} [numbers=left,frame=single]
write_ verilog [options] [filename]
2015-08-14 03:56:05 -05:00
Write the current design to a Verilog file.
2013-07-20 08:19:12 -05:00
-norename
without this option all internal object names (the ones with a dollar
instead of a backslash prefix) are changed to short names in the
format '_ <number>_ '.
2016-11-02 13:25:28 -05:00
-renameprefix <prefix>
insert this prefix in front of auto-generated instance names
2013-07-20 08:19:12 -05:00
-noattr
with this option no attributes are included in the output
-attr2comment
with this option attributes are included as comments in the output
-noexpr
2015-08-14 03:56:05 -05:00
without this option all internal cells are converted to Verilog
2013-07-20 08:19:12 -05:00
expressions.
2020-04-11 11:36:51 -05:00
-siminit
add initial statements with hierarchical refs to initialize FFs when
in -noexpr mode.
2016-11-02 13:25:28 -05:00
-nodec
32-bit constant values are by default dumped as decimal numbers,
2018-09-18 12:34:30 -05:00
not bit pattern. This option deactivates this feature and instead
2016-11-02 13:25:28 -05:00
will write out all constants in binary.
2018-10-16 08:28:37 -05:00
-decimal
dump 32-bit constants in decimal and without size and radix
-nohex
constant values that are compatible with hex output are usually
dumped as hex values. This option deactivates this feature and
instead will write out all constants in binary.
2016-11-02 13:25:28 -05:00
-nostr
Parameters and attributes that are specified as strings in the
original input will be output as strings by this back-end. This
2018-09-18 12:34:30 -05:00
deactivates this feature and instead will write string constants
2016-11-02 13:25:28 -05:00
as binary numbers.
2020-04-11 11:36:51 -05:00
-extmem
instead of initializing memories using assignments to individual
elements, use the '$ readmemh' function to read initialization data
from a file. This data is written to a file named by appending
a sequential index to the Verilog filename and replacing the extension
with '.mem', e.g. 'write_ verilog -extmem foo.v' writes 'foo-1.mem',
'foo-2.mem' and so on.
2016-11-02 13:25:28 -05:00
-defparam
2020-04-11 11:36:51 -05:00
use 'defparam' statements instead of the Verilog-2001 syntax for
2016-11-02 13:25:28 -05:00
cell parameters.
2013-11-22 08:02:40 -06:00
-blackboxes
usually modules with the 'blackbox' attribute are ignored. with
this option set only the modules with the 'blackbox' attribute
2013-07-20 08:19:12 -05:00
are written to the output file.
2013-09-15 04:41:05 -05:00
-selected
only write selected modules. modules must be selected entirely or
not at all.
2016-11-02 13:25:28 -05:00
-v
verbose output (print new names of all renamed wires and cells)
Note that RTLIL processes can't always be mapped directly to Verilog
always blocks. This frontend should only be used to export an RTLIL
netlist, i.e. after the "proc" pass has been used to convert all
processes to logic networks and registers. A warning is generated when
this command is called on a design with RTLIL processes.
\end { lstlisting}
2020-04-11 11:36:51 -05:00
\section { write\_ xaiger -- write design to XAIGER file}
\label { cmd:write_ xaiger}
\begin { lstlisting} [numbers=left,frame=single]
write_ xaiger [options] [filename]
Write the top module (according to the (* top *) attribute or if only one module
is currently selected) to an XAIGER file. Any non $ _ NOT _ , $ _ AND_ , $ _ ABC 9 _ FF _ , ornon ( * abc 9 _ box _ id * ) cells will be converted into psuedo - inputs and
pseudo-outputs. Whitebox contents will be taken from the '<module-name>$ holes'
module, if it exists.
-ascii
write ASCII version of AIGER format
-map <filename>
write an extra file with port and box symbols
\end { lstlisting}
\section { xilinx\_ dffopt -- Xilinx: optimize FF control signal usage}
\label { cmd:xilinx_ dffopt}
\begin { lstlisting} [numbers=left,frame=single]
xilinx_ dffopt [options] [selection]
Converts hardware clock enable and set/reset signals on FFs to emulation
using LUTs, if doing so would improve area. Operates on post-techmap Xilinx
cells (LUT*, FD*).
-lut4
Assume a LUT4-based device (instead of a LUT6-based device).
\end { lstlisting}
\section { xilinx\_ dsp -- Xilinx: pack resources into DSPs}
\label { cmd:xilinx_ dsp}
\begin { lstlisting} [numbers=left,frame=single]
xilinx_ dsp [options] [selection]
Pack input registers (A2, A1, B2, B1, C, D, AD; with optional enable/reset),
pipeline registers (M; with optional enable/reset), output registers (P; with
optional enable/reset), pre-adder and/or post-adder into Xilinx DSP resources.
Multiply-accumulate operations using the post-adder with feedback on the 'C'
input will be folded into the DSP. In this scenario only, the 'C' input can be
used to override the current accumulation result with a new value, which will
be added to the multiplier result to form the next accumulation result.
Use of the dedicated 'PCOUT' -> 'PCIN' cascade path is detected for 'P' -> 'C'
connections (optionally, where 'P' is right-shifted by 17-bits and used as an
input to the post-adder -- a pattern common for summing partial products to
implement wide multipliers). Limited support also exists for similar cascading
for A and B using '[AB]COUT' -> '[AB]CIN'. Currently, cascade chains are limited
to a maximum length of 20 cells, corresponding to the smallest Xilinx 7 Series
device.
This pass is a no-op if the scratchpad variable 'xilinx_ dsp.multonly' is set
to 1.
Experimental feature: addition/subtractions less than 12 or 24 bits with the
'(* use_ dsp="simd" *)' attribute attached to the output wire or attached to
the add/subtract operator will cause those operations to be implemented using
the 'SIMD' feature of DSPs.
Experimental feature: the presence of a `$ ge' cell attached to the registered
P output implementing the operation "(P >= <power-of-2>)" will be transformed
into using the DSP48E1's pattern detector feature for overflow detection.
-family { xcup|xcu|xc7|xc6v|xc5v|xc4v|xc6s|xc3sda}
select the family to target
default: xc7
\end { lstlisting}
\section { xilinx\_ srl -- Xilinx shift register extraction}
\label { cmd:xilinx_ srl}
\begin { lstlisting} [numbers=left,frame=single]
xilinx_ srl [options] [selection]
This pass converts chains of built-in flops (bit-level: $ _ DFF _ [ NP ] _ , $ _ DFFE_ *
and word-level: $ dff, $ dffe) as well as Xilinx flops (FDRE, FDRE_ 1) into a
$ _ _ XILINX _ SHREG cell. Chains must be of the same cell type, clock, clock polarity,
enable, and enable polarity (where relevant).
Flops with resets cannot be mapped to Xilinx devices and will not be inferred.
-minlen N
min length of shift register (default = 3)
-fixed
infer fixed-length shift registers.
-variable
infer variable-length shift registers (i.e. fixed-length shifts where
each element also fans-out to a $ shiftx cell ) .
\end { lstlisting}
2016-11-02 13:25:28 -05:00
\section { zinit -- add inverters so all FF are zero-initialized}
\label { cmd:zinit}
\begin { lstlisting} [numbers=left,frame=single]
zinit [options] [selection]
Add inverters as needed to make all FFs zero-initialized.
-all
also add zero initialization to uninitialized FFs
2013-07-20 08:19:12 -05:00
\end { lstlisting}