3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 14:04:07 +00:00

Adding prep mode and skip_prep option

Allows for generating a design_prep model which can then be used by multiple distinct sby runs.
This commit is contained in:
Krystine Sherwin 2023-05-16 17:42:53 +12:00
parent 74f33880bd
commit 36e7a72586
No known key found for this signature in database

View file

@ -982,28 +982,29 @@ class SbyTask(SbyConfig):
with open(f"""{self.workdir}/model/design_prep.ys""", "w") as f: with open(f"""{self.workdir}/model/design_prep.ys""", "w") as f:
print(f"# running in {self.workdir}/model/", file=f) print(f"# running in {self.workdir}/model/", file=f)
print(f"""read_ilang design.il""", file=f) print(f"""read_ilang design.il""", file=f)
print("scc -select; simplemap; select -clear", file=f) if not self.opt_skip_prep:
print("memory_nordff", file=f) print("scc -select; simplemap; select -clear", file=f)
if self.opt_multiclock: print("memory_nordff", file=f)
print("clk2fflogic", file=f) if self.opt_multiclock:
else: print("clk2fflogic", file=f)
print("async2sync", file=f) else:
print("chformal -assume -early", file=f) print("async2sync", file=f)
print("opt_clean", file=f) print("chformal -assume -early", file=f)
print("formalff -setundef -clk2ff -ff2anyinit -hierarchy", file=f) print("opt_clean", file=f)
if self.opt_mode in ["bmc", "prove"]: print("formalff -setundef -clk2ff -ff2anyinit -hierarchy", file=f)
print("chformal -live -fair -cover -remove", file=f) if self.opt_mode in ["bmc", "prove"]:
if self.opt_mode == "cover": print("chformal -live -fair -cover -remove", file=f)
print("chformal -live -fair -remove", file=f) if self.opt_mode == "cover":
if self.opt_mode == "live": print("chformal -live -fair -remove", file=f)
print("chformal -assert2assume", file=f) if self.opt_mode == "live":
print("chformal -cover -remove", file=f) print("chformal -assert2assume", file=f)
print("opt_clean", file=f) print("chformal -cover -remove", file=f)
print("check", file=f) # can't detect undriven wires past this point print("opt_clean", file=f)
print("setundef -undriven -anyseq", file=f) print("check", file=f) # can't detect undriven wires past this point
print("opt -fast", file=f) print("setundef -undriven -anyseq", file=f)
print("rename -witness", file=f) print("opt -fast", file=f)
print("opt_clean", file=f) print("rename -witness", file=f)
print("opt_clean", file=f)
print(f"""write_rtlil ../model/design_prep.il""", file=f) print(f"""write_rtlil ../model/design_prep.il""", file=f)
proc = SbyProc( proc = SbyProc(
@ -1210,7 +1211,7 @@ class SbyTask(SbyConfig):
self.handle_str_option("mode", None) self.handle_str_option("mode", None)
if self.opt_mode not in ["bmc", "prove", "cover", "live"]: if self.opt_mode not in ["bmc", "prove", "cover", "live", "prep"]:
self.error(f"Invalid mode: {self.opt_mode}") self.error(f"Invalid mode: {self.opt_mode}")
self.expect = ["PASS"] self.expect = ["PASS"]
@ -1242,6 +1243,7 @@ class SbyTask(SbyConfig):
self.handle_bool_option("append_assume", True) self.handle_bool_option("append_assume", True)
self.handle_str_option("make_model", None) self.handle_str_option("make_model", None)
self.handle_bool_option("skip_prep", False)
def setup_procs(self, setupmode): def setup_procs(self, setupmode):
self.handle_non_engine_options() self.handle_non_engine_options()
@ -1258,7 +1260,7 @@ class SbyTask(SbyConfig):
if engine[0] not in ["smtbmc", "btor"]: if engine[0] not in ["smtbmc", "btor"]:
self.error("Option skip is only valid for smtbmc and btor engines.") self.error("Option skip is only valid for smtbmc and btor engines.")
if len(self.engine_list()) == 0: if len(self.engine_list()) == 0 and self.opt_mode != "prep":
self.error("Config file is lacking engine configuration.") self.error("Config file is lacking engine configuration.")
if self.reusedir: if self.reusedir:
@ -1293,6 +1295,10 @@ class SbyTask(SbyConfig):
import sby_mode_cover import sby_mode_cover
sby_mode_cover.run(self) sby_mode_cover.run(self)
elif self.opt_mode == "prep":
self.model("prep")
self.update_status("PASS")
else: else:
assert False assert False