Commit Graph

31 Commits

Author SHA1 Message Date
Rob Dockins
f353e46be3 Use a custom datastructure for the bitwise OR of bitvectors rather
than abusing the structure for semiring products.
2020-01-13 14:55:44 -08:00
Rob Dockins
7b3ea17a91 Update what4 translators for SAW and ABC to fail on string operations 2019-11-14 17:08:45 -08:00
Rob Dockins
2941e6f07b Update downstream packages with String type updates 2019-11-14 17:08:44 -08:00
Rob Dockins
c5e7278af2 Add rotate operations to the ABC backend 2019-05-28 09:46:01 -07:00
Rob Dockins
7b7c79a632 Generalize the predToBV expression to bvFill, which construts a bitvector
of arbitrary length where every bit is defined by the input predicate.
2019-05-23 15:21:20 -07:00
Langston Barrett
3f37377ce3 Merge remote-tracking branch 'upstream/master' into travis-hlint-2 2019-05-08 09:53:58 -07:00
Langston Barrett
04a6db91e7 Fix additional language pragma whitespace, remove a few more 2019-05-01 14:44:56 -07:00
Langston Barrett
230502c784 (partially) fix hlint warning: Unused LANGUAGE pragma 2019-04-30 15:38:36 -07:00
Langston Barrett
c0e5e8305e fix hlint warning: Redundant $! 2019-04-30 13:15:54 -07:00
Rob Dockins
e55f5100c1 Add explicit representation for disjunction to What4 rather than
using negations and conjunction only.
2019-03-15 16:05:29 -07:00
Rob Dockins
7488b58fa1 Implement n-way conjunctions instead of a binary AND operator for
boolean formulae in What4.  This datastructure automatically implements
associative-commutative-idempotent rewriting as well as recognizing
resolution opportunities (i.e. A /\ ~A = False).
2019-03-15 12:38:20 -07:00
Rob Dockins
1e7dee2792 Enhance the representation of semiring products. We now explicitly
gather products.

In addition, use similar machenery to represent bitwise disjunction.
This gives additional boolean lattice reductions, including absorption
and idempotency.
2019-03-14 16:15:47 -07:00
Rob Dockins
5e6b187a31 Reorganize quite a few pieces of the What4 bitvector representation,
and generalize equality and if/then/else to work over all base types.

Bitvectors now are paricipants in two different semiring instances:
the usual arithmetic one and a bitwise one based on XOR and AND.
This allows automatic term gathering, XOR-canceling and other
similar simplifications to occur automatically.
2019-03-11 18:41:41 -07:00
Rob Dockins
4015ec8381 Continue refactoring to use Natural instead of Integer in
places where it makes sense.
2019-02-07 16:44:05 -08:00
Rob Dockins
772d3c2f2f Add popCount, countTrailingZeros and countLeadingZeros as new
bitvector operations in `what4`.

Solvers don't generally have primitives for these, but it is nonethess useful,
I think, to provide them as operations.  A collection of useful rewrites
could probably be added (e.g., interesting interaction with concat).
2018-12-20 14:35:58 -08:00
Rob Dockins
db251dc763 Update BLT and ABC support for what4 to handle cases where
variables are declared with bounds.
2018-12-13 14:25:32 -08:00
Kevin Quick
cdd3bb4476 Merge branch 'master' of github.com:GaloisInc/crucible 2018-11-15 12:22:42 -08:00
Jennifer Paykin
bf09ca6ff0 Updated remaining modules to work with updated LogData interface to what4 solvers 2018-11-13 18:51:02 -08:00
Kevin Quick
d51a6f96f7 Bump upper limits on base to allow GHC 8.6 compilation. 2018-11-06 13:18:54 -08:00
Rob Dockins
88c65dd54a Update to the text-interaction mode for SMT solvers.
This update fixes a variety of issues with solver interaction involving
the named assertion and unsat core updates.  CVC4, Z3 and Yices now will
properly issue queries and return resuts.

In addition, a variety of refactorings were made to the interaction code
that should make things more uniform going forward.  As part of these
refactorings, it is now possible to pass an "auxiliary output" file handle
when interacting with solvers.  If provided, solver commands and responses
will be echoed into this file for debugging purposes.
2018-10-31 10:39:43 -07:00
Rob Dockins
c64675f2f7 Modify the API for solver queries so that they take a list of predicates
instead of just a single predicate.  The semantics of the query is
just the conjunction of the given predicates.  However, for the purposes
of computing unsatisfiable cores, the list of given predicates
will be the atomic units that will either appear (or not) in the
generated unsat cores, for those solvers which support computing
unsat cores.
2018-10-08 10:52:27 -07:00
Rob Dockins
b13e0f36dc Add a new parameter to the SatResult data type for reporting
unsatisfiable cores when we get an UNSAT result.  Propigate
the minimum necessary changes.
2018-10-05 10:01:02 -07:00
Rob Dockins
e911897d72 Update what4 and crucible packages to make use of the new
solver event logging facilities.
2018-09-17 16:15:03 -07:00
Rob Dockins
e04f4878fe Remove the BVTrunc constructor from crucible-saw and what4-abc. 2018-09-11 14:22:30 -07:00
Rob Dockins
774902ef2d Fix incomplete pattern warning 2018-08-29 18:09:10 -07:00
Andrei Stefanescu
fe06682fe7 Floating-point improvements. 2018-08-28 14:00:21 -07:00
Rob Dockins
d7d601a872 Update crucible libraries to track what4 changes.
Additionally, minor related fixes in the SAWCore backend.
2018-08-14 16:19:47 -07:00
Rob Dockins
acda0fa7cb Stub-out and provide error messages for floating-point expressions in
ABC and Yices.
2018-08-13 13:40:40 -07:00
Rob Dockins
6716b6f45f Change the predToBV operation so that it is a full-fledged operator
in the expression builder.  That way, it can be fully elminated when
it encounters a `bvNonzero` or `bvTestBit` operation, etc.

This should remove some of the noisy patterns that otherwise arise,
especially from the LLVM translation, which uses length 1 bitvectors
as a stand-in for boolean values.
2018-08-08 15:10:36 -07:00
Rob Dockins
fd34b7e1d9 Various updates to the what4 integer, natural nubmer and bitvector theories.
This commit mainly does two things:

* Add more robust support for the integer theory, including `div`, `mod`, `abs` and `divisible`.
* Audit the semantics of the `integerToBV` operations, and fix lingering bugs.

In the past, there were two different integer->BV operations, because we used a clamping semantics,
and it made sense to have a signed versus unsigned distinction.  Now, however, we are using
a modulo `2^n` semantics, and there is only one operation.  However, some places in the code were
still using the clamped semantics.  These placses have now been cleaned up, and everywhere should
be using the modular arithmetic view.

In addition, I've reduced the need to use the expensive BV->Integer and Integer->BV coersions somewhat
by noticing when we round trip through those coercions more often and translating the result into
statements of modular arithmetic instead.

Along the way, I improved the abstract domain definitions for division and modulus.
2018-08-07 11:53:02 -07:00
Rob Dockins
9c34e5bbb4 Rename the crucible-abc package to what4-abc 2018-05-10 18:05:54 -07:00