From d7de0f4bd1d24842eec895af22396376bce128fc Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Wed, 14 Oct 2015 01:27:55 +0200 Subject: Improvements in yosys-smtbmc --- backends/smt2/Makefile.inc | 9 ++++----- backends/smt2/smtbmc.py | 44 +++++++++++++++++++++++++++++++------------- backends/smt2/smtio.py | 6 +++--- 3 files changed, 38 insertions(+), 21 deletions(-) diff --git a/backends/smt2/Makefile.inc b/backends/smt2/Makefile.inc index 65cb6e3d..be52ca89 100644 --- a/backends/smt2/Makefile.inc +++ b/backends/smt2/Makefile.inc @@ -5,11 +5,10 @@ ifneq ($(CONFIG),mxe) ifneq ($(CONFIG),emcc) TARGETS += yosys-smtbmc -yosys-smtbmc: - $(P) sed '3 { p; s|.*|sys.path += [os.path.dirname(__file__) + p for p in ["/share/python3", "/../share/yosys/python3"]]|; }' \ - < backends/smt2/smtbmc.py > yosys-smtbmc.new - $(Q) chmod +x yosys-smtbmc.new - $(Q) mv yosys-smtbmc.new yosys-smtbmc +yosys-smtbmc: backends/smt2/smtbmc.py + $(P) sed '3 { p; s|.*|sys.path += [os.path.dirname(__file__) + p for p in ["/share/python3", "/../share/yosys/python3"]]|; }' < $< > $@.new + $(Q) chmod +x $@.new + $(Q) mv $@.new $@ $(eval $(call add_share_file,share/python3,backends/smt2/smtio.py)) endif diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index f6b6efdc..898a2678 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -3,10 +3,11 @@ import os, sys, getopt, re from smtio import smtio, smtopts, mkvcd -max_steps = 20 -min_steps = None +skip_steps = 0 +num_steps = 20 vcdfile = None tempind = False +assume_skipped = None topmod = "main" so = smtopts() @@ -15,15 +16,18 @@ def usage(): print(""" yosys-smtbmc [options] - -t - default: 20 + -t , -t : + default: skip_steps=0, num_steps=20 + + -u + assume asserts in skipped steps in BMC -c write counter-example to this VCD file (hint: use 'write_smt2 -wires' for maximum coverage of signals in generated VCD file) - -i + -i instead of BMC run temporal induction -m @@ -33,18 +37,24 @@ yosys-smtbmc [options] try: - opts, args = getopt.getopt(sys.argv[1:], so.optstr + "t:c:i:m:") + opts, args = getopt.getopt(sys.argv[1:], so.optstr + "t:u:c:im:") except: usage() for o, a in opts: if o == "-t": - max_steps = int(a) + match = re.match(r"(\d+):(.*)", a) + if match: + skip_steps = int(match.group(1)) + num_steps = int(match.group(2)) + else: + num_steps = int(a) + elif o == "-u": + assume_skipped = int(a) elif o == "-c": vcdfile = a elif o == "-i": tempind = True - min_steps = int(a) elif o == "-m": topmod = a elif so.handle(o, a): @@ -58,7 +68,7 @@ if len(args) != 1: smt = smtio(opts=so) -print("Solver: %s" % so.solver) +print("%s Solver: %s" % (smt.timestamp(), so.solver)) smt.setup("QF_AUFBV") debug_nets = set() @@ -89,18 +99,18 @@ def write_vcd_model(): if tempind: - for step in range(max_steps, -1, -1): + for step in range(num_steps, -1, -1): smt.write("(declare-fun s%d () %s_s)" % (step, topmod)) smt.write("(assert (%s_u s%d))" % (topmod, step)) - if step == max_steps: + if step == num_steps: smt.write("(assert (not (%s_a s%d)))" % (topmod, step)) else: smt.write("(assert (%s_t s%d s%d))" % (topmod, step, step+1)) smt.write("(assert (%s_a s%d))" % (topmod, step)) - if step > max_steps-min_steps: + if step > num_steps-skip_steps: print("%s Skipping induction in step %d.." % (smt.timestamp(), step)) continue @@ -118,7 +128,7 @@ if tempind: else: # not tempind - for step in range(max_steps+1): + for step in range(num_steps+1): smt.write("(declare-fun s%d () %s_s)" % (step, topmod)) smt.write("(assert (%s_u s%d))" % (topmod, step)) @@ -128,6 +138,14 @@ else: # not tempind else: smt.write("(assert (%s_t s%d s%d))" % (topmod, step-1, step)) + if step < skip_steps: + if assume_skipped is not None and step >= assume_skipped: + print("%s Skipping step %d (and assuming pass).." % (smt.timestamp(), step)) + smt.write("(assert (%s_a s%d))" % (topmod, step)) + else: + print("%s Skipping step %d.." % (smt.timestamp(), step)) + continue + print("%s Checking asserts in step %d.." % (smt.timestamp(), step)) smt.write("(push 1)") diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py index 774984f2..f2cf70b4 100644 --- a/backends/smt2/smtio.py +++ b/backends/smt2/smtio.py @@ -50,12 +50,12 @@ class smtio: self.write("(set-logic %s)" % logic) if info is not None: self.write("(set-info :source |%s|)" % info) - self.write("(set-info :smt-lib-version 2.5)") - self.write("(set-info :category \"industrial\")") + self.write("(set-info :smt-lib-version 2.5)") + self.write("(set-info :category \"industrial\")") def timestamp(self): secs = int(time() - self.start_time) - return "+ %6d %3d:%02d:%02d " % (secs, secs // (60*60), (secs // 60) % 60, secs % 60) + return "## %6d %3d:%02d:%02d " % (secs, secs // (60*60), (secs // 60) % 60, secs % 60) def write(self, stmt): stmt = stmt.strip() -- cgit v1.2.3