diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-05-03 20:39:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-03 20:39:50 +0200 |
commit | 373b236108b254e3c01daa56a2b5ab75f2f87da2 (patch) | |
tree | 7725a9150eab6dcfbf895abf08d855b3dce4e9f4 /techlibs/ice40 | |
parent | f170fb6383477af453ca90ce4f67102e98b03f6e (diff) | |
parent | 2b29aa5c86021eb79c461975a0281b6d7635bb67 (diff) | |
download | yosys-373b236108b254e3c01daa56a2b5ab75f2f87da2.tar.gz yosys-373b236108b254e3c01daa56a2b5ab75f2f87da2.tar.bz2 yosys-373b236108b254e3c01daa56a2b5ab75f2f87da2.zip |
Merge pull request #969 from YosysHQ/clifford/pmgenstuff
Improve pmgen, Add "peepopt" pass with shift-mul pattern
Diffstat (limited to 'techlibs/ice40')
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index 5de33110a..bb96d66d1 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -241,6 +241,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"); |