-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathutils.py
125 lines (111 loc) · 4.21 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import os
import re
import shutil
import subprocess
import textwrap
import traceback
import unittest
from amaranth.hdl._ast import *
from amaranth.hdl._ir import *
from amaranth.back import rtlil
from amaranth._toolchain import require_tool
__all__ = ["FHDLTestCase"]
class FHDLTestCase(unittest.TestCase):
maxDiff = None
def assertRepr(self, obj, repr_str):
if isinstance(obj, list):
obj = Statement.cast(obj)
def squish_repr(repr_str):
repr_str = re.sub(r"\s+", " ", repr_str)
repr_str = re.sub(r"\( (?=\()", "(", repr_str)
repr_str = re.sub(r"\) (?=\))", ")", repr_str)
return repr_str.strip()
def format_repr(input_repr, *, indent=" "):
output_repr = []
prefix = "\n"
name = None
index = 0
stack = []
current = ""
for char in input_repr:
if char == "(":
stack.append((prefix, name, index))
name, index = None, 0
output_repr.append(char)
if len(stack) == 1:
prefix += indent
output_repr.append(prefix)
elif char == ")":
indented = (len(stack) == 1 or name in ("module", "top"))
prefix, name, index = stack.pop()
if indented:
output_repr.append(prefix)
output_repr.append(char)
elif char == " ":
if name is None:
name = current
if name in ("module", "top"):
prefix += indent
else:
index += 1
current = ""
if len(stack) == 1 or name == "module" and index >= 3 or name == "top":
output_repr.append(prefix)
else:
output_repr.append(char)
elif name is None:
current += char
output_repr.append(char)
else:
output_repr.append(char)
return "".join(output_repr)
# print("\n" + format_repr(squish_repr(repr(obj))))
self.assertEqual(format_repr(squish_repr(repr(obj))), format_repr(squish_repr(repr_str)))
def assertFormal(self, spec, ports=None, mode="bmc", depth=1):
stack = traceback.extract_stack()
for frame in reversed(stack):
if os.path.dirname(__file__) not in frame.filename:
break
caller = frame
spec_root, _ = os.path.splitext(caller.filename)
spec_dir = os.path.dirname(spec_root)
spec_name = "{}_{}".format(
os.path.basename(spec_root).replace("test_", "spec_"),
caller.name.replace("test_", "")
)
# The sby -f switch seems not fully functional when sby is reading from stdin.
if os.path.exists(os.path.join(spec_dir, spec_name)):
shutil.rmtree(os.path.join(spec_dir, spec_name))
if mode == "hybrid":
# A mix of BMC and k-induction, as per personal communication with Claire Wolf.
script = "setattr -unset init w:* a:amaranth.sample_reg %d"
mode = "bmc"
else:
script = ""
config = textwrap.dedent("""\
[options]
mode {mode}
depth {depth}
wait on
multiclock on
[engines]
smtbmc
[script]
read_rtlil top.il
prep
{script}
[file top.il]
{rtlil}
""").format(
mode=mode,
depth=depth,
script=script,
rtlil=rtlil.convert(spec, ports=ports, platform="formal"),
)
with subprocess.Popen(
[require_tool("sby"), "-f", "-d", spec_name],
cwd=spec_dir, env={**os.environ, "PYTHONWARNINGS":"ignore"},
universal_newlines=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE) as proc:
stdout, stderr = proc.communicate(config)
if proc.returncode != 0:
self.fail("Formal verification failed:\n" + stdout)