summaryrefslogtreecommitdiff
path: root/src/wasm-binary-reader-interpreter.c
blob: db7100556e14c26d47ad316285dbaa0f588c0f44 (plain)
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
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
/*
 * Copyright 2016 WebAssembly Community Group participants
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "wasm-binary-reader-interpreter.h"

#include <assert.h>
#include <stdarg.h>
#include <stdio.h>

#include "wasm-allocator.h"
#include "wasm-binary-reader.h"
#include "wasm-interpreter.h"
#include "wasm-writer.h"

#define LOG 0

#if LOG
#define LOGF(...) fprintf(stderr, __VA_ARGS__)
#else
#define LOGF(...) (void)0
#endif

#define INVALID_FUNC_INDEX ((uint32_t)~0)

#define CHECK_RESULT(expr) \
  do {                     \
    if (WASM_FAILED(expr)) \
      return WASM_ERROR;   \
  } while (0)

#define CHECK_DEPTH(ctx, depth)                                         \
  do {                                                                  \
    if ((depth) >= (ctx)->typecheck_label_stack.size) {                 \
      print_error((ctx), "invalid depth: %d (max %" PRIzd ")", (depth), \
                  ((ctx)->typecheck_label_stack.size));                 \
      return WASM_ERROR;                                                \
    }                                                                   \
  } while (0)

#define CHECK_LOCAL(ctx, local_index)                                       \
  do {                                                                      \
    uint32_t max_local_index =                                              \
        (ctx)->current_func->param_and_local_types.size;                    \
    if ((local_index) >= max_local_index) {                                 \
      print_error((ctx), "invalid local_index: %d (max %d)", (local_index), \
                  max_local_index);                                         \
      return WASM_ERROR;                                                    \
    }                                                                       \
  } while (0)

#define WASM_TYPE_ANY WASM_NUM_TYPES

static const char* s_type_names[] = {
    "void", "i32", "i64", "f32", "f64", "any",
};
WASM_STATIC_ASSERT(WASM_ARRAY_SIZE(s_type_names) == WASM_NUM_TYPES + 1);

/* TODO(binji): combine with the ones defined in wasm-check? */
#define V(rtype, type1, type2, mem_size, code, NAME, text) \
  [code] = WASM_TYPE_##rtype,
static WasmType s_opcode_rtype[] = {WASM_FOREACH_OPCODE(V)};
#undef V

#define V(rtype, type1, type2, mem_size, code, NAME, text) \
  [code] = WASM_TYPE_##type1,
static WasmType s_opcode_type1[] = {WASM_FOREACH_OPCODE(V)};
#undef V

#define V(rtype, type1, type2, mem_size, code, NAME, text) \
  [code] = WASM_TYPE_##type2,
static WasmType s_opcode_type2[] = {WASM_FOREACH_OPCODE(V)};
#undef V

#define V(rtype, type1, type2, mem_size, code, NAME, text) [code] = text,
static const char* s_opcode_name[] = {
    /* clang-format off */
  WASM_FOREACH_OPCODE(V)
  [WASM_OPCODE_ALLOCA] = "alloca",
  [WASM_OPCODE_DISCARD] = "discard",
  [WASM_OPCODE_DISCARD_KEEP] = "discard_keep",
    /* clang-format on */
};
#undef V

typedef uint32_t Uint32;
WASM_DEFINE_VECTOR(uint32, Uint32);
WASM_DEFINE_VECTOR(uint32_vector, Uint32Vector);

typedef enum LabelType {
  LABEL_TYPE_BLOCK,
  LABEL_TYPE_LOOP,
  LABEL_TYPE_IF,
  LABEL_TYPE_ELSE,
} LabelType;

static const char* s_label_type_name[] = {
    "block", "loop", "if", "else",
};

/* used for the typecheck pass */
typedef struct TypecheckLabel {
  LabelType label_type;
  WasmType type;
  uint32_t expr_stack_size;
  uint32_t expr_index;      /* the index of the starting op (block/loop/if) */
  uint32_t last_expr_index; /* last index of the true branch in an if */
} TypecheckLabel;
WASM_DEFINE_VECTOR(typecheck_label, TypecheckLabel);

/* used for the emit pass */
typedef struct EmitLabel {
  LabelType label_type;
  uint32_t offset; /* branch location in the istream */
  uint32_t fixup_offset;
  uint32_t value_stack_size;
  WasmBool has_value;
} EmitLabel;
WASM_DEFINE_VECTOR(emit_label, EmitLabel);

typedef struct ExprNode {
  uint32_t index;
  WasmType type;
} ExprNode;
WASM_DEFINE_VECTOR(expr_node, ExprNode);

typedef struct InterpreterFunc {
  uint32_t sig_index;
  uint32_t offset;
  uint32_t local_decl_count;
  uint32_t local_count;
  WasmTypeVector param_and_local_types;
} InterpreterFunc;
WASM_DEFINE_ARRAY(interpreter_func, InterpreterFunc);

typedef struct Context {
  WasmAllocator* allocator;
  WasmBinaryReader* reader;
  WasmBinaryErrorHandler* error_handler;
  WasmAllocator* memory_allocator;
  WasmInterpreterModule* module;
  InterpreterFuncArray funcs;
  InterpreterFunc* current_func;
  ExprNodeVector expr_stack;
  TypecheckLabelVector typecheck_label_stack;
  EmitLabelVector emit_label_stack;
  Uint32VectorVector func_fixups;
  Uint32VectorVector depth_fixups;
  Uint32Vector discarded_exprs; /* bitset */
  uint32_t value_stack_size;
  uint32_t depth;
  uint32_t expr_count;
  uint32_t start_func_index;
  WasmMemoryWriter istream_writer;
  uint32_t istream_offset;
} Context;

static TypecheckLabel* get_typecheck_label(Context* ctx, uint32_t depth) {
  assert(depth < ctx->typecheck_label_stack.size);
  return &ctx->typecheck_label_stack.data[depth];
}

static TypecheckLabel* top_typecheck_label(Context* ctx) {
  return get_typecheck_label(ctx, ctx->typecheck_label_stack.size - 1);
}

static uint32_t get_value_count(WasmType result_type) {
  return (result_type == WASM_TYPE_VOID || result_type == WASM_TYPE_ANY) ? 0
                                                                         : 1;
}

static WasmBool is_expr_discarded(Context* ctx, uint32_t expr_index) {
  uint32_t word_index = expr_index >> 5;
  if (word_index >= ctx->discarded_exprs.size)
    return WASM_FALSE;

  uint32_t bit_index = expr_index & 31;
  assert(word_index < ctx->discarded_exprs.size);
  return (ctx->discarded_exprs.data[word_index] & (1U << bit_index))
             ? WASM_TRUE
             : WASM_FALSE;
}

static void on_error(uint32_t offset, const char* message, void* user_data);

static void print_error(Context* ctx, const char* format, ...) {
  WASM_SNPRINTF_ALLOCA(buffer, length, format);
  on_error(WASM_INVALID_OFFSET, buffer, ctx);
}

static InterpreterFunc* get_func(Context* ctx, uint32_t func_index) {
  assert(func_index < ctx->funcs.size);
  return &ctx->funcs.data[func_index];
}

static WasmInterpreterImport* get_import(Context* ctx, uint32_t import_index) {
  assert(import_index < ctx->module->imports.size);
  return &ctx->module->imports.data[import_index];
}

static WasmInterpreterExport* get_export(Context* ctx, uint32_t export_index) {
  assert(export_index < ctx->module->exports.size);
  return &ctx->module->exports.data[export_index];
}

static WasmInterpreterFuncSignature* get_signature(Context* ctx,
                                                   uint32_t sig_index) {
  assert(sig_index < ctx->module->sigs.size);
  return &ctx->module->sigs.data[sig_index];
}

static WasmInterpreterFuncSignature* get_func_signature(Context* ctx,
                                                        InterpreterFunc* func) {
  return get_signature(ctx, func->sig_index);
}

static WasmType get_local_index_type(InterpreterFunc* func,
                                     uint32_t local_index) {
  assert(local_index < func->param_and_local_types.size);
  return func->param_and_local_types.data[local_index];
}

