package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

How to generate constraints for a solver using specifications described in Analyses.

module M = Messages
module HashconsLifter (S : Analyses.Spec) : Analyses.Spec with module D = Lattice.HConsed(S.D) and module G = S.G and module C = S.C

Lifts 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 ... end

If dbg.slice.on, stops entering functions after dbg.slice.n levels.

module LimitLifter (S : Analyses.Spec) : sig ... end

Limits the number of widenings per node.

module WidenContextLifterSide (S : Analyses.Spec) : sig ... end
module DeadCodeLifter (S : Analyses.Spec) : Analyses.Spec with module D = Analyses.Dom(S.D) and module G = S.G and module C = S.C

Lifts a Spec with a special bottom element that represent unreachable code.

module type Increment = sig ... end
module FromSpec (S : Analyses.Spec) (Cfg : MyCFG.CfgBackward) (I : Increment) : sig ... end

The main point of this file---generating a GlobConstrSys from a Spec.

Convert 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.

Splits a EqConstrSys solution into a GlobConstrSys solution with given Hashtbl.S for the EqConstrSys.

Splits a EqConstrSys solution into a GlobConstrSys solution.

Transforms 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.C and module V = Spec.V

Add path sensitivity to a analysis

EqConstrSys where current_var indicates the variable whose right-hand side is currently being evaluated.