From aedaa5cb1435008d1d872b7d6687bec5843798a0 Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Wed, 1 Apr 2020 09:15:28 +0200 Subject: adapting new stuff for ARM and AArch64 --- backend/Injectproof.v | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'backend/Injectproof.v') 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. -- cgit