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
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Charles Southerland
frama-c
Commits
fcbebbd1
Commit
fcbebbd1
authored
4 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[wp] Simplifies loop computation
parent
e1d5e166
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/wp/cfgCalculus.ml
+10
-16
10 additions, 16 deletions
src/plugins/wp/cfgCalculus.ml
src/plugins/wp/normAtLabels.ml
+3
-0
3 additions, 0 deletions
src/plugins/wp/normAtLabels.ml
with
13 additions
and
16 deletions
src/plugins/wp/cfgCalculus.ml
+
10
−
16
View file @
fcbebbd1
...
@@ -232,22 +232,16 @@ struct
...
@@ -232,22 +232,16 @@ struct
(* Compute loops *)
(* Compute loops *)
and
loop
env
a
s
(
lc
:
CfgAnnot
.
loop_contract
)
:
W
.
t_prop
=
and
loop
env
a
s
(
lc
:
CfgAnnot
.
loop_contract
)
:
W
.
t_prop
=
let
loop_current
=
Clabels
.
loop_current
s
in
List
.
fold_right
(
prove_property
env
)
lc
.
loop_established
@@
let
established
=
List
.
fold_right
(
use_assigns
env
)
lc
.
loop_assigns
@@
W
.
label
env
.
we
None
loop_current
@@
W
.
label
env
.
we
None
(
Clabels
.
loop_current
s
)
@@
List
.
fold_right
(
prove_property
env
)
lc
.
loop_established
W
.
empty
in
List
.
fold_right
(
use_property
env
)
lc
.
loop_invariants
@@
let
presersed
=
List
.
fold_right
(
prove_property
env
)
lc
.
loop_smoke
@@
List
.
fold_right
(
use_assigns
env
)
lc
.
loop_assigns
@@
let
q
=
W
.
label
env
.
we
None
loop_current
@@
List
.
fold_right
(
prove_property
env
)
lc
.
loop_preserved
@@
List
.
fold_right
(
use_property
env
)
lc
.
loop_invariants
@@
List
.
fold_right
(
prove_assigns
env
)
lc
.
loop_assigns
@@
List
.
fold_right
(
prove_property
env
)
lc
.
loop_smoke
@@
W
.
empty
in
let
q
=
(
Vhash
.
replace
env
.
wp
a
(
Some
q
)
;
successors
env
a
)
List
.
fold_right
(
prove_property
env
)
lc
.
loop_preserved
@@
List
.
fold_right
(
prove_assigns
env
)
lc
.
loop_assigns
@@
W
.
empty
in
(
Vhash
.
replace
env
.
wp
a
(
Some
q
)
;
successors
env
a
)
in
W
.
merge
env
.
we
established
presersed
(* Merge transitions *)
(* Merge transitions *)
and
successors
env
(
a
:
vertex
)
=
transitions
env
(
env
.
succ
a
)
and
successors
env
(
a
:
vertex
)
=
transitions
env
(
env
.
succ
a
)
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/normAtLabels.ml
+
3
−
0
View file @
fcbebbd1
...
@@ -121,6 +121,8 @@ let labels_fct ?kf ?at l =
...
@@ -121,6 +121,8 @@ let labels_fct ?kf ?at l =
|
BuiltinLabel
Pre
->
Clabels
.
pre
|
BuiltinLabel
Pre
->
Clabels
.
pre
|
StmtLabel
at
->
Clabels
.
stmt
!
at
|
StmtLabel
at
->
Clabels
.
stmt
!
at
|
BuiltinLabel
LoopEntry
->
Clabels
.
loop_entry
(
enclosing_loop
?
kf
?
at
l
)
|
BuiltinLabel
LoopEntry
->
Clabels
.
loop_entry
(
enclosing_loop
?
kf
?
at
l
)
(* Labels fct is not used to label invariant establishment/preservation,
thus, contrary to what is done in [labels_loop], Current is not Here. *)
|
BuiltinLabel
LoopCurrent
->
Clabels
.
loop_current
(
enclosing_loop
?
kf
?
at
l
)
|
BuiltinLabel
LoopCurrent
->
Clabels
.
loop_current
(
enclosing_loop
?
kf
?
at
l
)
|
_
->
raise
(
LabelError
l
)
|
_
->
raise
(
LabelError
l
)
...
@@ -189,6 +191,7 @@ let labels_assert_after ~kf s l_post = function
...
@@ -189,6 +191,7 @@ let labels_assert_after ~kf s l_post = function
|
l
->
labels_fct
~
kf
~
at
:
s
l
|
l
->
labels_fct
~
kf
~
at
:
s
l
let
labels_loop
s
=
function
let
labels_loop
s
=
function
(* In invariant preservation/establishment, LoopCurrent is Here. *)
|
BuiltinLabel
(
Here
|
LoopCurrent
)
->
Clabels
.
here
|
BuiltinLabel
(
Here
|
LoopCurrent
)
->
Clabels
.
here
|
BuiltinLabel
LoopEntry
->
Clabels
.
loop_entry
s
|
BuiltinLabel
LoopEntry
->
Clabels
.
loop_entry
s
|
FormalLabel
wplabel
->
Clabels
.
formal
wplabel
|
FormalLabel
wplabel
->
Clabels
.
formal
wplabel
...
...
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