Safe Haskell | None |
---|---|
Language | Haskell2010 |
We assume a class where we can do predicate transformation through function tau
,
and we can merge two predicates through function join
.
Moreover, we assume an implementation of a function implies
that implements symbolic implication.
Given these functions, we provide a generic abstract interpretation algorithm.
Synopsis
- class Show pred => Propagator ctxt pred where
- tau :: ctxt -> [Instruction] -> Maybe [Instruction] -> pred -> (pred, Set VerificationCondition)
- join :: ctxt -> String -> pred -> pred -> pred
- implies :: ctxt -> pred -> pred -> Bool
- do_prop :: Propagator ctxt pred => ctxt -> CFG -> Int -> pred -> (IntMap pred, Set VerificationCondition)
Documentation
class Show pred => Propagator ctxt pred where Source #
A class that allows propagation of predicates over a CFG.
tau :: ctxt -> [Instruction] -> Maybe [Instruction] -> pred -> (pred, Set VerificationCondition) Source #
Predicate transformation for an edge in in a CFG, over a basic blocks.
join :: ctxt -> String -> pred -> pred -> pred Source #
A lattice-join
implies :: ctxt -> pred -> pred -> Bool Source #
Symbolic implication
Instances
:: Propagator ctxt pred | |
=> ctxt | The context |
-> CFG | The CFG |
-> Int | The entry address |
-> pred | The initial predicate |
-> (IntMap pred, Set VerificationCondition) |
Start propagation at the given entry address with the given initial predicate. Returns a set of invariants, i.e., a mapping of instruction addresses to predicates.