Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
c28d06b8
Commit
c28d06b8
authored
3 years ago
by
Patrick Baudin
Committed by
Allan Blanchard
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Slicing] extracts comments of the Slicing API from an older db.ml
parent
4130bab7
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/plugins/slicing/api.ml
+0
-1
0 additions, 1 deletion
src/plugins/slicing/api.ml
src/plugins/slicing/api.mli
+308
-243
308 additions, 243 deletions
src/plugins/slicing/api.mli
src/plugins/slicing/slicingSelect.mli
+41
-41
41 additions, 41 deletions
src/plugins/slicing/slicingSelect.mli
with
349 additions
and
285 deletions
src/plugins/slicing/api.ml
+
0
−
1
View file @
c28d06b8
...
...
@@ -164,7 +164,6 @@ module Select = struct
let
dyn_t
=
SlicingTypes
.
Sl_select
.
ty
type
set
=
SlicingCmds
.
set
module
S
=
Cil_datatype
.
Varinfo
.
Map
.
Make
(
SlicingTypes
.
Fct_user_crit
)
type
selections
=
S
.
t
let
dyn_set
=
S
.
ty
(** {2 Journalized selectors } *)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/slicing/api.mli
+
308
−
243
View file @
c28d06b8
This diff is collapsed.
Click to expand it.
src/plugins/slicing/slicingSelect.mli
+
41
−
41
View file @
c28d06b8
...
...
@@ -24,14 +24,14 @@ val check_call : Cil_types.stmt -> bool -> Cil_types.stmt
val
print_select
:
Format
.
formatter
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
unit
SlicingTypes
.
sl_selec
t
->
unit
val
get_select_kf
:
Cil_types
.
varinfo
*
'
a
->
Cil_types
.
kernel_function
val
check_db_select
:
Cil_datatype
.
Varinfo
.
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_selec
t
val
empty_db_select
:
Kernel_function
.
t
->
Cil_types
.
varinfo
*
SlicingInternals
.
fct_user_crit
...
...
@@ -43,30 +43,30 @@ val top_db_select :
val
check_kf_db_select
:
Kernel_function
.
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_selec
t
val
check_ff_db_select
:
SlicingInternals
.
fct_slice
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
SlicingTypes
.
sl_selec
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
bottom_msg
:
Kernel_function
.
t
->
unit
val
basic_add_select
:
Kernel_function
.
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
SlicingTypes
.
sl_selec
t
->
PdgTypes
.
Node
.
t
list
->
?
undef
:
Locations
.
Zone
.
t
option
*
SlicingTypes
.
sl_mark
->
SlicingActions
.
n_or_d_marks
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_pdg_nodes
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
PdgTypes
.
Node
.
t
list
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
mk_select
:
Db
.
Pdg
.
t
->
...
...
@@ -77,12 +77,12 @@ val mk_select :
val
select_stmt_zone
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
stmt
->
before
:
bool
->
Locations
.
Zone
.
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
(** this one is similar to [select_stmt_zone] with the return statement
* when the function is defined, but it can also be used for undefined functions. *)
...
...
@@ -90,91 +90,91 @@ val select_in_out_zone :
at_end
:
bool
->
use_undef
:
bool
->
Kernel_function
.
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
SlicingTypes
.
sl_selec
t
->
Locations
.
Zone
.
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_zone_at_end
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Locations
.
Zone
.
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_modified_output_zone
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Locations
.
Zone
.
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_zone_at_entry
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Locations
.
Zone
.
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
stmt_nodes_to_select
:
Db
.
Pdg
.
t
->
Cil_types
.
stmt
->
PdgTypes
.
Node
.
t
list
val
select_stmt_computation
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
stmt
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_label
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
logic_label
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
(** marking a call node means that a [choose_call] will have to decide that to
* call according to the slicing-level, but anyway, the call will be visible.
*)
val
select_minimal_call
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
stmt
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_stmt_ctrl
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
Cil_types
.
stmt
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
stmt
->
SlicingTypes
.
sl_selec
t
val
select_entry_point
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_return
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
select_decl_var
:
Kernel_function
.
t
->
?
select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
?
select
:
SlicingTypes
.
sl_selec
t
->
Cil_types
.
varinfo
->
SlicingTypes
.
sl_mark
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
val
merge_select
:
SlicingInternals
.
fct_user_crit
->
SlicingInternals
.
fct_user_crit
->
SlicingInternals
.
fct_user_crit
val
merge_db_select
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_selec
t
->
SlicingTypes
.
sl_selec
t
module
Selections
:
sig
...
...
@@ -214,13 +214,13 @@ val call_min_f_in_caller :
val
is_already_selected
:
SlicingInternals
.
fct_slice
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
bool
SlicingTypes
.
sl_selec
t
->
bool
val
add_ff_selection
:
SlicingInternals
.
fct_slice
->
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
unit
SlicingTypes
.
sl_selec
t
->
unit
(** add a persistent selection to the function.
* This might change its slicing level in order to call slices later on. *)
val
add_fi_selection
:
Cil_datatype
.
Varinfo
.
t
*
SlicingInternals
.
fct_user_cri
t
->
unit
SlicingTypes
.
sl_selec
t
->
unit
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment