Frama_c_kernel.Function_FromsDatastructures and common operations for the results of the From plugin.
module Deps : sig ... endmodule DepsOrUnassigned : sig ... endmodule Memory : sig ... endtype froms = {deps_return : Memory.return;Dependencies for the returned value
*)deps_table : Memory.t;Dependencies on all the zones modified by the function
*)}include Datatype.S with type t = fromsinclude Datatype.S_no_copy with type t = fromsval packed_descr : Structural_descr.packPacked version of the descriptor.
val reprs : t listList of representants of the descriptor.
val hash : t -> intHash function: same spec than Hashtbl.hash.
val pretty : Format.formatter -> t -> unitPretty print each value in an user-friendly way.
val mem_project : (Project_skeleton.t -> bool) -> t -> boolmem_project f x must return true iff there is a value p of type Project.t in x such that f p returns true.
val top : fromsval pretty_with_type : Cil_types.typ -> froms Pretty_utils.formatterDisplay dependencies of a function, using the function's type to improve readability
val pretty_with_type_indirect : Cil_types.typ -> froms Pretty_utils.formatterDisplay dependencies of a function, using the function's type to improve readability, separating direct and indirect dependencies
val outputs : froms -> Locations.Zone.tExtract the left part of a from result, ie. the zones that are written
val inputs : ?include_self:bool -> froms -> Locations.Zone.tExtract the right part of a from result, ie. the zones on which the written zones depend. If include_self is true, and the from is of the form x FROM y (and SELF), x is added to the result; default value is false.