aboutsummaryrefslogtreecommitdiffstats
path: root/backend/CSE3analysisproof.v
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-21 09:35:30 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-21 09:35:30 +0200
commitd10bc429a5c08a25471e3f65e328f5cee12e4542 (patch)
tree90d1344259731c9e4ca2552a14092f963b59c95e /backend/CSE3analysisproof.v
parentc3c275ebe29d06399ecae84c975d1d21f0d4ed44 (diff)
downloadcompcert-kvx-d10bc429a5c08a25471e3f65e328f5cee12e4542.tar.gz
compcert-kvx-d10bc429a5c08a25471e3f65e328f5cee12e4542.zip
forward moves through CSE3 store
Diffstat (limited to 'backend/CSE3analysisproof.v')
-rw-r--r--backend/CSE3analysisproof.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend/CSE3analysisproof.v b/backend/CSE3analysisproof.v
index f4ec7a10..e1e9f6cc 100644
--- a/backend/CSE3analysisproof.v
+++ b/backend/CSE3analysisproof.v
@@ -848,14 +848,14 @@ Section SOUNDNESS.
Qed.
Hint Resolve store1_sound : cse3.
-
+
Theorem store_sound:
forall no chunk addr args a src rel tenv rs m m',
sem_rel rel rs m ->
wt_regset tenv rs ->
eval_addressing genv sp addr (rs ## args) = Some a ->
Mem.storev chunk m a (rs#src) = Some m' ->
- sem_rel (store (ctx:=ctx) no chunk addr args src (tenv src) rel) rs m'.
+ sem_rel (store (ctx:=ctx) no chunk addr args src (tenv (forward_move (ctx:=ctx) rel src)) rel) rs m'.
Proof.
unfold store.
intros until m'.
@@ -863,8 +863,8 @@ Section SOUNDNESS.
rewrite <- forward_move_l_sound with (rel:=rel) (m:=m) in ADDR by trivial.
rewrite <- forward_move_sound with (rel:=rel) (m:=m) in STORE by trivial.
apply store1_sound with (a := a) (m := m); trivial.
- rewrite forward_move_sound with (rel:=rel) (m:=m) in STORE by trivial.
- assumption.
+ (* rewrite forward_move_sound with (rel:=rel) (m:=m) in STORE by trivial.
+ assumption. *)
Qed.
Hint Resolve store_sound : cse3.