aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Injectproof.v
diff options
context:
space:
mode:
authorDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-01 09:15:28 +0200
committerDavid Monniaux <david.monniaux@univ-grenoble-alpes.fr>2020-04-01 09:15:28 +0200
commitaedaa5cb1435008d1d872b7d6687bec5843798a0 (patch)
treea232723633ef95ae15d5222f0d407b6ec012c065 /backend/Injectproof.v
parent82c4699c8d5dd12e29b79045b6b8d2daf573ac91 (diff)
downloadcompcert-kvx-aedaa5cb1435008d1d872b7d6687bec5843798a0.tar.gz
compcert-kvx-aedaa5cb1435008d1d872b7d6687bec5843798a0.zip
adapting new stuff for ARM and AArch64
Diffstat (limited to 'backend/Injectproof.v')
-rw-r--r--backend/Injectproof.v15
1 files changed, 6 insertions, 9 deletions
diff --git a/backend/Injectproof.v b/backend/Injectproof.v
index 1dd26a24..77cae8a1 100644
--- a/backend/Injectproof.v
+++ b/backend/Injectproof.v
@@ -778,23 +778,20 @@ Section INJECTOR.
* exists (trs # res <- v).
split.
** apply exec_Iload with (trap := NOTRAP) (chunk := chunk) (addr := addr) (args := args) (dst := res) (a := a); trivial.
- rewrite eval_addressing_preserved with (ge1 := ge).
- assumption.
- exact symbols_preserved.
+ all: try rewrite eval_addressing_preserved with (ge1 := ge).
+ all: auto using symbols_preserved.
** apply assign_above; auto.
* exists (trs # res <- Vundef).
split.
** apply exec_Iload_notrap2 with (chunk := chunk) (addr := addr) (args := args) (dst := res) (a := a); trivial.
- rewrite eval_addressing_preserved with (ge1 := ge).
- assumption.
- exact symbols_preserved.
+ all: rewrite eval_addressing_preserved with (ge1 := ge).
+ all: auto using symbols_preserved.
** apply assign_above; auto.
+ exists (trs # res <- Vundef).
split.
* apply exec_Iload_notrap1 with (chunk := chunk) (addr := addr) (args := args) (dst := res); trivial.
- rewrite eval_addressing_preserved with (ge1 := ge).
- assumption.
- exact symbols_preserved.
+ all: rewrite eval_addressing_preserved with (ge1 := ge).
+ all: auto using symbols_preserved.
* apply assign_above; auto.
Qed.