1 | include "Clight/Cexec.ma". |
---|
2 | include "Clight/CexecInd.ma". |
---|
3 | |
---|
4 | lemma exec_bool_of_val_sound: ∀v,ty,r. |
---|
5 | exec_bool_of_val v ty = OK ? r → bool_of_val v ty (of_bool r). |
---|
6 | #v #ty #r |
---|
7 | cases v; [ | #sz #i (*| #f*) | | #ptr ] |
---|
8 | cases ty; [ 2,10,18,26: #sz' #sg | 3,11,19,27: #ty' | 4,12,20,28: (*#r*) #ty #n |
---|
9 | | 5,13,21,29: #args #rty | 6,7,14,15,22,23,30,31: #id #fs | 8,16,24,32: (*#r*) #id ] |
---|
10 | whd in ⊢ (??%? → ?); |
---|
11 | [ 2: @intsize_eq_elim_elim |
---|
12 | [ #NE #H destruct |
---|
13 | | *; whd @eq_bv_elim |
---|
14 | [ #E1 #E2 destruct @bool_of_val_false @is_false_int |
---|
15 | | #E1 #E2 destruct @bool_of_val_true @is_true_int_int @E1 |
---|
16 | ] |
---|
17 | ] |
---|
18 | (*| 8: #H cases (eq_dec f Fzero) |
---|
19 | [ #e >e in H ⊢ %; >Feq_zero_true #E destruct @bool_of_val_false @is_false_float |
---|
20 | | #ne >Feq_zero_false in H; // #E destruct @bool_of_val_true @is_true_float @ne |
---|
21 | ]*) |
---|
22 | | 7: #H destruct @bool_of_val_false @is_false_pointer |
---|
23 | | 8: #H destruct @bool_of_val_true @is_true_pointer_pointer |
---|
24 | | *: #H destruct |
---|
25 | ] qed. |
---|
26 | |
---|
27 | lemma bool_val_distinct: Vtrue ≠ Vfalse. |
---|
28 | % normalize #H destruct |
---|
29 | qed. |
---|
30 | |
---|
31 | lemma bool_of: ∀v,ty,b. bool_of_val v ty (of_bool b) → |
---|
32 | if b then is_true v ty else is_false v ty. |
---|
33 | #v #ty #b cases b; #H inversion H; #v' #ty' #H' #ev #et #ev' //; |
---|
34 | @⊥ cases (bool_val_distinct) #X @X [2: @sym_eq] @ev' |
---|
35 | qed. |
---|
36 | |
---|
37 | lemma try_cast_null_sound: ∀m,sz,i,ty,ty',v'. try_cast_null m sz i ty ty' = OK ? v' → cast m (Vint sz i) ty ty' v'. |
---|
38 | #m #sz #i #ty #ty' #v' |
---|
39 | whd in ⊢ (??%? → ?); |
---|
40 | @eq_bv_elim |
---|
41 | [ #e >e |
---|
42 | cases ty; [ | #sz' #sg (* | #fs *) | (*#sp*) #ty | (*#sp*) #ty #n | #args #rty | #id #fs | #id #fs | (*#r*) #id ] |
---|
43 | whd in ⊢ (??%? → ?); #H [ 2: | *: destruct ] |
---|
44 | cases ty' in H ⊢ %; [ | #sz'' #sg (* | #fs*) | (*#sp*) #ty | (*#sp*) #ty #n | #args #rty | #id #fs | #id #fs | (*#r*) #id ] |
---|
45 | try (@eq_intsize_elim #E) whd in ⊢ (??%? → ?); #H destruct @cast_ip_z // |
---|
46 | | #_ whd in ⊢ (??%? → ?); #H destruct |
---|
47 | ] |
---|
48 | qed. |
---|
49 | |
---|
50 | lemma exec_cast_sound : ∀m:mem. ∀v:val. ∀ty:type. ∀ty':type. ∀v':val. exec_cast m v ty ty' = OK ? v' → cast m v ty ty' v'. |
---|
51 | #m #v #ty #ty' #v' |
---|
52 | cases v; |
---|
53 | [ #H whd in H:(??%?); destruct; |
---|
54 | | #sz #i cases ty; |
---|
55 | [ #H whd in H:(??%?); destruct; |
---|
56 | (* | 3: #a #H whd in H:(??%?); destruct; *) |
---|
57 | | 6,7,8: #a [ 1,2: #b ] #H whd in H:(??%?); destruct; |
---|
58 | | #sz1 #si1 cases ty'; |
---|
59 | [ whd in ⊢ (??%? → ?); @intsize_eq_elim_elim |
---|
60 | [ #NE #H destruct |
---|
61 | | *; whd #H whd in H:(??%?); destruct; |
---|
62 | ] |
---|
63 | (* | 3: #a whd in ⊢ (??%? → ?); @intsize_eq_elim_elim |
---|
64 | [ #E #H whd in H:(??%?); destruct |
---|
65 | | *; whd #H whd in H:(??%?); destruct; @cast_if |
---|
66 | ] *) |
---|
67 | | 2,6,7,8: #a [1,2,3: #b] whd in ⊢ (??%? → ?); @intsize_eq_elim_elim |
---|
68 | [ 1,3,5,7: #NE #H destruct |
---|
69 | | *: *; whd #H whd in H:(??%?); destruct; // |
---|
70 | ] |
---|
71 | | 3,4,5: [ #ty'' letin t ≝ (Tpointer ty'') |
---|
72 | | #ty'' #n letin t ≝ (Tarray ty'' n) |
---|
73 | | #args #rty letin t ≝ (Tfunction args rty) ] |
---|
74 | whd in ⊢ (??%? → ?); @intsize_eq_elim_elim |
---|
75 | [ 1,3,5: #NE #H destruct |
---|
76 | | *: *; whd |
---|
77 | lapply (try_cast_null_sound m sz i (Tint sz si1) t v'); |
---|
78 | cases (try_cast_null m sz i (Tint sz si1) t); |
---|
79 | [ 1,3,5: #v'' #H' #e @H' @e |
---|
80 | | *: #m #_ whd in ⊢ (??%? → ?); #H destruct (H); |
---|
81 | ] |
---|
82 | ] |
---|
83 | ] |
---|
84 | | *: [ #ty'' letin t ≝ (Tpointer ty'') |
---|
85 | | #ty'' #n letin t ≝ (Tarray ty'' n) |
---|
86 | | #args #rty letin t ≝ (Tfunction args rty) ] |
---|
87 | whd in ⊢ (??%? → ?); |
---|
88 | lapply (try_cast_null_sound m sz i t ty' v'); |
---|
89 | cases (try_cast_null m sz i t ty'); |
---|
90 | [ 1,3,5: #v'' #H' #e @H' @e |
---|
91 | | *: #m #_ whd in ⊢ (??%? → ?); #H destruct (H); |
---|
92 | ] |
---|
93 | ] |
---|
94 | (*| #f cases ty; [ 3,4,9: #x | 2,5,6,7,8: #x #y ] |
---|
95 | [ cases ty'; [ #e | 3,4,9: #a #e | 2,6,7,8: #a #b #e | #a #b #e ] |
---|
96 | whd in e:(??%?); destruct; //; |
---|
97 | | *: #e whd in e:(??%?); destruct |
---|
98 | ] *) |
---|
99 | | cases ty; [ 3,8: #x | 2,4,5,6,7: #x #y ] |
---|
100 | whd in ⊢ (??%? → ?); #H destruct |
---|
101 | cases ty' in H; normalize; try #a try #b try #c try #d destruct; |
---|
102 | @cast_pp_z //; |
---|
103 | (* |
---|
104 | | #ptr whd in ⊢ (??%? → ?); #e |
---|
105 | elim (bind_inversion ????? e) #s * #es #e' |
---|
106 | elim (bind_inversion ????? e') #u * #eu #e'' -e'; |
---|
107 | elim (bind_inversion ????? e'') #s' * #es' #e'''; -e''; |
---|
108 | cut (type_region ty s); |
---|
109 | [ cases ty in es:(??%?) ⊢ %; [ #e | 3: #a #e | 2,4,6,7,8,9: #a #b #e | #a #b #c #e ] |
---|
110 | whd in e:(??%%); destruct; //; |
---|
111 | | #Hty |
---|
112 | cut (type_region ty' s'); |
---|
113 | [ cases ty' in es' ⊢ %; [ #e | 3: #a #e | 2,4,6,7,8,9: #a #b #e | #a #b #c #e ] |
---|
114 | whd in e:(??%%); destruct; //; |
---|
115 | | #Hty' |
---|
116 | cut (s = ptype ptr). elim (eq_region_dec (ptype ptr) s) in eu; //; normalize; #_ #e destruct. |
---|
117 | #e >e in Hty; #Hty |
---|
118 | cases (pointer_compat_dec (pblock ptr) s') in e'''; |
---|
119 | #Hcompat #e''' whd in e''':(??%%); destruct /2 by cast_pp/ |
---|
120 | ] |
---|
121 | ] |
---|
122 | *) |
---|
123 | | #ptr |
---|
124 | cases ty; [ 3,8: #x | 2,4,5,6,7: #x #y ] |
---|
125 | #E whd in E:(??%?); destruct |
---|
126 | cases ty' in E ⊢ %; normalize #A try #B try #C try #D destruct /2/ |
---|
127 | ] qed. |
---|
128 | |
---|
129 | |
---|
130 | |
---|
131 | |
---|
132 | theorem exec_expr_sound: ∀ge:genv. ∀en:env. ∀m:mem. ∀e:expr. |
---|
133 | (P_res ? (λx.eval_expr ge en m e (\fst x) (\snd x)) (exec_expr ge en m e)). |
---|
134 | #ge #en #m #e @(expr_lvalue_ind ? (λe',ty.P_res ? (λr.eval_lvalue ge en m (Expr e' ty) (\fst (\fst r)) (\snd (\fst r)) (\snd r)) (exec_lvalue' ge en m e' ty)) … e) |
---|
135 | [ #sz #ty #c whd in ⊢ (???%); cases ty try #sz' try #sg try #x try @I whd in ⊢ (???%); |
---|
136 | @eq_intsize_elim #E try @I <E whd % |
---|
137 | (*| #ty #c whd //*) |
---|
138 | (* expressions that are lvalues *) |
---|
139 | | #e' #ty cases e'; //; [ #i #He' | #e #He' | #e #i #He' ] whd in He' ⊢ %; |
---|
140 | @bind2_OK * (* #x cases x; #y cases y; #sp *) #loc #ofs #tr #H |
---|
141 | @opt_bind_OK #vl #evl whd in evl:(??%?); @(eval_Elvalue … evl) |
---|
142 | >H in He'; #He' @He' |
---|
143 | | #v #ty |
---|
144 | whd in ⊢ (???%); |
---|
145 | lapply (refl ? (lookup SymbolTag block en v)) |
---|
146 | cases (lookup SymbolTag block en v) in ⊢ (???% → %); |
---|
147 | [ #eget @opt_bind_OK #sploc cases sploc; #sp (* #loc *) #efind |
---|
148 | whd; @(eval_Evar_global … eget efind) |
---|
149 | | #loc #eget @(eval_Evar_local … eget) |
---|
150 | ] |
---|
151 | | #ty #e #He whd in ⊢ (???%); |
---|
152 | @bind2_OK #v cases v / by / * #l #ofs #tr #Hv whd |
---|
153 | >Hv in He; #He |
---|
154 | @eval_Ederef @He |
---|
155 | | #ty #e'' #ty'' #He'' @bind2_OK * #loc #ofs #tr #H |
---|
156 | cases ty try (try #a try #b try #c @I) |
---|
157 | #ty' whd |
---|
158 | @eval_Eaddrof whd in H:(??%?); >H in He''; #He'' @He'' |
---|
159 | | #ty #op #e1 #He1 @bind2_OK #v1 #tr #Hv1 |
---|
160 | @opt_bind_OK #v #ev |
---|
161 | @(eval_Eunop … ev) |
---|
162 | >Hv1 in He1; #He1 @He1 |
---|
163 | | #ty #op #e1 #e2 #He1 #He2 |
---|
164 | @bind2_OK #v1 #tr1 #ev1 >ev1 in He1; #He1 |
---|
165 | @bind2_OK #v2 #tr2 #ev2 >ev2 in He2; #He2 |
---|
166 | @opt_bind_OK #v #ev whd in He1 He2; whd; |
---|
167 | @(eval_Ebinop … He1 He2 ev) |
---|
168 | | #ty #ty' #e' #He' |
---|
169 | @bind2_OK #v #tr #Hv >Hv in He'; #He' |
---|
170 | @bind_OK #v' #ev' |
---|
171 | @(eval_Ecast … He' ?) |
---|
172 | (* XXX /2/; *) |
---|
173 | @(exec_cast_sound … ev') |
---|
174 | | #ty #e1 #e2 #e3 #He1 #He2 #He3 |
---|
175 | @bind2_OK #vb #tr1 #Hvb >Hvb in He1; #He1 |
---|
176 | @bind_OK #b |
---|
177 | cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
178 | @bind2_OK #v #tr #Hv whd in Hv:(??%?); |
---|
179 | [ >Hv in He2; #He2 whd in He2 Hv:(??%?) ⊢%; |
---|
180 | @(eval_Econdition_true … He1 ? He2) @(bool_of ??? Hb) |
---|
181 | | >Hv in He3; #He3 whd in He3 Hv:(??%?) ⊢%; |
---|
182 | @(eval_Econdition_false … He1 ? He3) @(bool_of ??? Hb) |
---|
183 | ] |
---|
184 | | #ty #e1 #e2 #He1 #He2 |
---|
185 | @bind2_OK #v1 #tr1 #Hv1 >Hv1 in He1; #He1 |
---|
186 | @bind_OK #b1 cases b1; #eb1 lapply (exec_bool_of_val_sound … eb1); #Hb1 |
---|
187 | normalize nodelta |
---|
188 | [ @bind2_OK #v2 #tr2 #Hv2 >Hv2 in He2; #He2 |
---|
189 | @bind_OK #b2 #eb2 whd in match (cast_bool_to_target ??); |
---|
190 | cases ty |
---|
191 | [ | #sz #sg | #ptr_ty | #arr_ty #arr_sz | #dom #codom | #sname #flspc | #uname #flspc | #id ] |
---|
192 | try @I normalize nodelta |
---|
193 | @(eval_Eandbool_2 … (of_bool b2) … He1 … He2) |
---|
194 | [ @(bool_of … Hb1) | @(exec_bool_of_val_sound … eb2) | @refl ] |
---|
195 | | cases ty |
---|
196 | [ | #sz #sg | #ptr_ty | #arr_ty #arr_sz | #dom #codom | #sname #flspc | #uname #flspc | #id ] |
---|
197 | try @I |
---|
198 | @(eval_Eandbool_1 … He1) [ @(bool_of … Hb1) | @refl ] |
---|
199 | ] |
---|
200 | | #ty #e1 #e2 #He1 #He2 |
---|
201 | @bind2_OK #v1 #tr1 #Hv1 >Hv1 in He1; #He1 |
---|
202 | @bind_OK #b1 cases b1; #eb1 lapply (exec_bool_of_val_sound … eb1); #Hb1 |
---|
203 | normalize nodelta |
---|
204 | [ cases ty |
---|
205 | [ | #sz #sg | #ptr_ty | #arr_ty #arr_sz | #dom #codom | #sname #flspc | #uname #flspc | #id ] |
---|
206 | try @I |
---|
207 | @(eval_Eorbool_1 … He1) [ @(bool_of … Hb1) | @refl ] |
---|
208 | | @bind2_OK #v2 #tr2 #Hv2 >Hv2 in He2; #He2 |
---|
209 | @bind_OK #b2 #eb2 |
---|
210 | cases ty |
---|
211 | [ | #sz #sg | #ptr_ty | #arr_ty #arr_sz | #dom #codom | #sname #flspc | #uname #flspc | #id ] |
---|
212 | try @I |
---|
213 | @(eval_Eorbool_2 … (of_bool b2) … He1 … He2) |
---|
214 | [ @(bool_of … Hb1) | @(exec_bool_of_val_sound … eb2) | @refl ] |
---|
215 | ] |
---|
216 | | #ty #ty' cases ty try #sz try #sg try #x // |
---|
217 | | #ty #e' #ty' #i cases ty'; //; |
---|
218 | [ #id #fs #He' @bind2_OK #x cases x; #sp #l #ofs #H |
---|
219 | @bind_OK #delta #Hdelta whd in H:(??%?); >H in He'; #He' |
---|
220 | @(eval_Efield_struct … He' (refl ??) Hdelta) |
---|
221 | | #id #fs #He' @bind2_OK #x cases x; #sp #l #ofs #H whd in H:(??%?); |
---|
222 | >H in He'; #He' |
---|
223 | @(eval_Efield_union … He' (refl ??)) |
---|
224 | ] |
---|
225 | | #ty #l #e' #He' @bind2_OK #v #tr1 #H >H in He'; #He' |
---|
226 | @(eval_Ecost … He') |
---|
227 | (* exec_lvalue fails on non-lvalues. *) |
---|
228 | | #e' #ty cases e'; |
---|
229 | [ 2,4,11: #a #H try @I @(False_ind … H) | 3: #a * | 12,13: #a #b * | 1,5,7,9,10: #a #b #H @I | 6,8: #a #b #c #H @I ] |
---|
230 | try @I |
---|
231 | ] qed. |
---|
232 | |
---|
233 | lemma addrof_eval_lvalue: ∀ge,en,m,e,loc,off,tr,ty. |
---|
234 | eval_expr ge en m (Expr (Eaddrof e) ty) (Vptr (mk_pointer loc off)) tr → |
---|
235 | eval_lvalue ge en m e loc off tr. |
---|
236 | #ge #en #m #e #loc #off #tr #ty #H inversion H; |
---|
237 | [ 1,4: #a #b #c #H @False_ind destruct (H); |
---|
238 | | #a #b #c #d #e #f #H1 #g #H2 #E1 #E2 #E3 <H2 in H1; #H1 @False_ind |
---|
239 | @(eval_lvalue_inv_ind … H1) |
---|
240 | [ #a #b #c #d #bad destruct (bad); |
---|
241 | | #a #b #c #d #e #bad destruct (bad); |
---|
242 | | #a #b #c #d #e #f #bad destruct (bad); |
---|
243 | | #a #b #c #d #e #f #g #h #i #j #k #l #bad @False_ind destruct (bad); |
---|
244 | | #a #b #c #d #e #f #g #h #i #j #bad destruct (bad); |
---|
245 | ] |
---|
246 | | #e' #ty' #loc' #ofs' #tr' #H' #e1 #e2 #e3 destruct (e1 e2 e3); #E @H' |
---|
247 | | #a #b #c #d #e #f #g #h #bad destruct (bad); |
---|
248 | | #a #b #c #d #e #f #g #h #i #j #k #l #bad destruct (bad); |
---|
249 | | #a #b #c #d #e #f #g #h #i #j #k #bad destruct (bad); |
---|
250 | | #a #b #c #d #e #f #g #h #i #j #k #bad destruct (bad); |
---|
251 | | #a #b #c #d #e #f #g #h #i #bad destruct (bad); |
---|
252 | | #a #b #c #d #e #f #g #h #i #j #k #l #m #n #bad destruct (bad); |
---|
253 | | #a #b #c #d #e #f #g #h #i #bad destruct (bad); |
---|
254 | | #a #b #c #d #e #f #g #h #i #j #k #l #m #n #bad destruct (bad); |
---|
255 | | #a #b #c #d #e #f #g #h #bad destruct (bad); |
---|
256 | | #a #b #c #d #e #f #bad destruct (bad); |
---|
257 | ] qed. |
---|
258 | |
---|
259 | lemma addrof_exec_lvalue: ∀ge,en,m,e(*,r*),loc,off,tr. |
---|
260 | exec_lvalue ge en m e = OK ? 〈〈mk_block (*r*) loc,off〉,tr〉 → |
---|
261 | exec_expr ge en m (Expr (Eaddrof e) (Tpointer Tvoid)) = OK ? 〈Vptr (mk_pointer (mk_block (*r*) loc) off), tr〉. |
---|
262 | #ge #en #m #e (* #r *) #loc #off #tr #H whd in ⊢ (??%?); |
---|
263 | >H whd in ⊢ (??%?); (* cases r *) @refl |
---|
264 | qed. |
---|
265 | |
---|
266 | theorem exec_lvalue_sound: ∀ge,en,m,e. |
---|
267 | P_res ? (λr.eval_lvalue ge en m e (\fst (\fst r)) (\snd (\fst r)) (\snd r)) (exec_lvalue ge en m e). |
---|
268 | #ge #en #m #e lapply (refl ? (exec_lvalue ge en m e)); |
---|
269 | cases (exec_lvalue ge en m e) in ⊢ (???% → %); |
---|
270 | [ #x cases x #y cases y #loc #off #tr #H whd cases loc in H ⊢ %; #loci #H (* #locr #loci #H *) |
---|
271 | @(addrof_eval_lvalue … (Tpointer Tvoid)) |
---|
272 | lapply (addrof_exec_lvalue … H) #H' |
---|
273 | lapply (exec_expr_sound ge en m (Expr (Eaddrof e) (Tpointer Tvoid))) |
---|
274 | >H' #H'' @H'' |
---|
275 | | #msg #_ whd @I |
---|
276 | ] qed. |
---|
277 | |
---|
278 | (* Plain equality versions of the above *) |
---|
279 | |
---|
280 | definition exec_expr_sound' ≝ λge,en,m,e,v. |
---|
281 | λH:exec_expr ge en m e = OK ? v. |
---|
282 | P_res_to_P ???? (exec_expr_sound ge en m e) H. |
---|
283 | |
---|
284 | definition exec_lvalue_sound' ≝ λge,en,m,e,loc,off,tr. |
---|
285 | λH:exec_lvalue ge en m e = OK ? 〈〈loc,off〉,tr〉. |
---|
286 | P_res_to_P ???? (exec_lvalue_sound ge en m e) H. |
---|
287 | |
---|
288 | lemma exec_exprlist_sound: ∀ge,e,m,l. P_res ? (λvltr:list val×trace. eval_exprlist ge e m l (\fst vltr) (\snd vltr)) (exec_exprlist ge e m l). |
---|
289 | #ge #e #m #l elim l; |
---|
290 | whd |
---|
291 | [ % |
---|
292 | | #e1 #es #IH |
---|
293 | @bind2_OK #v #tr1 #Hv |
---|
294 | @bind2_OK #vs #tr2 #Hvs |
---|
295 | whd; @eval_Econs |
---|
296 | [ @(P_res_to_P … (exec_expr_sound ge e m e1) Hv) |
---|
297 | | @(P_res_to_P … IH Hvs) |
---|
298 | ] |
---|
299 | ] qed. |
---|
300 | |
---|
301 | lemma exec_alloc_variables_sound : ∀l,en,m,en',m'. |
---|
302 | exec_alloc_variables en m l = 〈en',m'〉 → |
---|
303 | alloc_variables en m l en' m'. |
---|
304 | #l elim l |
---|
305 | [ #en #m #en' #m' #EXEC whd in EXEC:(??%?); destruct % |
---|
306 | | * #id #ty #t #IH #en #m #en' #m' |
---|
307 | lapply (refl ? (alloc m O (sizeof ty) (*XData*))) whd in ⊢ (? → ??%? → ?); |
---|
308 | cases (alloc ??? (*?*)) in ⊢ (???% → %); #m'' #b #ALLOC #EXEC |
---|
309 | @(alloc_variables_cons … ALLOC) |
---|
310 | @IH @EXEC |
---|
311 | qed. |
---|
312 | |
---|
313 | lemma exec_bind_parameters_sound : ∀ps,vs,en,m. |
---|
314 | P_res ? (λm'. bind_parameters en m ps vs m') (exec_bind_parameters en m ps vs). |
---|
315 | #ps elim ps |
---|
316 | [ * // |
---|
317 | | * #id #ty #ps' #IH * |
---|
318 | [ // |
---|
319 | | #v #vs #en #m |
---|
320 | @opt_bind_OK #b #GET |
---|
321 | @opt_bind_OK #m' #STORE |
---|
322 | lapply (refl ? (exec_bind_parameters en m' ps' vs)) |
---|
323 | cases (exec_bind_parameters en m' ps' vs) in ⊢ (???% → %); [2: #msg #_ %] |
---|
324 | #m'' #BIND |
---|
325 | @(bind_parameters_cons … GET STORE) |
---|
326 | lapply (IH vs en m') whd in ⊢ (% → ?); >BIND // |
---|
327 | ] |
---|
328 | ] qed. |
---|
329 | |
---|
330 | lemma check_eventval_list_sound : ∀vs,tys. |
---|
331 | P_res ? (λevs. eventval_list_match evs tys vs) (check_eventval_list vs tys). |
---|
332 | #vs0 elim vs0 |
---|
333 | [ * // |
---|
334 | | #v #vs #IH * |
---|
335 | [ // |
---|
336 | | #ty #tys whd in ⊢ (???%); |
---|
337 | cases ty [ #sz #sg | ] cases v // |
---|
338 | #sz' #v @bind_OK #ev whd in ⊢ (??%? → ?); |
---|
339 | @eq_intsize_elim #E #CHECKev whd in CHECKev:(??%?); destruct |
---|
340 | @bind_OK #evs #CHECKevs |
---|
341 | @(evl_match_cons ??????? (P_res_to_P ???? (IH ?) CHECKevs)) |
---|
342 | // |
---|
343 | ] |
---|
344 | ] qed. |
---|
345 | |
---|
346 | theorem exec_step_sound: ∀ge,st. |
---|
347 | P_io ??? (λr. step ge st (\fst r) (\snd r)) (exec_step ge st). |
---|
348 | #ge #st cases st; |
---|
349 | [ #f #s #k #e #m cases s; |
---|
350 | [ cases k; |
---|
351 | [ whd in ⊢ (?????%); |
---|
352 | lapply (refl ? (fn_return f)); cases (fn_return f) in ⊢ (???% → %); |
---|
353 | //; #H whd; |
---|
354 | @step_skip_call //; |
---|
355 | | #s' #k' whd; // |
---|
356 | | #ex #s' #k' @step_skip_or_continue_while % //; |
---|
357 | | #ex #s' #k' |
---|
358 | @res_bindIO2_OK #v #tr #Hv |
---|
359 | letin bexpr ≝ (exec_bool_of_val v (typeof ex)); |
---|
360 | lapply (refl ? bexpr); |
---|
361 | cases bexpr in ⊢ (???% → %); |
---|
362 | [ #b cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
363 | whd in ⊢ (?????%); |
---|
364 | [ @(step_skip_or_continue_dowhile_true … (exec_expr_sound' … Hv)) |
---|
365 | [ % // | @(bool_of … Hb) ] |
---|
366 | | @(step_skip_or_continue_dowhile_false … (exec_expr_sound' … Hv)) |
---|
367 | [ % // | @(bool_of … Hb) ] |
---|
368 | ] |
---|
369 | | #msg #_ //; |
---|
370 | ] |
---|
371 | | #ex #s1 #s2 #k' @step_skip_or_continue_for2 % //; |
---|
372 | | #ex #s1 #s2 #k' @step_skip_for3 |
---|
373 | | #k' @step_skip_break_switch % //; |
---|
374 | | #r #f' #e' #k' whd in ⊢ (?????%); |
---|
375 | lapply (refl ? (fn_return f)); cases (fn_return f) in ⊢ (???% → %); |
---|
376 | //; #H whd; |
---|
377 | @step_skip_call //; |
---|
378 | ] |
---|
379 | | #ex1 #ex2 |
---|
380 | @res_bindIO2_OK #x cases x; (*#y cases y; *) #pcl (* #loc *) #ofs #tr1 #Hlval |
---|
381 | @res_bindIO2_OK #v2 #tr2 #Hv2 |
---|
382 | @opt_bindIO_OK #m' #em' |
---|
383 | whd; @(step_assign … (exec_lvalue_sound' … Hlval) (exec_expr_sound' … Hv2) em') |
---|
384 | | #lex #fex #args |
---|
385 | @res_bindIO2_OK #vf #tr1 #Hvf0 lapply (exec_expr_sound' … Hvf0); #Hvf |
---|
386 | @res_bindIO2_OK #vargs #tr2 #Hvargs0 lapply (P_res_to_P ???? (exec_exprlist_sound …) Hvargs0); #Hvargs |
---|
387 | @opt_bindIO_OK * #fd #fid #efd |
---|
388 | @bindIO_OK #ety |
---|
389 | cases lex; whd; |
---|
390 | [ @(step_call_none … Hvf Hvargs efd ety) |
---|
391 | | #lhs' |
---|
392 | @res_bindIO2_OK #x cases x; (* #y cases y; *) #pcl (* #loc *) #ofs #tr3 #Hlocofs |
---|
393 | whd; @(step_call_some … (exec_lvalue_sound' … Hlocofs) Hvf Hvargs efd ety) |
---|
394 | ] |
---|
395 | | #s1 #s2 // |
---|
396 | | #ex #s1 #s2 |
---|
397 | @res_bindIO2_OK #v #tr #Hv |
---|
398 | letin bexpr ≝ (exec_bool_of_val v (typeof ex)); |
---|
399 | lapply (refl ? bexpr); cases bexpr in ⊢ (???% → %); //; |
---|
400 | #b cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
401 | [ @(step_ifthenelse_true … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
402 | | @(step_ifthenelse_false … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
403 | ] |
---|
404 | | #ex #s' |
---|
405 | @res_bindIO2_OK #v #tr #Hv |
---|
406 | letin bexpr ≝ (exec_bool_of_val v (typeof ex)); |
---|
407 | lapply (refl ? bexpr); cases bexpr in ⊢ (???% → %); //; |
---|
408 | #b cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
409 | [ @(step_while_true … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
410 | | @(step_while_false … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
411 | ] |
---|
412 | | #ex #s' // |
---|
413 | | #s1 #ex #s2 #s3 whd in ⊢ (?????%); elim (is_Sskip s1); #Hs1 whd in ⊢ (?????%); |
---|
414 | [ >Hs1 |
---|
415 | @res_bindIO2_OK #v #tr #Hv |
---|
416 | letin bexpr ≝ (exec_bool_of_val v (typeof ex)); |
---|
417 | lapply (refl ? bexpr); cases bexpr in ⊢ (???% → %); //; |
---|
418 | #b cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
419 | [ @(step_for_true … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
420 | | @(step_for_false … (exec_expr_sound' … Hv)) @(bool_of … Hb) |
---|
421 | ] |
---|
422 | | @step_for_start //; |
---|
423 | ] |
---|
424 | | whd in ⊢ (?????%); cases k; // #k' @step_skip_break_switch %2 // |
---|
425 | | whd in ⊢ (?????%); cases k; //; |
---|
426 | [ #ex #s' #k' whd; @step_skip_or_continue_while %2 ; //; |
---|
427 | | #ex #s' #k' whd; |
---|
428 | @res_bindIO2_OK #v #tr #Hv |
---|
429 | letin bexpr ≝ (exec_bool_of_val v (typeof ex)); |
---|
430 | lapply (refl ? bexpr); cases bexpr in ⊢ (???% → %); //; |
---|
431 | #b cases b; #eb lapply (exec_bool_of_val_sound … eb); #Hb |
---|
432 | [ @(step_skip_or_continue_dowhile_true … (exec_expr_sound' … Hv)) |
---|
433 | [ %2 ; // | @(bool_of … Hb) ] |
---|
434 | | @(step_skip_or_continue_dowhile_false … (exec_expr_sound' … Hv)) |
---|
435 | [ %2 ; // | @(bool_of … Hb) ] |
---|
436 | ] |
---|
437 | | #ex #s1 #s2 #k' whd; @step_skip_or_continue_for2 %2 ; // |
---|
438 | ] |
---|
439 | | #r whd in ⊢ (?????%); cases r; |
---|
440 | [ whd; lapply (refl ? (fn_return f)); cases (fn_return f) in ⊢ (???% → %); //; #H |
---|
441 | @step_return_0 @H |
---|
442 | | #ex cases (type_eq_dec (fn_return f) Tvoid); //; whd in ⊢ (% → ?????%); #Hnotvoid |
---|
443 | @res_bindIO2_OK #v #tr #Hv |
---|
444 | whd; @(step_return_1 … Hnotvoid (exec_expr_sound' … Hv)) |
---|
445 | ] |
---|
446 | | #ex #ls @res_bindIO2_OK * // #sz #n #tr #Hv |
---|
447 | lapply (refl ? (typeof ex)) cases (typeof ex) in ⊢ (???% → %); // #sz' #sg #TY |
---|
448 | whd in ⊢ (?????%); cases (sz_eq_dec sz sz') // #SZ destruct (SZ) |
---|
449 | whd in ⊢ (?????%); @opt_bindIO_OK #ls' #LS |
---|
450 | @(step_switch … TY LS) @(exec_expr_sound' … Hv) |
---|
451 | | #l #s' // |
---|
452 | | #l whd in ⊢ (?????%); lapply (refl ? (find_label l (fn_body f) (call_cont k))); |
---|
453 | cases (find_label l (fn_body f) (call_cont k)) in ⊢ (???% → %); //; |
---|
454 | #sk cases sk; #s' #k' #H |
---|
455 | @(step_goto … H) |
---|
456 | | #l #s' // |
---|
457 | ] |
---|
458 | | #vf #f0 #vargs #k #m whd in ⊢ (?????%); cases f0; |
---|
459 | [ #fn whd in ⊢ (?????%); |
---|
460 | lapply (refl ? (exec_alloc_variables empty_env m (fn_params fn@fn_vars fn))) |
---|
461 | cases (exec_alloc_variables empty_env m (fn_params fn@fn_vars fn)) in ⊢ (???% → %); |
---|
462 | #en' #m' #ALLOC whd in ⊢ (?????%); |
---|
463 | @res_bindIO_OK #m2 #BIND |
---|
464 | whd; @(step_internal_function … (exec_alloc_variables_sound … ALLOC)) |
---|
465 | @(P_res_to_P … (exec_bind_parameters_sound …) BIND) |
---|
466 | | #id #argtys #rty @res_bindIO_OK #evs #Hevs #v' |
---|
467 | @bindIO_OK #eres whd |
---|
468 | @step_external_function % [ @(P_res_to_P … (check_eventval_list_sound …) Hevs) |
---|
469 | | @mk_val_correct ] |
---|
470 | ] |
---|
471 | | #v #k' #m' whd in ⊢ (?????%); cases k'; //; |
---|
472 | [ whd in ⊢ (?????%); cases v // * // |
---|
473 | | #r #f #e #k whd in ⊢ (?????%); cases r // |
---|
474 | * * #b #ofs #ty |
---|
475 | @opt_bindIO_OK #m' #em' @step_returnstate_1 whd in em':(??%?); // |
---|
476 | ] |
---|
477 | | // |
---|
478 | ] |
---|
479 | qed. |
---|
480 | |
---|
481 | lemma make_initial_state_sound : ∀p. P_res ? (initial_state p) (make_initial_state p). |
---|
482 | #p cases p; #fns #main #vars |
---|
483 | whd in ⊢ (???%); |
---|
484 | @bind_OK #m #Em |
---|
485 | @opt_bind_OK #x cases x; #sp #esb (* #b #esb *) |
---|
486 | @opt_bind_OK #f #ef |
---|
487 | @(initial_state_intro … Em esb ef) @refl |
---|
488 | qed. |
---|
489 | |
---|
490 | theorem exec_steps_sound: ∀ge,n,st. |
---|
491 | P_io ??? (λts:trace×state. star (mk_transrel ?? step) ge st (\fst ts) (\snd ts)) |
---|
492 | (exec_steps n ge st). |
---|
493 | #ge #n elim n; |
---|
494 | [ #st whd in ⊢ (?????%); elim (is_final_state st); #H whd; % |
---|
495 | | #n' #IH #st whd in ⊢ (?????%); elim (is_final_state st); #H |
---|
496 | [ whd; % |
---|
497 | | @(P_bindIO2_OK ????????? (exec_step_sound …)) #t #s' cases s'; |
---|
498 | [ #f #s #k #e #m | #vf #fd #args #k #m | #r #k #m | #r ] normalize |
---|
499 | [ 1,2,3: cases m; #mc #mn #mp ] #Hstep normalize |
---|
500 | @(P_bindIO2_OK ????????? (IH …)) #t' #s'' #Hsteps |
---|
501 | whd; @(star_step ????????? Hsteps) [ 2,5,8,11: @Hstep | 3,6,9,12: // ] |
---|
502 | ] |
---|
503 | qed. |
---|
504 | |
---|
505 | lemma is_final_sound: ∀s,r. is_final s = Some ? r → final_state s r. |
---|
506 | * [ 4: #r #r' normalize #E destruct % |
---|
507 | | *: normalize #x1 #x2 #x3 #x4 #x5 try #x6 try #x7 destruct |
---|
508 | ] qed. |
---|