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
ed39c11b
Commit
ed39c11b
authored
3 years ago
by
Basile Desloges
Browse files
Options
Downloads
Patches
Plain Diff
[eacsl] Translate the default behavior requires clause before evaluating the assumes
parent
9aade546
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/e-acsl/src/code_generator/contract.ml
+36
-17
36 additions, 17 deletions
src/plugins/e-acsl/src/code_generator/contract.ml
with
36 additions
and
17 deletions
src/plugins/e-acsl/src/code_generator/contract.ml
+
36
−
17
View file @
ed39c11b
...
@@ -322,27 +322,37 @@ let fold_left_handle_error_with_args f (env, acc) l =
...
@@ -322,27 +322,37 @@ let fold_left_handle_error_with_args f (env, acc) l =
(
env
,
acc
)
(
env
,
acc
)
l
l
(** Insert requires check for the given contract in the environment *)
(** Insert requires check for the default behavior of the given contract in the
let
check_requires
kf
kinstr
env
contract
=
environment. *)
let
check_default_requires
kf
kinstr
env
contract
=
let
default_behavior
=
Cil
.
find_default_behavior
contract
.
spec
in
match
default_behavior
with
|
Some
b
->
fold_left_handle_error
(
fun
env
ip_requires
->
if
!
must_translate_ppt_ref
(
Property
.
ip_of_requires
kf
kinstr
b
ip_requires
)
then
let
tp_requires
=
ip_requires
.
ip_content
in
let
loc
=
tp_requires
.
tp_statement
.
pred_loc
in
Cil
.
CurrentLoc
.
set
loc
;
Translate
.
translate_predicate
kf
env
tp_requires
else
env
)
env
b
.
b_requires
|
None
->
env
(** Insert requires check for the behaviors other than the default behavior of
the given contract in the environment *)
let
check_other_requires
kf
kinstr
env
contract
=
let
get_or_create_assumes_var
=
let
get_or_create_assumes_var
=
mk_get_or_create_var
kf
Cil
.
intType
"assumes_value"
mk_get_or_create_var
kf
Cil
.
intType
"assumes_value"
in
in
let
do_behavior
env
b
=
let
do_behavior
env
b
=
if
Cil
.
is_default_behavior
b
then
if
Cil
.
is_default_behavior
b
then
fold_left_handle_error
env
(
fun
env
ip_requires
->
if
!
must_translate_ppt_ref
(
Property
.
ip_of_requires
kf
kinstr
b
ip_requires
)
then
(* If translating the default behavior, directly translate the
predicate *)
let
tp_requires
=
ip_requires
.
ip_content
in
let
loc
=
tp_requires
.
tp_statement
.
pred_loc
in
Cil
.
CurrentLoc
.
set
loc
;
Translate
.
translate_predicate
kf
env
tp_requires
else
env
)
env
b
.
b_requires
else
else
(* Compute the assumes predicate for pretty-printing *)
(* Compute the assumes predicate for pretty-printing *)
let
assumes
=
assumes_predicate
env
b
.
b_assumes
in
let
assumes
=
assumes_predicate
env
b
.
b_assumes
in
...
@@ -763,9 +773,18 @@ let translate_preconditions kf kinstr env contract =
...
@@ -763,9 +773,18 @@ let translate_preconditions kf kinstr env contract =
let
env
=
Env
.
set_annotation_kind
env
Smart_stmt
.
Precondition
in
let
env
=
Env
.
set_annotation_kind
env
Smart_stmt
.
Precondition
in
let
env
=
Env
.
push_contract
env
contract
in
let
env
=
Env
.
push_contract
env
contract
in
let
env
=
init
kf
env
contract
in
let
env
=
init
kf
env
contract
in
(* Start with translating the requires predicate of the default behavior. *)
let
env
=
Env
.
handle_error
(
fun
env
->
check_default_requires
kf
kinstr
env
contract
)
env
in
(* Then setup the assumes clauses of the contract. *)
let
env
=
setup_assumes
kf
env
contract
in
let
env
=
setup_assumes
kf
env
contract
in
(* And finally translate the requires predicates of the rest of the behaviors,
skipping over the default behavior. *)
let
do_it
env
=
let
do_it
env
=
let
env
=
check_requires
kf
kinstr
env
contract
in
let
env
=
check_
other_
requires
kf
kinstr
env
contract
in
let
env
=
check_complete_and_disjoint
kf
kinstr
env
contract
in
let
env
=
check_complete_and_disjoint
kf
kinstr
env
contract
in
env
env
in
in
...
...
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