Source file wasm_output.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
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
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
open Ast
open Ast.Binary

(*** The byte encoder ***)

module Encoder = struct
  let byte b i = Buffer.add_char b (Char.chr i)
  let string b s = Buffer.add_string b s

  let rec uint b i =
    if i < 128 then byte b i
    else (
      byte b (128 + (i land 127));
      uint b (i lsr 7))

  let rec sint b i =
    if i >= -64 && i < 64 then byte b (i land 127)
    else (
      byte b (128 + (i land 127));
      sint b (i asr 7))

  let rec sint32 b i =
    if i >= -64l && i < 64l then byte b (Int32.to_int i land 0x7f)
    else (
      byte b (128 + (Int32.to_int i land 127));
      sint32 b (Int32.shift_right i 7))

  let uint64 b i =
    let rec uint64 b i =
      if i >= 0L && i < 128L then byte b (Int64.to_int i)
      else (
        byte b (128 + (Int64.to_int i land 127));
        uint64 b (Int64.shift_right_logical i 7))
    in
    uint64 b (Uint64.to_int64 i)

  let rec sint64 b i =
    if i >= -64L && i < 64L then byte b (Int64.to_int i land 0x7f)
    else (
      byte b (128 + (Int64.to_int i land 127));
      sint64 b (Int64.shift_right i 7))

  (* [i] is the raw 32-bit pattern of the f32 constant (kept exact, including a
     signaling NaN's payload, by not routing it through an OCaml [float]). *)
  let f32 b i =
    byte b (Int32.to_int i land 0xff);
    byte b (Int32.to_int (Int32.shift_right i 8) land 0xff);
    byte b (Int32.to_int (Int32.shift_right i 16) land 0xff);
    byte b (Int32.to_int (Int32.shift_right i 24) land 0xff)

  let f64 b f =
    let i = Int64.bits_of_float f in
    byte b (Int64.to_int i land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 8) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 16) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 24) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 32) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 40) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 48) land 0xff);
    byte b (Int64.to_int (Int64.shift_right i 56) land 0xff)

  let v128 b s = string b s

  let name b n =
    uint b (String.length n);
    string b n

  let vec f b l =
    uint b (List.length l);
    List.iter (f b) l

  let vec' f b l =
    uint b (Array.length l);
    Array.iter (f b) l

  let heaptype b (t : heaptype) =
    match t with
    | NoExn -> byte b 0x74
    | NoFunc -> byte b 0x73
    | NoExtern -> byte b 0x72
    | None_ -> byte b 0x71
    | Func -> byte b 0x70
    | Extern -> byte b 0x6F
    | Any -> byte b 0x6E
    | Eq -> byte b 0x6D
    | I31 -> byte b 0x6C
    | Struct -> byte b 0x6B
    | Array -> byte b 0x6A
    | Exn -> byte b 0x69
    | Cont -> byte b 0x68
    | NoCont -> byte b 0x75
    | Type idx -> sint b idx
    (* [exact] uses a u32 index (not the s33 of [Type]), which makes an exact
       abstract heap type unencodable. *)
    | Exact idx ->
        byte b 0x62;
        uint b idx

  let reftype b (t : reftype) =
    match t with
    | { nullable = true; typ = Type _ | Exact _ } ->
        (* A nullable reference to a concrete type has no shorthand. *)
        byte b 0x63;
        heaptype b t.typ
    | { nullable = true; typ } ->
        (* A nullable reference to an abstract heap type abbreviates to the
           single heap-type byte (e.g. funcref = 0x70, exnref = 0x69). *)
        heaptype b typ
    | { nullable = false; _ } ->
        byte b 0x64;
        heaptype b t.typ

  let valtype b (t : valtype) =
    match t with
    | I32 -> byte b 0x7F
    | I64 -> byte b 0x7E
    | F32 -> byte b 0x7D
    | F64 -> byte b 0x7C
    | V128 -> byte b 0x7B
    | Ref r -> reftype b r

  let mut b m = byte b (if m then 0x01 else 0x00)

  let storagetype b s =
    match s with
    | Value v -> valtype b v
    | Packed I8 -> byte b 0x78
    | Packed I16 -> byte b 0x77

  let fieldtype b (f : fieldtype) =
    storagetype b f.typ;
    mut b f.mut

  let limits b (l : limits) =
    let flag =
      (if l.ma <> None then 0x01 else 0x00)
      lor (if l.shared then 0x02 else 0x00)
      lor (if l.address_type = `I64 then 0x04 else 0x00)
      lor if l.page_size_log2 <> None then 0x08 else 0x00
    in
    byte b flag;
    uint64 b l.mi;
    (match l.ma with None -> () | Some m -> uint64 b m);
    match l.page_size_log2 with None -> () | Some p -> uint b p

  let globaltype b (t : globaltype) =
    valtype b t.typ;
    mut b t.mut

  let tabletype b (t : tabletype) =
    reftype b t.reftype;
    limits b t.limits

  let functype b (t : functype) =
    byte b 0x60;
    vec' valtype b t.params;
    vec' valtype b t.results

  let comptype b (t : comptype) =
    match t with
    | Func f -> functype b f
    | Struct fields ->
        byte b 0x5F;
        vec' fieldtype b fields
    | Array field ->
        byte b 0x5E;
        fieldtype b field
    | Cont idx ->
        byte b 0x5D;
        heaptype b (Type idx)

  (* [describes] ([0x4C]) then [descriptor] ([0x4D]) wrap the composite type. *)
  let described_comptype b (t : subtype) =
    (match t.describes with
    | Some x ->
        byte b 0x4C;
        uint b x
    | None -> ());
    (match t.descriptor with
    | Some x ->
        byte b 0x4D;
        uint b x
    | None -> ());
    comptype b t.typ

  let subtype b (t : subtype) =
    if t.final && t.supertype = None then described_comptype b t
    else (
      byte b (if t.final then 0x4F else 0x50);
      vec uint b (match t.supertype with Some i -> [ i ] | None -> []);
      described_comptype b t)

  let rectype b (t : rectype) =
    match t with
    | [| t |] -> subtype b t
    | _ ->
        byte b 0x4E;
        vec' subtype b t

  let memarg b (m : memarg) idx =
    (* A well-formed align is a small power of two. Guard against a malformed one
       reaching the encoder through an unvalidated conversion (wat -> wasm with no
       --validate): a huge value would assert in [Uint64.to_int], and 0 / a
       non-power-of-two would feed [log2] a bad argument. Such input yields a
       binary the reference then rejects, but encoding itself never crashes. *)
    let align =
      match Int64.unsigned_to_int (Wax_utils.Uint64.to_int64 m.align) with
      | Some a when a > 0 -> Int.of_float (Float.log2 (Float.of_int a))
      | _ -> 0
    in
    if idx = 0 then (
      uint b align;
      uint64 b m.offset)
    else (
      uint b (align lor 64);
      uint b idx;
      uint64 b m.offset)

  let blocktype b (t : blocktype) =
    match t with Valtype v -> valtype b v | Typeuse i -> sint b i

  let resumetable b clauses =
    vec
      (fun b c ->
        match c with
        | OnLabel (tag, label) ->
            byte b 0x00;
            uint b tag;
            uint b label
        | OnSwitch tag ->
            byte b 0x01;
            uint b tag)
      b clauses

  (* Branch-hinting proposal: while a function body is being encoded this sink
     receives [(offset, hint)] for each hinted [if]/[br_if], where [offset] is the
     byte position of the branch opcode relative to the start of the body buffer
     (which begins with the locals declaration) — exactly the offset the
     [metadata.code.branch_hint] section stores. Reset to a no-op outside code
     encoding. See [output_branch_hint_section] / the code-section encoder. *)
  let branch_hint_sink = ref (fun (_ : int) (_ : bool) -> ())

  (* A source position is real when it names a file and carries a line/column; a
     synthesized node instead has [""]/[-1] sentinels. *)
  let is_real_pos (p : Lexing.position) =
    p.Lexing.pos_fname <> "" && p.Lexing.pos_lnum <> -1
    && p.Lexing.pos_cnum <> -1

  (* Record a mapping at the current buffer offset for a closing [end] opcode,
     attaching it to [pos] (the end of the block or expression). Without this the
     [end] byte would inherit the previous instruction's location by the source
     map's sticky rule. A synthesized construct gets an absent mapping instead. *)
  let map_end ~source_map_t b (pos : Lexing.position) =
    let generated_offset = Buffer.length b in
    if is_real_pos pos then
      Wax_utils.Source_map.add_mapping_at source_map_t ~generated_offset
        ~position:pos
    else Wax_utils.Source_map.add_absent_mapping source_map_t ~generated_offset

  let rec instr ~source_map_t b (i : Ast.location instr) =
    (* Record where this instruction starts. A synthesized instruction has no
       source location; emit an absent mapping there so the previous location
       does not, by the source map's sticky rule, bleed onto its bytes.

       A [Folded]/[Hinted] wrapper emits no opcode of its own — the wrapped
       instruction, recursed below, carries the same location and records the
       mapping — so it is skipped here. Recording one for the wrapper too would
       leave a second mapping at the same offset (the wrapper shares its start
       offset with its first operand, or with its head), so a byte would carry
       several identical mappings instead of one. *)
    let generated_offset = Buffer.length b in
    (match i.desc with
    | Folded _ | Hinted _ -> ()
    | _ ->
        if is_real_pos i.info.Wax_utils.Ast.loc_start then
          Wax_utils.Source_map.add_mapping source_map_t ~generated_offset
            ~original_location:i.info
        else
          Wax_utils.Source_map.add_absent_mapping source_map_t ~generated_offset);

    match i.desc with
    | Unreachable -> byte b 0x00
    | Nop -> byte b 0x01
    | Throw i ->
        byte b 0x08;
        uint b i
    | ThrowRef -> byte b 0x0A
    | ContNew i ->
        byte b 0xE0;
        uint b i
    | ContBind (i, j) ->
        byte b 0xE1;
        uint b i;
        uint b j
    | Suspend i ->
        byte b 0xE2;
        uint b i
    | Resume (i, clauses) ->
        byte b 0xE3;
        uint b i;
        resumetable b clauses
    | ResumeThrow (i, j, clauses) ->
        byte b 0xE4;
        uint b i;
        uint b j;
        resumetable b clauses
    | ResumeThrowRef (i, clauses) ->
        byte b 0xE5;
        uint b i;
        resumetable b clauses
    | Switch (i, j) ->
        byte b 0xE6;
        uint b i;
        uint b j
    | Block { typ; block; _ } ->
        byte b 0x02;
        (match typ with Some t -> blocktype b t | None -> byte b 0x40);
        List.iter (instr ~source_map_t b) block.desc;
        map_end ~source_map_t b i.info.loc_end;
        byte b 0x0B
    | Loop { typ; block; _ } ->
        byte b 0x03;
        (match typ with Some t -> blocktype b t | None -> byte b 0x40);
        List.iter (instr ~source_map_t b) block.desc;
        map_end ~source_map_t b i.info.loc_end;
        byte b 0x0B
    | If { typ; if_block; else_block; _ } ->
        byte b 0x04;
        (match typ with Some t -> blocktype b t | None -> byte b 0x40);
        List.iter (instr ~source_map_t b) if_block.desc;
        if else_block.desc <> [] then (
          byte b 0x05;
          List.iter (instr ~source_map_t b) else_block.desc);
        map_end ~source_map_t b i.info.loc_end;
        byte b 0x0B
    | TryTable { typ; block; catches; _ } ->
        byte b 0x1F;
        (match typ with Some t -> blocktype b t | None -> byte b 0x40);
        vec
          (fun b c ->
            match c with
            | Catch (tag, label) ->
                byte b 0x00;
                uint b tag;
                uint b label
            | CatchRef (tag, label) ->
                byte b 0x01;
                uint b tag;
                uint b label
            | CatchAll label ->
                byte b 0x02;
                uint b label
            | CatchAllRef label ->
                byte b 0x03;
                uint b label)
          b catches;
        List.iter (instr ~source_map_t b) block.desc;
        map_end ~source_map_t b i.info.loc_end;
        byte b 0x0B
    | Try { typ; block; catches; catch_all; _ } ->
        byte b 0x06;
        (match typ with Some t -> blocktype b t | None -> byte b 0x40);
        List.iter (instr ~source_map_t b) block.desc;
        List.iter
          (fun (tag, block) ->
            byte b 0x07;
            uint b tag;
            List.iter (instr ~source_map_t b) block.Ast.desc)
          catches;
        (match catch_all with
        | Some block ->
            byte b 0x19;
            List.iter (instr ~source_map_t b) block.Ast.desc
        | None -> ());
        map_end ~source_map_t b i.info.loc_end;
        byte b 0x0B
    | Br i ->
        byte b 0x0C;
        uint b i
    | Br_if i ->
        byte b 0x0D;
        uint b i
    (* Branch-hinting proposal: the wrapper emits no bytecode; it records its
       hint at the wrapped branch's opcode. When the branch is folded
       ([Folded (branch, operands)]) the opcode is emitted only after its
       operands, so encode those first and take the offset there — not at the
       wrapper's own start, which precedes the operands. An unfolded branch sits
       at the wrapper's start offset. *)
    | Hinted (h, inner) -> (
        match inner.desc with
        | Folded (head, operands) ->
            List.iter (instr ~source_map_t b) operands;
            !branch_hint_sink (Buffer.length b) h;
            instr ~source_map_t b head
        | _ ->
            !branch_hint_sink generated_offset h;
            instr ~source_map_t b inner)
    | Br_table (ls, d) ->
        byte b 0x0E;
        vec uint b ls;
        uint b d
    | Br_on_null i ->
        byte b 0xD5;
        uint b i
    | Br_on_non_null i ->
        byte b 0xD6;
        uint b i
    | Br_on_cast (i, r1, r2) ->
        byte b 0xFB;
        byte b 0x18;
        byte b ((if r1.nullable then 1 else 0) + if r2.nullable then 2 else 0);
        uint b i;
        heaptype b r1.typ;
        heaptype b r2.typ
    | Br_on_cast_fail (i, r1, r2) ->
        byte b 0xFB;
        byte b 0x19;
        byte b ((if r1.nullable then 1 else 0) + if r2.nullable then 2 else 0);
        uint b i;
        heaptype b r1.typ;
        heaptype b r2.typ
    | Br_on_cast_desc_eq (i, r1, r2) ->
        byte b 0xFB;
        byte b 0x25;
        byte b ((if r1.nullable then 1 else 0) + if r2.nullable then 2 else 0);
        uint b i;
        heaptype b r1.typ;
        heaptype b r2.typ
    | Br_on_cast_desc_eq_fail (i, r1, r2) ->
        byte b 0xFB;
        byte b 0x26;
        byte b ((if r1.nullable then 1 else 0) + if r2.nullable then 2 else 0);
        uint b i;
        heaptype b r1.typ;
        heaptype b r2.typ
    | Return -> byte b 0x0F
    | Call i ->
        byte b 0x10;
        uint b i
    | CallIndirect (table, type_idx) ->
        byte b 0x11;
        uint b type_idx;
        uint b table
    | CallRef i ->
        byte b 0x14;
        uint b i
    | ReturnCall i ->
        byte b 0x12;
        uint b i
    | ReturnCallRef i ->
        byte b 0x15;
        uint b i
    | ReturnCallIndirect (table, type_idx) ->
        byte b 0x13;
        uint b type_idx;
        uint b table
    | Drop -> byte b 0x1A
    | Select None -> byte b 0x1B
    | Select (Some types) ->
        byte b 0x1C;
        vec valtype b types
    | LocalGet i ->
        byte b 0x20;
        uint b i
    | LocalSet i ->
        byte b 0x21;
        uint b i
    | LocalTee i ->
        byte b 0x22;
        uint b i
    | GlobalGet i ->
        byte b 0x23;
        uint b i
    | GlobalSet i ->
        byte b 0x24;
        uint b i
    | TableGet i ->
        byte b 0x25;
        uint b i
    | TableSet i ->
        byte b 0x26;
        uint b i
    | TableSize i ->
        byte b 0xFC;
        byte b 0x10;
        uint b i
    | TableGrow i ->
        byte b 0xFC;
        byte b 0x0F;
        uint b i
    | TableFill i ->
        byte b 0xFC;
        byte b 0x11;
        uint b i
    | TableCopy (i1, i2) ->
        byte b 0xFC;
        byte b 0x0E;
        uint b i1;
        uint b i2
    | TableInit (i1, i2) ->
        byte b 0xFC;
        byte b 0x0C;
        uint b i1;
        uint b i2
    | ElemDrop i ->
        byte b 0xFC;
        byte b 0x0D;
        uint b i
    | Load (mem_idx, m, typ) ->
        (match typ with
        | NumI32 -> byte b 0x28
        | NumI64 -> byte b 0x29
        | NumF32 -> byte b 0x2A
        | NumF64 -> byte b 0x2B);
        memarg b m mem_idx
    | LoadS (mem_idx, m, typ, sz, s) ->
        (match (typ, sz, s) with
        | `I32, `I8, Signed -> byte b 0x2C
        | `I32, `I8, Unsigned -> byte b 0x2D
        | `I32, `I16, Signed -> byte b 0x2E
        | `I32, `I16, Unsigned -> byte b 0x2F
        | `I64, `I8, Signed -> byte b 0x30
        | `I64, `I8, Unsigned -> byte b 0x31
        | `I64, `I16, Signed -> byte b 0x32
        | `I64, `I16, Unsigned -> byte b 0x33
        | `I64, `I32, Signed -> byte b 0x34
        | `I64, `I32, Unsigned -> byte b 0x35
        | _ -> failwith "Invalid LoadS combination");
        memarg b m mem_idx
    | Store (mem_idx, m, typ) ->
        (match typ with
        | NumI32 -> byte b 0x36
        | NumI64 -> byte b 0x37
        | NumF32 -> byte b 0x38
        | NumF64 -> byte b 0x39);
        memarg b m mem_idx
    | StoreS (mem_idx, m, typ, sz) ->
        (match (typ, sz) with
        | `I32, `I8 -> byte b 0x3A
        | `I32, `I16 -> byte b 0x3B
        | `I64, `I8 -> byte b 0x3C
        | `I64, `I16 -> byte b 0x3D
        | `I64, `I32 -> byte b 0x3E
        | _ -> failwith "Invalid StoreS combination");
        memarg b m mem_idx
    | Atomic (mem_idx, op, m) ->
        byte b 0xFE;
        byte b (Atomics.opcode op);
        memarg b m mem_idx
    | AtomicFence ->
        byte b 0xFE;
        byte b 0x03;
        byte b 0x00
    | MemorySize i ->
        byte b 0x3F;
        uint b i
    | MemoryGrow i ->
        byte b 0x40;
        uint b i
    | MemoryFill i ->
        byte b 0xFC;
        byte b 0x0B;
        uint b i
    | MemoryCopy (i1, i2) ->
        byte b 0xFC;
        byte b 0x0A;
        uint b i1;
        uint b i2
    | MemoryInit (i1, i2) ->
        byte b 0xFC;
        byte b 0x08;
        uint b i1;
        uint b i2
    | DataDrop i ->
        byte b 0xFC;
        byte b 0x09;
        uint b i
    | Const (I32 i) ->
        byte b 0x41;
        sint32 b i
    | Const (I64 i) ->
        byte b 0x42;
        sint64 b i
    | Const (F32 f) ->
        byte b 0x43;
        f32 b f
    | Const (F64 f) ->
        byte b 0x44;
        f64 b f
    | UnOp op -> (
        match op with
        | I32 Clz -> byte b 0x67
        | I32 Ctz -> byte b 0x68
        | I32 Popcnt -> byte b 0x69
        | I64 Clz -> byte b 0x79
        | I64 Ctz -> byte b 0x7A
        | I64 Popcnt -> byte b 0x7B
        | F32 Abs -> byte b 0x8B
        | F32 Neg -> byte b 0x8C
        | F32 Ceil -> byte b 0x8D
        | F32 Floor -> byte b 0x8E
        | F32 Trunc -> byte b 0x8F
        | F32 Nearest -> byte b 0x90
        | F32 Sqrt -> byte b 0x91
        | F64 Abs -> byte b 0x99
        | F64 Neg -> byte b 0x9A
        | F64 Ceil -> byte b 0x9B
        | F64 Floor -> byte b 0x9C
        | F64 Trunc -> byte b 0x9D
        | F64 Nearest -> byte b 0x9E
        | F64 Sqrt -> byte b 0x9F
        | I32 Eqz -> byte b 0x45
        | I64 Eqz -> byte b 0x50
        | I32 (ExtendS `_8) -> byte b 0xC0
        | I32 (ExtendS `_16) -> byte b 0xC1
        | I64 (ExtendS `_8) -> byte b 0xC2
        | I64 (ExtendS `_16) -> byte b 0xC3
        | I64 (ExtendS `_32) -> byte b 0xC4
        | I32 (ExtendS `_32) -> failwith "Invalid ExtendS combination"
        | I32 (Trunc (`F32, Signed)) -> byte b 0xA8
        | I32 (Trunc (`F32, Unsigned)) -> byte b 0xA9
        | I32 (Trunc (`F64, Signed)) -> byte b 0xAA
        | I32 (Trunc (`F64, Unsigned)) -> byte b 0xAB
        | I64 (Trunc (`F32, Signed)) -> byte b 0xAE
        | I64 (Trunc (`F32, Unsigned)) -> byte b 0xAF
        | I64 (Trunc (`F64, Signed)) -> byte b 0xB0
        | I64 (Trunc (`F64, Unsigned)) -> byte b 0xB1
        | I32 (TruncSat (`F32, Signed)) ->
            byte b 0xFC;
            byte b 0x00
        | I32 (TruncSat (`F32, Unsigned)) ->
            byte b 0xFC;
            byte b 0x01
        | I32 (TruncSat (`F64, Signed)) ->
            byte b 0xFC;
            byte b 0x02
        | I32 (TruncSat (`F64, Unsigned)) ->
            byte b 0xFC;
            byte b 0x03
        | I64 (TruncSat (`F32, Signed)) ->
            byte b 0xFC;
            byte b 0x04
        | I64 (TruncSat (`F32, Unsigned)) ->
            byte b 0xFC;
            byte b 0x05
        | I64 (TruncSat (`F64, Signed)) ->
            byte b 0xFC;
            byte b 0x06
        | I64 (TruncSat (`F64, Unsigned)) ->
            byte b 0xFC;
            byte b 0x07
        | F32 (Convert (`I32, Signed)) -> byte b 0xB2
        | F32 (Convert (`I32, Unsigned)) -> byte b 0xB3
        | F32 (Convert (`I64, Signed)) -> byte b 0xB4
        | F32 (Convert (`I64, Unsigned)) -> byte b 0xB5
        | F64 (Convert (`I32, Signed)) -> byte b 0xB7
        | F64 (Convert (`I32, Unsigned)) -> byte b 0xB8
        | F64 (Convert (`I64, Signed)) -> byte b 0xB9
        | F64 (Convert (`I64, Unsigned)) -> byte b 0xBA
        | I32 Reinterpret -> byte b 0xBC
        | I64 Reinterpret -> byte b 0xBD
        | F32 Reinterpret -> byte b 0xBE
        | F64 Reinterpret -> byte b 0xBF)
    | BinOp op -> (
        match op with
        | I32 Add -> byte b 0x6A
        | I32 Sub -> byte b 0x6B
        | I32 Mul -> byte b 0x6C
        | I32 (Div Signed) -> byte b 0x6D
        | I32 (Div Unsigned) -> byte b 0x6E
        | I32 (Rem Signed) -> byte b 0x6F
        | I32 (Rem Unsigned) -> byte b 0x70
        | I32 And -> byte b 0x71
        | I32 Or -> byte b 0x72
        | I32 Xor -> byte b 0x73
        | I32 Shl -> byte b 0x74
        | I32 (Shr Signed) -> byte b 0x75
        | I32 (Shr Unsigned) -> byte b 0x76
        | I32 Rotl -> byte b 0x77
        | I32 Rotr -> byte b 0x78
        | I64 Add -> byte b 0x7C
        | I64 Sub -> byte b 0x7D
        | I64 Mul -> byte b 0x7E
        | I64 (Div Signed) -> byte b 0x7F
        | I64 (Div Unsigned) -> byte b 0x80
        | I64 (Rem Signed) -> byte b 0x81
        | I64 (Rem Unsigned) -> byte b 0x82
        | I64 And -> byte b 0x83
        | I64 Or -> byte b 0x84
        | I64 Xor -> byte b 0x85
        | I64 Shl -> byte b 0x86
        | I64 (Shr Signed) -> byte b 0x87
        | I64 (Shr Unsigned) -> byte b 0x88
        | I64 Rotl -> byte b 0x89
        | I64 Rotr -> byte b 0x8A
        | F32 Add -> byte b 0x92
        | F32 Sub -> byte b 0x93
        | F32 Mul -> byte b 0x94
        | F32 Div -> byte b 0x95
        | F32 Min -> byte b 0x96
        | F32 Max -> byte b 0x97
        | F32 CopySign -> byte b 0x98
        | F64 Add -> byte b 0xA0
        | F64 Sub -> byte b 0xA1
        | F64 Mul -> byte b 0xA2
        | F64 Div -> byte b 0xA3
        | F64 Min -> byte b 0xA4
        | F64 Max -> byte b 0xA5
        | F64 CopySign -> byte b 0xA6
        | I32 Eq -> byte b 0x46
        | I32 Ne -> byte b 0x47
        | I32 (Lt Signed) -> byte b 0x48
        | I32 (Lt Unsigned) -> byte b 0x49
        | I32 (Gt Signed) -> byte b 0x4A
        | I32 (Gt Unsigned) -> byte b 0x4B
        | I32 (Le Signed) -> byte b 0x4C
        | I32 (Le Unsigned) -> byte b 0x4D
        | I32 (Ge Signed) -> byte b 0x4E
        | I32 (Ge Unsigned) -> byte b 0x4F
        | I64 Eq -> byte b 0x51
        | I64 Ne -> byte b 0x52
        | I64 (Lt Signed) -> byte b 0x53
        | I64 (Lt Unsigned) -> byte b 0x54
        | I64 (Gt Signed) -> byte b 0x55
        | I64 (Gt Unsigned) -> byte b 0x56
        | I64 (Le Signed) -> byte b 0x57
        | I64 (Le Unsigned) -> byte b 0x58
        | I64 (Ge Signed) -> byte b 0x59
        | I64 (Ge Unsigned) -> byte b 0x5A
        | F32 Eq -> byte b 0x5B
        | F32 Ne -> byte b 0x5C
        | F32 Lt -> byte b 0x5D
        | F32 Gt -> byte b 0x5E
        | F32 Le -> byte b 0x5F
        | F32 Ge -> byte b 0x60
        | F64 Eq -> byte b 0x61
        | F64 Ne -> byte b 0x62
        | F64 Lt -> byte b 0x63
        | F64 Gt -> byte b 0x64
        | F64 Le -> byte b 0x65
        | F64 Ge -> byte b 0x66)
    | Add128 ->
        byte b 0xFC;
        byte b 0x13
    | Sub128 ->
        byte b 0xFC;
        byte b 0x14
    | MulWide Signed ->
        byte b 0xFC;
        byte b 0x15
    | MulWide Unsigned ->
        byte b 0xFC;
        byte b 0x16
    | I32WrapI64 -> byte b 0xA7
    | I64ExtendI32 Signed -> byte b 0xAC
    | I64ExtendI32 Unsigned -> byte b 0xAD
    | F32DemoteF64 -> byte b 0xB6
    | F64PromoteF32 -> byte b 0xBB
    | ExternConvertAny ->
        byte b 0xFB;
        byte b 0x1B
    | AnyConvertExtern ->
        byte b 0xFB;
        byte b 0x1A
    | RefNull t ->
        byte b 0xD0;
        heaptype b t
    | RefIsNull -> byte b 0xD1
    | RefFunc i ->
        byte b 0xD2;
        uint b i
    | RefEq -> byte b 0xD3
    | RefAsNonNull -> byte b 0xD4
    | RefTest t ->
        byte b 0xFB;
        byte b (if t.nullable then 0x15 else 0x14);
        heaptype b t.typ
    | RefCast t ->
        byte b 0xFB;
        byte b (if t.nullable then 0x17 else 0x16);
        heaptype b t.typ
    | RefCastDescEq t ->
        byte b 0xFB;
        byte b (if t.nullable then 0x24 else 0x23);
        heaptype b t.typ
    | RefGetDesc i ->
        byte b 0xFB;
        byte b 0x22;
        uint b i
    | StructNew i ->
        byte b 0xFB;
        byte b 0x00;
        uint b i
    | StructNewDefault i ->
        byte b 0xFB;
        byte b 0x01;
        uint b i
    | StructNewDesc i ->
        byte b 0xFB;
        byte b 0x20;
        uint b i
    | StructNewDefaultDesc i ->
        byte b 0xFB;
        byte b 0x21;
        uint b i
    | StructGet (s, type_idx, field_idx) ->
        byte b 0xFB;
        byte b
          (match s with
          | None -> 0x02
          | Some Signed -> 0x03
          | Some Unsigned -> 0x04);
        uint b type_idx;
        uint b field_idx
    | StructSet (type_idx, field_idx) ->
        byte b 0xFB;
        byte b 0x05;
        uint b type_idx;
        uint b field_idx
    | ArrayNew i ->
        byte b 0xFB;
        byte b 0x06;
        uint b i
    | ArrayNewDefault i ->
        byte b 0xFB;
        byte b 0x07;
        uint b i
    | ArrayNewFixed (i, len) ->
        byte b 0xFB;
        byte b 0x08;
        uint b i;
        uint b (Wax_utils.Uint32.to_int len)
    | ArrayNewData (type_idx, data_idx) ->
        byte b 0xFB;
        byte b 0x09;
        uint b type_idx;
        uint b data_idx
    | ArrayNewElem (type_idx, elem_idx) ->
        byte b 0xFB;
        byte b 0x0A;
        uint b type_idx;
        uint b elem_idx
    | ArrayGet (s, type_idx) ->
        byte b 0xFB;
        byte b
          (match s with
          | None -> 0x0B
          | Some Signed -> 0x0C
          | Some Unsigned -> 0x0D);
        uint b type_idx
    | ArraySet type_idx ->
        byte b 0xFB;
        byte b 0x0E;
        uint b type_idx
    | ArrayLen ->
        byte b 0xFB;
        byte b 0x0F
    | ArrayFill type_idx ->
        byte b 0xFB;
        byte b 0x10;
        uint b type_idx
    | ArrayCopy (type_idx_dst, type_idx_src) ->
        byte b 0xFB;
        byte b 0x11;
        uint b type_idx_dst;
        uint b type_idx_src
    | ArrayInitData (type_idx, data_idx) ->
        byte b 0xFB;
        byte b 0x12;
        uint b type_idx;
        uint b data_idx
    | ArrayInitElem (type_idx, elem_idx) ->
        byte b 0xFB;
        byte b 0x13;
        uint b type_idx;
        uint b elem_idx
    | RefI31 ->
        byte b 0xFB;
        byte b 0x1C
    | I31Get Signed ->
        byte b 0xFB;
        byte b 0x1D
    | I31Get Unsigned ->
        byte b 0xFB;
        byte b 0x1E
    | VecLoad (idx, op, m) ->
        byte b 0xFD;
        uint b
          (match op with
          | Load128 -> 0
          | Load8x8S -> 1
          | Load8x8U -> 2
          | Load16x4S -> 3
          | Load16x4U -> 4
          | Load32x2S -> 5
          | Load32x2U -> 6
          | Load32Zero -> 92
          | Load64Zero -> 93);
        memarg b m idx
    | VecLoadSplat (idx, op, m) ->
        byte b 0xFD;
        uint b (match op with `I8 -> 7 | `I16 -> 8 | `I32 -> 9 | `I64 -> 10);
        memarg b m idx
    | VecStore (idx, m) ->
        byte b 0xFD;
        uint b 11;
        memarg b m idx
    | VecConst v ->
        byte b 0xFD;
        uint b 12;
        v128 b v
    | VecShuffle v ->
        byte b 0xFD;
        uint b 13;
        v128 b v
    | VecSplat shape ->
        byte b 0xFD;
        uint b
          (match shape with
          | I8x16 -> 15
          | I16x8 -> 16
          | I32x4 -> 17
          | I64x2 -> 18
          | F32x4 -> 19
          | F64x2 -> 20)
    | VecExtract (op, s, lane) ->
        byte b 0xFD;
        uint b
          (match (op, s) with
          | I8x16, Some Signed -> 21
          | I8x16, Some Unsigned -> 22
          | I16x8, Some Signed -> 24
          | I16x8, Some Unsigned -> 25
          | I32x4, None -> 27
          | I64x2, None -> 29
          | F32x4, None -> 31
          | F64x2, None -> 33
          | _ -> assert false);
        uint b lane
    | VecReplace (op, lane) ->
        byte b 0xFD;
        uint b
          (match op with
          | I8x16 -> 23
          | I16x8 -> 26
          | I32x4 -> 28
          | I64x2 -> 30
          | F32x4 -> 32
          | F64x2 -> 34);
        uint b lane
    | VecBitselect ->
        byte b 0xFD;
        uint b 82
    | VecTest op ->
        byte b 0xFD;
        uint b
          (match op with
          | AnyTrue -> 83
          | AllTrue I8x16 -> 99
          | AllTrue I16x8 -> 131
          | AllTrue I32x4 -> 163
          | AllTrue I64x2 -> 195
          | AllTrue (F32x4 | F64x2) -> failwith "AllTrue on float not supported")
    | VecLoadLane (idx, op, m, lane) ->
        byte b 0xFD;
        uint b
          (match op with `I8 -> 84 | `I16 -> 85 | `I32 -> 86 | `I64 -> 87);
        memarg b m idx;
        uint b lane
    | VecStoreLane (idx, op, m, lane) ->
        byte b 0xFD;
        uint b
          (match op with `I8 -> 88 | `I16 -> 89 | `I32 -> 90 | `I64 -> 91);
        memarg b m idx;
        uint b lane
    | VecBitmask (Bitmask shape) ->
        byte b 0xFD;
        uint b
          (match shape with
          | I8x16 -> 100
          | I16x8 -> 132
          | I32x4 -> 164
          | I64x2 -> 196
          | F32x4 | F64x2 -> assert false)
    | VecShift op ->
        byte b 0xFD;
        uint b
          (match op with
          | Shl I8x16 -> 107
          | Shr (Signed, I8x16) -> 108
          | Shr (Unsigned, I8x16) -> 109
          | Shl I16x8 -> 139
          | Shr (Signed, I16x8) -> 140
          | Shr (Unsigned, I16x8) -> 141
          | Shl I32x4 -> 171
          | Shr (Signed, I32x4) -> 172
          | Shr (Unsigned, I32x4) -> 173
          | Shl I64x2 -> 203
          | Shr (Signed, I64x2) -> 204
          | Shr (Unsigned, I64x2) -> 205
          | _ -> assert false)
    | VecUnOp op ->
        byte b 0xFD;
        uint b
          (match op with
          | VecNot -> 77
          | VecDemote -> 94
          | VecPromote -> 95
          | VecAbs I8x16 -> 96
          | VecNeg I8x16 -> 97
          | VecPopcnt -> 98
          | VecCeil `F32 -> 103
          | VecFloor `F32 -> 104
          | VecTrunc `F32 -> 105
          | VecNearest `F32 -> 106
          | VecCeil `F64 -> 116
          | VecFloor `F64 -> 117
          | VecTrunc `F64 -> 122
          | VecExtAddPairwise (Signed, `I8) -> 124
          | VecExtAddPairwise (Unsigned, `I8) -> 125
          | VecExtAddPairwise (Signed, `I16) -> 126
          | VecExtAddPairwise (Unsigned, `I16) -> 127
          | VecAbs I16x8 -> 128
          | VecNeg I16x8 -> 129
          | VecExtend (`Low, `_8, Signed) -> 135
          | VecExtend (`High, `_8, Signed) -> 136
          | VecExtend (`Low, `_8, Unsigned) -> 137
          | VecExtend (`High, `_8, Unsigned) -> 138
          | VecNearest `F64 -> 148
          | VecAbs I32x4 -> 160
          | VecNeg I32x4 -> 161
          | VecExtend (`Low, `_16, Signed) -> 167
          | VecExtend (`High, `_16, Signed) -> 168
          | VecExtend (`Low, `_16, Unsigned) -> 169
          | VecExtend (`High, `_16, Unsigned) -> 170
          | VecAbs I64x2 -> 192
          | VecNeg I64x2 -> 193
          | VecExtend (`Low, `_32, Signed) -> 199
          | VecExtend (`High, `_32, Signed) -> 200
          | VecExtend (`Low, `_32, Unsigned) -> 201
          | VecExtend (`High, `_32, Unsigned) -> 202
          | VecAbs F32x4 -> 224
          | VecNeg F32x4 -> 225
          | VecSqrt `F32 -> 227
          | VecAbs F64x2 -> 236
          | VecNeg F64x2 -> 237
          | VecSqrt `F64 -> 239
          | VecTruncSat (`F32, Signed) -> 248
          | VecTruncSat (`F32, Unsigned) -> 249
          | VecConvert (`F32, Signed) -> 250
          | VecConvert (`F32, Unsigned) -> 251
          | VecTruncSat (`F64, Signed) -> 252
          | VecTruncSat (`F64, Unsigned) -> 253
          | VecConvert (`F64, Signed) -> 254
          | VecConvert (`F64, Unsigned) -> 255
          | VecRelaxedTrunc Signed -> 0x101
          | VecRelaxedTrunc Unsigned -> 0x102
          | VecRelaxedTruncZero Signed -> 0x103
          | VecRelaxedTruncZero Unsigned -> 0x104)
    | VecBinOp op ->
        byte b 0xFD;
        uint b
          (match op with
          | VecSwizzle -> 14
          | VecEq I8x16 -> 35
          | VecNe I8x16 -> 36
          | VecLt (Some Signed, I8x16) -> 37
          | VecLt (Some Unsigned, I8x16) -> 38
          | VecGt (Some Signed, I8x16) -> 39
          | VecGt (Some Unsigned, I8x16) -> 40
          | VecLe (Some Signed, I8x16) -> 41
          | VecLe (Some Unsigned, I8x16) -> 42
          | VecGe (Some Signed, I8x16) -> 43
          | VecGe (Some Unsigned, I8x16) -> 44
          | VecEq I16x8 -> 45
          | VecNe I16x8 -> 46
          | VecLt (Some Signed, I16x8) -> 47
          | VecLt (Some Unsigned, I16x8) -> 48
          | VecGt (Some Signed, I16x8) -> 49
          | VecGt (Some Unsigned, I16x8) -> 50
          | VecLe (Some Signed, I16x8) -> 51
          | VecLe (Some Unsigned, I16x8) -> 52
          | VecGe (Some Signed, I16x8) -> 53
          | VecGe (Some Unsigned, I16x8) -> 54
          | VecEq I32x4 -> 55
          | VecNe I32x4 -> 56
          | VecLt (Some Signed, I32x4) -> 57
          | VecLt (Some Unsigned, I32x4) -> 58
          | VecGt (Some Signed, I32x4) -> 59
          | VecGt (Some Unsigned, I32x4) -> 60
          | VecLe (Some Signed, I32x4) -> 61
          | VecLe (Some Unsigned, I32x4) -> 62
          | VecGe (Some Signed, I32x4) -> 63
          | VecGe (Some Unsigned, I32x4) -> 64
          | VecEq F32x4 -> 65
          | VecNe F32x4 -> 66
          | VecLt (None, F32x4) -> 67
          | VecGt (None, F32x4) -> 68
          | VecLe (None, F32x4) -> 69
          | VecGe (None, F32x4) -> 70
          | VecEq F64x2 -> 71
          | VecNe F64x2 -> 72
          | VecLt (None, F64x2) -> 73
          | VecGt (None, F64x2) -> 74
          | VecLe (None, F64x2) -> 75
          | VecGe (None, F64x2) -> 76
          | VecAnd -> 78
          | VecAndNot -> 79
          | VecOr -> 80
          | VecXor -> 81
          | VecNarrow (Signed, `I8) -> 101
          | VecNarrow (Unsigned, `I8) -> 102
          | VecAdd I8x16 -> 110
          | VecAddSat (Signed, `I8) -> 111
          | VecAddSat (Unsigned, `I8) -> 112
          | VecSub I8x16 -> 113
          | VecSubSat (Signed, `I8) -> 114
          | VecSubSat (Unsigned, `I8) -> 115
          | VecMin (Some Signed, I8x16) -> 118
          | VecMin (Some Unsigned, I8x16) -> 119
          | VecMax (Some Signed, I8x16) -> 120
          | VecMax (Some Unsigned, I8x16) -> 121
          | VecAvgr `I8 -> 123
          | VecQ15MulrSat -> 130
          | VecNarrow (Signed, `I16) -> 133
          | VecNarrow (Unsigned, `I16) -> 134
          | VecAdd I16x8 -> 142
          | VecAddSat (Signed, `I16) -> 143
          | VecAddSat (Unsigned, `I16) -> 144
          | VecSub I16x8 -> 145
          | VecSubSat (Signed, `I16) -> 146
          | VecSubSat (Unsigned, `I16) -> 147
          | VecMul I16x8 -> 149
          | VecMin (Some Signed, I16x8) -> 150
          | VecMin (Some Unsigned, I16x8) -> 151
          | VecMax (Some Signed, I16x8) -> 152
          | VecMax (Some Unsigned, I16x8) -> 153
          | VecAvgr `I16 -> 155
          | VecExtMulLow (Signed, `_8) -> 156
          | VecExtMulHigh (Signed, `_8) -> 157
          | VecExtMulLow (Unsigned, `_8) -> 158
          | VecExtMulHigh (Unsigned, `_8) -> 159
          | VecAdd I32x4 -> 174
          | VecSub I32x4 -> 177
          | VecMul I32x4 -> 181
          | VecMin (Some Signed, I32x4) -> 182
          | VecMin (Some Unsigned, I32x4) -> 183
          | VecMax (Some Signed, I32x4) -> 184
          | VecMax (Some Unsigned, I32x4) -> 185
          | VecDot -> 186
          | VecExtMulLow (Signed, `_16) -> 188
          | VecExtMulHigh (Signed, `_16) -> 189
          | VecExtMulLow (Unsigned, `_16) -> 190
          | VecExtMulHigh (Unsigned, `_16) -> 191
          | VecAdd I64x2 -> 206
          | VecSub I64x2 -> 209
          | VecMul I64x2 -> 213
          | VecEq I64x2 -> 214
          | VecNe I64x2 -> 215
          | VecLt (Some Signed, I64x2) -> 216
          | VecGt (Some Signed, I64x2) -> 217
          | VecLe (Some Signed, I64x2) -> 218
          | VecGe (Some Signed, I64x2) -> 219
          | VecExtMulLow (Signed, `_32) -> 220
          | VecExtMulHigh (Signed, `_32) -> 221
          | VecExtMulLow (Unsigned, `_32) -> 222
          | VecExtMulHigh (Unsigned, `_32) -> 223
          | VecAdd F32x4 -> 228
          | VecSub F32x4 -> 229
          | VecMul F32x4 -> 230
          | VecDiv `F32 -> 231
          | VecMin (None, F32x4) -> 232
          | VecMax (None, F32x4) -> 233
          | VecPMin `F32 -> 234
          | VecPMax `F32 -> 235
          | VecAdd F64x2 -> 240
          | VecSub F64x2 -> 241
          | VecMul F64x2 -> 242
          | VecDiv `F64 -> 243
          | VecMin (None, F64x2) -> 244
          | VecMax (None, F64x2) -> 245
          | VecPMin `F64 -> 246
          | VecPMax `F64 -> 247
          (* Relaxed SIMD *)
          | VecRelaxedSwizzle -> 0x100
          | VecRelaxedMin F32x4 -> 0x10d
          | VecRelaxedMax F32x4 -> 0x10e
          | VecRelaxedMin F64x2 -> 0x10f
          | VecRelaxedMax F64x2 -> 0x110
          | VecRelaxedQ15Mulr -> 0x111
          | VecRelaxedDot -> 0x112
          | VecMul I8x16
          | VecLt (Some Unsigned, I64x2)
          | VecGt (Some Unsigned, I64x2)
          | VecLe (Some Unsigned, I64x2)
          | VecGe (Some Unsigned, I64x2)
          | VecMin (Some Unsigned, I64x2)
          | VecMax (Some Unsigned, I64x2)
          | VecLt _ | VecGt _ | VecLe _ | VecGe _ | VecMin _ | VecMax _
          | VecRelaxedMin _ | VecRelaxedMax _ ->
              assert false)
    | VecTernOp op ->
        byte b 0xFD;
        uint b
          (match op with
          | VecRelaxedMAdd `F32 -> 0x105
          | VecRelaxedNMAdd `F32 -> 0x106
          | VecRelaxedMAdd `F64 -> 0x107
          | VecRelaxedNMAdd `F64 -> 0x108
          | VecRelaxedLaneSelect I8x16 -> 0x109
          | VecRelaxedLaneSelect I16x8 -> 0x10a
          | VecRelaxedLaneSelect I32x4 -> 0x10b
          | VecRelaxedLaneSelect I64x2 -> 0x10c
          | VecRelaxedDotAdd -> 0x113
          | VecRelaxedLaneSelect (F32x4 | F64x2) -> assert false)
    | String _ | Char _ -> assert false (* Desugared *)
    | If_annotation _ -> assert false (* Reported by [Text_to_binary]. *)
    | Folded (i, is) ->
        List.iter (instr ~source_map_t b) is;
        instr ~source_map_t b i

  let expr ?end_pos ~source_map_t b e =
    List.iter (instr ~source_map_t b) e;
    (* Attach the terminating [end] to [end_pos] when the caller knows the
       enclosing construct's closing position (a function's [}]); otherwise fall
       back to the end of the last expression, which is the nearest available
       end-of-body position for a global's [;] or an offset/init expression. An
       empty body with no fallback gets an absent mapping. *)
    let rec last = function [] -> None | [ x ] -> Some x | _ :: r -> last r in
    let pos =
      match end_pos with
      | Some _ -> end_pos
      | None -> Option.map (fun i -> i.Ast.info.loc_end) (last e)
    in
    (match pos with
    | Some pos -> map_end ~source_map_t b pos
    | None ->
        Wax_utils.Source_map.add_absent_mapping source_map_t
          ~generated_offset:(Buffer.length b));
    byte b 0x0B
end

(*** Section emission ***)

(* Emit a section and return the length of its content (in bytes); the section
   as a whole occupies [1 + leb_size len + len] bytes on the channel (id byte +
   the LEB128 length prefix + the content). Callers thread that total through a
   running file position so source-map offsets can be rebased to the file. *)
let output_section ch id encoder data =
  let b = Buffer.create 1024 in
  encoder b data;
  Out_channel.output_byte ch id;
  let len = Buffer.length b in
  let rec output_uint i =
    if i < 128 then Out_channel.output_byte ch i
    else (
      Out_channel.output_byte ch (128 + (i land 127));
      output_uint (i lsr 7))
  in
  output_uint len;
  Buffer.output_buffer ch b;
  len

let import_desc b (desc : importdesc) =
  match desc with
  | Func { exact; typ = i } ->
      Encoder.byte b (if exact then 0x20 else 0x00);
      Encoder.sint b i
  | Table t ->
      Encoder.byte b 0x01;
      Encoder.tabletype b t
  | Memory l ->
      Encoder.byte b 0x02;
      Encoder.limits b l
  | Global g ->
      Encoder.byte b 0x03;
      Encoder.globaltype b g
  | Tag t ->
      Encoder.byte b 0x04;
      Encoder.byte b 0x00;
      Encoder.sint b t

let leb_len n =
  let rec go n acc = if n < 128 then acc else go (n lsr 7) (acc + 1) in
  go n 1

(* When the compact-import-section feature is enabled, coalesce maximal runs of
   consecutive plain [Single] imports sharing a module name into one [Group1] —
   but only when grouping is actually smaller: writing the module name once
   instead of [n] times saves [(n-1) * (1 + |m|)] bytes against the [2 + leb_len
   n] overhead (empty second name + marker byte + inner count). Explicit groups
   already in the AST are preserved verbatim and break a run. Only consecutive
   imports may be grouped: an import's index is its position, so reordering would
   break references. *)
let coalesce_singles entries =
  let should_group module_ n =
    n >= 2 && (n - 1) * (1 + String.length module_) > 2 + leb_len n
  in
  let rec go = function
    | [] -> []
    | ((Group1 _ | Group2 _) as g) :: rest -> g :: go rest
    | Single (first : import) :: _ as l ->
        let rec take acc = function
          | Single (i : import) :: rest when i.module_ = first.module_ ->
              take (i :: acc) rest
          | rest -> (List.rev acc, rest)
        in
        let run, rest = take [] l in
        let here =
          if should_group first.module_ (List.length run) then
            [
              Group1
                {
                  module_ = first.module_;
                  items = List.map (fun (i : import) -> (i.name, i.desc)) run;
                };
            ]
          else List.map (fun i -> Single i) run
        in
        here @ go rest
  in
  go entries

(* Import section. A [Group1]/[Group2] entry writes its module name once,
   followed by [0x00] (empty second name), the [0x7F]/[0x7E] marker, and the
   item list — the marker sits where an externtype kind byte would, and neither
   is a valid kind, so a plain import (kind byte next) stays unambiguous. Groups
   present in the AST are emitted verbatim (preserving a compact input); the
   feature only drives coalescing of ungrouped [Single] imports above. *)
let output_import_section ~features out_channel imports =
  let compact =
    Wax_utils.Feature.is_enabled features
      Wax_utils.Feature.Compact_import_section
  in
  let write_named_desc b name desc =
    Encoder.name b name;
    import_desc b desc
  in
  let write_entry b = function
    | Single (i : import) ->
        Encoder.name b i.module_;
        write_named_desc b i.name i.desc
    | Group1 { module_; items } ->
        Encoder.name b module_;
        Encoder.name b "";
        Encoder.byte b 0x7F;
        Encoder.vec (fun b (name, desc) -> write_named_desc b name desc) b items
    | Group2 { module_; desc; names } ->
        Encoder.name b module_;
        Encoder.name b "";
        Encoder.byte b 0x7E;
        import_desc b desc;
        Encoder.vec Encoder.name b names
  in
  output_section out_channel 2 (Encoder.vec write_entry)
    (if compact then coalesce_singles imports else imports)

(* Branch-hinting proposal: emit the [metadata.code.branch_hint] custom section.
   [func_hints] maps a (absolute) function index to its hints, each a byte offset
   (of the branch opcode, relative to the start of the function body) paired with
   the hint ([true] = likely, [false] = unlikely). Both the function entries and
   each function's hints are already in increasing-offset order (functions are
   encoded in order; a body's opcodes are emitted at strictly increasing
   offsets), as the section requires. *)
let output_branch_hint_section out_channel
    (func_hints : (int * (int * bool) list) list) =
  output_section out_channel 0
    (fun b () ->
      Encoder.name b "metadata.code.branch_hint";
      Encoder.vec
        (fun b (funcidx, hints) ->
          Encoder.uint b funcidx;
          Encoder.vec
            (fun b (offset, hint) ->
              Encoder.uint b offset;
              Encoder.uint b 1 (* reserved: length of the hint payload *);
              Encoder.byte b (if hint then 1 else 0))
            b hints)
        b func_hints)
    ()

(*** The module writer ***)

let module_ ~out_channel ?output_file ?(source_map = false)
    ?(features = Wax_utils.Feature.default ()) (m : Ast.location module_) =
  Wax_utils.Debug.timed "output" @@ fun () ->
  Out_channel.output_string out_channel "\x00\x61\x73\x6D\x01\x00\x00\x00";

  let source_map_t = Wax_utils.Source_map.create () in

  (* A source map records each instruction's byte offset relative to the start of
     the whole binary, so we track the running file position as sections are
     written. It starts past the 8-byte magic + version header already emitted. *)
  let file_pos = ref 8 in
  let leb_size n =
    let rec go n = if n < 128 then 1 else 1 + go (n lsr 7) in
    go n
  in
  (* Advance the position past a just-written section whose content was [len]
     bytes (id byte + LEB128 length prefix + content). *)
  let bump len = file_pos := !file_pos + 1 + leb_size len + len in
  let section id encoder data =
    bump (output_section out_channel id encoder data)
  in
  (* A section carrying source-mapped code / const-exprs. Its mappings were
     recorded relative to the section content buffer, so once the section is
     written — and its absolute content start is known — rebase them to the file
     by adding that start (position after the id byte and the length prefix). *)
  let map_section id encoder data =
    let content_start = !file_pos + 1 in
    let cp = Wax_utils.Source_map.checkpoint source_map_t in
    let len = output_section out_channel id encoder data in
    Wax_utils.Source_map.shift_since source_map_t cp
      ~delta:(content_start + leb_size len);
    bump len
  in

  (* 1. Type Section *)
  if m.types <> [] then section 1 (Encoder.vec Encoder.rectype) m.types;

  (* 2. Import Section *)
  if m.imports <> [] then
    bump (output_import_section ~features out_channel m.imports);

  (* 3. Function Section *)
  if m.functions <> [] then section 3 (Encoder.vec Encoder.sint) m.functions;

  (* 4. Table Section *)
  if m.tables <> [] then
    map_section 4
      (Encoder.vec (fun b (t : Ast.location table) ->
           match t.expr with
           | Some e ->
               Encoder.byte b 0x40;
               Encoder.byte b 0x00;
               Encoder.tabletype b t.typ;
               Encoder.expr ~source_map_t b e
           | None -> Encoder.tabletype b t.typ))
      m.tables;

  (* 5. Memory Section *)
  if m.memories <> [] then section 5 (Encoder.vec Encoder.limits) m.memories;

  (* 6. Tag Section *)
  if m.tags <> [] then
    section 13
      (Encoder.vec (fun b i ->
           Encoder.byte b 0x00;
           Encoder.sint b i))
      m.tags;

  (* 7. Global Section *)
  if m.globals <> [] then
    map_section 6
      (Encoder.vec (fun b (g : Ast.location global) ->
           Encoder.globaltype b g.typ;
           Encoder.expr ~source_map_t b g.init))
      m.globals;

  (* 8. Export Section *)
  if m.exports <> [] then
    section 7
      (Encoder.vec (fun b (e : export) ->
           Encoder.name b e.name;
           (match e.kind with
           | Func -> Encoder.byte b 0x00
           | Table -> Encoder.byte b 0x01
           | Memory -> Encoder.byte b 0x02
           | Global -> Encoder.byte b 0x03
           | Tag -> Encoder.byte b 0x04);
           Encoder.sint b e.index))
      m.exports;

  (* 9. Start Section *)
  (match m.start with
  | Some i -> section 8 Encoder.sint i
  | None -> ());

  (* 10. Element Section *)
  if m.elem <> [] then
    map_section 9
      (Encoder.vec (fun b (e : Ast.location elem) ->
           let get_func_indices exprs =
             try
               Some
                 (List.map
                    (function
                      | [ { Ast.desc = Ast.Binary.RefFunc idx; _ } ] -> idx
                      | _ -> raise Exit)
                    exprs)
             with Exit -> None
           in
           let is_funcref = e.typ.nullable && e.typ.typ = Func in
           let indices_opt =
             if is_funcref then get_func_indices e.init else None
           in
           match (e.mode, indices_opt) with
           | Active (0, offset), Some idxs ->
               Encoder.byte b 0x00;
               Encoder.expr ~source_map_t b offset;
               Encoder.vec Encoder.uint b idxs
           | Active (0, offset), None when is_funcref ->
               Encoder.byte b 0x04;
               Encoder.expr ~source_map_t b offset;
               Encoder.vec
                 (fun b ex -> Encoder.expr ~source_map_t b ex)
                 b e.init
           | Active (table, offset), Some idxs ->
               Encoder.byte b 0x02;
               Encoder.uint b table;
               Encoder.expr ~source_map_t b offset;
               Encoder.byte b 0x00;
               Encoder.vec Encoder.uint b idxs
           | Passive, Some idxs ->
               Encoder.byte b 0x01;
               Encoder.byte b 0x00;
               Encoder.vec Encoder.uint b idxs
           | Declare, Some idxs ->
               Encoder.byte b 0x03;
               Encoder.byte b 0x00;
               Encoder.vec Encoder.uint b idxs
           | Active (table, offset), _ ->
               Encoder.byte b 0x06;
               Encoder.uint b table;
               Encoder.expr ~source_map_t b offset;
               Encoder.reftype b e.typ;
               Encoder.vec
                 (fun b ex -> Encoder.expr ~source_map_t b ex)
                 b e.init
           | Passive, _ ->
               Encoder.byte b 0x05;
               Encoder.reftype b e.typ;
               Encoder.vec
                 (fun b ex -> Encoder.expr ~source_map_t b ex)
                 b e.init
           | Declare, _ ->
               Encoder.byte b 0x07;
               Encoder.reftype b e.typ;
               Encoder.vec
                 (fun b ex -> Encoder.expr ~source_map_t b ex)
                 b e.init))
      m.elem;

  (* 12. Data Count Section *)
  if m.data <> [] then section 12 Encoder.uint (List.length m.data);

  (* 11. Code Section *)
  (* Branch-hinting proposal: collect each function's hints while encoding its
     body (the [branch_hint_sink] fires per hinted [if]/[br_if]) and emit the
     [metadata.code.branch_hint] section afterwards. Function indices are absolute
     (defined functions follow the imported ones). *)
  let branch_hints = ref [] in
  if m.code <> [] then (
    let num_func_imports =
      List.fold_left
        (fun n (i : import) -> match i.desc with Func _ -> n + 1 | _ -> n)
        0
        (Ast_utils.flatten_binary_imports m.imports)
    in
    let code_index = ref 0 in
    let cp = Wax_utils.Source_map.checkpoint source_map_t in
    let code_content = Buffer.create 1024 in
    Encoder.vec
      (fun b (c : Ast.location code) ->
        let this = ref [] in
        (Encoder.branch_hint_sink :=
           fun offset hint -> this := (offset, hint) :: !this);
        let b_code = Buffer.create 128 in
        let coalesce_locals l =
          let rec loop acc n t l =
            match l with
            | [] -> List.rev ((n, t) :: acc)
            | t' :: r ->
                if t = t' then loop acc (n + 1) t r
                else loop ((n, t) :: acc) 1 t' r
          in
          match l with [] -> [] | t :: rem -> loop [] 1 t rem
        in
        let locals = coalesce_locals c.locals in
        Encoder.vec
          (fun b (n, t) ->
            Encoder.uint b n;
            Encoder.valtype b t)
          b_code locals;
        (* This body's mappings are recorded relative to [b_code]; once the
            length prefix is written we know where the body lands within the
            section content, so rebase them from body-relative to
            section-content-relative. The [map_section]-style outer shift
            below then lifts the whole section to file-absolute offsets. *)
        let cp_fn = Wax_utils.Source_map.checkpoint source_map_t in
        Encoder.expr ~end_pos:c.loc.loc_end ~source_map_t b_code c.instrs;
        Encoder.uint b (Buffer.length b_code);
        Wax_utils.Source_map.shift_since source_map_t cp_fn
          ~delta:(Buffer.length b);
        Buffer.add_buffer b b_code;
        (match List.rev !this with
        | [] -> ()
        | hs ->
            branch_hints :=
              (num_func_imports + !code_index, hs) :: !branch_hints);
        incr code_index)
      code_content m.code;

    (* metadata.code.branch_hint custom section (after the Function section,
       before the Code section). *)
    (match List.rev !branch_hints with
    | [] -> ()
    | fhs -> bump (output_branch_hint_section out_channel fhs));

    let len = Buffer.length code_content in
    let content_start = !file_pos + 1 in
    Out_channel.output_byte out_channel 10;
    let rec output_uint i =
      if i < 128 then Out_channel.output_byte out_channel i
      else (
        Out_channel.output_byte out_channel (128 + (i land 127));
        output_uint (i lsr 7))
    in
    output_uint len;
    Wax_utils.Source_map.shift_since source_map_t cp
      ~delta:(content_start + leb_size len);
    Buffer.output_buffer out_channel code_content;
    bump len;
    Encoder.branch_hint_sink := fun _ _ -> ());

  (* 12. Data Section *)
  if m.data <> [] then
    map_section 11
      (Encoder.vec (fun b (d : Ast.location data) ->
           match d.mode with
           | Passive ->
               Encoder.byte b 0x01;
               Encoder.name b d.init
           | Active (mem, offset) ->
               if mem = 0 then (
                 Encoder.byte b 0x00;
                 Encoder.expr ~source_map_t b offset;
                 Encoder.name b d.init)
               else (
                 Encoder.byte b 0x02;
                 Encoder.uint b mem;
                 (Encoder.expr ~source_map_t b) offset;
                 Encoder.name b d.init)))
      m.data;

  (* [target_features] custom section (tool-conventions): a vector of (prefix
     byte, name) entries, at most one section. Entries — including other
     producers' — are emitted verbatim from the AST. *)
  if m.target_features <> [] then (
    let b = Buffer.create 128 in
    Encoder.name b "target_features";
    Encoder.vec
      (fun b (prefix, name) ->
        Encoder.byte b (Char.code prefix);
        Encoder.name b name)
      b m.target_features;
    Out_channel.output_byte out_channel 0;
    let len = Buffer.length b in
    let rec output_uint i =
      if i < 128 then Out_channel.output_byte out_channel i
      else (
        Out_channel.output_byte out_channel (128 + (i land 127));
        output_uint (i lsr 7))
    in
    output_uint len;
    Buffer.output_buffer out_channel b);

  (* Custom Name Section *)
  let output_name_subsection id name_list b =
    if not (IntMap.is_empty name_list) then (
      Encoder.byte b id;
      let b_sub = Buffer.create 128 in
      Encoder.vec
        (fun b (idx, name) ->
          Encoder.uint b idx;
          Encoder.name b name)
        b_sub
        (IntMap.bindings name_list);
      Encoder.uint b (Buffer.length b_sub);
      Buffer.add_buffer b b_sub)
  in

  let output_indirect_name_subsection id name_list b =
    if not (IntMap.is_empty name_list) then (
      Encoder.byte b id;
      let b_sub = Buffer.create 128 in
      Encoder.vec
        (fun b (outer_idx, inner_map) ->
          Encoder.uint b outer_idx;
          Encoder.vec
            (fun b (inner_idx, name) ->
              Encoder.uint b inner_idx;
              Encoder.name b name)
            b
            (IntMap.bindings inner_map))
        b_sub
        (IntMap.bindings name_list);
      Encoder.uint b (Buffer.length b_sub);
      Buffer.add_buffer b b_sub)
  in

  let b_names = Buffer.create 1024 in
  (match m.names.module_ with
  | Some name ->
      Encoder.byte b_names 0x00;
      (* Module name subsection ID *)
      let b_sub = Buffer.create 64 in
      Encoder.name b_sub name;
      Encoder.uint b_names (Buffer.length b_sub);
      Buffer.add_buffer b_names b_sub
  | None -> ());

  output_name_subsection 0x01 m.names.functions b_names;
  (* Function names *)
  output_indirect_name_subsection 0x02 m.names.locals b_names;
  (* Local names *)
  output_indirect_name_subsection 0x03 m.names.labels b_names;
  (* Label names *)
  output_name_subsection 0x04 m.names.types b_names;
  (* Type names *)
  output_name_subsection 0x05 m.names.tables b_names;
  (* Table names *)
  output_name_subsection 0x06 m.names.memories b_names;
  (* Memory names *)
  output_name_subsection 0x07 m.names.globals b_names;
  (* Global names *)
  output_name_subsection 0x08 m.names.elem b_names;
  (* Elem names *)
  output_name_subsection 0x09 m.names.data b_names;
  (* Data names *)
  output_indirect_name_subsection 0x0A m.names.fields b_names;
  (* Field names *)
  output_name_subsection 0x0B m.names.tags b_names;

  (* Tag names *)
  if Buffer.length b_names > 0 then (
    let b_custom_section_content = Buffer.create (Buffer.length b_names + 10) in
    Encoder.name b_custom_section_content "name";
    Buffer.add_buffer b_custom_section_content b_names;

    Out_channel.output_byte out_channel 0;
    (* Custom section ID (0) *)
    let len = Buffer.length b_custom_section_content in
    let rec output_uint i =
      if i < 128 then Out_channel.output_byte out_channel i
      else (
        Out_channel.output_byte out_channel (128 + (i land 127));
        output_uint (i lsr 7))
    in
    output_uint len;
    Buffer.output_buffer out_channel b_custom_section_content);

  (* Generate source map file and custom section *)
  if source_map then
    match output_file with
    | Some f ->
        let map_file_name = f ^ ".map" in
        let file_name = Filename.basename f in
        let map_basename = file_name ^ ".map" in

        (* Write the custom section sourceMappingURL *)
        let b_custom = Buffer.create 128 in
        Encoder.name b_custom "sourceMappingURL";
        Encoder.name b_custom map_basename;
        let custom_len = Buffer.length b_custom in

        Out_channel.output_byte out_channel 0;
        let rec output_uint i =
          if i < 128 then Out_channel.output_byte out_channel i
          else (
            Out_channel.output_byte out_channel (128 + (i land 127));
            output_uint (i lsr 7))
        in
        output_uint custom_len;
        Buffer.output_buffer out_channel b_custom;

        let json_content =
          Wax_utils.Source_map.to_json source_map_t ~file_name
        in
        Out_channel.with_open_text map_file_name (fun oc ->
            Out_channel.output_string oc json_content)
    | None -> failwith "--source-map requires an output file"