aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/abc9.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-04-14 11:10:48 -0700
committerEddie Hung <eddie@fpgeh.com>2020-05-14 10:33:56 -0700
commit043ad8e76cd45bb573c804ffddb4a478cd4a99d4 (patch)
tree880bc472779c5290933509411953739a9e59b1a8 /passes/techmap/abc9.cc
parenta52f779ecae79be5ea79bd27f04837e7031f8415 (diff)
downloadyosys-043ad8e76cd45bb573c804ffddb4a478cd4a99d4.tar.gz
yosys-043ad8e76cd45bb573c804ffddb4a478cd4a99d4.tar.bz2
yosys-043ad8e76cd45bb573c804ffddb4a478cd4a99d4.zip
abc9_ops: use new 'design -delete' and 'select -unset'
Diffstat (limited to 'passes/techmap/abc9.cc')
-rw-r--r--passes/techmap/abc9.cc20
1 files changed, 5 insertions, 15 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index 97ee57aaa..adb28189e 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -309,15 +309,10 @@ struct Abc9Pass : public ScriptPass
run("abc9_ops -prep_dff_unmap"); // create $abc9_unmap design
run("techmap -map %$abc9_map"); // techmap user design into submod + $_DFF_[NP]_
run("setattr -mod -set whitebox 1 -set abc9_flop 1 -set abc9_box 1 *_$abc9_flop");
- if (!help_mode) {
- // TODO: Need a way to delete saved designs?
- auto it = saved_designs.find("$abc9_map");
- delete it->second;
- saved_designs.erase(it);
- // TODO: Need a way to delete selections
- active_design->selection_vars.erase(ID($abc9_flops));
- active_design->selection_vars.erase(ID($abc9_cells));
- }
+ run("design -delete $abc9");
+ run("design -delete $abc9_map");
+ run("select -unset $abc9_flops");
+ run("select -unset $abc9_cells");
}
}
@@ -423,12 +418,7 @@ struct Abc9Pass : public ScriptPass
if (dff_mode || help_mode) {
run("techmap -wb -map %$abc9_unmap", "(only if -dff)"); // techmap user design from submod back to original cell
// ($_DFF_[NP]_ already shorted by -reintegrate)
- if (!help_mode) {
- // TODO: Need a way to delete saved designs?
- auto it = saved_designs.find("$abc9_unmap");
- delete it->second;
- saved_designs.erase(it);
- }
+ run("design -delete $abc9_unmap");
}
}
}