static uint32_t translate_depth(Context* ctx, size_t size, uint32_t depth) {
  assert(depth < size);
  return size - 1 - depth;
}

static uint32_t translate_local_index(Context* ctx, uint32_t local_index) {
  assert(local_index < ctx->value_stack_size);
  return ctx->value_stack_size - local_index;
}

void on_error(uint32_t offset, const char* message, void* user_data) {
  Context* ctx = user_data;
  if (ctx->error_handler->on_error) {
    ctx->error_handler->on_error(offset, message,
                                 ctx->error_handler->user_data);
  }
}

static WasmResult on_memory_initial_size_pages(uint32_t pages,
                                               void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterMemory* memory = &ctx->module->memory;
  memory->allocator = ctx->memory_allocator;
  memory->page_size = pages;
  memory->byte_size = pages * WASM_PAGE_SIZE;
  memory->data = wasm_alloc_zero(ctx->memory_allocator, memory->byte_size,
                                 WASM_DEFAULT_ALIGN);
  return WASM_OK;
}

static WasmResult on_data_segment(uint32_t index,
                                  uint32_t address,
                                  const void* src_data,
                                  uint32_t size,
                                  void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterMemory* memory = &ctx->module->memory;
  uint8_t* dst_data = memory->data;
  if ((uint64_t)address + (uint64_t)size > memory->byte_size)
    return WASM_ERROR;
  memcpy(&dst_data[address], src_data, size);
  return WASM_OK;
}

static WasmResult on_signature_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  wasm_new_interpreter_func_signature_array(ctx->allocator, &ctx->module->sigs,
                                            count);
  return WASM_OK;
}

static WasmResult on_signature(uint32_t index,
                               WasmType result_type,
                               uint32_t param_count,
                               WasmType* param_types,
                               void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterFuncSignature* sig = get_signature(ctx, index);
  sig->result_type = result_type;

  wasm_reserve_types(ctx->allocator, &sig->param_types, param_count);
  sig->param_types.size = param_count;
  memcpy(sig->param_types.data, param_types, param_count * sizeof(WasmType));
  return WASM_OK;
}

static WasmResult on_import_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  wasm_new_interpreter_import_array(ctx->allocator, &ctx->module->imports,
                                    count);
  return WASM_OK;
}

static WasmResult trapping_import_callback(
    WasmInterpreterModule* module,
    WasmInterpreterImport* import,
    uint32_t num_args,
    WasmInterpreterTypedValue* args,
    WasmInterpreterTypedValue* out_result,
    void* user_data) {
  return WASM_ERROR;
}

static WasmResult on_import(uint32_t index,
                            uint32_t sig_index,
                            WasmStringSlice module_name,
                            WasmStringSlice function_name,
                            void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterImport* import = &ctx->module->imports.data[index];
  import->module_name = wasm_dup_string_slice(ctx->allocator, module_name);
  import->func_name = wasm_dup_string_slice(ctx->allocator, function_name);
  assert(sig_index < ctx->module->sigs.size);
  import->sig_index = sig_index;
  import->callback = trapping_import_callback;
  import->user_data = NULL;
  return WASM_OK;
}

static WasmResult on_function_signatures_count(uint32_t count,
                                               void* user_data) {
  Context* ctx = user_data;
  wasm_new_interpreter_func_array(ctx->allocator, &ctx->funcs, count);
  wasm_resize_uint32_vector_vector(ctx->allocator, &ctx->func_fixups, count);
  return WASM_OK;
}

static WasmResult on_function_signature(uint32_t index,
                                        uint32_t sig_index,
                                        void* user_data) {
  Context* ctx = user_data;
  assert(sig_index < ctx->module->sigs.size);
  InterpreterFunc* func = get_func(ctx, index);
  func->offset = WASM_INVALID_OFFSET;
  func->sig_index = sig_index;
  return WASM_OK;
}

static WasmResult on_function_bodies_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  assert(count == ctx->funcs.size);
  WASM_USE(ctx);
  return WASM_OK;
}

/* defined below so they can reference s_binary_reader{,_emit} */
static WasmResult begin_function_body_pass(uint32_t index,
                                           uint32_t pass,
                                           void* user_data);
static WasmResult end_function_body_pass(uint32_t index,
                                         uint32_t pass,
                                         void* user_data);

/* Code generation happens per function in two passes. First, the function is
 * type-checked, bottom up. While this is done, a bitset ("discarded_exprs") is
 * maintained.
 *
 * There are three different but related meanings for a bit being set in
 * |discarded_exprs|:
 *
 * 1) if the operator is a block, loop or if: the bit is set if the block does
 * not use its value. This is used when emitting a br to determine whether its
 * value should be discarded.
 *
 * 2) if the operator is br_if: the bit is set if the br_if has a value. This
 * is used to determine whether the br_if value needs to be discarded if the
 * branch is not taken.
 *
 * 3) otherwise: the bit is set if the expression is subsequently discarded
 * (e.g. a set_local whose value is not used.)
 *
 * The second pass is the emit pass, where instructions are written to an
 * instruction stream, to be executed by the stack machine interpreter.
 *
 * Two passes are needed because you can't determine whether a value is used in
 * one pass. It would be possible to generate code in one pass, but it would
 * use a very large stack for blocks with many discarded expressions.
 */

/*** typecheck pass ***********************************************************/

static WasmResult type_mismatch(Context* ctx,
                                WasmType expected_type,
                                WasmType type,
                                const char* desc) {
  print_error(ctx, "type mismatch in %s, expected %s but got %s.", desc,
              s_type_names[expected_type], s_type_names[type]);
  return WASM_ERROR;
}

static WasmResult check_type(Context* ctx,
                             WasmType expected_type,
                             WasmType type,
                             const char* desc) {
  if (expected_type == WASM_TYPE_ANY || type == WASM_TYPE_ANY ||
      expected_type == WASM_TYPE_VOID) {
    return WASM_OK;
  }
  if (expected_type == type)
    return WASM_OK;
  return type_mismatch(ctx, expected_type, type, desc);
}

static void unify_type(WasmType* dest_type, WasmType type) {
  if (*dest_type == WASM_TYPE_ANY)
    *dest_type = type;
  else if (type != WASM_TYPE_ANY && *dest_type != type)
    *dest_type = WASM_TYPE_VOID;
}

static WasmResult unify_and_check_type(Context* ctx,
                                       WasmType* dest_type,
                                       WasmType type,
                                       const char* desc) {
  unify_type(dest_type, type);
  return check_type(ctx, *dest_type, type, desc);
}

static uint32_t translate_typecheck_depth(Context* ctx, uint32_t depth) {
  return translate_depth(ctx, ctx->typecheck_label_stack.size, depth);
}

static void push_typecheck_label(Context* ctx,
                                 LabelType label_type,
                                 WasmType type) {
  TypecheckLabel* label =
      wasm_append_typecheck_label(ctx->allocator, &ctx->typecheck_label_stack);
  label->label_type = label_type;
  label->type = type;
  label->expr_stack_size = ctx->expr_stack.size;
  label->expr_index = ctx->expr_count;
  LOGF("   : +depth %" PRIzd ":%s\n", ctx->typecheck_label_stack.size - 1,
       s_type_names[type]);
}

static void pop_typecheck_label(Context* ctx) {
  LOGF("   : -depth %" PRIzd "\n", ctx->typecheck_label_stack.size - 1);
  assert(ctx->typecheck_label_stack.size > 0);
  ctx->typecheck_label_stack.size--;
}

static void push_expr(Context* ctx, WasmType type, WasmOpcode opcode) {
  LOGF("%3" PRIzd ": push %s:%s (#%u)\n", ctx->expr_stack.size,
       s_opcode_name[opcode], s_type_names[type], ctx->expr_count);
  ExprNode* expr;
  expr = wasm_append_expr_node(ctx->allocator, &ctx->expr_stack);
  expr->index = ctx->expr_count;
  expr->type = type;
  ctx->expr_count++;
}

static WasmType pop_expr(Context* ctx) {
  assert(ctx->expr_stack.size > 0);
  ExprNode* expr = &ctx->expr_stack.data[ctx->expr_stack.size - 1];

  LOGF("%3" PRIzd ": pop  %s (#%u)\n", ctx->expr_stack.size,
       s_type_names[expr->type], expr->index);

  WasmType type = expr->type;
  ctx->expr_stack.size--;
  return type;
}

