diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-12-08 11:16:26 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-12-08 11:16:26 +0100 |
commit | 494e5f24f939e3bae4230084ece432304a7ba73a (patch) | |
tree | c1650d301aae54855d82c89806786c098edaca2f | |
parent | 4d0a6dac7b865a38b587cda3e1c13b16ee284deb (diff) | |
download | yosys-494e5f24f939e3bae4230084ece432304a7ba73a.tar.gz yosys-494e5f24f939e3bae4230084ece432304a7ba73a.tar.bz2 yosys-494e5f24f939e3bae4230084ece432304a7ba73a.zip |
Added "synth_ice40 -abc2"
-rw-r--r-- | techlibs/ice40/synth_ice40.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc index 75cab7bda..935f71c1c 100644 --- a/techlibs/ice40/synth_ice40.cc +++ b/techlibs/ice40/synth_ice40.cc @@ -72,6 +72,9 @@ struct SynthIce40Pass : public Pass { log(" -nobram\n"); log(" do not use SB_RAM40_4K* cells in output netlist\n"); log("\n"); + log(" -abc2\n"); + log(" run two passes of 'abc' for slightly improved logic density\n"); + log("\n"); log("\n"); log("The following commands are executed by this synthesis command:\n"); log("\n"); @@ -109,6 +112,7 @@ struct SynthIce40Pass : public Pass { log(" ice40_opt -full\n"); log("\n"); log(" map_luts:\n"); + log(" abc (only if -abc2)\n"); log(" abc -lut 4\n"); log(" clean\n"); log("\n"); @@ -137,6 +141,7 @@ struct SynthIce40Pass : public Pass { bool nobram = false; bool flatten = true; bool retime = false; + bool abc2 = false; size_t argidx; for (argidx = 1; argidx < args.size(); argidx++) @@ -181,6 +186,10 @@ struct SynthIce40Pass : public Pass { nobram = true; continue; } + if (args[argidx] == "-abc2") { + abc2 = true; + continue; + } break; } extra_args(args, argidx, design); @@ -244,6 +253,8 @@ struct SynthIce40Pass : public Pass { if (check_label(active, run_from, run_to, "map_luts")) { + if (abc2) + Pass::call(design, "abc"); Pass::call(design, "abc -lut 4"); Pass::call(design, "clean"); } |