-
Notifications
You must be signed in to change notification settings - Fork 1
/
granule_undelegate_ops.v
42 lines (36 loc) · 1.35 KB
/
granule_undelegate_ops.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Require Import RefProofDeps.
Require Import RData.
Require Import EventReplay.
Require Import MoverTypes.
Require Import Constants.
Require Import CommonLib.
Require Import RefTactics.
Require Import AbsAccessor.Spec.
Require Import BaremoreSMC.Spec.
Require Import RmiOps.Specs.granule_undelegate_ops.
Require Import RmiOps.LowSpecs.granule_undelegate_ops.
Require Import RmiOps.RefProof.RefRel.
Local Open Scope string_scope.
Local Open Scope Z_scope.
Local Opaque Z.add Z.mul Z.div Z.shiftl Z.shiftr Z.land Z.lor.
Section Refine.
Hint Unfold
granule_set_state_spec
smc_mark_nonsecure_spec
granule_unlock_spec
.
Lemma granule_undelegate_ops_spec_exists:
forall habd habd' labd g addr
(Hspec: granule_undelegate_ops_spec g addr habd = Some habd')
(Hrel: relate_RData habd labd),
exists labd', granule_undelegate_ops_spec0 g addr labd = Some labd' /\ relate_RData habd' labd'.
Proof.
intros. destruct Hrel. inv id_rdata. destruct g, addr.
unfold granule_undelegate_ops_spec, granule_undelegate_ops_spec0 in *.
repeat autounfold in *.
hsimpl_hyp Hspec; inv Hspec; simpl_query_oracle; extract_prop_dec;
repeat destruct_con; bool_rel; simpl in *; srewrite;
repeat (simpl_htarget; grewrite; simpl in *).
eexists; (split; [reflexivity| constructor; try reflexivity]).
Qed.
End Refine.