static WasmType pop_expr_if(Context* ctx, WasmBool cond) {
  if (cond)
    return pop_expr(ctx);
  return WASM_TYPE_VOID;
}

static void set_expr_discarded(Context* ctx, uint32_t expr_index) {
  LOGF("   : set_expr_discarded #%u\n", expr_index);
  uint32_t word_index = expr_index >> 5;
  size_t new_size = word_index + 1;
  if (new_size > ctx->discarded_exprs.capacity)
    wasm_reserve_uint32s(ctx->allocator, &ctx->discarded_exprs, new_size);
  size_t old_size = ctx->discarded_exprs.size;
  if (new_size > old_size) {
    memset(&ctx->discarded_exprs.data[old_size], 0,
           (new_size - old_size) * sizeof(uint32_t));
    ctx->discarded_exprs.size = new_size;
  }

  uint32_t bit_index = expr_index & 31;
  ctx->discarded_exprs.data[word_index] |= 1U << bit_index;
}

static void set_expr_discarded_unless_void(Context* ctx,
                                                 uint32_t expr_index,
                                                 WasmType type) {
  if (type != WASM_TYPE_VOID)
    set_expr_discarded(ctx, expr_index);
}

static WasmResult begin_function_body(uint32_t index, void* user_data) {
  Context* ctx = user_data;
  InterpreterFunc* func = get_func(ctx, index);
  WasmInterpreterFuncSignature* sig = get_signature(ctx, func->sig_index);

  ctx->current_func = func;
  ctx->expr_stack.size = 0;
  ctx->typecheck_label_stack.size = 0;
  ctx->discarded_exprs.size = 0;
  ctx->depth = 0;
  ctx->expr_count = 0;

  /* append param types */
  uint32_t i;
  for (i = 0; i < sig->param_types.size; ++i) {
    wasm_append_type_value(ctx->allocator, &func->param_and_local_types,
                           &sig->param_types.data[i]);
  }

  return WASM_OK;
}

static WasmResult end_function_body(uint32_t index, void* user_data) {
  Context* ctx = user_data;
  uint32_t discard_max = 0;

  WasmInterpreterFuncSignature* sig =
      get_func_signature(ctx, ctx->current_func);
  if (sig->result_type == WASM_TYPE_VOID) {
    /* discard all expr */
    discard_max = ctx->expr_stack.size;
  } else if (ctx->expr_stack.size > 0) {
    /* discard everything except the last expr */
    discard_max = ctx->expr_stack.size - 1;
  } else {
    return WASM_ERROR;
  }

  uint32_t i;
  for (i = 0; i < discard_max; ++i) {
    ExprNode* expr = &ctx->expr_stack.data[i];
    set_expr_discarded_unless_void(ctx, expr->index, expr->type);
  }

  ctx->current_func = NULL;
  return WASM_OK;
}

static WasmResult on_local_decl(uint32_t decl_index,
                                uint32_t count,
                                WasmType type,
                                void* user_data) {
  Context* ctx = user_data;
  InterpreterFunc* func = ctx->current_func;

  uint32_t i;
  for (i = 0; i < count; ++i)
    wasm_append_type_value(ctx->allocator, &func->param_and_local_types, &type);
  return WASM_OK;
}

static WasmResult on_unary_expr(WasmOpcode opcode, void* user_data) {
  Context* ctx = user_data;
  WasmType value = pop_expr(ctx);
  CHECK_RESULT(
      check_type(ctx, s_opcode_type1[opcode], value, s_opcode_name[opcode]));
  push_expr(ctx, s_opcode_rtype[opcode], opcode);
  return WASM_OK;
}

static WasmResult on_binary_expr(WasmOpcode opcode, void* user_data) {
  Context* ctx = user_data;
  WasmType right = pop_expr(ctx);
  WasmType left = pop_expr(ctx);
  /* TODO use opcode name here */
  CHECK_RESULT(
      check_type(ctx, s_opcode_type1[opcode], left, s_opcode_name[opcode]));
  CHECK_RESULT(
      check_type(ctx, s_opcode_type2[opcode], right, s_opcode_name[opcode]));
  push_expr(ctx, s_opcode_rtype[opcode], opcode);
  return WASM_OK;
}

static WasmResult on_block_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": block (#%u)\n", ctx->expr_stack.size, ctx->expr_count);
  push_typecheck_label(ctx, LABEL_TYPE_BLOCK, WASM_TYPE_ANY);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_loop_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": loop (#%u)\n", ctx->expr_stack.size, ctx->expr_count);
  push_typecheck_label(ctx, LABEL_TYPE_LOOP, WASM_TYPE_ANY);  /* exit */
  push_typecheck_label(ctx, LABEL_TYPE_LOOP, WASM_TYPE_VOID); /* continue */
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_if_expr(void* user_data) {
  Context* ctx = user_data;
  WasmType cond = pop_expr(ctx);
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, cond, "if"));
  LOGF("%3" PRIzd ": if (#%u)\n", ctx->expr_stack.size, ctx->expr_count);
  push_typecheck_label(ctx, LABEL_TYPE_IF, WASM_TYPE_ANY);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_else_expr(void* user_data) {
  Context* ctx = user_data;
  TypecheckLabel* label = top_typecheck_label(ctx);
  if (!label || label->label_type != LABEL_TYPE_IF) {
    print_error(ctx, "unexpected else operator");
    return WASM_ERROR;
  }

  LOGF("%3" PRIzd ": else (#%u)\n", ctx->expr_stack.size, ctx->expr_count);

  if (label->expr_stack_size < ctx->expr_stack.size) {
    ExprNode* last_expr = &ctx->expr_stack.data[ctx->expr_stack.size - 1];
    label->last_expr_index = last_expr->index;
    CHECK_RESULT(unify_and_check_type(ctx, &label->type, last_expr->type,
                                      "if true branch"));

    /* discard everything except the last expr; we don't know if we'll need to
     * discard that one until after we process the false branch */
    uint32_t i;
    for (i = label->expr_stack_size; i < ctx->expr_stack.size - 1; ++i) {
      ExprNode* expr = &ctx->expr_stack.data[i];
      set_expr_discarded_unless_void(ctx, expr->index, expr->type);
    }
  }

  label->label_type = LABEL_TYPE_ELSE;
  ctx->expr_stack.size = label->expr_stack_size;
  return WASM_OK;
}

static WasmResult on_end_expr(void* user_data) {
  Context* ctx = user_data;
  TypecheckLabel* label = top_typecheck_label(ctx);
  if (!label) {
    print_error(ctx, "unexpected end operator");
    return WASM_ERROR;
  }

  if (label->label_type == LABEL_TYPE_LOOP) {
    /* pop the "continue" label now; any type checking we do below only applies
     * to the exit label */
    pop_typecheck_label(ctx);
    label = top_typecheck_label(ctx);
    assert(label->label_type == LABEL_TYPE_LOOP);
  } else if (label->label_type == LABEL_TYPE_IF) {
    label->type = WASM_TYPE_VOID;
  }

  if (label->expr_stack_size < ctx->expr_stack.size) {
    ExprNode* last_expr = &ctx->expr_stack.data[ctx->expr_stack.size - 1];
    WasmType old_type = label->type;
    CHECK_RESULT(unify_and_check_type(ctx, &label->type, last_expr->type,
                                      s_label_type_name[label->label_type]));
    if (label->label_type == LABEL_TYPE_ELSE &&
        get_value_count(old_type) > get_value_count(label->type)) {
      /* we unified the types between the true and false branches; the true
       * branch had a value and the false branch didn't, so we need to discard
       * the true branch's value */
      set_expr_discarded(ctx, label->last_expr_index);
    }

    /* discard everything except the last expr */
    uint32_t i;
    for (i = label->expr_stack_size; i < ctx->expr_stack.size - 1; ++i) {
      ExprNode* expr = &ctx->expr_stack.data[i];
      set_expr_discarded_unless_void(ctx, expr->index, expr->type);
    }

    if (label->type == WASM_TYPE_VOID) {
      /* discard the last child expr if this block/if/loop is void */
      set_expr_discarded_unless_void(ctx, last_expr->index, last_expr->type);
    }
  } else {
    /* the block/loop/if was empty */
    label->type = WASM_TYPE_VOID;
  }

  if (label->type == WASM_TYPE_VOID) {
    /* the "discarded" bit is overloaded for the initial block/loop/if
     * operators; in that case it means that there is no value expected to be
     * returned, so if a br operator yields a value, it should be immediately
     * discarded */
    set_expr_discarded(ctx, label->expr_index);
  }

  ctx->expr_stack.size = label->expr_stack_size;
  pop_typecheck_label(ctx);
  push_expr(ctx, label->type, WASM_OPCODE_END);
  return WASM_OK;
}

