Module InferModules.AbstractDomain
module Types : sig ... endexceptionStop_analysisThis exception can be raised by abstract interpreters to stop the analysis early without triggering further errors. Clients who raise this exception should catch it eventually.
module type NoJoin = sig ... endmodule type S = sig ... endmodule type WithBottom = sig ... endA domain with an explicit bottom value
module type WithTop = sig ... endA domain with an explicit top value
module BottomLifted : functor (Domain : S) -> sig ... endCreate a domain with Bottom element from a pre-domain
module BottomLiftedUtils : sig ... endmodule TopLifted : functor (Domain : S) -> WithTop with type t = Domain.t Types.top_liftedCreate a domain with Top element from a pre-domain
module TopLiftedUtils : sig ... endmodule Pair : functor (Domain1 : S) -> functor (Domain2 : S) -> S with type t = Domain1.t * Domain2.tCartesian product of two domains.
module Flat : functor (V : InferStdlib.PrettyPrintable.PrintableEquatableType) -> sig ... endFlat abstract domain: Bottom, Top, and non-comparable elements in between
module StackedUtils : sig ... endmodule MinReprSet : functor (Element : InferStdlib.PrettyPrintable.PrintableOrderedType) -> sig ... endAbstracts a set of
Elements by keeping its smallest representative only. The widening is terminating only if the order fulfills the descending chain condition.
module type FiniteSetS = sig ... endinclude sig ... end
module FiniteSetOfPPSet : functor (PPSet : InferStdlib.PrettyPrintable.PPSet) -> FiniteSetS with type FiniteSetOfPPSet.elt = PPSet.eltLift a PPSet to a powerset domain ordered by subset. The elements of the set should be drawn from a *finite* collection of possible values, since the widening operator here is just union.
module FiniteSet : functor (Element : InferStdlib.PrettyPrintable.PrintableOrderedType) -> FiniteSetS with type FiniteSet.elt = Element.tLift a set to a powerset domain ordered by subset. The elements of the set should be drawn from a *finite* collection of possible values, since the widening operator here is just union.
module type InvertedSetS = sig ... endmodule InvertedSet : functor (Element : InferStdlib.PrettyPrintable.PrintableOrderedType) -> InvertedSetS with type InvertedSet.elt = Element.tLift a set to a powerset domain ordered by superset, so the join operator is intersection
module type MapS = sig ... endinclude sig ... end
module MapOfPPMap : functor (PPMap : InferStdlib.PrettyPrintable.PPMap) -> functor (ValueDomain : S) -> MapS with type key = PPMap.key and type value = ValueDomain.t and type t = ValueDomain.t PPMap.tMap domain ordered by union over the set of bindings, so the bottom element is the empty map. Every element implicitly maps to bottom unless it is explicitly bound to something else. Uses PPMap as the underlying map
module Map : functor (Key : InferStdlib.PrettyPrintable.PrintableOrderedType) -> functor (ValueDomain : S) -> MapS with type key = Key.t and type value = ValueDomain.tMap domain ordered by union over the set of bindings, so the bottom element is the empty map. Every element implicitly maps to bottom unless it is explicitly bound to something else
module type InvertedMapS = sig ... endmodule InvertedMap : functor (Key : InferStdlib.PrettyPrintable.PrintableOrderedType) -> functor (ValueDomain : S) -> InvertedMapS with type key = Key.t and type value = ValueDomain.tMap domain ordered by intersection over the set of bindings, so the top element is the empty map. Every element implictly maps to top unless it is explicitly bound to something else
include sig ... end
module FiniteMultiMap : functor (Key : InferStdlib.PrettyPrintable.PrintableOrderedType) -> functor (Value : InferStdlib.PrettyPrintable.PrintableOrderedType) -> sig ... endmodule BooleanAnd : S with type t = boolBoolean domain ordered by p || ~q. Useful when you want a boolean that's true only when it's true in both conditional branches.
module BooleanOr : WithBottom with type t = boolBoolean domain ordered by ~p || q. Useful when you want a boolean that's true only when it's true in one conditional branch.
module type MaxCount = sig ... endmodule CountDomain : functor (MaxCount : MaxCount) -> sig ... endDomain keeping a non-negative count with a bounded maximum value. The count can be only incremented and decremented
module StackDomain : functor (Element : InferStdlib.PrettyPrintable.PrintableOrderedType) -> sig ... endDomain whose members are stacks of elements (lists, last pushed is head of the list), partially ordered by the prefix relation (
c;b;a<=b;a), and whose join computes the longest common prefix (soc;b;ajoinf;g;b;c;a=a), so the top element is the empty stack.