Skip to content
Snippets Groups Projects
Commit d6c4ede6 authored by David Bühler's avatar David Bühler
Browse files

[from] Minor reorganization of the From.mli interface.

parent aff1407c
No related branches found
No related tags found
No related merge requests found
File moved
...@@ -22,16 +22,25 @@ ...@@ -22,16 +22,25 @@
open Cil_types open Cil_types
val self : State.t (** {3 Analysis} *)
val is_computed : kernel_function -> bool val is_computed : kernel_function -> bool
val compute : kernel_function -> unit val compute : kernel_function -> unit
val compute_all : unit -> unit val compute_all : unit -> unit
val compute_all_calldeps : unit -> unit
val get : Cil_types.kernel_function -> Function_Froms.froms val get : Cil_types.kernel_function -> Function_Froms.froms
val access : Locations.Zone.t -> Function_Froms.Memory.t -> Locations.Zone.t val access : Locations.Zone.t -> Function_Froms.Memory.t -> Locations.Zone.t
val self : State.t
(** {3 Pretty-printing} *)
val pretty : Format.formatter -> kernel_function -> unit val pretty : Format.formatter -> kernel_function -> unit
val display : Format.formatter -> unit val display : Format.formatter -> unit
(** {3 Callsite-wise analysis} *)
val compute_all_calldeps : unit -> unit
module Callwise : sig module Callwise : sig
val iter : (Cil_types.kinstr -> Function_Froms.froms -> unit) -> unit val iter : (Cil_types.kinstr -> Function_Froms.froms -> unit) -> unit
val find : Cil_types.kinstr -> Function_Froms.froms val find : Cil_types.kinstr -> Function_Froms.froms
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment