Module Function_Froms

module Function_Froms: sig .. end
Information computed by the From plugin for each function.

type froms = {
   deps_return :Lmap_bitwise.From_Model.LOffset.t; (*Dependencies for the returned value*)
   deps_table :Lmap_bitwise.From_Model.t; (*Dependencies on all the zones modified by the function*)
}
include Datatype.S
val join : froms -> froms -> froms
val top : froms
val pretty_with_type : Cil_types.typ -> froms Pretty_utils.formatter
val outputs : froms -> Locations.Zone.t
Extract the left part of a from result, ie. the zones that are written
val inputs : ?include_self:bool -> froms -> Locations.Zone.t
Extract 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.