module type INOUT = sig
.. end
Signature for inputs and/or outputs computations.
type
t
val self_internal : Project.Computation.t Pervasives.ref
val self_external : Project.Computation.t Pervasives.ref
val compute : (Db_types.kernel_function -> unit) Pervasives.ref
val get_internal : (Db_types.kernel_function -> t) Pervasives.ref
Inputs/Outputs with local and formal variables
val get_external : (Db_types.kernel_function -> t) Pervasives.ref
Inputs/Outputs without either local or formal variables
val statement : (Cil_types.stmt -> t) Pervasives.ref
val expr : (Cil_types.stmt -> Cil_types.exp -> t) Pervasives.ref
val kinstr : Cil_types.kinstr -> t option
Effects of the given statement or of the englobing statement
Pretty printing
val display : (Format.formatter -> Db_types.kernel_function -> unit) Pervasives.ref
val pretty : Format.formatter -> t -> unit