package frama-c
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
TTristan Le Gall
-
JJean-Christophe Léchenet
-
MMatthieu Lemerre
-
DDara Ly
-
DDavid Maison
-
CClaude Marché
-
AAndré Maroneze
-
TThibault Martin
-
FFonenantsoa Maurica
-
MMelody Méaulle
-
BBenjamin Monate
-
YYannick Moy
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
MMuriel Roger
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=5b13574a16a58971c27909bee94ae7f37b17d897852b40c768a3d4e2e09e39d2
doc/frama-c.kernel/Frama_c_kernel/Function_Froms/index.html
Module Frama_c_kernel.Function_Froms
Datastructures and common operations for the results of the From plugin.
module Deps : sig ... end
module DepsOrUnassigned : sig ... end
module Memory : sig ... end
type 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 = froms
include Datatype.S_no_copy with type t = froms
val packed_descr : Structural_descr.pack
Packed version of the descriptor.
val reprs : t list
List of representants of the descriptor.
val hash : t -> int
Hash function: same spec than Hashtbl.hash
.
val pretty : Format.formatter -> t -> unit
Pretty print each value in an user-friendly way.
val mem_project : (Project_skeleton.t -> bool) -> t -> bool
mem_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 : froms
val pretty_with_type : Cil_types.typ -> froms Pretty_utils.formatter
Display dependencies of a function, using the function's type to improve readability
val pretty_with_type_indirect : Cil_types.typ -> froms Pretty_utils.formatter
Display dependencies of a function, using the function's type to improve readability, separating direct and indirect dependencies
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
.