static WasmResult on_br_expr(uint8_t arity, uint32_t depth, void* user_data) {
  Context* ctx = user_data;
  WasmType value = pop_expr_if(ctx, arity == 1);
  CHECK_DEPTH(ctx, depth);
  depth = translate_typecheck_depth(ctx, depth);
  TypecheckLabel* label = get_typecheck_label(ctx, depth);
  CHECK_RESULT(unify_and_check_type(ctx, &label->type, value, "br"));
  push_expr(ctx, WASM_TYPE_ANY, WASM_OPCODE_BR);
  return WASM_OK;
}

static WasmResult on_br_if_expr(uint8_t arity,
                                uint32_t depth,
                                void* user_data) {
  Context* ctx = user_data;
  WasmType cond = pop_expr(ctx);
  WasmType value = pop_expr_if(ctx, arity == 1);
  CHECK_DEPTH(ctx, depth);
  depth = translate_typecheck_depth(ctx, depth);
  TypecheckLabel* label = get_typecheck_label(ctx, depth);
  CHECK_RESULT(unify_and_check_type(ctx, &label->type, value, "br_if"));
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, cond, "br_if"));
  /* the "discarded" bit is overloaded for br_if; if set, the br_if value is
   * non-void; i.e. should be discarded if the branch is not taken */
  set_expr_discarded_unless_void(ctx, ctx->expr_count, value);
  push_expr(ctx, WASM_TYPE_VOID, WASM_OPCODE_BR_IF);
  return WASM_OK;
}

static WasmResult on_br_table_expr(uint8_t arity,
                                   uint32_t num_targets,
                                   uint32_t* target_depths,
                                   uint32_t default_target_depth,
                                   void* user_data) {
  Context* ctx = user_data;
  WasmType key = pop_expr(ctx);
  WasmType value = pop_expr_if(ctx, arity == 1);
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, key, "br_table"));

  uint32_t i;
  for (i = 0; i <= num_targets; ++i) {
    uint32_t depth = i != num_targets ? target_depths[i] : default_target_depth;
    uint32_t translated_depth = translate_typecheck_depth(ctx, depth);
    TypecheckLabel* label = get_typecheck_label(ctx, translated_depth);
    CHECK_RESULT(unify_and_check_type(ctx, &label->type, value, "br_table"));
  }

  push_expr(ctx, WASM_TYPE_ANY, WASM_OPCODE_BR_TABLE);
  return WASM_OK;
}

static WasmResult on_call_expr(uint32_t arity,
                               uint32_t func_index,
                               void* user_data) {
  Context* ctx = user_data;
  assert(func_index < ctx->funcs.size);
  InterpreterFunc* func = get_func(ctx, func_index);
  WasmInterpreterFuncSignature* sig = get_func_signature(ctx, func);

  uint32_t i;
  for (i = sig->param_types.size; i > 0; --i) {
    WasmType arg = pop_expr(ctx);
    CHECK_RESULT(check_type(ctx, sig->param_types.data[i - 1], arg, "call"));
  }

  push_expr(ctx, sig->result_type, WASM_OPCODE_CALL_FUNCTION);
  return WASM_OK;
}

static WasmResult on_call_import_expr(uint32_t arity,
                                      uint32_t import_index,
                                      void* user_data) {
  Context* ctx = user_data;
  assert(import_index < ctx->module->imports.size);
  WasmInterpreterImport* import = get_import(ctx, import_index);
  WasmInterpreterFuncSignature* sig = get_signature(ctx, import->sig_index);

  uint32_t i;
  for (i = sig->param_types.size; i > 0; --i) {
    WasmType arg = pop_expr(ctx);
    CHECK_RESULT(
        check_type(ctx, sig->param_types.data[i - 1], arg, "call_import"));
  }

  push_expr(ctx, sig->result_type, WASM_OPCODE_CALL_IMPORT);
  return WASM_OK;
}

static WasmResult on_call_indirect_expr(uint32_t arity,
                                        uint32_t sig_index,
                                        void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterFuncSignature* sig = get_signature(ctx, sig_index);

  uint32_t i;
  for (i = sig->param_types.size; i > 0; --i) {
    WasmType arg = pop_expr(ctx);
    CHECK_RESULT(
        check_type(ctx, sig->param_types.data[i - 1], arg, "call_indirect"));
  }

  WasmType entry_index = pop_expr(ctx);
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, entry_index, "call_indirect"));
  push_expr(ctx, sig->result_type, WASM_OPCODE_CALL_INDIRECT);
  return WASM_OK;
}

static WasmResult on_i32_const_expr(uint32_t value, void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_I32, WASM_OPCODE_I32_CONST);
  return WASM_OK;
}

static WasmResult on_i64_const_expr(uint64_t value, void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_I64, WASM_OPCODE_I64_CONST);
  return WASM_OK;
}

static WasmResult on_f32_const_expr(uint32_t value_bits, void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_F32, WASM_OPCODE_F32_CONST);
  return WASM_OK;
}

static WasmResult on_f64_const_expr(uint64_t value_bits, void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_F64, WASM_OPCODE_F64_CONST);
  return WASM_OK;
}

static WasmResult on_get_local_expr(uint32_t local_index, void* user_data) {
  Context* ctx = user_data;
  CHECK_LOCAL(ctx, local_index);
  WasmType type = get_local_index_type(ctx->current_func, local_index);
  push_expr(ctx, type, WASM_OPCODE_GET_LOCAL);
  return WASM_OK;
}

static WasmResult on_set_local_expr(uint32_t local_index, void* user_data) {
  Context* ctx = user_data;
  CHECK_LOCAL(ctx, local_index);
  WasmType type = get_local_index_type(ctx->current_func, local_index);
  WasmType value = pop_expr(ctx);
  CHECK_RESULT(check_type(ctx, type, value, "set_local"));
  push_expr(ctx, type, WASM_OPCODE_SET_LOCAL);
  return WASM_OK;
}

static WasmResult on_grow_memory_expr(void* user_data) {
  Context* ctx = user_data;
  WasmType value = pop_expr(ctx);
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, value, "grow_memory"));
  push_expr(ctx, WASM_TYPE_I32, WASM_OPCODE_GROW_MEMORY);
  return WASM_OK;
}

static WasmResult on_load_expr(WasmOpcode opcode,
                               uint32_t alignment_log2,
                               uint32_t offset,
                               void* user_data) {
  Context* ctx = user_data;
  WasmType addr = pop_expr(ctx);
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, addr, s_opcode_name[opcode]));
  push_expr(ctx, s_opcode_rtype[opcode], opcode);
  return WASM_OK;
}

static WasmResult on_store_expr(WasmOpcode opcode,
                                uint32_t alignment_log2,
                                uint32_t offset,
                                void* user_data) {
  Context* ctx = user_data;
  WasmType value = pop_expr(ctx);
  WasmType addr = pop_expr(ctx);
  WasmType type = s_opcode_rtype[opcode];
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, addr, s_opcode_name[opcode]));
  CHECK_RESULT(check_type(ctx, type, value, s_opcode_name[opcode]));
  push_expr(ctx, type, opcode);
  return WASM_OK;
}

static WasmResult on_current_memory_expr(void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_I32, WASM_OPCODE_CURRENT_MEMORY);
  return WASM_OK;
}

static WasmResult on_nop_expr(void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_VOID, WASM_OPCODE_NOP);
  return WASM_OK;
}

