package goblint
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=999272bfbd3b9b96fcd58987b237ac6e9fa6d92ef935cc89f1ea2b4205185141
sha512=f3bf6ab71cf8c258d3290da4bf9f6fe42d7c671822e0efeb0fc50afdff078ab15e352237e5c1db31c5aa3a9d430691268ed2e5e00da10f2615835f672f91683d
doc/goblint.lib/Constraints/index.html
Module Constraints
How to generate constraints for a solver using specifications described in Analyses.
module M = Messagesmodule HashconsLifter
(S : Analyses.Spec) :
Analyses.Spec
with module D = Lattice.HConsed(S.D)
and module G = S.G
and module C = S.CLifts a Spec so that the domain is Hashconsd
module HashconsContextLifter
(S : Analyses.Spec) :
Analyses.Spec
with module D = S.D
and module G = S.G
and module C = Printable.HConsed(S.C)Lifts a Spec so that the context is Hashconsd.
module OptEqual (S : Analyses.Spec) : sig ... endmodule LevelSliceLifter
(S : Analyses.Spec) :
Analyses.Spec
with module D = Lattice.Prod(S.D)(Lattice.Reverse(IntDomain.Lifted))
and module G = S.G
and module C = S.CIf dbg.slice.on, stops entering functions after dbg.slice.n levels.
module LimitLifter (S : Analyses.Spec) : sig ... endLimits the number of widenings per node.
module WidenContextLifterSide (S : Analyses.Spec) : sig ... endmodule DeadCodeLifter
(S : Analyses.Spec) :
Analyses.Spec
with module D = Analyses.Dom(S.D)
and module G = S.G
and module C = S.CLifts a Spec with a special bottom element that represent unreachable code.
module type Increment = sig ... endmodule FromSpec
(S : Analyses.Spec)
(Cfg : MyCFG.CfgBackward)
(I : Increment) :
sig ... endThe main point of this file---generating a GlobConstrSys from a Spec.
module EqIncrSolverFromEqSolver
(Sol : Analyses.GenericEqBoxSolver) :
Analyses.GenericEqBoxIncrSolverConvert a non-incremental solver into an "incremental" solver. It will solve from scratch, perform standard postsolving and have no marshal data.
module Var2
(LV : Analyses.VarType)
(GV : Analyses.VarType) :
Analyses.VarType with type t = [ `L of LV.t | `G of GV.t ]Combined variables so that we can also use the more common EqConstrSys that uses only one kind of a variable.
module EqConstrSysFromGlobConstrSys
(S : Analyses.GlobConstrSys) :
Analyses.EqConstrSys
with type v = Var2(S.LVar)(S.GVar).t
and type d = Lattice.Lift2(S.G)(S.D)(Printable.DefaultNames).t
and module Var = Var2(S.LVar)(S.GVar)
and module Dom = Lattice.Lift2(S.G)(S.D)(Printable.DefaultNames)Translate a GlobConstrSys into a EqConstrSys
module GlobConstrSolFromEqConstrSolBase
(S : Analyses.GlobConstrSys)
(LH : Prelude.Hashtbl.S with type key = S.LVar.t)
(GH : Prelude.Hashtbl.S with type key = S.GVar.t)
(VH : Prelude.Hashtbl.S with type key = Var2(S.LVar)(S.GVar).t) :
sig ... endSplits a EqConstrSys solution into a GlobConstrSys solution with given Hashtbl.S for the EqConstrSys.
module GlobConstrSolFromEqConstrSol
(S : Analyses.GlobConstrSys)
(LH : Prelude.Hashtbl.S with type key = S.LVar.t)
(GH : Prelude.Hashtbl.S with type key = S.GVar.t) :
sig ... endSplits a EqConstrSys solution into a GlobConstrSys solution.
module GlobSolverFromEqSolver
(Sol : Analyses.GenericEqBoxIncrSolverBase) :
Analyses.GenericGlobSolverTransforms a GenericEqBoxIncrSolver into a GenericGlobSolver.
module PathSensitive2
(Spec : Analyses.Spec) :
Analyses.Spec
with type D.t = HoareDomain.Set(Spec.D).t
and module G = Spec.G
and module C = Spec.CAdd path sensitivity to a analysis
module Compare
(S : Analyses.Spec)
(Sys :
Analyses.GlobConstrSys
with module LVar = Analyses.VarF(S.C)
and module GVar = Basetype.Variables
and module D = S.D
and module G = S.G)
(LH : Prelude.Hashtbl.S with type key = Sys.LVar.t)
(GH : Prelude.Hashtbl.S with type key = Sys.GVar.t) :
sig ... endmodule CompareEq
(Sys : Analyses.EqConstrSys)
(VH : Prelude.Hashtbl.S with type key = Sys.Var.t) :
sig ... end