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

Use 'rename -witness' instead of multiple 'rename -enumerate'

This commit is contained in:
Jannis Harder 2022-08-03 17:33:04 +02:00
parent d3520037b9
commit 22585b33dc

View file

@ -608,9 +608,7 @@ class SbyTask(SbyConfig):
print("check", file=f) # can't detect undriven wires past this point print("check", file=f) # can't detect undriven wires past this point
print("setundef -undriven -anyseq", file=f) print("setundef -undriven -anyseq", file=f)
print("opt -fast", file=f) print("opt -fast", file=f)
# running opt before the renames below results in fewer unnamed witness signals print("rename -witness", file=f)
for celltype in ["anyconst", "anyseq", "anyinit", "allconst", "allseq"]:
print(f"rename -enumerate -pattern _sby_witness_{celltype}_% t:${celltype} %co w:* %i", file=f)
print("opt_clean", 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)