mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Merge pull request #260 from jix/prepare-check
sby_design: Also track fairness assumptions
This commit is contained in:
commit
5c649c8e75
|
@ -55,6 +55,7 @@ class SbyProperty:
|
||||||
ASSERT = auto()
|
ASSERT = auto()
|
||||||
COVER = auto()
|
COVER = auto()
|
||||||
LIVE = auto()
|
LIVE = auto()
|
||||||
|
FAIR = auto()
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
@ -69,6 +70,8 @@ class SbyProperty:
|
||||||
return c.COVER
|
return c.COVER
|
||||||
if name == "$live":
|
if name == "$live":
|
||||||
return c.LIVE
|
return c.LIVE
|
||||||
|
if name == "$fair":
|
||||||
|
return c.FAIR
|
||||||
raise ValueError("Unknown property type: " + name)
|
raise ValueError("Unknown property type: " + name)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
@ -81,6 +84,8 @@ class SbyProperty:
|
||||||
return c.COVER
|
return c.COVER
|
||||||
if name == "live":
|
if name == "live":
|
||||||
return c.LIVE
|
return c.LIVE
|
||||||
|
if name == "fair":
|
||||||
|
return c.FAIR
|
||||||
raise ValueError("Unknown property type: " + name)
|
raise ValueError("Unknown property type: " + name)
|
||||||
|
|
||||||
name: str
|
name: str
|
||||||
|
@ -198,7 +203,7 @@ def design_hierarchy(filename):
|
||||||
raise ValueError(f"Cannot find module {module_name}")
|
raise ValueError(f"Cannot find module {module_name}")
|
||||||
|
|
||||||
for sort in cell_sorts:
|
for sort in cell_sorts:
|
||||||
if sort["type"] in ["$assume", "$assert", "$cover", "$live"]:
|
if sort["type"] in ["$assume", "$assert", "$cover", "$live", "$fair"]:
|
||||||
for cell in sort["cells"]:
|
for cell in sort["cells"]:
|
||||||
try:
|
try:
|
||||||
location = cell["attributes"]["src"]
|
location = cell["attributes"]["src"]
|
||||||
|
|
Loading…
Reference in a new issue