package goblint

  1. Overview
  2. Docs
Static analysis framework for C

Install

dune-project
 Dependency

Authors

Maintainers

Sources

goblint-2.6.0.tbz
sha256=20d5b7332a9f6072ab9ba86c4a53b898eaf681286c56a8805c41850bbf3ddf41
sha512=7c7685cfcd9aa866bc40e813df2bfcb3c79b3d40e615d8d6d0939c5798b9d70dd7f2ba87a741f5ba0ce891e9d254627207fb28057f1f2f6611e4e0d128fd6a71

doc/goblint.lib/Goblint_lib/MCPRegistry/index.html

Module Goblint_lib.MCPRegistry

Registry of dynamically activatable analyses. Analysis specification modules for the dynamic product.

type spec_modules = {
  1. name : string;
  2. dep : string list;
  3. spec : (module Analyses.MCPSpec);
  4. dom : (module Lattice.S);
  5. glob : (module Lattice.S);
  6. cont : (module Printable.S);
  7. var : (module Analyses.SpecSysVar);
  8. acc : (module Analyses.MCPA);
  9. path : (module DisjointDomain.Representative);
}
val activated : (int * spec_modules) list ref
val activated_context_sens : (int * spec_modules) list ref
val activated_path_sens : (int * spec_modules) list ref
val registered : (int, spec_modules) Batteries.Hashtbl.t
val registered_name : (string, int) Batteries.Hashtbl.t
val register_analysis : ?dep:string list -> (module Analyses.MCPSpec) -> unit
val find_spec : int -> spec_modules
val find_spec_name : int -> string
val find_id : string -> int
module type DomainListPrintableSpec = sig ... end
module type DomainListRepresentativeSpec = sig ... end
module type DomainListSysVarSpec = sig ... end
module type DomainListMCPASpec = sig ... end
module type DomainListLatticeSpec = sig ... end
module DomListPrintable (DLSpec : DomainListPrintableSpec) : Printable.S with type t = (int * Obj.t) list
module DomListRepresentative (DLSpec : DomainListRepresentativeSpec) : DisjointDomain.Representative with type t = (int * Obj.t) list and type elt = (int * Obj.t) list
module DomListLattice (DLSpec : DomainListLatticeSpec) : Lattice.S with type t = (int * Obj.t) list