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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
open! Stdlib
open Code
module W = Wasm_ast
open Code_generation
let effects_cps () =
match Config.effects () with
| `Cps | `Double_translation -> true
| `Jspi -> false
| `Disabled -> assert false
module Generate (Target : Target_sig.S) = struct
open Target
let transl_prim_arg x =
match x with
| Pv x -> load x
| Pc c -> Constant.translate c
type ctx =
{ live : int array
; in_cps : Effects.in_cps
; deadcode_sentinal : Var.t
; blocks : block Addr.Map.t
; closures : Closure_conversion.closure Var.Map.t
; global_context : Code_generation.context
; debug : Parse_bytecode.Debug.t
}
type repr =
| Value
| Float
| Int32
| Nativeint
| Int64
let repr_type r =
match r with
| Value -> Value.value
| Float -> F64
| Int32 -> I32
| Nativeint -> I32
| Int64 -> I64
let specialized_func_type (params, result) =
{ W.params = List.map ~f:repr_type params; result = [ repr_type result ] }
let box_value r e =
match r with
| Value -> e
| Float -> Memory.box_float e
| Int32 -> Memory.box_int32 e
| Nativeint -> Memory.box_nativeint e
| Int64 -> Memory.box_int64 e
let unbox_value r e =
match r with
| Value -> e
| Float -> Memory.unbox_float e
| Int32 -> Memory.unbox_int32 e
| Nativeint -> Memory.unbox_nativeint e
| Int64 -> Memory.unbox_int64 e
let specialized_primitives =
let h = Hashtbl.create 18 in
List.iter
~f:(fun (nm, typ) -> Hashtbl.add h nm typ)
[ "caml_int32_bswap", ([ Int32 ], Int32)
; "caml_nativeint_bswap", ([ Nativeint ], Nativeint)
; "caml_int64_bswap", ([ Int64 ], Int64)
; "caml_int32_compare", ([ Int32; Int32 ], Value)
; "caml_nativeint_compare", ([ Nativeint; Nativeint ], Value)
; "caml_int64_compare", ([ Int64; Int64 ], Value)
; "caml_string_get32", ([ Value; Value ], Int32)
; "caml_string_get64", ([ Value; Value ], Int64)
; "caml_bytes_get32", ([ Value; Value ], Int32)
; "caml_bytes_get64", ([ Value; Value ], Int64)
; "caml_bytes_set32", ([ Value; Value; Int32 ], Value)
; "caml_bytes_set64", ([ Value; Value; Int64 ], Value)
; "caml_lxm_next", ([ Value ], Int64)
; "caml_ba_uint8_get32", ([ Value; Value ], Int32)
; "caml_ba_uint8_get64", ([ Value; Value ], Int64)
; "caml_ba_uint8_set32", ([ Value; Value; Int32 ], Value)
; "caml_ba_uint8_set64", ([ Value; Value; Int64 ], Value)
; "caml_nextafter_float", ([ Float; Float ], Float)
; "caml_classify_float", ([ Float ], Value)
; "caml_ldexp_float", ([ Float; Value ], Float)
; "caml_signbit_float", ([ Float ], Value)
; "caml_erf_float", ([ Float ], Float)
; "caml_erfc_float", ([ Float ], Float)
; "caml_float_compare", ([ Float; Float ], Value)
];
h
let func_type n =
{ W.params = List.init ~len:n ~f:(fun _ -> Value.value); result = [ Value.value ] }
let float_bin_op' op f g =
Memory.box_float (op (Memory.unbox_float f) (Memory.unbox_float g))
let float_bin_op op f g =
let* f = Memory.unbox_float f in
let* g = Memory.unbox_float g in
Memory.box_float (return (W.BinOp (F64 op, f, g)))
let float_un_op' op f = Memory.box_float (op (Memory.unbox_float f))
let float_un_op op f =
let* f = Memory.unbox_float f in
Memory.box_float (return (W.UnOp (F64 op, f)))
let float_comparison op f g =
let* f = Memory.unbox_float f in
let* g = Memory.unbox_float g in
Value.val_int (return (W.BinOp (F64 op, f, g)))
let int32_bin_op op f g =
let* f = Memory.unbox_int32 f in
let* g = Memory.unbox_int32 g in
Memory.box_int32 (return (W.BinOp (I32 op, f, g)))
let int32_shift_op op f g =
let* f = Memory.unbox_int32 f in
let* g = Value.int_val g in
Memory.box_int32 (return (W.BinOp (I32 op, f, g)))
let int64_bin_op op f g =
let* f = Memory.unbox_int64 f in
let* g = Memory.unbox_int64 g in
Memory.box_int64 (return (W.BinOp (I64 op, f, g)))
let int64_shift_op op f g =
let* f = Memory.unbox_int64 f in
let* g = Value.int_val g in
Memory.box_int64 (return (W.BinOp (I64 op, f, I64ExtendI32 (S, g))))
let nativeint_bin_op op f g =
let* f = Memory.unbox_nativeint f in
let* g = Memory.unbox_nativeint g in
Memory.box_nativeint (return (W.BinOp (I32 op, f, g)))
let nativeint_shift_op op f g =
let* f = Memory.unbox_nativeint f in
let* g = Value.int_val g in
Memory.box_nativeint (return (W.BinOp (I32 op, f, g)))
let label_index context pc =
let rec index_rec context pc i =
match context with
| `Block pc' :: _ when pc = pc' -> i
| (`Block _ | `Skip | `Catch) :: rem -> index_rec rem pc (i + 1)
| [] -> assert false
in
index_rec context pc 0
let catch_index context =
let rec index_rec context i =
match context with
| `Catch :: _ -> Some i
| (`Block _ | `Skip | `Return) :: rem -> index_rec rem (i + 1)
| [] -> None
in
index_rec context 0
let bound_error_pc = -1
let zero_divide_pc = -2
let rec translate_expr ctx context x e =
match e with
| Apply { f; args; exact }
when exact || List.length args = if Var.Set.mem x ctx.in_cps then 2 else 1 ->
let rec loop acc l =
match l with
| [] -> (
let arity = List.length args in
let funct = Var.fresh () in
let* closure = tee funct (load f) in
let* ty, funct =
Memory.load_function_pointer
~cps:(Var.Set.mem x ctx.in_cps)
~arity
(load funct)
in
let* b = is_closure f in
if b
then return (W.Call (f, List.rev (closure :: acc)))
else
match funct with
| W.RefFunc g ->
let* cl = if exact then Value.unit else return closure in
return (W.Call (g, List.rev (cl :: acc)))
| _ -> return (W.Call_ref (ty, funct, List.rev (closure :: acc))))
| x :: r ->
let* x = load x in
loop (x :: acc) r
in
loop [] args
| Apply { f; args; _ } ->
let* apply =
need_apply_fun ~cps:(Var.Set.mem x ctx.in_cps) ~arity:(List.length args)
in
let* args = expression_list load args in
let* closure = load f in
return (W.Call (apply, args @ [ closure ]))
| Block (tag, a, _, _) ->
Memory.allocate
~deadcode_sentinal:ctx.deadcode_sentinal
~tag
(List.map ~f:(fun x -> `Var x) (Array.to_list a))
| Field (x, n, Non_float) -> Memory.field (load x) n
| Field (x, n, Float) ->
Memory.float_array_get
(load x)
(Constant.translate (Int (Targetint.of_int_warning_on_overflow n)))
| Closure _ ->
Closure.translate
~context:ctx.global_context
~closures:ctx.closures
~cps:(Var.Set.mem x ctx.in_cps)
x
| Constant c -> Constant.translate c
| Special (Alias_prim _) -> assert false
| Prim (Extern "caml_alloc_dummy_function", [ _; Pc (Int arity) ]) ->
Closure.dummy ~cps:(effects_cps ()) ~arity:(Targetint.to_int_exn arity)
| Prim (Extern "caml_alloc_dummy_infix", _) ->
Closure.dummy ~cps:(effects_cps ()) ~arity:1
| Prim (Extern "caml_get_global", [ Pc (String name) ]) ->
let* x =
let* context = get_context in
match
List.find_map
~f:(fun f ->
match f with
| W.Global { name = name'; exported_name = Some exported_name; _ }
when String.equal exported_name name -> Some name'
| _ -> None)
context.other_fields
with
| Some x -> return x
| _ ->
let* typ = Value.block_type in
register_import ~import_module:"OCaml" ~name (Global { mut = true; typ })
in
return (W.GlobalGet x)
| Prim (Extern "caml_set_global", [ Pc (String name); v ]) ->
let v = transl_prim_arg v in
let x = Var.fresh_n name in
let* () =
let* typ = Value.block_type in
let* dummy = Value.dummy_block in
register_global x ~exported_name:name { mut = true; typ } dummy
in
seq
(let* v = Value.as_block v in
instr (W.GlobalSet (x, v)))
Value.unit
| Prim (p, l) -> (
match p with
| Extern name when Hashtbl.mem internal_primitives name ->
Hashtbl.find internal_primitives name transl_prim_arg l
| _ -> (
let l = List.map ~f:transl_prim_arg l in
match p, l with
| Extern "caml_array_unsafe_get", [ x; y ] -> Memory.gen_array_get x y
| Extern "caml_floatarray_unsafe_get", [ x; y ] -> Memory.float_array_get x y
| Extern "caml_array_unsafe_set", [ x; y; z ] ->
seq (Memory.gen_array_set x y z) Value.unit
| Extern "caml_array_unsafe_set_addr", [ x; y; z ] ->
seq (Memory.array_set x y z) Value.unit
| Extern "caml_floatarray_unsafe_set", [ x; y; z ] ->
seq (Memory.float_array_set x y z) Value.unit
| Extern ("caml_string_unsafe_get" | "caml_bytes_unsafe_get"), [ x; y ] ->
Memory.bytes_get x y
| Extern ("caml_string_unsafe_set" | "caml_bytes_unsafe_set"), [ x; y; z ] ->
seq (Memory.bytes_set x y z) Value.unit
| Extern ("caml_string_get" | "caml_bytes_get"), [ x; y ] ->
seq
(let* cond = Arith.uge (Value.int_val y) (Memory.bytes_length x) in
instr (W.Br_if (label_index context bound_error_pc, cond)))
(Memory.bytes_get x y)
| Extern ("caml_string_set" | "caml_bytes_set"), [ x; y; z ] ->
seq
(let* cond = Arith.uge (Value.int_val y) (Memory.bytes_length x) in
let* () = instr (W.Br_if (label_index context bound_error_pc, cond)) in
Memory.bytes_set x y z)
Value.unit
| Extern ("caml_ml_string_length" | "caml_ml_bytes_length"), [ x ] ->
Value.val_int (Memory.bytes_length x)
| Extern "%int_add", [ x; y ] -> Value.int_add x y
| Extern "%int_sub", [ x; y ] -> Value.int_sub x y
| Extern ("%int_mul" | "%direct_int_mul"), [ x; y ] -> Value.int_mul x y
| Extern "%direct_int_div", [ x; y ] -> Value.int_div x y
| Extern "%int_div", [ x; y ] ->
seq
(let* cond = Arith.eqz (Value.int_val y) in
instr (W.Br_if (label_index context zero_divide_pc, cond)))
(Value.int_div x y)
| Extern "%int_mod", [ x; y ] ->
seq
(let* cond = Arith.eqz (Value.int_val y) in
instr (W.Br_if (label_index context zero_divide_pc, cond)))
(Value.int_mod x y)
| Extern "%direct_int_mod", [ x; y ] -> Value.int_mod x y
| Extern "%int_neg", [ x ] -> Value.int_neg x
| Extern "%int_or", [ x; y ] -> Value.int_or x y
| Extern "%int_and", [ x; y ] -> Value.int_and x y
| Extern "%int_xor", [ x; y ] -> Value.int_xor x y
| Extern "%int_lsl", [ x; y ] -> Value.int_lsl x y
| Extern "%int_lsr", [ x; y ] -> Value.int_lsr x y
| Extern "%int_asr", [ x; y ] -> Value.int_asr x y
| Extern "%direct_obj_tag", [ x ] -> Memory.tag x
| Extern "caml_check_bound", [ x; y ] ->
seq
(let* cond = Arith.uge (Value.int_val y) (Memory.array_length x) in
instr (W.Br_if (label_index context bound_error_pc, cond)))
x
| Extern "caml_check_bound_gen", [ x; y ] ->
seq
(let* cond = Arith.uge (Value.int_val y) (Memory.gen_array_length x) in
instr (W.Br_if (label_index context bound_error_pc, cond)))
x
| Extern "caml_check_bound_float", [ x; y ] ->
seq
(let* cond =
Arith.uge (Value.int_val y) (Memory.float_array_length x)
in
instr (W.Br_if (label_index context bound_error_pc, cond)))
x
| Extern "caml_add_float", [ f; g ] -> float_bin_op Add f g
| Extern "caml_sub_float", [ f; g ] -> float_bin_op Sub f g
| Extern "caml_mul_float", [ f; g ] -> float_bin_op Mul f g
| Extern "caml_div_float", [ f; g ] -> float_bin_op Div f g
| Extern "caml_copysign_float", [ f; g ] -> float_bin_op CopySign f g
| Extern "caml_signbit_float", [ f ] ->
let* f = Memory.unbox_float f in
let sign = W.BinOp (F64 CopySign, Const (F64 1.), f) in
Value.val_int (return (W.BinOp (F64 Lt, sign, Const (F64 0.))))
| Extern "caml_neg_float", [ f ] -> float_un_op Neg f
| Extern "caml_abs_float", [ f ] -> float_un_op Abs f
| Extern "caml_ceil_float", [ f ] -> float_un_op Ceil f
| Extern "caml_floor_float", [ f ] -> float_un_op Floor f
| Extern "caml_trunc_float", [ f ] -> float_un_op Trunc f
| Extern "caml_round_float", [ f ] -> float_un_op' Math.round f
| Extern "caml_sqrt_float", [ f ] -> float_un_op Sqrt f
| Extern "caml_eq_float", [ f; g ] -> float_comparison Eq f g
| Extern "caml_neq_float", [ f; g ] -> float_comparison Ne f g
| Extern "caml_ge_float", [ f; g ] -> float_comparison Ge f g
| Extern "caml_le_float", [ f; g ] -> float_comparison Le f g
| Extern "caml_gt_float", [ f; g ] -> float_comparison Gt f g
| Extern "caml_lt_float", [ f; g ] -> float_comparison Lt f g
| Extern "caml_int_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Value.val_int (return (W.UnOp (I32 (TruncSatF64 S), f)))
| Extern "caml_float_of_int", [ n ] ->
let* n = Value.int_val n in
Memory.box_float (return (W.UnOp (F64 (Convert (`I32, S)), n)))
| Extern "caml_cos_float", [ f ] -> float_un_op' Math.cos f
| Extern "caml_sin_float", [ f ] -> float_un_op' Math.sin f
| Extern "caml_tan_float", [ f ] -> float_un_op' Math.tan f
| Extern "caml_acos_float", [ f ] -> float_un_op' Math.acos f
| Extern "caml_asin_float", [ f ] -> float_un_op' Math.asin f
| Extern "caml_atan_float", [ f ] -> float_un_op' Math.atan f
| Extern "caml_atan2_float", [ f; g ] -> float_bin_op' Math.atan2 f g
| Extern "caml_cosh_float", [ f ] -> float_un_op' Math.cosh f
| Extern "caml_sinh_float", [ f ] -> float_un_op' Math.sinh f
| Extern "caml_tanh_float", [ f ] -> float_un_op' Math.tanh f
| Extern "caml_acosh_float", [ f ] -> float_un_op' Math.acosh f
| Extern "caml_asinh_float", [ f ] -> float_un_op' Math.asinh f
| Extern "caml_atanh_float", [ f ] -> float_un_op' Math.atanh f
| Extern "caml_cbrt_float", [ f ] -> float_un_op' Math.cbrt f
| Extern "caml_exp_float", [ f ] -> float_un_op' Math.exp f
| Extern "caml_exp2_float", [ f ] -> float_un_op' Math.exp2 f
| Extern "caml_log_float", [ f ] -> float_un_op' Math.log f
| Extern "caml_expm1_float", [ f ] -> float_un_op' Math.expm1 f
| Extern "caml_log1p_float", [ f ] -> float_un_op' Math.log1p f
| Extern "caml_log2_float", [ f ] -> float_un_op' Math.log2 f
| Extern "caml_log10_float", [ f ] -> float_un_op' Math.log10 f
| Extern "caml_power_float", [ f; g ] -> float_bin_op' Math.power f g
| Extern "caml_hypot_float", [ f; g ] -> float_bin_op' Math.hypot f g
| Extern "caml_fmod_float", [ f; g ] -> float_bin_op' Math.fmod f g
| Extern "caml_int32_bits_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_int32 (return (W.UnOp (I32 ReinterpretF, F32DemoteF64 f)))
| Extern "caml_int32_float_of_bits", [ i ] ->
let* i = Memory.unbox_int32 i in
Memory.box_float (return (W.F64PromoteF32 (UnOp (F32 ReinterpretI, i))))
| Extern "caml_int32_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_int32 (return (W.UnOp (I32 (TruncSatF64 S), f)))
| Extern "caml_int32_to_float", [ n ] ->
let* n = Memory.unbox_int32 n in
Memory.box_float (return (W.UnOp (F64 (Convert (`I32, S)), n)))
| Extern "caml_int32_neg", [ i ] ->
let* i = Memory.unbox_int32 i in
Memory.box_int32 (return (W.BinOp (I32 Sub, Const (I32 0l), i)))
| Extern "caml_int32_add", [ i; j ] -> int32_bin_op Add i j
| Extern "caml_int32_sub", [ i; j ] -> int32_bin_op Sub i j
| Extern "caml_int32_mul", [ i; j ] -> int32_bin_op Mul i j
| Extern "caml_int32_and", [ i; j ] -> int32_bin_op And i j
| Extern "caml_int32_or", [ i; j ] -> int32_bin_op Or i j
| Extern "caml_int32_xor", [ i; j ] -> int32_bin_op Xor i j
| Extern "caml_int32_div", [ i; j ] ->
let res = Var.fresh () in
let i' = Var.fresh () in
let j' = Var.fresh () in
seq
(let* () = store ~typ:I32 j' (Memory.unbox_int32 j) in
let* () =
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I32 Eqz, j)))
in
let* () = store ~typ:I32 i' (Memory.unbox_int32 i) in
if_
{ params = []; result = [] }
Arith.(
(let* j = load j' in
return (W.BinOp (I32 Eq, j, Const (I32 (-1l)))))
land let* i = load i' in
return (W.BinOp (I32 Eq, i, Const (I32 Int32.min_int))))
(store
~always:true
~typ:I32
res
(return (W.Const (I32 Int32.min_int))))
(store
~always:true
~typ:I32
res
(let* i = load i' in
let* j = load j' in
return (W.BinOp (I32 (Div S), i, j)))))
(Memory.box_int32 (load res))
| Extern "caml_int32_mod", [ i; j ] ->
let j' = Var.fresh () in
seq
(let* () = store ~typ:I32 j' (Memory.unbox_int32 j) in
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I32 Eqz, j))))
(let* i = Memory.unbox_int32 i in
let* j = load j' in
Memory.box_int32 (return (W.BinOp (I32 (Rem S), i, j))))
| Extern "caml_int32_shift_left", [ i; j ] -> int32_shift_op Shl i j
| Extern "caml_int32_shift_right", [ i; j ] -> int32_shift_op (Shr S) i j
| Extern "caml_int32_shift_right_unsigned", [ i; j ] ->
int32_shift_op (Shr U) i j
| Extern "caml_int32_to_int", [ i ] -> Value.val_int (Memory.unbox_int32 i)
| Extern "caml_int32_of_int", [ i ] -> Memory.box_int32 (Value.int_val i)
| Extern "caml_nativeint_of_int32", [ i ] ->
Memory.box_nativeint (Memory.unbox_int32 i)
| Extern "caml_nativeint_to_int32", [ i ] ->
Memory.box_int32 (Memory.unbox_nativeint i)
| Extern "caml_int64_bits_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_int64 (return (W.UnOp (I64 ReinterpretF, f)))
| Extern "caml_int64_float_of_bits", [ i ] ->
let* i = Memory.unbox_int64 i in
Memory.box_float (return (W.UnOp (F64 ReinterpretI, i)))
| Extern "caml_int64_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_int64 (return (W.UnOp (I64 (TruncSatF64 S), f)))
| Extern "caml_int64_to_float", [ n ] ->
let* n = Memory.unbox_int64 n in
Memory.box_float (return (W.UnOp (F64 (Convert (`I64, S)), n)))
| Extern "caml_int64_neg", [ i ] ->
let* i = Memory.unbox_int64 i in
Memory.box_int64 (return (W.BinOp (I64 Sub, Const (I64 0L), i)))
| Extern "caml_int64_add", [ i; j ] -> int64_bin_op Add i j
| Extern "caml_int64_sub", [ i; j ] -> int64_bin_op Sub i j
| Extern "caml_int64_mul", [ i; j ] -> int64_bin_op Mul i j
| Extern "caml_int64_and", [ i; j ] -> int64_bin_op And i j
| Extern "caml_int64_or", [ i; j ] -> int64_bin_op Or i j
| Extern "caml_int64_xor", [ i; j ] -> int64_bin_op Xor i j
| Extern "caml_int64_div", [ i; j ] ->
let res = Var.fresh () in
let i' = Var.fresh () in
let j' = Var.fresh () in
seq
(let* () = store ~typ:I64 j' (Memory.unbox_int64 j) in
let* () =
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I64 Eqz, j)))
in
let* () = store ~typ:I64 i' (Memory.unbox_int64 i) in
if_
{ params = []; result = [] }
Arith.(
(let* j = load j' in
return (W.BinOp (I64 Eq, j, Const (I64 (-1L)))))
land let* i = load i' in
return (W.BinOp (I64 Eq, i, Const (I64 Int64.min_int))))
(store
~always:true
~typ:I64
res
(return (W.Const (I64 Int64.min_int))))
(store
~always:true
~typ:I64
res
(let* i = load i' in
let* j = load j' in
return (W.BinOp (I64 (Div S), i, j)))))
(Memory.box_int64 (load res))
| Extern "caml_int64_mod", [ i; j ] ->
let j' = Var.fresh () in
seq
(let* () = store ~typ:I64 j' (Memory.unbox_int64 j) in
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I64 Eqz, j))))
(let* i = Memory.unbox_int64 i in
let* j = load j' in
Memory.box_int64 (return (W.BinOp (I64 (Rem S), i, j))))
| Extern "caml_int64_shift_left", [ i; j ] -> int64_shift_op Shl i j
| Extern "caml_int64_shift_right", [ i; j ] -> int64_shift_op (Shr S) i j
| Extern "caml_int64_shift_right_unsigned", [ i; j ] ->
int64_shift_op (Shr U) i j
| Extern "caml_int64_to_int", [ i ] ->
let* i = Memory.unbox_int64 i in
Value.val_int (return (W.I32WrapI64 i))
| Extern "caml_int64_of_int", [ i ] ->
let* i = Value.int_val i in
Memory.box_int64
(return
(match i with
| Const (I32 i) -> W.Const (I64 (Int64.of_int32 i))
| _ -> W.I64ExtendI32 (S, i)))
| Extern "caml_int64_to_int32", [ i ] ->
let* i = Memory.unbox_int64 i in
Memory.box_int32 (return (W.I32WrapI64 i))
| Extern "caml_int64_of_int32", [ i ] ->
let* i = Memory.unbox_int32 i in
Memory.box_int64 (return (W.I64ExtendI32 (S, i)))
| Extern "caml_int64_to_nativeint", [ i ] ->
let* i = Memory.unbox_int64 i in
Memory.box_nativeint (return (W.I32WrapI64 i))
| Extern "caml_int64_of_nativeint", [ i ] ->
let* i = Memory.unbox_nativeint i in
Memory.box_int64 (return (W.I64ExtendI32 (S, i)))
| Extern "caml_nativeint_bits_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_nativeint (return (W.UnOp (I32 ReinterpretF, F32DemoteF64 f)))
| Extern "caml_nativeint_float_of_bits", [ i ] ->
let* i = Memory.unbox_int64 i in
Memory.box_float (return (W.F64PromoteF32 (UnOp (I32 ReinterpretF, i))))
| Extern "caml_nativeint_of_float", [ f ] ->
let* f = Memory.unbox_float f in
Memory.box_nativeint (return (W.UnOp (I32 (TruncSatF64 S), f)))
| Extern "caml_nativeint_to_float", [ n ] ->
let* n = Memory.unbox_nativeint n in
Memory.box_float (return (W.UnOp (F64 (Convert (`I32, S)), n)))
| Extern "caml_nativeint_neg", [ i ] ->
let* i = Memory.unbox_nativeint i in
Memory.box_nativeint (return (W.BinOp (I32 Sub, Const (I32 0l), i)))
| Extern "caml_nativeint_add", [ i; j ] -> nativeint_bin_op Add i j
| Extern "caml_nativeint_sub", [ i; j ] -> nativeint_bin_op Sub i j
| Extern "caml_nativeint_mul", [ i; j ] -> nativeint_bin_op Mul i j
| Extern "caml_nativeint_and", [ i; j ] -> nativeint_bin_op And i j
| Extern "caml_nativeint_or", [ i; j ] -> nativeint_bin_op Or i j
| Extern "caml_nativeint_xor", [ i; j ] -> nativeint_bin_op Xor i j
| Extern "caml_nativeint_div", [ i; j ] ->
let res = Var.fresh () in
let i' = Var.fresh () in
let j' = Var.fresh () in
seq
(let* () = store ~typ:I32 j' (Memory.unbox_nativeint j) in
let* () =
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I32 Eqz, j)))
in
let* () = store ~typ:I32 i' (Memory.unbox_nativeint i) in
if_
{ params = []; result = [] }
Arith.(
(let* j = load j' in
return (W.BinOp (I32 Eq, j, Const (I32 (-1l)))))
land let* i = load i' in
return (W.BinOp (I32 Eq, i, Const (I32 Int32.min_int))))
(store
~always:true
~typ:I32
res
(return (W.Const (I32 Int32.min_int))))
(store
~always:true
~typ:I32
res
(let* i = load i' in
let* j = load j' in
return (W.BinOp (I32 (Div S), i, j)))))
(Memory.box_nativeint (load res))
| Extern "caml_nativeint_mod", [ i; j ] ->
let j' = Var.fresh () in
seq
(let* () = store ~typ:I32 j' (Memory.unbox_nativeint j) in
let* j = load j' in
instr
(W.Br_if (label_index context zero_divide_pc, W.UnOp (I32 Eqz, j))))
(let* i = Memory.unbox_nativeint i in
let* j = load j' in
Memory.box_nativeint (return (W.BinOp (I32 (Rem S), i, j))))
| Extern "caml_nativeint_shift_left", [ i; j ] -> nativeint_shift_op Shl i j
| Extern "caml_nativeint_shift_right", [ i; j ] ->
nativeint_shift_op (Shr S) i j
| Extern "caml_nativeint_shift_right_unsigned", [ i; j ] ->
nativeint_shift_op (Shr U) i j
| Extern "caml_nativeint_to_int", [ i ] ->
Value.val_int (Memory.unbox_nativeint i)
| Extern "caml_nativeint_of_int", [ i ] ->
Memory.box_nativeint (Value.int_val i)
| Extern "caml_int_compare", [ i; j ] ->
Value.val_int
Arith.(
(Value.int_val j < Value.int_val i)
- (Value.int_val i < Value.int_val j))
| Extern "%js_array", l ->
let* l =
List.fold_right
~f:(fun x acc ->
let* x = x in
let* acc = acc in
return (`Expr x :: acc))
l
~init:(return [])
in
Memory.allocate ~tag:0 ~deadcode_sentinal:ctx.deadcode_sentinal l
| Extern name, l -> (
let name = Primitive.resolve name in
try
let typ = Hashtbl.find specialized_primitives name in
let* f = register_import ~name (Fun (specialized_func_type typ)) in
let rec loop acc arg_typ l =
match arg_typ, l with
| [], [] -> box_value (snd typ) (return (W.Call (f, List.rev acc)))
| repr :: rem, x :: r ->
let* x = unbox_value repr x in
loop (x :: acc) rem r
| [], _ :: _ | _ :: _, [] -> assert false
in
loop [] (fst typ) l
with Not_found ->
let* f = register_import ~name (Fun (func_type (List.length l))) in
let rec loop acc l =
match l with
| [] -> return (W.Call (f, List.rev acc))
| x :: r ->
let* x = x in
loop (x :: acc) r
in
loop [] l)
| Not, [ x ] -> Value.not x
| Lt, [ x; y ] -> Value.lt x y
| Le, [ x; y ] -> Value.le x y
| Eq, [ x; y ] -> Value.eq x y
| Neq, [ x; y ] -> Value.neq x y
| Ult, [ x; y ] -> Value.ult x y
| Array_get, [ x; y ] -> Memory.array_get x y
| IsInt, [ x ] -> Value.is_int x
| Vectlength, [ x ] -> Value.val_int (Memory.gen_array_length x)
| (Not | Lt | Le | Eq | Neq | Ult | Array_get | IsInt | Vectlength), _ ->
assert false))
and translate_instr ctx context i =
match i with
| Assign (x, y) -> assign x (load y)
| Let (x, e) ->
if ctx.live.(Var.idx x) = 0
then drop (translate_expr ctx context x e)
else store x (translate_expr ctx context x e)
| Set_field (x, n, Non_float, y) -> Memory.set_field (load x) n (load y)
| Set_field (x, n, Float, y) ->
Memory.float_array_set
(load x)
(Constant.translate (Int (Targetint.of_int_warning_on_overflow n)))
(load y)
| Offset_ref (x, n) ->
Memory.set_field
(load x)
0
(Value.val_int
Arith.(Value.int_val (Memory.field (load x) 0) + const (Int32.of_int n)))
| Array_set (x, y, z) -> Memory.array_set (load x) (load y) (load z)
| Event loc -> event loc
and translate_instrs ctx context l =
match l with
| [] -> return ()
| i :: rem ->
let* () = translate_instr ctx context i in
translate_instrs ctx context rem
let parallel_renaming params args =
let rec visit visited prev s m x l =
if not (Var.Set.mem x visited)
then
let visited = Var.Set.add x visited in
let y = Var.Map.find x m in
if Code.Var.compare x y = 0
then visited, None, l
else if Var.Set.mem y prev
then
let t = Code.Var.fresh () in
visited, Some (y, t), (x, t) :: l
else if Var.Set.mem y s
then
let visited, aliases, l = visit visited (Var.Set.add x prev) s m y l in
match aliases with
| Some (a, b) when Code.Var.compare a x = 0 ->
visited, None, (b, a) :: (x, y) :: l
| _ -> visited, aliases, (x, y) :: l
else visited, None, (x, y) :: l
else visited, None, l
in
let visit_all params args =
let m = Subst.build_mapping params args in
let s = List.fold_left params ~init:Var.Set.empty ~f:(fun s x -> Var.Set.add x s) in
let _, l =
Var.Set.fold
(fun x (visited, l) ->
let visited, _, l = visit visited Var.Set.empty s m x l in
visited, l)
s
(Var.Set.empty, [])
in
l
in
let l = visit_all params args in
List.fold_left
l
~f:(fun continuation (y, x) ->
let* () = continuation in
store ~always:true y (load x))
~init:(return ())
let exception_name = "ocaml_exception"
let extend_context fall_through context =
match fall_through with
| (`Block _ | `Catch | `Skip) as b -> b :: context
| `Return -> `Skip :: context
let needed_handlers (p : program) pc =
Code.traverse
{ fold = fold_children_skip_try_body }
(fun pc n ->
let block = Addr.Map.find pc p.blocks in
List.fold_left
~f:(fun n i ->
match i with
| Let
( _
, Prim
( Extern
( "caml_string_get"
| "caml_bytes_get"
| "caml_string_set"
| "caml_bytes_set"
| "caml_check_bound"
| "caml_check_bound_gen"
| "caml_check_bound_float" )
, _ ) ) -> fst n, true
| Let
( _
, Prim
( Extern
( "%int_div"
| "%int_mod"
| "caml_int32_div"
| "caml_int32_mod"
| "caml_int64_div"
| "caml_int64_mod"
| "caml_nativeint_div"
| "caml_nativeint_mod" )
, _ ) ) -> true, snd n
| _ -> n)
~init:n
block.body)
pc
p.blocks
(false, false)
let wrap_with_handler needed pc handler ~result_typ ~fall_through ~context body =
if needed
then
let* () =
block
{ params = []; result = [] }
(body ~result_typ:[] ~fall_through:(`Block pc) ~context:(`Block pc :: context))
in
if List.is_empty result_typ
then handler
else
let* () = handler in
instr (W.Return (Some (RefI31 (Const (I32 0l)))))
else body ~result_typ ~fall_through ~context
let wrap_with_handlers p pc ~result_typ ~fall_through ~context body =
let need_zero_divide_handler, need_bound_error_handler = needed_handlers p pc in
wrap_with_handler
need_bound_error_handler
bound_error_pc
(let* f =
register_import ~name:"caml_bound_error" (Fun { params = []; result = [] })
in
instr (CallInstr (f, [])))
(wrap_with_handler
need_zero_divide_handler
zero_divide_pc
(let* f =
register_import
~name:"caml_raise_zero_divide"
(Fun { params = []; result = [] })
in
instr (CallInstr (f, [])))
body)
~result_typ
~fall_through
~context
let translate_function
p
ctx
name_opt
~toplevel_name
~unit_name
params
((pc, _) as cont)
acc =
let g = Structure.build_graph ctx.blocks pc in
let dom = Structure.dominator_tree g in
let rec translate_tree result_typ fall_through pc context =
let block = Addr.Map.find pc ctx.blocks in
let keep_ouside pc' =
match block.branch with
| Switch _ -> true
| Cond (_, (pc1, _), (pc2, _)) when pc' = pc1 && pc' = pc2 -> true
| _ -> Structure.is_merge_node g pc'
in
let code ~context =
translate_node_within
~result_typ
~fall_through
~pc
~l:
(pc
|> Structure.get_edges dom
|> Addr.Set.elements
|> List.filter ~f:keep_ouside
|> Structure.sort_in_post_order g)
~context
in
if Structure.is_loop_header g pc
then
loop { params = []; result = result_typ } (code ~context:(`Block pc :: context))
else code ~context
and translate_node_within ~result_typ ~fall_through ~pc ~l ~context =
match l with
| pc' :: rem ->
let* () =
let code ~context =
translate_node_within
~result_typ:[]
~fall_through:(`Block pc')
~pc
~l:rem
~context
in
if
(not (List.is_empty rem))
||
let block = Addr.Map.find pc ctx.blocks in
match block.branch with
| Cond _ | Pushtrap _ -> false
| _ -> true
then
block { params = []; result = [] } (code ~context:(`Block pc' :: context))
else code ~context
in
translate_tree result_typ fall_through pc' context
| [] -> (
let block = Addr.Map.find pc ctx.blocks in
let* () = translate_instrs ctx context block.body in
let branch = block.branch in
match branch with
| Branch cont -> translate_branch result_typ fall_through pc cont context
| Return x -> (
let* e = load x in
match fall_through with
| `Return -> instr (Push e)
| `Block _ | `Catch | `Skip -> instr (Return (Some e)))
| Cond (x, cont1, cont2) ->
let context' = extend_context fall_through context in
if_
{ params = []; result = result_typ }
(Value.check_is_not_zero (load x))
(translate_branch result_typ fall_through pc cont1 context')
(translate_branch result_typ fall_through pc cont2 context')
| Stop -> (
let* e = Value.unit in
match fall_through with
| `Return -> instr (Push e)
| `Block _ | `Catch | `Skip -> instr (Return (Some e)))
| Switch (x, a) ->
let len = Array.length a in
let l = Array.to_list (Array.sub a ~pos:0 ~len:(len - 1)) in
let dest (pc, args) =
assert (List.is_empty args);
label_index context pc
in
let* e = Value.int_val (load x) in
instr (Br_table (e, List.map ~f:dest l, dest a.(len - 1)))
| Raise (x, _) -> (
let* e = load x in
let* tag = register_import ~name:exception_name (Tag Value.value) in
match fall_through with
| `Catch -> instr (Push e)
| `Block _ | `Return | `Skip -> (
match catch_index context with
| Some i -> instr (Br (i, Some e))
| None -> instr (Throw (tag, e))))
| Pushtrap (cont, x, cont') ->
handle_exceptions
~result_typ
~fall_through
~context:(extend_context fall_through context)
(wrap_with_handlers
p
(fst cont)
(fun ~result_typ ~fall_through ~context ->
translate_branch result_typ fall_through pc cont context))
x
(fun ~result_typ ~fall_through ~context ->
translate_branch result_typ fall_through pc cont' context)
| Poptrap cont -> translate_branch result_typ fall_through pc cont context)
and translate_branch result_typ fall_through src (dst, args) context =
let* () =
if List.is_empty args
then return ()
else
let block = Addr.Map.find dst ctx.blocks in
parallel_renaming block.params args
in
match fall_through with
| `Block dst' when dst = dst' -> return ()
| _ ->
if
(src >= 0 && Structure.is_backward g src dst) || Structure.is_merge_node g dst
then instr (Br (label_index context dst, None))
else translate_tree result_typ fall_through dst context
in
let bind_parameters =
List.fold_left
~f:(fun l x ->
let* _ = l in
let* _ = add_var x in
return ())
~init:(return ())
params
in
let build_initial_env =
let* () = bind_parameters in
match name_opt with
| Some f ->
Closure.bind_environment
~context:ctx.global_context
~closures:ctx.closures
~cps:(Var.Set.mem f ctx.in_cps)
f
| None -> return ()
in
let param_names =
match name_opt with
| None -> []
| Some f -> params @ [ f ]
in
let param_count = List.length param_names in
(match name_opt with
| None -> ctx.global_context.globalized_variables <- Globalize.f p g ctx.closures
| Some _ -> ());
let locals, body =
function_body
~context:ctx.global_context
~param_names
~body:
(let* () =
let block = Addr.Map.find pc ctx.blocks in
match block.body with
| Event start_loc :: _ -> event start_loc
| _ -> no_event
in
let* () = build_initial_env in
let* () =
wrap_with_handlers
p
pc
~result_typ:[ Value.value ]
~fall_through:`Return
~context:[]
(fun ~result_typ ~fall_through ~context ->
translate_branch result_typ fall_through (-1) cont context)
in
let end_loc = Parse_bytecode.Debug.find_loc ctx.debug ~position:After pc in
match end_loc with
| Some loc -> event loc
| None -> return ())
in
let body = post_process_function_body ~param_names ~locals body in
W.Function
{ name =
(match name_opt with
| None -> toplevel_name
| Some x -> x)
; exported_name =
(match name_opt with
| None -> Option.map ~f:(fun name -> name ^ ".init") unit_name
| Some _ -> None)
; param_names
; typ = func_type param_count
; locals
; body
}
:: acc
let init_function ~context ~to_link =
let name = Code.Var.fresh_n "initialize" in
let typ = { W.params = []; result = [ Value.value ] } in
let locals, body =
function_body
~context
~param_names:[]
~body:
(List.fold_right
~f:(fun name cont ->
let* f =
register_import ~import_module:"OCaml" ~name:(name ^ ".init") (Fun typ)
in
let* () = instr (Drop (Call (f, []))) in
cont)
~init:(instr (Push (RefI31 (Const (I32 0l)))))
to_link)
in
context.other_fields <-
W.Function { name; exported_name = None; typ; param_names = []; locals; body }
:: context.other_fields;
name
let entry_point context toplevel_fun entry_name =
let typ, param_names, body = entry_point ~toplevel_fun in
let locals, body = function_body ~context ~param_names ~body in
W.Function
{ name = Var.fresh_n "entry_point"
; exported_name = Some entry_name
; typ
; param_names
; locals
; body
}
module Curry = Curry.Make (Target)
let add_start_function ~context toplevel_name =
context.other_fields <-
entry_point context toplevel_name "_initialize" :: context.other_fields
let add_init_function ~context ~to_link =
add_start_function ~context (init_function ~context ~to_link)
let f
~context:global_context
~unit_name
(p : Code.program)
~live_vars
~in_cps
~deadcode_sentinal
~debug =
global_context.unit_name <- unit_name;
let p, closures = Closure_conversion.f p in
let ctx =
{ live = live_vars
; in_cps
; deadcode_sentinal
; blocks = p.blocks
; closures
; global_context
; debug
}
in
let toplevel_name = Var.fresh_n "toplevel" in
let functions =
Code.fold_closures_outermost_first
p
(fun name_opt params cont ->
translate_function p ctx name_opt ~toplevel_name ~unit_name params cont)
[]
in
let functions =
List.map
~f:(fun f ->
match f with
| W.Function ({ name; _ } as f) when Code.Var.equal name toplevel_name ->
W.Function { f with body = global_context.init_code @ f.body }
| _ -> f)
functions
in
global_context.init_code <- [];
global_context.other_fields <- List.rev_append functions global_context.other_fields;
let js_code =
List.rev global_context.strings, StringMap.bindings global_context.fragments
in
global_context.string_count <- 0;
global_context.strings <- [];
global_context.string_index <- StringMap.empty;
global_context.fragments <- StringMap.empty;
toplevel_name, js_code
let output ~context =
Curry.f ~context;
let imports =
List.concat
(List.map
~f:(fun (import_module, m) ->
List.map
~f:(fun (import_name, (name, desc)) ->
W.Import { import_module; import_name; name; desc })
(StringMap.bindings m))
(StringMap.bindings context.imports))
in
let constant_data =
List.map
~f:(fun (name, contents) -> W.Data { name; contents })
(Var.Map.bindings context.data_segments)
in
List.rev_append context.other_fields (imports @ constant_data)
end
let init () =
let l =
[ "caml_ensure_stack_capacity", "%identity"
; "caml_process_pending_actions_with_root", "%identity"
; "caml_callback", "caml_trampoline"
; "caml_make_array", "caml_array_of_uniform_array"
]
in
Primitive.register "caml_array_of_uniform_array" `Mutable None None;
let l =
if effects_cps () then ("caml_alloc_stack", "caml_cps_alloc_stack") :: l else l
in
List.iter ~f:(fun (nm, nm') -> Primitive.alias nm nm') l
let fix_switch_branches p =
let p' = ref p in
let updates = ref Addr.Map.empty in
let fix_branches l =
Array.iteri
~f:(fun i ((pc, args) as cont) ->
if not (List.is_empty args)
then
l.(i) <-
( (let l = try Addr.Map.find pc !updates with Not_found -> [] in
try List.assoc args l
with Not_found ->
let pc' = !p'.free_pc in
p' :=
{ !p' with
blocks =
Addr.Map.add
pc'
{ params = []; body = []; branch = Branch cont }
!p'.blocks
; free_pc = pc' + 1
};
updates := Addr.Map.add pc ((args, pc') :: l) !updates;
pc')
, [] ))
l
in
Addr.Map.iter
(fun _ block ->
match block.branch with
| Switch (_, l) -> fix_branches l
| _ -> ())
p.blocks;
!p'
let start () = make_context ~value_type:Gc_target.Value.value
let f ~context ~unit_name p ~live_vars ~in_cps ~deadcode_sentinal ~debug =
let p = if effects_cps () then fix_switch_branches p else p in
let module G = Generate (Gc_target) in
G.f ~context ~unit_name ~live_vars ~in_cps ~deadcode_sentinal ~debug p
let add_start_function =
let module G = Generate (Gc_target) in
G.add_start_function
let add_init_function =
let module G = Generate (Gc_target) in
G.add_init_function
let output ch ~context =
let module G = Generate (Gc_target) in
let fields = G.output ~context in
Wat_output.f ch fields
let wasm_output ch ~context =
let module G = Generate (Gc_target) in
let fields = G.output ~context in
Wasm_output.f ch fields