static WasmResult on_return_expr(uint8_t arity, void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterFuncSignature* sig =
      get_func_signature(ctx, ctx->current_func);
  if (get_value_count(sig->result_type)) {
    WasmType value = pop_expr_if(ctx, arity == 1);
    CHECK_RESULT(check_type(ctx, sig->result_type, value, "return"));
  }
  push_expr(ctx, WASM_TYPE_ANY, WASM_OPCODE_RETURN);
  return WASM_OK;
}

static WasmResult on_select_expr(void* user_data) {
  Context* ctx = user_data;
  WasmType cond = pop_expr(ctx);
  WasmType right = pop_expr(ctx);
  WasmType left = pop_expr(ctx);
  WasmType type = WASM_TYPE_ANY;
  CHECK_RESULT(unify_and_check_type(ctx, &type, left, "select"));
  CHECK_RESULT(unify_and_check_type(ctx, &type, right, "select"));
  CHECK_RESULT(check_type(ctx, WASM_TYPE_I32, cond, "select"));
  push_expr(ctx, type, WASM_OPCODE_SELECT);
  return WASM_OK;
}

static WasmResult on_unreachable_expr(void* user_data) {
  Context* ctx = user_data;
  push_expr(ctx, WASM_TYPE_ANY, WASM_OPCODE_UNREACHABLE);
  return WASM_OK;
}

/*** emit pass ****************************************************************/

static uint32_t get_istream_offset(Context* ctx) {
  return ctx->istream_offset;
}

static WasmResult emit_data_at(Context* ctx,
                               size_t offset,
                               const void* data,
                               size_t size) {
  return ctx->istream_writer.base.write_data(
      offset, data, size, ctx->istream_writer.base.user_data);
}

static WasmResult emit_data(Context* ctx, const void* data, size_t size) {
  CHECK_RESULT(emit_data_at(ctx, ctx->istream_offset, data, size));
  ctx->istream_offset += size;
  return WASM_OK;
}

static WasmResult emit_opcode(Context* ctx, WasmOpcode opcode) {
  return emit_data(ctx, &opcode, sizeof(uint8_t));
}

static WasmResult emit_i8(Context* ctx, uint8_t value) {
  return emit_data(ctx, &value, sizeof(value));
}

static WasmResult emit_i32(Context* ctx, uint32_t value) {
  return emit_data(ctx, &value, sizeof(value));
}

static WasmResult emit_i64(Context* ctx, uint64_t value) {
  return emit_data(ctx, &value, sizeof(value));
}

static WasmResult emit_i32_at(Context* ctx, uint32_t offset, uint32_t value) {
  return emit_data_at(ctx, offset, &value, sizeof(value));
}

static void adjust_value_stack(Context* ctx, int32_t amount) {
  uint32_t old_size = ctx->value_stack_size;
  uint32_t new_size = old_size + (uint32_t)amount;
  assert((amount <= 0 && new_size <= old_size) ||
         (amount > 0 && new_size > old_size));
  WASM_USE(old_size);
  WASM_USE(new_size);
  ctx->value_stack_size += (uint32_t)amount;
#ifndef NDEBUG
  if (ctx->emit_label_stack.size > 0) {
    assert(ctx->value_stack_size >=
           ctx->emit_label_stack.data[ctx->emit_label_stack.size - 1]
               .value_stack_size);
  } else {
    assert(ctx->value_stack_size >=
           ctx->current_func->param_and_local_types.size);
  }
#endif
}

static void adjust_value_stack_for_nonlocal_continuation(Context* ctx) {
  /* adjust stack up; these operations type-check as ANY, so they can be used in
   * any operation. No value will actually be pushed, and the expressions that
   * use the result won't ever be executed. But it will make the stack the
   * "normal" size, so we won't have to special case it anywhere else. */
  adjust_value_stack(ctx, is_expr_discarded(ctx, ctx->expr_count) ? 0 : 1);
}

static EmitLabel* get_emit_label(Context* ctx, uint32_t depth) {
  assert(depth < ctx->emit_label_stack.size);
  return &ctx->emit_label_stack.data[depth];
}

static EmitLabel* top_emit_label(Context* ctx) {
  return get_emit_label(ctx, ctx->emit_label_stack.size - 1);
}

static uint32_t translate_emit_depth(Context* ctx, uint32_t depth) {
  return translate_depth(ctx, ctx->emit_label_stack.size, depth);
}

static WasmResult push_emit_label(Context* ctx,
                                  LabelType label_type,
                                  uint32_t offset,
                                  uint32_t fixup_offset,
                                  WasmBool has_value) {
  EmitLabel* label =
      wasm_append_emit_label(ctx->allocator, &ctx->emit_label_stack);
  label->label_type = label_type;
  label->offset = offset;
  label->value_stack_size = ctx->value_stack_size;
  label->has_value = has_value;
  label->fixup_offset = fixup_offset;
  LOGF("   : +depth %" PRIzd "\n", ctx->emit_label_stack.size - 1);
  return WASM_OK;
}

static void pop_emit_label(Context* ctx) {
  LOGF("   : -depth %" PRIzd "\n", ctx->emit_label_stack.size - 1);
  assert(ctx->emit_label_stack.size > 0);
  ctx->emit_label_stack.size--;
  /* reduce the depth_fixups stack as well, but it may be smaller than
   * emit_label_stack so only do it conditionally. */
  if (ctx->depth_fixups.size > ctx->emit_label_stack.size) {
    uint32_t from = ctx->emit_label_stack.size;
    uint32_t to = ctx->depth_fixups.size;
    uint32_t i;
    for (i = from; i < to; ++i)
      wasm_destroy_uint32_vector(ctx->allocator, &ctx->depth_fixups.data[i]);
    ctx->depth_fixups.size = ctx->emit_label_stack.size;
  }
}

static WasmResult fixup_top_emit_label(Context* ctx, uint32_t offset) {
  uint32_t top = ctx->emit_label_stack.size - 1;
  if (top >= ctx->depth_fixups.size) {
    /* nothing to fixup */
    return WASM_OK;
  }

  Uint32Vector* fixups = &ctx->depth_fixups.data[top];
  uint32_t i;
  for (i = 0; i < fixups->size; ++i)
    CHECK_RESULT(emit_i32_at(ctx, fixups->data[i], offset));
  /* reduce the size to 0 in case this gets reused. Keep the allocations for
   * later use */
  fixups->size = 0;
  return WASM_OK;
}

static WasmResult emit_discard(Context* ctx) {
  LOGF("%3" PRIzd ": discard\n", ctx->value_stack_size);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_DISCARD));
  adjust_value_stack(ctx, -1);
  return WASM_OK;
}

static WasmResult maybe_emit_discard(Context* ctx, uint32_t expr_index) {
  WasmBool should_discard = is_expr_discarded(ctx, expr_index);
  if (should_discard)
    return emit_discard(ctx);
  return WASM_OK;
}

static WasmResult emit_discard_keep(Context* ctx,
                                    uint32_t discard,
                                    uint8_t keep) {
  assert(discard != UINT32_MAX);
  assert(keep <= 1);
  if (discard > 0) {
    if (discard == 1 && keep == 0) {
      LOGF("%3" PRIzd ": discard\n", ctx->value_stack_size);
      CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_DISCARD));
    } else {
      LOGF("%3" PRIzd ": discard_keep %u %u\n", ctx->value_stack_size, discard,
           keep);
      CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_DISCARD_KEEP));
      CHECK_RESULT(emit_i32(ctx, discard));
      CHECK_RESULT(emit_i8(ctx, keep));
    }
  }
  return WASM_OK;
}

static WasmResult emit_return(Context* ctx, WasmType result_type) {
  uint32_t keep_count = get_value_count(result_type);
  uint32_t discard_count = ctx->value_stack_size - keep_count;
  CHECK_RESULT(emit_discard_keep(ctx, discard_count, keep_count));
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_RETURN));
  return WASM_OK;
}

static WasmResult append_fixup(Context* ctx,
                               Uint32VectorVector* fixups_vector,
                               uint32_t index) {
  if (index >= fixups_vector->size)
    wasm_resize_uint32_vector_vector(ctx->allocator, fixups_vector, index + 1);
  Uint32Vector* fixups = &fixups_vector->data[index];
  uint32_t offset = get_istream_offset(ctx);
  wasm_append_uint32_value(ctx->allocator, fixups, &offset);
  return WASM_OK;
}

