Skip to content
Snippets Groups Projects
Commit 1376b821 authored by Basile Desloges's avatar Basile Desloges
Browse files

[eacsl] Use `predicate_to_exp` instead of building directly an expression

parent 54445bd6
No related branches found
No related tags found
No related merge requests found
...@@ -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 =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment