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
36b0bf42
Commit
36b0bf42
authored
2 years ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[server] clever fix for property status updates
parent
0d2ac426
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/server/kernel_properties.ml
+19
-14
19 additions, 14 deletions
src/plugins/server/kernel_properties.ml
with
19 additions
and
14 deletions
src/plugins/server/kernel_properties.ml
+
19
−
14
View file @
36b0bf42
...
...
@@ -321,7 +321,22 @@ let is_relevant ip =
not
(
Ast_info
.
is_frama_c_builtin
(
Kernel_function
.
get_name
kf
)
||
Cil_builtins
.
is_unused_builtin
(
Kernel_function
.
get_vi
kf
))
let
iter
f
=
Property_status
.
iter
(
fun
ip
->
if
is_relevant
ip
then
f
ip
)
let
iter
f
=
Property_status
.
iter
(
fun
ip
->
if
is_relevant
ip
then
f
ip
)
(* Must reload the entire table when status changed: property dependencies
are not taken into account when status are updated. *)
let
add_reload_hook
(
f
:
unit
->
unit
)
:
unit
=
Property_status
.
register_status_update_hook
(
fun
_emitter
_ip
_status
->
f
()
)
let
add_update_hook
(
f
:
Property
.
t
->
unit
)
:
unit
=
Property_status
.
register_property_add_hook
(
fun
ip
->
if
is_relevant
ip
then
f
ip
)
let
add_remove_hook
(
f
:
Property
.
t
->
unit
)
:
unit
=
Property_status
.
register_property_remove_hook
(
fun
ip
->
if
is_relevant
ip
then
f
ip
)
let
array
=
States
.
register_array
...
...
@@ -331,21 +346,11 @@ let array =
~
key
:
(
fun
ip
->
Kernel_ast
.
Marker
.
create
(
PIP
ip
))
~
keyType
:
Kernel_ast
.
Marker
.
jproperty
~
iter
~
add_reload_hook
~
add_remove_hook
~
add_update_hook
model
let
reload
()
=
States
.
reload
array
(* Reloads the whole array when a property is added, removed or when its status
changes. As a property can be a logical consequence of other properties, a
property change can impact the logical status of any other property: a full
reload is needed. *)
let
()
=
Property_status
.
register_property_add_hook
(
fun
_ip
->
reload
()
);
Property_status
.
register_status_update_hook
(
fun
_emitter
_ip
_status
->
reload
()
);
Property_status
.
register_property_remove_hook
(
fun
_ip
->
reload
()
)
(* -------------------------------------------------------------------------- *)
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