static WasmResult emit_br_offset(Context* ctx,
                                 uint32_t depth,
                                 uint32_t offset) {
  if (offset == WASM_INVALID_OFFSET)
    CHECK_RESULT(append_fixup(ctx, &ctx->depth_fixups, depth));
  CHECK_RESULT(emit_i32(ctx, offset));
  return WASM_OK;
}

static WasmResult emit_br(Context* ctx, uint32_t depth) {
  EmitLabel* label = get_emit_label(ctx, depth);
  assert(ctx->value_stack_size >= label->value_stack_size);
  uint8_t keep_count = label->has_value ? 1 : 0;
  uint32_t discard_count =
      (ctx->value_stack_size - label->value_stack_size) - keep_count;
  CHECK_RESULT(emit_discard_keep(ctx, discard_count, keep_count));
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_BR));
  CHECK_RESULT(emit_br_offset(ctx, depth, label->offset));
  return WASM_OK;
}

static WasmResult emit_br_table_offset(Context* ctx, uint32_t depth) {
  EmitLabel* label = get_emit_label(ctx, depth);
  uint8_t keep_count = label->has_value ? 1 : 0;
  uint32_t discard_count =
      (ctx->value_stack_size - label->value_stack_size) - keep_count;
  CHECK_RESULT(emit_br_offset(ctx, depth, label->offset));
  CHECK_RESULT(emit_i32(ctx, discard_count));
  CHECK_RESULT(emit_i8(ctx, keep_count));
  return WASM_OK;
}

static WasmResult emit_func_offset(Context* ctx,
                                   InterpreterFunc* func,
                                   uint32_t func_index) {
  if (func->offset == WASM_INVALID_OFFSET)
    CHECK_RESULT(append_fixup(ctx, &ctx->func_fixups, func_index));
  CHECK_RESULT(emit_i32(ctx, func->offset));
  return WASM_OK;
}

static WasmResult begin_emit_function_body(uint32_t index, void* user_data) {
  Context* ctx = user_data;
  InterpreterFunc* func = get_func(ctx, index);
  WasmInterpreterFuncSignature* sig = get_signature(ctx, func->sig_index);

  func->offset = get_istream_offset(ctx);
  func->local_decl_count = 0;
  func->local_count = 0;

  ctx->current_func = func;
  ctx->emit_label_stack.size = 0;
  ctx->depth_fixups.size = 0;
  ctx->value_stack_size = sig->param_types.size;
  ctx->depth = 0;
  ctx->expr_count = 0;

  /* fixup function references */
  uint32_t i;
  Uint32Vector* fixups = &ctx->func_fixups.data[index];
  for (i = 0; i < fixups->size; ++i)
    CHECK_RESULT(emit_i32_at(ctx, fixups->data[i], func->offset));

  return WASM_OK;
}

static WasmResult end_emit_function_body(uint32_t index, void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterFuncSignature* sig =
      get_func_signature(ctx, ctx->current_func);
  CHECK_RESULT(emit_return(ctx, sig->result_type));
  ctx->current_func = NULL;
  ctx->value_stack_size = 0;
  return WASM_OK;
}

static WasmResult on_emit_local_decl_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  ctx->current_func->local_decl_count = count;
  return WASM_OK;
}

static WasmResult on_emit_local_decl(uint32_t decl_index,
                                     uint32_t count,
                                     WasmType type,
                                     void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_ALLOCA]);
  InterpreterFunc* func = ctx->current_func;
  func->local_count += count;

  if (decl_index == func->local_decl_count - 1) {
    /* last local declaration, allocate space for all locals. */
    CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_ALLOCA));
    CHECK_RESULT(emit_i32(ctx, func->local_count));
    adjust_value_stack(ctx, func->local_count);
  }
  return WASM_OK;
}

static WasmResult on_emit_unary_expr(WasmOpcode opcode, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size, s_opcode_name[opcode]);
  CHECK_RESULT(emit_opcode(ctx, opcode));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_binary_expr(WasmOpcode opcode, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size, s_opcode_name[opcode]);
  adjust_value_stack(ctx, -1);
  CHECK_RESULT(emit_opcode(ctx, opcode));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_block_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_BLOCK]);
  CHECK_RESULT(push_emit_label(ctx, LABEL_TYPE_BLOCK, WASM_INVALID_OFFSET, 0,
                               !is_expr_discarded(ctx, ctx->expr_count)));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_loop_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_LOOP]);

  CHECK_RESULT(push_emit_label(ctx, LABEL_TYPE_LOOP, WASM_INVALID_OFFSET, 0,
                               !is_expr_discarded(ctx, ctx->expr_count)));
  CHECK_RESULT(push_emit_label(ctx, LABEL_TYPE_LOOP, get_istream_offset(ctx), 0,
                               WASM_FALSE));

  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_if_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_IF]);

  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_BR_UNLESS));
  adjust_value_stack(ctx, -1);
  uint32_t fixup_offset = get_istream_offset(ctx);
  CHECK_RESULT(emit_i32(ctx, WASM_INVALID_OFFSET));

  CHECK_RESULT(push_emit_label(ctx, LABEL_TYPE_IF, WASM_INVALID_OFFSET,
                               fixup_offset,
                               !is_expr_discarded(ctx, ctx->expr_count)));

  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_else_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_ELSE]);
  EmitLabel* label = top_emit_label(ctx);
  assert(label->label_type == LABEL_TYPE_IF);
  label->label_type = LABEL_TYPE_ELSE;
  uint32_t fixup_cond_offset = label->fixup_offset;
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_BR));
  label->fixup_offset = get_istream_offset(ctx);
  CHECK_RESULT(emit_i32(ctx, WASM_INVALID_OFFSET));
  CHECK_RESULT(emit_i32_at(ctx, fixup_cond_offset, get_istream_offset(ctx)));
  /* reset the value stack for the other branch arm */
  ctx->value_stack_size = label->value_stack_size;
  return WASM_OK;
}

