1 | (* *********************************************************************) |
---|
2 | (* *) |
---|
3 | (* The Compcert verified compiler *) |
---|
4 | (* *) |
---|
5 | (* Xavier Leroy, INRIA Paris-Rocquencourt *) |
---|
6 | (* *) |
---|
7 | (* Copyright Institut National de Recherche en Informatique et en *) |
---|
8 | (* Automatique. All rights reserved. This file is distributed *) |
---|
9 | (* under the terms of the GNU General Public License as published by *) |
---|
10 | (* the Free Software Foundation, either version 2 of the License, or *) |
---|
11 | (* (at your option) any later version. This file is also distributed *) |
---|
12 | (* under the terms of the INRIA Non-Commercial License Agreement. *) |
---|
13 | (* *) |
---|
14 | (* *********************************************************************) |
---|
15 | |
---|
16 | (* * This module defines the type of values that is used in the dynamic |
---|
17 | semantics of all our intermediate languages. *) |
---|
18 | |
---|
19 | include "utilities/Coqlib.ma". |
---|
20 | include "common/Floats.ma". |
---|
21 | include "common/Errors.ma". |
---|
22 | include "common/Pointers.ma". |
---|
23 | include "basics/logic.ma". |
---|
24 | |
---|
25 | (* * A value is either: |
---|
26 | - a machine integer; |
---|
27 | - a floating-point number; |
---|
28 | - a pointer: a triple giving the representation of the pointer (in terms of the |
---|
29 | memory regions such a pointer could address), a memory address and |
---|
30 | an integer offset with respect to this address; |
---|
31 | - a null pointer: the region denotes the representation (i.e., pointer size) |
---|
32 | - the [Vundef] value denoting an arbitrary bit pattern, such as the |
---|
33 | value of an uninitialized variable. |
---|
34 | *) |
---|
35 | |
---|
36 | inductive val: Type[0] ≝ |
---|
37 | | Vundef: val |
---|
38 | | Vint: ∀sz:intsize. bvint sz → val |
---|
39 | | Vfloat: float → val |
---|
40 | | Vnull: region → val |
---|
41 | | Vptr: ∀r:region. ∀b:block. pointer_compat b r → offset → val. |
---|
42 | |
---|
43 | definition Vzero : intsize → val ≝ λsz. Vint sz (zero ?). |
---|
44 | definition Vone: intsize → val ≝ λsz. Vint sz (repr sz 1). |
---|
45 | definition mone ≝ λsz. bitvector_of_Z (bitsize_of_intsize sz) (neg one). |
---|
46 | definition Vmone: intsize → val ≝ λsz. Vint sz (mone ?). |
---|
47 | |
---|
48 | (* XXX 32bit booleans are Clight specific. *) |
---|
49 | definition Vtrue: val ≝ Vone I32. |
---|
50 | definition Vfalse: val ≝ Vzero I32. |
---|
51 | |
---|
52 | (* Values split into bytes. Ideally we'd use some kind of sizeof for the |
---|
53 | predicates here, but we don't (currently) have a single sizeof for Vundef. |
---|
54 | We only split in stages of the compiler where all Vint values are byte sized. |
---|
55 | *) |
---|
56 | |
---|
57 | definition ptr_may_be_single : region → bool ≝ |
---|
58 | λr.match r with [ Data ⇒ true | IData ⇒ true | _ ⇒ false ]. |
---|
59 | |
---|
60 | definition may_be_single : val → Prop ≝ |
---|
61 | λv. match v with |
---|
62 | [ Vundef ⇒ True |
---|
63 | | Vint _ _ ⇒ True |
---|
64 | | Vfloat _ ⇒ False |
---|
65 | | Vnull r ⇒ ptr_may_be_single r = true |
---|
66 | | Vptr r _ _ _ ⇒ ptr_may_be_single r = true |
---|
67 | ]. |
---|
68 | |
---|
69 | definition may_be_split : val → Prop ≝ |
---|
70 | λv.match v with |
---|
71 | [ Vint _ _ ⇒ False |
---|
72 | | Vnull r ⇒ ptr_may_be_single r = false |
---|
73 | | Vptr r _ _ _ ⇒ ptr_may_be_single r = false |
---|
74 | | _ ⇒ True |
---|
75 | ]. |
---|
76 | |
---|
77 | inductive split_val : Type[0] ≝ |
---|
78 | | Single : ∀v:val. may_be_single v → split_val |
---|
79 | | High : ∀v:val. may_be_split v → split_val |
---|
80 | | Low : ∀v:val. may_be_split v → split_val. |
---|
81 | |
---|
82 | notation > "vbox('do' _ ← e; break e')" with precedence 40 for @{'bind ${e} (λ_.${e'})}. |
---|
83 | (* |
---|
84 | let rec assert_nat_eq (m,n:nat) : res (m = n) ≝ |
---|
85 | match m return λx.res (x = n) with |
---|
86 | [ O ⇒ match n return λx. res (O = x) with [ O ⇒ OK ? (refl ??) | _ ⇒ Error ? ] |
---|
87 | | S m' ⇒ match n return λx.res (S m' = x) with [ O ⇒ Error ? | S n' ⇒ |
---|
88 | do E ← assert_nat_eq m' n'; |
---|
89 | match E return λx.λ_. res (S m' = S x) with [ refl ⇒ OK ? (refl ??) ] ] |
---|
90 | ]. |
---|
91 | |
---|
92 | definition res_eq_nat : ∀m,n:nat. ∀P:nat → Type[0]. P m → res (P n) ≝ |
---|
93 | λm,n,P,p. |
---|
94 | do E ← assert_nat_eq m n; |
---|
95 | match E return λx.λ_. res (P x) with [ refl ⇒ OK ? p ]. |
---|
96 | |
---|
97 | definition break : ∀n:nat. val → res (Vector split_val n) ≝ |
---|
98 | λn,v. match v return λv'. (may_be_single v' → ?) → (may_be_split v' → ?) → ? with |
---|
99 | [ Vundef ⇒ λs.λt. res_eq_nat 1 n ? (s I) |
---|
100 | | Vint i ⇒ λs.λt. res_eq_nat 1 n ? (s I) |
---|
101 | | Vfloat f ⇒ λs.λt. res_eq_nat 2 n ? (t I) |
---|
102 | | Vnull r ⇒ |
---|
103 | match ptr_may_be_single r return λx. (x = true → ?) → (x = false → ?) → ? with |
---|
104 | [ true ⇒ λs.λt. res_eq_nat 1 n ? (s (refl ??)) |
---|
105 | | false ⇒ λs.λt. ? |
---|
106 | ] |
---|
107 | | Vptr r b p o ⇒ |
---|
108 | match ptr_may_be_single r return λx. (x = true → ?) → (x = false → ?) → ? with |
---|
109 | [ true ⇒ λs.λt. res_eq_nat 1 n ? (s (refl ??)) |
---|
110 | | false ⇒ λs.λt. ? |
---|
111 | ] |
---|
112 | ] (λp. [[ Single v p ]]) (λp. [[ Low v p; High v p ]]). |
---|
113 | @(res_eq_nat 2 n ? (t (refl ??))) qed. (* XXX: I have no idea why this fails if you do it directly. *) |
---|
114 | |
---|
115 | definition val_eq : val → val → bool ≝ |
---|
116 | λx,y. |
---|
117 | match x with |
---|
118 | [ Vundef ⇒ match y with [ Vundef ⇒ true | _ ⇒ false ] |
---|
119 | | Vint i ⇒ match y with [ Vint j ⇒ eq i j | _ ⇒ false ] |
---|
120 | | Vfloat f ⇒ match y with [ Vfloat f' ⇒ match eq_dec f f' with [ inl _ ⇒ true | _ ⇒ false ] | _ ⇒ false ] |
---|
121 | | Vnull r ⇒ match y with [ Vnull r' ⇒ eq_region r r' | _ ⇒ false ] |
---|
122 | | Vptr r b p o ⇒ match y with [ Vptr r' b' p' o' ⇒ eq_region r r' ∧ eq_block b b' ∧ eq_offset o o' | _ ⇒ false ] |
---|
123 | ]. |
---|
124 | |
---|
125 | definition merge : ∀n:nat. Vector split_val n → res val ≝ |
---|
126 | λn,s. match s with |
---|
127 | [ VEmpty ⇒ Error ? |
---|
128 | | VCons _ h1 t1 ⇒ |
---|
129 | match t1 with |
---|
130 | [ VEmpty ⇒ match h1 with [ Single v _ ⇒ OK ? v | _ ⇒ Error ? ] |
---|
131 | | VCons _ h2 t2 ⇒ |
---|
132 | match t2 with |
---|
133 | [ VEmpty ⇒ match h1 with [ Low v _ ⇒ match h2 with [ High v' _ ⇒ if val_eq v v' then OK ? v else Error ? | _ ⇒ Error ? ] | _ ⇒ Error ? ] |
---|
134 | | VCons _ _ _ ⇒ Error ? |
---|
135 | ] |
---|
136 | ] |
---|
137 | ]. |
---|
138 | |
---|
139 | *) |
---|
140 | (* |
---|
141 | (** The module [Val] defines a number of arithmetic and logical operations |
---|
142 | over type [val]. Most of these operations are straightforward extensions |
---|
143 | of the corresponding integer or floating-point operations. *) |
---|
144 | |
---|
145 | Module Val. |
---|
146 | *) |
---|
147 | definition of_bool : bool → val ≝ λb. if b then Vtrue else Vfalse. |
---|
148 | (* |
---|
149 | definition has_type ≝ λv: val. λt: typ. |
---|
150 | match v with |
---|
151 | [ Vundef ⇒ True |
---|
152 | | Vint _ ⇒ match t with [ ASTint ⇒ True | _ ⇒ False ] |
---|
153 | | Vfloat _ ⇒ match t with [ ASTfloat ⇒ True | _ ⇒ False ] |
---|
154 | | Vptr _ _ _ ⇒ match t with [ ASTptr ⇒ True | _ ⇒ False ] |
---|
155 | | _ ⇒ False |
---|
156 | ]. |
---|
157 | |
---|
158 | let rec has_type_list (vl: list val) (tl: list typ) on vl : Prop ≝ |
---|
159 | match vl with |
---|
160 | [ nil ⇒ match tl with [ nil ⇒ True | _ ⇒ False ] |
---|
161 | | cons v1 vs ⇒ match tl with [ nil ⇒ False | cons t1 ts ⇒ |
---|
162 | has_type v1 t1 ∧ has_type_list vs ts ] |
---|
163 | ]. |
---|
164 | *) |
---|
165 | (* * Truth values. Pointers and non-zero integers are treated as [True]. |
---|
166 | The integer 0 (also used to represent the null pointer) is [False]. |
---|
167 | [Vundef] and floats are neither true nor false. *) |
---|
168 | |
---|
169 | definition is_true : val → Prop ≝ λv. |
---|
170 | match v with |
---|
171 | [ Vint _ n ⇒ n ≠ (zero ?) |
---|
172 | | Vptr _ b _ ofs ⇒ True |
---|
173 | | _ ⇒ False |
---|
174 | ]. |
---|
175 | |
---|
176 | definition is_false : val → Prop ≝ λv. |
---|
177 | match v with |
---|
178 | [ Vint _ n ⇒ n = (zero ?) |
---|
179 | | Vnull _ ⇒ True |
---|
180 | | _ ⇒ False |
---|
181 | ]. |
---|
182 | |
---|
183 | inductive bool_of_val: val → bool → Prop ≝ |
---|
184 | | bool_of_val_int_true: |
---|
185 | ∀sz,n. n ≠ zero ? → bool_of_val (Vint sz n) true |
---|
186 | | bool_of_val_int_false: |
---|
187 | ∀sz. bool_of_val (Vzero sz) false |
---|
188 | | bool_of_val_ptr: |
---|
189 | ∀r,b,p,ofs. bool_of_val (Vptr r b p ofs) true |
---|
190 | | bool_of_val_null: |
---|
191 | ∀r. bool_of_val (Vnull r) true. |
---|
192 | |
---|
193 | axiom ValueNotABoolean : String. |
---|
194 | |
---|
195 | definition eval_bool_of_val : val → res bool ≝ |
---|
196 | λv. match v with |
---|
197 | [ Vint _ i ⇒ OK ? (notb (eq_bv ? i (zero ?))) |
---|
198 | | Vnull _ ⇒ OK ? false |
---|
199 | | Vptr _ _ _ _ ⇒ OK ? true |
---|
200 | | _ ⇒ Error ? (msg ValueNotABoolean) |
---|
201 | ]. |
---|
202 | |
---|
203 | definition neg : val → val ≝ λv. |
---|
204 | match v with |
---|
205 | [ Vint sz n ⇒ Vint sz (two_complement_negation ? n) |
---|
206 | | _ ⇒ Vundef |
---|
207 | ]. |
---|
208 | |
---|
209 | definition negf : val → val ≝ λv. |
---|
210 | match v with |
---|
211 | [ Vfloat f ⇒ Vfloat (Fneg f) |
---|
212 | | _ => Vundef |
---|
213 | ]. |
---|
214 | |
---|
215 | definition absf : val → val ≝ λv. |
---|
216 | match v with |
---|
217 | [ Vfloat f ⇒ Vfloat (Fabs f) |
---|
218 | | _ ⇒ Vundef |
---|
219 | ]. |
---|
220 | |
---|
221 | definition intoffloat : intsize → val → val ≝ λsz,v. |
---|
222 | match v with |
---|
223 | [ Vfloat f ⇒ Vint sz (intoffloat ? f) |
---|
224 | | _ ⇒ Vundef |
---|
225 | ]. |
---|
226 | |
---|
227 | definition intuoffloat : intsize → val → val ≝ λsz,v. |
---|
228 | match v with |
---|
229 | [ Vfloat f ⇒ Vint sz (intuoffloat ? f) |
---|
230 | | _ ⇒ Vundef |
---|
231 | ]. |
---|
232 | |
---|
233 | definition floatofint : val → val ≝ λv. |
---|
234 | match v with |
---|
235 | [ Vint sz n ⇒ Vfloat (floatofint ? n) |
---|
236 | | _ ⇒ Vundef |
---|
237 | ]. |
---|
238 | |
---|
239 | definition floatofintu : val → val ≝ λv. |
---|
240 | match v with |
---|
241 | [ Vint sz n ⇒ Vfloat (floatofintu ? n) |
---|
242 | | _ ⇒ Vundef |
---|
243 | ]. |
---|
244 | |
---|
245 | definition notint : val → val ≝ λv. |
---|
246 | match v with |
---|
247 | [ Vint sz n ⇒ Vint sz (exclusive_disjunction_bv ? n (mone ?)) |
---|
248 | | _ ⇒ Vundef |
---|
249 | ]. |
---|
250 | |
---|
251 | definition notbool : val → val ≝ λv. |
---|
252 | match v with |
---|
253 | [ Vint sz n ⇒ of_bool (eq_bv ? n (zero ?)) |
---|
254 | | Vptr _ b _ ofs ⇒ Vfalse |
---|
255 | | Vnull _ ⇒ Vtrue |
---|
256 | | _ ⇒ Vundef |
---|
257 | ]. |
---|
258 | |
---|
259 | definition zero_ext ≝ λrsz: intsize. λv: val. |
---|
260 | match v with |
---|
261 | [ Vint sz n ⇒ Vint rsz (zero_ext … n) |
---|
262 | | _ ⇒ Vundef |
---|
263 | ]. |
---|
264 | |
---|
265 | definition sign_ext ≝ λrsz:intsize. λv:val. |
---|
266 | match v with |
---|
267 | [ Vint sz i ⇒ Vint rsz (sign_ext … i) |
---|
268 | | _ ⇒ Vundef |
---|
269 | ]. |
---|
270 | |
---|
271 | definition singleoffloat : val → val ≝ λv. |
---|
272 | match v with |
---|
273 | [ Vfloat f ⇒ Vfloat (singleoffloat f) |
---|
274 | | _ ⇒ Vundef |
---|
275 | ]. |
---|
276 | |
---|
277 | (* TODO: add zero to null? *) |
---|
278 | definition add ≝ λv1,v2: val. |
---|
279 | match v1 with |
---|
280 | [ Vint sz1 n1 ⇒ match v2 with |
---|
281 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
282 | (λn1. Vint sz2 (addition_n ? n1 n2)) |
---|
283 | Vundef |
---|
284 | | Vptr r b2 p ofs2 ⇒ Vptr r b2 p (shift_offset ? ofs2 n1) |
---|
285 | | _ ⇒ Vundef ] |
---|
286 | | Vptr r b1 p ofs1 ⇒ match v2 with |
---|
287 | [ Vint _ n2 ⇒ Vptr r b1 p (shift_offset ? ofs1 n2) |
---|
288 | | _ ⇒ Vundef ] |
---|
289 | | _ ⇒ Vundef ]. |
---|
290 | |
---|
291 | (* XXX Is I32 the best answer for ptr subtraction? *) |
---|
292 | |
---|
293 | definition sub ≝ λv1,v2: val. |
---|
294 | match v1 with |
---|
295 | [ Vint sz1 n1 ⇒ match v2 with |
---|
296 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
297 | (λn1. Vint sz2 (subtraction ? n1 n2)) |
---|
298 | Vundef |
---|
299 | | _ ⇒ Vundef ] |
---|
300 | | Vptr r1 b1 p1 ofs1 ⇒ match v2 with |
---|
301 | [ Vint sz2 n2 ⇒ Vptr r1 b1 p1 (neg_shift_offset ? ofs1 n2) |
---|
302 | | Vptr r2 b2 p2 ofs2 ⇒ |
---|
303 | if eq_block b1 b2 then Vint I32 (sub_offset ? ofs1 ofs2) else Vundef |
---|
304 | | _ ⇒ Vundef ] |
---|
305 | | Vnull r ⇒ match v2 with [ Vnull r' ⇒ Vzero I32 | _ ⇒ Vundef ] |
---|
306 | | _ ⇒ Vundef ]. |
---|
307 | |
---|
308 | definition mul ≝ λv1, v2: val. |
---|
309 | match v1 with |
---|
310 | [ Vint sz1 n1 ⇒ match v2 with |
---|
311 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
312 | (λn1. Vint sz2 (\snd (split … (multiplication ? n1 n2)))) |
---|
313 | Vundef |
---|
314 | | _ ⇒ Vundef ] |
---|
315 | | _ ⇒ Vundef ]. |
---|
316 | (* |
---|
317 | definition divs ≝ λv1, v2: val. |
---|
318 | match v1 with |
---|
319 | [ Vint n1 ⇒ match v2 with |
---|
320 | [ Vint n2 ⇒ Vint (divs n1 n2) |
---|
321 | | _ ⇒ Vundef ] |
---|
322 | | _ ⇒ Vundef ]. |
---|
323 | |
---|
324 | Definition mods (v1 v2: val): val := |
---|
325 | match v1, v2 with |
---|
326 | | Vint n1, Vint n2 => |
---|
327 | if Int.eq n2 Int.zero then Vundef else Vint(Int.mods n1 n2) |
---|
328 | | _, _ => Vundef |
---|
329 | end. |
---|
330 | |
---|
331 | Definition divu (v1 v2: val): val := |
---|
332 | match v1, v2 with |
---|
333 | | Vint n1, Vint n2 => |
---|
334 | if Int.eq n2 Int.zero then Vundef else Vint(Int.divu n1 n2) |
---|
335 | | _, _ => Vundef |
---|
336 | end. |
---|
337 | |
---|
338 | Definition modu (v1 v2: val): val := |
---|
339 | match v1, v2 with |
---|
340 | | Vint n1, Vint n2 => |
---|
341 | if Int.eq n2 Int.zero then Vundef else Vint(Int.modu n1 n2) |
---|
342 | | _, _ => Vundef |
---|
343 | end. |
---|
344 | *) |
---|
345 | definition v_and ≝ λv1, v2: val. |
---|
346 | match v1 with |
---|
347 | [ Vint sz1 n1 ⇒ match v2 with |
---|
348 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
349 | (λn1. Vint ? (conjunction_bv ? n1 n2)) |
---|
350 | Vundef |
---|
351 | | _ ⇒ Vundef ] |
---|
352 | | _ ⇒ Vundef ]. |
---|
353 | |
---|
354 | definition or ≝ λv1, v2: val. |
---|
355 | match v1 with |
---|
356 | [ Vint sz1 n1 ⇒ match v2 with |
---|
357 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
358 | (λn1. Vint ? (inclusive_disjunction_bv ? n1 n2)) |
---|
359 | Vundef |
---|
360 | | _ ⇒ Vundef ] |
---|
361 | | _ ⇒ Vundef ]. |
---|
362 | |
---|
363 | definition xor ≝ λv1, v2: val. |
---|
364 | match v1 with |
---|
365 | [ Vint sz1 n1 ⇒ match v2 with |
---|
366 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
367 | (λn1. Vint ? (exclusive_disjunction_bv ? n1 n2)) |
---|
368 | Vundef |
---|
369 | | _ ⇒ Vundef ] |
---|
370 | | _ ⇒ Vundef ]. |
---|
371 | (* |
---|
372 | Definition shl (v1 v2: val): val := |
---|
373 | match v1, v2 with |
---|
374 | | Vint n1, Vint n2 => |
---|
375 | if Int.ltu n2 Int.iwordsize |
---|
376 | then Vint(Int.shl n1 n2) |
---|
377 | else Vundef |
---|
378 | | _, _ => Vundef |
---|
379 | end. |
---|
380 | |
---|
381 | Definition shr (v1 v2: val): val := |
---|
382 | match v1, v2 with |
---|
383 | | Vint n1, Vint n2 => |
---|
384 | if Int.ltu n2 Int.iwordsize |
---|
385 | then Vint(Int.shr n1 n2) |
---|
386 | else Vundef |
---|
387 | | _, _ => Vundef |
---|
388 | end. |
---|
389 | |
---|
390 | Definition shr_carry (v1 v2: val): val := |
---|
391 | match v1, v2 with |
---|
392 | | Vint n1, Vint n2 => |
---|
393 | if Int.ltu n2 Int.iwordsize |
---|
394 | then Vint(Int.shr_carry n1 n2) |
---|
395 | else Vundef |
---|
396 | | _, _ => Vundef |
---|
397 | end. |
---|
398 | |
---|
399 | Definition shrx (v1 v2: val): val := |
---|
400 | match v1, v2 with |
---|
401 | | Vint n1, Vint n2 => |
---|
402 | if Int.ltu n2 Int.iwordsize |
---|
403 | then Vint(Int.shrx n1 n2) |
---|
404 | else Vundef |
---|
405 | | _, _ => Vundef |
---|
406 | end. |
---|
407 | |
---|
408 | Definition shru (v1 v2: val): val := |
---|
409 | match v1, v2 with |
---|
410 | | Vint n1, Vint n2 => |
---|
411 | if Int.ltu n2 Int.iwordsize |
---|
412 | then Vint(Int.shru n1 n2) |
---|
413 | else Vundef |
---|
414 | | _, _ => Vundef |
---|
415 | end. |
---|
416 | |
---|
417 | Definition rolm (v: val) (amount mask: int): val := |
---|
418 | match v with |
---|
419 | | Vint n => Vint(Int.rolm n amount mask) |
---|
420 | | _ => Vundef |
---|
421 | end. |
---|
422 | |
---|
423 | Definition ror (v1 v2: val): val := |
---|
424 | match v1, v2 with |
---|
425 | | Vint n1, Vint n2 => |
---|
426 | if Int.ltu n2 Int.iwordsize |
---|
427 | then Vint(Int.ror n1 n2) |
---|
428 | else Vundef |
---|
429 | | _, _ => Vundef |
---|
430 | end. |
---|
431 | *) |
---|
432 | definition addf ≝ λv1,v2: val. |
---|
433 | match v1 with |
---|
434 | [ Vfloat f1 ⇒ match v2 with |
---|
435 | [ Vfloat f2 ⇒ Vfloat (Fadd f1 f2) |
---|
436 | | _ ⇒ Vundef ] |
---|
437 | | _ ⇒ Vundef ]. |
---|
438 | |
---|
439 | definition subf ≝ λv1,v2: val. |
---|
440 | match v1 with |
---|
441 | [ Vfloat f1 ⇒ match v2 with |
---|
442 | [ Vfloat f2 ⇒ Vfloat (Fsub f1 f2) |
---|
443 | | _ ⇒ Vundef ] |
---|
444 | | _ ⇒ Vundef ]. |
---|
445 | |
---|
446 | definition mulf ≝ λv1,v2: val. |
---|
447 | match v1 with |
---|
448 | [ Vfloat f1 ⇒ match v2 with |
---|
449 | [ Vfloat f2 ⇒ Vfloat (Fmul f1 f2) |
---|
450 | | _ ⇒ Vundef ] |
---|
451 | | _ ⇒ Vundef ]. |
---|
452 | |
---|
453 | definition divf ≝ λv1,v2: val. |
---|
454 | match v1 with |
---|
455 | [ Vfloat f1 ⇒ match v2 with |
---|
456 | [ Vfloat f2 ⇒ Vfloat (Fdiv f1 f2) |
---|
457 | | _ ⇒ Vundef ] |
---|
458 | | _ ⇒ Vundef ]. |
---|
459 | |
---|
460 | definition cmp_match : comparison → val ≝ λc. |
---|
461 | match c with |
---|
462 | [ Ceq ⇒ Vtrue |
---|
463 | | Cne ⇒ Vfalse |
---|
464 | | _ ⇒ Vundef |
---|
465 | ]. |
---|
466 | |
---|
467 | definition cmp_mismatch : comparison → val ≝ λc. |
---|
468 | match c with |
---|
469 | [ Ceq ⇒ Vfalse |
---|
470 | | Cne ⇒ Vtrue |
---|
471 | | _ ⇒ Vundef |
---|
472 | ]. |
---|
473 | |
---|
474 | definition cmp_offset ≝ |
---|
475 | λc: comparison. λx,y:offset. |
---|
476 | match c with |
---|
477 | [ Ceq ⇒ eq_offset x y |
---|
478 | | Cne ⇒ ¬eq_offset x y |
---|
479 | | Clt ⇒ lt_offset x y |
---|
480 | | Cle ⇒ ¬lt_offset y x |
---|
481 | | Cgt ⇒ lt_offset y x |
---|
482 | | Cge ⇒ ¬lt_offset x y |
---|
483 | ]. |
---|
484 | |
---|
485 | definition cmp_int : ∀n. comparison → BitVector n → BitVector n → bool ≝ |
---|
486 | λn,c,x,y. |
---|
487 | match c with |
---|
488 | [ Ceq ⇒ eq_bv ? x y |
---|
489 | | Cne ⇒ notb (eq_bv ? x y) |
---|
490 | | Clt ⇒ lt_s ? x y |
---|
491 | | Cle ⇒ notb (lt_s ? y x) |
---|
492 | | Cgt ⇒ lt_s ? y x |
---|
493 | | Cge ⇒ notb (lt_s ? x y) |
---|
494 | ]. |
---|
495 | |
---|
496 | definition cmpu_int : ∀n. comparison → BitVector n → BitVector n → bool ≝ |
---|
497 | λn,c,x,y. |
---|
498 | match c with |
---|
499 | [ Ceq ⇒ eq_bv ? x y |
---|
500 | | Cne ⇒ notb (eq_bv ? x y) |
---|
501 | | Clt ⇒ lt_u ? x y |
---|
502 | | Cle ⇒ notb (lt_u ? y x) |
---|
503 | | Cgt ⇒ lt_u ? y x |
---|
504 | | Cge ⇒ notb (lt_u ? x y) |
---|
505 | ]. |
---|
506 | |
---|
507 | definition cmp ≝ λc: comparison. λv1,v2: val. |
---|
508 | match v1 with |
---|
509 | [ Vint sz1 n1 ⇒ match v2 with |
---|
510 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
511 | (λn1. of_bool (cmp_int ? c n1 n2)) |
---|
512 | Vundef |
---|
513 | | _ ⇒ Vundef ] |
---|
514 | | Vptr r1 b1 p1 ofs1 ⇒ match v2 with |
---|
515 | [ Vptr r2 b2 p2 ofs2 ⇒ |
---|
516 | if eq_block b1 b2 |
---|
517 | then of_bool (cmp_offset c ofs1 ofs2) |
---|
518 | else cmp_mismatch c |
---|
519 | | Vnull r2 ⇒ cmp_mismatch c |
---|
520 | | _ ⇒ Vundef ] |
---|
521 | | Vnull r1 ⇒ match v2 with |
---|
522 | [ Vptr _ _ _ _ ⇒ cmp_mismatch c |
---|
523 | | Vnull r2 ⇒ cmp_match c |
---|
524 | | _ ⇒ Vundef |
---|
525 | ] |
---|
526 | | _ ⇒ Vundef ]. |
---|
527 | |
---|
528 | definition cmpu ≝ λc: comparison. λv1,v2: val. |
---|
529 | match v1 with |
---|
530 | [ Vint sz1 n1 ⇒ match v2 with |
---|
531 | [ Vint sz2 n2 ⇒ intsize_eq_elim ? sz1 sz2 ? n1 |
---|
532 | (λn1. of_bool (cmpu_int ? c n1 n2)) |
---|
533 | Vundef |
---|
534 | | _ ⇒ Vundef ] |
---|
535 | | Vptr r1 b1 p1 ofs1 ⇒ match v2 with |
---|
536 | [ Vptr r2 b2 p2 ofs2 ⇒ |
---|
537 | if eq_block b1 b2 |
---|
538 | then of_bool (cmp_offset c ofs1 ofs2) |
---|
539 | else cmp_mismatch c |
---|
540 | | Vnull r2 ⇒ cmp_mismatch c |
---|
541 | | _ ⇒ Vundef ] |
---|
542 | | Vnull r1 ⇒ match v2 with |
---|
543 | [ Vptr _ _ _ _ ⇒ cmp_mismatch c |
---|
544 | | Vnull r2 ⇒ cmp_match c |
---|
545 | | _ ⇒ Vundef |
---|
546 | ] |
---|
547 | | _ ⇒ Vundef ]. |
---|
548 | |
---|
549 | definition cmpf ≝ λc: comparison. λsz:intsize. λv1,v2: val. |
---|
550 | match v1 with |
---|
551 | [ Vfloat f1 ⇒ match v2 with |
---|
552 | [ Vfloat f2 ⇒ of_bool (Fcmp c f1 f2) |
---|
553 | | _ ⇒ Vundef ] |
---|
554 | | _ ⇒ Vundef ]. |
---|
555 | |
---|
556 | (* * [load_result] is used in the memory model (library [Mem]) |
---|
557 | to post-process the results of a memory read. For instance, |
---|
558 | consider storing the integer value [0xFFF] on 1 byte at a |
---|
559 | given address, and reading it back. If it is read back with |
---|
560 | chunk [Mint8unsigned], zero-extension must be performed, resulting |
---|
561 | in [0xFF]. If it is read back as a [Mint8signed], sign-extension |
---|
562 | is performed and [0xFFFFFFFF] is returned. Type mismatches |
---|
563 | (e.g. reading back a float as a [Mint32]) read back as [Vundef]. *) |
---|
564 | (* XXX update comment *) |
---|
565 | (* XXX is this even necessary now? |
---|
566 | should we be able to extract bytes? *) |
---|
567 | |
---|
568 | let rec load_result (chunk: memory_chunk) (v: val) ≝ |
---|
569 | match v with |
---|
570 | [ Vint sz n ⇒ |
---|
571 | match chunk with |
---|
572 | [ Mint8signed ⇒ match sz with [ I8 ⇒ v | _ ⇒ Vundef ] |
---|
573 | | Mint8unsigned ⇒ match sz with [ I8 ⇒ v | _ ⇒ Vundef ] |
---|
574 | | Mint16signed ⇒ match sz with [ I16 ⇒ v | _ ⇒ Vundef ] |
---|
575 | | Mint16unsigned ⇒ match sz with [ I16 ⇒ v | _ ⇒ Vundef ] |
---|
576 | | Mint32 ⇒ match sz with [ I32 ⇒ v | _ ⇒ Vundef ] |
---|
577 | | _ ⇒ Vundef |
---|
578 | ] |
---|
579 | | Vptr r b p ofs ⇒ |
---|
580 | match chunk with |
---|
581 | [ Mpointer r' ⇒ if eq_region r r' then Vptr r b p ofs else Vundef |
---|
582 | | _ ⇒ Vundef |
---|
583 | ] |
---|
584 | | Vnull r ⇒ |
---|
585 | match chunk with |
---|
586 | [ Mpointer r' ⇒ if eq_region r r' then Vnull r else Vundef |
---|
587 | | _ ⇒ Vundef |
---|
588 | ] |
---|
589 | | Vfloat f ⇒ |
---|
590 | match chunk with |
---|
591 | [ Mfloat32 ⇒ Vfloat(singleoffloat f) |
---|
592 | | Mfloat64 ⇒ Vfloat f |
---|
593 | | _ ⇒ Vundef |
---|
594 | ] |
---|
595 | | _ ⇒ Vundef |
---|
596 | ]. |
---|
597 | |
---|
598 | (* |
---|
599 | (** Theorems on arithmetic operations. *) |
---|
600 | |
---|
601 | Theorem cast8unsigned_and: |
---|
602 | forall x, zero_ext 8 x = and x (Vint(Int.repr 255)). |
---|
603 | Proof. |
---|
604 | destruct x; simpl; auto. decEq. |
---|
605 | change 255 with (two_p 8 - 1). apply Int.zero_ext_and. vm_compute; auto. |
---|
606 | Qed. |
---|
607 | |
---|
608 | Theorem cast16unsigned_and: |
---|
609 | forall x, zero_ext 16 x = and x (Vint(Int.repr 65535)). |
---|
610 | Proof. |
---|
611 | destruct x; simpl; auto. decEq. |
---|
612 | change 65535 with (two_p 16 - 1). apply Int.zero_ext_and. vm_compute; auto. |
---|
613 | Qed. |
---|
614 | |
---|
615 | Theorem istrue_not_isfalse: |
---|
616 | forall v, is_false v -> is_true (notbool v). |
---|
617 | Proof. |
---|
618 | destruct v; simpl; try contradiction. |
---|
619 | intros. subst i. simpl. discriminate. |
---|
620 | Qed. |
---|
621 | |
---|
622 | Theorem isfalse_not_istrue: |
---|
623 | forall v, is_true v -> is_false (notbool v). |
---|
624 | Proof. |
---|
625 | destruct v; simpl; try contradiction. |
---|
626 | intros. generalize (Int.eq_spec i Int.zero). |
---|
627 | case (Int.eq i Int.zero); intro. |
---|
628 | contradiction. simpl. auto. |
---|
629 | auto. |
---|
630 | Qed. |
---|
631 | |
---|
632 | Theorem bool_of_true_val: |
---|
633 | forall v, is_true v -> bool_of_val v true. |
---|
634 | Proof. |
---|
635 | intro. destruct v; simpl; intros; try contradiction. |
---|
636 | constructor; auto. constructor. |
---|
637 | Qed. |
---|
638 | |
---|
639 | Theorem bool_of_true_val2: |
---|
640 | forall v, bool_of_val v true -> is_true v. |
---|
641 | Proof. |
---|
642 | intros. inversion H; simpl; auto. |
---|
643 | Qed. |
---|
644 | |
---|
645 | Theorem bool_of_true_val_inv: |
---|
646 | forall v b, is_true v -> bool_of_val v b -> b = true. |
---|
647 | Proof. |
---|
648 | intros. inversion H0; subst v b; simpl in H; auto. |
---|
649 | Qed. |
---|
650 | |
---|
651 | Theorem bool_of_false_val: |
---|
652 | forall v, is_false v -> bool_of_val v false. |
---|
653 | Proof. |
---|
654 | intro. destruct v; simpl; intros; try contradiction. |
---|
655 | subst i; constructor. |
---|
656 | Qed. |
---|
657 | |
---|
658 | Theorem bool_of_false_val2: |
---|
659 | forall v, bool_of_val v false -> is_false v. |
---|
660 | Proof. |
---|
661 | intros. inversion H; simpl; auto. |
---|
662 | Qed. |
---|
663 | |
---|
664 | Theorem bool_of_false_val_inv: |
---|
665 | forall v b, is_false v -> bool_of_val v b -> b = false. |
---|
666 | Proof. |
---|
667 | intros. inversion H0; subst v b; simpl in H. |
---|
668 | congruence. auto. contradiction. |
---|
669 | Qed. |
---|
670 | |
---|
671 | Theorem notbool_negb_1: |
---|
672 | forall b, of_bool (negb b) = notbool (of_bool b). |
---|
673 | Proof. |
---|
674 | destruct b; reflexivity. |
---|
675 | Qed. |
---|
676 | |
---|
677 | Theorem notbool_negb_2: |
---|
678 | forall b, of_bool b = notbool (of_bool (negb b)). |
---|
679 | Proof. |
---|
680 | destruct b; reflexivity. |
---|
681 | Qed. |
---|
682 | |
---|
683 | Theorem notbool_idem2: |
---|
684 | forall b, notbool(notbool(of_bool b)) = of_bool b. |
---|
685 | Proof. |
---|
686 | destruct b; reflexivity. |
---|
687 | Qed. |
---|
688 | |
---|
689 | Theorem notbool_idem3: |
---|
690 | forall x, notbool(notbool(notbool x)) = notbool x. |
---|
691 | Proof. |
---|
692 | destruct x; simpl; auto. |
---|
693 | case (Int.eq i Int.zero); reflexivity. |
---|
694 | Qed. |
---|
695 | |
---|
696 | Theorem add_commut: forall x y, add x y = add y x. |
---|
697 | Proof. |
---|
698 | destruct x; destruct y; simpl; auto. |
---|
699 | decEq. apply Int.add_commut. |
---|
700 | Qed. |
---|
701 | |
---|
702 | Theorem add_assoc: forall x y z, add (add x y) z = add x (add y z). |
---|
703 | Proof. |
---|
704 | destruct x; destruct y; destruct z; simpl; auto. |
---|
705 | rewrite Int.add_assoc; auto. |
---|
706 | rewrite Int.add_assoc; auto. |
---|
707 | decEq. decEq. apply Int.add_commut. |
---|
708 | decEq. rewrite Int.add_commut. rewrite <- Int.add_assoc. |
---|
709 | decEq. apply Int.add_commut. |
---|
710 | decEq. rewrite Int.add_assoc. auto. |
---|
711 | Qed. |
---|
712 | |
---|
713 | Theorem add_permut: forall x y z, add x (add y z) = add y (add x z). |
---|
714 | Proof. |
---|
715 | intros. rewrite (add_commut y z). rewrite <- add_assoc. apply add_commut. |
---|
716 | Qed. |
---|
717 | |
---|
718 | Theorem add_permut_4: |
---|
719 | forall x y z t, add (add x y) (add z t) = add (add x z) (add y t). |
---|
720 | Proof. |
---|
721 | intros. rewrite add_permut. rewrite add_assoc. |
---|
722 | rewrite add_permut. symmetry. apply add_assoc. |
---|
723 | Qed. |
---|
724 | |
---|
725 | Theorem neg_zero: neg Vzero = Vzero. |
---|
726 | Proof. |
---|
727 | reflexivity. |
---|
728 | Qed. |
---|
729 | |
---|
730 | Theorem neg_add_distr: forall x y, neg(add x y) = add (neg x) (neg y). |
---|
731 | Proof. |
---|
732 | destruct x; destruct y; simpl; auto. decEq. apply Int.neg_add_distr. |
---|
733 | Qed. |
---|
734 | |
---|
735 | Theorem sub_zero_r: forall x, sub Vzero x = neg x. |
---|
736 | Proof. |
---|
737 | destruct x; simpl; auto. |
---|
738 | Qed. |
---|
739 | |
---|
740 | Theorem sub_add_opp: forall x y, sub x (Vint y) = add x (Vint (Int.neg y)). |
---|
741 | Proof. |
---|
742 | destruct x; intro y; simpl; auto; rewrite Int.sub_add_opp; auto. |
---|
743 | Qed. |
---|
744 | |
---|
745 | Theorem sub_opp_add: forall x y, sub x (Vint (Int.neg y)) = add x (Vint y). |
---|
746 | Proof. |
---|
747 | intros. unfold sub, add. |
---|
748 | destruct x; auto; rewrite Int.sub_add_opp; rewrite Int.neg_involutive; auto. |
---|
749 | Qed. |
---|
750 | |
---|
751 | Theorem sub_add_l: |
---|
752 | forall v1 v2 i, sub (add v1 (Vint i)) v2 = add (sub v1 v2) (Vint i). |
---|
753 | Proof. |
---|
754 | destruct v1; destruct v2; intros; simpl; auto. |
---|
755 | rewrite Int.sub_add_l. auto. |
---|
756 | rewrite Int.sub_add_l. auto. |
---|
757 | case (zeq b b0); intro. rewrite Int.sub_add_l. auto. reflexivity. |
---|
758 | Qed. |
---|
759 | |
---|
760 | Theorem sub_add_r: |
---|
761 | forall v1 v2 i, sub v1 (add v2 (Vint i)) = add (sub v1 v2) (Vint (Int.neg i)). |
---|
762 | Proof. |
---|
763 | destruct v1; destruct v2; intros; simpl; auto. |
---|
764 | rewrite Int.sub_add_r. auto. |
---|
765 | repeat rewrite Int.sub_add_opp. decEq. |
---|
766 | repeat rewrite Int.add_assoc. decEq. apply Int.add_commut. |
---|
767 | decEq. repeat rewrite Int.sub_add_opp. |
---|
768 | rewrite Int.add_assoc. decEq. apply Int.neg_add_distr. |
---|
769 | case (zeq b b0); intro. simpl. decEq. |
---|
770 | repeat rewrite Int.sub_add_opp. rewrite Int.add_assoc. decEq. |
---|
771 | apply Int.neg_add_distr. |
---|
772 | reflexivity. |
---|
773 | Qed. |
---|
774 | |
---|
775 | Theorem mul_commut: forall x y, mul x y = mul y x. |
---|
776 | Proof. |
---|
777 | destruct x; destruct y; simpl; auto. decEq. apply Int.mul_commut. |
---|
778 | Qed. |
---|
779 | |
---|
780 | Theorem mul_assoc: forall x y z, mul (mul x y) z = mul x (mul y z). |
---|
781 | Proof. |
---|
782 | destruct x; destruct y; destruct z; simpl; auto. |
---|
783 | decEq. apply Int.mul_assoc. |
---|
784 | Qed. |
---|
785 | |
---|
786 | Theorem mul_add_distr_l: |
---|
787 | forall x y z, mul (add x y) z = add (mul x z) (mul y z). |
---|
788 | Proof. |
---|
789 | destruct x; destruct y; destruct z; simpl; auto. |
---|
790 | decEq. apply Int.mul_add_distr_l. |
---|
791 | Qed. |
---|
792 | |
---|
793 | |
---|
794 | Theorem mul_add_distr_r: |
---|
795 | forall x y z, mul x (add y z) = add (mul x y) (mul x z). |
---|
796 | Proof. |
---|
797 | destruct x; destruct y; destruct z; simpl; auto. |
---|
798 | decEq. apply Int.mul_add_distr_r. |
---|
799 | Qed. |
---|
800 | |
---|
801 | Theorem mul_pow2: |
---|
802 | forall x n logn, |
---|
803 | Int.is_power2 n = Some logn -> |
---|
804 | mul x (Vint n) = shl x (Vint logn). |
---|
805 | Proof. |
---|
806 | intros; destruct x; simpl; auto. |
---|
807 | change 32 with (Z_of_nat Int.wordsize). |
---|
808 | rewrite (Int.is_power2_range _ _ H). decEq. apply Int.mul_pow2. auto. |
---|
809 | Qed. |
---|
810 | |
---|
811 | Theorem mods_divs: |
---|
812 | forall x y, mods x y = sub x (mul (divs x y) y). |
---|
813 | Proof. |
---|
814 | destruct x; destruct y; simpl; auto. |
---|
815 | case (Int.eq i0 Int.zero); simpl. auto. decEq. apply Int.mods_divs. |
---|
816 | Qed. |
---|
817 | |
---|
818 | Theorem modu_divu: |
---|
819 | forall x y, modu x y = sub x (mul (divu x y) y). |
---|
820 | Proof. |
---|
821 | destruct x; destruct y; simpl; auto. |
---|
822 | generalize (Int.eq_spec i0 Int.zero); |
---|
823 | case (Int.eq i0 Int.zero); simpl. auto. |
---|
824 | intro. decEq. apply Int.modu_divu. auto. |
---|
825 | Qed. |
---|
826 | |
---|
827 | Theorem divs_pow2: |
---|
828 | forall x n logn, |
---|
829 | Int.is_power2 n = Some logn -> |
---|
830 | divs x (Vint n) = shrx x (Vint logn). |
---|
831 | Proof. |
---|
832 | intros; destruct x; simpl; auto. |
---|
833 | change 32 with (Z_of_nat Int.wordsize). |
---|
834 | rewrite (Int.is_power2_range _ _ H). |
---|
835 | generalize (Int.eq_spec n Int.zero); |
---|
836 | case (Int.eq n Int.zero); intro. |
---|
837 | subst n. compute in H. discriminate. |
---|
838 | decEq. apply Int.divs_pow2. auto. |
---|
839 | Qed. |
---|
840 | |
---|
841 | Theorem divu_pow2: |
---|
842 | forall x n logn, |
---|
843 | Int.is_power2 n = Some logn -> |
---|
844 | divu x (Vint n) = shru x (Vint logn). |
---|
845 | Proof. |
---|
846 | intros; destruct x; simpl; auto. |
---|
847 | change 32 with (Z_of_nat Int.wordsize). |
---|
848 | rewrite (Int.is_power2_range _ _ H). |
---|
849 | generalize (Int.eq_spec n Int.zero); |
---|
850 | case (Int.eq n Int.zero); intro. |
---|
851 | subst n. compute in H. discriminate. |
---|
852 | decEq. apply Int.divu_pow2. auto. |
---|
853 | Qed. |
---|
854 | |
---|
855 | Theorem modu_pow2: |
---|
856 | forall x n logn, |
---|
857 | Int.is_power2 n = Some logn -> |
---|
858 | modu x (Vint n) = and x (Vint (Int.sub n Int.one)). |
---|
859 | Proof. |
---|
860 | intros; destruct x; simpl; auto. |
---|
861 | generalize (Int.eq_spec n Int.zero); |
---|
862 | case (Int.eq n Int.zero); intro. |
---|
863 | subst n. compute in H. discriminate. |
---|
864 | decEq. eapply Int.modu_and; eauto. |
---|
865 | Qed. |
---|
866 | |
---|
867 | Theorem and_commut: forall x y, and x y = and y x. |
---|
868 | Proof. |
---|
869 | destruct x; destruct y; simpl; auto. decEq. apply Int.and_commut. |
---|
870 | Qed. |
---|
871 | |
---|
872 | Theorem and_assoc: forall x y z, and (and x y) z = and x (and y z). |
---|
873 | Proof. |
---|
874 | destruct x; destruct y; destruct z; simpl; auto. |
---|
875 | decEq. apply Int.and_assoc. |
---|
876 | Qed. |
---|
877 | |
---|
878 | Theorem or_commut: forall x y, or x y = or y x. |
---|
879 | Proof. |
---|
880 | destruct x; destruct y; simpl; auto. decEq. apply Int.or_commut. |
---|
881 | Qed. |
---|
882 | |
---|
883 | Theorem or_assoc: forall x y z, or (or x y) z = or x (or y z). |
---|
884 | Proof. |
---|
885 | destruct x; destruct y; destruct z; simpl; auto. |
---|
886 | decEq. apply Int.or_assoc. |
---|
887 | Qed. |
---|
888 | |
---|
889 | Theorem xor_commut: forall x y, xor x y = xor y x. |
---|
890 | Proof. |
---|
891 | destruct x; destruct y; simpl; auto. decEq. apply Int.xor_commut. |
---|
892 | Qed. |
---|
893 | |
---|
894 | Theorem xor_assoc: forall x y z, xor (xor x y) z = xor x (xor y z). |
---|
895 | Proof. |
---|
896 | destruct x; destruct y; destruct z; simpl; auto. |
---|
897 | decEq. apply Int.xor_assoc. |
---|
898 | Qed. |
---|
899 | |
---|
900 | Theorem shl_mul: forall x y, Val.mul x (Val.shl Vone y) = Val.shl x y. |
---|
901 | Proof. |
---|
902 | destruct x; destruct y; simpl; auto. |
---|
903 | case (Int.ltu i0 Int.iwordsize); auto. |
---|
904 | decEq. symmetry. apply Int.shl_mul. |
---|
905 | Qed. |
---|
906 | |
---|
907 | Theorem shl_rolm: |
---|
908 | forall x n, |
---|
909 | Int.ltu n Int.iwordsize = true -> |
---|
910 | shl x (Vint n) = rolm x n (Int.shl Int.mone n). |
---|
911 | Proof. |
---|
912 | intros; destruct x; simpl; auto. |
---|
913 | rewrite H. decEq. apply Int.shl_rolm. exact H. |
---|
914 | Qed. |
---|
915 | |
---|
916 | Theorem shru_rolm: |
---|
917 | forall x n, |
---|
918 | Int.ltu n Int.iwordsize = true -> |
---|
919 | shru x (Vint n) = rolm x (Int.sub Int.iwordsize n) (Int.shru Int.mone n). |
---|
920 | Proof. |
---|
921 | intros; destruct x; simpl; auto. |
---|
922 | rewrite H. decEq. apply Int.shru_rolm. exact H. |
---|
923 | Qed. |
---|
924 | |
---|
925 | Theorem shrx_carry: |
---|
926 | forall x y, |
---|
927 | add (shr x y) (shr_carry x y) = shrx x y. |
---|
928 | Proof. |
---|
929 | destruct x; destruct y; simpl; auto. |
---|
930 | case (Int.ltu i0 Int.iwordsize); auto. |
---|
931 | simpl. decEq. apply Int.shrx_carry. |
---|
932 | Qed. |
---|
933 | |
---|
934 | Theorem or_rolm: |
---|
935 | forall x n m1 m2, |
---|
936 | or (rolm x n m1) (rolm x n m2) = rolm x n (Int.or m1 m2). |
---|
937 | Proof. |
---|
938 | intros; destruct x; simpl; auto. |
---|
939 | decEq. apply Int.or_rolm. |
---|
940 | Qed. |
---|
941 | |
---|
942 | Theorem rolm_rolm: |
---|
943 | forall x n1 m1 n2 m2, |
---|
944 | rolm (rolm x n1 m1) n2 m2 = |
---|
945 | rolm x (Int.modu (Int.add n1 n2) Int.iwordsize) |
---|
946 | (Int.and (Int.rol m1 n2) m2). |
---|
947 | Proof. |
---|
948 | intros; destruct x; simpl; auto. |
---|
949 | decEq. |
---|
950 | apply Int.rolm_rolm. apply int_wordsize_divides_modulus. |
---|
951 | Qed. |
---|
952 | |
---|
953 | Theorem rolm_zero: |
---|
954 | forall x m, |
---|
955 | rolm x Int.zero m = and x (Vint m). |
---|
956 | Proof. |
---|
957 | intros; destruct x; simpl; auto. decEq. apply Int.rolm_zero. |
---|
958 | Qed. |
---|
959 | |
---|
960 | Theorem addf_commut: forall x y, addf x y = addf y x. |
---|
961 | Proof. |
---|
962 | destruct x; destruct y; simpl; auto. decEq. apply Float.addf_commut. |
---|
963 | Qed. |
---|
964 | |
---|
965 | Lemma negate_cmp_mismatch: |
---|
966 | forall c, |
---|
967 | cmp_mismatch (negate_comparison c) = notbool(cmp_mismatch c). |
---|
968 | Proof. |
---|
969 | destruct c; reflexivity. |
---|
970 | Qed. |
---|
971 | |
---|
972 | Theorem negate_cmp: |
---|
973 | forall c x y, |
---|
974 | cmp (negate_comparison c) x y = notbool (cmp c x y). |
---|
975 | Proof. |
---|
976 | destruct x; destruct y; simpl; auto. |
---|
977 | rewrite Int.negate_cmp. apply notbool_negb_1. |
---|
978 | case (Int.eq i Int.zero). apply negate_cmp_mismatch. reflexivity. |
---|
979 | case (Int.eq i0 Int.zero). apply negate_cmp_mismatch. reflexivity. |
---|
980 | case (zeq b b0); intro. |
---|
981 | rewrite Int.negate_cmp. apply notbool_negb_1. |
---|
982 | apply negate_cmp_mismatch. |
---|
983 | Qed. |
---|
984 | |
---|
985 | Theorem negate_cmpu: |
---|
986 | forall c x y, |
---|
987 | cmpu (negate_comparison c) x y = notbool (cmpu c x y). |
---|
988 | Proof. |
---|
989 | destruct x; destruct y; simpl; auto. |
---|
990 | rewrite Int.negate_cmpu. apply notbool_negb_1. |
---|
991 | case (Int.eq i Int.zero). apply negate_cmp_mismatch. reflexivity. |
---|
992 | case (Int.eq i0 Int.zero). apply negate_cmp_mismatch. reflexivity. |
---|
993 | case (zeq b b0); intro. |
---|
994 | rewrite Int.negate_cmpu. apply notbool_negb_1. |
---|
995 | apply negate_cmp_mismatch. |
---|
996 | Qed. |
---|
997 | |
---|
998 | Lemma swap_cmp_mismatch: |
---|
999 | forall c, cmp_mismatch (swap_comparison c) = cmp_mismatch c. |
---|
1000 | Proof. |
---|
1001 | destruct c; reflexivity. |
---|
1002 | Qed. |
---|
1003 | |
---|
1004 | Theorem swap_cmp: |
---|
1005 | forall c x y, |
---|
1006 | cmp (swap_comparison c) x y = cmp c y x. |
---|
1007 | Proof. |
---|
1008 | destruct x; destruct y; simpl; auto. |
---|
1009 | rewrite Int.swap_cmp. auto. |
---|
1010 | case (Int.eq i Int.zero). apply swap_cmp_mismatch. auto. |
---|
1011 | case (Int.eq i0 Int.zero). apply swap_cmp_mismatch. auto. |
---|
1012 | case (zeq b b0); intro. |
---|
1013 | subst b0. rewrite zeq_true. rewrite Int.swap_cmp. auto. |
---|
1014 | rewrite zeq_false. apply swap_cmp_mismatch. auto. |
---|
1015 | Qed. |
---|
1016 | |
---|
1017 | Theorem swap_cmpu: |
---|
1018 | forall c x y, |
---|
1019 | cmpu (swap_comparison c) x y = cmpu c y x. |
---|
1020 | Proof. |
---|
1021 | destruct x; destruct y; simpl; auto. |
---|
1022 | rewrite Int.swap_cmpu. auto. |
---|
1023 | case (Int.eq i Int.zero). apply swap_cmp_mismatch. auto. |
---|
1024 | case (Int.eq i0 Int.zero). apply swap_cmp_mismatch. auto. |
---|
1025 | case (zeq b b0); intro. |
---|
1026 | subst b0. rewrite zeq_true. rewrite Int.swap_cmpu. auto. |
---|
1027 | rewrite zeq_false. apply swap_cmp_mismatch. auto. |
---|
1028 | Qed. |
---|
1029 | |
---|
1030 | Theorem negate_cmpf_eq: |
---|
1031 | forall v1 v2, notbool (cmpf Cne v1 v2) = cmpf Ceq v1 v2. |
---|
1032 | Proof. |
---|
1033 | destruct v1; destruct v2; simpl; auto. |
---|
1034 | rewrite Float.cmp_ne_eq. rewrite notbool_negb_1. |
---|
1035 | apply notbool_idem2. |
---|
1036 | Qed. |
---|
1037 | |
---|
1038 | Theorem negate_cmpf_ne: |
---|
1039 | forall v1 v2, notbool (cmpf Ceq v1 v2) = cmpf Cne v1 v2. |
---|
1040 | Proof. |
---|
1041 | destruct v1; destruct v2; simpl; auto. |
---|
1042 | rewrite Float.cmp_ne_eq. rewrite notbool_negb_1. auto. |
---|
1043 | Qed. |
---|
1044 | |
---|
1045 | Lemma or_of_bool: |
---|
1046 | forall b1 b2, or (of_bool b1) (of_bool b2) = of_bool (b1 || b2). |
---|
1047 | Proof. |
---|
1048 | destruct b1; destruct b2; reflexivity. |
---|
1049 | Qed. |
---|
1050 | |
---|
1051 | Theorem cmpf_le: |
---|
1052 | forall v1 v2, cmpf Cle v1 v2 = or (cmpf Clt v1 v2) (cmpf Ceq v1 v2). |
---|
1053 | Proof. |
---|
1054 | destruct v1; destruct v2; simpl; auto. |
---|
1055 | rewrite or_of_bool. decEq. apply Float.cmp_le_lt_eq. |
---|
1056 | Qed. |
---|
1057 | |
---|
1058 | Theorem cmpf_ge: |
---|
1059 | forall v1 v2, cmpf Cge v1 v2 = or (cmpf Cgt v1 v2) (cmpf Ceq v1 v2). |
---|
1060 | Proof. |
---|
1061 | destruct v1; destruct v2; simpl; auto. |
---|
1062 | rewrite or_of_bool. decEq. apply Float.cmp_ge_gt_eq. |
---|
1063 | Qed. |
---|
1064 | |
---|
1065 | Definition is_bool (v: val) := |
---|
1066 | v = Vundef \/ v = Vtrue \/ v = Vfalse. |
---|
1067 | |
---|
1068 | Lemma of_bool_is_bool: |
---|
1069 | forall b, is_bool (of_bool b). |
---|
1070 | Proof. |
---|
1071 | destruct b; unfold is_bool; simpl; tauto. |
---|
1072 | Qed. |
---|
1073 | |
---|
1074 | Lemma undef_is_bool: is_bool Vundef. |
---|
1075 | Proof. |
---|
1076 | unfold is_bool; tauto. |
---|
1077 | Qed. |
---|
1078 | |
---|
1079 | Lemma cmp_mismatch_is_bool: |
---|
1080 | forall c, is_bool (cmp_mismatch c). |
---|
1081 | Proof. |
---|
1082 | destruct c; simpl; unfold is_bool; tauto. |
---|
1083 | Qed. |
---|
1084 | |
---|
1085 | Lemma cmp_is_bool: |
---|
1086 | forall c v1 v2, is_bool (cmp c v1 v2). |
---|
1087 | Proof. |
---|
1088 | destruct v1; destruct v2; simpl; try apply undef_is_bool. |
---|
1089 | apply of_bool_is_bool. |
---|
1090 | case (Int.eq i Int.zero). apply cmp_mismatch_is_bool. apply undef_is_bool. |
---|
1091 | case (Int.eq i0 Int.zero). apply cmp_mismatch_is_bool. apply undef_is_bool. |
---|
1092 | case (zeq b b0); intro. apply of_bool_is_bool. apply cmp_mismatch_is_bool. |
---|
1093 | Qed. |
---|
1094 | |
---|
1095 | Lemma cmpu_is_bool: |
---|
1096 | forall c v1 v2, is_bool (cmpu c v1 v2). |
---|
1097 | Proof. |
---|
1098 | destruct v1; destruct v2; simpl; try apply undef_is_bool. |
---|
1099 | apply of_bool_is_bool. |
---|
1100 | case (Int.eq i Int.zero). apply cmp_mismatch_is_bool. apply undef_is_bool. |
---|
1101 | case (Int.eq i0 Int.zero). apply cmp_mismatch_is_bool. apply undef_is_bool. |
---|
1102 | case (zeq b b0); intro. apply of_bool_is_bool. apply cmp_mismatch_is_bool. |
---|
1103 | Qed. |
---|
1104 | |
---|
1105 | Lemma cmpf_is_bool: |
---|
1106 | forall c v1 v2, is_bool (cmpf c v1 v2). |
---|
1107 | Proof. |
---|
1108 | destruct v1; destruct v2; simpl; |
---|
1109 | apply undef_is_bool || apply of_bool_is_bool. |
---|
1110 | Qed. |
---|
1111 | |
---|
1112 | Lemma notbool_is_bool: |
---|
1113 | forall v, is_bool (notbool v). |
---|
1114 | Proof. |
---|
1115 | destruct v; simpl. |
---|
1116 | apply undef_is_bool. apply of_bool_is_bool. |
---|
1117 | apply undef_is_bool. unfold is_bool; tauto. |
---|
1118 | Qed. |
---|
1119 | |
---|
1120 | Lemma notbool_xor: |
---|
1121 | forall v, is_bool v -> v = xor (notbool v) Vone. |
---|
1122 | Proof. |
---|
1123 | intros. elim H; intro. |
---|
1124 | subst v. reflexivity. |
---|
1125 | elim H0; intro; subst v; reflexivity. |
---|
1126 | Qed. |
---|
1127 | |
---|
1128 | Lemma rolm_lt_zero: |
---|
1129 | forall v, rolm v Int.one Int.one = cmp Clt v (Vint Int.zero). |
---|
1130 | Proof. |
---|
1131 | intros. destruct v; simpl; auto. |
---|
1132 | transitivity (Vint (Int.shru i (Int.repr (Z_of_nat Int.wordsize - 1)))). |
---|
1133 | decEq. symmetry. rewrite Int.shru_rolm. auto. auto. |
---|
1134 | rewrite Int.shru_lt_zero. destruct (Int.lt i Int.zero); auto. |
---|
1135 | Qed. |
---|
1136 | |
---|
1137 | Lemma rolm_ge_zero: |
---|
1138 | forall v, |
---|
1139 | xor (rolm v Int.one Int.one) (Vint Int.one) = cmp Cge v (Vint Int.zero). |
---|
1140 | Proof. |
---|
1141 | intros. rewrite rolm_lt_zero. destruct v; simpl; auto. |
---|
1142 | destruct (Int.lt i Int.zero); auto. |
---|
1143 | Qed. |
---|
1144 | *) |
---|
1145 | (* * The ``is less defined'' relation between values. |
---|
1146 | A value is less defined than itself, and [Vundef] is |
---|
1147 | less defined than any value. *) |
---|
1148 | |
---|
1149 | inductive Val_lessdef: val → val → Prop ≝ |
---|
1150 | | lessdef_refl: ∀v. Val_lessdef v v |
---|
1151 | | lessdef_undef: ∀v. Val_lessdef Vundef v. |
---|
1152 | |
---|
1153 | inductive lessdef_list: list val → list val → Prop ≝ |
---|
1154 | | lessdef_list_nil: |
---|
1155 | lessdef_list (nil ?) (nil ?) |
---|
1156 | | lessdef_list_cons: |
---|
1157 | ∀v1,v2,vl1,vl2. |
---|
1158 | Val_lessdef v1 v2 → lessdef_list vl1 vl2 → |
---|
1159 | lessdef_list (v1 :: vl1) (v2 :: vl2). |
---|
1160 | |
---|
1161 | (*Hint Resolve lessdef_refl lessdef_undef lessdef_list_nil lessdef_list_cons.*) |
---|
1162 | (* |
---|
1163 | lemma lessdef_list_inv: |
---|
1164 | ∀vl1,vl2. lessdef_list vl1 vl2 → vl1 = vl2 ∨ in_list ? Vundef vl1. |
---|
1165 | #vl1 elim vl1; |
---|
1166 | [ #vl2 #H inversion H; /2/; #h1 #h2 #t1 #t2 #H1 #H2 #H3 #Hbad destruct |
---|
1167 | | #h #t #IH #vl2 #H |
---|
1168 | inversion H; |
---|
1169 | [ #H' destruct |
---|
1170 | | #h1 #h2 #t1 #t2 #H1 #H2 #H3 #e1 #e2 destruct; |
---|
1171 | elim H1; |
---|
1172 | [ elim (IH t2 H2); |
---|
1173 | [ #e destruct; /2/; |
---|
1174 | | /3/ ] |
---|
1175 | | /3/ ] |
---|
1176 | ] |
---|
1177 | ] qed. |
---|
1178 | *) |
---|
1179 | lemma load_result_lessdef: |
---|
1180 | ∀chunk,v1,v2. |
---|
1181 | Val_lessdef v1 v2 → Val_lessdef (load_result chunk v1) (load_result chunk v2). |
---|
1182 | #chunk #v1 #v2 #H inversion H; //; #v #e1 #e2 cases chunk |
---|
1183 | [ 8: #r ] whd in ⊢ (?%?); //; |
---|
1184 | qed. |
---|
1185 | |
---|
1186 | lemma zero_ext_lessdef: |
---|
1187 | ∀n,v1,v2. Val_lessdef v1 v2 → Val_lessdef (zero_ext n v1) (zero_ext n v2). |
---|
1188 | #n #v1 #v2 #H inversion H // #v #E1 #E2 destruct // |
---|
1189 | qed. |
---|
1190 | |
---|
1191 | lemma sign_ext_lessdef: |
---|
1192 | ∀n,v1,v2. Val_lessdef v1 v2 → Val_lessdef (sign_ext n v1) (sign_ext n v2). |
---|
1193 | #n #v1 #v2 #H inversion H // #v #e1 #e2 whd in ⊢ (?%?) // |
---|
1194 | qed. |
---|
1195 | (* |
---|
1196 | Lemma singleoffloat_lessdef: |
---|
1197 | forall v1 v2, lessdef v1 v2 -> lessdef (singleoffloat v1) (singleoffloat v2). |
---|
1198 | Proof. |
---|
1199 | intros; inv H; simpl; auto. |
---|
1200 | Qed. |
---|
1201 | |
---|
1202 | End Val. |
---|
1203 | *) |
---|