summaryrefslogtreecommitdiff
path: root/test/smt/concat_prop128.unsat.sail
diff options
context:
space:
mode:
authorAlasdair Armstrong2019-04-11 18:02:32 +0100
committerAlasdair Armstrong2019-04-11 18:07:49 +0100
commitc6e9b167b43332464f8d066034bf4604cb37d182 (patch)
tree79aea2ef5f837cffdbf9cddb1308e9c4ee31a2b8 /test/smt/concat_prop128.unsat.sail
parent7cb8cfe50e44e9984b83526baa97aa5946182ad6 (diff)
SMT: Add property and counterexample directive
Rather than generating SMT from a function called check_sat, now find any function with a $property directive and generate SMT for it, e.g. $property function prop_cap_round_trip(cap: bits(128)) -> bool = { let cap_rt = capToBits(capBitsToCapability(true, cap)); cap == cap_rt } $property function prop_base_lteq_top(capbits: bits(128)) -> bool = { let c = capBitsToCapability(true, capbits); let (base, top) = getCapBounds(c); let e = unsigned(c.E); e >= 51 | base <= top } The file property.ml has a function for gathering all the properties in a file, as well as a rewrite-pass for properties with type quantifiers, which allows us to handle properties like function prop forall 'n, 'n <= 100. (bv: bits('n)) -> bool = exp by rewriting to (conceptually) function prop(bv: bits(MAX_BIT_WIDTH)) -> bool = if length(bv) > 100 then true else exp The function return is now automatically negated (i.e. always true = unsat, sometimes false = sat), which makes sense for quickcheck-type properties.
Diffstat (limited to 'test/smt/concat_prop128.unsat.sail')
-rw-r--r--test/smt/concat_prop128.unsat.sail5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/smt/concat_prop128.unsat.sail b/test/smt/concat_prop128.unsat.sail
index 3d8ea45f..4205db10 100644
--- a/test/smt/concat_prop128.unsat.sail
+++ b/test/smt/concat_prop128.unsat.sail
@@ -5,7 +5,8 @@ $include <prelude.sail>
register R1 : bits(64)
register R2 : bits(64)
-function check_sat('sz: range(0, 64)) -> bool = {
+$property
+function prop('sz: range(0, 64)) -> bool = {
let z: bits('sz) = sail_zeros(sz);
let x: bits('sz + 64) = R1 @ z;
let y: bits(64 + 'sz) = R2 @ z;
@@ -14,5 +15,5 @@ function check_sat('sz: range(0, 64)) -> bool = {
// A and B must be equal
let A = x @ y;
let B = or_vec(sail_shiftleft(padding @ x, length(y)), padding @ y);
- not_bool(A == B)
+ A == B
}