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
2fa11c88
Commit
2fa11c88
authored
4 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[wp] Fix modes collection
parent
a56be05f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/wp/cfgGenerator.ml
+43
-29
43 additions, 29 deletions
src/plugins/wp/cfgGenerator.ml
with
43 additions
and
29 deletions
src/plugins/wp/cfgGenerator.ml
+
43
−
29
View file @
2fa11c88
...
...
@@ -31,7 +31,7 @@ module KFmap = Kernel_function.Map
type
task
=
{
mutable
lemmas
:
LogicUsage
.
logic_lemma
list
;
mutable
modes
:
CfgCalculus
.
mode
KFmap
.
t
;
(** TODO: when New CFG is validated, use list *)
mutable
modes
:
CfgCalculus
.
mode
list
KFmap
.
t
;
(** TODO: when New CFG is validated, use list *)
mutable
props
:
CfgCalculus
.
props
;
}
...
...
@@ -81,9 +81,15 @@ let apply task ~kf ?bhvs ?prop () =
match
Annotations
.
behaviors
kf
with
|
[]
->
[
empty_default_behavior
]
|
bhvs
->
bhvs
in
List
.
iter
(
fun
bhv
->
task
.
modes
<-
KFmap
.
add
kf
{
CfgCalculus
.
kf
;
bhv
}
task
.
modes
)
bhvs
;
let
add_mode
kf
m
=
let
modes
=
match
KFmap
.
find_opt
kf
task
.
modes
with
|
None
->
[]
|
Some
modes
->
modes
in
task
.
modes
<-
KFmap
.
add
kf
(
m
::
modes
)
task
.
modes
in
List
.
iter
(
fun
bhv
->
add_mode
kf
{
CfgCalculus
.
kf
;
bhv
})
bhvs
;
Option
.
iter
(
fun
ip
->
task
.
props
<-
`PropId
ip
)
prop
;
end
...
...
@@ -183,20 +189,24 @@ struct
)
task
.
lemmas
;
end
()
;
KFmap
.
iter
(
fun
_
(
mode
:
CfgCalculus
.
mode
)
->
WpContext
.
on_context
(
model
,
WpContext
.
Kf
mode
.
kf
)
begin
fun
()
->
LogicUsage
.
iter_lemmas
VCG
.
register_lemma
;
if
WpRTE
.
missing_guards
model
mode
.
kf
then
warning
~
current
:
false
~
once
:
true
"Missing RTE guards"
;
let
bhv
=
if
Cil
.
is_default_behavior
mode
.
bhv
then
None
else
Some
mode
.
bhv
.
b_name
in
let
index
=
Wpo
.
Function
(
mode
.
kf
,
bhv
)
in
let
wp
=
snd
@@
WP
.
compute
~
mode
~
props
:
task
.
props
in
let
wcs
=
VCG
.
compile_wp
index
wp
in
collection
:=
Bag
.
concat
!
collection
wcs
end
()
(
fun
_
modes
->
List
.
iter
begin
fun
(
mode
:
CfgCalculus
.
mode
)
->
WpContext
.
on_context
(
model
,
WpContext
.
Kf
mode
.
kf
)
begin
fun
()
->
LogicUsage
.
iter_lemmas
VCG
.
register_lemma
;
if
WpRTE
.
missing_guards
model
mode
.
kf
then
warning
~
current
:
false
~
once
:
true
"Missing RTE guards"
;
let
bhv
=
if
Cil
.
is_default_behavior
mode
.
bhv
then
None
else
Some
mode
.
bhv
.
b_name
in
let
index
=
Wpo
.
Function
(
mode
.
kf
,
bhv
)
in
let
wp
=
snd
@@
WP
.
compute
~
mode
~
props
:
task
.
props
in
let
wcs
=
VCG
.
compile_wp
index
wp
in
collection
:=
Bag
.
concat
!
collection
wcs
end
()
end
(
List
.
rev
modes
)
)
task
.
modes
;
!
collection
end
...
...
@@ -248,17 +258,21 @@ let dump task =
let
module
WP
=
CfgCalculus
.
Make
(
CfgDump
)
in
let
props
=
task
.
props
in
KFmap
.
iter
(
fun
_
(
mode
:
CfgCalculus
.
mode
)
->
let
bhv
=
if
Cil
.
is_default_behavior
mode
.
bhv
then
None
else
Some
mode
.
bhv
.
b_name
in
try
CfgDump
.
fopen
mode
.
kf
bhv
;
ignore
(
WP
.
compute
~
mode
~
props
)
;
CfgDump
.
flush
()
;
with
err
->
CfgDump
.
flush
()
;
raise
err
(
fun
_
modes
->
List
.
iter
begin
fun
(
mode
:
CfgCalculus
.
mode
)
->
let
bhv
=
if
Cil
.
is_default_behavior
mode
.
bhv
then
None
else
Some
mode
.
bhv
.
b_name
in
try
CfgDump
.
fopen
mode
.
kf
bhv
;
ignore
(
WP
.
compute
~
mode
~
props
)
;
CfgDump
.
flush
()
;
with
err
->
CfgDump
.
flush
()
;
raise
err
end
(
List
.
rev
modes
)
)
task
.
modes
let
dumper
setup
driver
=
...
...
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