diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-04-30 08:10:37 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-04-30 08:10:37 +0200 |
commit | d2d402e62567abe15873c0357b4e34b8f83d03cd (patch) | |
tree | fbe0a5ad6be25f7e96c67616570b4be112b7f5c8 | |
parent | bb4f3642deb1f607b82bff132e0aba5b1cef555b (diff) | |
download | yosys-d2d402e62567abe15873c0357b4e34b8f83d03cd.tar.gz yosys-d2d402e62567abe15873c0357b4e34b8f83d03cd.tar.bz2 yosys-d2d402e62567abe15873c0357b4e34b8f83d03cd.zip |
Run "peepopt" in generic "synth" pass and "synth_ice40"
Signed-off-by: Clifford Wolf <clifford@clifford.at>
-rw-r--r-- | techlibs/common/synth.cc | 2 | ||||
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/techlibs/common/synth.cc b/techlibs/common/synth.cc index ccfa76e02..e41c0fe97 100644 --- a/techlibs/common/synth.cc +++ b/techlibs/common/synth.cc @@ -201,6 +201,8 @@ struct SynthPass : public ScriptPass run("check"); run("opt"); run("wreduce"); + run("peepopt"); + run("opt_clean"); if (help_mode) run("techmap -map +/cmp2lut.v", " (if -lut)"); else diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index 8899bfcc4..f5249e567 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -239,6 +239,8 @@ struct SynthIce40Pass : public ScriptPass run("check"); run("opt"); run("wreduce"); + run("peepopt"); + run("opt_clean"); run("share"); run("techmap -map +/cmp2lut.v -D LUT_WIDTH=4"); run("opt_expr"); |