package goblint

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module H = MyCFG.NodeH
module NH = MyCFG.NodeH
val find_backwards_reachable : initial_size:int -> (module MyCFG.CfgBackward) -> MyCFG.node -> unit NH.t
module SCC : sig ... end

Strongly connected component.

val computeSCCs : (module MyCFG.CfgBidir) -> NH.key list -> SCC.t list * SCC.t NH.t
val pretty_edges : unit -> ('a * Edge.t) list -> GoblintCil.Pretty.doc
val get_pseudo_return_id : GoblintCil.fundec -> int
val node_scc_global : SCC.t NH.t
exception Not_connect of GoblintCil.fundec
val createCFG : GoblintCil.file -> ((GoblintCil.Cil.location * Edge.t) list * Node.t) list H.t * ((GoblintCil.Cil.location * Edge.t) list * Node.t) list H.t
val minimizeCFG : ('a list H.t * ('b list * H.key) list H.t) -> ('c list * H.key) list H.t * ('d list * H.key) list H.t
module type CfgPrinters = sig ... end
module type NodeStyles = sig ... end
module CfgPrinters (NodeStyles : NodeStyles) : sig ... end
val fprint_dot : (module CfgPrinters) -> ((MyCFG.node -> ((GoblintCil.location * MyCFG.edge) list * MyCFG.node) -> unit) -> 'a) -> Format.formatter -> unit
val fprint_hash_dot : ((GoblintCil.location * MyCFG.edge) list * MyCFG.node) list H.t -> unit
val iter_fd_edges : (module MyCFG.CfgBackward) -> CilType.Fundec.t -> (MyCFG.node -> ((GoblintCil.location * Edge.t) list * Node.t) -> unit) -> unit
val fprint_fundec_html_dot : (module MyCFG.CfgBidir) -> (MyCFG.node -> bool) -> CilType.Fundec.t -> Format.formatter -> unit
val sprint_fundec_html_dot : (module MyCFG.CfgBidir) -> (MyCFG.node -> bool) -> CilType.Fundec.t -> string
val dead_code_cfg : GoblintCil.file -> (module MyCFG.CfgBidir) -> (MyCFG.node -> bool) -> unit
val getGlobalInits : GoblintCil.file -> MyCFG.edges
val numGlobals : GoblintCil.Cil.file -> int