package goblint
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=99b78e6def71534d195eef9084baa26d8334b36084e120aa6afb300c9bf8afa6
sha512=f3162bd95a03c00358a2991f6152fc6169205bfb4c55e2c483e98cc3935673df9656d025b6f1ea0fa5f1bd0aee037d4f483966b0d2907e3fa9bf11a93a3392af
doc/goblint_cdomain_value/IntDomain/index.html
Module IntDomain
Abstract domains for C integers.
module type Arith = sig ... endmodule type ArithIkind = sig ... endmodule type B = sig ... endThe signature of integral value domains. They need to support all integer * operations that are allowed in C
module type IkindUnawareS = sig ... endInterface of IntDomain implementations that do not take ikinds for arithmetic operations yet. TODO: Should be ported to S in the future.
module type S = sig ... endInterface of IntDomain implementations taking an ikind for arithmetic operations
module type SOverflow = sig ... endmodule type Y = sig ... endThe signature of integral value domains keeping track of ikind information
module type Ikind = sig ... endmodule PtrDiffIkind : Ikindmodule IntDomTuple : sig ... endval of_const : (Z.t * GoblintCil.Cil.ikind * string option) -> IntDomTuple.tmodule Size : sig ... endmodule BISet : SetDomain.S with type elt = Z.tAn exception that can be raised when the result of a computation is unknown. * This is caught by lifted domains and will be replaced by top.
An exception that can be raised when an arithmetic error occurs. This is * caught by lifted domains and the evaluation will then be set to bot, which * signifies an error in computation
module Integers
(Ints_t : IntOps.IntOps) :
IkindUnawareS with type t = Ints_t.t and type int_t = Ints_t.tPredefined domains
module FlatPureIntegers :
IkindUnawareS
with type t = IntOps.Int64Ops.t
and type int_t = IntOps.Int64Ops.tThe integers with flattened orderings. Calling top and bot or joining or meeting inequal elements will raise exceptions.
module Flattened :
IkindUnawareS
with type t = [ `Top | `Lifted of IntOps.Int64Ops.t | `Bot ]
and type int_t = IntOps.Int64Ops.tThis is the typical flattened integer domain used in Kildall's constant * propagation.
module Lifted :
IkindUnawareS
with type t = [ `Top | `Lifted of int64 | `Bot ]
and type int_t = int64Artificially bounded integers in their natural ordering.
module IntervalFunctor
(Ints_t : IntOps.IntOps) :
SOverflow
with type int_t = Ints_t.t
and type t = (Ints_t.t * Ints_t.t) optionmodule IntervalSetFunctor
(Ints_t : IntOps.IntOps) :
SOverflow with type int_t = Ints_t.t and type t = (Ints_t.t * Ints_t.t) listmodule Interval32 : Y with type int_t = IntOps.Int64Ops.tmodule IntervalSet : SOverflow with type int_t = Z.tmodule Congruence : S with type int_t = Z.tThe DefExc domain. The Flattened integer domain is topped by exclusion sets. * Good for analysing branches.
Domain constructors
module Flat
(Base : IkindUnawareS) :
IkindUnawareS
with type t = [ `Bot | `Lifted of Base.t | `Top ]
and type int_t = Base.int_tCreates a flat value domain, where all ordering is lost. Arithmetic * operations are lifted such that only lifted values can be evaluated * otherwise the top/bot is simply propagated with bot taking precedence over * top.
module Lift
(Base : IkindUnawareS) :
IkindUnawareS
with type t = [ `Bot | `Lifted of Base.t | `Top ]
and type int_t = Base.int_tJust like Value.Flat except the order is preserved.
module Reverse
(Base : IkindUnawareS) :
IkindUnawareS with type t = Base.t and type int_t = Base.int_tReverses bot, top, leq, join, meet
Interval domain with int64-s --- use with caution!
Boolean domains
module type BooleansNames = sig ... endParameter signature for the MakeBooleans functor.
module MakeBooleans (Names : BooleansNames) : IkindUnawareS with type t = boolCreates an abstract domain for integers represented by boolean values.
module Booleans : IkindUnawareS with type t = boolBoolean abstract domain, where true is output "True" and false is output * "False"