static WasmResult on_emit_end_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_END]);
  EmitLabel* label = top_emit_label(ctx);
  switch (label->label_type) {
    case LABEL_TYPE_LOOP:
      /* pop the continue label */
      pop_emit_label(ctx);
      label = top_emit_label(ctx);
      assert(label->label_type == LABEL_TYPE_LOOP);
      break;

    case LABEL_TYPE_IF:
    case LABEL_TYPE_ELSE: {
      uint32_t fixup_true_offset = label->fixup_offset;
      CHECK_RESULT(
          emit_i32_at(ctx, fixup_true_offset, get_istream_offset(ctx)));
      break;
    }

    default:
      break;
  }
  fixup_top_emit_label(ctx, get_istream_offset(ctx));
  ctx->value_stack_size = label->value_stack_size;
  adjust_value_stack(ctx, label->has_value ? 1 : 0);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  pop_emit_label(ctx);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_br_expr(uint8_t arity,
                                  uint32_t depth,
                                  void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_BR]);
  CHECK_RESULT(emit_br(ctx, translate_emit_depth(ctx, depth)));
  adjust_value_stack_for_nonlocal_continuation(ctx);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_br_if_expr(uint8_t arity,
                                     uint32_t depth,
                                     void* user_data) {
  /* flip the br_if so if <cond> is true it can discard values from the stack */
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_BR_IF]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_BR_UNLESS));
  adjust_value_stack(ctx, -1); /* account for br_unless consuming <cond> */
  uint32_t fixup_br_offset = get_istream_offset(ctx);
  CHECK_RESULT(emit_i32(ctx, WASM_INVALID_OFFSET));
  CHECK_RESULT(emit_br(ctx, translate_emit_depth(ctx, depth)));
  CHECK_RESULT(emit_i32_at(ctx, fixup_br_offset, get_istream_offset(ctx)));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_br_table_expr(uint8_t arity,
                                        uint32_t num_targets,
                                        uint32_t* target_depths,
                                        uint32_t default_target_depth,
                                        void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_BR_TABLE]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_BR_TABLE));
  CHECK_RESULT(emit_i32(ctx, num_targets));
  uint32_t fixup_table_offset = get_istream_offset(ctx);
  CHECK_RESULT(emit_i32(ctx, WASM_INVALID_OFFSET));
  adjust_value_stack(ctx, -1);

  /* not necessary for the interpreter, but it makes it easier to disassemble.
   * This opcode specifies how many bytes of data follow. */
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_DATA));
  CHECK_RESULT(emit_i32(ctx, (num_targets + 1) * WASM_TABLE_ENTRY_SIZE));
  CHECK_RESULT(emit_i32_at(ctx, fixup_table_offset, get_istream_offset(ctx)));

  /* write the branch table as (offset, discard count) pairs */
  uint32_t i;
  for (i = 0; i <= num_targets; ++i) {
    uint32_t depth = i != num_targets ? target_depths[i] : default_target_depth;
    CHECK_RESULT(emit_br_table_offset(ctx, translate_emit_depth(ctx, depth)));
  }

  adjust_value_stack_for_nonlocal_continuation(ctx);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_call_expr(uint32_t arity,
                                    uint32_t func_index,
                                    void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_CALL_FUNCTION]);
  InterpreterFunc* func = get_func(ctx, func_index);
  WasmInterpreterFuncSignature* sig = get_func_signature(ctx, func);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_CALL_FUNCTION));
  CHECK_RESULT(emit_func_offset(ctx, func, func_index));
  adjust_value_stack(ctx,
                     get_value_count(sig->result_type) - sig->param_types.size);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_call_import_expr(uint32_t arity,
                                           uint32_t import_index,
                                           void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_CALL_IMPORT]);
  WasmInterpreterImport* import = get_import(ctx, import_index);
  WasmInterpreterFuncSignature* sig = get_signature(ctx, import->sig_index);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_CALL_IMPORT));
  CHECK_RESULT(emit_i32(ctx, import_index));
  adjust_value_stack(ctx,
                     get_value_count(sig->result_type) - sig->param_types.size);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_call_indirect_expr(uint32_t arity,
                                             uint32_t sig_index,
                                             void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_CALL_INDIRECT]);
  WasmInterpreterFuncSignature* sig = get_signature(ctx, sig_index);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_CALL_INDIRECT));
  CHECK_RESULT(emit_i32(ctx, sig_index));
  uint32_t result_count = get_value_count(sig->result_type);
  /* the callee cleans up the params for us, but we have to clean up the
   * function table index */
  adjust_value_stack(ctx, result_count - sig->param_types.size);
  CHECK_RESULT(emit_discard_keep(ctx, 1, result_count));
  adjust_value_stack(ctx, -1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_i32_const_expr(uint32_t value, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_I32_CONST]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_I32_CONST));
  CHECK_RESULT(emit_i32(ctx, value));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_i64_const_expr(uint64_t value, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_I64_CONST]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_I64_CONST));
  CHECK_RESULT(emit_i64(ctx, value));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_f32_const_expr(uint32_t value_bits, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_F32_CONST]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_F32_CONST));
  CHECK_RESULT(emit_i32(ctx, value_bits));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_f64_const_expr(uint64_t value_bits, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_F64_CONST]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_F64_CONST));
  CHECK_RESULT(emit_i64(ctx, value_bits));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_get_local_expr(uint32_t local_index,
                                         void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_GET_LOCAL]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_GET_LOCAL));
  CHECK_RESULT(emit_i32(ctx, translate_local_index(ctx, local_index)));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_set_local_expr(uint32_t local_index,
                                         void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_SET_LOCAL]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_SET_LOCAL));
  CHECK_RESULT(emit_i32(ctx, translate_local_index(ctx, local_index)));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_grow_memory_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_GROW_MEMORY]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_GROW_MEMORY));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_load_expr(WasmOpcode opcode,
                                    uint32_t alignment_log2,
                                    uint32_t offset,
                                    void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size, s_opcode_name[opcode]);
  CHECK_RESULT(emit_opcode(ctx, opcode));
  CHECK_RESULT(emit_i32(ctx, offset));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_store_expr(WasmOpcode opcode,
                                     uint32_t alignment_log2,
                                     uint32_t offset,
                                     void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size, s_opcode_name[opcode]);
  CHECK_RESULT(emit_opcode(ctx, opcode));
  CHECK_RESULT(emit_i32(ctx, offset));
  adjust_value_stack(ctx, -1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_current_memory_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_CURRENT_MEMORY]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_CURRENT_MEMORY));
  adjust_value_stack(ctx, 1);
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_nop_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_NOP]);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_return_expr(uint8_t arity, void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_RETURN]);
  WasmInterpreterFuncSignature* sig =
      get_func_signature(ctx, ctx->current_func);
  CHECK_RESULT(emit_return(ctx, sig->result_type));
  adjust_value_stack_for_nonlocal_continuation(ctx);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_select_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_SELECT]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_SELECT));
  CHECK_RESULT(maybe_emit_discard(ctx, ctx->expr_count));
  adjust_value_stack(ctx, -2);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_emit_unreachable_expr(void* user_data) {
  Context* ctx = user_data;
  LOGF("%3" PRIzd ": %s\n", ctx->value_stack_size,
       s_opcode_name[WASM_OPCODE_UNREACHABLE]);
  CHECK_RESULT(emit_opcode(ctx, WASM_OPCODE_UNREACHABLE));
  adjust_value_stack_for_nonlocal_continuation(ctx);
  ctx->expr_count++;
  return WASM_OK;
}

static WasmResult on_function_table_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  wasm_new_interpreter_func_table_entry_array(ctx->allocator,
                                              &ctx->module->func_table, count);
  return WASM_OK;
}

static WasmResult on_function_table_entry(uint32_t index,
                                          uint32_t func_index,
                                          void* user_data) {
  Context* ctx = user_data;
  assert(index < ctx->module->func_table.size);
  WasmInterpreterFuncTableEntry* entry = &ctx->module->func_table.data[index];
  InterpreterFunc* func = get_func(ctx, func_index);
  entry->sig_index = func->sig_index;
  /* the function offset isn't known yet, so temporarily store the func index
   * in func_offset and resolve after the last function body */
  entry->func_offset = func_index;
  return WASM_OK;
}

static WasmResult on_start_function(uint32_t func_index, void* user_data) {
  Context* ctx = user_data;
  /* can't get the function offset yet, because we haven't parsed the
   * functions. Just store the function index and resolve it later in
   * end_function_bodies_section. */
  assert(func_index < ctx->funcs.size);
  ctx->start_func_index = func_index;
  return WASM_OK;
}

static WasmResult on_export_count(uint32_t count, void* user_data) {
  Context* ctx = user_data;
  wasm_new_interpreter_export_array(ctx->allocator, &ctx->module->exports,
                                    count);
  return WASM_OK;
}

static WasmResult on_export(uint32_t index,
                            uint32_t func_index,
                            WasmStringSlice name,
                            void* user_data) {
  Context* ctx = user_data;
  WasmInterpreterExport* export = &ctx->module->exports.data[index];
  InterpreterFunc* func = get_func(ctx, func_index);
  export->name = wasm_dup_string_slice(ctx->allocator, name);
  export->func_index = func_index;
  export->sig_index = func->sig_index;
  export->func_offset = WASM_INVALID_OFFSET;
  return WASM_OK;
}

static WasmResult end_function_bodies_section(void* user_data) {
  Context* ctx = user_data;

  /* resolve the start function offset */
  if (ctx->start_func_index != INVALID_FUNC_INDEX) {
    InterpreterFunc* func = get_func(ctx, ctx->start_func_index);
    assert(func->offset != WASM_INVALID_OFFSET);
    ctx->module->start_func_offset = func->offset;
  }

  /* resolve the export function offsets */
  uint32_t i;
  for (i = 0; i < ctx->module->exports.size; ++i) {
    WasmInterpreterExport* export = get_export(ctx, i);
    InterpreterFunc* func = get_func(ctx, export->func_index);
    export->func_offset = func->offset;
  }

  /* resolve the function table entry offsets */
  for (i = 0; i < ctx->module->func_table.size; ++i) {
    WasmInterpreterFuncTableEntry* entry = &ctx->module->func_table.data[i];
    /* function index is stored in func_offset temporarily */
    InterpreterFunc* func = get_func(ctx, entry->func_offset);
    entry->func_offset = func->offset;
  }

  return WASM_OK;
}

