Skip to content
Snippets Groups Projects
Commit fcbebbd1 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

[wp] Simplifies loop computation

parent e1d5e166
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
...@@ -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
......
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