-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStateGlobal.v
269 lines (228 loc) · 7.74 KB
/
StateGlobal.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
(** Calculation for arithmetic + exceptions + global state. *)
Require Import List.
Require Import Tactics.
(** * Syntax *)
Inductive Expr : Set :=
| Val : nat -> Expr
| Add : Expr -> Expr -> Expr
| Throw : Expr
| Catch : Expr -> Expr -> Expr
| Get : Expr
| Put : Expr -> Expr -> Expr.
(** * Semantics *)
Definition State := nat.
Fixpoint eval (x: Expr) (q : State) : (option nat * State) :=
match x with
| Val n => (Some n , q)
| Add x1 x2 => match eval x1 q with
| (Some n, q') => match eval x2 q' with
| (Some m, q'') => (Some (n + m), q'')
| (None, q'') => (None, q'')
end
| (None, q') => (None, q')
end
| Throw => (None, q)
| Catch x1 x2 => match eval x1 q with
| (Some n, q') => (Some n, q')
| (None, q') => eval x2 q'
end
| Get => (Some q,q)
| Put x1 x2 => match eval x1 q with
| (Some n, q') => eval x2 n
| (None, q') => (None, q')
end
end.
(** * Compiler *)
Inductive Code : Set :=
| HALT : Code
| PUSH : nat -> Code -> Code
| ADD : Code -> Code
| FAIL : Code
| MARK : Code -> Code -> Code
| UNMARK : Code -> Code
| LOAD : Code -> Code
| SAVE : Code -> Code
.
Fixpoint comp' (x : Expr) (c : Code) : Code :=
match x with
| Val n => PUSH n c
| Add x1 x2 => comp' x1 (comp' x2 (ADD c))
| Throw => FAIL
| Catch x1 x2 => MARK (comp' x2 c) (comp' x1 (UNMARK c))
| Get => LOAD c
| Put x1 x2 => comp' x1 (SAVE (comp' x2 c))
end.
Definition comp (x : Expr) : Code := comp' x HALT.
(** * Virtual Machine *)
Inductive Elem : Set :=
| VAL : nat -> Elem
| HAN : Code -> Elem
.
Definition Stack : Set := list Elem.
Inductive Conf : Set :=
| conf : Code -> Stack -> State -> Conf
| fail : Stack -> State -> Conf.
Notation "⟨ c , s , q ⟩" := (conf c s q).
Notation "⟪ s , q ⟫" := (fail s q ).
Reserved Notation "x ==> y" (at level 80, no associativity).
Inductive VM : Conf -> Conf -> Prop :=
| vm_push n c s q : ⟨PUSH n c, s, q⟩ ==> ⟨ c , VAL n :: s, q ⟩
| vm_add c s q m n : ⟨ADD c, VAL m :: VAL n :: s, q⟩ ==> ⟨c, VAL (n + m) :: s, q⟩
| vm_fail s q : ⟨ FAIL, s, q⟩ ==> ⟪s,q⟫
| vm_mark c h s q : ⟨MARK h c, s, q⟩ ==> ⟨c, HAN h :: s, q⟩
| vm_unmark c n h s q : ⟨UNMARK c, VAL n :: HAN h :: s, q⟩ ==> ⟨c, VAL n :: s, q⟩
| vm_load c s q : ⟨LOAD c, s, q⟩ ==> ⟨c, VAL q :: s, q⟩
| vm_save c n s q : ⟨SAVE c, VAL n :: s, q⟩ ==> ⟨c, s, n⟩
| vm_fail_val n s q : ⟪VAL n :: s, q ⟫ ==> ⟪s, q⟫
| vm_fail_han c s q : ⟪HAN c :: s, q ⟫ ==> ⟨c, s, q⟩
where "x ==> y" := (VM x y).
#[export]
Hint Constructors VM : core.
(** * Calculation *)
(** Boilerplate to import calculation tactics *)
Module VM <: Preorder.
Definition Conf := Conf.
Definition VM := VM.
End VM.
Module VMCalc := Calculation VM.
Import VMCalc.
(** Specification of the compiler *)
Theorem spec x c s q : ⟨comp' x c, s, q⟩
=>> match eval x q with
| (Some n, q') => ⟨c , VAL n :: s, q'⟩
| (None, q') => ⟪ s, q' ⟫
end.
(** Setup the induction proof *)
Proof.
intros.
generalize dependent c.
generalize dependent s.
generalize dependent q.
induction x;intros.
(** Calculation of the compiler *)
(** - [x = Val n]: *)
begin
⟨c, VAL n :: s, q⟩.
<== { apply vm_push }
⟨PUSH n c, s, q⟩.
[].
(** - [x = Add x1 x2]: *)
begin
(match eval x1 q with
| (Some m, q') => match eval x2 q' with
| (Some n, q'') => ⟨ c, VAL (m + n) :: s, q'' ⟩
| (None, q'') => ⟪ s, q'' ⟫
end
| (None, q') => ⟪ s, q' ⟫
end).
<<= { apply vm_add }
(match eval x1 q with
| (Some m, q') => match eval x2 q' with
| (Some n, q'') => ⟨ ADD c, VAL n :: VAL m :: s, q'' ⟩
| (None, q'') => ⟪ s, q'' ⟫
end
| (None, q') => ⟪ s, q' ⟫
end).
<<= { apply vm_fail_val }
(match eval x1 q with
| (Some m, q') => match eval x2 q' with
| (Some n, q'') => ⟨ ADD c, VAL n :: VAL m :: s, q'' ⟩
| (None, q'') => ⟪ VAL m :: s, q'' ⟫
end
| (None, q') => ⟪ s, q' ⟫
end).
<<= { apply IHx2 }
(match eval x1 q with
| (Some m, q') => ⟨ comp' x2 (ADD c), VAL m :: s, q' ⟩
| (None, q') => ⟪ s, q' ⟫
end).
<<= { apply IHx1 }
⟨ comp' x1 (comp' x2 (ADD c)), s, q ⟩.
[].
(** - [x = Throw]: *)
begin
⟪s, q⟫.
<== { apply vm_fail }
⟨ FAIL, s, q⟩.
[].
(** - [x = Catch x1 x2]: *)
begin
(match eval x1 q with
| (Some m, q') => ⟨ c, VAL m :: s, q'⟩
| (None, q') => match eval x2 q' with
| (Some n, q'') => ⟨c, VAL n :: s, q''⟩
| (None, q'') => ⟪s, q''⟫
end
end).
<<= { apply IHx2 }
(match eval x1 q with
| (Some m, q') => ⟨ c, VAL m :: s, q'⟩
| (None, q') => ⟨comp' x2 c, s, q'⟩
end).
<<= { apply vm_fail_han }
(match eval x1 q with
| (Some m, q') => ⟨ c, VAL m :: s, q'⟩
| (None, q') => ⟪ HAN (comp' x2 c) :: s, q'⟫
end).
<<= { apply vm_unmark }
(match eval x1 q with
| (Some m, q') => ⟨ UNMARK c, VAL m :: HAN (comp' x2 c) :: s, q'⟩
| (None, q') => ⟪ HAN (comp' x2 c) :: s, q'⟫
end).
<<= { apply IHx1 }
⟨ comp' x1 (UNMARK c), HAN (comp' x2 c) :: s, q⟩.
<<= { apply vm_mark }
⟨ MARK (comp' x2 c) (comp' x1 (UNMARK c)), s, q⟩.
[].
(** - [x = Get]: *)
begin
⟨ c, VAL q :: s, q⟩.
<== { apply vm_load }
⟨ LOAD c, s, q⟩.
[].
(** - [x = Put x1 x2]: *)
begin
(match eval x1 q with
| (Some n, q') => match eval x2 n with
| (Some m, q'') => ⟨c, VAL m :: s, q''⟩
| (None, q'') => ⟪s, q''⟫
end
| (None, q') => ⟪s, q'⟫
end).
<<= { apply IHx2 }
(match eval x1 q with
| (Some n, q') => ⟨comp' x2 c, s, n⟩
| (None, q') => ⟪s, q'⟫
end).
<<= { apply vm_save }
(match eval x1 q with
| (Some n, q') => ⟨SAVE (comp' x2 c), VAL n :: s, q'⟩
| (None, q') => ⟪s, q'⟫
end).
<<= { apply IHx1 }
⟨comp' x1 (SAVE (comp' x2 c)), s, q⟩.
[].
Qed.
(** * Soundness *)
(** Since the VM is defined as a small step operational semantics, we
have to prove that the VM is deterministic and does not get stuck in
order to derive soundness from the above theorem. *)
Lemma determ_vm : determ VM.
intros C C1 C2 V. induction V; intro V'; inversion V'; subst; reflexivity.
Qed.
Lemma term_vm x : ~ (exists C, match x with
| (Some n, q) => ⟨HALT , VAL n :: nil, q⟩
| (None, q) => ⟪nil, q⟫
end ==> C).
Proof.
destruct x; destruct o; intro Contra; destruct Contra; subst; inversion H.
Qed.
Theorem sound x C q : ⟨comp x, nil, q⟩ =>>! C -> C = match eval x q with
| (Some n, q') => ⟨HALT , VAL n :: nil, q'⟩
| (None, q') => ⟪nil, q'⟫
end.
Proof.
intros.
pose (spec x HALT nil) as H'. unfold comp in *. pose (determ_trc determ_vm) as D.
unfold determ in D. eapply D. apply H. split. apply H'. apply term_vm.
Qed.