package frama-c
Install
Dune Dependency
Authors
-
MMichele Alberti
-
TThibaud Antignac
-
GGergö Barany
-
PPatrick Baudin
-
NNicolas Bellec
-
TThibaut Benjamin
-
AAllan Blanchard
-
LLionel Blatter
-
FFrançois Bobot
-
RRichard Bonichon
-
VVincent Botbol
-
QQuentin Bouillaguet
-
DDavid Bühler
-
ZZakaria Chihani
-
SSylvain Chiron
-
LLoïc Correnson
-
JJulien Crétin
-
PPascal Cuoq
-
ZZaynah Dargaye
-
BBasile Desloges
-
JJean-Christophe Filliâtre
-
PPhilippe Herrmann
-
MMaxime Jacquemin
-
BBenjamin Jorge
-
FFlorent Kirchner
-
AAlexander Kogtenkov
-
RRemi Lazarini
-
TTristan Le Gall
-
KKilyan Le Gallic
-
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
-
PPierre Nigron
-
AAnne Pacalet
-
VValentin Perrelle
-
GGuillaume Petiot
-
DDario Pinto
-
VVirgile Prevosto
-
AArmand Puccetti
-
FFélix Ridoux
-
VVirgile Robles
-
JJan Rochel
-
MMuriel Roger
-
CCécile Ruet-Cros
-
JJulien Signoles
-
NNicolas Stouls
-
KKostyantyn Vorobyov
-
BBoris Yakobowski
Maintainers
Sources
sha256=095ffbb3086a6cd963a03e3defab4f0dc32e9a43f026e552ec9ae346a6e20522
doc/frama-c-inout.core/Inout/index.html
Module Inout
Source
val expr_inputs :
Frama_c_kernel.Cil_types.stmt ->
Frama_c_kernel.Cil_types.exp ->
Frama_c_kernel.Locations.Zone.t
Returns the memory zone needed to evaluate the given expression at the given statement.
Returns the memory zone read by the given statement.
Returns the memory zone modified by the given statement.
Returns the memory zone read by the given function, including its local and formal variables.
val kf_external_inputs :
Frama_c_kernel.Cil_types.kernel_function ->
Frama_c_kernel.Locations.Zone.t
Returns the memory zone read by the given function, without its local and formal variables.
Returns the memory zone modified by the given function, including its local and formal variables.
val kf_external_outputs :
Frama_c_kernel.Cil_types.kernel_function ->
Frama_c_kernel.Locations.Zone.t
Returns the memory zone modified by the given function, without its local and formal variables.
val get_precise_inout :
?stmt:Frama_c_kernel.Cil_types.stmt ->
Frama_c_kernel.Cil_types.kernel_function ->
Frama_c_kernel.Inout_type.t
Returns the inputs/outputs computed for the given function. If stmt
is specified and is a possible call to the given function, returns the inputs/outputs for this call specifically.