forked from rems-project/sail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathocaml_backend.ml
1024 lines (966 loc) · 45.6 KB
/
ocaml_backend.ml
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
(**************************************************************************)
(* Sail *)
(* *)
(* Copyright (c) 2013-2017 *)
(* Kathyrn Gray *)
(* Shaked Flur *)
(* Stephen Kell *)
(* Gabriel Kerneis *)
(* Robert Norton-Wright *)
(* Christopher Pulte *)
(* Peter Sewell *)
(* Alasdair Armstrong *)
(* Brian Campbell *)
(* Thomas Bauereiss *)
(* Anthony Fox *)
(* Jon French *)
(* Dominic Mulligan *)
(* Stephen Kell *)
(* Mark Wassell *)
(* *)
(* All rights reserved. *)
(* *)
(* This software was developed by the University of Cambridge Computer *)
(* Laboratory as part of the Rigorous Engineering of Mainstream Systems *)
(* (REMS) project, funded by EPSRC grant EP/K008528/1. *)
(* *)
(* Redistribution and use in source and binary forms, with or without *)
(* modification, are permitted provided that the following conditions *)
(* are met: *)
(* 1. Redistributions of source code must retain the above copyright *)
(* notice, this list of conditions and the following disclaimer. *)
(* 2. Redistributions in binary form must reproduce the above copyright *)
(* notice, this list of conditions and the following disclaimer in *)
(* the documentation and/or other materials provided with the *)
(* distribution. *)
(* *)
(* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' *)
(* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *)
(* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *)
(* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR *)
(* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *)
(* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *)
(* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF *)
(* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *)
(* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, *)
(* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT *)
(* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *)
(* SUCH DAMAGE. *)
(**************************************************************************)
open Ast
open Ast_util
open PPrint
open Type_check
open Util
module Big_int = Nat_big_num
(* Option to turn tracing features on or off *)
let opt_trace_ocaml = ref false
(* Option to not build generated ocaml by default *)
let opt_ocaml_nobuild = ref false
let opt_ocaml_coverage = ref false
let opt_ocaml_build_dir = ref "_sbuild"
type ctx =
{ register_inits : tannot exp list;
externs : id Bindings.t;
val_specs : typ Bindings.t
}
let empty_ctx =
{ register_inits = [];
externs = Bindings.empty;
val_specs = Bindings.empty
}
let gensym_counter = ref 0
let gensym () =
let gs = "gs" ^ string_of_int !gensym_counter in
incr gensym_counter;
string gs
let zencode ctx id =
try string (string_of_id (Bindings.find id ctx.externs)) with
| Not_found -> string (zencode_string (string_of_id id))
let zencode_upper ctx id =
try string (string_of_id (Bindings.find id ctx.externs)) with
| Not_found -> string (zencode_upper_string (string_of_id id))
let zencode_kid kid = string ("'" ^ zencode_string (string_of_id (id_of_kid kid)))
let ocaml_string_of id = string ("string_of_" ^ zencode_string (string_of_id id))
let ocaml_string_parens inside = string "\"(\" ^ " ^^ inside ^^ string " ^ \")\""
let ocaml_string_comma = string " ^ \", \" ^ "
let rec ocaml_string_typ (Typ_aux (typ_aux, l)) arg =
match typ_aux with
| Typ_id id when string_of_id id = "exception" -> string "Printexc.to_string" ^^ space ^^ arg
| Typ_id id -> ocaml_string_of id ^^ space ^^ arg
| Typ_app (id, []) -> ocaml_string_of id ^^ space ^^ arg
| Typ_app (id, [A_aux (A_typ (Typ_aux (Typ_id eid, _)), _)])
when string_of_id id = "list" && string_of_id eid = "bit" ->
string "string_of_bits" ^^ space ^^ arg
| Typ_app (id, [A_aux (A_typ typ, _)]) when string_of_id id = "list" ->
let farg = gensym () in
separate space [string "string_of_list \", \""; parens (separate space [string "fun"; farg; string "->"; ocaml_string_typ typ farg]); arg]
| Typ_app (_, _) -> string "\"APP\""
| Typ_tup typs ->
let args = List.map (fun _ -> gensym ()) typs in
let body =
ocaml_string_parens (separate_map ocaml_string_comma (fun (typ, arg) -> ocaml_string_typ typ arg) (List.combine typs args))
in
parens (separate space [string "fun"; parens (separate (comma ^^ space) args); string "->"; body])
^^ space ^^ arg
| Typ_fn (typ1, typ2, _) -> string "\"FN\""
| Typ_bidir (t1, t2) -> string "\"BIDIR\""
| Typ_var kid -> string "\"VAR\""
| Typ_exist _ -> assert false
| Typ_internal_unknown -> raise (Reporting.err_unreachable l __POS__ "escaped Typ_internal_unknown")
let ocaml_typ_id ctx = function
| id when Id.compare id (mk_id "string") = 0 -> string "string"
| id when Id.compare id (mk_id "list") = 0 -> string "list"
| id when Id.compare id (mk_id "bit") = 0 -> string "bit"
| id when Id.compare id (mk_id "int") = 0 -> string "Big_int.num"
| id when Id.compare id (mk_id "implicit") = 0 -> string "Big_int.num"
| id when Id.compare id (mk_id "nat") = 0 -> string "Big_int.num"
| id when Id.compare id (mk_id "bool") = 0 -> string "bool"
| id when Id.compare id (mk_id "unit") = 0 -> string "unit"
| id when Id.compare id (mk_id "real") = 0 -> string "Rational.t"
| id when Id.compare id (mk_id "exception") = 0 -> string "exn"
| id when Id.compare id (mk_id "register") = 0 -> string "ref"
| id -> zencode ctx id
let rec ocaml_typ ctx (Typ_aux (typ_aux, l)) =
match typ_aux with
| Typ_id id -> ocaml_typ_id ctx id
| Typ_app (id, []) -> ocaml_typ_id ctx id
| Typ_app (id, typs) -> parens (separate_map (string ", ") (ocaml_typ_arg ctx) typs) ^^ space ^^ ocaml_typ_id ctx id
| Typ_tup typs -> parens (separate_map (string " * ") (ocaml_typ ctx) typs)
| Typ_fn (typs, typ, _) -> separate space [ocaml_typ ctx (Typ_aux (Typ_tup typs, l)); string "->"; ocaml_typ ctx typ]
| Typ_bidir (t1, t2) -> raise (Reporting.err_general l "Ocaml doesn't support bidir types")
| Typ_var kid -> zencode_kid kid
| Typ_exist _ -> assert false
| Typ_internal_unknown -> raise (Reporting.err_unreachable l __POS__ "escaped Typ_internal_unknown")
and ocaml_typ_arg ctx (A_aux (typ_arg_aux, _) as typ_arg) =
match typ_arg_aux with
| A_typ typ -> ocaml_typ ctx typ
| _ -> failwith ("OCaml: unexpected type argument " ^ string_of_typ_arg typ_arg)
let ocaml_typquant (TypQ_aux (_, l) as typq) =
let ocaml_qi = function
| QI_aux (QI_id kopt, _) -> zencode_kid (kopt_kid kopt)
| QI_aux (QI_constraint _, _) ->
raise (Reporting.err_general l "Ocaml: type quantifiers should no longer contain constraints")
| QI_aux (QI_constant _, _) ->
raise (Reporting.err_general l "Ocaml: type quantifiers should no longer contain constrant constraints")
in
match quant_items typq with
| [] -> empty
| [qi] -> ocaml_qi qi
| qis -> parens (separate_map (string ", ") ocaml_qi qis)
let string_lit str = dquotes (string (String.escaped str))
let ocaml_lit (L_aux (lit_aux, _)) =
match lit_aux with
| L_unit -> string "()"
| L_zero -> string "B0"
| L_one -> string "B1"
| L_true -> string "true"
| L_false -> string "false"
| L_num n ->
if Big_int.equal n Big_int.zero then
string "Big_int.zero"
else if Big_int.less_equal (Big_int.of_int min_int) n && Big_int.less_equal n (Big_int.of_int max_int) then
parens (string "Big_int.of_int" ^^ space ^^ parens (string (Big_int.to_string n)))
else
parens (string "Big_int.of_string" ^^ space ^^ dquotes (string (Big_int.to_string n)))
| L_undef -> failwith "undefined should have been re-written prior to ocaml backend"
| L_string str -> string_lit str
| L_real str -> parens (string "real_of_string" ^^ space ^^ dquotes (string (String.escaped str)))
| _ -> string "LIT"
let rec ocaml_pat ctx (P_aux (pat_aux, _) as pat) =
match pat_aux with
| P_id id ->
begin
match Env.lookup_id id (env_of_pat pat) with
| Local (_, _) | Unbound -> zencode ctx id
| Enum _ -> zencode_upper ctx id
| _ -> failwith ("Ocaml: Cannot pattern match on register: " ^ string_of_pat pat)
end
| P_lit lit -> ocaml_lit lit
| P_typ (_, pat) -> ocaml_pat ctx pat
| P_tup pats -> parens (separate_map (comma ^^ space) (ocaml_pat ctx) pats)
| P_list pats -> brackets (separate_map (semi ^^ space) (ocaml_pat ctx) pats)
| P_wild -> string "_"
| P_as (pat, id) -> separate space [ocaml_pat ctx pat; string "as"; zencode ctx id]
| P_app (id, pats) -> zencode_upper ctx id ^^ space ^^ parens (separate_map (comma ^^ space) (ocaml_pat ctx) pats)
| P_cons (hd_pat, tl_pat) -> ocaml_pat ctx hd_pat ^^ string " :: " ^^ ocaml_pat ctx tl_pat
| _ -> string ("PAT<" ^ string_of_pat pat ^ ">")
let begin_end doc = group (string "begin" ^^ nest 2 (break 1 ^^ doc) ^/^ string "end")
(* Returns true if a type is a register being passed by name *)
let is_passed_by_name = function
| (Typ_aux (Typ_app (tid, _), _)) -> string_of_id tid = "register"
| _ -> false
let rec ocaml_exp ctx (E_aux (exp_aux, _) as exp) =
match exp_aux with
| E_app (f, [x]) when Env.is_union_constructor f (env_of exp) -> zencode_upper ctx f ^^ space ^^ ocaml_atomic_exp ctx x
| E_app (f, [x]) -> zencode ctx f ^^ space ^^ ocaml_atomic_exp ctx x
| E_app (f, xs) when Env.is_union_constructor f (env_of exp) ->
zencode_upper ctx f ^^ space ^^ parens (separate_map (comma ^^ space) (ocaml_atomic_exp ctx) xs)
(* Make sure we get the correct short circuiting semantics for and and or *)
| E_app (f, [x; y]) when string_of_id f = "and_bool" ->
separate space [ocaml_atomic_exp ctx x; string "&&"; ocaml_atomic_exp ctx y]
| E_app (f, [x; y]) when string_of_id f = "or_bool" ->
separate space [ocaml_atomic_exp ctx x; string "||"; ocaml_atomic_exp ctx y]
| E_app (f, xs) ->
zencode ctx f ^^ space ^^ parens (separate_map (comma ^^ space) (ocaml_atomic_exp ctx) xs)
| E_vector_subrange (exp1, exp2, exp3) -> string "subrange" ^^ space ^^ parens (separate_map (comma ^^ space) (ocaml_atomic_exp ctx) [exp1; exp2; exp3])
| E_return exp -> separate space [string "r.return"; ocaml_atomic_exp ctx exp]
| E_assert (exp, _) -> separate space [string "assert"; ocaml_atomic_exp ctx exp]
| E_cast (_, exp) -> ocaml_exp ctx exp
| E_block [exp] -> ocaml_exp ctx exp
| E_block [] -> string "()"
| E_block exps -> begin_end (ocaml_block ctx exps)
| E_field (exp, id) -> ocaml_atomic_exp ctx exp ^^ dot ^^ zencode ctx id
| E_exit exp -> string "exit 0"
| E_throw exp -> string "raise" ^^ space ^^ ocaml_atomic_exp ctx exp
| E_case (exp, pexps) ->
begin_end (separate space [string "match"; ocaml_atomic_exp ctx exp; string "with"]
^/^ ocaml_pexps ctx pexps)
| E_try (exp, pexps) ->
begin_end (separate space [string "try"; ocaml_atomic_exp ctx exp; string "with"]
^/^ ocaml_pexps ctx pexps)
| E_assign (lexp, exp) -> ocaml_assignment ctx lexp exp
| E_if (c, t, e) -> separate space [string "if"; ocaml_atomic_exp ctx c;
string "then"; ocaml_atomic_exp ctx t;
string "else"; ocaml_atomic_exp ctx e]
| E_record fexps ->
enclose lbrace rbrace (group (separate_map (semi ^^ break 1) (ocaml_fexp ctx) fexps))
| E_record_update (exp, fexps) ->
enclose lbrace rbrace (separate space [ocaml_atomic_exp ctx exp;
string "with";
separate_map (semi ^^ space) (ocaml_fexp ctx) fexps])
| E_let (lb, exp) ->
separate space [string "let"; ocaml_letbind ctx lb; string "in"]
^/^ ocaml_exp ctx exp
| E_var (lexp, exp1, exp2) ->
separate space [string "let"; ocaml_atomic_lexp ctx lexp;
equals; string "ref"; parens (ocaml_atomic_exp ctx exp1 ^^ space ^^ colon ^^ space ^^ ocaml_typ ctx (Rewrites.simple_typ (typ_of exp1))); string "in"]
^/^ ocaml_exp ctx exp2
| E_loop (Until, _, cond, body) ->
let loop_body =
(ocaml_atomic_exp ctx body ^^ semi)
^/^
separate space [string "if"; ocaml_atomic_exp ctx cond;
string "then ()";
string "else loop ()"]
in
(string "let rec loop () =" ^//^ loop_body)
^/^ string "in"
^/^ string "loop ()"
| E_loop (While, _, cond, body) ->
let loop_body =
separate space [string "if"; ocaml_atomic_exp ctx cond;
string "then"; parens (ocaml_atomic_exp ctx body ^^ semi ^^ space ^^ string "loop ()");
string "else ()"]
in
(string "let rec loop () =" ^//^ loop_body)
^/^ string "in"
^/^ string "loop ()"
| E_lit _ | E_list _ | E_id _ | E_tuple _ | E_ref _ -> ocaml_atomic_exp ctx exp
| E_for (id, exp_from, exp_to, exp_step, ord, exp_body) ->
let loop_var = separate space [string "let"; zencode ctx id; equals; string "ref"; ocaml_atomic_exp ctx exp_from; string "in"] in
let loop_mod =
match ord with
| Ord_aux (Ord_inc, _) -> string "Big_int.add" ^^ space ^^ zencode ctx id ^^ space ^^ ocaml_atomic_exp ctx exp_step
| Ord_aux (Ord_dec, _) -> string "Big_int.sub" ^^ space ^^ zencode ctx id ^^ space ^^ ocaml_atomic_exp ctx exp_step
| Ord_aux (Ord_var _, _) -> failwith "Cannot have variable loop order!"
in
let loop_compare =
match ord with
| Ord_aux (Ord_inc, _) -> string "Big_int.less_equal"
| Ord_aux (Ord_dec, _) -> string "Big_int.greater_equal"
| Ord_aux (Ord_var _, _) -> failwith "Cannot have variable loop order!"
in
let loop_body =
separate space [string "if"; loop_compare; zencode ctx id; ocaml_atomic_exp ctx exp_to]
^/^ separate space [string "then";
parens (ocaml_atomic_exp ctx exp_body ^^ semi ^^ space ^^ string "loop" ^^ space ^^ parens loop_mod)]
^/^ string "else ()"
in
(string ("let rec loop " ^ zencode_string (string_of_id id) ^ " =") ^//^ loop_body)
^/^ string "in"
^/^ (string "loop" ^^ space ^^ ocaml_atomic_exp ctx exp_from)
| E_cons (x, xs) -> ocaml_exp ctx x ^^ string " :: " ^^ ocaml_exp ctx xs
| _ -> string ("EXP(" ^ string_of_exp exp ^ ")")
and ocaml_letbind ctx (LB_aux (lb_aux, _)) =
match lb_aux with
| LB_val (pat, exp) -> separate space [ocaml_pat ctx pat; equals; ocaml_atomic_exp ctx exp]
and ocaml_pexps ctx = function
| [pexp] -> ocaml_pexp ctx pexp
| pexp :: pexps -> ocaml_pexp ctx pexp ^/^ ocaml_pexps ctx pexps
| [] -> empty
and ocaml_pexp ctx = function
| Pat_aux (Pat_exp (pat, exp), _) ->
separate space [bar; ocaml_pat ctx pat; string "->"]
^//^ group (ocaml_exp ctx exp)
| Pat_aux (Pat_when (pat, wh, exp), _) ->
separate space [bar; ocaml_pat ctx pat; string "when"; ocaml_atomic_exp ctx wh; string "->"]
^//^ group (ocaml_exp ctx exp)
and ocaml_block ctx = function
| [exp] -> ocaml_exp ctx exp
| exp :: exps -> ocaml_exp ctx exp ^^ semi ^/^ ocaml_block ctx exps
| _ -> assert false
and ocaml_fexp ctx (FE_aux (FE_Fexp (id, exp), _)) =
separate space [zencode ctx id; equals; ocaml_exp ctx exp]
and ocaml_atomic_exp ctx (E_aux (exp_aux, _) as exp) =
match exp_aux with
| E_lit lit -> ocaml_lit lit
| E_ref id -> zencode ctx id
| E_id id ->
begin
match Env.lookup_id id (env_of exp) with
| Local (Immutable, _) | Unbound -> zencode ctx id
| Enum _ -> zencode_upper ctx id
| Register _ when is_passed_by_name (typ_of exp) -> zencode ctx id
| Register (_, _, typ) ->
if !opt_trace_ocaml then
let var = gensym () in
let str_typ = parens (ocaml_string_typ (Rewrites.simple_typ typ) var) in
parens (separate space [string "let"; var; equals; bang ^^ zencode ctx id; string "in";
string "trace_read" ^^ space ^^ string_lit (string_of_id id) ^^ space ^^ str_typ ^^ semi; var])
else bang ^^ zencode ctx id
| Local (Mutable, _) -> bang ^^ zencode ctx id
end
| E_list exps -> enclose lbracket rbracket (separate_map (semi ^^ space) (ocaml_exp ctx) exps)
| E_tuple exps -> parens (separate_map (comma ^^ space) (ocaml_exp ctx) exps)
| _ -> parens (ocaml_exp ctx exp)
and ocaml_assignment ctx (LEXP_aux (lexp_aux, _) as lexp) exp =
match lexp_aux with
| LEXP_cast (_, id) | LEXP_id id ->
begin
match Env.lookup_id id (env_of exp) with
| Register (_, _, typ) ->
let var = gensym () in
let traced_exp =
if !opt_trace_ocaml then
let var = gensym () in
let str_typ = parens (ocaml_string_typ (Rewrites.simple_typ typ) var) in
parens (separate space [string "let"; var; equals; ocaml_atomic_exp ctx exp; string "in";
string "trace_write" ^^ space ^^ string_lit (string_of_id id) ^^ space ^^ str_typ ^^ semi; var])
else ocaml_atomic_exp ctx exp
in
separate space [zencode ctx id; string ":="; traced_exp]
| _ -> separate space [zencode ctx id; string ":="; parens (ocaml_exp ctx exp)]
end
| LEXP_deref ref_exp ->
separate space [ocaml_atomic_exp ctx ref_exp; string ":="; parens (ocaml_exp ctx exp)]
| _ -> string ("LEXP<" ^ string_of_lexp lexp ^ ">")
and ocaml_lexp ctx (LEXP_aux (lexp_aux, _) as lexp) =
match lexp_aux with
| LEXP_cast _ | LEXP_id _ -> ocaml_atomic_lexp ctx lexp
| LEXP_deref exp -> ocaml_exp ctx exp
| _ -> string ("LEXP<" ^ string_of_lexp lexp ^ ">")
and ocaml_atomic_lexp ctx (LEXP_aux (lexp_aux, _) as lexp) =
match lexp_aux with
| LEXP_cast (_, id) -> zencode ctx id
| LEXP_id id -> zencode ctx id
| _ -> parens (ocaml_lexp ctx lexp)
let rec get_initialize_registers = function
| DEF_fundef (FD_aux (FD_function (_, _, _, [FCL_aux (FCL_Funcl (id, Pat_aux (Pat_exp (_, E_aux (E_block inits, _)),_)), _)]), _)) :: defs
when Id.compare id (mk_id "initialize_registers") = 0 ->
inits
| _ :: defs -> get_initialize_registers defs
| [] -> []
let initial_value_for id inits =
let find_reg = function
| E_aux (E_assign (LEXP_aux (LEXP_cast (_, reg_id), _), init), _) when Id.compare id reg_id = 0 -> Some init
| _ -> None
in
match Util.option_first find_reg inits with
| Some init -> init
| None -> failwith ("No assignment to register ^ " ^ string_of_id id ^ " in initialize_registers")
let ocaml_dec_spec ctx (DEC_aux (reg, _)) =
match reg with
| DEC_reg (_, _, typ, id) ->
separate space [string "let"; zencode ctx id; colon;
parens (ocaml_typ ctx typ); string "ref"; equals;
string "ref"; parens (ocaml_exp ctx (initial_value_for id ctx.register_inits))]
| DEC_config (id, typ, exp) ->
separate space [string "let"; zencode ctx id; colon;
parens (ocaml_typ ctx typ); string "ref"; equals;
string "ref"; parens (ocaml_exp ctx exp)]
| _ -> failwith "Unsupported register declaration"
let first_function = ref true
let function_header () =
if !first_function
then (first_function := false; string "let rec")
else string "and"
let funcls_id = function
| [] -> failwith "Ocaml: empty function"
| FCL_aux (FCL_Funcl (id, _),_) :: _ -> id
let ocaml_funcl_match ctx (FCL_aux (FCL_Funcl (id, pexp), _)) =
ocaml_pexp ctx pexp
let rec ocaml_funcl_matches ctx = function
| [] -> failwith "Ocaml: empty function"
| [clause] -> ocaml_funcl_match ctx clause
| (clause :: clauses) -> ocaml_funcl_match ctx clause ^/^ ocaml_funcl_matches ctx clauses
let ocaml_funcls ctx =
(* Create functions string_of_arg and string_of_ret that print the argument and return types of the function respectively *)
let trace_info typ1 typ2 =
let arg_sym = gensym () in
let ret_sym = gensym () in
let kids = KidSet.union (tyvars_of_typ typ1) (tyvars_of_typ typ2) in
let foralls =
if KidSet.is_empty kids then empty else
separate space (List.map zencode_kid (KidSet.elements kids)) ^^ dot;
in
let string_of_arg =
separate space [function_header (); arg_sym; colon; foralls; ocaml_typ ctx typ1; string "-> string = fun arg ->";
ocaml_string_typ typ1 (string "arg")]
in
let string_of_ret =
separate space [function_header (); ret_sym; colon; foralls; ocaml_typ ctx typ2; string "-> string = fun arg ->";
ocaml_string_typ typ2 (string "arg")]
in
(arg_sym, string_of_arg, ret_sym, string_of_ret)
in
let sail_call id arg_sym pat_sym ret_sym =
if !opt_trace_ocaml
then separate space [string "sail_trace_call"; string_lit (string_of_id id); parens (arg_sym ^^ space ^^ pat_sym); ret_sym]
else separate space [string "sail_call"]
in
let ocaml_funcl call string_of_arg string_of_ret =
if !opt_trace_ocaml
then (call ^^ twice hardline ^^ string_of_arg ^^ twice hardline ^^ string_of_ret)
else call
in
function
| [] -> failwith "Ocaml: empty function"
| [FCL_aux (FCL_Funcl (id, pexp),_)] ->
if Bindings.mem id ctx.externs
then string ("(* Omitting externed function " ^ string_of_id id ^ " *)") ^^ hardline
else
let arg_typs, ret_typ =
match Bindings.find id ctx.val_specs with
| Typ_aux (Typ_fn (typs, typ, _), _) -> (typs, typ)
| _ -> failwith "Found val spec which was not a function!"
| exception Not_found -> failwith ("No val spec found for " ^ string_of_id id)
in
(* Any remaining type variables after simple_typ rewrite should
indicate Type-polymorphism. If we have it, we need to generate
explicit type signatures with universal quantification. *)
let kids = List.fold_left KidSet.union (tyvars_of_typ ret_typ) (List.map tyvars_of_typ arg_typs) in
let pat_sym = gensym () in
let pat, exp =
match pexp with
| Pat_aux (Pat_exp (pat, exp),_) -> pat,exp
| Pat_aux (Pat_when (pat, wh, exp),_) -> failwith "OCaml: top-level pattern guards not supported"
in
let annot_pat =
let pat =
if KidSet.is_empty kids then
parens (ocaml_pat ctx pat ^^ space ^^ colon ^^ space ^^ ocaml_typ ctx (mk_typ (Typ_tup arg_typs)))
else
ocaml_pat ctx pat
in
if !opt_trace_ocaml
then parens (separate space [pat; string "as"; pat_sym])
else pat
in
let call_header = function_header () in
let arg_sym, string_of_arg, ret_sym, string_of_ret = trace_info (mk_typ (Typ_tup arg_typs)) ret_typ in
let call =
if KidSet.is_empty kids then
separate space [call_header; zencode ctx id;
annot_pat; colon; ocaml_typ ctx ret_typ; equals;
sail_call id arg_sym pat_sym ret_sym; string "(fun r ->"]
^//^ ocaml_exp ctx exp
^^ rparen
else
separate space [call_header; zencode ctx id; colon;
separate space (List.map zencode_kid (KidSet.elements kids)) ^^ dot;
ocaml_typ ctx (mk_typ (Typ_tup arg_typs)); string "->"; ocaml_typ ctx ret_typ; equals;
string "fun"; annot_pat; string "->";
sail_call id arg_sym pat_sym ret_sym; string "(fun r ->"]
^//^ ocaml_exp ctx exp
^^ rparen
in
ocaml_funcl call string_of_arg string_of_ret
| funcls ->
let id = funcls_id funcls in
if Bindings.mem id ctx.externs
then string ("(* Omitting externed function " ^ string_of_id id ^ " *)") ^^ hardline
else
let arg_typs, ret_typ =
match Bindings.find id ctx.val_specs with
| Typ_aux (Typ_fn (typs, typ, _), _) -> (typs, typ)
| _ -> failwith "Found val spec which was not a function!"
in
let kids = List.fold_left KidSet.union (tyvars_of_typ ret_typ) (List.map tyvars_of_typ arg_typs) in
if not (KidSet.is_empty kids) then failwith "Cannot handle polymorphic multi-clause function in OCaml backend" else ();
let pat_sym = gensym () in
let call_header = function_header () in
let arg_sym, string_of_arg, ret_sym, string_of_ret = trace_info (mk_typ (Typ_tup arg_typs)) ret_typ in
let call =
separate space [call_header; zencode ctx id; parens (pat_sym ^^ space ^^ colon ^^ space ^^ ocaml_typ ctx (mk_typ (Typ_tup arg_typs))); equals;
sail_call id arg_sym pat_sym ret_sym; string "(fun r ->"]
^//^ (separate space [string "match"; pat_sym; string "with"] ^^ hardline ^^ ocaml_funcl_matches ctx funcls)
^^ rparen
in
ocaml_funcl call string_of_arg string_of_ret
let ocaml_fundef ctx (FD_aux (FD_function (_, _, _, funcls), _)) =
ocaml_funcls ctx funcls
let rec ocaml_fields ctx =
let ocaml_field typ id =
separate space [zencode ctx id; colon; ocaml_typ ctx typ]
in
function
| [(typ, id)] -> ocaml_field typ id
| (typ, id) :: fields -> ocaml_field typ id ^^ semi ^/^ ocaml_fields ctx fields
| [] -> empty
let rec ocaml_cases ctx =
let ocaml_case (Tu_aux (Tu_ty_id (typ, id), _)) =
separate space [bar; zencode_upper ctx id; string "of"; ocaml_typ ctx typ]
in
function
| [tu] -> ocaml_case tu
| tu :: tus -> ocaml_case tu ^/^ ocaml_cases ctx tus
| [] -> empty
let rec ocaml_exceptions ctx =
let ocaml_exception (Tu_aux (Tu_ty_id (typ, id), _)) =
separate space [string "exception"; zencode_upper ctx id; string "of"; ocaml_typ ctx typ]
in
function
| [tu] -> ocaml_exception tu
| tu :: tus -> ocaml_exception tu ^^ string ";;" ^^ hardline ^^ ocaml_exceptions ctx tus
| [] -> empty
let rec ocaml_enum ctx = function
| [id] -> zencode_upper ctx id
| id :: ids -> zencode_upper ctx id ^/^ (bar ^^ space ^^ ocaml_enum ctx ids)
| [] -> empty
(* We generate a string_of_X ocaml function for each type X, to be used for debugging purposes *)
let ocaml_def_end = string ";;" ^^ twice hardline
let ocaml_string_of_enum ctx id ids =
let ocaml_case id =
separate space [bar; zencode_upper ctx id; string "->"; string ("\"" ^ string_of_id id ^ "\"")]
in
separate space [string "let"; ocaml_string_of id; equals; string "function"]
^//^ (separate_map hardline ocaml_case ids)
let ocaml_string_of_struct ctx id typq fields =
let arg = gensym () in
let ocaml_field (typ, id) =
separate space [string (string_of_id id ^ " = \""); string "^"; ocaml_string_typ typ (arg ^^ string "." ^^ zencode ctx id)]
in
separate space [string "let"; ocaml_string_of id; parens (arg ^^ space ^^ colon ^^ space ^^ ocaml_typquant typq ^^ space ^^ zencode ctx id); equals]
^//^ (string "\"{" ^^ separate_map (hardline ^^ string "^ \", ") ocaml_field fields ^^ string " ^ \"}\"")
let ocaml_string_of_abbrev ctx id typq typ =
let arg = gensym () in
separate space [string "let"; ocaml_string_of id; parens (arg ^^ space ^^ colon ^^ space ^^ zencode ctx id); equals]
^//^ ocaml_string_typ typ arg
let ocaml_string_of_variant ctx id typq cases =
separate space [string "let"; ocaml_string_of id; string "_"; equals; string "\"VARIANT\""]
let ocaml_typedef ctx (TD_aux (td_aux, (l, _))) =
match td_aux with
| TD_record (id, typq, fields, _) ->
((separate space [string "type"; ocaml_typquant typq; zencode ctx id; equals; lbrace]
^//^ ocaml_fields ctx fields)
^/^ rbrace)
^^ ocaml_def_end
^^ ocaml_string_of_struct ctx id typq fields
^^ ocaml_def_end
| TD_variant (id, _, cases, _) when string_of_id id = "exception" ->
ocaml_exceptions ctx cases
^^ ocaml_def_end
| TD_variant (id, typq, cases, _) ->
(separate space [string "type"; ocaml_typquant typq; zencode ctx id; equals]
^//^ ocaml_cases ctx cases)
^^ ocaml_def_end
^^ ocaml_string_of_variant ctx id typq cases
^^ ocaml_def_end
| TD_enum (id, ids, _) ->
(separate space [string "type"; zencode ctx id; equals]
^//^ (bar ^^ space ^^ ocaml_enum ctx ids))
^^ ocaml_def_end
^^ ocaml_string_of_enum ctx id ids
^^ ocaml_def_end
| TD_abbrev (id, typq, A_aux (A_typ typ, _)) ->
separate space [string "type"; ocaml_typquant typq; zencode ctx id; equals; ocaml_typ ctx typ]
^^ ocaml_def_end
^^ ocaml_string_of_abbrev ctx id typq typ
^^ ocaml_def_end
| TD_abbrev _ ->
empty
| TD_bitfield _ ->
Reporting.unreachable l __POS__ "Bitfield should be re-written"
let get_externs (Defs defs) =
let extern_id (VS_aux (VS_val_spec (typschm, id, exts, _), _)) =
match Ast_util.extern_assoc "ocaml" exts with
| None -> []
| Some ext -> [(id, mk_id ext)]
in
let rec extern_ids = function
| DEF_spec vs :: defs -> extern_id vs :: extern_ids defs
| def :: defs -> extern_ids defs
| [] -> []
in
List.fold_left (fun exts (id, name) -> Bindings.add id name exts) Bindings.empty (List.concat (extern_ids defs))
let nf_group doc =
first_function := true;
group doc
let ocaml_def ctx def = match def with
| DEF_reg_dec ds -> nf_group (ocaml_dec_spec ctx ds) ^^ ocaml_def_end
| DEF_fundef fd -> group (ocaml_fundef ctx fd) ^^ twice hardline
| DEF_internal_mutrec fds ->
separate_map (twice hardline) (fun fd -> group (ocaml_fundef ctx fd)) fds ^^ twice hardline
| DEF_type td -> nf_group (ocaml_typedef ctx td)
| DEF_val lb -> nf_group (string "let" ^^ space ^^ ocaml_letbind ctx lb) ^^ ocaml_def_end
| _ -> empty
let val_spec_typs (Defs defs) =
let typs = ref (Bindings.empty) in
let val_spec_typ (VS_aux (vs_aux, _)) =
match vs_aux with
| VS_val_spec (TypSchm_aux (TypSchm_ts (_, typ), _), id, _, _) -> typs := Bindings.add id typ !typs
in
let rec vs_typs = function
| DEF_spec vs :: defs -> val_spec_typ vs; vs_typs defs
| _ :: defs -> vs_typs defs
| [] -> []
in
ignore (vs_typs defs);
!typs
(* Code to produce test value generators for a given set of types.
This needs type definitions from the initial type checked Sail so that the
full type information is available. For example, vectors are simplified to
lists, so to produce lists of the right length we need to know what the
size of the vector is.
*)
let orig_types_for_ocaml_generator (Defs defs) =
Util.map_filter (function
| DEF_type td -> Some td
| _ -> None) defs
let ocaml_pp_generators ctx defs orig_types required =
let add_def typemap td =
Bindings.add (id_of_type_def td) td typemap
in
let typemap = List.fold_left add_def Bindings.empty orig_types in
let required = IdSet.of_list required in
let rec always_add_req_from_id required id =
match Bindings.find id typemap with
| td -> add_req_from_td (IdSet.add id required) td
| exception Not_found ->
if Bindings.mem id Type_check.Env.builtin_typs
then IdSet.add id required
else
raise (Reporting.err_unreachable (id_loc id) __POS__
("Required generator of unknown type " ^ string_of_id id))
and add_req_from_id required id =
if IdSet.mem id required then required
else always_add_req_from_id required id
and add_req_from_typ required (Typ_aux (typ,_) as full_typ) =
match typ with
| Typ_id id -> add_req_from_id required id
| Typ_var _
-> required
| Typ_internal_unknown
| Typ_fn _
| Typ_bidir _
-> raise (Reporting.err_unreachable (typ_loc full_typ) __POS__
("Required generator for type that should not appear: " ^
string_of_typ full_typ))
| Typ_tup typs ->
List.fold_left add_req_from_typ required typs
| Typ_exist _ ->
raise (Reporting.err_todo (typ_loc full_typ)
("Generators for existential types not yet supported: " ^
string_of_typ full_typ))
| Typ_app (id,args) ->
List.fold_left add_req_from_typarg (add_req_from_id required id) args
and add_req_from_typarg required (A_aux (arg,_)) =
match arg with
| A_typ typ -> add_req_from_typ required typ
| A_nexp _ | A_order _ | A_bool _ -> required
and add_req_from_td required (TD_aux (td,(l,_))) =
match td with
| TD_abbrev (_, _, A_aux (A_typ typ, _)) ->
add_req_from_typ required typ
| TD_abbrev _ -> required
| TD_record (_, _, fields, _) ->
List.fold_left (fun req (typ,_) -> add_req_from_typ req typ) required fields
| TD_variant (_, _, variants, _) ->
List.fold_left (fun req (Tu_aux (Tu_ty_id (typ,_),_)) ->
add_req_from_typ req typ) required variants
| TD_enum _ -> required
| TD_bitfield _ -> raise (Reporting.err_todo l "Generators for bitfields not yet supported")
in
let required = IdSet.fold (fun id req -> always_add_req_from_id req id) required required in
let type_name id = zencode_string (string_of_id id) in
let make_gen_field id =
let allquants =
match Bindings.find id typemap with
| TD_aux (td,_) ->
(match td with
| TD_abbrev (_,tqs,A_aux (A_typ _, _)) -> tqs
| TD_record (_,tqs,_,_) -> tqs
| TD_variant (_,tqs,_,_) -> tqs
| TD_enum _ -> TypQ_aux (TypQ_no_forall,Unknown)
| TD_abbrev (_, _, _) -> assert false
| TD_bitfield _ -> assert false)
| exception Not_found ->
Bindings.find id Type_check.Env.builtin_typs
in
let tquants = quant_kopts allquants in
let gen_tyvars = List.map (fun k -> kopt_kid k |> zencode_kid)
(List.filter is_typ_kopt tquants) in
let print_quant kindedid =
if is_int_kopt kindedid then string "int" else
if is_order_kopt kindedid then string "bool" else
parens (separate space [string "generators"; string "->"; zencode_kid (kopt_kid kindedid)])
in
let name = "gen_" ^ type_name id in
let make_tyarg kindedid =
if is_int_kopt kindedid
then mk_typ_arg (A_nexp (nvar (kopt_kid kindedid)))
else if is_order_kopt kindedid
then mk_typ_arg (A_order (mk_ord (Ord_var (kopt_kid kindedid))))
else mk_typ_arg (A_typ (mk_typ (Typ_var (kopt_kid kindedid))))
in
let targs = List.map make_tyarg tquants in
let gen_tyvars_pp, out_typ = match gen_tyvars with
| [] -> empty, mk_id_typ id
| _ -> separate space gen_tyvars ^^ dot ^^ space, mk_typ (Typ_app (id,targs))
in
let out_typ = Rewrites.simple_typ out_typ in
let types = string "generators" :: List.map print_quant tquants @ [ocaml_typ ctx out_typ] in
string name ^^ colon ^^ space ^^
gen_tyvars_pp ^^ separate (string " -> ") types
in
let fields = separate_map (string ";" ^^ break 1) make_gen_field (IdSet.elements required) in
let gen_record_type_pp =
string "type generators = {" ^^ group (nest 2 (break 0 ^^ fields) ^^ break 0) ^^ string "}"
in
let make_rand_gen id =
if Bindings.mem id Type_check.Env.builtin_typs
then empty
else
let mk_arg kid = string (zencode_string (string_of_kid kid)) in
let rec gen_type (Typ_aux (typ,l) as full_typ) =
let typ_str, args_pp = match typ with
| Typ_id id -> type_name id, [string "g"]
| Typ_app (id,args) -> type_name id, string "g"::List.map typearg args
| _ -> raise (Reporting.err_todo l
("Unsupported type for generators: " ^ string_of_typ full_typ))
in
let args_pp = match args_pp with [] -> empty
| _ -> space ^^ separate space args_pp
in
string ("g.gen_" ^ typ_str) ^^ args_pp
and typearg (A_aux (arg,l)) =
match arg with
| A_nexp (Nexp_aux (nexp,l) as full_nexp) ->
(match nexp with
| Nexp_constant c -> string (Big_int.to_string c) (* TODO: overflow *)
| Nexp_var v -> mk_arg v
| _ -> raise (Reporting.err_todo l
("Unsupported nexp for generators: " ^ string_of_nexp full_nexp)))
| A_order (Ord_aux (ord,_)) ->
(match ord with
| Ord_var v -> mk_arg v
| Ord_inc -> string "true"
| Ord_dec -> string "false")
| A_typ typ -> parens (string "fun g -> " ^^ gen_type typ)
| A_bool nc -> raise (Reporting.err_todo l ("Unsupported constraint for generators: " ^ string_of_n_constraint nc))
in
let make_subgen (Typ_aux (typ,l) as full_typ) =
let typ_str, args_pp =
match typ with
| Typ_id id -> type_name id, []
| Typ_app (id,args) -> type_name id, List.map typearg args
| _ -> raise (Reporting.err_todo l
("Unsupported type for generators: " ^ string_of_typ full_typ))
in
let args_pp = match args_pp with [] -> empty
| _ -> space ^^ separate space args_pp
in string ("g.gen_" ^ typ_str) ^^ space ^^ string "g" ^^ args_pp
in
let make_variant (Tu_aux (Tu_ty_id (typ,id),_)) =
let arg_typs = match typ with
| Typ_aux (Typ_fn (typs,_,_),_) -> typs
| Typ_aux (Typ_tup typs,_) -> typs
| _ -> [typ]
in
zencode_upper ctx id ^^ space ^^
parens (separate_map (string ", ") make_subgen arg_typs)
in
let rand_variant variant =
parens (string "fun g -> " ^^ make_variant variant)
in
let variant_constructor (Tu_aux (Tu_ty_id (_,id),_)) =
dquotes (string (string_of_id id))
in
let build_constructor variant =
separate space [bar; variant_constructor variant; string "->";
make_variant variant]
in
let enum_constructor id =
dquotes (string (string_of_id id))
in
let build_enum_constructor id =
separate space [bar; dquotes (string (string_of_id id)); string "->";
zencode_upper ctx id]
in
let rand_field (typ,id) =
zencode ctx id ^^ space ^^ equals ^^ space ^^ make_subgen typ
in
let make_args tqs =
string "g" ^^
match quant_kopts tqs with
| [] -> empty
| kopts ->
space ^^
separate_map space (fun kdid -> mk_arg (kopt_kid kdid)) kopts
in
let tqs, body, constructors, builders =
let TD_aux (td,(l,_)) = Bindings.find id typemap in
match td with
| TD_abbrev (_,tqs,A_aux (A_typ typ, _)) ->
tqs, gen_type typ, None, None
| TD_variant (_,tqs,variants,_) ->
tqs,
string "let c = rand_choice [" ^^ group (nest 2 (break 0 ^^
separate_map (string ";" ^^ break 1) rand_variant variants) ^^
break 0) ^^
string "] in c g",
Some (separate_map (string ";" ^^ break 1) variant_constructor variants),
Some (separate_map (break 1) build_constructor variants)
| TD_enum (_,variants,_) ->
TypQ_aux (TypQ_no_forall, Parse_ast.Unknown),
string "rand_choice [" ^^ group (nest 2 (break 0 ^^
separate_map (string ";" ^^ break 1) (zencode_upper ctx) variants) ^^
break 0) ^^
string "]",
Some (separate_map (string ";" ^^ break 1) enum_constructor variants),
Some (separate_map (break 1) build_enum_constructor variants)
| TD_record (_,tqs,fields,_) ->
tqs, braces (separate_map (string ";" ^^ break 1) rand_field fields), None, None
| _ ->
raise (Reporting.err_todo l "Generators for bitfields not yet supported")
in
let name = type_name id in
let constructors_pp = match constructors with
| None -> empty
| Some pp ->
nest 2 (separate space
[string "let"; string ("constructors_" ^ name); equals; lbracket] ^^
break 1 ^^ pp ^^ break 1 ^^ rbracket) ^^ hardline
in
let build_pp = match builders with
| None -> empty
| Some pp ->
nest 2 (separate space
[string "let"; string ("build_" ^ name); string "g"; string "c"; equals;
string "match c with"] ^^
break 1 ^^ pp) ^^ hardline
in
nest 2 (separate space [string "let"; string ("rand_" ^ name); make_args tqs; equals] ^^ break 1 ^^
body) ^^ hardline ^^ constructors_pp ^^ build_pp
in
let rand_record_pp =
string "let rand_gens : generators = {" ^^ group (nest 2 (break 0 ^^
separate_map (string ";" ^^ break 1)
(fun id ->
string ("gen_" ^ type_name id) ^^ space ^^ equals ^^ space ^^
string ("rand_" ^ type_name id)) (IdSet.elements required)) ^^
break 0) ^^ string "}" ^^ hardline
in
gen_record_type_pp ^^ hardline ^^ hardline ^^
separate_map hardline make_rand_gen (IdSet.elements required) ^^
hardline ^^ rand_record_pp
let ocaml_defs (Defs defs) generator_info =
let ctx = { register_inits = get_initialize_registers defs;
externs = get_externs (Defs defs);
val_specs = val_spec_typs (Defs defs)
}
in
let empty_reg_init =
if ctx.register_inits = []
then
separate space [string "let"; string "zinitializze_registers"; string "()"; equals; string "()"]
^^ ocaml_def_end
else empty
in
let gen_pp =
match generator_info with
| None -> empty
| Some (types, req) -> ocaml_pp_generators ctx defs types (List.map mk_id req)
in
(string "open Sail_lib;;" ^^ hardline)
^^ (string "module Big_int = Nat_big_num" ^^ ocaml_def_end)
^^ concat (List.map (ocaml_def ctx) defs)
^^ empty_reg_init
^^ gen_pp
let ocaml_main spec sail_dir =
let lines = ref [] in
let chan = open_in (sail_dir ^ "/lib/main.ml") in
begin
try
while true do
let line = input_line chan in
lines := line :: !lines
done;
with
| End_of_file -> close_in chan; lines := List.rev !lines
end;
(("open " ^ String.capitalize_ascii spec ^ ";;\n\n") :: !lines
@ [ " zinitializze_registers ();";
if !opt_trace_ocaml then " Sail_lib.opt_trace := true;" else " ();";
" Printexc.record_backtrace true;";
" try zmain () with exn -> prerr_endline(\"Exiting due to uncaught exception:\\n\" ^ Printexc.to_string exn)\n";])
|> String.concat "\n"
let ocaml_pp_defs f defs generator_types =
ToChannel.pretty 1. 80 f (ocaml_defs defs generator_types)
let system_checked str =
match Unix.system str with
| Unix.WEXITED 0 -> ()
| Unix.WEXITED n ->
prerr_endline (str ^ " terminated with code " ^ string_of_int n);
exit 1
| Unix.WSIGNALED _ ->
prerr_endline (str ^ " was killed by a signal");
exit 1
| Unix.WSTOPPED _ ->
prerr_endline (str ^ " was stopped by a signal");
exit 1
let ocaml_compile spec defs generator_types =
let sail_dir =
try Sys.getenv "SAIL_DIR" with
| Not_found ->
let share_dir = Manifest.dir in
if Sys.file_exists share_dir then
share_dir
else
failwith "Could not find sail share directory, " ^ share_dir ^ ". Make sure sail is installed or try setting environment variable SAIL_DIR."
in
if Sys.file_exists !opt_ocaml_build_dir then () else Unix.mkdir !opt_ocaml_build_dir 0o775;
let cwd = Unix.getcwd () in
Unix.chdir !opt_ocaml_build_dir;
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/src/elf_loader.ml .") in
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/src/sail_lib.ml .") in
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/src/util.ml .") in
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/src/value.ml .") in
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/src/toFromInterp_lib.ml .") in
let tags_file = if !opt_ocaml_coverage then "_tags_coverage" else "_tags" in
let _ = Unix.system ("cp -r " ^ sail_dir ^ "/lib/" ^ tags_file ^ " _tags") in