package goblint

  1. Overview
  2. Docs
Static analysis framework for C

Install

dune-project
 Dependency

Authors

Maintainers

Sources

goblint-2.8.0.tbz
sha256=9175eec0143102243964e34a0786584fd590c60422009259c705a89a27f88de4
sha512=9d760007dd8d003cf596516444ed7acc7370fc3d446e75ac71b0176522c3baae090410762f9035e7aae4f6b0e394bf28bb5b1c08ca0476920b94aa919ef04f42

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);
  10. usesApron : bool;
}
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:??? -> ?usesApron:??? -> (module Analyses.MCPSpec) -> unit
val registered_simplified_analysis : (module SimplifiedAnalysis.SimplifiedSpec) -> unit
val find_spec : int -> spec_modules
val find_spec_name : int -> string
val find_id : string -> int
val any_activated_uses_apron : unit -> bool
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