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
0b0ea507
Commit
0b0ea507
authored
4 years ago
by
Allan Blanchard
Browse files
Options
Downloads
Patches
Plain Diff
[wp] Fixes default assigns, warn on assigns everything
parent
8ccf2681
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/cfgAnnot.ml
+8
-0
8 additions, 0 deletions
src/plugins/wp/cfgAnnot.ml
src/plugins/wp/cfgCalculus.ml
+4
-1
4 additions, 1 deletion
src/plugins/wp/cfgCalculus.ml
with
12 additions
and
1 deletion
src/plugins/wp/cfgAnnot.ml
+
8
−
0
View file @
0b0ea507
...
@@ -228,11 +228,19 @@ let reverse_loop_contract l = {
...
@@ -228,11 +228,19 @@ let reverse_loop_contract l = {
loop_assigns
=
List
.
rev
l
.
loop_assigns
;
loop_assigns
=
List
.
rev
l
.
loop_assigns
;
}
}
let
default_assigns
stmt
l
=
{
l
with
loop_assigns
=
if
l
.
loop_assigns
<>
[]
then
l
.
loop_assigns
else
[
WpPropId
.
mk_loop_any_assigns_info
stmt
]
}
let
get_loop_contract
kf
stmt
:
loop_contract
=
let
get_loop_contract
kf
stmt
:
loop_contract
=
let
labels
=
NormAtLabels
.
labels_loop
stmt
in
let
labels
=
NormAtLabels
.
labels_loop
stmt
in
let
normalize_pred
p
=
NormAtLabels
.
preproc_annot
labels
p
in
let
normalize_pred
p
=
NormAtLabels
.
preproc_annot
labels
p
in
let
normalize_annot
(
i
,
p
)
=
i
,
normalize_pred
p
in
let
normalize_annot
(
i
,
p
)
=
i
,
normalize_pred
p
in
let
normalize_assigns
w
=
NormAtLabels
.
preproc_assigns
labels
w
in
let
normalize_assigns
w
=
NormAtLabels
.
preproc_assigns
labels
w
in
default_assigns
stmt
@@
reverse_loop_contract
@@
reverse_loop_contract
@@
Annotations
.
fold_code_annot
Annotations
.
fold_code_annot
begin
fun
_emitter
ca
l
->
begin
fun
_emitter
ca
l
->
...
...
This diff is collapsed.
Click to expand it.
src/plugins/wp/cfgCalculus.ml
+
4
−
1
View file @
0b0ea507
...
@@ -143,7 +143,10 @@ struct
...
@@ -143,7 +143,10 @@ struct
let
use_assigns
env
(
a
:
assigns
)
w
=
let
use_assigns
env
(
a
:
assigns
)
w
=
match
a
with
match
a
with
|
NoAssignsInfo
->
assert
false
|
NoAssignsInfo
->
assert
false
|
AssignsAny
ad
->
W
.
use_assigns
env
.
we
None
ad
w
|
AssignsAny
ad
->
Wp_parameters
.
warning
~
current
:
true
~
once
:
true
"Missing assigns clause (assigns 'everything' instead)"
;
W
.
use_assigns
env
.
we
None
ad
w
|
AssignsLocations
(
ap
,
ad
)
->
W
.
use_assigns
env
.
we
(
Some
ap
)
ad
w
|
AssignsLocations
(
ap
,
ad
)
->
W
.
use_assigns
env
.
we
(
Some
ap
)
ad
w
let
prove_assigns
env
(
a
:
assigns
)
w
=
let
prove_assigns
env
(
a
:
assigns
)
w
=
...
...
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