mirror of https://github.com/YosysHQ/yosys.git
synth: improve script documentation. NFC.
This commit is contained in:
parent
a91892bba4
commit
fdff32dd73
|
@ -186,19 +186,19 @@ struct SynthPass : public ScriptPass
|
||||||
{
|
{
|
||||||
run("proc");
|
run("proc");
|
||||||
if (help_mode || flatten)
|
if (help_mode || flatten)
|
||||||
run("flatten", "(if -flatten)");
|
run("flatten", " (if -flatten)");
|
||||||
run("opt_expr");
|
run("opt_expr");
|
||||||
run("opt_clean");
|
run("opt_clean");
|
||||||
run("check");
|
run("check");
|
||||||
run("opt");
|
run("opt");
|
||||||
run("wreduce");
|
run("wreduce");
|
||||||
if (!noalumacc)
|
if (!noalumacc)
|
||||||
run("alumacc");
|
run("alumacc", " (unless -noalumacc)");
|
||||||
if (!noshare)
|
if (!noshare)
|
||||||
run("share");
|
run("share", " (unless -noshare)");
|
||||||
run("opt");
|
run("opt");
|
||||||
if (!nofsm)
|
if (!nofsm)
|
||||||
run("fsm" + fsm_opts);
|
run("fsm" + fsm_opts, " (unless -nofsm)");
|
||||||
run("opt -fast");
|
run("opt -fast");
|
||||||
run("memory -nomap" + memory_opts);
|
run("memory -nomap" + memory_opts);
|
||||||
run("opt_clean");
|
run("opt_clean");
|
||||||
|
@ -214,8 +214,8 @@ struct SynthPass : public ScriptPass
|
||||||
|
|
||||||
if (!noabc) {
|
if (!noabc) {
|
||||||
#ifdef YOSYS_ENABLE_ABC
|
#ifdef YOSYS_ENABLE_ABC
|
||||||
run("abc -fast");
|
run("abc -fast", "(unless -noabc)");
|
||||||
run("opt -fast");
|
run("opt -fast", "(unless -noabc)");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue