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
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
Vincent Laviron
frama-c
Commits
1376b821
Commit
1376b821
authored
3 years ago
by
Basile Desloges
Browse files
Options
Downloads
Patches
Plain Diff
[eacsl] Use `predicate_to_exp` instead of building directly an expression
parent
54445bd6
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/e-acsl/src/code_generator/loops.ml
+13
-4
13 additions, 4 deletions
src/plugins/e-acsl/src/code_generator/loops.ml
with
13 additions
and
4 deletions
src/plugins/e-acsl/src/code_generator/loops.ml
+
13
−
4
View file @
1376b821
...
@@ -118,14 +118,23 @@ let handle_annotations env kf stmt =
...
@@ -118,14 +118,23 @@ let handle_annotations env kf stmt =
stmts
,
env
stmts
,
env
|
Some
(
t
,
e_old
,
None
)
->
|
Some
(
t
,
e_old
,
None
)
->
let
env
=
Env
.
push
env
in
let
env
=
Env
.
push
env
in
Typing
.
type_term
~
use_gmp_opt
:
true
t
;
let
t_old
=
Logic_utils
.
expr_to_term
e_old
in
let
e
,
env
=
!
term_to_exp_ref
kf
env
t
in
let
variant_pos
=
Logic_const
.
prel
~
loc
(
Rge
,
t_old
,
Logic_const
.
tinteger
~
loc
0
)
in
Typing
.
type_named_predicate
~
must_clear
:
true
variant_pos
;
let
variant_pos_e
,
env
=
!
predicate_to_exp_ref
kf
env
variant_pos
in
let
msg1
=
let
msg1
=
Format
.
asprintf
Format
.
asprintf
"(old %a) %a 0"
"(old %a) %a 0"
Printer
.
pp_term
t
Printer
.
pp_term
t
Printer
.
pp_relation
Rge
Printer
.
pp_relation
Rge
in
in
let
variant_dec
=
Logic_const
.
prel
~
loc
(
Rgt
,
t_old
,
t
)
in
Typing
.
type_named_predicate
~
must_clear
:
true
variant_dec
;
let
variant_dec_e
,
env
=
!
predicate_to_exp_ref
kf
env
variant_dec
in
let
msg2
=
let
msg2
=
Format
.
asprintf
Format
.
asprintf
"(old %a) > %a"
"(old %a) > %a"
...
@@ -140,14 +149,14 @@ let handle_annotations env kf stmt =
...
@@ -140,14 +149,14 @@ let handle_annotations env kf stmt =
~
pred_kind
:
Assert
~
pred_kind
:
Assert
Smart_stmt
.
Variant
Smart_stmt
.
Variant
kf
kf
(
Cil
.
mkBinOp
~
loc
Ge
e_old
(
Cil
.
zero
~
loc
))
;
variant_pos_e
;
Smart_stmt
.
runtime_check_with_msg
Smart_stmt
.
runtime_check_with_msg
~
loc
~
loc
msg2
msg2
~
pred_kind
:
Assert
~
pred_kind
:
Assert
Smart_stmt
.
Variant
Smart_stmt
.
Variant
kf
kf
(
Cil
.
mkBinOp
~
loc
Gt
e_old
e
)
variant_dec_e
]
]
in
in
let
blk
,
env
=
let
blk
,
env
=
...
...
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