Source file ast.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
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
type ('desc, 'info) annotated = ('desc, 'info) Wax_utils.Ast.annotated = {
desc : 'desc;
info : 'info;
}
type location = Wax_utils.Ast.location = {
loc_start : Lexing.position;
loc_end : Lexing.position;
}
let no_loc = Wax_utils.Ast.no_loc
let dummy_loc = Wax_utils.Ast.dummy_loc
module Uint32 = Wax_utils.Uint32
module Uint64 = Wax_utils.Uint64
type packedtype = I8 | I16
type 'typ muttype = { mut : bool; typ : 'typ }
type limits = {
mi : Uint64.t;
ma : Uint64.t option;
address_type : [ `I32 | `I64 ];
page_size_log2 : int option;
shared : bool;
}
module type TYPES = sig
type idx
type 'a annotated_array
type 'a opt_annotated_array
type heaptype =
| Func
| NoFunc
| Exn
| NoExn
| Cont
| NoCont
| Extern
| NoExtern
| Any
| Eq
| I31
| Struct
| Array
| None_
| Type of idx
| Exact of idx
type reftype = { nullable : bool; typ : heaptype }
type valtype = I32 | I64 | F32 | F64 | V128 | Ref of reftype
type functype = {
params : valtype opt_annotated_array;
results : valtype array;
}
type nonrec packedtype = packedtype = I8 | I16
type storagetype = Value of valtype | Packed of packedtype
type nonrec 'typ muttype = 'typ muttype = { mut : bool; typ : 'typ }
type fieldtype = storagetype muttype
type comptype =
| Func of functype
| Struct of fieldtype annotated_array
| Array of fieldtype
| Cont of idx
type subtype = {
typ : comptype;
supertype : idx option;
final : bool;
descriptor : idx option;
describes : idx option;
}
type rectype = subtype annotated_array
type nonrec limits = limits = {
mi : Uint64.t;
ma : Uint64.t option;
address_type : [ `I32 | `I64 ];
page_size_log2 : int option;
shared : bool;
}
type globaltype = valtype muttype
val heaptype_keyword : heaptype -> string option
end
module Make_types (X : sig
type idx
type 'a annotated_array
type 'a opt_annotated_array
end) :
TYPES
with type idx = X.idx
and type 'a annotated_array = 'a X.annotated_array
and type 'a opt_annotated_array = 'a X.opt_annotated_array = struct
type idx = X.idx
type nonrec 'a annotated_array = 'a X.annotated_array
type nonrec 'a opt_annotated_array = 'a X.opt_annotated_array
type heaptype =
| Func
| NoFunc
| Exn
| NoExn
| Cont
| NoCont
| Extern
| NoExtern
| Any
| Eq
| I31
| Struct
| Array
| None_
| Type of X.idx
| Exact of X.idx
let heaptype_keyword (ty : heaptype) =
match ty with
| Func -> Some "func"
| NoFunc -> Some "nofunc"
| Exn -> Some "exn"
| NoExn -> Some "noexn"
| Cont -> Some "cont"
| NoCont -> Some "nocont"
| Extern -> Some "extern"
| NoExtern -> Some "noextern"
| Any -> Some "any"
| Eq -> Some "eq"
| I31 -> Some "i31"
| Struct -> Some "struct"
| Array -> Some "array"
| None_ -> Some "none"
| Type _ -> None
| Exact _ -> None
type reftype = { nullable : bool; typ : heaptype }
type valtype = I32 | I64 | F32 | F64 | V128 | Ref of reftype
type functype = {
params : valtype X.opt_annotated_array;
results : valtype array;
}
type nonrec packedtype = packedtype = I8 | I16
type storagetype = Value of valtype | Packed of packedtype
type nonrec 'typ muttype = 'typ muttype = { mut : bool; typ : 'typ }
type fieldtype = storagetype muttype
type comptype =
| Func of functype
| Struct of fieldtype X.annotated_array
| Array of fieldtype
| Cont of X.idx
type subtype = {
typ : comptype;
supertype : X.idx option;
final : bool;
descriptor : X.idx option;
describes : X.idx option;
}
type rectype = subtype X.annotated_array
type nonrec limits = limits = {
mi : Uint64.t;
ma : Uint64.t option;
address_type : [ `I32 | `I64 ];
page_size_log2 : int option;
shared : bool;
}
type globaltype = valtype muttype
end
module Map_types_spine
(Src : TYPES)
(Dst : TYPES)
(M : sig
type ctx
val idx : ctx -> Src.idx -> Dst.idx
end) =
struct
let heaptype ctx (h : Src.heaptype) : Dst.heaptype =
match h with
| Func -> Func
| NoFunc -> NoFunc
| Exn -> Exn
| NoExn -> NoExn
| Cont -> Cont
| NoCont -> NoCont
| Extern -> Extern
| NoExtern -> NoExtern
| Any -> Any
| Eq -> Eq
| I31 -> I31
| Struct -> Struct
| Array -> Array
| None_ -> None_
| Type i -> Type (M.idx ctx i)
| Exact i -> Exact (M.idx ctx i)
let reftype ctx (r : Src.reftype) : Dst.reftype =
{ nullable = r.nullable; typ = heaptype ctx r.typ }
let valtype ctx (v : Src.valtype) : Dst.valtype =
match v with
| I32 -> I32
| I64 -> I64
| F32 -> F32
| F64 -> F64
| V128 -> V128
| Ref r -> Ref (reftype ctx r)
let storagetype ctx (s : Src.storagetype) : Dst.storagetype =
match s with Value v -> Value (valtype ctx v) | Packed p -> Packed p
let fieldtype ctx (f : Src.fieldtype) : Dst.fieldtype =
{ mut = f.mut; typ = storagetype ctx f.typ }
end
module Map_types
(Src : TYPES)
(Dst : TYPES)
(M : sig
type ctx
val idx : ctx -> Src.idx -> Dst.idx
val params :
ctx ->
(Src.valtype -> Dst.valtype) ->
Src.valtype Src.opt_annotated_array ->
Dst.valtype Dst.opt_annotated_array
val fields :
ctx ->
(Src.fieldtype -> Dst.fieldtype) ->
Src.fieldtype Src.annotated_array ->
Dst.fieldtype Dst.annotated_array
val members :
ctx ->
(Src.subtype -> Dst.subtype) ->
Src.subtype Src.annotated_array ->
Dst.subtype Dst.annotated_array
end) =
struct
include
Map_types_spine (Src) (Dst)
(struct
type ctx = M.ctx
let idx = M.idx
end)
let functype ctx (t : Src.functype) : Dst.functype =
{
params = M.params ctx (valtype ctx) t.params;
results = Array.map (valtype ctx) t.results;
}
let comptype ctx (c : Src.comptype) : Dst.comptype =
match c with
| Func t -> Func (functype ctx t)
| Struct a -> Struct (M.fields ctx (fieldtype ctx) a)
| Array f -> Array (fieldtype ctx f)
| Cont i -> Cont (M.idx ctx i)
let subtype ctx (s : Src.subtype) : Dst.subtype =
{
typ = comptype ctx s.typ;
supertype = Option.map (M.idx ctx) s.supertype;
final = s.final;
descriptor = Option.map (M.idx ctx) s.descriptor;
describes = Option.map (M.idx ctx) s.describes;
}
let rectype ctx (r : Src.rectype) : Dst.rectype =
M.members ctx (subtype ctx) r
end
type signage = Signed | Unsigned
type int_un_op =
| Clz
| Ctz
| Popcnt
| Eqz
| Trunc of [ `F32 | `F64 ] * signage
| TruncSat of [ `F32 | `F64 ] * signage
| Reinterpret
| ExtendS of [ `_8 | `_16 | `_32 ]
type int_bin_op =
| Add
| Sub
| Mul
| Div of signage
| Rem of signage
| And
| Or
| Xor
| Shl
| Shr of signage
| Rotl
| Rotr
| Eq
| Ne
| Lt of signage
| Gt of signage
| Le of signage
| Ge of signage
type float_un_op =
| Neg
| Abs
| Ceil
| Floor
| Trunc
| Nearest
| Sqrt
| Convert of [ `I32 | `I64 ] * signage
| Reinterpret
type float_bin_op =
| Add
| Sub
| Mul
| Div
| Min
| Max
| CopySign
| Eq
| Ne
| Lt
| Gt
| Le
| Ge
type num_type = NumI32 | NumI64 | NumF32 | NumF64
type vec_shape = I8x16 | I16x8 | I32x4 | I64x2 | F32x4 | F64x2
type vec_un_op =
| VecNeg of vec_shape
| VecAbs of vec_shape
| VecSqrt of [ `F32 | `F64 ]
| VecNot
| VecTruncSat of [ `F32 | `F64 ] * signage
| VecConvert of [ `F32 | `F64 ] * signage
| VecExtend of [ `Low | `High ] * [ `_8 | `_16 | `_32 ] * signage
| VecPromote
| VecDemote
| VecCeil of [ `F32 | `F64 ]
| VecFloor of [ `F32 | `F64 ]
| VecTrunc of [ `F32 | `F64 ]
| VecNearest of [ `F32 | `F64 ]
| VecPopcnt
| VecExtAddPairwise of signage * [ `I8 | `I16 ]
| VecRelaxedTrunc of signage
| VecRelaxedTruncZero of signage
type vec_bin_op =
| VecAdd of vec_shape
| VecSub of vec_shape
| VecMul of vec_shape
| VecDiv of [ `F32 | `F64 ]
| VecMin of signage option * vec_shape
| VecMax of signage option * vec_shape
| VecPMin of [ `F32 | `F64 ]
| VecPMax of [ `F32 | `F64 ]
| VecAvgr of [ `I8 | `I16 ]
| VecQ15MulrSat
| VecAddSat of signage * [ `I8 | `I16 ]
| VecSubSat of signage * [ `I8 | `I16 ]
| VecDot
| VecEq of vec_shape
| VecNe of vec_shape
| VecLt of signage option * vec_shape
| VecGt of signage option * vec_shape
| VecLe of signage option * vec_shape
| VecGe of signage option * vec_shape
| VecAnd
| VecOr
| VecXor
| VecAndNot
| VecNarrow of signage * [ `I8 | `I16 ]
| VecSwizzle
| VecExtMulLow of signage * [ `_8 | `_16 | `_32 ]
| VecExtMulHigh of signage * [ `_8 | `_16 | `_32 ]
| VecRelaxedSwizzle
| VecRelaxedMin of vec_shape
| VecRelaxedMax of vec_shape
| VecRelaxedQ15Mulr
| VecRelaxedDot
type vec_test_op = AnyTrue | AllTrue of vec_shape
type vec_shift_op = Shl of vec_shape | Shr of signage * vec_shape
type vec_bitmask_op = Bitmask of vec_shape
type vec_tern_op =
| VecRelaxedMAdd of [ `F32 | `F64 ]
| VecRelaxedNMAdd of [ `F32 | `F64 ]
| VecRelaxedLaneSelect of vec_shape
| VecRelaxedDotAdd
type vec_load_op =
| Load128
| Load8x8S
| Load8x8U
| Load16x4S
| Load16x4U
| Load32x2S
| Load32x2U
| Load32Zero
| Load64Zero
type atomic_rmwop =
| AtomicAdd
| AtomicSub
| AtomicAnd
| AtomicOr
| AtomicXor
| AtomicXchg
| AtomicCmpxchg
type atomicop =
| AtomicNotify
| AtomicWait of [ `I32 | `I64 ]
| AtomicLoad of [ `I32 | `I64 ] * [ `I8 | `I16 | `I32 ] option
| AtomicStore of [ `I32 | `I64 ] * [ `I8 | `I16 | `I32 ] option
| AtomicRmw of atomic_rmwop * [ `I32 | `I64 ] * [ `I8 | `I16 | `I32 ] option
type ('i32, 'i64, 'f32, 'f64) op =
| I32 of 'i32
| I64 of 'i64
| F32 of 'f32
| F64 of 'f64
type memarg = {
offset : Uint64.t;
align : Uint64.t ;
}
type cmp_op = Eq | Ne | Lt | Gt | Le | Ge
type cond =
| Cond_var of (string, location) annotated
| Cond_string of (string, location) annotated
| Cond_version of int * int * int
| Cond_and of cond list
| Cond_or of cond list
| Cond_not of cond
| Cond_cmp of cmp_op * cond * cond
module Make_instructions (X : sig
type idx
type typeuse
type label
type heaptype
type reftype
type valtype
type int32_t
type int64_t
type f32_t
type float_t
type v128_t
end) =
struct
type nonrec ('i32, 'i64, 'f32, 'f64) op = ('i32, 'i64, 'f32, 'f64) op =
| I32 of 'i32
| I64 of 'i64
| F32 of 'f32
| F64 of 'f64
type nonrec signage = signage = Signed | Unsigned
type nonrec int_un_op = int_un_op =
| Clz
| Ctz
| Popcnt
| Eqz
| Trunc of [ `F32 | `F64 ] * signage
| TruncSat of [ `F32 | `F64 ] * signage
| Reinterpret
| ExtendS of [ `_8 | `_16 | `_32 ]
type nonrec int_bin_op = int_bin_op =
| Add
| Sub
| Mul
| Div of signage
| Rem of signage
| And
| Or
| Xor
| Shl
| Shr of signage
| Rotl
| Rotr
| Eq
| Ne
| Lt of signage
| Gt of signage
| Le of signage
| Ge of signage
type nonrec float_un_op = float_un_op =
| Neg
| Abs
| Ceil
| Floor
| Trunc
| Nearest
| Sqrt
| Convert of [ `I32 | `I64 ] * signage
| Reinterpret
type nonrec float_bin_op = float_bin_op =
| Add
| Sub
| Mul
| Div
| Min
| Max
| CopySign
| Eq
| Ne
| Lt
| Gt
| Le
| Ge
type nonrec num_type = num_type = NumI32 | NumI64 | NumF32 | NumF64
type nonrec vec_shape = vec_shape =
| I8x16
| I16x8
| I32x4
| I64x2
| F32x4
| F64x2
type nonrec vec_un_op = vec_un_op =
| VecNeg of vec_shape
| VecAbs of vec_shape
| VecSqrt of [ `F32 | `F64 ]
| VecNot
| VecTruncSat of [ `F32 | `F64 ] * signage
| VecConvert of [ `F32 | `F64 ] * signage
| VecExtend of [ `Low | `High ] * [ `_8 | `_16 | `_32 ] * signage
| VecPromote
| VecDemote
| VecCeil of [ `F32 | `F64 ]
| VecFloor of [ `F32 | `F64 ]
| VecTrunc of [ `F32 | `F64 ]
| VecNearest of [ `F32 | `F64 ]
| VecPopcnt
| VecExtAddPairwise of signage * [ `I8 | `I16 ]
| VecRelaxedTrunc of signage
| VecRelaxedTruncZero of signage
type nonrec vec_bin_op = vec_bin_op =
| VecAdd of vec_shape
| VecSub of vec_shape
| VecMul of vec_shape
| VecDiv of [ `F32 | `F64 ]
| VecMin of signage option * vec_shape
| VecMax of signage option * vec_shape
| VecPMin of [ `F32 | `F64 ]
| VecPMax of [ `F32 | `F64 ]
| VecAvgr of [ `I8 | `I16 ]
| VecQ15MulrSat
| VecAddSat of signage * [ `I8 | `I16 ]
| VecSubSat of signage * [ `I8 | `I16 ]
| VecDot
| VecEq of vec_shape
| VecNe of vec_shape
| VecLt of signage option * vec_shape
| VecGt of signage option * vec_shape
| VecLe of signage option * vec_shape
| VecGe of signage option * vec_shape
| VecAnd
| VecOr
| VecXor
| VecAndNot
| VecNarrow of signage * [ `I8 | `I16 ]
| VecSwizzle
| VecExtMulLow of signage * [ `_8 | `_16 | `_32 ]
| VecExtMulHigh of signage * [ `_8 | `_16 | `_32 ]
| VecRelaxedSwizzle
| VecRelaxedMin of vec_shape
| VecRelaxedMax of vec_shape
| VecRelaxedQ15Mulr
| VecRelaxedDot
type nonrec vec_test_op = vec_test_op = AnyTrue | AllTrue of vec_shape
type nonrec vec_shift_op = vec_shift_op =
| Shl of vec_shape
| Shr of signage * vec_shape
type nonrec vec_bitmask_op = vec_bitmask_op = Bitmask of vec_shape
type nonrec vec_tern_op = vec_tern_op =
| VecRelaxedMAdd of [ `F32 | `F64 ]
| VecRelaxedNMAdd of [ `F32 | `F64 ]
| VecRelaxedLaneSelect of vec_shape
| VecRelaxedDotAdd
type nonrec vec_load_op = vec_load_op =
| Load128
| Load8x8S
| Load8x8U
| Load16x4S
| Load16x4U
| Load32x2S
| Load32x2U
| Load32Zero
| Load64Zero
type blocktype = Typeuse of X.typeuse | Valtype of X.valtype
type nonrec memarg = memarg = {
offset : Uint64.t;
align : Uint64.t ;
}
type catch =
| Catch of X.idx * X.idx
| CatchRef of X.idx * X.idx
| CatchAll of X.idx
| CatchAllRef of X.idx
type on_clause = OnLabel of X.idx * X.idx | OnSwitch of X.idx
type 'info instr_desc =
| Block of {
label : X.label;
typ : blocktype option;
block : ('info instr list, location) annotated;
}
| Loop of {
label : X.label;
typ : blocktype option;
block : ('info instr list, location) annotated;
}
| If of {
label : X.label;
typ : blocktype option;
if_block : ('info instr list, location) annotated;
else_block : ('info instr list, location) annotated;
}
| TryTable of {
label : X.label;
typ : blocktype option;
catches : catch list;
block : ('info instr list, location) annotated;
}
| Try of {
label : X.label;
typ : blocktype option;
block : ('info instr list, location) annotated;
catches : (X.idx * ('info instr list, location) annotated) list;
catch_all : ('info instr list, location) annotated option;
}
| Unreachable
| Nop
| Throw of X.idx
| ThrowRef
| ContNew of X.idx
| ContBind of X.idx * X.idx
| Suspend of X.idx
| Resume of X.idx * on_clause list
| ResumeThrow of X.idx * X.idx * on_clause list
| ResumeThrowRef of X.idx * on_clause list
| Switch of X.idx * X.idx
| Br of X.idx
| Br_if of X.idx
| Br_table of X.idx list * X.idx
| Br_on_null of X.idx
| Br_on_non_null of X.idx
| Br_on_cast of X.idx * X.reftype * X.reftype
| Br_on_cast_fail of X.idx * X.reftype * X.reftype
| Br_on_cast_desc_eq of X.idx * X.reftype * X.reftype
| Br_on_cast_desc_eq_fail of X.idx * X.reftype * X.reftype
| Hinted of bool * 'info instr
| Return
| Call of X.idx
| CallRef of X.idx
| CallIndirect of X.idx * X.typeuse
| ReturnCall of X.idx
| ReturnCallRef of X.idx
| ReturnCallIndirect of X.idx * X.typeuse
| Drop
| Select of X.valtype list option
| LocalGet of X.idx
| LocalSet of X.idx
| LocalTee of X.idx
| GlobalGet of X.idx
| GlobalSet of X.idx
| Load of X.idx * memarg * num_type
| LoadS of
X.idx * memarg * [ `I32 | `I64 ] * [ `I8 | `I16 | `I32 ] * signage
| Store of X.idx * memarg * num_type
| StoreS of X.idx * memarg * [ `I32 | `I64 ] * [ `I8 | `I16 | `I32 ]
| Atomic of X.idx * atomicop * memarg
| AtomicFence
| MemorySize of X.idx
| MemoryGrow of X.idx
| MemoryFill of X.idx
| MemoryCopy of X.idx * X.idx
| MemoryInit of X.idx * X.idx
| DataDrop of X.idx
| TableGet of X.idx
| TableSet of X.idx
| TableSize of X.idx
| TableGrow of X.idx
| TableFill of X.idx
| TableCopy of X.idx * X.idx
| TableInit of X.idx * X.idx
| ElemDrop of X.idx
| RefNull of X.heaptype
| RefFunc of X.idx
| RefIsNull
| RefAsNonNull
| RefEq
| RefTest of X.reftype
| RefCast of X.reftype
| RefCastDescEq of X.reftype
| RefGetDesc of X.idx
| StructNew of X.idx
| StructNewDefault of X.idx
| StructNewDesc of X.idx
| StructNewDefaultDesc of X.idx
| StructGet of signage option * X.idx * X.idx
| StructSet of X.idx * X.idx
| ArrayNew of X.idx
| ArrayNewDefault of X.idx
| ArrayNewFixed of X.idx * Uint32.t
| ArrayNewData of X.idx * X.idx
| ArrayNewElem of X.idx * X.idx
| ArrayGet of signage option * X.idx
| ArraySet of X.idx
| ArrayLen
| ArrayFill of X.idx
| ArrayCopy of X.idx * X.idx
| ArrayInitData of X.idx * X.idx
| ArrayInitElem of X.idx * X.idx
| RefI31
| I31Get of signage
| Const of (X.int32_t, X.int64_t, X.f32_t, X.float_t) op
| BinOp of (int_bin_op, int_bin_op, float_bin_op, float_bin_op) op
| UnOp of (int_un_op, int_un_op, float_un_op, float_un_op) op
| Add128
| Sub128
| MulWide of signage
| VecConst of X.v128_t
| VecUnOp of vec_un_op
| VecBinOp of vec_bin_op
| VecTest of vec_test_op
| VecShift of vec_shift_op
| VecBitmask of vec_bitmask_op
| VecTernOp of vec_tern_op
| VecBitselect
| VecLoad of X.idx * vec_load_op * memarg
| VecStore of X.idx * memarg
| VecLoadLane of X.idx * [ `I8 | `I16 | `I32 | `I64 ] * memarg * int
| VecStoreLane of X.idx * [ `I8 | `I16 | `I32 | `I64 ] * memarg * int
| VecLoadSplat of X.idx * [ `I8 | `I16 | `I32 | `I64 ] * memarg
| VecReplace of vec_shape * int
| VecSplat of vec_shape
| VecShuffle of string
| I32WrapI64
| I64ExtendI32 of signage
| F32DemoteF64
| F64PromoteF32
| ExternConvertAny
| AnyConvertExtern
| Folded of 'info instr * 'info instr list
| String of X.idx option * (string, location) annotated list
| Char of Uchar.t
| If_annotation of {
cond : cond;
then_body : ('info instr list, location) annotated;
else_body : ('info instr list, location) annotated option;
}
and 'info instr = ('info instr_desc, 'info) annotated
type 'info expr = 'info instr list
end
type exportable = Func | Memory | Table | Tag | Global
module Text = struct
type name = (string, location) annotated
type idx_desc = Num of Uint32.t | Id of string
type idx = (idx_desc, location) annotated
module X = struct
type nonrec idx = idx
type 'a annotated_array = (name option * 'a, location) annotated array
type 'a opt_annotated_array = (name option * 'a, location) annotated array
type label = name option
end
module Types = Make_types (X)
include (Types : module type of Types with type idx := idx)
type typeuse = idx option * functype option
type tabletype = { limits : (limits, location) annotated; reftype : reftype }
include Make_instructions (struct
include X
include Types
type nonrec typeuse = typeuse
type int32_t = string
type int64_t = string
type f32_t = string
type float_t = string
type v128_t = Wax_utils.V128.t
end)
type datastring = (string, location) annotated list
type datavalelem =
| Str of string
| Numlist of storagetype * string list
| V128list of Wax_utils.V128.t list
type dataval = (datavalelem, location) annotated list
type importdesc =
| Func of { exact : bool; typ : typeuse }
| Memory of (limits, location) annotated
| Table of tabletype
| Global of globaltype
| Tag of typeuse
type nonrec exportable = exportable = Func | Memory | Table | Tag | Global
type 'info datamode = Passive | Active of idx * 'info expr
type 'info elemmode = Passive | Active of idx * 'info expr | Declare
type 'info tableinit =
| Init_default
| Init_expr of 'info expr
| Init_segment of 'info expr list
type 'info modulefield =
| Types of rectype
| Import of {
module_ : name;
name : name;
id : name option;
desc : importdesc;
exports : name list;
}
| Import_group1 of {
module_ : name;
items : (name * name option * importdesc) list;
}
| Import_group2 of {
module_ : name;
desc : importdesc;
items : (name * name option) list;
}
| Func of {
id : name option;
typ : typeuse;
locals : (name option * valtype, location) annotated list;
instrs : 'info instr list;
exports : name list;
}
| Memory of {
id : name option;
limits : (limits, location) annotated;
init : dataval option;
exports : name list;
}
| Table of {
id : name option;
typ : tabletype;
init : 'info tableinit;
exports : name list;
}
| Tag of { id : name option; typ : typeuse; exports : name list }
| Global of {
id : name option;
typ : globaltype;
init : 'info expr;
exports : name list;
}
| Export of { name : name; kind : exportable; index : idx }
| Start of idx
| Elem of {
id : name option;
typ : reftype;
init : 'info expr list;
mode : 'info elemmode;
}
| Data of { id : name option; init : dataval; mode : 'info datamode }
| String_global of { id : name; typ : idx option; init : datastring }
| Feature_annotation of name
| Module_if_annotation of {
cond : cond;
then_fields :
(('info modulefield, location) annotated list, location) annotated;
else_fields :
(('info modulefield, location) annotated list, location) annotated
option;
}
type 'info module_ =
name option * ('info modulefield, location) annotated list
end
module Binary = struct
type idx = int
module X = struct
type nonrec idx = idx
type 'a annotated_array = 'a array
type 'a opt_annotated_array = 'a array
type label = unit
end
module Types = Make_types (X)
include (Types : module type of Types with type idx := idx)
type typeuse = idx
type tabletype = { limits : limits; reftype : reftype }
include Make_instructions (struct
include X
include Types
type nonrec typeuse = typeuse
type int32_t = Int32.t
type int64_t = Int64.t
type f32_t = Int32.t
type float_t = float
type v128_t = string
end)
type nonrec exportable = exportable = Func | Memory | Table | Tag | Global
type 'info datamode = Passive | Active of idx * 'info expr
type 'info elemmode = Passive | Active of idx * 'info expr | Declare
type importdesc =
| Func of { exact : bool; typ : typeuse }
| Memory of limits
| Table of tabletype
| Global of globaltype
| Tag of typeuse
type import = { module_ : string; name : string; desc : importdesc }
type import_entry =
| Single of import
| Group1 of { module_ : string; items : (string * importdesc) list }
| Group2 of { module_ : string; desc : importdesc; names : string list }
type 'info table = { typ : tabletype; expr : 'info expr option }
type 'info memory = {
limits : limits;
init : string option;
exports : string list;
}
type tag = { typ : typeuse; exports : string list }
type 'info global = { typ : globaltype; init : 'info expr }
type export = { name : string; kind : exportable; index : idx }
type 'info elem = {
typ : reftype;
init : 'info expr list;
mode : 'info elemmode;
}
type 'info code = {
locals : valtype list;
instrs : 'info instr list;
loc : location;
}
type 'info data = { init : string; mode : 'info datamode }
module IntMap = Map.Make (Int)
type name_map = string IntMap.t
type indirect_name_map = string IntMap.t IntMap.t
type names = {
module_ : string option;
functions : name_map;
locals : indirect_name_map;
labels : indirect_name_map;
types : name_map;
fields : indirect_name_map;
tags : name_map;
globals : name_map;
tables : name_map;
memories : name_map;
data : name_map;
elem : name_map;
}
type 'info module_ = {
types : rectype list;
imports : import_entry list;
functions : idx list;
tables : 'info table list;
memories : limits list;
tags : idx list;
globals : 'info global list;
exports : export list;
start : idx option;
elem : 'info elem list;
code : 'info code list;
data : 'info data list;
names : names;
target_features : (char * string) list;
}
end