-
Notifications
You must be signed in to change notification settings - Fork 85
/
semanticPrimitivesScript.sml
1322 lines (1230 loc) · 41.1 KB
/
semanticPrimitivesScript.sml
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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(*
Definitions of semantic primitives (e.g., values, and functions for doing
primitive operations) used in the semantics.
*)
open HolKernel Parse boolLib bossLib;
open miscTheory astTheory namespaceTheory ffiTheory fpValTreeTheory fpSemTheory realOpsTheory;
val _ = numLib.temp_prefer_num();
val _ = new_theory "semanticPrimitives"
(* Constructors and exceptions need unique identities, which we represent by stamps. *)
Datatype:
stamp =
(* Each type gets a unique number, and the constructor name must be unique
inside of the type *)
TypeStamp conN num
| ExnStamp num
End
Datatype:
sem_env =
<| v : (modN, varN, 'v) namespace
(* Lexical mapping of constructor idents to arity, stamp pairs *)
; c : (modN, conN, (num # stamp)) namespace
|>
End
(* Value forms *)
Datatype:
v =
Litv lit
(* Constructor application. Can be a tuple or a given constructor of a given type *)
| Conv (stamp option) (v list)
(* Function closures
The environment is used for the free variables in the function *)
| Closure (v sem_env) varN exp
(* Function closure for recursive functions
* See Closure and Letrec above
* The last variable name indicates which function from the mutually
* recursive bundle this closure value represents *)
| Recclosure (v sem_env) ((varN # varN # exp) list) varN
| Loc num
| Vectorv (v list)
| FP_WordTree fp_word_val
| FP_BoolTree fp_bool_val
| Real real
(* Environment value for Eval, and its numeric identifier *)
| Env (v sem_env) (num # num)
End
(* The runtime semantics should be able to deal with constants too, thus we add
a translation function from word constants to value trees *)
(*val fp_translate: v -> maybe v*)
Definition fp_translate_def:
fp_translate (Litv (Word64 w)) = (SOME (FP_WordTree (Fp_const w))) ∧
fp_translate (FP_WordTree v) = (SOME (FP_WordTree v)) ∧
fp_translate (FP_BoolTree v) = (SOME (FP_BoolTree v)) ∧
fp_translate _= NONE
End
Type env_ctor = ``: (modN, conN, (num # stamp)) namespace``
Type env_val = ``: (modN, varN, v) namespace``
Definition bind_stamp_def:
bind_stamp = ExnStamp 0
End
Definition chr_stamp_def:
chr_stamp = ExnStamp 1
End
Definition div_stamp_def:
div_stamp = ExnStamp 2
End
Definition subscript_stamp_def:
subscript_stamp = ExnStamp 3
End
Definition bind_exn_v_def:
bind_exn_v = Conv (SOME bind_stamp) []
End
Definition chr_exn_v_def:
chr_exn_v = Conv (SOME chr_stamp) []
End
Definition div_exn_v_def:
div_exn_v = Conv (SOME div_stamp) []
End
Definition sub_exn_v_def:
sub_exn_v = Conv (SOME subscript_stamp) []
End
Definition bool_type_num_def:
bool_type_num = 0
End
Definition list_type_num_def:
list_type_num = 1
End
Definition option_type_num_def:
option_type_num = 2
End
Definition lit_type_num_def:
lit_type_num = 3
End
Definition id_type_num_def:
id_type_num = 4
End
Definition ast_t_type_num_def:
ast_t_type_num = 5
End
Definition pat_type_num_def:
pat_type_num = 6
End
Definition lop_type_num_def:
lop_type_num = 7
End
Definition opn_type_num_def:
opn_type_num = 8
End
Definition opb_type_num_def:
opb_type_num = 9
End
Definition opw_type_num_def:
opw_type_num = 10
End
Definition shift_type_num_def:
shift_type_num = 11
End
Definition word_size_type_num_def:
word_size_type_num = 12
End
Definition fp_uop_type_num_def:
fp_uop_type_num = 13
End
Definition fp_bop_type_num_def:
fp_bop_type_num = 14
End
Definition fp_top_type_num_def:
fp_top_type_num = 15
End
Definition fp_cmp_type_num_def:
fp_cmp_type_num = 16
End
Definition real_uop_type_num_def:
real_uop_type_num = 17
End
Definition real_bop_type_num_def:
real_bop_type_num = 18
End
Definition real_cmp_type_num_def:
real_cmp_type_num = 19
End
Definition op_type_num_def:
op_type_num = 20
End
Definition locn_type_num_def:
locn_type_num = 21
End
Definition locs_type_num_def:
locs_type_num = 22
End
Definition fp_opt_num_def:
fp_opt_num = 23
End
Definition exp_type_num_def:
exp_type_num = 24
End
Definition dec_type_num_def:
dec_type_num = 25
End
(* The result of evaluation *)
Datatype:
abort =
Rtype_error
| Rtimeout_error
| Rffi_error final_event
End
Datatype:
error_result =
Rraise 'a (* Should only be a value of type exn *)
| Rabort abort
End
Datatype:
result =
Rval 'a
| Rerr ('b error_result)
End
(* Stores *)
Datatype:
store_v =
(* A ref cell *)
Refv 'a
(* A byte array *)
| W8array (word8 list)
(* An array of values *)
| Varray ('a list)
End
Definition store_v_same_type_def:
store_v_same_type v1 v2 =
case (v1:'a store_v, v2:'a store_v) of
| (Refv _, Refv _) => T
| (W8array _,W8array _) => T
| (Varray _,Varray _) => T
| _ => F
End
(* The nth item in the list is the value at location n *)
Type store = “:('a store_v) list”
Definition empty_store_def:
empty_store = []:α store_v list
End
Definition store_lookup_def:
store_lookup l (st:('a store_v) list) =
if l < LENGTH st then SOME (EL l st) else NONE
End
Definition store_alloc_def:
store_alloc (v:'a store_v) st = (st ++ [v],LENGTH st)
End
Definition store_assign_def:
store_assign n (v:'a store_v) st =
if n < LENGTH st ∧ store_v_same_type (EL n st) v then
SOME (LUPDATE v n st)
else NONE
End
(* Compiler checker for Eval. The current design requires the compiler
to be run (as regular code within the semantics) before Eval is called,
and these config parameters specify how to interpret the declarations to
be evaluated and check that the compiler was run correctly.
Before attempting build a state of this type, find out about
mk_init_eval_state in source_evalProof.
*)
Type compiler_args = ``: ((num # num) # v # dec list)``
Type compiler_fun = ``: compiler_args ->
(v # word8 list # word64 list)option``
(*
State component encapsulating Icing optimizations and rewriter oracle.
rws := list of rewrites allowed to be applied by the semantics
opts := oracle that decides which rewrites are applied next
choices := global counter how many rewriting steps have been done
canOpt := flag indicating whether evaluation has stepped below an "opt" scope
*)
Datatype:
optChoice =
Strict (* strict 64-bit floating-point semantics, ignores annotations *)
| FPScope fp_opt (* currently under scope *)
End
Datatype:
fpState =
<| rws: fp_rw list
; opts: num -> rewrite_app list
; choices: num
; canOpt : optChoice
; real_sem : bool
|>
End
Datatype:
eval_decs_state =
<|
compiler : compiler_fun ;
(* state must be encoded as v somehow *)
compiler_state : v ;
env_id_counter : (num # num # num) ;
(* decs must also be encoded as v *)
decode_decs : v -> ( dec list)option
|>
End
(* Alternative mode for Eval including an oracle.
This is only for use in the compiler proof. *)
Type eval_oracle_fun = ``: num -> compiler_args``
Datatype:
eval_oracle_state =
<|
oracle : eval_oracle_fun ;
custom_do_eval : v list -> eval_oracle_fun ->
((num # num) # eval_oracle_fun # dec list)option ;
envs : ( ( v sem_env)list) list ;
generation : num
|>
End
Datatype:
eval_state =
EvalDecs eval_decs_state
| EvalOracle eval_oracle_state
End
Datatype:
state =
<| clock : num
; refs : v store
; ffi : 'ffi ffi_state
; next_type_stamp : num
; next_exn_stamp : num
; fp_state : fpState
; eval_state : eval_state option
|>
End
(* Other primitives *)
(* Check that a constructor is properly applied *)
Definition do_con_check_def:
do_con_check (cenv:((string),(string),(num#stamp))namespace) n_opt l ⇔
case n_opt of
NONE => T
| SOME n => case nsLookup cenv n of NONE => F | SOME (l',v2) => l = l'
End
Definition one_con_check_def[simp]:
one_con_check envc (Con cn es) = do_con_check envc cn (LENGTH es) ∧
one_con_check envc _ = T
End
Definition build_conv_def:
build_conv (envC:((string),(string),(num#stamp))namespace) cn vs =
case cn of
NONE => SOME (Conv NONE vs)
| SOME id =>
case nsLookup envC id of
NONE => NONE
| SOME (len,stamp) => SOME (Conv (SOME stamp) vs)
End
Definition lit_same_type_def:
lit_same_type l1 l2 ⇔
case (l1,l2) of
| (IntLit _, IntLit _) => T
| (Char _, Char _) => T
| (StrLit _, StrLit _) => T
| (Word8 _, Word8 _) => T
| (Word64 _, Word64 _) => T
| _ => F
End
Datatype:
match_result =
No_match
| Match_type_error
| Match 'a
End
Definition same_type_def:
(same_type (TypeStamp v0 n1) (TypeStamp v1 n2) ⇔ n1 = n2) ∧
(same_type (ExnStamp v2) (ExnStamp v3) ⇔ T) ∧
(same_type _ _ ⇔ F)
End
Definition same_ctor_def:
same_ctor stamp1 stamp2 ⇔ stamp1 = (stamp2:stamp)
End
Definition ctor_same_type_def:
ctor_same_type c1 c2 ⇔
case (c1,c2) of
(NONE,NONE) => T
| (SOME stamp1,SOME stamp2) => same_type stamp1 stamp2
| _ => F
End
Definition Boolv_def:
Boolv b =
if b then Conv (SOME (TypeStamp "True" bool_type_num)) []
else Conv (SOME (TypeStamp "False" bool_type_num)) []
End
Definition compress_def:
compress (FP_WordTree fp) = (Litv (Word64 (compress_word fp))) ∧
compress (FP_BoolTree fp) = (Boolv (compress_bool fp)) ∧
compress (Real r) = (Real r) ∧
compress (Litv l) = (Litv l) ∧
compress (Conv ts vs) = (Conv ts (compress_list vs)) ∧
compress (Closure env x e) = (Closure env x e) ∧
compress (Env env n) = (Env env n) ∧
compress (Recclosure env es x) = (Recclosure env es x) ∧
compress (Loc n) = (Loc n) ∧
compress (Vectorv vs) = (Vectorv (compress_list vs)) ∧
compress_list [] = [] ∧
compress_list (v::vs) = (compress v)::(compress_list vs)
End
(* A big-step pattern matcher. If the value matches the pattern, return an
* environment with the pattern variables bound to the corresponding sub-terms
* of the value; this environment extends the environment given as an argument.
* No_match is returned when there is no match, but any constructors
* encountered in determining the match failure are applied to the correct
* number of arguments, and constructors in corresponding positions in the
* pattern and value come from the same type. Match_type_error is returned
* when one of these conditions is violated *)
Definition pmatch_def:
pmatch envC s Pany v' env = Match env ∧
pmatch envC s (Pvar x) v' env = Match ((x,v')::env) ∧
pmatch envC s (Plit l) (Litv l') env =
(if l = l' then Match env
else if lit_same_type l l' then No_match
else Match_type_error) ∧
pmatch envC s (Pcon (SOME n) ps) (Conv (SOME stamp') vs) env =
(case nsLookup envC n of
NONE => Match_type_error
| SOME (l,stamp) =>
if same_type stamp stamp' ∧ LENGTH ps = l then
if same_ctor stamp stamp' then
if LENGTH vs = l then pmatch_list envC s ps vs env
else Match_type_error
else No_match
else Match_type_error) ∧
pmatch envC s (Pcon NONE ps) (Conv NONE vs) env =
(if LENGTH ps = LENGTH vs then pmatch_list envC s ps vs env
else Match_type_error) ∧
pmatch envC s (Pref p) (Loc lnum) env =
(case store_lookup lnum s of
NONE => Match_type_error
| SOME (Refv v) => pmatch envC s p v env
| SOME (W8array v6) => Match_type_error
| SOME (Varray v7) => Match_type_error) ∧
pmatch envC s (Pas p i) v env = pmatch envC s p v ((i,v)::env) ∧
pmatch envC s (Ptannot p t) v env = pmatch envC s p v env ∧
pmatch envC s _ _ env = Match_type_error ∧
pmatch_list envC s [] [] env = Match env ∧
pmatch_list envC s (p::ps) (v::vs) env =
(case pmatch envC s p v env of
No_match =>
(case pmatch_list envC s ps vs env of
No_match => No_match
| Match_type_error => Match_type_error
| Match v1 => No_match)
| Match_type_error => Match_type_error
| Match env' => pmatch_list envC s ps vs env') ∧
pmatch_list envC s _ _ env = Match_type_error
Termination
WF_REL_TAC
`inv_image $< (λx. case x of INL (s,a,p,b,c) => pat_size p
| INR (s,a,ps,b,c) => list_size pat_size ps)`
End
Definition can_pmatch_all_def:
(can_pmatch_all envC refs [] v ⇔ T) ∧
(can_pmatch_all envC refs (p::ps) v ⇔
if pmatch envC refs p v [] = Match_type_error then F
else can_pmatch_all envC refs ps v)
End
(* Bind each function of a mutually recursive set of functions to its closure *)
Definition build_rec_env_def:
(build_rec_env:(varN#varN#exp)list ->(v)sem_env ->((string),(string),(v))namespace
->((string),(string),(v))namespace) funs cl_env add_to_env =
FOLDR (λ(f,x,e) env'. nsBind f (Recclosure cl_env funs f) env')
add_to_env funs
End
(* Lookup in the list of mutually recursive functions *)
Definition find_recfun_def:
(find_recfun:string ->(string#'a#'b)list ->('a#'b)option) n funs =
case funs of
[] => NONE
| (f,x,e)::funs' => if f = n then SOME (x,e) else find_recfun n funs'
End
Datatype:
eq_result =
Eq_val bool
| Eq_type_error
End
Definition do_eq_def:
do_eq (Litv l1) (Litv l2) =
(if lit_same_type l1 l2 then Eq_val (l1 = l2) else Eq_type_error) ∧
do_eq (Loc l1) (Loc l2) = Eq_val (l1 = l2) ∧
do_eq (Conv cn1 vs1) (Conv cn2 vs2) =
(if cn1 = cn2 ∧ LENGTH vs1 = LENGTH vs2 then do_eq_list vs1 vs2
else if ctor_same_type cn1 cn2 then Eq_val F
else Eq_type_error) ∧
do_eq (Vectorv vs1) (Vectorv vs2) =
(if LENGTH vs1 = LENGTH vs2 then do_eq_list vs1 vs2 else Eq_val F) ∧
do_eq (Closure v0 v3 v4) (Closure v5 v6 v7) = Eq_val T ∧
do_eq (Closure v8 v9 v10) (Recclosure v11 v12 v13) = Eq_val T ∧
do_eq (Recclosure v14 v15 v16) (Closure v17 v18 v19) = Eq_val T ∧
do_eq (Recclosure v20 v21 v22) (Recclosure v23 v24 v25) = Eq_val T ∧
do_eq (FP_BoolTree v1) (FP_BoolTree v2) = (Eq_val (compress_bool v1 <=> compress_bool v2)) ∧
do_eq (FP_BoolTree v1) (Conv cn2 vs2)=
(case Boolv (compress_bool v1) of
Conv cn1 vs1 =>
if (cn1 = cn2) /\ (LENGTH vs1 = LENGTH vs2) then
do_eq_list vs1 vs2
else if ctor_same_type cn1 cn2 then
Eq_val F
else
Eq_type_error
| _ => Eq_type_error) ∧
do_eq (Conv cn1 vs1) (FP_BoolTree v2)=
(case Boolv (compress_bool v2) of
Conv cn2 vs2 =>
if (cn1 = cn2) /\ (LENGTH vs1 = LENGTH vs2) then
do_eq_list vs1 vs2
else if ctor_same_type cn1 cn2 then
Eq_val F
else
Eq_type_error
| _ => Eq_type_error) ∧
do_eq (FP_WordTree v1) (FP_WordTree v2) = (Eq_val (compress_word v1 = compress_word v2)) ∧
do_eq (Litv (Word64 w1)) (FP_WordTree v2) = (Eq_val (w1 = compress_word v2)) ∧
do_eq (FP_WordTree v1) (Litv (Word64 w2)) = (Eq_val (compress_word v1 = w2)) ∧
do_eq (Real r1) (Real r2) = (Eq_val (r1 = r2)) ∧
do_eq (Env v26 (gen1,id1)) (Env v27 (gen2,id2)) =
Eq_val (gen1 = gen2 ∧ id1 = id2) ∧
do_eq _ _ = Eq_type_error ∧
do_eq_list [] [] = Eq_val T ∧
do_eq_list (v1::vs1) (v2::vs2) =
(case do_eq v1 v2 of
Eq_val r => if ¬r then Eq_val F else do_eq_list vs1 vs2
| Eq_type_error => Eq_type_error) ∧
do_eq_list _ _ = Eq_val F
Termination
WF_REL_TAC `inv_image $< (λx. case x of INL (v1,v2) => v_size v1
| INR (vs1,vs2) => list_size v_size vs1)`
>> Cases_on ‘compress_bool v1’ >> gs[Boolv_def, listTheory.list_size_def]
End
(* Do an application *)
Definition do_opapp_def:
do_opapp vs =
case vs of
| [Closure env n e; v] => SOME (env with v := nsBind n v env.v,e)
| [Recclosure env' funs n'; v] =>
if ALL_DISTINCT (MAP (λ(f,x,e). f) funs) then
case find_recfun n' funs of
NONE => NONE
| SOME (n,e) =>
SOME
(env' with v := nsBind n v (build_rec_env funs env' env'.v),e)
else NONE
| _ => NONE
End
(* If a value represents a list, get that list. Otherwise return Nothing *)
Definition v_to_list_def:
v_to_list (Conv (SOME stamp) []) =
(if stamp = TypeStamp "[]" list_type_num then SOME [] else NONE) ∧
v_to_list (Conv (SOME stamp) [v1; v2]) =
(if stamp = TypeStamp "::" list_type_num then
case v_to_list v2 of NONE => NONE | SOME vs => SOME (v1::vs)
else NONE) ∧
v_to_list _ = NONE
End
Definition list_to_v_def:
list_to_v [] = Conv (SOME (TypeStamp "[]" list_type_num)) [] ∧
list_to_v (x::xs) = Conv (SOME (TypeStamp "::" list_type_num)) [x; list_to_v xs]
End
Definition v_to_char_list_def:
v_to_char_list (Conv (SOME stamp) []) =
(if stamp = TypeStamp "[]" list_type_num then SOME "" else NONE) ∧
v_to_char_list (Conv (SOME stamp) [Litv (Char c); v]) =
(if stamp = TypeStamp "::" list_type_num then
case v_to_char_list v of NONE => NONE | SOME cs => SOME (STRING c cs)
else NONE) ∧
v_to_char_list _ = NONE
End
Definition vs_to_string_def:
vs_to_string [] = SOME "" ∧
vs_to_string (Litv (StrLit s1)::vs) =
(case vs_to_string vs of NONE => NONE | SOME s2 => SOME (STRCAT s1 s2)) ∧
vs_to_string (_::v1) = NONE
End
Definition maybe_to_v_def:
maybe_to_v NONE = Conv (SOME (TypeStamp "None" option_type_num)) [] ∧
maybe_to_v (SOME v) = Conv (SOME (TypeStamp "Some" option_type_num)) [v]
End
Definition v_to_id_def:
v_to_id (Conv (SOME stamp) [Litv (StrLit s)]) =
(if stamp = TypeStamp "Short" id_type_num then
SOME (Short s)
else NONE) ∧
v_to_id (Conv (SOME stamp) [Litv (StrLit s); v]) =
(if stamp = TypeStamp "Long" id_type_num then
case v_to_id v of NONE => NONE | SOME id => SOME (Long s id)
else NONE) ∧
v_to_id _ = NONE
End
Definition nat_to_v_def:
nat_to_v n = Litv (IntLit (&n))
End
Definition maybe_all_list_def:
maybe_all_list v =
case v of
[] => SOME []
| NONE::vs => NONE
| SOME x::vs =>
case maybe_all_list vs of NONE => NONE | SOME xs => SOME (x::xs)
End
Definition v_to_word8_def:
v_to_word8 v =
case v of
| Litv (Word8 w) => SOME w
| _ => NONE
End
Definition v_to_word8_list_def:
v_to_word8_list v =
case v_to_list v of
| NONE => NONE
| SOME xs => maybe_all_list (MAP v_to_word8 xs)
End
Definition v_to_word64_def:
v_to_word64 v =
case v of
| Litv (Word64 w) => SOME w
| _ => NONE
End
Definition v_to_word64_list_def:
v_to_word64_list v =
case v_to_list v of
| NONE => NONE
| SOME xs => maybe_all_list (MAP v_to_word64 xs)
End
Definition lookup_env_def:
lookup_env s (i,j) =
case oEL i s.envs of NONE => NONE | SOME gen_envs => oEL j gen_envs
End
Definition add_decs_generation_def:
add_decs_generation s =
case s.env_id_counter of
(cur_gen,next_id,next_gen) =>
s with env_id_counter := (next_gen,0,next_gen + 1)
End
Definition add_env_generation_def:
add_env_generation s =
s with <|generation := LENGTH s.envs; envs := s.envs ⧺ [[]]|>
End
Definition declare_env_def:
declare_env es env =
case es of
| NONE => NONE
| SOME (EvalDecs s) =>
(case s.env_id_counter of
(cur_gen,next_id,next_gen) =>
SOME
(Env env (cur_gen,next_id),
SOME
(EvalDecs
(s with
env_id_counter := (cur_gen,next_id + 1,next_gen)))))
| SOME (EvalOracle s') =>
case oEL s'.generation s'.envs of
| NONE => NONE
| SOME gen_envs =>
SOME
(Conv NONE [nat_to_v s'.generation; nat_to_v (LENGTH gen_envs)],
SOME
(EvalOracle
(s' with
envs := LUPDATE (gen_envs ⧺ [env]) s'.generation s'.envs)))
End
(* Concrete, or first-order values, which do not contain code closures and
are unchanged by many compiler phases. *)
Definition concrete_v_def:
(concrete_v v ⇔
case v of
| Loc _ => T
| Litv _ => T
| Conv v_ vs => concrete_v_list vs
| Vectorv vs => concrete_v_list vs
| FP_WordTree fp => T
| FP_BoolTree fp => T
| Real r => T
| _ => F) ∧
(concrete_v_list [] ⇔ T) ∧
(concrete_v_list (v::vs) ⇔ concrete_v v ∧ concrete_v_list vs)
Termination
WF_REL_TAC `measure (λx. case x of INL v => v_size v
| INR vs => list_size v_size vs)`
End
Definition compiler_agrees_def:
compiler_agrees (f:((num#num)#v#(dec)list ->(v#(word8)list#(word64)list)option))
args (st_v,bs_v,ws_v) ⇔
case (f args,args,v_to_word8_list bs_v,v_to_word64_list ws_v) of
| (SOME (st,c_bs,c_ws),(v16,prev_st_v,_),SOME bs,SOME ws) =>
st = st_v ∧ c_bs = bs ∧ c_ws = ws ∧ concrete_v st_v ∧
concrete_v prev_st_v
| _ => F
End
(* get the declarations to be evaluated in the various Eval semantics *)
Definition do_eval_def:
do_eval vs es =
case (es,vs) of
| (SOME (EvalDecs s),[Env env id; st_v; decs_v; st_v2; bs_v; ws_v]) =>
(case s.decode_decs decs_v of
NONE => NONE
| SOME decs =>
if
st_v = s.compiler_state ∧ concrete_v decs_v ∧
compiler_agrees s.compiler (id,st_v,decs) (st_v2,bs_v,ws_v)
then
SOME
(env,decs,
SOME
(EvalDecs
(add_decs_generation (s with compiler_state := st_v2))))
else NONE)
| (SOME (EvalOracle s'),vs) =>
(case s'.custom_do_eval vs s'.oracle of
NONE => NONE
| SOME (env_id,oracle,decs) =>
case lookup_env s' env_id of
NONE => NONE
| SOME env =>
SOME
(env,decs,
SOME
(EvalOracle (add_env_generation (s' with oracle := oracle)))))
| _ => NONE
End
(* conclude an Eval generation *)
Definition reset_env_generation_def:
reset_env_generation prior_es es =
case (prior_es,es) of
| (SOME (EvalDecs prior_s'),SOME (EvalDecs s')) =>
(case (prior_s'.env_id_counter,s'.env_id_counter) of
((cur_gen,next_id,v5),v6,v8,next_gen) =>
SOME
(EvalDecs
(s' with env_id_counter := (cur_gen,next_id,next_gen))))
| (SOME (EvalOracle prior_s),SOME (EvalOracle s)) =>
SOME (EvalOracle (s with generation := prior_s.generation))
| _ => es
End
Definition copy_array_def:
copy_array (src,srcoff) len d =
if
srcoff < 0 ∨ len < 0 ∨ LENGTH src < Num (ABS (I (srcoff + len)))
then
NONE
else
(let
copied =
TAKE (Num (ABS (I len))) (DROP (Num (ABS (I srcoff))) src)
in
case d of
NONE => SOME copied
| SOME (dst,dstoff) =>
if dstoff < 0 ∨ LENGTH dst < Num (ABS (I (dstoff + len))) then
NONE
else
SOME
(TAKE (Num (ABS (I dstoff))) dst ⧺ copied ⧺
DROP (Num (ABS (I (dstoff + len)))) dst))
End
Definition ws_to_chars_def:
ws_to_chars (ws:word8 list) = MAP (λw. CHR (w2n w)) ws
End
Definition chars_to_ws_def:
chars_to_ws cs = MAP (λc. i2w (&ORD c)) cs :word8 list
End
Definition opn_lookup_def:
opn_lookup n =
case n of
| Plus => $+
| Minus => $-
| Times => $*
| Divide => $/
| Modulo => $%
End
Definition opb_lookup_def:
opb_lookup n =
case n of Lt => $< | Gt => $> | Leq => $<= | Geq => ($>= : int -> int -> bool)
End
Definition opw8_lookup_def:
opw8_lookup op =
case op of
| Andw => word_and
| Orw => word_or
| Xor => word_xor
| Add => word_add
| Sub => word_sub : word8 -> word8 -> word8
End
Definition opw64_lookup_def:
opw64_lookup op =
case op of
| Andw => word_and
| Orw => word_or
| Xor => word_xor
| Add => word_add
| Sub => word_sub : word64 -> word64 -> word64
End
Definition shift8_lookup_def:
shift8_lookup sh =
case sh of
| Lsl => word_lsl
| Lsr => word_lsr
| Asr => word_asr
| Ror => word_ror : word8 -> num -> word8
End
Definition shift64_lookup_def:
shift64_lookup sh =
case sh of
| Lsl => word_lsl
| Lsr => word_lsr
| Asr => word_asr
| Ror => word_ror : word64 -> num -> word64
End
Datatype:
exp_or_val = Exp exp | Val v
End
Type store_ffi = “: 'v store # 'ffi ffi_state”
Definition do_fprw_def:
do_fprw (v:(v,v) result) fp_opt fp_rws=
(case (v, fp_opt) of
(Rval (FP_BoolTree fv), rws) =>
(case rwAllBoolTree rws fp_rws fv of
NONE => NONE
| SOME fv_opt => SOME (Rval (FP_BoolTree fv_opt))
)
| (Rval (FP_WordTree fv), rws) =>
(case rwAllWordTree rws fp_rws fv of
NONE => NONE
| SOME fv_opt => SOME (Rval (FP_WordTree fv_opt))
)
| (Rval r, [] ) => SOME v
| (_, _) => NONE)
End
Definition do_fpoptimise_def:
do_fpoptimise sc [] = [] ∧
do_fpoptimise sc [Litv l] = [Litv l] ∧
do_fpoptimise sc [Conv st vs] = [Conv st (do_fpoptimise sc vs)] ∧
do_fpoptimise sc [Closure env x e] = [Closure env x e] ∧
do_fpoptimise sc [Recclosure env ls x] = [Recclosure env ls x] ∧
do_fpoptimise sc [Loc n] = [Loc n] ∧
do_fpoptimise sc [Vectorv vs] = [Vectorv (do_fpoptimise sc vs)] ∧
do_fpoptimise sc [Real r]= [Real r] ∧
do_fpoptimise sc [FP_WordTree fp] = [FP_WordTree (Fp_wopt sc fp)] ∧
do_fpoptimise sc [FP_BoolTree fp] = [FP_BoolTree (Fp_bopt sc fp)] ∧
do_fpoptimise sc [Env env n] = [Env env n] ∧
do_fpoptimise sc (v::vs) = (do_fpoptimise sc [v]) ++ (do_fpoptimise sc vs)
Termination
WF_REL_TAC `measure (\ (_, l). v1_size l)` \\ fs[]
End
Definition do_app_def:
do_app (s: v store_v list, t: 'ffi ffi_state) op vs =
case (op, vs) of
(ListAppend, [x1; x2]) =>
(case (v_to_list x1, v_to_list x2) of
(SOME xs, SOME ys) => SOME ((s,t), Rval (list_to_v (xs ++ ys)))
| _ => NONE
)
| (Opn op, [Litv (IntLit n1); Litv (IntLit n2)]) =>
if ((op = Divide) \/ (op = Modulo)) /\ (n2 =( 0 : int)) then
SOME ((s,t), Rerr (Rraise div_exn_v))
else
SOME ((s,t), Rval (Litv (IntLit (opn_lookup op n1 n2))))
| (Opb op, [Litv (IntLit n1); Litv (IntLit n2)]) =>
SOME ((s,t), Rval (Boolv (opb_lookup op n1 n2)))
| (Opw W8 op, [Litv (Word8 w1); Litv (Word8 w2)]) =>
SOME ((s,t), Rval (Litv (Word8 (opw8_lookup op w1 w2))))
| (Opw W64 op, [Litv (Word64 w1); Litv (Word64 w2)]) =>
SOME ((s,t), Rval (Litv (Word64 (opw64_lookup op w1 w2))))
| (Opw W64 op, [FP_WordTree w1; Litv (Word64 w2)]) =>
let wr1 = (compress_word w1) in
SOME ((s,t), Rval (Litv (Word64 (opw64_lookup op wr1 w2))))
| (Opw W64 op, [Litv (Word64 w1); FP_WordTree w2]) =>
let wr2 = (compress_word w2) in
SOME ((s,t), Rval (Litv (Word64 (opw64_lookup op w1 wr2))))
| (Opw W64 op, [FP_WordTree w1; FP_WordTree w2]) =>
let wr1 = (compress_word w1) in
let wr2 = (compress_word w2) in
SOME ((s,t), Rval (Litv (Word64 (opw64_lookup op wr1 wr2))))
| (FP_top t_op, [v1; v2; v3]) =>
(case (fp_translate v1, fp_translate v2, fp_translate v3) of
(SOME (FP_WordTree w1), SOME (FP_WordTree w2), SOME (FP_WordTree w3)) =>
SOME ((s,t), Rval (FP_WordTree (fp_top t_op w1 w2 w3)))
| _ => NONE
)
| (FP_bop bop, [v1; v2]) =>
(case (fp_translate v1, fp_translate v2) of
(SOME (FP_WordTree w1), SOME (FP_WordTree w2)) =>
SOME ((s,t),Rval (FP_WordTree (fp_bop bop w1 w2)))
| _ => NONE
)
| (FP_uop uop, [v1]) =>
(case (fp_translate v1) of
(SOME (FP_WordTree w1)) =>
SOME ((s,t),Rval (FP_WordTree (fp_uop uop w1)))
| _ => NONE
)
| (FP_cmp cmp, [v1; v2]) =>
(case (fp_translate v1, fp_translate v2) of
(SOME (FP_WordTree w1), SOME (FP_WordTree w2)) =>
SOME ((s,t),Rval (FP_BoolTree (fp_cmp cmp w1 w2)))
| _ => NONE
)
| (FpToWord, [FP_WordTree v1]) => SOME ((s,t), Rval (Litv (Word64 (compress_word v1))))
| (FpFromWord, [Litv (Word64 v1)]) => (SOME ((s,t), Rval (FP_WordTree (Fp_const v1))))
| (Real_cmp cmp, [Real v1; Real v2]) =>
SOME ((s,t), Rval (Boolv (real_cmp cmp v1 v2)))
| (Real_bop bop, [Real v1; Real v2]) =>
SOME ((s,t), Rval (Real (real_bop bop v1 v2)))
| (Real_uop uop, [Real v1]) =>
SOME ((s,t), Rval (Real (real_uop uop v1)))
| (RealFromFP, [Litv (Word64 fp)]) =>
SOME ((s,t), Rval (Real (fp64_to_real fp)))
| (Shift W8 op n, [Litv (Word8 w)]) =>
SOME ((s,t), Rval (Litv (Word8 (shift8_lookup op w n))))
| (Shift W64 op n, [Litv (Word64 w)]) =>
SOME ((s,t), Rval (Litv (Word64 (shift64_lookup op w n))))
| (Shift W64 op n, [FP_WordTree w1]) =>
let wr1 = (compress_word w1) in
(SOME ((s,t), Rval (Litv (Word64 (shift64_lookup op wr1 n)))))
| (Equality, [v1; v2]) =>
(case do_eq v1 v2 of
Eq_type_error => NONE
| Eq_val b => SOME ((s,t), Rval (Boolv b))
)
| (Opassign, [Loc lnum; v]) =>
(case store_assign lnum (Refv v) s of
SOME s' => SOME ((s',t), Rval (Conv NONE []))
| NONE => NONE
)
| (Opref, [v]) =>
let (s',n) = (store_alloc (Refv v) s) in
SOME ((s',t), Rval (Loc n))
| (Opderef, [Loc n]) =>
(case store_lookup n s of
SOME (Refv v) => SOME ((s,t),Rval v)
| _ => NONE
)
| (Aw8alloc, [Litv (IntLit n); Litv (Word8 w)]) =>
if n <( 0 : int) then
SOME ((s,t), Rerr (Rraise sub_exn_v))
else
let (s',lnum) =
(store_alloc (W8array (REPLICATE (Num (ABS (I n))) w)) s)
in
SOME ((s',t), Rval (Loc lnum))
| (Aw8sub, [Loc lnum; Litv (IntLit i)]) =>
(case store_lookup lnum s of
SOME (W8array ws) =>
if i <( 0 : int) then
SOME ((s,t), Rerr (Rraise sub_exn_v))
else
let n = (Num (ABS (I i))) in
if n >= LENGTH ws then
SOME ((s,t), Rerr (Rraise sub_exn_v))
else
SOME ((s,t), Rval (Litv (Word8 (EL n ws))))
| _ => NONE
)
| (Aw8sub_unsafe, [Loc lnum; Litv (IntLit i)]) =>
(case store_lookup lnum s of
SOME (W8array ws) =>
if i <( 0 : int) then
NONE
else
let n = (Num (ABS (I i))) in
if n >= LENGTH ws then
NONE
else
SOME ((s,t), Rval (Litv (Word8 (EL n ws))))