summaryrefslogtreecommitdiff
path: root/techlibs/common
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-10-31 03:36:51 +0100
committerClifford Wolf <clifford@clifford.at>2014-10-31 03:36:51 +0100
commitab28491f271e3b02ba58dabb4b7033bcf17b6c25 (patch)
treea8fe074a05d66477549338934259f6f80eed7fa4 /techlibs/common
parenta21481b338933f9498fd0fb11492aa2e5b7a00cd (diff)
Added "opt -full" alias for all more aggressive optimizations
Diffstat (limited to 'techlibs/common')
-rw-r--r--techlibs/common/synth.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/techlibs/common/synth.cc b/techlibs/common/synth.cc
index 8b41a003..c76b002c 100644
--- a/techlibs/common/synth.cc
+++ b/techlibs/common/synth.cc
@@ -76,9 +76,11 @@ struct SynthPass : public Pass {
log(" opt_clean\n");
log("\n");
log(" fine:\n");
+ log(" opt -fast -full\n");
log(" memory_map\n");
+ log(" opt -full\n");
log(" techmap\n");
- log(" opt -fast\n");
+ log(" opt -fast -full\n");
#ifdef YOSYS_ENABLE_ABC
log(" abc -fast\n");
log(" opt_clean\n");
@@ -144,9 +146,11 @@ struct SynthPass : public Pass {
if (check_label(active, run_from, run_to, "fine"))
{
+ Pass::call(design, "opt -fast -full");
Pass::call(design, "memory_map");
+ Pass::call(design, "opt -full");
Pass::call(design, "techmap");
- Pass::call(design, "opt -fast");
+ Pass::call(design, "opt -fast -full");
#ifdef YOSYS_ENABLE_ABC
Pass::call(design, "abc -fast");
Pass::call(design, "opt_clean");