2015-10-13 10:17:23 -05:00
|
|
|
#!/usr/bin/env python3
|
2015-10-13 18:31:54 -05:00
|
|
|
#
|
|
|
|
# yosys -- Yosys Open SYnthesis Suite
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
|
|
|
#
|
|
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
|
|
# copyright notice and this permission notice appear in all copies.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
#
|
2015-10-13 10:17:23 -05:00
|
|
|
|
|
|
|
import os, sys, getopt, re
|
2015-10-13 18:31:54 -05:00
|
|
|
##yosys-sys-path##
|
2015-10-13 10:17:23 -05:00
|
|
|
from smtio import smtio, smtopts, mkvcd
|
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
skip_steps = 0
|
2015-12-20 02:58:54 -06:00
|
|
|
step_size = 1
|
2015-10-13 18:27:55 -05:00
|
|
|
num_steps = 20
|
2015-10-13 10:17:23 -05:00
|
|
|
vcdfile = None
|
2016-08-20 09:32:50 -05:00
|
|
|
vlogtbfile = None
|
2016-08-22 10:27:43 -05:00
|
|
|
inconstr = list()
|
2016-08-22 09:48:46 -05:00
|
|
|
outconstr = None
|
2016-08-20 09:32:50 -05:00
|
|
|
gentrace = False
|
2015-10-13 10:17:23 -05:00
|
|
|
tempind = False
|
2015-10-13 18:27:55 -05:00
|
|
|
assume_skipped = None
|
2015-10-15 08:08:41 -05:00
|
|
|
topmod = None
|
2015-10-13 10:17:23 -05:00
|
|
|
so = smtopts()
|
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
|
2015-10-13 10:17:23 -05:00
|
|
|
def usage():
|
|
|
|
print("""
|
2015-10-13 17:37:41 -05:00
|
|
|
yosys-smtbmc [options] <yosys_smt2_output>
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
-t <num_steps>, -t <skip_steps>:<num_steps>
|
|
|
|
default: skip_steps=0, num_steps=20
|
|
|
|
|
|
|
|
-u <start_step>
|
|
|
|
assume asserts in skipped steps in BMC
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-12-20 02:58:54 -06:00
|
|
|
-S <step_size>
|
2016-08-20 09:07:59 -05:00
|
|
|
prove <step_size> time steps at once
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2016-08-20 09:32:50 -05:00
|
|
|
-g
|
|
|
|
generate an arbitrary trace that satisfies
|
|
|
|
all assertions and assumptions.
|
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
-i
|
2015-10-13 10:17:23 -05:00
|
|
|
instead of BMC run temporal induction
|
|
|
|
|
|
|
|
-m <module_name>
|
2015-10-15 08:08:41 -05:00
|
|
|
name of the top module
|
2016-08-20 09:07:59 -05:00
|
|
|
|
2016-08-22 10:27:43 -05:00
|
|
|
--constr <constr_filename>
|
|
|
|
read constraints file
|
|
|
|
|
2016-08-20 09:07:59 -05:00
|
|
|
--dump-vcd <vcd_filename>
|
2016-08-20 09:32:50 -05:00
|
|
|
write trace to this VCD file
|
2016-08-20 09:07:59 -05:00
|
|
|
(hint: use 'write_smt2 -wires' for maximum
|
|
|
|
coverage of signals in generated VCD file)
|
2016-08-20 11:43:39 -05:00
|
|
|
|
|
|
|
--dump-vlogtb <verilog_filename>
|
|
|
|
write trace as Verilog test bench
|
2016-08-22 09:48:46 -05:00
|
|
|
|
|
|
|
--dump-constr <constr_filename>
|
|
|
|
write trace as constraints file
|
2015-10-13 10:17:23 -05:00
|
|
|
""" + so.helpmsg())
|
|
|
|
sys.exit(1)
|
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
|
2015-10-13 10:17:23 -05:00
|
|
|
try:
|
2016-08-22 10:27:43 -05:00
|
|
|
opts, args = getopt.getopt(sys.argv[1:], so.shortopts + "t:u:S:igm:", so.longopts + ["constr=", "dump-vcd=", "dump-vlogtb=", "dump-constr="])
|
2015-10-13 10:17:23 -05:00
|
|
|
except:
|
|
|
|
usage()
|
|
|
|
|
|
|
|
for o, a in opts:
|
|
|
|
if o == "-t":
|
2015-10-13 18:27:55 -05:00
|
|
|
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)
|
2015-12-20 02:58:54 -06:00
|
|
|
elif o == "-S":
|
|
|
|
step_size = int(a)
|
2016-08-22 10:27:43 -05:00
|
|
|
elif o == "--constr":
|
|
|
|
inconstr.append(a)
|
2016-08-20 09:07:59 -05:00
|
|
|
elif o == "--dump-vcd":
|
2015-10-13 10:17:23 -05:00
|
|
|
vcdfile = a
|
2016-08-20 11:43:39 -05:00
|
|
|
elif o == "--dump-vlogtb":
|
|
|
|
vlogtbfile = a
|
2016-08-22 09:48:46 -05:00
|
|
|
elif o == "--dump-constr":
|
|
|
|
outconstr = a
|
2015-10-13 10:17:23 -05:00
|
|
|
elif o == "-i":
|
|
|
|
tempind = True
|
2016-08-20 09:32:50 -05:00
|
|
|
elif o == "-g":
|
|
|
|
gentrace = True
|
2015-10-13 17:37:41 -05:00
|
|
|
elif o == "-m":
|
|
|
|
topmod = a
|
2015-10-13 10:17:23 -05:00
|
|
|
elif so.handle(o, a):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
usage()
|
|
|
|
|
|
|
|
if len(args) != 1:
|
|
|
|
usage()
|
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
|
2016-08-22 10:27:43 -05:00
|
|
|
if tempind and len(inconstr) != 0:
|
|
|
|
print("Error: options -i and --constr are exclusive.");
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
constr_asserts = dict()
|
|
|
|
constr_assumes = dict()
|
|
|
|
|
|
|
|
for fn in inconstr:
|
|
|
|
current_state = None
|
|
|
|
|
|
|
|
with open(fn, "r") as f:
|
|
|
|
for line in f:
|
|
|
|
tokens = line.split()
|
|
|
|
|
|
|
|
if len(tokens) == 0:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if tokens[0] == "initial":
|
|
|
|
current_state = 0
|
|
|
|
continue
|
|
|
|
|
|
|
|
if tokens[0] == "state":
|
|
|
|
current_state = int(tokens[1])
|
|
|
|
continue
|
|
|
|
|
|
|
|
if tokens[0] == "assert":
|
|
|
|
assert current_state is not None
|
|
|
|
|
|
|
|
if current_state not in constr_asserts:
|
|
|
|
constr_asserts[current_state] = list()
|
|
|
|
|
|
|
|
constr_asserts[current_state].append(" ".join(tokens[1:]))
|
|
|
|
continue
|
|
|
|
|
|
|
|
if tokens[0] == "assume":
|
|
|
|
assert current_state is not None
|
|
|
|
|
|
|
|
if current_state not in constr_assumes:
|
|
|
|
constr_assumes[current_state] = list()
|
|
|
|
|
|
|
|
constr_assumes[current_state].append(" ".join(tokens[1:]))
|
|
|
|
continue
|
|
|
|
|
|
|
|
assert 0
|
|
|
|
|
|
|
|
|
|
|
|
def get_constr_expr(db, state):
|
|
|
|
if state not in db:
|
|
|
|
return "true"
|
|
|
|
|
|
|
|
expr_list = list()
|
|
|
|
for expr in db[state]:
|
|
|
|
expr = re.sub(r'\[([^\]]+)\]', lambda match: smt.net_expr(topmod, "s%d" % state, smt.get_path(topmod, match.group(1))), expr)
|
|
|
|
expr_list.append(expr)
|
|
|
|
|
2016-08-22 10:45:01 -05:00
|
|
|
if len(expr_list) == 0:
|
|
|
|
return "true"
|
|
|
|
|
|
|
|
if len(expr_list) == 1:
|
|
|
|
return expr_list[0]
|
|
|
|
|
2016-08-22 10:27:43 -05:00
|
|
|
return "(and %s)" % " ".join(expr_list)
|
|
|
|
|
|
|
|
|
2015-10-13 10:17:23 -05:00
|
|
|
smt = smtio(opts=so)
|
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
print("%s Solver: %s" % (smt.timestamp(), so.solver))
|
2015-10-13 10:17:23 -05:00
|
|
|
smt.setup("QF_AUFBV")
|
|
|
|
|
|
|
|
with open(args[0], "r") as f:
|
|
|
|
for line in f:
|
|
|
|
smt.write(line)
|
2016-07-11 05:49:33 -05:00
|
|
|
smt.info(line)
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2016-07-11 04:49:05 -05:00
|
|
|
if topmod is None:
|
|
|
|
topmod = smt.topmod
|
2015-10-15 08:08:41 -05:00
|
|
|
|
2016-07-11 04:49:05 -05:00
|
|
|
assert topmod is not None
|
|
|
|
assert topmod in smt.modinfo
|
2015-10-13 17:18:38 -05:00
|
|
|
|
2016-07-11 05:49:33 -05:00
|
|
|
|
2016-08-20 09:32:50 -05:00
|
|
|
def write_vcd_trace(steps):
|
2016-08-20 11:43:39 -05:00
|
|
|
print("%s Writing trace to VCD file." % smt.timestamp())
|
2015-10-13 10:17:23 -05:00
|
|
|
|
|
|
|
vcd = mkvcd(open(vcdfile, "w"))
|
2016-08-20 11:43:39 -05:00
|
|
|
path_list = list()
|
2016-08-18 04:17:45 -05:00
|
|
|
|
2016-07-11 05:49:33 -05:00
|
|
|
for netpath in sorted(smt.hiernets(topmod)):
|
2016-08-20 11:43:39 -05:00
|
|
|
hidden_net = False
|
|
|
|
for n in netpath:
|
|
|
|
if n.startswith("$"):
|
|
|
|
hidden_net = True
|
|
|
|
if not hidden_net:
|
|
|
|
vcd.add_net([topmod] + netpath, smt.net_width(topmod, netpath))
|
|
|
|
path_list.append(netpath)
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-14 16:23:25 -05:00
|
|
|
for i in range(steps):
|
2015-10-13 10:17:23 -05:00
|
|
|
vcd.set_time(i)
|
2016-08-18 04:17:45 -05:00
|
|
|
value_list = smt.get_net_bin_list(topmod, path_list, "s%d" % i)
|
|
|
|
for path, value in zip(path_list, value_list):
|
|
|
|
vcd.set_net([topmod] + path, value)
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-14 16:23:25 -05:00
|
|
|
vcd.set_time(steps)
|
2015-10-13 10:17:23 -05:00
|
|
|
|
|
|
|
|
2016-08-20 11:43:39 -05:00
|
|
|
def write_vlogtb_trace(steps):
|
|
|
|
print("%s Writing trace to Verilog testbench." % smt.timestamp())
|
|
|
|
|
|
|
|
with open(vlogtbfile, "w") as f:
|
|
|
|
print("module testbench;", file=f)
|
|
|
|
print(" reg [4095:0] vcdfile;", file=f)
|
|
|
|
print(" reg clock = 0, genclock = 1;", file=f)
|
|
|
|
|
|
|
|
primary_inputs = list()
|
|
|
|
clock_inputs = set()
|
|
|
|
|
|
|
|
for name in smt.modinfo[topmod].inputs:
|
|
|
|
if name in ["clk", "clock", "CLK", "CLOCK"]:
|
|
|
|
clock_inputs.add(name)
|
|
|
|
width = smt.modinfo[topmod].wsize[name]
|
|
|
|
primary_inputs.append((name, width))
|
|
|
|
|
|
|
|
for name, width in primary_inputs:
|
|
|
|
if name in clock_inputs:
|
|
|
|
print(" wire [%d:0] PI_%s = clock;" % (width-1, name), file=f)
|
|
|
|
else:
|
|
|
|
print(" reg [%d:0] PI_%s;" % (width-1, name), file=f)
|
|
|
|
|
|
|
|
print(" %s UUT (" % topmod, file=f)
|
|
|
|
for i in range(len(primary_inputs)):
|
|
|
|
name, width = primary_inputs[i]
|
|
|
|
last_pi = i+1 == len(primary_inputs)
|
|
|
|
print(" .%s(PI_%s)%s" % (name, name, "" if last_pi else ","), file=f)
|
|
|
|
print(" );", file=f)
|
|
|
|
|
|
|
|
print(" initial begin", file=f)
|
|
|
|
print(" if ($value$plusargs(\"vcd=%s\", vcdfile)) begin", file=f)
|
|
|
|
print(" $dumpfile(vcdfile);", file=f)
|
|
|
|
print(" $dumpvars(0, testbench);", file=f)
|
|
|
|
print(" end", file=f)
|
|
|
|
print(" while (genclock) begin", file=f)
|
|
|
|
print(" #5; clock = 0;", file=f)
|
|
|
|
print(" #5; clock = 1;", file=f)
|
|
|
|
print(" end", file=f)
|
|
|
|
print(" end", file=f)
|
|
|
|
|
|
|
|
print(" initial begin", file=f)
|
|
|
|
|
|
|
|
regs = sorted(smt.hiernets(topmod, regs_only=True))
|
|
|
|
regvals = smt.get_net_bin_list(topmod, regs, "s0")
|
|
|
|
|
|
|
|
print(" #1;", file=f);
|
|
|
|
for reg, val in zip(regs, regvals):
|
|
|
|
hidden_net = False
|
|
|
|
for n in reg:
|
|
|
|
if n.startswith("$"):
|
|
|
|
hidden_net = True
|
|
|
|
print(" %sUUT.%s = %d'b%s;" % ("// " if hidden_net else "", ".".join(reg), len(val), val), file=f)
|
|
|
|
|
|
|
|
mems = sorted(smt.hiermems(topmod))
|
|
|
|
for mempath in mems:
|
2016-08-21 08:56:22 -05:00
|
|
|
abits, width, ports = smt.mem_info(topmod, "s0", mempath)
|
|
|
|
mem = smt.mem_expr(topmod, "s0", mempath)
|
|
|
|
|
|
|
|
addr_expr_list = list()
|
|
|
|
for i in range(steps):
|
|
|
|
for j in range(ports):
|
|
|
|
addr_expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, j))
|
|
|
|
|
|
|
|
addr_list = set()
|
|
|
|
for val in smt.get_list(addr_expr_list):
|
|
|
|
addr_list.add(smt.bv2int(val))
|
2016-08-20 11:43:39 -05:00
|
|
|
|
|
|
|
expr_list = list()
|
2016-08-21 08:56:22 -05:00
|
|
|
for i in addr_list:
|
2016-08-20 11:43:39 -05:00
|
|
|
expr_list.append("(select %s #b%s)" % (mem, format(i, "0%db" % abits)))
|
|
|
|
|
2016-08-21 08:56:22 -05:00
|
|
|
for i, val in zip(addr_list, smt.get_list(expr_list)):
|
2016-08-20 11:43:39 -05:00
|
|
|
val = smt.bv2bin(val)
|
|
|
|
print(" UUT.%s[%d] = %d'b%s;" % (".".join(mempath), i, len(val), val), file=f)
|
|
|
|
|
|
|
|
for i in range(steps):
|
|
|
|
pi_names = [[name] for name, _ in primary_inputs if name not in clock_inputs]
|
|
|
|
pi_values = smt.get_net_bin_list(topmod, pi_names, "s%d" % i)
|
|
|
|
|
|
|
|
print(" #1;", file=f);
|
|
|
|
print(" // state %d" % i, file=f);
|
|
|
|
if i > 0:
|
|
|
|
print(" @(posedge clock);", file=f);
|
|
|
|
for name, val in zip(pi_names, pi_values):
|
|
|
|
print(" PI_%s <= %d'b%s;" % (".".join(name), len(val), val), file=f)
|
|
|
|
|
|
|
|
print(" genclock = 0;", file=f);
|
|
|
|
print(" end", file=f)
|
|
|
|
|
|
|
|
print("endmodule", file=f)
|
|
|
|
|
|
|
|
|
2016-08-22 09:48:46 -05:00
|
|
|
def write_constr_trace(steps):
|
|
|
|
print("%s Writing trace to constraints file." % smt.timestamp())
|
|
|
|
|
|
|
|
with open(outconstr, "w") as f:
|
|
|
|
primary_inputs = list()
|
|
|
|
|
|
|
|
for name in smt.modinfo[topmod].inputs:
|
|
|
|
width = smt.modinfo[topmod].wsize[name]
|
|
|
|
primary_inputs.append((name, width))
|
|
|
|
|
|
|
|
for k in range(steps):
|
|
|
|
if k != 0:
|
|
|
|
print("", file=f)
|
|
|
|
|
|
|
|
print("state %d" % k, file=f)
|
|
|
|
|
|
|
|
if k == 0:
|
|
|
|
regnames = sorted(smt.hiernets(topmod, regs_only=True))
|
|
|
|
regvals = smt.get_net_list(topmod, regnames, "s0")
|
|
|
|
|
|
|
|
for name, val in zip(regnames, regvals):
|
|
|
|
print("assume (= [%s] %s)" % (".".join(name), val), file=f)
|
|
|
|
|
|
|
|
mems = sorted(smt.hiermems(topmod))
|
|
|
|
for mempath in mems:
|
|
|
|
abits, width, ports = smt.mem_info(topmod, "s0", mempath)
|
|
|
|
mem = smt.mem_expr(topmod, "s0", mempath)
|
|
|
|
|
|
|
|
addr_expr_list = list()
|
|
|
|
for i in range(steps):
|
|
|
|
for j in range(ports):
|
|
|
|
addr_expr_list.append(smt.mem_expr(topmod, "s%d" % i, mempath, j))
|
|
|
|
|
|
|
|
addr_list = set()
|
|
|
|
for val in smt.get_list(addr_expr_list):
|
|
|
|
addr_list.add(smt.bv2int(val))
|
|
|
|
|
|
|
|
expr_list = list()
|
|
|
|
for i in addr_list:
|
|
|
|
expr_list.append("(select %s #b%s)" % (mem, format(i, "0%db" % abits)))
|
|
|
|
|
|
|
|
for i, val in zip(addr_list, smt.get_list(expr_list)):
|
|
|
|
print("assume (= (select [%s] #b%s) %s)" % (".".join(mempath), format(i, "0%db" % abits), val), file=f)
|
|
|
|
|
|
|
|
pi_names = [[name] for name, _ in primary_inputs]
|
|
|
|
pi_values = smt.get_net_list(topmod, pi_names, "s%d" % k)
|
|
|
|
|
|
|
|
for name, val in zip(pi_names, pi_values):
|
|
|
|
print("assume (= [%s] %s)" % (".".join(name), val), file=f)
|
|
|
|
|
|
|
|
|
2016-08-20 11:43:39 -05:00
|
|
|
def write_trace(steps):
|
|
|
|
if vcdfile is not None:
|
|
|
|
write_vcd_trace(steps)
|
|
|
|
|
|
|
|
if vlogtbfile is not None:
|
|
|
|
write_vlogtb_trace(steps)
|
|
|
|
|
2016-08-22 09:48:46 -05:00
|
|
|
if outconstr is not None:
|
|
|
|
write_constr_trace(steps)
|
|
|
|
|
2016-08-20 11:43:39 -05:00
|
|
|
|
2016-08-17 13:10:02 -05:00
|
|
|
def print_failed_asserts(mod, state, path):
|
|
|
|
assert mod in smt.modinfo
|
|
|
|
|
|
|
|
if smt.get("(|%s_a| %s)" % (mod, state)) == "true":
|
|
|
|
return
|
|
|
|
|
|
|
|
for cellname, celltype in smt.modinfo[mod].cells.items():
|
|
|
|
print_failed_asserts(celltype, "(|%s_h %s| %s)" % (mod, cellname, state), path + "." + cellname)
|
|
|
|
|
|
|
|
for assertfun, assertinfo in smt.modinfo[mod].asserts.items():
|
|
|
|
if smt.get("(|%s| %s)" % (assertfun, state)) == "false":
|
|
|
|
print("%s Assert failed in %s: %s" % (smt.timestamp(), path, assertinfo))
|
|
|
|
|
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
if tempind:
|
2015-10-15 08:54:59 -05:00
|
|
|
retstatus = False
|
2015-12-20 02:58:54 -06:00
|
|
|
skip_counter = step_size
|
2015-10-13 18:27:55 -05:00
|
|
|
for step in range(num_steps, -1, -1):
|
2015-10-13 17:18:38 -05:00
|
|
|
smt.write("(declare-fun s%d () %s_s)" % (step, topmod))
|
|
|
|
smt.write("(assert (%s_u s%d))" % (topmod, step))
|
2016-07-10 11:11:25 -05:00
|
|
|
smt.write("(assert (%s_h s%d))" % (topmod, step))
|
2016-07-27 09:11:37 -05:00
|
|
|
smt.write("(assert (not (%s_is s%d)))" % (topmod, step))
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
if step == num_steps:
|
2015-10-13 17:18:38 -05:00
|
|
|
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))
|
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
if step > num_steps-skip_steps:
|
2015-10-13 17:18:38 -05:00
|
|
|
print("%s Skipping induction in step %d.." % (smt.timestamp(), step))
|
|
|
|
continue
|
|
|
|
|
2015-12-20 02:58:54 -06:00
|
|
|
skip_counter += 1
|
|
|
|
if skip_counter < step_size:
|
|
|
|
print("%s Skipping induction in step %d.." % (smt.timestamp(), step))
|
|
|
|
continue
|
|
|
|
|
|
|
|
skip_counter = 0
|
2015-10-13 17:18:38 -05:00
|
|
|
print("%s Trying induction in step %d.." % (smt.timestamp(), step))
|
|
|
|
|
|
|
|
if smt.check_sat() == "sat":
|
|
|
|
if step == 0:
|
2015-10-15 08:54:59 -05:00
|
|
|
print("%s Temporal induction failed!" % smt.timestamp())
|
2016-08-17 13:10:02 -05:00
|
|
|
print_failed_asserts(topmod, "s%d" % step, topmod)
|
2016-08-20 11:43:39 -05:00
|
|
|
write_trace(num_steps+1)
|
2015-10-13 17:18:38 -05:00
|
|
|
|
|
|
|
else:
|
2015-10-15 08:54:59 -05:00
|
|
|
print("%s Temporal induction successful." % smt.timestamp())
|
|
|
|
retstatus = True
|
2015-10-13 17:18:38 -05:00
|
|
|
break
|
|
|
|
|
2016-08-22 10:27:43 -05:00
|
|
|
|
2016-08-20 09:32:50 -05:00
|
|
|
elif gentrace:
|
|
|
|
retstatus = True
|
|
|
|
for step in range(num_steps):
|
|
|
|
smt.write("(declare-fun s%d () %s_s)" % (step, topmod))
|
|
|
|
smt.write("(assert (%s_u s%d))" % (topmod, step))
|
|
|
|
smt.write("(assert (%s_a s%d))" % (topmod, step))
|
|
|
|
smt.write("(assert (%s_h s%d))" % (topmod, step))
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_asserts, step))
|
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_assumes, step))
|
2016-08-20 09:32:50 -05:00
|
|
|
|
|
|
|
if step == 0:
|
|
|
|
smt.write("(assert (%s_i s0))" % (topmod))
|
|
|
|
smt.write("(assert (%s_is s0))" % (topmod))
|
|
|
|
|
|
|
|
else:
|
|
|
|
smt.write("(assert (%s_t s%d s%d))" % (topmod, step-1, step))
|
|
|
|
smt.write("(assert (not (%s_is s%d)))" % (topmod, step))
|
|
|
|
|
|
|
|
print("%s Creating trace of length %d.." % (smt.timestamp(), num_steps))
|
|
|
|
|
|
|
|
if smt.check_sat() == "sat":
|
2016-08-20 11:43:39 -05:00
|
|
|
write_trace(num_steps)
|
2016-08-20 09:32:50 -05:00
|
|
|
|
|
|
|
else:
|
|
|
|
print("%s Creating trace failed!" % smt.timestamp())
|
|
|
|
retstatus = False
|
|
|
|
|
2015-10-13 17:37:41 -05:00
|
|
|
|
2016-08-20 09:32:50 -05:00
|
|
|
else: # not tempind, not gentrace
|
2015-12-20 02:58:54 -06:00
|
|
|
step = 0
|
2015-10-15 08:54:59 -05:00
|
|
|
retstatus = True
|
2015-12-20 02:58:54 -06:00
|
|
|
while step < num_steps:
|
2015-10-13 17:18:38 -05:00
|
|
|
smt.write("(declare-fun s%d () %s_s)" % (step, topmod))
|
|
|
|
smt.write("(assert (%s_u s%d))" % (topmod, step))
|
2016-07-10 11:11:25 -05:00
|
|
|
smt.write("(assert (%s_h s%d))" % (topmod, step))
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_assumes, step))
|
2015-10-13 17:18:38 -05:00
|
|
|
|
|
|
|
if step == 0:
|
|
|
|
smt.write("(assert (%s_i s0))" % (topmod))
|
2016-07-27 09:11:37 -05:00
|
|
|
smt.write("(assert (%s_is s0))" % (topmod))
|
2015-10-13 17:18:38 -05:00
|
|
|
|
|
|
|
else:
|
|
|
|
smt.write("(assert (%s_t s%d s%d))" % (topmod, step-1, step))
|
2016-07-27 09:11:37 -05:00
|
|
|
smt.write("(assert (not (%s_is s%d)))" % (topmod, step))
|
2015-10-13 17:18:38 -05:00
|
|
|
|
2015-10-13 18:27:55 -05:00
|
|
|
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))
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_asserts, step))
|
2015-10-13 18:27:55 -05:00
|
|
|
else:
|
|
|
|
print("%s Skipping step %d.." % (smt.timestamp(), step))
|
2015-12-20 02:58:54 -06:00
|
|
|
step += 1
|
2015-10-13 18:27:55 -05:00
|
|
|
continue
|
|
|
|
|
2015-12-20 02:58:54 -06:00
|
|
|
last_check_step = step
|
|
|
|
for i in range(1, step_size):
|
|
|
|
if step+i < num_steps:
|
|
|
|
smt.write("(declare-fun s%d () %s_s)" % (step+i, topmod))
|
|
|
|
smt.write("(assert (%s_u s%d))" % (topmod, step+i))
|
2016-07-10 11:11:25 -05:00
|
|
|
smt.write("(assert (%s_h s%d))" % (topmod, step+i))
|
2015-12-20 02:58:54 -06:00
|
|
|
smt.write("(assert (%s_t s%d s%d))" % (topmod, step+i-1, step+i))
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_assumes, step+i))
|
2015-12-20 02:58:54 -06:00
|
|
|
last_check_step = step+i
|
|
|
|
|
|
|
|
if last_check_step == step:
|
|
|
|
print("%s Checking asserts in step %d.." % (smt.timestamp(), step))
|
|
|
|
else:
|
|
|
|
print("%s Checking asserts in steps %d to %d.." % (smt.timestamp(), step, last_check_step))
|
2015-10-13 17:18:38 -05:00
|
|
|
smt.write("(push 1)")
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert (not (and %s)))" % " ".join(["(%s_a s%d)" % (topmod, i) for i in range(step, last_check_step+1)] +
|
|
|
|
[get_constr_expr(constr_asserts, i) for i in range(step, last_check_step+1)]))
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
if smt.check_sat() == "sat":
|
|
|
|
print("%s BMC failed!" % smt.timestamp())
|
2016-08-17 13:10:02 -05:00
|
|
|
print_failed_asserts(topmod, "s%d" % step, topmod)
|
2016-08-20 11:43:39 -05:00
|
|
|
write_trace(step+step_size)
|
2015-10-15 08:54:59 -05:00
|
|
|
retstatus = False
|
2015-10-13 17:18:38 -05:00
|
|
|
break
|
2015-10-13 10:17:23 -05:00
|
|
|
|
2015-10-13 17:18:38 -05:00
|
|
|
else: # unsat
|
|
|
|
smt.write("(pop 1)")
|
2015-12-20 02:58:54 -06:00
|
|
|
for i in range(step, last_check_step+1):
|
|
|
|
smt.write("(assert (%s_a s%d))" % (topmod, i))
|
2016-08-22 10:27:43 -05:00
|
|
|
smt.write("(assert %s)" % get_constr_expr(constr_asserts, i))
|
2015-12-20 02:58:54 -06:00
|
|
|
|
|
|
|
step += step_size
|
2015-10-13 10:17:23 -05:00
|
|
|
|
|
|
|
|
|
|
|
smt.write("(exit)")
|
|
|
|
smt.wait()
|
|
|
|
|
2015-10-15 08:54:59 -05:00
|
|
|
print("%s Status: %s" % (smt.timestamp(), "PASSED" if retstatus else "FAILED (!)"))
|
|
|
|
sys.exit(0 if retstatus else 1)
|
|
|
|
|