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
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
|
/*
* Copyright 2023 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.
*/
#ifndef parser_context_h
#define parser_context_h
#include "common.h"
#include "ir/names.h"
#include "lexer.h"
#include "support/name.h"
#include "support/result.h"
#include "support/string.h"
#include "wasm-builder.h"
#include "wasm-ir-builder.h"
#include "wasm.h"
namespace wasm::WATParser {
using IndexMap = std::unordered_map<Name, Index>;
inline std::vector<Type> getUnnamedTypes(const std::vector<NameType>& named) {
std::vector<Type> types;
types.reserve(named.size());
for (auto& t : named) {
types.push_back(t.type);
}
return types;
}
struct Limits {
uint64_t initial;
std::optional<uint64_t> max;
};
struct MemType {
Type addressType;
Limits limits;
bool shared;
};
struct Memarg {
uint64_t offset;
uint32_t align;
};
struct TableType {
Type addressType;
Limits limits;
};
// The location, possible name, and index in the respective module index space
// of a module-level definition in the input.
struct DefPos {
Name name;
Index pos;
Index index;
std::vector<Annotation> annotations;
};
struct GlobalType {
Mutability mutability;
Type type;
};
// A signature type and parameter names (possibly empty), used for parsing
// function types.
struct TypeUse {
HeapType type;
std::vector<Name> names;
};
struct NullTypeParserCtx {
using IndexT = Ok;
using HeapTypeT = Ok;
using TupleElemListT = Ok;
using TypeT = Ok;
using ParamsT = Ok;
using ResultsT = size_t;
using BlockTypeT = Ok;
using SignatureT = Ok;
using ContinuationT = Ok;
using StorageT = Ok;
using FieldT = Ok;
using FieldsT = Ok;
using StructT = Ok;
using ArrayT = Ok;
using LimitsT = Ok;
using MemTypeT = Ok;
using GlobalTypeT = Ok;
using TypeUseT = Ok;
using LocalsT = Ok;
using ElemListT = Ok;
using DataStringT = Ok;
HeapTypeT makeFuncType(Shareability) { return Ok{}; }
HeapTypeT makeAnyType(Shareability) { return Ok{}; }
HeapTypeT makeExternType(Shareability) { return Ok{}; }
HeapTypeT makeEqType(Shareability) { return Ok{}; }
HeapTypeT makeI31Type(Shareability) { return Ok{}; }
HeapTypeT makeStructType(Shareability) { return Ok{}; }
HeapTypeT makeArrayType(Shareability) { return Ok{}; }
HeapTypeT makeExnType(Shareability) { return Ok{}; }
HeapTypeT makeStringType(Shareability) { return Ok{}; }
HeapTypeT makeContType(Shareability) { return Ok{}; }
HeapTypeT makeNoneType(Shareability) { return Ok{}; }
HeapTypeT makeNoextType(Shareability) { return Ok{}; }
HeapTypeT makeNofuncType(Shareability) { return Ok{}; }
HeapTypeT makeNoexnType(Shareability) { return Ok{}; }
HeapTypeT makeNocontType(Shareability) { return Ok{}; }
TypeT makeI32() { return Ok{}; }
TypeT makeI64() { return Ok{}; }
TypeT makeF32() { return Ok{}; }
TypeT makeF64() { return Ok{}; }
TypeT makeV128() { return Ok{}; }
TypeT makeRefType(HeapTypeT, Nullability) { return Ok{}; }
TupleElemListT makeTupleElemList() { return Ok{}; }
void appendTupleElem(TupleElemListT&, TypeT) {}
TypeT makeTupleType(TupleElemListT) { return Ok{}; }
ParamsT makeParams() { return Ok{}; }
void appendParam(ParamsT&, Name, TypeT) {}
// We have to count results because whether or not a block introduces a
// typeuse that may implicitly define a type depends on how many results it
// has.
size_t makeResults() { return 0; }
void appendResult(size_t& results, TypeT) { ++results; }
size_t getResultsSize(size_t results) { return results; }
SignatureT makeFuncType(ParamsT*, ResultsT*) { return Ok{}; }
ContinuationT makeContType(HeapTypeT) { return Ok{}; }
StorageT makeI8() { return Ok{}; }
StorageT makeI16() { return Ok{}; }
StorageT makeStorageType(TypeT) { return Ok{}; }
FieldT makeFieldType(StorageT, Mutability) { return Ok{}; }
FieldsT makeFields() { return Ok{}; }
void appendField(FieldsT&, Name, FieldT) {}
StructT makeStruct(FieldsT&) { return Ok{}; }
std::optional<ArrayT> makeArray(FieldsT&) { return Ok{}; }
GlobalTypeT makeGlobalType(Mutability, TypeT) { return Ok{}; }
LocalsT makeLocals() { return Ok{}; }
void appendLocal(LocalsT&, Name, TypeT) {}
Result<Index> getTypeIndex(Name) { return 1; }
Result<HeapTypeT> getHeapTypeFromIdx(Index) { return Ok{}; }
DataStringT makeDataString() { return Ok{}; }
void appendDataString(DataStringT&, std::string_view) {}
MemTypeT makeMemType(Type, LimitsT, bool) { return Ok{}; }
BlockTypeT getBlockTypeFromResult(size_t results) { return Ok{}; }
Result<> getBlockTypeFromTypeUse(Index, TypeUseT) { return Ok{}; }
bool skipFunctionBody() { return false; }
};
template<typename Ctx> struct TypeParserCtx {
using IndexT = Index;
using HeapTypeT = HeapType;
using TypeT = Type;
using ParamsT = std::vector<NameType>;
using ResultsT = std::vector<Type>;
using BlockTypeT = HeapType;
using SignatureT = Signature;
using ContinuationT = Continuation;
using StorageT = Field;
using FieldT = Field;
using FieldsT = std::pair<std::vector<Name>, std::vector<Field>>;
using StructT = std::pair<std::vector<Name>, Struct>;
using ArrayT = Array;
using LimitsT = Ok;
using MemTypeT = Ok;
using LocalsT = std::vector<NameType>;
using DataStringT = Ok;
// Map heap type names to their indices.
const IndexMap& typeIndices;
TypeParserCtx(const IndexMap& typeIndices) : typeIndices(typeIndices) {}
Ctx& self() { return *static_cast<Ctx*>(this); }
HeapTypeT makeFuncType(Shareability share) {
return HeapTypes::func.getBasic(share);
}
HeapTypeT makeAnyType(Shareability share) {
return HeapTypes::any.getBasic(share);
}
HeapTypeT makeExternType(Shareability share) {
return HeapTypes::ext.getBasic(share);
}
HeapTypeT makeEqType(Shareability share) {
return HeapTypes::eq.getBasic(share);
}
HeapTypeT makeI31Type(Shareability share) {
return HeapTypes::i31.getBasic(share);
}
HeapTypeT makeStructType(Shareability share) {
return HeapTypes::struct_.getBasic(share);
}
HeapTypeT makeArrayType(Shareability share) {
return HeapTypes::array.getBasic(share);
}
HeapTypeT makeExnType(Shareability share) {
return HeapTypes::exn.getBasic(share);
}
HeapTypeT makeStringType(Shareability share) {
return HeapTypes::string.getBasic(share);
}
HeapTypeT makeContType(Shareability share) {
return HeapTypes::cont.getBasic(share);
}
HeapTypeT makeNoneType(Shareability share) {
return HeapTypes::none.getBasic(share);
}
HeapTypeT makeNoextType(Shareability share) {
return HeapTypes::noext.getBasic(share);
}
HeapTypeT makeNofuncType(Shareability share) {
return HeapTypes::nofunc.getBasic(share);
}
HeapTypeT makeNoexnType(Shareability share) {
return HeapTypes::noexn.getBasic(share);
}
HeapTypeT makeNocontType(Shareability share) {
return HeapTypes::nocont.getBasic(share);
}
TypeT makeI32() { return Type::i32; }
TypeT makeI64() { return Type::i64; }
TypeT makeF32() { return Type::f32; }
TypeT makeF64() { return Type::f64; }
TypeT makeV128() { return Type::v128; }
TypeT makeRefType(HeapTypeT ht, Nullability nullability) {
return Type(ht, nullability);
}
std::vector<Type> makeTupleElemList() { return {}; }
void appendTupleElem(std::vector<Type>& elems, Type elem) {
elems.push_back(elem);
}
Result<TypeT> makeTupleType(const std::vector<Type>& types) {
return Tuple(types);
}
ParamsT makeParams() { return {}; }
void appendParam(ParamsT& params, Name id, TypeT type) {
params.push_back({id, type});
}
ResultsT makeResults() { return {}; }
void appendResult(ResultsT& results, TypeT type) { results.push_back(type); }
size_t getResultsSize(const ResultsT& results) { return results.size(); }
SignatureT makeFuncType(ParamsT* params, ResultsT* results) {
std::vector<Type> empty;
const auto& paramTypes = params ? getUnnamedTypes(*params) : empty;
const auto& resultTypes = results ? *results : empty;
return Signature(self().makeTupleType(paramTypes),
self().makeTupleType(resultTypes));
}
ContinuationT makeContType(HeapTypeT ft) { return Continuation(ft); }
StorageT makeI8() { return Field(Field::i8, Immutable); }
StorageT makeI16() { return Field(Field::i16, Immutable); }
StorageT makeStorageType(TypeT type) { return Field(type, Immutable); }
FieldT makeFieldType(FieldT field, Mutability mutability) {
if (field.packedType == Field::not_packed) {
return Field(field.type, mutability);
}
return Field(field.packedType, mutability);
}
FieldsT makeFields() { return {}; }
void appendField(FieldsT& fields, Name name, FieldT field) {
fields.first.push_back(name);
fields.second.push_back(field);
}
StructT makeStruct(FieldsT& fields) {
return {std::move(fields.first), Struct(std::move(fields.second))};
}
std::optional<ArrayT> makeArray(FieldsT& fields) {
if (fields.second.size() == 1) {
return Array(fields.second[0]);
}
return {};
}
LocalsT makeLocals() { return {}; }
void appendLocal(LocalsT& locals, Name id, TypeT type) {
locals.push_back({id, type});
}
Result<Index> getTypeIndex(Name id) {
auto it = typeIndices.find(id);
if (it == typeIndices.end()) {
return self().in.err("unknown type identifier");
}
return it->second;
}
DataStringT makeDataString() { return Ok{}; }
void appendDataString(DataStringT&, std::string_view) {}
Result<LimitsT> makeLimits(uint64_t, std::optional<uint64_t>) { return Ok{}; }
LimitsT getLimitsFromData(DataStringT) { return Ok{}; }
MemTypeT makeMemType(Type, LimitsT, bool) { return Ok{}; }
HeapType getBlockTypeFromResult(const std::vector<Type> results) {
assert(results.size() == 1);
return HeapType(Signature(Type::none, results[0]));
}
bool skipFunctionBody() { return false; }
};
struct NullInstrParserCtx {
using ExprT = Ok;
using CatchT = Ok;
using CatchListT = Ok;
using TagLabelListT = Ok;
using FieldIdxT = Ok;
using FuncIdxT = Ok;
using LocalIdxT = Ok;
using TableIdxT = Ok;
using MemoryIdxT = Ok;
using GlobalIdxT = Ok;
using ElemIdxT = Ok;
using DataIdxT = Ok;
using LabelIdxT = Ok;
using TagIdxT = Ok;
using MemargT = Ok;
Result<> makeExpr() { return Ok{}; }
template<typename HeapTypeT> FieldIdxT getFieldFromIdx(HeapTypeT, uint32_t) {
return Ok{};
}
template<typename HeapTypeT> FieldIdxT getFieldFromName(HeapTypeT, Name) {
return Ok{};
}
FuncIdxT getFuncFromIdx(uint32_t) { return Ok{}; }
FuncIdxT getFuncFromName(Name) { return Ok{}; }
LocalIdxT getLocalFromIdx(uint32_t) { return Ok{}; }
LocalIdxT getLocalFromName(Name) { return Ok{}; }
GlobalIdxT getGlobalFromIdx(uint32_t) { return Ok{}; }
GlobalIdxT getGlobalFromName(Name) { return Ok{}; }
TableIdxT getTableFromIdx(uint32_t) { return Ok{}; }
TableIdxT getTableFromName(Name) { return Ok{}; }
MemoryIdxT getMemoryFromIdx(uint32_t) { return Ok{}; }
MemoryIdxT getMemoryFromName(Name) { return Ok{}; }
ElemIdxT getElemFromIdx(uint32_t) { return Ok{}; }
ElemIdxT getElemFromName(Name) { return Ok{}; }
DataIdxT getDataFromIdx(uint32_t) { return Ok{}; }
DataIdxT getDataFromName(Name) { return Ok{}; }
LabelIdxT getLabelFromIdx(uint32_t, bool) { return Ok{}; }
LabelIdxT getLabelFromName(Name, bool) { return Ok{}; }
TagIdxT getTagFromIdx(uint32_t) { return Ok{}; }
TagIdxT getTagFromName(Name) { return Ok{}; }
MemargT getMemarg(uint64_t, uint32_t) { return Ok{}; }
template<typename BlockTypeT>
Result<> makeBlock(Index,
const std::vector<Annotation>&,
std::optional<Name>,
BlockTypeT) {
return Ok{};
}
template<typename BlockTypeT>
Result<> makeIf(Index,
const std::vector<Annotation>&,
std::optional<Name>,
BlockTypeT) {
return Ok{};
}
Result<> visitElse() { return Ok{}; }
template<typename BlockTypeT>
Result<> makeLoop(Index,
const std::vector<Annotation>&,
std::optional<Name>,
BlockTypeT) {
return Ok{};
}
template<typename BlockTypeT>
Result<> makeTry(Index,
const std::vector<Annotation>&,
std::optional<Name>,
BlockTypeT) {
return Ok{};
}
Result<> visitCatch(Index, TagIdxT) { return Ok{}; }
Result<> visitCatchAll(Index) { return Ok{}; }
Result<> visitDelegate(Index, LabelIdxT) { return Ok{}; }
Result<> visitEnd() { return Ok{}; }
CatchListT makeCatchList() { return Ok{}; }
void appendCatch(CatchListT&, CatchT) {}
CatchT makeCatch(TagIdxT, LabelIdxT) { return Ok{}; }
CatchT makeCatchRef(TagIdxT, LabelIdxT) { return Ok{}; }
CatchT makeCatchAll(LabelIdxT) { return Ok{}; }
CatchT makeCatchAllRef(LabelIdxT) { return Ok{}; }
template<typename BlockTypeT>
Result<> makeTryTable(Index,
const std::vector<Annotation>&,
std::optional<Name>,
BlockTypeT,
CatchListT) {
return Ok{};
}
TagLabelListT makeTagLabelList() { return Ok{}; }
void appendTagLabel(TagLabelListT&, TagIdxT, LabelIdxT) {}
void setSrcLoc(const std::vector<Annotation>&) {}
Result<> makeUnreachable(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeNop(Index, const std::vector<Annotation>&) { return Ok{}; }
Result<> makeBinary(Index, const std::vector<Annotation>&, BinaryOp) {
return Ok{};
}
Result<> makeUnary(Index, const std::vector<Annotation>&, UnaryOp) {
return Ok{};
}
template<typename ResultsT>
Result<> makeSelect(Index, const std::vector<Annotation>&, ResultsT*) {
return Ok{};
}
Result<> makeDrop(Index, const std::vector<Annotation>&) { return Ok{}; }
Result<> makeMemorySize(Index, const std::vector<Annotation>&, MemoryIdxT*) {
return Ok{};
}
Result<> makeMemoryGrow(Index, const std::vector<Annotation>&, MemoryIdxT*) {
return Ok{};
}
Result<> makeLocalGet(Index, const std::vector<Annotation>&, LocalIdxT) {
return Ok{};
}
Result<> makeLocalTee(Index, const std::vector<Annotation>&, LocalIdxT) {
return Ok{};
}
Result<> makeLocalSet(Index, const std::vector<Annotation>&, LocalIdxT) {
return Ok{};
}
Result<> makeGlobalGet(Index, const std::vector<Annotation>&, GlobalIdxT) {
return Ok{};
}
Result<> makeGlobalSet(Index, const std::vector<Annotation>&, GlobalIdxT) {
return Ok{};
}
Result<> makeI32Const(Index, const std::vector<Annotation>&, uint32_t) {
return Ok{};
}
Result<> makeI64Const(Index, const std::vector<Annotation>&, uint64_t) {
return Ok{};
}
Result<> makeF32Const(Index, const std::vector<Annotation>&, float) {
return Ok{};
}
Result<> makeF64Const(Index, const std::vector<Annotation>&, double) {
return Ok{};
}
Result<> makeI8x16Const(Index,
const std::vector<Annotation>&,
const std::array<uint8_t, 16>&) {
return Ok{};
}
Result<> makeI16x8Const(Index,
const std::vector<Annotation>&,
const std::array<uint16_t, 8>&) {
return Ok{};
}
Result<> makeI32x4Const(Index,
const std::vector<Annotation>&,
const std::array<uint32_t, 4>&) {
return Ok{};
}
Result<> makeI64x2Const(Index,
const std::vector<Annotation>&,
const std::array<uint64_t, 2>&) {
return Ok{};
}
Result<> makeF32x4Const(Index,
const std::vector<Annotation>&,
const std::array<float, 4>&) {
return Ok{};
}
Result<> makeF64x2Const(Index,
const std::vector<Annotation>&,
const std::array<double, 2>&) {
return Ok{};
}
Result<> makeLoad(Index,
const std::vector<Annotation>&,
Type,
bool,
int,
bool,
MemoryIdxT*,
MemargT) {
return Ok{};
}
Result<> makeStore(Index,
const std::vector<Annotation>&,
Type,
int,
bool,
MemoryIdxT*,
MemargT) {
return Ok{};
}
Result<> makeAtomicRMW(Index,
const std::vector<Annotation>&,
AtomicRMWOp,
Type,
int,
MemoryIdxT*,
MemargT) {
return Ok{};
}
Result<> makeAtomicCmpxchg(
Index, const std::vector<Annotation>&, Type, int, MemoryIdxT*, MemargT) {
return Ok{};
}
Result<> makeAtomicWait(
Index, const std::vector<Annotation>&, Type, MemoryIdxT*, MemargT) {
return Ok{};
}
Result<> makeAtomicNotify(Index,
const std::vector<Annotation>&,
MemoryIdxT*,
MemargT) {
return Ok{};
}
Result<> makeAtomicFence(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeSIMDExtract(Index,
const std::vector<Annotation>&,
SIMDExtractOp,
uint8_t) {
return Ok{};
}
Result<> makeSIMDReplace(Index,
const std::vector<Annotation>&,
SIMDReplaceOp,
uint8_t) {
return Ok{};
}
Result<> makeSIMDShuffle(Index,
const std::vector<Annotation>&,
const std::array<uint8_t, 16>&) {
return Ok{};
}
Result<>
makeSIMDTernary(Index, const std::vector<Annotation>&, SIMDTernaryOp) {
return Ok{};
}
Result<> makeSIMDShift(Index, const std::vector<Annotation>&, SIMDShiftOp) {
return Ok{};
}
Result<> makeSIMDLoad(
Index, const std::vector<Annotation>&, SIMDLoadOp, MemoryIdxT*, MemargT) {
return Ok{};
}
Result<> makeSIMDLoadStoreLane(Index,
const std::vector<Annotation>&,
SIMDLoadStoreLaneOp,
MemoryIdxT*,
MemargT,
uint8_t) {
return Ok{};
}
Result<>
makeMemoryInit(Index, const std::vector<Annotation>&, MemoryIdxT*, DataIdxT) {
return Ok{};
}
Result<> makeDataDrop(Index, const std::vector<Annotation>&, DataIdxT) {
return Ok{};
}
Result<> makeMemoryCopy(Index,
const std::vector<Annotation>&,
MemoryIdxT*,
MemoryIdxT*) {
return Ok{};
}
Result<> makeMemoryFill(Index, const std::vector<Annotation>&, MemoryIdxT*) {
return Ok{};
}
template<typename TypeT>
Result<> makePop(Index, const std::vector<Annotation>&, TypeT) {
return Ok{};
}
Result<> makeCall(Index, const std::vector<Annotation>&, FuncIdxT, bool) {
return Ok{};
}
template<typename TypeUseT>
Result<> makeCallIndirect(
Index, const std::vector<Annotation>&, TableIdxT*, TypeUseT, bool) {
return Ok{};
}
Result<> makeBreak(Index, const std::vector<Annotation>&, LabelIdxT, bool) {
return Ok{};
}
Result<> makeSwitch(Index,
const std::vector<Annotation>&,
const std::vector<LabelIdxT>&,
LabelIdxT) {
return Ok{};
}
Result<> makeReturn(Index, const std::vector<Annotation>&) { return Ok{}; }
template<typename HeapTypeT>
Result<> makeRefNull(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
Result<> makeRefIsNull(Index, const std::vector<Annotation>&) { return Ok{}; }
Result<> makeRefFunc(Index, const std::vector<Annotation>&, FuncIdxT) {
return Ok{};
}
Result<> makeRefEq(Index, const std::vector<Annotation>&) { return Ok{}; }
Result<> makeTableGet(Index, const std::vector<Annotation>&, TableIdxT*) {
return Ok{};
}
Result<> makeTableSet(Index, const std::vector<Annotation>&, TableIdxT*) {
return Ok{};
}
Result<> makeTableSize(Index, const std::vector<Annotation>&, TableIdxT*) {
return Ok{};
}
Result<> makeTableGrow(Index, const std::vector<Annotation>&, TableIdxT*) {
return Ok{};
}
Result<> makeTableFill(Index, const std::vector<Annotation>&, TableIdxT*) {
return Ok{};
}
Result<>
makeTableCopy(Index, const std::vector<Annotation>&, TableIdxT*, TableIdxT*) {
return Ok{};
}
Result<>
makeTableInit(Index, const std::vector<Annotation>&, TableIdxT*, ElemIdxT) {
return Ok{};
}
Result<> makeThrow(Index, const std::vector<Annotation>&, TagIdxT) {
return Ok{};
}
Result<> makeRethrow(Index, const std::vector<Annotation>&, LabelIdxT) {
return Ok{};
}
Result<> makeThrowRef(Index, const std::vector<Annotation>&) { return Ok{}; }
Result<> makeTupleMake(Index, const std::vector<Annotation>&, uint32_t) {
return Ok{};
}
Result<>
makeTupleExtract(Index, const std::vector<Annotation>&, uint32_t, uint32_t) {
return Ok{};
}
Result<> makeTupleDrop(Index, const std::vector<Annotation>&, uint32_t) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeCallRef(Index, const std::vector<Annotation>&, HeapTypeT, bool) {
return Ok{};
}
Result<>
makeRefI31(Index, const std::vector<Annotation>&, Shareability share) {
return Ok{};
}
Result<> makeI31Get(Index, const std::vector<Annotation>&, bool) {
return Ok{};
}
template<typename TypeT>
Result<> makeRefTest(Index, const std::vector<Annotation>&, TypeT) {
return Ok{};
}
template<typename TypeT>
Result<> makeRefCast(Index, const std::vector<Annotation>&, TypeT) {
return Ok{};
}
Result<> makeBrOn(Index, const std::vector<Annotation>&, LabelIdxT, BrOnOp) {
return Ok{};
}
template<typename TypeT>
Result<> makeBrOn(
Index, const std::vector<Annotation>&, LabelIdxT, BrOnOp, TypeT, TypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeStructNew(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeStructNewDefault(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeStructGet(
Index, const std::vector<Annotation>&, HeapTypeT, FieldIdxT, bool) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeStructSet(Index, const std::vector<Annotation>&, HeapTypeT, FieldIdxT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArrayNew(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeArrayNewDefault(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeArrayNewData(Index, const std::vector<Annotation>&, HeapTypeT, DataIdxT) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeArrayNewElem(Index, const std::vector<Annotation>&, HeapTypeT, ElemIdxT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArrayNewFixed(Index,
const std::vector<Annotation>&,
HeapTypeT,
uint32_t) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeArrayGet(Index, const std::vector<Annotation>&, HeapTypeT, bool) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArraySet(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
Result<> makeArrayLen(Index, const std::vector<Annotation>&) { return Ok{}; }
template<typename HeapTypeT>
Result<>
makeArrayCopy(Index, const std::vector<Annotation>&, HeapTypeT, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArrayFill(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArrayInitData(Index,
const std::vector<Annotation>&,
HeapTypeT,
DataIdxT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeArrayInitElem(Index,
const std::vector<Annotation>&,
HeapTypeT,
ElemIdxT) {
return Ok{};
}
Result<> makeRefAs(Index, const std::vector<Annotation>&, RefAsOp) {
return Ok{};
}
Result<> makeStringNew(Index, const std::vector<Annotation>&, StringNewOp) {
return Ok{};
}
Result<>
makeStringConst(Index, const std::vector<Annotation>&, std::string_view) {
return Ok{};
}
Result<>
makeStringMeasure(Index, const std::vector<Annotation>&, StringMeasureOp) {
return Ok{};
}
Result<>
makeStringEncode(Index, const std::vector<Annotation>&, StringEncodeOp) {
return Ok{};
}
Result<> makeStringConcat(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeStringEq(Index, const std::vector<Annotation>&, StringEqOp) {
return Ok{};
}
Result<> makeStringWTF8Advance(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeStringWTF16Get(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeStringIterNext(Index, const std::vector<Annotation>&) {
return Ok{};
}
Result<> makeStringSliceWTF(Index, const std::vector<Annotation>&) {
return Ok{};
}
template<typename HeapTypeT>
Result<>
makeContBind(Index, const std::vector<Annotation>&, HeapTypeT, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeContNew(Index, const std::vector<Annotation>&, HeapTypeT) {
return Ok{};
}
template<typename HeapTypeT>
Result<> makeResume(Index,
const std::vector<Annotation>&,
HeapTypeT,
const TagLabelListT&) {
return Ok{};
}
Result<> makeSuspend(Index, const std::vector<Annotation>&, TagIdxT) {
return Ok{};
}
};
struct NullCtx : NullTypeParserCtx, NullInstrParserCtx {
Lexer in;
NullCtx(const Lexer& in) : in(in) {}
Result<> makeTypeUse(Index, std::optional<HeapTypeT>, ParamsT*, ResultsT*) {
return Ok{};
}
};
// Phase 1: Parse definition spans for top-level module elements and determine
// their indices and names.
struct ParseDeclsCtx : NullTypeParserCtx, NullInstrParserCtx {
using ExprT = Ok;
using LimitsT = Limits;
using ElemListT = Index;
using DataStringT = std::vector<char>;
using TableTypeT = TableType;
using MemTypeT = MemType;
Lexer in;
// At this stage we only look at types to find implicit type definitions,
// which are inserted directly into the context. We cannot materialize or
// validate any types because we don't know what types exist yet.
//
// Declared module elements are inserted into the module, but their bodies are
// not filled out until later parsing phases.
Module& wasm;
// The module element definitions we are parsing in this phase.
std::vector<DefPos> recTypeDefs;
std::vector<DefPos> typeDefs;
std::vector<DefPos> funcDefs;
std::vector<DefPos> tableDefs;
std::vector<DefPos> memoryDefs;
std::vector<DefPos> globalDefs;
std::vector<DefPos> startDefs;
std::vector<DefPos> elemDefs;
std::vector<DefPos> dataDefs;
std::vector<DefPos> tagDefs;
// Positions of export definitions.
std::vector<Index> exportDefs;
// Positions of typeuses that might implicitly define new types.
std::vector<Index> implicitTypeDefs;
// Map table indices to the indices of their implicit, in-line element
// segments. We need these to find associated segments in later parsing phases
// where we can parse their types and instructions.
std::unordered_map<Index, Index> implicitElemIndices;
// Counters used for generating names for module elements.
int funcCounter = 0;
int tableCounter = 0;
int memoryCounter = 0;
int globalCounter = 0;
int elemCounter = 0;
int dataCounter = 0;
int tagCounter = 0;
// Used to verify that all imports come before all non-imports.
bool hasNonImport = false;
Result<> checkImport(Index pos, ImportNames* import) {
if (import) {
if (hasNonImport) {
return in.err(pos, "import after non-import");
}
} else {
hasNonImport = true;
}
return Ok{};
}
ParseDeclsCtx(Lexer& in, Module& wasm) : in(in), wasm(wasm) {}
void addFuncType(SignatureT) {}
void addContType(ContinuationT) {}
void addStructType(StructT) {}
void addArrayType(ArrayT) {}
void setOpen() {}
void setShared() {}
Result<> addSubtype(HeapTypeT) { return Ok{}; }
void finishTypeDef(Name name, Index pos) {
// TODO: type annotations
typeDefs.push_back({name, pos, Index(typeDefs.size()), {}});
}
size_t getRecGroupStartIndex() { return 0; }
void addRecGroup(Index, size_t) {}
void finishRectype(Index pos) {
// TODO: type annotations
recTypeDefs.push_back({{}, pos, Index(recTypeDefs.size()), {}});
}
Limits makeLimits(uint64_t n, std::optional<uint64_t> m) {
return Limits{n, m};
}
Index makeElemList(TypeT) { return 0; }
Index makeFuncElemList() { return 0; }
void appendElem(Index& elems, ExprT) { ++elems; }
void appendFuncElem(Index& elems, FuncIdxT) { ++elems; }
Limits getLimitsFromElems(Index elems) { return {elems, elems}; }
TableType makeTableType(Type addressType, Limits limits, TypeT) {
return {addressType, limits};
}
std::vector<char> makeDataString() { return {}; }
void appendDataString(std::vector<char>& data, std::string_view str) {
data.insert(data.end(), str.begin(), str.end());
}
Limits getLimitsFromData(const std::vector<char>& data) {
uint64_t size = (data.size() + Memory::kPageSize - 1) / Memory::kPageSize;
return {size, size};
}
MemType makeMemType(Type addressType, Limits limits, bool shared) {
return {addressType, limits, shared};
}
Result<TypeUseT>
makeTypeUse(Index pos, std::optional<HeapTypeT> type, ParamsT*, ResultsT*) {
if (!type) {
implicitTypeDefs.push_back(pos);
}
return Ok{};
}
Result<Function*> addFuncDecl(Index pos, Name name, ImportNames* importNames);
Result<> addFunc(Name name,
const std::vector<Name>& exports,
ImportNames* import,
TypeUseT type,
std::optional<LocalsT>,
std::vector<Annotation>&&,
Index pos);
Result<Table*> addTableDecl(Index pos,
Name name,
ImportNames* importNames,
TableType limits);
Result<>
addTable(Name, const std::vector<Name>&, ImportNames*, TableType, Index);
// TODO: Record index of implicit elem for use when parsing types and instrs.
Result<> addImplicitElems(TypeT, ElemListT&& elems);
Result<Memory*>
addMemoryDecl(Index pos, Name name, ImportNames* importNames, MemType type);
Result<> addMemory(Name name,
const std::vector<Name>& exports,
ImportNames* import,
MemType type,
Index pos);
Result<> addImplicitData(DataStringT&& data);
Result<Global*> addGlobalDecl(Index pos, Name name, ImportNames* importNames);
Result<> addGlobal(Name name,
const std::vector<Name>& exports,
ImportNames* import,
GlobalTypeT,
std::optional<ExprT>,
Index pos);
Result<> addStart(FuncIdxT, Index pos) {
if (!startDefs.empty()) {
return Err{"unexpected extra 'start' function"};
}
// TODO: start function annotations.
startDefs.push_back({{}, pos, 0, {}});
return Ok{};
}
Result<> addElem(Name, TableIdxT*, std::optional<ExprT>, ElemListT&&, Index);
Result<> addDeclareElem(Name, ElemListT&&, Index) { return Ok{}; }
Result<> addData(Name name,
MemoryIdxT*,
std::optional<ExprT>,
std::vector<char>&& data,
Index pos);
Result<Tag*> addTagDecl(Index pos, Name name, ImportNames* importNames);
Result<> addTag(Name name,
const std::vector<Name>& exports,
ImportNames* import,
TypeUseT type,
Index pos);
Result<> addExport(Index pos, Ok, Name, ExternalKind) {
exportDefs.push_back(pos);
return Ok{};
}
};
// Phase 2: Parse type definitions into a TypeBuilder.
struct ParseTypeDefsCtx : TypeParserCtx<ParseTypeDefsCtx> {
Lexer in;
// We update slots in this builder as we parse type definitions.
TypeBuilder& builder;
// Parse the names of types and fields as we go.
std::vector<TypeNames> names;
// The index of the subtype definition we are parsing.
Index index = 0;
ParseTypeDefsCtx(Lexer& in, TypeBuilder& builder, const IndexMap& typeIndices)
: TypeParserCtx<ParseTypeDefsCtx>(typeIndices), in(in), builder(builder),
names(builder.size()) {}
TypeT makeRefType(HeapTypeT ht, Nullability nullability) {
return builder.getTempRefType(ht, nullability);
}
TypeT makeTupleType(const std::vector<Type> types) {
return builder.getTempTupleType(types);
}
Result<HeapTypeT> getHeapTypeFromIdx(Index idx) {
if (idx >= builder.size()) {
return in.err("type index out of bounds");
}
return builder[idx];
}
void addFuncType(SignatureT& type) { builder[index] = type; }
void addContType(ContinuationT& type) { builder[index] = type; }
void addStructType(StructT& type) {
auto& [fieldNames, str] = type;
builder[index] = str;
for (Index i = 0; i < fieldNames.size(); ++i) {
if (auto name = fieldNames[i]; name.is()) {
names[index].fieldNames[i] = name;
}
}
}
void addArrayType(ArrayT& type) { builder[index] = type; }
void setOpen() { builder[index].setOpen(); }
void setShared() { builder[index].setShared(); }
Result<> addSubtype(HeapTypeT super) {
builder[index].subTypeOf(super);
return Ok{};
}
void finishTypeDef(Name name, Index pos) { names[index++].name = name; }
size_t getRecGroupStartIndex() { return index; }
void addRecGroup(Index start, size_t len) {
builder.createRecGroup(start, len);
}
void finishRectype(Index) {}
};
// Phase 3: Parse type uses to find implicitly defined types.
struct ParseImplicitTypeDefsCtx : TypeParserCtx<ParseImplicitTypeDefsCtx> {
using TypeUseT = Ok;
Lexer in;
// Types parsed so far.
std::vector<HeapType>& types;
// Map typeuse positions without an explicit type to the correct type.
std::unordered_map<Index, HeapType>& implicitTypes;
// Map signatures to the first defined heap type they match.
std::unordered_map<Signature, HeapType> sigTypes;
ParseImplicitTypeDefsCtx(Lexer& in,
std::vector<HeapType>& types,
std::unordered_map<Index, HeapType>& implicitTypes,
const IndexMap& typeIndices)
: TypeParserCtx<ParseImplicitTypeDefsCtx>(typeIndices), in(in),
types(types), implicitTypes(implicitTypes) {
for (auto type : types) {
if (type.isSignature() && type.getRecGroup().size() == 1 &&
!type.getDeclaredSuperType() && !type.isOpen() && !type.isShared()) {
sigTypes.insert({type.getSignature(), type});
}
}
}
Result<HeapTypeT> getHeapTypeFromIdx(Index idx) {
if (idx >= types.size()) {
return in.err("type index out of bounds");
}
return types[idx];
}
Result<TypeUseT> makeTypeUse(Index pos,
std::optional<HeapTypeT>,
ParamsT* params,
ResultsT* results) {
std::vector<Type> paramTypes;
if (params) {
paramTypes = getUnnamedTypes(*params);
}
std::vector<Type> resultTypes;
if (results) {
resultTypes = *results;
}
auto sig = Signature(Type(paramTypes), Type(resultTypes));
auto [it, inserted] = sigTypes.insert({sig, HeapType::func});
if (inserted) {
auto type = HeapType(sig);
it->second = type;
types.push_back(type);
}
implicitTypes.insert({pos, it->second});
return Ok{};
}
};
// Phase 4: Parse and set the types of module elements.
struct ParseModuleTypesCtx : TypeParserCtx<ParseModuleTypesCtx>,
NullInstrParserCtx {
// In this phase we have constructed all the types, so we can materialize and
// validate them when they are used.
using GlobalTypeT = GlobalType;
using TableTypeT = Type;
using TypeUseT = TypeUse;
using ElemListT = Type;
Lexer in;
Module& wasm;
const std::vector<HeapType>& types;
const std::unordered_map<Index, HeapType>& implicitTypes;
const std::unordered_map<Index, Index>& implicitElemIndices;
// The index of the current type.
Index index = 0;
ParseModuleTypesCtx(
Lexer& in,
Module& wasm,
const std::vector<HeapType>& types,
const std::unordered_map<Index, HeapType>& implicitTypes,
const std::unordered_map<Index, Index>& implicitElemIndices,
const IndexMap& typeIndices)
: TypeParserCtx<ParseModuleTypesCtx>(typeIndices), in(in), wasm(wasm),
types(types), implicitTypes(implicitTypes),
implicitElemIndices(implicitElemIndices) {}
bool skipFunctionBody() { return true; }
Result<HeapTypeT> getHeapTypeFromIdx(Index idx) {
if (idx >= types.size()) {
return in.err("type index out of bounds");
}
return types[idx];
}
Result<TypeUseT> makeTypeUse(Index pos,
std::optional<HeapTypeT> type,
ParamsT* params,
ResultsT* results) {
std::vector<Name> ids;
if (params) {
ids.reserve(params->size());
for (auto& p : *params) {
ids.push_back(p.name);
}
}
if (type) {
return TypeUse{*type, ids};
}
auto it = implicitTypes.find(pos);
assert(it != implicitTypes.end());
return TypeUse{it->second, ids};
}
Result<HeapType> getBlockTypeFromTypeUse(Index pos, TypeUse use) {
return use.type;
}
GlobalTypeT makeGlobalType(Mutability mutability, TypeT type) {
return {mutability, type};
}
Type makeElemList(Type type) { return type; }
Type makeFuncElemList() { return Type(HeapType::func, Nullable); }
void appendElem(ElemListT&, ExprT) {}
void appendFuncElem(ElemListT&, FuncIdxT) {}
LimitsT getLimitsFromElems(ElemListT) { return Ok{}; }
Type makeTableType(Type addressType, LimitsT, Type type) { return type; }
LimitsT getLimitsFromData(DataStringT) { return Ok{}; }
MemTypeT makeMemType(Type, LimitsT, bool) { return Ok{}; }
Result<> addFunc(Name name,
const std::vector<Name>&,
ImportNames*,
TypeUse type,
std::optional<LocalsT> locals,
std::vector<Annotation>&&,
Index pos) {
auto& f = wasm.functions[index];
if (!type.type.isSignature()) {
return in.err(pos, "expected signature type");
}
f->type = type.type;
for (Index i = 0; i < type.names.size(); ++i) {
if (type.names[i].is()) {
f->setLocalName(i, type.names[i]);
}
}
if (locals) {
for (auto& l : *locals) {
Builder::addVar(f.get(), l.name, l.type);
}
}
return Ok{};
}
Result<> addTable(
Name, const std::vector<Name>&, ImportNames*, Type ttype, Index pos) {
auto& t = wasm.tables[index];
if (!ttype.isRef()) {
return in.err(pos, "expected reference type");
}
t->type = ttype;
return Ok{};
}
Result<> addImplicitElems(Type type, ElemListT&&) {
auto& t = wasm.tables[index];
auto& e = wasm.elementSegments[implicitElemIndices.at(index)];
e->type = t->type;
return Ok{};
}
Result<>
addMemory(Name, const std::vector<Name>&, ImportNames*, MemTypeT, Index) {
return Ok{};
}
Result<> addImplicitData(DataStringT&& data) { return Ok{}; }
Result<> addGlobal(Name,
const std::vector<Name>&,
ImportNames*,
GlobalType type,
std::optional<ExprT>,
Index) {
auto& g = wasm.globals[index];
g->mutable_ = type.mutability;
g->type = type.type;
return Ok{};
}
Result<>
addElem(Name, TableIdxT*, std::optional<ExprT>, ElemListT&& type, Index) {
auto& e = wasm.elementSegments[index];
e->type = type;
return Ok{};
}
Result<> addDeclareElem(Name, ElemListT&&, Index) { return Ok{}; }
Result<>
addTag(Name, const std::vector<Name>&, ImportNames*, TypeUse use, Index pos) {
auto& t = wasm.tags[index];
if (!use.type.isSignature()) {
return in.err(pos, "tag type must be a signature");
}
t->sig = use.type.getSignature();
return Ok{};
}
};
// Phase 5: Parse module element definitions, including instructions.
struct ParseDefsCtx : TypeParserCtx<ParseDefsCtx> {
using GlobalTypeT = Ok;
using TableTypeT = Ok;
using TypeUseT = HeapType;
using FieldIdxT = Index;
using FuncIdxT = Name;
using LocalIdxT = Index;
using LabelIdxT = Index;
using GlobalIdxT = Name;
using TableIdxT = Name;
using MemoryIdxT = Name;
using ElemIdxT = Name;
using DataIdxT = Name;
using TagIdxT = Name;
using MemargT = Memarg;
using ExprT = Expression*;
using ElemListT = std::vector<Expression*>;
struct CatchInfo;
using CatchT = CatchInfo;
using CatchListT = std::vector<CatchInfo>;
using TagLabelListT = std::vector<std::pair<TagIdxT, LabelIdxT>>;
Lexer in;
Module& wasm;
Builder builder;
const std::vector<HeapType>& types;
const std::unordered_map<Index, HeapType>& implicitTypes;
const std::unordered_map<HeapType, std::unordered_map<Name, Index>>&
typeNames;
const std::unordered_map<Index, Index>& implicitElemIndices;
std::unordered_map<std::string_view, Index> debugSymbolNameIndices;
std::unordered_map<std::string_view, Index> debugFileIndices;
// The index of the current module element.
Index index = 0;
// The current function being parsed, used to create scratch locals, type
// local.get, etc.
Function* func = nullptr;
IRBuilder irBuilder;
Result<> visitFunctionStart(Function* func) {
this->func = func;
CHECK_ERR(irBuilder.visitFunctionStart(func));
return Ok{};
}
ParseDefsCtx(
Lexer& in,
Module& wasm,
const std::vector<HeapType>& types,
const std::unordered_map<Index, HeapType>& implicitTypes,
const std::unordered_map<HeapType, std::unordered_map<Name, Index>>&
typeNames,
const std::unordered_map<Index, Index>& implicitElemIndices,
const IndexMap& typeIndices)
: TypeParserCtx(typeIndices), in(in), wasm(wasm), builder(wasm),
types(types), implicitTypes(implicitTypes), typeNames(typeNames),
implicitElemIndices(implicitElemIndices), irBuilder(wasm) {}
template<typename T> Result<T> withLoc(Index pos, Result<T> res) {
if (auto err = res.getErr()) {
return in.err(pos, err->msg);
}
return res;
}
template<typename T> Result<T> withLoc(Result<T> res) {
return withLoc(in.getPos(), res);
}
HeapType getBlockTypeFromResult(const std::vector<Type> results) {
assert(results.size() == 1);
return HeapType(Signature(Type::none, results[0]));
}
Result<HeapType> getBlockTypeFromTypeUse(Index pos, HeapType type) {
assert(type.isSignature());
// TODO: Error if block parameters are named
return type;
}
GlobalTypeT makeGlobalType(Mutability, TypeT) { return Ok{}; }
std::vector<Expression*> makeElemList(TypeT) { return {}; }
std::vector<Expression*> makeFuncElemList() { return {}; }
void appendElem(std::vector<Expression*>& elems, Expression* expr) {
elems.push_back(expr);
}
void appendFuncElem(std::vector<Expression*>& elems, Name func) {
auto type = wasm.getFunction(func)->type;
elems.push_back(builder.makeRefFunc(func, type));
}
LimitsT getLimitsFromElems(std::vector<Expression*>& elems) { return Ok{}; }
TableTypeT makeTableType(Type, LimitsT, Type) { return Ok{}; }
struct CatchInfo {
Name tag;
Index label;
bool isRef;
};
std::vector<CatchInfo> makeCatchList() { return {}; }
void appendCatch(std::vector<CatchInfo>& list, CatchInfo info) {
list.push_back(info);
}
CatchInfo makeCatch(Name tag, Index label) { return {tag, label, false}; }
CatchInfo makeCatchRef(Name tag, Index label) { return {tag, label, true}; }
CatchInfo makeCatchAll(Index label) { return {{}, label, false}; }
CatchInfo makeCatchAllRef(Index label) { return {{}, label, true}; }
TagLabelListT makeTagLabelList() { return {}; }
void appendTagLabel(TagLabelListT& tagLabels, Name tag, Index label) {
tagLabels.push_back({tag, label});
}
Result<HeapTypeT> getHeapTypeFromIdx(Index idx) {
if (idx >= types.size()) {
return in.err("type index out of bounds");
}
return types[idx];
}
Result<Index> getFieldFromIdx(HeapType type, uint32_t idx) {
if (!type.isStruct()) {
return in.err("expected struct type");
}
if (idx >= type.getStruct().fields.size()) {
return in.err("struct index out of bounds");
}
return idx;
}
Result<Index> getFieldFromName(HeapType type, Name name) {
if (auto typeIt = typeNames.find(type); typeIt != typeNames.end()) {
const auto& fieldIdxs = typeIt->second;
if (auto fieldIt = fieldIdxs.find(name); fieldIt != fieldIdxs.end()) {
return fieldIt->second;
}
}
return in.err("unrecognized field name");
}
Result<Index> getLocalFromIdx(uint32_t idx) {
if (!func) {
return in.err("cannot access locals outside of a function");
}
if (idx >= func->getNumLocals()) {
return in.err("local index out of bounds");
}
return idx;
}
Result<Name> getFuncFromIdx(uint32_t idx) {
if (idx >= wasm.functions.size()) {
return in.err("function index out of bounds");
}
return wasm.functions[idx]->name;
}
Result<Name> getFuncFromName(Name name) {
if (!wasm.getFunctionOrNull(name)) {
return in.err("function $" + name.toString() + " does not exist");
}
return name;
}
Result<Index> getLocalFromName(Name name) {
if (!func) {
return in.err("cannot access locals outside of a function");
}
if (!func->hasLocalIndex(name)) {
return in.err("local $" + name.toString() + " does not exist");
}
return func->getLocalIndex(name);
}
Result<Name> getGlobalFromIdx(uint32_t idx) {
if (idx >= wasm.globals.size()) {
return in.err("global index out of bounds");
}
return wasm.globals[idx]->name;
}
Result<Name> getGlobalFromName(Name name) {
if (!wasm.getGlobalOrNull(name)) {
return in.err("global $" + name.toString() + " does not exist");
}
return name;
}
Result<Name> getTableFromIdx(uint32_t idx) {
if (idx >= wasm.tables.size()) {
return in.err("table index out of bounds");
}
return wasm.tables[idx]->name;
}
Result<Name> getTableFromName(Name name) {
if (!wasm.getTableOrNull(name)) {
return in.err("table $" + name.toString() + " does not exist");
}
return name;
}
Result<Name> getMemoryFromIdx(uint32_t idx) {
if (idx >= wasm.memories.size()) {
return in.err("memory index out of bounds");
}
return wasm.memories[idx]->name;
}
Result<Name> getMemoryFromName(Name name) {
if (!wasm.getMemoryOrNull(name)) {
return in.err("memory $" + name.toString() + " does not exist");
}
return name;
}
Result<Name> getElemFromIdx(uint32_t idx) {
if (idx >= wasm.elementSegments.size()) {
return in.err("elem index out of bounds");
}
return wasm.elementSegments[idx]->name;
}
Result<Name> getElemFromName(Name name) {
if (!wasm.getElementSegmentOrNull(name)) {
return in.err("elem $" + name.toString() + " does not exist");
}
return name;
}
Result<Name> getDataFromIdx(uint32_t idx) {
if (idx >= wasm.dataSegments.size()) {
return in.err("data index out of bounds");
}
return wasm.dataSegments[idx]->name;
}
Result<Name> getDataFromName(Name name) {
if (!wasm.getDataSegmentOrNull(name)) {
return in.err("data $" + name.toString() + " does not exist");
}
return name;
}
Result<Index> getLabelFromIdx(uint32_t idx, bool) { return idx; }
Result<Index> getLabelFromName(Name name, bool inDelegate) {
return irBuilder.getLabelIndex(name, inDelegate);
}
Result<Name> getTagFromIdx(uint32_t idx) {
if (idx >= wasm.tags.size()) {
return in.err("tag index out of bounds");
}
return wasm.tags[idx]->name;
}
Result<Name> getTagFromName(Name name) {
if (!wasm.getTagOrNull(name)) {
return in.err("tag $" + name.toString() + " does not exist");
}
return name;
}
Result<TypeUseT> makeTypeUse(Index pos,
std::optional<HeapTypeT> type,
ParamsT* params,
ResultsT* results);
Result<> addFunc(Name,
const std::vector<Name>&,
ImportNames*,
TypeUseT,
std::optional<LocalsT>,
std::vector<Annotation>&&,
Index) {
return Ok{};
}
Result<>
addTable(Name, const std::vector<Name>&, ImportNames*, TableTypeT, Index) {
return Ok{};
}
Result<>
addMemory(Name, const std::vector<Name>&, ImportNames*, TableTypeT, Index) {
return Ok{};
}
Result<> addGlobal(Name,
const std::vector<Name>&,
ImportNames*,
GlobalTypeT,
std::optional<ExprT> exp,
Index);
Result<> addStart(Name name, Index pos) {
wasm.start = name;
return Ok{};
}
Result<> addImplicitElems(Type type, std::vector<Expression*>&& elems);
Result<> addDeclareElem(Name, std::vector<Expression*>&&, Index) {
// TODO: Validate that referenced functions appear in a declarative element
// segment.
return Ok{};
}
Result<> addElem(Name,
Name* table,
std::optional<Expression*> offset,
std::vector<Expression*>&& elems,
Index pos);
Result<>
addData(Name, Name* mem, std::optional<ExprT> offset, DataStringT, Index pos);
Result<>
addTag(Name, const std::vector<Name>, ImportNames*, TypeUseT, Index) {
return Ok{};
}
Result<> addExport(Index pos, Name value, Name name, ExternalKind kind) {
if (wasm.getExportOrNull(name)) {
return in.err(pos, "duplicate export");
}
wasm.addExport(builder.makeExport(name, value, kind));
return Ok{};
}
Result<Index> addScratchLocal(Index pos, Type type) {
if (!func) {
return in.err(pos,
"scratch local required, but there is no function context");
}
Name name = Names::getValidLocalName(*func, "scratch");
return Builder::addVar(func, name, type);
}
Result<Expression*> makeExpr() { return withLoc(irBuilder.build()); }
Memarg getMemarg(uint64_t offset, uint32_t align) { return {offset, align}; }
Result<Name> getTable(Index pos, Name* table) {
if (table) {
return *table;
}
if (wasm.tables.empty()) {
return in.err(pos, "table required, but there is no table");
}
return wasm.tables[0]->name;
}
Result<Name> getMemory(Index pos, Name* mem) {
if (mem) {
return *mem;
}
if (wasm.memories.empty()) {
return in.err(pos, "memory required, but there is no memory");
}
return wasm.memories[0]->name;
}
void setSrcLoc(const std::vector<Annotation>& annotations) {
const Annotation* annotation = nullptr;
for (auto& a : annotations) {
if (a.kind == srcAnnotationKind) {
annotation = &a;
}
}
if (!annotation) {
return;
}
Lexer lexer(annotation->contents);
if (lexer.empty()) {
irBuilder.setDebugLocation(std::nullopt);
return;
}
auto contents = lexer.next();
auto fileSize = contents.find(':');
if (fileSize == 0 || fileSize == contents.npos) {
return;
}
auto file = contents.substr(0, fileSize);
contents = contents.substr(fileSize + 1);
auto lineSize = contents.find(':');
if (lineSize == contents.npos) {
return;
}
lexer = Lexer(contents.substr(0, lineSize));
auto line = lexer.takeU32();
if (!line || !lexer.empty()) {
return;
}
contents = contents.substr(lineSize + 1);
auto colSize = contents.find(':');
if (colSize == contents.npos) {
colSize = contents.size();
if (colSize == 0) {
return;
}
}
lexer = Lexer(contents.substr(0, colSize));
auto col = lexer.takeU32();
if (!col) {
return;
}
std::optional<BinaryLocation> symbolNameIndex;
if (colSize != contents.size()) {
contents = contents.substr(colSize + 1);
auto symbolName = contents;
auto [it, inserted] = debugSymbolNameIndices.insert(
{symbolName, debugSymbolNameIndices.size()});
if (inserted) {
assert(wasm.debugInfoSymbolNames.size() == it->second);
wasm.debugInfoSymbolNames.push_back(std::string(symbolName));
}
symbolNameIndex = it->second;
}
// TODO: If we ever parallelize the parse, access to
// `wasm.debugInfoFileNames` will have to be protected by a lock.
auto [it, inserted] =
debugFileIndices.insert({file, debugFileIndices.size()});
if (inserted) {
assert(wasm.debugInfoFileNames.size() == it->second);
wasm.debugInfoFileNames.push_back(std::string(file));
}
irBuilder.setDebugLocation(
Function::DebugLocation({it->second, *line, *col, symbolNameIndex}));
}
Result<> makeBlock(Index pos,
const std::vector<Annotation>& annotations,
std::optional<Name> label,
HeapType type) {
// TODO: validate labels?
// TODO: Move error on input types to here?
if (!type.isSignature()) {
return in.err(pos, "expected function type");
}
return withLoc(
pos, irBuilder.makeBlock(label ? *label : Name{}, type.getSignature()));
}
Result<> makeIf(Index pos,
const std::vector<Annotation>& annotations,
std::optional<Name> label,
HeapType type) {
// TODO: validate labels?
if (!type.isSignature()) {
return in.err(pos, "expected function type");
}
return withLoc(
pos, irBuilder.makeIf(label ? *label : Name{}, type.getSignature()));
}
Result<> visitElse() { return withLoc(irBuilder.visitElse()); }
Result<> makeLoop(Index pos,
const std::vector<Annotation>& annotations,
std::optional<Name> label,
HeapType type) {
// TODO: validate labels?
if (!type.isSignature()) {
return in.err(pos, "expected function type");
}
return withLoc(
pos, irBuilder.makeLoop(label ? *label : Name{}, type.getSignature()));
}
Result<> makeTry(Index pos,
const std::vector<Annotation>& annotations,
std::optional<Name> label,
HeapType type) {
// TODO: validate labels?
if (!type.isSignature()) {
return in.err(pos, "expected function type");
}
return withLoc(
pos, irBuilder.makeTry(label ? *label : Name{}, type.getSignature()));
}
Result<> makeTryTable(Index pos,
const std::vector<Annotation>& annotations,
std::optional<Name> label,
HeapType type,
const std::vector<CatchInfo>& info) {
std::vector<Name> tags;
std::vector<Index> labels;
std::vector<bool> isRefs;
for (auto& info : info) {
tags.push_back(info.tag);
labels.push_back(info.label);
isRefs.push_back(info.isRef);
}
return withLoc(
pos,
irBuilder.makeTryTable(
label ? *label : Name{}, type.getSignature(), tags, labels, isRefs));
}
Result<> visitCatch(Index pos, Name tag) {
return withLoc(pos, irBuilder.visitCatch(tag));
}
Result<> visitCatchAll(Index pos) {
return withLoc(pos, irBuilder.visitCatchAll());
}
Result<> visitDelegate(Index pos, Index label) {
return withLoc(pos, irBuilder.visitDelegate(label));
}
Result<> visitEnd() { return withLoc(irBuilder.visitEnd()); }
Result<> makeUnreachable(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeUnreachable());
}
Result<> makeNop(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeNop());
}
Result<> makeBinary(Index pos,
const std::vector<Annotation>& annotations,
BinaryOp op) {
return withLoc(pos, irBuilder.makeBinary(op));
}
Result<>
makeUnary(Index pos, const std::vector<Annotation>& annotations, UnaryOp op) {
return withLoc(pos, irBuilder.makeUnary(op));
}
Result<> makeSelect(Index pos,
const std::vector<Annotation>& annotations,
std::vector<Type>* res) {
if (res && res->size()) {
if (res->size() > 1) {
return in.err(pos, "select may not have more than one result type");
}
return withLoc(pos, irBuilder.makeSelect((*res)[0]));
}
return withLoc(pos, irBuilder.makeSelect());
}
Result<> makeDrop(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeDrop());
}
Result<> makeMemorySize(Index pos,
const std::vector<Annotation>& annotations,
Name* mem) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeMemorySize(*m));
}
Result<> makeMemoryGrow(Index pos,
const std::vector<Annotation>& annotations,
Name* mem) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeMemoryGrow(*m));
}
Result<> makeLocalGet(Index pos,
const std::vector<Annotation>& annotations,
Index local) {
return withLoc(pos, irBuilder.makeLocalGet(local));
}
Result<> makeLocalTee(Index pos,
const std::vector<Annotation>& annotations,
Index local) {
return withLoc(pos, irBuilder.makeLocalTee(local));
}
Result<> makeLocalSet(Index pos,
const std::vector<Annotation>& annotations,
Index local) {
return withLoc(pos, irBuilder.makeLocalSet(local));
}
Result<> makeGlobalGet(Index pos,
const std::vector<Annotation>& annotations,
Name global) {
return withLoc(pos, irBuilder.makeGlobalGet(global));
}
Result<> makeGlobalSet(Index pos,
const std::vector<Annotation>& annotations,
Name global) {
assert(wasm.getGlobalOrNull(global));
return withLoc(pos, irBuilder.makeGlobalSet(global));
}
Result<> makeI32Const(Index pos,
const std::vector<Annotation>& annotations,
uint32_t c) {
return withLoc(pos, irBuilder.makeConst(Literal(c)));
}
Result<> makeI64Const(Index pos,
const std::vector<Annotation>& annotations,
uint64_t c) {
return withLoc(pos, irBuilder.makeConst(Literal(c)));
}
Result<>
makeF32Const(Index pos, const std::vector<Annotation>& annotations, float c) {
return withLoc(pos, irBuilder.makeConst(Literal(c)));
}
Result<> makeF64Const(Index pos,
const std::vector<Annotation>& annotations,
double c) {
return withLoc(pos, irBuilder.makeConst(Literal(c)));
}
Result<> makeI8x16Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<uint8_t, 16>& vals) {
std::array<Literal, 16> lanes;
for (size_t i = 0; i < 16; ++i) {
lanes[i] = Literal(uint32_t(vals[i]));
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeI16x8Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<uint16_t, 8>& vals) {
std::array<Literal, 8> lanes;
for (size_t i = 0; i < 8; ++i) {
lanes[i] = Literal(uint32_t(vals[i]));
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeI32x4Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<uint32_t, 4>& vals) {
std::array<Literal, 4> lanes;
for (size_t i = 0; i < 4; ++i) {
lanes[i] = Literal(vals[i]);
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeI64x2Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<uint64_t, 2>& vals) {
std::array<Literal, 2> lanes;
for (size_t i = 0; i < 2; ++i) {
lanes[i] = Literal(vals[i]);
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeF32x4Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<float, 4>& vals) {
std::array<Literal, 4> lanes;
for (size_t i = 0; i < 4; ++i) {
lanes[i] = Literal(vals[i]);
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeF64x2Const(Index pos,
const std::vector<Annotation>& annotations,
const std::array<double, 2>& vals) {
std::array<Literal, 2> lanes;
for (size_t i = 0; i < 2; ++i) {
lanes[i] = Literal(vals[i]);
}
return withLoc(pos, irBuilder.makeConst(Literal(lanes)));
}
Result<> makeLoad(Index pos,
const std::vector<Annotation>& annotations,
Type type,
bool signed_,
int bytes,
bool isAtomic,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
if (isAtomic) {
return withLoc(pos,
irBuilder.makeAtomicLoad(bytes, memarg.offset, type, *m));
}
return withLoc(pos,
irBuilder.makeLoad(
bytes, signed_, memarg.offset, memarg.align, type, *m));
}
Result<> makeStore(Index pos,
const std::vector<Annotation>& annotations,
Type type,
int bytes,
bool isAtomic,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
if (isAtomic) {
return withLoc(pos,
irBuilder.makeAtomicStore(bytes, memarg.offset, type, *m));
}
return withLoc(
pos, irBuilder.makeStore(bytes, memarg.offset, memarg.align, type, *m));
}
Result<> makeAtomicRMW(Index pos,
const std::vector<Annotation>& annotations,
AtomicRMWOp op,
Type type,
int bytes,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos,
irBuilder.makeAtomicRMW(op, bytes, memarg.offset, type, *m));
}
Result<> makeAtomicCmpxchg(Index pos,
const std::vector<Annotation>& annotations,
Type type,
int bytes,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos,
irBuilder.makeAtomicCmpxchg(bytes, memarg.offset, type, *m));
}
Result<> makeAtomicWait(Index pos,
const std::vector<Annotation>& annotations,
Type type,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeAtomicWait(type, memarg.offset, *m));
}
Result<> makeAtomicNotify(Index pos,
const std::vector<Annotation>& annotations,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeAtomicNotify(memarg.offset, *m));
}
Result<> makeAtomicFence(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeAtomicFence());
}
Result<> makeSIMDExtract(Index pos,
const std::vector<Annotation>& annotations,
SIMDExtractOp op,
uint8_t lane) {
return withLoc(pos, irBuilder.makeSIMDExtract(op, lane));
}
Result<> makeSIMDReplace(Index pos,
const std::vector<Annotation>& annotations,
SIMDReplaceOp op,
uint8_t lane) {
return withLoc(pos, irBuilder.makeSIMDReplace(op, lane));
}
Result<> makeSIMDShuffle(Index pos,
const std::vector<Annotation>& annotations,
const std::array<uint8_t, 16>& lanes) {
return withLoc(pos, irBuilder.makeSIMDShuffle(lanes));
}
Result<> makeSIMDTernary(Index pos,
const std::vector<Annotation>& annotations,
SIMDTernaryOp op) {
return withLoc(pos, irBuilder.makeSIMDTernary(op));
}
Result<> makeSIMDShift(Index pos,
const std::vector<Annotation>& annotations,
SIMDShiftOp op) {
return withLoc(pos, irBuilder.makeSIMDShift(op));
}
Result<> makeSIMDLoad(Index pos,
const std::vector<Annotation>& annotations,
SIMDLoadOp op,
Name* mem,
Memarg memarg) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos,
irBuilder.makeSIMDLoad(op, memarg.offset, memarg.align, *m));
}
Result<> makeSIMDLoadStoreLane(Index pos,
const std::vector<Annotation>& annotations,
SIMDLoadStoreLaneOp op,
Name* mem,
Memarg memarg,
uint8_t lane) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos,
irBuilder.makeSIMDLoadStoreLane(
op, memarg.offset, memarg.align, lane, *m));
}
Result<> makeMemoryInit(Index pos,
const std::vector<Annotation>& annotations,
Name* mem,
Name data) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeMemoryInit(data, *m));
}
Result<> makeDataDrop(Index pos,
const std::vector<Annotation>& annotations,
Name data) {
return withLoc(pos, irBuilder.makeDataDrop(data));
}
Result<> makeMemoryCopy(Index pos,
const std::vector<Annotation>& annotations,
Name* destMem,
Name* srcMem) {
auto destMemory = getMemory(pos, destMem);
CHECK_ERR(destMemory);
auto srcMemory = getMemory(pos, srcMem);
CHECK_ERR(srcMemory);
return withLoc(pos, irBuilder.makeMemoryCopy(*destMemory, *srcMemory));
}
Result<> makeMemoryFill(Index pos,
const std::vector<Annotation>& annotations,
Name* mem) {
auto m = getMemory(pos, mem);
CHECK_ERR(m);
return withLoc(pos, irBuilder.makeMemoryFill(*m));
}
Result<>
makePop(Index pos, const std::vector<Annotation>& annotations, Type type) {
return withLoc(pos, irBuilder.makePop(type));
}
Result<> makeCall(Index pos,
const std::vector<Annotation>& annotations,
Name func,
bool isReturn) {
return withLoc(pos, irBuilder.makeCall(func, isReturn));
}
Result<> makeCallIndirect(Index pos,
const std::vector<Annotation>& annotations,
Name* table,
HeapType type,
bool isReturn) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeCallIndirect(*t, type, isReturn));
}
Result<> makeBreak(Index pos,
const std::vector<Annotation>& annotations,
Index label,
bool isConditional) {
return withLoc(pos, irBuilder.makeBreak(label, isConditional));
}
Result<> makeSwitch(Index pos,
const std::vector<Annotation>& annotations,
const std::vector<Index> labels,
Index defaultLabel) {
return withLoc(pos, irBuilder.makeSwitch(labels, defaultLabel));
}
Result<> makeReturn(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeReturn());
}
Result<> makeRefNull(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeRefNull(type));
}
Result<> makeRefIsNull(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeRefIsNull());
}
Result<> makeRefFunc(Index pos,
const std::vector<Annotation>& annotations,
Name func) {
return withLoc(pos, irBuilder.makeRefFunc(func));
}
Result<> makeRefEq(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeRefEq());
}
Result<> makeTableGet(Index pos,
const std::vector<Annotation>& annotations,
Name* table) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableGet(*t));
}
Result<> makeTableSet(Index pos,
const std::vector<Annotation>& annotations,
Name* table) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableSet(*t));
}
Result<> makeTableSize(Index pos,
const std::vector<Annotation>& annotations,
Name* table) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableSize(*t));
}
Result<> makeTableGrow(Index pos,
const std::vector<Annotation>& annotations,
Name* table) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableGrow(*t));
}
Result<> makeTableFill(Index pos,
const std::vector<Annotation>& annotations,
Name* table) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableFill(*t));
}
Result<> makeTableCopy(Index pos,
const std::vector<Annotation>& annotations,
Name* destTable,
Name* srcTable) {
auto dest = getTable(pos, destTable);
CHECK_ERR(dest);
auto src = getTable(pos, srcTable);
CHECK_ERR(src);
return withLoc(pos, irBuilder.makeTableCopy(*dest, *src));
}
Result<> makeTableInit(Index pos,
const std::vector<Annotation>& annotations,
Name* table,
Name elem) {
auto t = getTable(pos, table);
CHECK_ERR(t);
return withLoc(pos, irBuilder.makeTableInit(elem, *t));
}
Result<>
makeThrow(Index pos, const std::vector<Annotation>& annotations, Name tag) {
return withLoc(pos, irBuilder.makeThrow(tag));
}
Result<> makeRethrow(Index pos,
const std::vector<Annotation>& annotations,
Index label) {
return withLoc(pos, irBuilder.makeRethrow(label));
}
Result<> makeThrowRef(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeThrowRef());
}
Result<> makeTupleMake(Index pos,
const std::vector<Annotation>& annotations,
uint32_t arity) {
return withLoc(pos, irBuilder.makeTupleMake(arity));
}
Result<> makeTupleExtract(Index pos,
const std::vector<Annotation>& annotations,
uint32_t arity,
uint32_t index) {
return withLoc(pos, irBuilder.makeTupleExtract(arity, index));
}
Result<> makeTupleDrop(Index pos,
const std::vector<Annotation>& annotations,
uint32_t arity) {
return withLoc(pos, irBuilder.makeTupleDrop(arity));
}
Result<> makeCallRef(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
bool isReturn) {
return withLoc(pos, irBuilder.makeCallRef(type, isReturn));
}
Result<> makeRefI31(Index pos,
const std::vector<Annotation>& annotations,
Shareability share) {
return withLoc(pos, irBuilder.makeRefI31(share));
}
Result<> makeI31Get(Index pos,
const std::vector<Annotation>& annotations,
bool signed_) {
return withLoc(pos, irBuilder.makeI31Get(signed_));
}
Result<> makeRefTest(Index pos,
const std::vector<Annotation>& annotations,
Type type) {
return withLoc(pos, irBuilder.makeRefTest(type));
}
Result<> makeRefCast(Index pos,
const std::vector<Annotation>& annotations,
Type type) {
return withLoc(pos, irBuilder.makeRefCast(type));
}
Result<> makeBrOn(Index pos,
const std::vector<Annotation>& annotations,
Index label,
BrOnOp op,
Type in = Type::none,
Type out = Type::none) {
return withLoc(pos, irBuilder.makeBrOn(label, op, in, out));
}
Result<> makeStructNew(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeStructNew(type));
}
Result<> makeStructNewDefault(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeStructNewDefault(type));
}
Result<> makeStructGet(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Index field,
bool signed_) {
return withLoc(pos, irBuilder.makeStructGet(type, field, signed_));
}
Result<> makeStructSet(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Index field) {
return withLoc(pos, irBuilder.makeStructSet(type, field));
}
Result<> makeArrayNew(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeArrayNew(type));
}
Result<> makeArrayNewDefault(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeArrayNewDefault(type));
}
Result<> makeArrayNewData(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Name data) {
return withLoc(pos, irBuilder.makeArrayNewData(type, data));
}
Result<> makeArrayNewElem(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Name elem) {
return withLoc(pos, irBuilder.makeArrayNewElem(type, elem));
}
Result<> makeArrayNewFixed(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
uint32_t arity) {
return withLoc(pos, irBuilder.makeArrayNewFixed(type, arity));
}
Result<> makeArrayGet(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
bool signed_) {
return withLoc(pos, irBuilder.makeArrayGet(type, signed_));
}
Result<> makeArraySet(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeArraySet(type));
}
Result<> makeArrayLen(Index pos, const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeArrayLen());
}
Result<> makeArrayCopy(Index pos,
const std::vector<Annotation>& annotations,
HeapType destType,
HeapType srcType) {
return withLoc(pos, irBuilder.makeArrayCopy(destType, srcType));
}
Result<> makeArrayFill(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeArrayFill(type));
}
Result<> makeArrayInitData(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Name data) {
return withLoc(pos, irBuilder.makeArrayInitData(type, data));
}
Result<> makeArrayInitElem(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
Name elem) {
return withLoc(pos, irBuilder.makeArrayInitElem(type, elem));
}
Result<>
makeRefAs(Index pos, const std::vector<Annotation>& annotations, RefAsOp op) {
return withLoc(pos, irBuilder.makeRefAs(op));
}
Result<> makeStringNew(Index pos,
const std::vector<Annotation>& annotations,
StringNewOp op) {
return withLoc(pos, irBuilder.makeStringNew(op));
}
Result<> makeStringConst(Index pos,
const std::vector<Annotation>& annotations,
std::string_view str) {
// Re-encode from WTF-8 to WTF-16.
std::stringstream wtf16;
if (!String::convertWTF8ToWTF16(wtf16, str)) {
return in.err(pos, "invalid string constant");
}
// TODO: Use wtf16.view() once we have C++20.
return withLoc(pos, irBuilder.makeStringConst(wtf16.str()));
}
Result<> makeStringMeasure(Index pos,
const std::vector<Annotation>& annotations,
StringMeasureOp op) {
return withLoc(pos, irBuilder.makeStringMeasure(op));
}
Result<> makeStringEncode(Index pos,
const std::vector<Annotation>& annotations,
StringEncodeOp op) {
return withLoc(pos, irBuilder.makeStringEncode(op));
}
Result<> makeStringConcat(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeStringConcat());
}
Result<> makeStringEq(Index pos,
const std::vector<Annotation>& annotations,
StringEqOp op) {
return withLoc(pos, irBuilder.makeStringEq(op));
}
Result<> makeStringWTF16Get(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeStringWTF16Get());
}
Result<> makeStringSliceWTF(Index pos,
const std::vector<Annotation>& annotations) {
return withLoc(pos, irBuilder.makeStringSliceWTF());
}
Result<> makeContBind(Index pos,
const std::vector<Annotation>& annotations,
HeapType contTypeBefore,
HeapType contTypeAfter) {
return withLoc(pos, irBuilder.makeContBind(contTypeBefore, contTypeAfter));
}
Result<> makeContNew(Index pos,
const std::vector<Annotation>& annotations,
HeapType type) {
return withLoc(pos, irBuilder.makeContNew(type));
}
Result<> makeResume(Index pos,
const std::vector<Annotation>& annotations,
HeapType type,
const TagLabelListT& tagLabels) {
std::vector<Name> tags;
std::vector<Index> labels;
tags.reserve(tagLabels.size());
labels.reserve(tagLabels.size());
for (auto& [tag, label] : tagLabels) {
tags.push_back(tag);
labels.push_back(label);
}
return withLoc(pos, irBuilder.makeResume(type, tags, labels));
}
Result<>
makeSuspend(Index pos, const std::vector<Annotation>& annotations, Name tag) {
return withLoc(pos, irBuilder.makeSuspend(tag));
}
};
} // namespace wasm::WATParser
#endif // parser_context_h
|