static WasmBinaryReader s_binary_reader = {
    .user_data = NULL,
    .on_error = &on_error,

    .on_memory_initial_size_pages = &on_memory_initial_size_pages,

    .on_data_segment = &on_data_segment,

    .on_signature_count = &on_signature_count,
    .on_signature = &on_signature,

    .on_import_count = &on_import_count,
    .on_import = &on_import,

    .on_function_signatures_count = &on_function_signatures_count,
    .on_function_signature = &on_function_signature,

    .on_function_bodies_count = &on_function_bodies_count,
    .begin_function_body_pass = &begin_function_body_pass,
    .begin_function_body = &begin_function_body,
    .on_local_decl = &on_local_decl,
    .on_binary_expr = &on_binary_expr,
    .on_block_expr = &on_block_expr,
    .on_br_expr = &on_br_expr,
    .on_br_if_expr = &on_br_if_expr,
    .on_br_table_expr = &on_br_table_expr,
    .on_call_expr = &on_call_expr,
    .on_call_import_expr = &on_call_import_expr,
    .on_call_indirect_expr = &on_call_indirect_expr,
    .on_compare_expr = &on_binary_expr,
    .on_convert_expr = &on_unary_expr,
    .on_else_expr = &on_else_expr,
    .on_end_expr = &on_end_expr,
    .on_f32_const_expr = &on_f32_const_expr,
    .on_f64_const_expr = &on_f64_const_expr,
    .on_get_local_expr = &on_get_local_expr,
    .on_grow_memory_expr = &on_grow_memory_expr,
    .on_i32_const_expr = &on_i32_const_expr,
    .on_i64_const_expr = &on_i64_const_expr,
    .on_if_expr = &on_if_expr,
    .on_load_expr = &on_load_expr,
    .on_loop_expr = &on_loop_expr,
    .on_current_memory_expr = &on_current_memory_expr,
    .on_nop_expr = &on_nop_expr,
    .on_return_expr = &on_return_expr,
    .on_select_expr = &on_select_expr,
    .on_set_local_expr = &on_set_local_expr,
    .on_store_expr = &on_store_expr,
    .on_unary_expr = &on_unary_expr,
    .on_unreachable_expr = &on_unreachable_expr,
    .end_function_body = &end_function_body,
    .end_function_bodies_section = &end_function_bodies_section,
    .end_function_body_pass = &end_function_body_pass,

    .on_function_table_count = &on_function_table_count,
    .on_function_table_entry = &on_function_table_entry,

    .on_start_function = &on_start_function,

    .on_export_count = &on_export_count,
    .on_export = &on_export,
};

static WasmBinaryReader s_binary_reader_emit = {
    .on_error = &on_error,
    .begin_function_body_pass = &begin_function_body_pass,
    .begin_function_body = &begin_emit_function_body,
    .on_local_decl_count = &on_emit_local_decl_count,
    .on_local_decl = &on_emit_local_decl,
    .on_binary_expr = &on_emit_binary_expr,
    .on_block_expr = &on_emit_block_expr,
    .on_br_expr = &on_emit_br_expr,
    .on_br_if_expr = &on_emit_br_if_expr,
    .on_br_table_expr = &on_emit_br_table_expr,
    .on_call_expr = &on_emit_call_expr,
    .on_call_import_expr = &on_emit_call_import_expr,
    .on_call_indirect_expr = &on_emit_call_indirect_expr,
    .on_compare_expr = &on_emit_binary_expr,
    .on_convert_expr = &on_emit_unary_expr,
    .on_else_expr = &on_emit_else_expr,
    .on_end_expr = &on_emit_end_expr,
    .on_f32_const_expr = &on_emit_f32_const_expr,
    .on_f64_const_expr = &on_emit_f64_const_expr,
    .on_get_local_expr = &on_emit_get_local_expr,
    .on_grow_memory_expr = &on_emit_grow_memory_expr,
    .on_i32_const_expr = &on_emit_i32_const_expr,
    .on_i64_const_expr = &on_emit_i64_const_expr,
    .on_if_expr = &on_emit_if_expr,
    .on_load_expr = &on_emit_load_expr,
    .on_loop_expr = &on_emit_loop_expr,
    .on_current_memory_expr = &on_emit_current_memory_expr,
    .on_nop_expr = &on_emit_nop_expr,
    .on_return_expr = &on_emit_return_expr,
    .on_select_expr = &on_emit_select_expr,
    .on_set_local_expr = &on_emit_set_local_expr,
    .on_store_expr = &on_emit_store_expr,
    .on_unary_expr = &on_emit_unary_expr,
    .on_unreachable_expr = &on_emit_unreachable_expr,
    .end_function_body = &end_emit_function_body,
    .end_function_body_pass = &end_function_body_pass,
};

static WasmResult begin_function_body_pass(uint32_t index,
                                           uint32_t pass,
                                           void* user_data) {
  LOGF("*** func %d pass %d ***\n", index, pass);
  Context* ctx = user_data;
  assert(pass < 2);
  *ctx->reader = pass == 0 ? s_binary_reader : s_binary_reader_emit;
  ctx->reader->user_data = user_data;
  return WASM_OK;
}

static WasmResult end_function_body_pass(uint32_t index,
                                         uint32_t pass,
                                         void* user_data) {
  Context* ctx = user_data;
  /* reset the reader to its original callbacks */
  if (pass == 1)
    *ctx->reader = s_binary_reader;
  ctx->reader->user_data = user_data;
  return WASM_OK;
}

static void wasm_destroy_interpreter_func(WasmAllocator* allocator,
                                          InterpreterFunc* func) {
  wasm_destroy_type_vector(allocator, &func->param_and_local_types);
}

static void destroy_context(Context* ctx) {
  wasm_destroy_uint32_vector(ctx->allocator, &ctx->discarded_exprs);
  wasm_destroy_expr_node_vector(ctx->allocator, &ctx->expr_stack);
  wasm_destroy_emit_label_vector(ctx->allocator, &ctx->emit_label_stack);
  wasm_destroy_typecheck_label_vector(ctx->allocator,
                                      &ctx->typecheck_label_stack);
  WASM_DESTROY_ARRAY_AND_ELEMENTS(ctx->allocator, ctx->funcs, interpreter_func);
  WASM_DESTROY_VECTOR_AND_ELEMENTS(ctx->allocator, ctx->depth_fixups,
                                   uint32_vector);
  WASM_DESTROY_VECTOR_AND_ELEMENTS(ctx->allocator, ctx->func_fixups,
                                   uint32_vector);
}

WasmResult wasm_read_binary_interpreter(WasmAllocator* allocator,
                                        WasmAllocator* memory_allocator,
                                        const void* data,
                                        size_t size,
                                        const WasmReadBinaryOptions* options,
                                        WasmBinaryErrorHandler* error_handler,
                                        WasmInterpreterModule* out_module) {
  Context ctx;
  WasmBinaryReader reader;

  WASM_ZERO_MEMORY(ctx);
  WASM_ZERO_MEMORY(reader);

  ctx.allocator = allocator;
  ctx.reader = &reader;
  ctx.error_handler = error_handler;
  ctx.memory_allocator = memory_allocator;
  ctx.module = out_module;
  ctx.start_func_index = INVALID_FUNC_INDEX;
  ctx.module->start_func_offset = WASM_INVALID_OFFSET;
  CHECK_RESULT(wasm_init_mem_writer(allocator, &ctx.istream_writer));

  reader = s_binary_reader;
  reader.user_data = &ctx;

  const uint32_t num_function_passes = 2;
  WasmResult result = wasm_read_binary(allocator, data, size, &reader,
                                       num_function_passes, options);
  if (WASM_SUCCEEDED(result)) {
    wasm_steal_mem_writer_output_buffer(&ctx.istream_writer,
                                        &out_module->istream);
    out_module->istream.size = ctx.istream_offset;
  } else {
    wasm_close_mem_writer(&ctx.istream_writer);
  }
  destroy_context(&ctx);
  return result;
}