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-slicing.core/Slicing/Api/Project/index.html
Module Api.Project
Source
Slicing project management.
Init/reset a slicing project.
Change the slicing level of this function (see the -slicing-level
option documentation to know the meaning of the number)
val extract :
?f_slice_names:
(Frama_c_kernel.Cil_types.kernel_function -> bool -> int -> string) ->
string ->
Frama_c_kernel.Project.t
Build a new Db.Project.t
from all Slice.t
of a project. Can optionally specify how to name the sliced functions by defining f_slice_names
. f_slice_names kf src_visi num_slice
has to return the name of the exported functions based on the source function kf
.
src_visi
tells if the source function name is used (if not, it can be used for a slice)num_slice
gives the number of the slice to name. The entry point function is only exported once : it is VERY recommended to give to it its original name, even if it is sliced.
Print a representation of the slicing project (call graph) in a dot file which name is the given string.
No needs of Journalization
Return true
iff the source function is called (even indirectly via transitivity) from a Slice.t
.
Return true
iff the source function has persistent selection
Return true
if the source function is directly (even via pointer function) called from a Slice.t
.