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
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
open Mo_def
open Mo_types
open Mo_values
module Flags = Mo_config.Flags
open Syntax
open Source
module T = Type
module A = Effect
module C = Async_cap
module S = Set.Make(String)
(* Contexts *)
(* availability, used to mark actor constructors as unavailable in compiled code
FUTURE: mark unavailable, non-shared variables *)
type avl = Available | Unavailable
type lab_env = T.typ T.Env.t
type ret_env = T.typ option
type val_env = (T.typ * Source.region * Scope.val_kind * avl) T.Env.t
(* separate maps for values and types; entries only for _public_ elements *)
type visibility_src = {depr : string option; id_region : Source.region; field_region : Source.region}
type visibility_env = visibility_src T.Env.t * visibility_src T.Env.t
let available env = T.Env.map (fun (ty, at, kind) -> (ty, at, kind, Available)) env
let initial_scope =
{ Scope.empty with
Scope.typ_env = T.Env.singleton T.default_scope_var C.top_cap;
Scope.con_env = T.ConSet.singleton C.top_cap;
}
type unused_warnings = (string * Source.region * Scope.val_kind) List.t
type env =
{ vals : val_env;
libs : Scope.lib_env;
typs : Scope.typ_env;
cons : Scope.con_env;
objs : Scope.obj_env;
labs : lab_env;
rets : ret_env;
async : C.async_cap;
in_actor : bool;
in_prog : bool;
context : exp' list;
pre : bool;
weak : bool;
msgs : Diag.msg_store;
scopes : Source.region T.ConEnv.t;
check_unused : bool;
used_identifiers : S.t ref;
unused_warnings : unused_warnings ref;
reported_stable_memory : bool ref;
viper_mode : bool;
errors_only : bool;
}
let env_of_scope ?(viper_mode=false) msgs scope =
{ vals = available scope.Scope.val_env;
libs = scope.Scope.lib_env;
typs = scope.Scope.typ_env;
cons = scope.Scope.con_env;
objs = T.Env.empty;
labs = T.Env.empty;
rets = None;
async = Async_cap.NullCap;
in_actor = false;
in_prog = true;
context = [];
pre = false;
weak = false;
msgs;
scopes = T.ConEnv.empty;
check_unused = true;
used_identifiers = ref S.empty;
unused_warnings = ref [];
reported_stable_memory = ref false;
errors_only = false;
viper_mode;
}
let use_identifier env id =
env.used_identifiers := S.add id !(env.used_identifiers)
let is_unused_identifier env id =
not (S.mem id !(env.used_identifiers))
let get_identifiers identifiers =
T.Env.fold (fun id _ set -> S.add id set) identifiers S.empty
let equal_unused_warning first second = first = second
let add_unused_warning env warning =
if List.find_opt (equal_unused_warning warning) !(env.unused_warnings) = None then
env.unused_warnings := warning::!(env.unused_warnings)
else ()
let compare_unused_warning first second =
let (first_id, {left = first_left; right = first_right}, _) = first in
let (second_id, {left = second_left; right = second_right}, _) = second in
match compare first_left second_left with
| 0 ->
(match compare first_right second_right with
| 0 -> compare first_id second_id
| other -> other)
| other -> other
let sorted_unused_warnings list = List.sort compare_unused_warning list
let kind_of_field_pattern pf = match pf.it with
| { id; pat = { it = VarP pat_id; _ } } when id = pat_id -> Scope.FieldReference
| _ -> Scope.Declaration
(* Error bookkeeping *)
exception Recover
let recover_with (x : 'a) (f : 'b -> 'a) (y : 'b) = try f y with Recover -> x
let recover_opt f y = recover_with None (fun y -> Some (f y)) y
let recover f y = recover_with () f y
let display_lab = Lib.Format.display T.pp_lab
let display_typ = Lib.Format.display T.pp_typ
let display_typ_expand = Lib.Format.display T.pp_typ_expand
let display_obj fmt (s, fs) =
if !Flags.ai_errors || (List.length fs) < 16 then
Format.fprintf fmt "type:%a" display_typ (T.Obj(s, fs))
else
Format.fprintf fmt "%s." (String.trim(T.string_of_obj_sort s))
let display_vals fmt vals =
if !Flags.ai_errors then
let tfs = T.Env.fold (fun x (t, _, _, _) acc ->
if x = "Prim" || (String.length x >= 0 && x.[0] = '@')
then acc
else T.{lab = x; src = {depr = None; region = Source.no_region }; typ = t}::acc)
vals []
in
let ty = T.Obj(T.Object, List.rev tfs) in
Format.fprintf fmt " in environment:%a" display_typ ty
else
Format.fprintf fmt ""
let display_labs fmt labs =
if !Flags.ai_errors then
let tfs = T.Env.fold (fun x t acc ->
T.{lab = x; src = {depr = None; region = Source.no_region }; typ = t}::acc)
labs []
in
let ty = T.Obj(T.Object, List.rev tfs) in
Format.fprintf fmt " in label environment:%a" display_typ ty
else
Format.fprintf fmt ""
let display_typs fmt typs =
if !Flags.ai_errors then
let tfs = T.Env.fold (fun x c acc ->
if (String.length x >= 0 && (x.[0] = '@' || x.[0] = '$')) ||
T.(match Cons.kind c with
| Def ([], Prim _)
| Def ([], Any)
| Def ([], Non) -> string_of_con c = x
| _ -> false)
then acc
else T.{lab = x; src = {depr = None; region = Source.no_region }; typ = T.Typ c}::acc)
typs []
in
let ty = T.Obj(T.Object, List.rev tfs) in
Format.fprintf fmt " in type environment:%a" display_typ ty
else
Format.fprintf fmt ""
let type_error at code text : Diag.message =
Diag.error_message at code "type" text
let type_warning at code text : Diag.message =
Diag.warning_message at code "type" text
let type_info at text : Diag.message =
Diag.info_message at "type" text
let error env at code fmt =
Format.kasprintf
(fun s -> Diag.add_msg env.msgs (type_error at code s); raise Recover) fmt
let local_error env at code fmt =
Format.kasprintf (fun s -> Diag.add_msg env.msgs (type_error at code s)) fmt
let warn env at code fmt =
Format.kasprintf (fun s ->
if not env.errors_only then Diag.add_msg env.msgs (type_warning at code s)) fmt
let info env at fmt =
Format.kasprintf (fun s ->
if not env.errors_only then Diag.add_msg env.msgs (type_info at s)) fmt
let check_deprecation env at desc id depr =
match depr with
| Some ("M0199" as code) ->
if !(env.reported_stable_memory) then ()
else begin
env.reported_stable_memory := true;
(match compare !Flags.experimental_stable_memory 0 with
| -1 -> error
| 0 -> warn
| _ -> fun _ _ _ _ -> ())
env at code
"this code is (or uses) the deprecated library `ExperimentalStableMemory`.\nPlease use the `Region` library instead: https://internetcomputer.org/docs/current/motoko/main/stable-memory/stable-regions/#the-region-library or compile with flag `--experimental-stable-memory 1` to suppress this message."
end
| Some msg ->
warn env at "M0154" "%s %s is deprecated:\n%s" desc id msg
| None -> ()
let flag_of_compile_mode mode =
match mode with
| Flags.ICMode -> ""
| Flags.WASIMode -> " and flag -wasi-system-api"
| Flags.WasmMode -> " and flag -no-system-api"
| Flags.RefMode -> " and flag -ref-system-api"
let diag_in type_diag modes env at code fmt =
let mode = !Flags.compile_mode in
if !Flags.compiled && List.mem mode modes then
begin
Printf.ksprintf
(fun s ->
let s =
Printf.sprintf "%s\n (This is a limitation of the current version%s.)"
s
(flag_of_compile_mode mode)
in
Diag.add_msg env.msgs (type_diag at code s)) fmt;
true
end
else false
let error_in modes env at code fmt =
if diag_in type_error modes env at code fmt then
raise Recover
let plural cs = if T.ConSet.cardinal cs = 1 then "" else "s"
let warn_lossy_bind_type env at bind t1 t2 =
if not T.(sub t1 t2 || sub t2 t1) then
warn env at "M0190" "pattern variable %s has larger type%a\nbecause its types in the pattern alternatives are unrelated smaller types:\ntype in left pattern is%a\ntype in right pattern is%a"
bind
display_typ_expand (T.lub t1 t2)
display_typ_expand t1
display_typ_expand t2
(* Currently unused *)
let _warn_in modes env at code fmt =
ignore (diag_in type_warning modes env at code fmt)
(* Unused identifier detection *)
let emit_unused_warnings env =
let emit (id, region, kind) = match kind with
| Scope.Declaration -> warn env region "M0194" "unused identifier %s (delete or rename to wildcard `_` or `_%s`)" id id
| Scope.FieldReference -> warn env region "M0198" "unused field %s in object pattern (delete or rewrite as `%s = _`)" id id
in
let list = sorted_unused_warnings !(env.unused_warnings) in
List.iter emit list
let ignore_warning_for_id id =
if String.length id > 0 then
let prefix = String.get id 0 in
prefix = '_' || prefix = '@'
else
false
let detect_unused env inner_identifiers =
if not env.pre && env.check_unused then
T.Env.iter (fun id (_, at, kind) ->
if (not (ignore_warning_for_id id)) && (is_unused_identifier env id) then
add_unused_warning env (id, at, kind)
) inner_identifiers
let enter_scope env : S.t =
!(env.used_identifiers)
let leave_scope env inner_identifiers initial_usage =
detect_unused env inner_identifiers;
let inner_identifiers = get_identifiers inner_identifiers in
let unshadowed_usage = S.diff !(env.used_identifiers) inner_identifiers in
let final_usage = S.union initial_usage unshadowed_usage in
env.used_identifiers := final_usage
(* Value environments *)
let singleton id t = T.Env.singleton id.it (t, id.at, Scope.Declaration)
let add_id val_env id t = T.Env.add id.it (t, id.at, Scope.Declaration) val_env
(* Context extension *)
let add_lab env x t = {env with labs = T.Env.add x t env.labs}
let add_val env id t =
{ env with vals = T.Env.add id.it (t, id.at, Scope.Declaration, Available) env.vals }
let add_typs env xs cs =
{ env with
typs = List.fold_right2 T.Env.add xs cs env.typs;
cons = List.fold_right T.ConSet.disjoint_add cs env.cons;
}
let adjoin env scope =
{ env with
vals = T.Env.adjoin env.vals (available scope.Scope.val_env);
libs = T.Env.adjoin env.libs scope.Scope.lib_env;
typs = T.Env.adjoin env.typs scope.Scope.typ_env;
cons = T.ConSet.union env.cons scope.Scope.con_env;
objs = T.Env.adjoin env.objs scope.Scope.obj_env;
}
let adjoin_vals env ve = {env with vals = T.Env.adjoin env.vals (available ve)}
let adjoin_typs env te ce =
{ env with
typs = T.Env.adjoin env.typs te;
cons = T.ConSet.disjoint_union env.cons ce;
}
let disjoint_union env at code fmt env1 env2 =
try T.Env.disjoint_union env1 env2
with T.Env.Clash k -> error env at code fmt k
let sub env at t1 t2 =
try T.sub t1 t2 with T.Undecided ->
error env at "M0200" "cannot decide subtyping between type%a\nand%a"
display_typ_expand t1
display_typ_expand t2
let eq env at t1 t2 =
try T.eq t1 t2 with T.Undecided ->
error env at "M0200" "cannot decide equality between type%a\nand%a"
display_typ_expand t1
display_typ_expand t2
let eq_kind env at k1 k2 =
try T.eq_kind k1 k2 with T.Undecided ->
error env at "M0200" "cannot decide type constructor equality"
(* Coverage *)
let coverage' warnOrError category env f x t at =
let uncovered, unreached = f x t in
List.iter (fun at -> warn env at "M0146" "this pattern is never matched") unreached;
if uncovered <> [] then
warnOrError env at "M0145"
("this %s of type%a\ndoes not cover value\n %s" : (_, _, _, _) format4 )
category
display_typ_expand t
(String.concat " or\n " uncovered)
let coverage_cases category env cases t at =
coverage' warn category env Coverage.check_cases cases t at
let coverage_pat warnOrError env pat t =
coverage' warnOrError "pattern" env Coverage.check_pat pat t pat.at
(* Types *)
let check_ids env kind member ids = Lib.List.iter_pairs
(fun x y ->
if x.it = y.it
then error env y.at "M0018" "duplicate %s name %s in %s" member y.it kind;
if Hash.hash x.it = Hash.hash y.it
then error env y.at "M0019" "%s names %s and %s in %s have colliding hashes" member x.it y.it kind;
) ids
let infer_mut mut : T.typ -> T.typ =
match mut.it with
| Const -> Fun.id
| Var -> fun t -> T.Mut t
(* System method types *)
let heartbeat_type =
T.(Func (Local, Returns, [scope_bind], [], [Async (Fut, Var (default_scope_var, 0), unit)]))
let timer_type =
T.(Func (Local, Returns, [scope_bind],
[Func (Local, Returns, [], [Prim Nat64], [])],
[Async (Fut, Var (default_scope_var, 0), unit)]))
let system_funcs tfs =
[
("heartbeat", heartbeat_type);
("timer", timer_type);
T.("preupgrade", Func (Local, Returns, [scope_bind], [], []));
T.("postupgrade", Func (Local, Returns, [scope_bind], [], []));
("inspect",
(let msg_typ = T.decode_msg_typ tfs in
let record_typ =
T.(Obj (Object, List.sort compare_field
[{lab = "caller"; typ = principal; src = empty_src};
{lab = "arg"; typ = blob; src = empty_src};
{lab = "msg"; typ = msg_typ; src = empty_src}]))
in
T.(Func (Local, Returns, [], [record_typ], [bool]))))
]
let check_closed env id k at =
let is_typ_param c =
match Cons.kind c with
| T.Def _
| T.Abs( _, T.Pre) -> false (* an approximated type constructor *)
| T.Abs( _, _) -> true in
let typ_params = T.ConSet.filter is_typ_param env.cons in
let cs_k = T.cons_kind k in
let free_params = T.ConSet.inter typ_params cs_k in
if not (T.ConSet.is_empty free_params) then
let op, sbs, st = T.strings_of_kind k in
error env at "M0137"
"type %s%s %s %s references type parameter%s %s from an outer scope"
id.it sbs op st
(plural free_params)
(String.concat ", " (T.ConSet.fold (fun c cs -> T.string_of_con c::cs) free_params []))
(* Imports *)
let check_import env at f ri =
let full_path =
match !ri with
| Unresolved -> error env at "M0020" "unresolved import %s" f
| LibPath {path=fp; _} -> fp
| IDLPath (fp, _) -> fp
| PrimPath -> "@prim"
in
match T.Env.find_opt full_path env.libs with
| Some T.Pre ->
error env at "M0021" "cannot infer type of forward import %s" f
| Some t -> t
| None -> error env at "M0022" "imported file %s not loaded" full_path
(* Paths *)
let rec check_obj_path env path : T.obj_sort * (T.field list) =
match T.promote (check_obj_path' env path) with
| T.Obj (s, fs) as t ->
path.note <- t;
(s, fs)
| t ->
error env path.at "M0023"
"expected module, object, or actor type, but path expression produces type%a"
display_typ_expand t
and check_obj_path' env path : T.typ =
match path.it with
| IdH id ->
use_identifier env id.it;
(match T.Env.find_opt id.it env.vals with
| Some (T.Pre, _, _, _) ->
error env id.at "M0024" "cannot infer type of forward variable reference %s" id.it
| Some (t, _, _, Available) -> t
| Some (t, _, _, Unavailable) ->
error env id.at "M0025" "unavailable variable %s" id.it
| None ->
error env id.at "M0026" "unbound variable %s%a%s" id.it
display_vals env.vals
(Suggest.suggest_id "variable" id.it (T.Env.keys env.vals))
)
| DotH (path', id) ->
let s, fs = check_obj_path env path' in
match T.lookup_val_field id.it fs with
| T.Pre ->
error env id.at "M0027" "cannot infer type of forward field reference %s" id.it
| t -> t
| exception Invalid_argument _ ->
error env id.at "M0028" "field %s does not exist in %a%s"
id.it
display_obj (s, fs)
(Suggest.suggest_id "field" id.it
(List.filter_map
(function
{T.typ=T.Typ _;_} -> None
| {T.lab;_} -> Some lab) fs))
let rec check_typ_path env path : T.con =
let c = check_typ_path' env path in
path.note <- T.Typ c;
c
and check_typ_path' env path : T.con =
match path.it with
| IdH id ->
use_identifier env id.it;
(match T.Env.find_opt id.it env.typs with
| Some c -> c
| None ->
error env id.at "M0029" "unbound type %s%a%s" id.it
display_typs env.typs
(Suggest.suggest_id "type" id.it (T.Env.keys env.typs))
)
| DotH (path', id) ->
let s, fs = check_obj_path env path' in
match T.lookup_typ_field id.it fs with
| c ->
check_deprecation env path.at "type field" id.it (T.lookup_typ_deprecation id.it fs);
c
| exception Invalid_argument _ ->
error env id.at "M0030" "type field %s does not exist in type%a%s"
id.it display_typ_expand (T.Obj (s, fs))
(Suggest.suggest_id "type field" id.it
(List.filter_map
(function { T.lab; T.typ=T.Typ _;_ } -> Some lab
| _ -> None) fs))
(* Type helpers *)
let error_shared env t at code fmt =
match T.find_unshared t with
| None -> error env at code fmt
| Some t1 ->
let s =
Format.asprintf "\ntype%a\nis or contains non-shared type%a"
display_typ_expand t
display_typ_expand t1
in
Format.kasprintf (fun s1 -> Diag.add_msg env.msgs (type_error at code (s1^s)); raise Recover) fmt
let as_domT t =
match t.Source.it with
| TupT tis -> List.map snd tis
| _ -> [t]
let as_codomT sort t =
match sort, t.Source.it with
| T.Shared _, AsyncT (T.Fut, _, t1) ->
T.Promises, as_domT t1
| _ -> T.Returns, as_domT t
let check_shared_binds env at tbs =
(* should be ensured by desugaring parser *)
assert (List.length tbs > 0 &&
(List.hd(tbs)).T.sort = T.Scope);
(* shared functions can't have user declared type parameters *)
if List.length tbs > 1 then
error env at "M0180"
"shared function has unexpected type parameters"
let check_shared_return env at sort c ts =
match sort, c, ts with
| T.Shared _, T.Promises, _ -> ()
| T.Shared T.Write, T.Returns, [] -> ()
| T.Shared T.Write, _, _ -> error env at "M0035" "shared function must have syntactic return type '()' or 'async <typ>'"
| T.Shared T.Query, _, _ -> error env at "M0036" "shared query function must have syntactic return type 'async <typ>'"
| _ -> ()
let region_of_scope env typ =
match T.normalize typ with
| T.Con(c,_) ->
T.ConEnv.find_opt c env.scopes
| _ -> None
let string_of_region r =
let open Source in
let { left; right } = r in
let basename = if left.file = "" then "" else Filename.basename left.file in
Source.string_of_region
{ left = { left with file = basename };
right = { right with file = basename } }
let associated_region env typ at =
match region_of_scope env typ with
| Some r ->
Printf.sprintf "\n scope %s is %s" (T.string_of_typ_expand typ) (string_of_region r);
| None ->
if eq env at typ (T.Con(C.top_cap,[])) then
Printf.sprintf "\n scope %s is the global scope" (T.string_of_typ_expand typ)
else ""
let scope_info env typ at =
match region_of_scope env typ with
| Some r ->
let s = {left = r.left; right = r.left} in
let l = { r.right with column = r.right.column - 1 } in
let e = {left = l; right = l} in
info env s "start of scope %s mentioned in error at %s"
(T.string_of_typ_expand typ) (string_of_region at);
info env e "end of scope %s mentioned in error at %s"
(T.string_of_typ_expand typ) (string_of_region at);
| None -> ()
let infer_async_cap env sort cs tbs body_opt at =
let open T in
match sort, cs, tbs with
| Shared Write, c::_, { T.sort = Scope; _ }::_ ->
{ env with typs = Env.add default_scope_var c env.typs;
scopes = ConEnv.add c at env.scopes;
async = C.AsyncCap c }
| Shared Query, c::_, { sort = Scope; _ }::_ ->
{ env with typs = Env.add default_scope_var c env.typs;
scopes = ConEnv.add c at env.scopes;
async = C.QueryCap c }
| Shared Composite, c::_, { sort = Scope; _ }::_ ->
{ env with typs = Env.add default_scope_var c env.typs;
scopes = ConEnv.add c at env.scopes;
async = C.CompositeCap c }
| Shared _, _, _ -> assert false (* impossible given sugaring *)
| Local, c::_, { sort = Scope; _ }::_ ->
let async = match body_opt with
| Some exp when not (is_asyncE exp) -> C.SystemCap c
| _ -> C.AsyncCap c
in
{ env with typs = Env.add default_scope_var c env.typs;
scopes = ConEnv.add c at env.scopes;
async }
| _ -> { env with async = C.NullCap }
let check_AsyncCap env s at : T.typ * (T.con -> C.async_cap) =
match env.async with
| C.AwaitCap c
| C.AsyncCap c -> T.Con(c, []), fun c' -> C.AwaitCap c'
| C.CompositeCap c -> T.Con(c, []), fun c' -> C.CompositeAwaitCap c'
| C.QueryCap c -> T.Con(c, []), fun _c' -> C.ErrorCap
| C.ErrorCap ->
local_error env at "M0037" "misplaced %s; a query cannot contain an %s" s s;
T.Con(C.bogus_cap,[]), fun c -> C.NullCap
| C.(NullCap | SystemCap _) ->
local_error env at "M0037" "misplaced %s; try enclosing in an async function" s;
T.Con(C.bogus_cap,[]), fun c -> C.NullCap
| C.CompositeAwaitCap _ ->
local_error env at "M0037" "misplaced %s; a composite query cannot contain an %s" s s;
T.Con(C.bogus_cap,[]), fun c -> C.NullCap
let check_AwaitCap env s at =
match env.async with
| C.(AwaitCap c
| CompositeAwaitCap c) -> T.Con(c, [])
| C.AsyncCap _
| C.QueryCap _
| C.CompositeCap _
->
local_error env at "M0038" "misplaced %s; try enclosing in an async expression" s;
T.Con(C.bogus_cap,[])
| C.(ErrorCap | NullCap | SystemCap _) ->
local_error env at "M0038" "misplaced %s" s;
T.Con(C.bogus_cap,[])
let check_ErrorCap env s at =
match env.async with
| C.AwaitCap c -> ()
| C.ErrorCap -> ()
| C.CompositeAwaitCap c -> ()
| C.AsyncCap _
| C.QueryCap _
| C.CompositeCap _ ->
local_error env at "M0039" "misplaced %s; try enclosing in an async expression or query function" s
| C.(NullCap | SystemCap _) ->
local_error env at "M0039" "misplaced %s" s
and scope_of_env env =
C.(match env.async with
| AsyncCap c
| QueryCap c
| CompositeCap c
| CompositeAwaitCap c
| AwaitCap c
| SystemCap c -> Some (T.Con(c, []))
| ErrorCap | NullCap -> None)
let infer_class_cap env obj_sort (tbs : T.bind list) cs =
match tbs, cs with
| T.{sort = T.Scope; _} :: tbs', c :: cs' ->
(* HACK:
choosing top_cap just to support compilation of actor classes
which currently won't have any binding for c
*)
let c = if obj_sort = T.Actor then C.top_cap else c in
C.SystemCap c,
tbs',
cs'
| _ ->
C.NullCap, tbs, cs
(* Types *)
let rec check_typ env (typ : typ) : T.typ =
let t = check_typ' env typ in
typ.note <- t;
t
and check_typ' env typ : T.typ =
match typ.it with
| PathT (path, typs) ->
let c = check_typ_path env path in
let ts = List.map (check_typ env) typs in
let T.Def (tbs, _) | T.Abs (tbs, _) = Cons.kind c in
let tbs' = List.map (fun tb -> { tb with T.bound = T.open_ ts tb.T.bound }) tbs in
check_typ_bounds env tbs' ts (List.map (fun typ -> typ.at) typs) typ.at;
T.Con (c, ts)
| PrimT "Any" -> T.Any
| PrimT "None" -> T.Non
| PrimT s ->
(try T.Prim (T.prim s) with Invalid_argument _ ->
error env typ.at "M0040" "unknown primitive type"
)
| ArrayT (mut, typ) ->
let t = check_typ env typ in
T.Array (infer_mut mut t)
| TupT typs ->
T.Tup (List.map (fun (_, t) -> check_typ env t) typs)
| FuncT (sort, binds, typ1, typ2) ->
let cs, tbs, te, ce = check_typ_binds env binds in
let env' = infer_async_cap (adjoin_typs env te ce) sort.it cs tbs None typ.at in
let typs1 = as_domT typ1 in
let c, typs2 = as_codomT sort.it typ2 in
let ts1 = List.map (check_typ env') typs1 in
let ts2 = List.map (check_typ env') typs2 in
check_shared_return env typ2.at sort.it c ts2;
if not env.pre && Type.is_shared_sort sort.it then begin
check_shared_binds env typ.at tbs;
let t1 = T.seq ts1 in
if not (T.shared t1) then
error_shared env t1 typ1.at "M0031" "shared function has non-shared parameter type%a"
display_typ_expand t1;
List.iter (fun t ->
if not (T.shared t) then
error_shared env t typ.at "M0032"
"shared function has non-shared return type%a"
display_typ_expand t;
) ts2;
match c, ts2 with
| T.Returns, [] when sort.it = T.Shared T.Write -> ()
| T.Promises, _ -> ()
| _ ->
error env typ2.at "M0041"
"shared function has non-async result type%a"
display_typ_expand (T.seq ts2)
end;
T.Func (sort.it, c, T.close_binds cs tbs, List.map (T.close cs) ts1, List.map (T.close cs) ts2)
| OptT typ ->
T.Opt (check_typ env typ)
| VariantT tags ->
check_ids env "variant type" "tag"
(List.map (fun (tag : typ_tag) -> tag.it.tag) tags);
let fs = List.map (check_typ_tag env) tags in
T.Variant (List.sort T.compare_field fs)
| AsyncT (s, typ0, typ) ->
let t0 = check_typ env typ0 in
let t = check_typ env typ in
if not env.pre && not (T.shared t) then
error_shared env t typ.at
"M0033" "async has non-shared content type%a"
display_typ_expand t;
T.Async (s, t0, t)
| ObjT (sort, fields) ->
check_ids env "object type" "field"
(List.filter_map (fun (field : typ_field) ->
match field.it with ValF (x, _, _) -> Some x | _ -> None
) fields);
check_ids env "object type" "type field"
(List.filter_map (fun (field : typ_field) ->
match field.it with TypF (x, _, _) -> Some x | _ -> None
) fields);
let fs = List.map (check_typ_field env sort.it) fields in
T.Obj (sort.it, List.sort T.compare_field fs)
| AndT (typ1, typ2) ->
let t1 = check_typ env typ1 in
let t2 = check_typ env typ2 in
let t = try T.glb t1 t2 with T.PreEncountered ->
error env typ2.at "M0168"
"cannot compute intersection of types containing recursive or forward references to other type definitions"
in
if not env.pre && sub env typ.at t T.Non && not (sub env typ1.at t1 T.Non || sub env typ2.at t2 T.Non) then
warn env typ.at "M0166"
"this intersection results in type%a\nbecause operand types are inconsistent,\nleft operand is%a\nright operand is%a"
display_typ t
display_typ_expand t1
display_typ_expand t2;
t
| OrT (typ1, typ2) ->
let t1 = check_typ env typ1 in
let t2 = check_typ env typ2 in
let t = try T.lub t1 t2 with T.PreEncountered ->
error env typ2.at "M0168"
"cannot compute union of types containing recursive or forward references to other type definitions"
in
if not env.pre && sub env typ.at T.Any t && not (sub env typ1.at T.Any t1 || sub env typ2.at T.Any t2) then
warn env typ.at "M0167"
"this union results in type%a\nbecause operand types are inconsistent,\nleft operand is%a\nright operand is%a"
display_typ t
display_typ_expand t1
display_typ_expand t2;
t
| ParT typ ->
check_typ env typ
| NamedT (_, typ) ->
check_typ env typ
and check_typ_def env at (id, typ_binds, typ) : T.kind =
let cs, tbs, te, ce = check_typ_binds {env with pre = true} typ_binds in
let env' = adjoin_typs env te ce in
let t = check_typ env' typ in
let k = T.Def (T.close_binds cs tbs, T.close cs t) in
check_closed env id k at;
k
and check_typ_field env s typ_field : T.field = match typ_field.it with
| ValF (id, typ, mut) ->
let t = infer_mut mut (check_typ env typ) in
if not env.pre && s = T.Actor then begin
if not (T.is_shared_func t) then
error env typ.at "M0042" "actor field %s must have shared function type, but has type\n %s"
id.it (T.string_of_typ_expand t)
end;
T.{lab = id.it; typ = t; src = empty_src}
| TypF (id, typ_binds, typ) ->
let k = check_typ_def env typ_field.at (id, typ_binds, typ) in
let c = Cons.fresh id.it k in
T.{lab = id.it; typ = Typ c; src = empty_src}
and check_typ_tag env typ_tag =
let {tag; typ} = typ_tag.it in
let t = check_typ env typ in
T.{lab = tag.it; typ = t; src = empty_src}
and check_typ_binds_acyclic env typ_binds cs ts =
let n = List.length cs in
let ce = List.fold_right2 T.ConEnv.add cs ts T.ConEnv.empty in
let chase typ_bind c =
let rec chase i ts c' =
if i > n then
error env typ_bind.at "M0043" "type parameter %s has cyclic bounds %s"
(T.string_of_con c)
(String.concat " <: " (List.map T.string_of_typ ts)) (List.rev ts)
else
match T.ConEnv.find_opt c' ce with
| None -> ()
| Some t ->
(match T.normalize t with
| T.Con (c'', []) as t' ->
chase (i+1) (t'::ts) c''
| _ -> ())
in chase 0 [] c
in List.iter2 chase typ_binds cs
and check_typ_bind_sorts env tbs =
(* assert, don't error, since this should be a syntactic invariant of parsing *)
List.iteri (fun i tb -> assert (i = 0 || (tb.T.sort = T.Type))) tbs;
and check_typ_binds env typ_binds : T.con list * T.bind list * Scope.typ_env * Scope.con_env =
let xs = List.map (fun typ_bind -> typ_bind.it.var.it) typ_binds in
let cs =
List.map2 (fun x tb ->
match tb.note with
| Some c -> c
| None -> Cons.fresh x (T.Abs ([], T.Pre))) xs typ_binds in
let te = List.fold_left2 (fun te typ_bind c ->
let id = typ_bind.it.var in
if T.Env.mem id.it te then
error env id.at "M0044" "duplicate type name %s in type parameter list" id.it;
T.Env.add id.it c te
) T.Env.empty typ_binds cs in
let pre_env' = add_typs {env with pre = true} xs cs in
let tbs = List.map (fun typ_bind ->
{ T.var = typ_bind.it.var.it;
T.sort = typ_bind.it.sort.it;
T.bound = check_typ pre_env' typ_bind.it.bound }) typ_binds
in
check_typ_bind_sorts env tbs;
let ts = List.map (fun tb -> tb.T.bound) tbs in
check_typ_binds_acyclic env typ_binds cs ts;
let ks = List.map (fun t -> T.Abs ([], t)) ts in
List.iter2 (fun c k ->
match Cons.kind c with
| T.Abs (_, T.Pre) -> T.set_kind c k
| k' -> assert (eq_kind env Source.no_region k k')
) cs ks;
let env' = add_typs env xs cs in
let _ = List.map (fun typ_bind -> check_typ env' typ_bind.it.bound) typ_binds in
List.iter2 (fun typ_bind c -> typ_bind.note <- Some c) typ_binds cs;
cs, tbs, te, T.ConSet.of_list cs
and check_typ_bind env typ_bind : T.con * T.bind * Scope.typ_env * Scope.con_env =
match check_typ_binds env [typ_bind] with
| [c], [tb], te, cs -> c, tb, te, cs
| _ -> assert false
and check_typ_bounds env (tbs : T.bind list) (ts : T.typ list) ats at =
let pars = List.length tbs in
let args = List.length ts in
if pars <> args then begin
let consider_scope x = match tbs with
| hd :: _ when hd.T.sort = T.Scope -> x - 1
| _ -> x in
error env at "M0045"
"wrong number of type arguments: expected %d but got %d"
(consider_scope pars)
(consider_scope args)
end;
let rec go tbs' ts' ats' =
match tbs', ts', ats' with
| tb::tbs', t::ts', at'::ats' ->
if not env.pre then
let u = T.open_ ts tb.T.bound in
if not (sub env at' t u) then
local_error env at' "M0046"
"type argument%a\ndoes not match parameter bound%a"
display_typ_expand t
display_typ_expand u;
go tbs' ts' ats'
| [], [], [] -> ()
| _ -> assert false
in go tbs ts ats
(* Check type definitions productive and non-expansive *)
and check_con_env env at ce =
let cs = Productive.non_productive ce in
if not (T.ConSet.is_empty cs) then
error env at "M0157" "block contains non-productive definition%s %s"
(plural cs)
(String.concat ", " (List.sort compare (List.map Cons.name (T.ConSet.elements cs))));
begin match Mo_types.Expansive.is_expansive ce with
| None -> ()
| Some msg ->
error env at "M0156" "block contains expansive type definitions%s" msg
end;
and infer_inst env sort tbs typs t_ret at =
let ts = List.map (check_typ env) typs in
let ats = List.map (fun typ -> typ.at) typs in
match tbs, typs with
| {T.bound; sort = T.Scope; _}::tbs', typs' ->
assert (List.for_all (fun tb -> tb.T.sort = T.Type) tbs');
(match env.async with
| cap when sort = T.Local && not (T.is_async t_ret) ->
begin
match cap with
| C.(SystemCap c | AwaitCap c | AsyncCap c) ->
(T.Con(c, [])::ts, at::ats)
| _ ->
if not env.pre then
local_error env at "M0197"
"`system` capability required, but not available\n (need an enclosing async expression or function body or explicit `system` type parameter)";
(T.Con(C.bogus_cap, [])::ts, at::ats)
end
| C.(AwaitCap c | AsyncCap c) when T.(sort = Shared Query || sort = Shared Write || sort = Local) ->
(T.Con(c, [])::ts, at::ats)
| C.(AwaitCap c | AsyncCap c) when sort = T.(Shared Composite) ->
error env at "M0186"
"composite send capability required, but not available\n (cannot call a `composite query` function from a non-`composite query` function)"
| C.(CompositeAwaitCap c | CompositeCap c) ->
begin
match sort with
| T.(Shared (Composite | Query)) ->
(T.Con(c, [])::ts, at::ats)
| T.(Shared Write | Local) ->
error env at "M0187"
"send capability required, but not available\n (cannot call a `shared` function from a `composite query` function; only calls to `query` and `composite query` functions are allowed)"
end
| C.ErrorCap
| C.QueryCap _ ->
error env at "M0188"
"send capability required, but not available\n (cannot call a `shared` function from a `query` function)"
| C.NullCap
| _ ->
error env at "M0047"
"send capability required, but not available\n (need an enclosing async expression or function body)"
)
| tbs', typs' ->
assert (List.for_all (fun tb -> tb.T.sort = T.Type) tbs');
ts, ats
and check_inst_bounds env sort tbs inst t_ret at =
let ts, ats = infer_inst env sort tbs inst t_ret at in
check_typ_bounds env tbs ts ats at;
ts
(* Subgrammar of explicitly typed expressions *)
(* Roughly, this defines the sublanguage of expressions whose inferred type
is determined by explicit type annotations or previously defined identifiers,
or by expressions whose type is unambiguous and can be weakened only to Any
or via lossy width subtyping on records.
The intuition is that for an explicit expression, the inferred type is a
"good enough" choice to resolve overloading of operators that have it as
an operand.
Specifically, this excludes expression forms that are either overloaded
or have a principal type like None or Null, that are subtypes of other
non-trivial types. These must be excluded so that examples like the
following do not run into checking mode with a type that is too small:
null == ?0
[] == [0]
(break) == 0
*)
let is_explicit_lit l =
match l with
| BoolLit _ -> true
| _ -> false
let rec is_explicit_pat p =
match p.it with
| WildP | VarP _ -> false
| LitP l | SignP (_, l) -> is_explicit_lit !l
| OptP p1 | TagP (_, p1) | ParP p1 -> is_explicit_pat p1
| TupP ps -> List.for_all is_explicit_pat ps
| ObjP pfs -> List.for_all (fun (pf : pat_field) -> is_explicit_pat pf.it.pat) pfs
| AltP (p1, p2) -> is_explicit_pat p1 && is_explicit_pat p2
| AnnotP _ -> true
let rec is_explicit_exp e =
match e.it with
| PrimE _ | ActorUrlE _
| TagE _
| BreakE _ | RetE _ | ThrowE _ ->
false
| VarE _
| RelE _ | NotE _ | AndE _ | OrE _ | ImpliesE _ | OldE _ | ShowE _ | ToCandidE _ | FromCandidE _
| AssignE _ | IgnoreE _ | AssertE _ | DebugE _
| WhileE _ | ForE _
| AnnotE _ | ImportE _ ->
true
| LitE l -> is_explicit_lit !l
| UnE (_, _, e1) | OptE e1 | DoOptE e1
| ProjE (e1, _) | DotE (e1, _) | BangE e1 | IdxE (e1, _) | CallE (e1, _, _)
| LabelE (_, _, e1) | AsyncE (_, _, e1) | AwaitE (_, e1) ->
is_explicit_exp e1
| BinE (_, e1, _, e2) | IfE (_, e1, e2) ->
is_explicit_exp e1 || is_explicit_exp e2
| TupE es -> List.for_all is_explicit_exp es
| ObjE (bases, efs) ->
List.(for_all is_explicit_exp bases
&& for_all (fun (ef : exp_field) -> is_explicit_exp ef.it.exp) efs)
| ObjBlockE (_, _, dfs) ->
List.for_all (fun (df : dec_field) -> is_explicit_dec df.it.dec) dfs
| ArrayE (_, es) -> List.exists is_explicit_exp es
| SwitchE (e1, cs) ->
is_explicit_exp e1 &&
List.exists (fun (c : case) -> is_explicit_exp c.it.exp) cs
| TryE (e1, cs, _) ->
is_explicit_exp e1 &&
(cs = [] || List.exists (fun (c : case) -> is_explicit_exp c.it.exp) cs)
| BlockE ds -> List.for_all is_explicit_dec ds
| FuncE (_, _, _, p, t_opt, _, _) -> is_explicit_pat p && t_opt <> None
| LoopE (_, e_opt) -> e_opt <> None
and is_explicit_dec d =
match d.it with
| ExpD e | LetD (_, e, _) | VarD (_, e) -> is_explicit_exp e
| TypD _ -> true
| ClassD (_, _, _, p, _, _, _, dfs) ->
is_explicit_pat p &&
List.for_all (fun (df : dec_field) -> is_explicit_dec df.it.dec) dfs
(* Literals *)
let check_lit_val env t of_string at s =
try of_string s with Invalid_argument _ ->
error env at "M0048" "literal out of range for type %s"
(T.string_of_typ (T.Prim t))
let check_nat env = check_lit_val env T.Nat Numerics.Nat.of_string
let check_nat8 env = check_lit_val env T.Nat8 Numerics.Nat8.of_string
let check_nat16 env = check_lit_val env T.Nat16 Numerics.Nat16.of_string
let check_nat32 env = check_lit_val env T.Nat32 Numerics.Nat32.of_string
let check_nat64 env = check_lit_val env T.Nat64 Numerics.Nat64.of_string
let check_int env = check_lit_val env T.Int Numerics.Int.of_string
let check_int8 env = check_lit_val env T.Int8 Numerics.Int_8.of_string
let check_int16 env = check_lit_val env T.Int16 Numerics.Int_16.of_string
let check_int32 env = check_lit_val env T.Int32 Numerics.Int_32.of_string
let check_int64 env = check_lit_val env T.Int64 Numerics.Int_64.of_string
let check_float env = check_lit_val env T.Float Numerics.Float.of_string
let check_text env at s =
if not (Lib.Utf8.is_valid s) then
local_error env at "M0049" "string literal \"%s\": is not valid utf8" (String.escaped s);
s
let infer_lit env lit at : T.prim =
match !lit with
| NullLit -> T.Null
| BoolLit _ -> T.Bool
| NatLit _ -> T.Nat
| Nat8Lit _ -> T.Nat8
| Nat16Lit _ -> T.Nat16
| Nat32Lit _ -> T.Nat32
| Nat64Lit _ -> T.Nat64
| IntLit _ -> T.Int
| Int8Lit _ -> T.Int8
| Int16Lit _ -> T.Int16
| Int32Lit _ -> T.Int32
| Int64Lit _ -> T.Int64
| FloatLit _ -> T.Float
| CharLit _ -> T.Char
| TextLit _ -> T.Text
| BlobLit _ -> T.Blob
| PreLit (s, T.Nat) ->
lit := NatLit (check_nat env at s); (* default *)
T.Nat
| PreLit (s, T.Int) ->
lit := IntLit (check_int env at s); (* default *)
T.Int
| PreLit (s, T.Float) ->
lit := FloatLit (check_float env at s); (* default *)
T.Float
| PreLit (s, T.Text) ->
lit := TextLit (check_text env at s); (* default *)
T.Text
| PreLit _ ->
assert false
let check_lit env t lit at suggest =
match t, !lit with
| T.Prim T.Nat, PreLit (s, T.Nat) ->
lit := NatLit (check_nat env at s)
| T.Prim T.Nat8, PreLit (s, T.Nat) ->
lit := Nat8Lit (check_nat8 env at s)
| T.Prim T.Nat16, PreLit (s, T.Nat) ->
lit := Nat16Lit (check_nat16 env at s)
| T.Prim T.Nat32, PreLit (s, T.Nat) ->
lit := Nat32Lit (check_nat32 env at s)
| T.Prim T.Nat64, PreLit (s, T.Nat) ->
lit := Nat64Lit (check_nat64 env at s)
| T.Prim T.Int, PreLit (s, (T.Nat | T.Int)) ->
lit := IntLit (check_int env at s)
| T.Prim T.Int8, PreLit (s, (T.Nat | T.Int)) ->
lit := Int8Lit (check_int8 env at s)
| T.Prim T.Int16, PreLit (s, (T.Nat | T.Int)) ->
lit := Int16Lit (check_int16 env at s)
| T.Prim T.Int32, PreLit (s, (T.Nat | T.Int)) ->
lit := Int32Lit (check_int32 env at s)
| T.Prim T.Int64, PreLit (s, (T.Nat | T.Int)) ->
lit := Int64Lit (check_int64 env at s)
| T.Prim T.Float, PreLit (s, (T.Nat | T.Int | T.Float)) ->
lit := FloatLit (check_float env at s)
| T.Prim T.Blob, PreLit (s, T.Text) ->
lit := BlobLit s
| t, _ ->
let t' = T.Prim (infer_lit env lit at) in
if not (sub env at t' t) then
error env at "M0050"
"literal of type%a\ndoes not have expected type%a%s"
display_typ t'
display_typ_expand t
(if suggest then Suggest.suggest_conversion env.libs env.vals t' t else "")
(* Coercions *)
let array_obj t =
let open T in
let immut t =
[ {lab = "get"; typ = Func (Local, Returns, [], [Prim Nat], [t]); src = empty_src};
{lab = "size"; typ = Func (Local, Returns, [], [], [Prim Nat]); src = empty_src};
{lab = "keys"; typ = Func (Local, Returns, [], [], [iter_obj (Prim Nat)]); src = empty_src};
{lab = "vals"; typ = Func (Local, Returns, [], [], [iter_obj t]); src = empty_src};
] in
let mut t = immut t @
[ {lab = "put"; typ = Func (Local, Returns, [], [Prim Nat; t], []); src = empty_src} ] in
Object,
List.sort compare_field (match t with Mut t' -> mut t' | t -> immut t)
let blob_obj () =
let open T in
Object,
[ {lab = "vals"; typ = Func (Local, Returns, [], [], [iter_obj (Prim Nat8)]); src = empty_src};
{lab = "size"; typ = Func (Local, Returns, [], [], [Prim Nat]); src = empty_src};
]
let text_obj () =
let open T in
Object,
[ {lab = "chars"; typ = Func (Local, Returns, [], [], [iter_obj (Prim Char)]); src = empty_src};
{lab = "size"; typ = Func (Local, Returns, [], [], [Prim Nat]); src = empty_src};
]
(* Expressions *)
let error_duplicate env kind id =
error env id.at "M0051" "duplicate definition for %s%s in block" kind id.it
let error_bin_op env at t1 t2 =
error env at "M0060"
"operator is not defined for operand types%a\nand%a"
display_typ_expand t1
display_typ_expand t2
let rec infer_exp env exp : T.typ =
infer_exp' T.as_immut env exp
and infer_exp_mut env exp : T.typ =
infer_exp' Fun.id env exp
and infer_exp_promote env exp : T.typ =
let t = infer_exp env exp in
let t' = T.promote t in
if t' = T.Pre then
error env exp.at "M0053"
"cannot infer type of expression while trying to infer surrounding class type,\nbecause its type is a forward reference to type%a"
display_typ_expand t;
t'
and infer_exp' f env exp : T.typ =
assert (exp.note.note_typ = T.Pre);
let t = infer_exp'' env exp in
assert (t <> T.Pre);
let t' = f t in
if not env.pre then begin
let t'' = T.normalize t' in
assert (t'' <> T.Pre);
let note_eff = A.infer_effect_exp exp in
exp.note <- {note_typ = if env.viper_mode then t' else t''; note_eff}
end;
t'
and infer_exp'' env exp : T.typ =
let context = env.context in
let in_actor = env.in_actor in
let env = {env with in_actor = false; in_prog = false; context = exp.it::env.context} in
match exp.it with
| PrimE _ ->
error env exp.at "M0054" "cannot infer type of primitive"
| VarE id ->
use_identifier env id.it;
(match T.Env.find_opt id.it env.vals with
| Some (T.Pre, _, _, _) ->
error env id.at "M0055" "cannot infer type of forward variable %s" id.it;
| Some (t, _, _, Unavailable) ->
if !Flags.compiled then
error env id.at "M0056" "variable %s is in scope but not available in compiled code" id.it
else t
| Some (t, _, _, Available) -> id.note <- (if T.is_mut t then Var else Const); t
| None ->
error env id.at "M0057" "unbound variable %s%a%s" id.it
display_vals env.vals
(Suggest.suggest_id "variable" id.it (T.Env.keys env.vals))
)
| LitE lit ->
T.Prim (infer_lit env lit exp.at)
| ActorUrlE exp' ->
if not env.pre then check_exp_strong env T.text exp';
error env exp.at "M0058" "no type can be inferred for actor reference"
| UnE (ot, op, exp1) ->
let t1 = infer_exp_promote env exp1 in
let t = Operator.type_unop op t1 in
if not env.pre then begin
assert (!ot = Type.Pre);
if not (Operator.has_unop op t) then
error env exp.at "M0059" "operator is not defined for operand type%a"
display_typ_expand t;
ot := t;
end;
t
| BinE (ot, exp1, op, exp2) ->
let t1, t2 = infer_bin_exp env exp1 exp2 in
let t = Operator.type_binop op (T.lub (T.promote t1) (T.promote t2)) in
if not env.pre then begin
assert (!ot = Type.Pre);
if not (Operator.has_binop op t) then
error_bin_op env exp.at t1 t2
else if op = Operator.SubOp && eq env exp.at t T.nat then
warn env exp.at "M0155" "operator may trap for inferred type%a"
display_typ_expand t;
ot := t
end;
t
| RelE (ot, exp1, op, exp2) ->
if not env.pre then begin
assert (!ot = Type.Pre);
let t1, t2 = infer_bin_exp env exp1 exp2 in
let t = Operator.type_relop op (T.lub (T.promote t1) (T.promote t2)) in
if not (Operator.has_relop op t) then
error_bin_op env exp.at t1 t2;
if not (eq env exp1.at t t1 || eq env exp2.at t t2) && not (sub env exp1.at T.nat t1 && sub env exp2.at T.nat t2) then
if eq env exp.at t1 t2 then
warn env exp.at "M0061"
"comparing abstract type%a\nto itself at supertype%a"
display_typ_expand t1
display_typ_expand t
else
warn env exp.at "M0062"
"comparing incompatible types%a\nand%a\nat common supertype%a"
display_typ_expand t1
display_typ_expand t2
display_typ_expand t;
ot := t;
end;
T.bool
| ShowE (ot, exp1) ->
if not env.pre then begin
let t = infer_exp_promote env exp1 in
if not (Show.can_show t) then
error env exp.at "M0063" "show is not defined for operand type%a"
display_typ_expand t;
ot := t
end;
T.text
| ToCandidE exps ->
if not env.pre then begin
let ts = List.map (infer_exp env) exps in
if not (T.shared (T.seq ts)) then
error env exp.at "M0175" "to_candid argument must have shared type, but instead has non-shared type%a"
display_typ_expand (T.seq ts);
end;
T.Prim T.Blob
| FromCandidE exp1 ->
error env exp.at "M0176" "from_candid requires but is missing a known type (from context)"
| TupE exps ->
let ts = List.map (infer_exp env) exps in
T.Tup ts
| OptE exp1 ->
let t1 = infer_exp env exp1 in
T.Opt t1
| DoOptE exp1 ->
let env' = add_lab env "!" (T.Prim T.Null) in
let t1 = infer_exp env' exp1 in
T.Opt t1
| BangE exp1 ->
begin
let t1 = infer_exp_promote env exp1 in
if Option.is_none (T.Env.find_opt "!" env.labs) then
local_error env exp.at "M0064" "misplaced '!' (no enclosing 'do ? { ... }' expression)";
try
T.as_opt_sub t1
with Invalid_argument _ ->
error env exp1.at "M0065"
"expected option type before '!', but expression produces type%a"
display_typ_expand t1
end
| TagE (id, exp1) ->
let t1 = infer_exp env exp1 in
T.Variant [T.{lab = id.it; typ = t1; src = empty_src}]
| ProjE (exp1, n) ->
let t1 = infer_exp_promote env exp1 in
(try
let ts = T.as_tup_sub n t1 in
match List.nth_opt ts n with
| Some t -> t
| None ->
error env exp.at "M0066" "tuple projection %n is out of bounds for type%a"
n
display_typ_expand t1
with Invalid_argument _ ->
error env exp1.at "M0067"
"expected tuple type, but expression produces type%a"
display_typ_expand t1
)
| ObjBlockE (obj_sort, typ_opt, dec_fields) ->
if obj_sort.it = T.Actor then begin
error_in [Flags.WASIMode; Flags.WasmMode] env exp.at "M0068"
"actors are not supported";
match context with
| (AsyncE _ :: AwaitE _ :: _ :: _ ) ->
error_in [Flags.ICMode; Flags.RefMode] env exp.at "M0069"
"non-toplevel actor; an actor can only be declared at the toplevel of a program"
| _ -> ()
end;
let env' =
if obj_sort.it = T.Actor then
{ env with
in_actor = true;
async = C.SystemCap C.top_cap }
else env
in
let t = infer_obj env' obj_sort.it dec_fields exp.at in
begin match env.pre, typ_opt with
| false, (_, Some typ) ->
let t' = check_typ env' typ in
if not (sub env exp.at t t') then
local_error env exp.at "M0192"
"body of type%a\ndoes not match expected type%a"
display_typ_expand t
display_typ_expand t'
| _ -> ()
end;
t
| ObjE (exp_bases, exp_fields) ->
let open List in
check_ids env "object" "field"
(map (fun (ef : exp_field) -> ef.it.id) exp_fields);
let fts = map (infer_exp_field env) exp_fields in
let bases = map (fun b -> infer_exp_promote env b, b) exp_bases in
let homonymous_fields ft1 ft2 = T.compare_field ft1 ft2 = 0 in
(* removing explicit fields from the bases *)
let strip (base_t, base) =
let s, base_fts =
try T.as_obj base_t with Invalid_argument _ ->
error env base.at "M0093"
"expected object type, but expression produces type%a"
display_typ_expand base_t in
(* forbid actors as bases *)
if s = T.Actor then
error env base.at "M0178"
"actors cannot serve as bases in record extensions";
T.(Obj (Object, filter (fun ft -> not (exists (homonymous_fields ft) fts)) base_fts))
in
let stripped_bases = map strip bases in
let ambiguous_fields ft1 ft2 =
homonymous_fields ft1 ft2 &&
(* allow equivalent type fields *)
match ft1.T.typ, ft2.T.typ with
(* homonymous type fields are ambiguous when unequal *)
| T.Typ c1, T.Typ c2 -> not (eq env exp.at ft1.T.typ ft2.T.typ)
(* homonymous value fields are always ambiguous *)
| _ -> true
in
(* field disjointness of stripped bases *)
let rec disjoint = function
| [] | [_] -> ()
| (h, h_exp) :: t ->
let avoid ft =
let avoid_fields b b_fts =
if exists (ambiguous_fields ft) b_fts then
begin
let frag_typ, frag_sug = match ft.T.typ with
| T.Typ c -> "type ", ""
| _ -> "", " (consider overwriting)" in
info env h_exp.at "%sfield also present in base, here%s" frag_typ frag_sug;
error env b.at "M0177"
"ambiguous %sfield in base%a"
frag_typ
display_lab ft.T.lab
end in
iter (fun (b_t, b) -> avoid_fields b (T.as_obj b_t |> snd)) t in
iter avoid (T.as_obj h |> snd);
disjoint t in
disjoint (map2 (fun b_t b -> b_t, b) stripped_bases exp_bases);
(* do not allow var fields for now (to avoid aliasing) *)
begin if not (!Flags.experimental_field_aliasing) then
let immutable_base b_typ b_exp =
let constant_field (ft : T.field) =
if T.(is_mut ft.typ) then
begin
info env b_exp.at "overwrite field to resolve error";
error env b_exp.at "M0179"
"base has non-aliasable var field%a"
display_lab ft.T.lab
end
in
iter constant_field (T.as_obj b_typ |> snd)
in
iter2 immutable_base stripped_bases exp_bases
end;
let t_base = T.(fold_left glb (Obj (Object, [])) stripped_bases) in
T.(glb t_base (Obj (Object, sort T.compare_field fts)))
| DotE (exp1, id) ->
let t1 = infer_exp_promote env exp1 in
let s, tfs =
try T.as_obj_sub [id.it] t1 with Invalid_argument _ ->
try array_obj (T.as_array_sub t1) with Invalid_argument _ ->
try blob_obj (T.as_prim_sub T.Blob t1) with Invalid_argument _ ->
try text_obj (T.as_prim_sub T.Text t1) with Invalid_argument _ ->
error env exp1.at "M0070"
"expected object type, but expression produces type%a"
display_typ_expand t1
in
(match T.lookup_val_field id.it tfs with
| T.Pre ->
error env exp.at "M0071"
"cannot infer type of forward field reference %s"
id.it
| t ->
if not env.pre then
check_deprecation env exp.at "field" id.it (T.lookup_val_deprecation id.it tfs);
t
| exception Invalid_argument _ ->
error env exp1.at "M0072"
"field %s does not exist in %a%s"
id.it
display_obj (s, tfs)
(Suggest.suggest_id "field" id.it
(List.filter_map
(function
{ T.typ=T.Typ _;_} -> None
| {T.lab;_} -> Some lab) tfs))
)
| AssignE (exp1, exp2) ->
if not env.pre then begin
let t1 = infer_exp_mut env exp1 in
try
let t2 = T.as_mut t1 in
check_exp_strong env t2 exp2
with Invalid_argument _ ->
error env exp.at "M0073" "expected mutable assignment target";
end;
T.unit
| ArrayE (mut, exps) ->
let ts = List.map (infer_exp env) exps in
let t1 = List.fold_left T.lub T.Non ts in
if not env.pre && inconsistent t1 ts then
warn env exp.at "M0074"
"this array has type%a\nbecause elements have inconsistent types"
display_typ (T.Array t1);
T.Array (match mut.it with Const -> t1 | Var -> T.Mut t1)
| IdxE (exp1, exp2) ->
let t1 = infer_exp_promote env exp1 in
(try
let t = T.as_array_sub t1 in
if not env.pre then check_exp_strong env T.nat exp2;
t
with Invalid_argument _ ->
error env exp1.at "M0075"
"expected array type, but expression produces type%a"
display_typ_expand t1
)
| FuncE (_, shared_pat, typ_binds, pat, typ_opt, _sugar, exp1) ->
if not env.pre && not in_actor && T.is_shared_sort shared_pat.it then begin
error_in [Flags.WASIMode; Flags.WasmMode] env exp1.at "M0076"
"shared functions are not supported";
if not in_actor then
error_in [Flags.ICMode; Flags.RefMode] env exp1.at "M0077"
"a shared function is only allowed as a public field of an actor";
end;
let typ = match typ_opt with
| Some typ -> typ
| None -> {it = TupT []; at = no_region; note = T.Pre}
in
let sort, ve = check_shared_pat env shared_pat in
let cs, tbs, te, ce = check_typ_binds env typ_binds in
let c, ts2 = as_codomT sort typ in
check_shared_return env typ.at sort c ts2;
let env' = infer_async_cap (adjoin_typs env te ce) sort cs tbs (Some exp1) exp.at in
let t1, ve1 = infer_pat_exhaustive (if T.is_shared_sort sort then local_error else warn) env' pat in
let ve2 = T.Env.adjoin ve ve1 in
let ts2 = List.map (check_typ env') ts2 in
typ.note <- T.seq ts2; (* HACK *)
let codom = T.codom c (fun () -> T.Con(List.hd cs,[])) ts2 in
if not env.pre then begin
let env'' =
{ env' with
labs = T.Env.empty;
rets = Some codom;
(* async = None; *) }
in
let initial_usage = enter_scope env'' in
check_exp_strong (adjoin_vals env'' ve2) codom exp1;
leave_scope env ve2 initial_usage;
if Type.is_shared_sort sort then begin
check_shared_binds env exp.at tbs;
if not (T.shared t1) then
error_shared env t1 pat.at "M0031"
"shared function has non-shared parameter type%a"
display_typ_expand t1;
List.iter (fun t ->
if not (T.shared t) then
error_shared env t typ.at "M0032"
"shared function has non-shared return type%a"
display_typ_expand t;
) ts2;
match c, ts2 with
| T.Returns, [] when sort = T.Shared T.Write ->
if not (is_ignore_asyncE exp1) then
error env exp1.at "M0078"
"shared function with () result type has unexpected body:\n the body must either be of sugared form '{ ... }' \n or explicit form '= ignore ((async ...) : async ())'"
| T.Promises, _ ->
if not (is_asyncE exp1) then
error env exp1.at "M0079"
"shared function with async result type has non-async body"
| _ ->
error env typ.at "M0041" "shared function has non-async result type%a"
display_typ_expand codom
end
end;
let ts1 = match pat.it with TupP _ -> T.seq_of_tup t1 | _ -> [t1] in
T.Func (sort, c, T.close_binds cs tbs, List.map (T.close cs) ts1, List.map (T.close cs) ts2)
| CallE (exp1, inst, exp2) ->
infer_call env exp1 inst exp2 exp.at None
| BlockE decs ->
let t, _ = infer_block env decs exp.at false in
t
| NotE exp1 ->
if not env.pre then check_exp_strong env T.bool exp1;
T.bool
| AndE (exp1, exp2) ->
if not env.pre then begin
check_exp_strong env T.bool exp1;
check_exp_strong env T.bool exp2
end;
T.bool
| OrE (exp1, exp2) ->
if not env.pre then begin
check_exp_strong env T.bool exp1;
check_exp_strong env T.bool exp2
end;
T.bool
| ImpliesE (exp1, exp2) ->
if not env.pre then begin
check_exp_strong env T.bool exp1;
check_exp_strong env T.bool exp2
end;
T.bool
| OldE exp1 ->
infer_exp_promote env exp1
| IfE (exp1, exp2, exp3) ->
if not env.pre then check_exp_strong env T.bool exp1;
let t2 = infer_exp env exp2 in
let t3 = infer_exp env exp3 in
let t = T.lub t2 t3 in
if not env.pre && inconsistent t [t2; t3] then
warn env exp.at "M0081"
"this if has type%a\nbecause branches have inconsistent types,\ntrue produces%a\nfalse produces%a"
display_typ t
display_typ_expand t2
display_typ_expand t3;
t
| SwitchE (exp1, cases) ->
let t1 = infer_exp_promote env exp1 in
let t = infer_cases env t1 T.Non cases in
if not env.pre then
coverage_cases "switch" env cases t1 exp.at;
t
| TryE (exp1, cases, exp2_opt) ->
let t1 = infer_exp env exp1 in
let t2 = infer_cases env T.catch T.Non cases in
if not env.pre then begin
check_ErrorCap env "try" exp.at;
if cases <> [] then
coverage_cases "try handler" env cases T.catch exp.at;
Option.iter (check_exp_strong { env with async = C.NullCap; rets = None; labs = T.Env.empty } T.unit) exp2_opt
end;
T.lub t1 t2
| WhileE (exp1, exp2) ->
if not env.pre then begin
check_exp_strong env T.bool exp1;
check_exp_strong env T.unit exp2
end;
T.unit
| LoopE (exp1, None) ->
if not env.pre then begin
check_exp_strong env T.unit exp1
end;
T.Non
| LoopE (exp1, Some exp2) ->
if not env.pre then begin
check_exp_strong env T.unit exp1;
check_exp_strong env T.bool exp2
end;
T.unit
| ForE (pat, exp1, exp2) ->
if not env.pre then begin
let t1 = infer_exp_promote env exp1 in
(try
let _, tfs = T.as_obj_sub ["next"] t1 in
let t = T.lookup_val_field "next" tfs in
let t1, t2 = T.as_mono_func_sub t in
if not (sub env exp1.at T.unit t1) then raise (Invalid_argument "");
let t2' = T.as_opt_sub t2 in
let ve = check_pat_exhaustive warn env t2' pat in
check_exp_strong (adjoin_vals env ve) T.unit exp2
with Invalid_argument _ | Not_found ->
local_error env exp1.at "M0082"
"expected iterable type, but expression has type%a"
display_typ_expand t1
);
end;
T.unit
| LabelE (id, typ, exp1) ->
let t = check_typ env typ in
if not env.pre then check_exp (add_lab env id.it t) t exp1;
t
| DebugE exp1 ->
if not env.pre then check_exp_strong env T.unit exp1;
T.unit
| BreakE (id, exp1) ->
(match T.Env.find_opt id.it env.labs with
| Some t ->
if not env.pre then check_exp env t exp1
| None ->
let name =
match String.split_on_char ' ' id.it with
| ["continue"; name] -> name
| _ -> id.it
in local_error env id.at "M0083" "unbound label %s%a%s" name
display_labs env.labs
(Suggest.suggest_id "label" id.it (T.Env.keys env.labs))
);
T.Non
| RetE exp1 ->
if not env.pre then begin
match env.rets with
| Some T.Pre ->
local_error env exp.at "M0084" "cannot infer return type"
| Some t ->
check_exp_strong env t exp1
| None ->
local_error env exp.at "M0085" "misplaced return"
end;
T.Non
| ThrowE exp1 ->
if not env.pre then begin
check_ErrorCap env "throw" exp.at;
check_exp_strong env T.throw exp1
end;
T.Non
| AsyncE (s, typ_bind, exp1) ->
error_in [Flags.WASIMode; Flags.WasmMode] env exp1.at "M0086"
"async expressions are not supported";
let t1, next_cap = check_AsyncCap env "async expression" exp.at in
let c, tb, ce, cs = check_typ_bind env typ_bind in
let ce_scope = T.Env.add T.default_scope_var c ce in (* pun scope var with c *)
let env' =
{(adjoin_typs env ce_scope cs) with
labs = T.Env.empty;
rets = Some T.Pre;
async = next_cap c;
scopes = T.ConEnv.add c exp.at env.scopes } in
let t = infer_exp env' exp1 in
let t' = T.open_ [t1] (T.close [c] t) in
if not (T.shared t') then
error_shared env t' exp1.at "M0033" "async type has non-shared content type%a"
display_typ_expand t';
T.Async (s, t1, t')
| AwaitE (s, exp1) ->
let t0 = check_AwaitCap env "await" exp.at in
let t1 = infer_exp_promote env exp1 in
(try
let (t2, t3) = T.as_async_sub s t0 t1 in
if not (eq env exp.at t0 t2) then begin
local_error env exp1.at "M0087"
"ill-scoped await: expected async type from current scope %s, found async type from other scope %s%s%s"
(T.string_of_typ_expand t0)
(T.string_of_typ_expand t2)
(associated_region env t0 exp.at)
(associated_region env t2 exp.at);
scope_info env t0 exp.at;
scope_info env t2 exp.at;
end;
t3
with Invalid_argument _ ->
error env exp1.at "M0088"
"expected async%s type, but expression has type%a%s"
(if s = T.Fut then "" else "*")
display_typ_expand t1
(if T.is_async t1 then
(if s = T.Fut then
"\nUse keyword 'await*' (not 'await') to consume this type."
else
"\nUse keyword 'await' (not 'await*') to consume this type.")
else "")
)
| AssertE (_, exp1) ->
if not env.pre then check_exp_strong env T.bool exp1;
T.unit
| AnnotE (exp1, typ) ->
let t = check_typ env typ in
if not env.pre then check_exp_strong env t exp1;
t
| IgnoreE exp1 ->
if not env.pre then begin
check_exp_strong env T.Any exp1;
if sub env exp1.at exp1.note.note_typ T.unit then
warn env exp.at "M0089" "redundant ignore, operand already has type ()"
end;
T.unit
| ImportE (f, ri) ->
check_import env exp.at f ri
and infer_bin_exp env exp1 exp2 =
match is_explicit_exp exp1, is_explicit_exp exp2 with
| true, false ->
let t1 = T.normalize (infer_exp env exp1) in
if not env.pre then check_exp_weak env t1 exp2;
t1, t1
| false, true ->
let t2 = T.normalize (infer_exp env exp2) in
if not env.pre then check_exp_weak env t2 exp1;
t2, t2
| _ ->
let t1 = T.normalize (infer_exp env exp1) in
let t2 = T.normalize (infer_exp env exp2) in
t1, t2
and infer_exp_field env rf =
let { mut; id; exp } = rf.it in
let t = infer_exp env exp in
let t1 = if mut.it = Syntax.Var then T.Mut t else t in
T.{ lab = id.it; typ = t1; src = empty_src }
and check_exp_strong env t exp =
check_exp {env with weak = false} t exp
and check_exp_weak env t exp =
check_exp {env with weak = true} t exp
and check_exp env t exp =
assert (not env.pre);
assert (exp.note.note_typ = T.Pre);
assert (t <> T.Pre);
let t' = check_exp' env (T.normalize t) exp in
let e = A.infer_effect_exp exp in
exp.note <- {exp.note with note_typ = t'; note_eff = e}
and check_exp' env0 t exp : T.typ =
let env = {env0 with in_prog = false; in_actor = false; context = exp.it :: env0.context } in
match exp.it, t with
| PrimE s, T.Func _ ->
t
| LitE lit, _ ->
check_lit env t lit exp.at true;
t
| ActorUrlE exp', t' ->
check_exp_strong env T.text exp';
begin match T.normalize t' with
| T.(Obj (Actor, _)) -> t'
| _ -> error env exp.at "M0090" "actor reference must have an actor type"
end
| UnE (ot, op, exp1), _ when Operator.has_unop op t ->
ot := t;
check_exp env t exp1;
t
| BinE (ot, exp1, op, exp2), _ when Operator.has_binop op t ->
ot := t;
check_exp env t exp1;
check_exp env t exp2;
if env.weak && op = Operator.SubOp && eq env exp.at t T.nat then
warn env exp.at "M0155" "operator may trap for inferred type%a"
display_typ_expand t;
t
| ToCandidE exps, _ ->
if not env.pre then begin
let ts = List.map (infer_exp env) exps in
if not (sub env exp.at (T.Prim T.Blob) t) then
error env exp.at "M0172" "to_candid produces a Blob that is not a subtype of%a"
display_typ_expand t;
if not (T.shared (T.seq ts)) then
error env exp.at "M0173" "to_candid argument must have shared type, but instead has non-shared type%a"
display_typ_expand (T.seq ts);
end;
T.Prim T.Blob
| FromCandidE exp1, t when T.shared t && T.is_opt t ->
check_exp env (T.Prim T.Blob) exp1;
t
| FromCandidE _, t ->
error env exp.at "M0174" "from_candid produces an optional shared type, not type%a"
display_typ_expand t
| TupE exps, T.Tup ts when List.length exps = List.length ts ->
List.iter2 (check_exp env) ts exps;
t
| ObjE ([], exp_fields), T.Obj(T.Object, fts) -> (* TODO: infer bases? Default does a decent job. *)
check_ids env "object" "field"
(List.map (fun (ef : exp_field) -> ef.it.id) exp_fields);
List.iter (fun ef -> check_exp_field env ef fts) exp_fields;
List.iter (fun ft ->
if not (List.exists (fun (ef : exp_field) -> ft.T.lab = ef.it.id.it) exp_fields)
then local_error env exp.at "M0151"
"object literal is missing field %s from expected type%a"
ft.T.lab
display_typ_expand t;
) fts;
t
| OptE exp1, _ when T.is_opt t ->
check_exp env (T.as_opt t) exp1;
t
| DoOptE exp1, _ when T.is_opt t ->
let env' = add_lab env "!" (T.Prim T.Null) in
check_exp env' (T.as_opt t) exp1;
t
| BangE exp1, t ->
if Option.is_none (T.Env.find_opt "!" env.labs) then
local_error env exp.at "M0064" "misplaced '!' (no enclosing 'do ? { ... }' expression)";
check_exp env (T.Opt t) exp1;
t
| ArrayE (mut, exps), T.Array t' ->
if (mut.it = Var) <> T.is_mut t' then
local_error env exp.at "M0091"
"%smutable array expression cannot produce expected type%a"
(if mut.it = Const then "im" else "")
display_typ_expand (T.Array t');
List.iter (check_exp env (T.as_immut t')) exps;
t
| AsyncE (s1, tb, exp1), T.Async (s2, t1', t') ->
error_in [Flags.WASIMode; Flags.WasmMode] env exp1.at "M0086"
"async expressions are not supported";
let t1, next_cap = check_AsyncCap env "async expression" exp.at in
if s1 <> s2 then begin
local_error env exp.at "M0183"
"async expression cannot produce expected async type %a.\n%s"
display_typ_expand t
(if s2 = T.Fut then
"Use keyword 'async' (not 'async*') to produce the expected type."
else
"Use keyword 'async*' (not 'async') to produce the expected type.")
end;
if not (eq env exp.at t1 t1') then begin
local_error env exp.at "M0092"
"async at scope%a\ncannot produce expected scope%a%s%s"
display_typ_expand t1
display_typ_expand t1'
(associated_region env t1 exp.at) (*FIX ME?*)
(associated_region env t1' exp.at);
scope_info env t1 exp.at;
scope_info env t1' exp.at
end;
let c, tb, ce, cs = check_typ_bind env tb in
let ce_scope = T.Env.add T.default_scope_var c ce in (* pun scope var with c *)
let env' =
{(adjoin_typs env ce_scope cs) with
labs = T.Env.empty;
rets = Some t';
async = next_cap c;
scopes = T.ConEnv.add c exp.at env.scopes;
} in
check_exp env' t' exp1;
t
| BlockE decs, _ ->
ignore (check_block env t decs exp.at);
t
| IfE (exp1, exp2, exp3), _ ->
check_exp_strong env T.bool exp1;
check_exp env t exp2;
check_exp env t exp3;
t
| SwitchE (exp1, cases), _ ->
let t1 = infer_exp_promote env exp1 in
check_cases env t1 t cases;
coverage_cases "switch" env cases t1 exp.at;
t
| TryE (exp1, cases, exp2_opt), _ ->
check_ErrorCap env "try" exp.at;
check_exp env t exp1;
check_cases env T.catch t cases;
if cases <> []
then coverage_cases "try handler" env cases T.catch exp.at;
if not env.pre then
Option.iter (check_exp_strong { env with async = C.NullCap; rets = None; labs = T.Env.empty; } T.unit) exp2_opt;
t
(* TODO: allow shared with one scope par *)
| FuncE (_, shared_pat, [], pat, typ_opt, _sugar, exp), T.Func (s, c, [], ts1, ts2) ->
let sort, ve = check_shared_pat env shared_pat in
if not env.pre && not env0.in_actor && T.is_shared_sort sort then
error_in [Flags.ICMode; Flags.RefMode] env exp.at "M0077"
"a shared function is only allowed as a public field of an actor";
let ve1 = check_pat_exhaustive (if T.is_shared_sort sort then local_error else warn) env (T.seq ts1) pat in
let ve2 = T.Env.adjoin ve ve1 in
let codom = T.codom c (fun () -> assert false) ts2 in
let t2 = match typ_opt with
| None -> codom
| Some typ -> check_typ env typ
in
if sort <> s then
error env exp.at "M0094"
"%sshared function does not match expected %sshared function type"
(if sort = T.Local then "non-" else "")
(if s = T.Local then "non-" else "");
if not (sub env Source.no_region t2 codom) then
error env exp.at "M0095"
"function return type%a\ndoes not match expected return type%a"
display_typ_expand t2
display_typ_expand codom;
let env' =
{ env with
labs = T.Env.empty;
rets = Some t2;
async = C.NullCap; }
in
check_exp_strong (adjoin_vals env' ve2) t2 exp;
t
| CallE (exp1, inst, exp2), _ ->
let t' = infer_call env exp1 inst exp2 exp.at (Some t) in
if not (sub env exp1.at t' t) then
local_error env0 exp.at "M0096"
"expression of type%a\ncannot produce expected type%a"
display_typ_expand t'
display_typ_expand t;
t'
| TagE (id, exp1), T.Variant fs when List.exists (fun T.{lab; _} -> lab = id.it) fs ->
let {T.typ; _} = List.find (fun T.{lab; typ;_} -> lab = id.it) fs in
check_exp env typ exp1 ;
t
| _ ->
let t' = infer_exp env0 exp in
if not (sub env exp.at t' t) then
begin
local_error env0 exp.at "M0096"
"expression of type%a\ncannot produce expected type%a%s"
display_typ_expand t'
display_typ_expand t
(Suggest.suggest_conversion env.libs env.vals t' t)
end;
t'
and check_exp_field env (ef : exp_field) fts =
let { mut; id; exp } = ef.it in
let ft_opt = List.find_opt (fun ft -> ft.T.lab = id.it) fts in
match ft_opt with
| Some { T.typ = T.Mut t; _ } ->
if mut.it <> Syntax.Var then
error env ef.at "M0149" "expected mutable 'var' field %s of type%a\nbut found immutable field (insert 'var'?)"
id.it
display_typ t;
check_exp env t exp
| Some { T.typ = t; _ } ->
if mut.it = Syntax.Var then
error env ef.at "M0150" "expected immutable field %s of type%a\nbut found mutable 'var' field (delete 'var'?)"
id.it
display_typ t;
check_exp env t exp
| None ->
ignore (infer_exp env exp)
and infer_call env exp1 inst exp2 at t_expect_opt =
let n = match inst.it with None -> 0 | Some (_, typs) -> List.length typs in
let t1 = infer_exp_promote env exp1 in
let sort, tbs, t_arg, t_ret =
try T.as_func_sub T.Local n t1
with Invalid_argument _ ->
local_error env exp1.at "M0097"
"expected function type, but expression produces type%a"
display_typ_expand t1;
if inst.it = None then
info env (Source.between exp1.at exp2.at)
"this looks like an unintended function call, perhaps a missing ';'?";
T.as_func_sub T.Local n T.Non
in
let ts, t_arg', t_ret' =
match tbs, inst.it with
| [], (None | Some (_, [])) (* no inference required *)
| [T.{sort = Scope;_}], _ (* special case to allow t_arg driven overload resolution *)
| _, Some _ ->
(* explicit instantiation, check argument against instantiated domain *)
let typs = match inst.it with None -> [] | Some (_, typs) -> typs in
let ts = check_inst_bounds env sort tbs typs t_ret at in
let t_arg' = T.open_ ts t_arg in
let t_ret' = T.open_ ts t_ret in
if not env.pre then check_exp_strong env t_arg' exp2;
ts, t_arg', t_ret'
| _::_, None -> (* implicit, infer *)
let t2 = infer_exp env exp2 in
try
(* i.e. exists minimal ts .
t2 <: open_ ts t_arg /\
t_expect_opt == Some t -> open ts_ t_ret <: t *)
let ts =
Bi_match.bi_match_call
(scope_of_env env)
(tbs, t_arg, t_ret)
t2
t_expect_opt
in
let t_arg' = T.open_ ts t_arg in
let t_ret' = T.open_ ts t_ret in
(*
if not env.pre then
info env at "inferred instantiation <%s>"
(String.concat ", " (List.map T.string_of_typ ts));
*)
ts, t_arg', t_ret'
with Bi_match.Bimatch msg ->
error env at "M0098"
"cannot implicitly instantiate function of type%a\nto argument of type%a%s\nbecause %s"
display_typ t1
display_typ t2
(match t_expect_opt with
| None -> ""
| Some t ->
Format.asprintf "\nto produce result of type%a" display_typ t)
msg
in
inst.note <- ts;
if not env.pre then begin
if Type.is_shared_sort sort then begin
if not (T.concrete t_arg') then
error env exp1.at "M0099"
"shared function argument contains abstract type%a"
display_typ_expand t_arg';
if not (T.concrete t_ret') then
error env exp2.at "M0100"
"shared function call result contains abstract type%a"
display_typ_expand t_ret';
end;
match T.(is_shared_sort sort || is_async t_ret'), inst.it, tbs with
| false, Some (true, _), ([] | T.{ sort = Type; _ } :: _) ->
local_error env inst.at "M0196" "unexpected `system` capability (try deleting it)"
| false, (None | Some (false, _)), T.{ sort = Scope; _ } :: _ ->
warn env at "M0195" "this function call implicitly requires `system` capability and may perform undesired actions (please review the call and provide a type instantiation `<system%s>` to suppress this warning)" (if List.length tbs = 1 then "" else ", ...")
| _ -> ()
end;
(* note t_ret' <: t checked by caller if necessary *)
t_ret'
(* Cases *)
and infer_cases env t_pat t cases : T.typ =
List.fold_left (infer_case env t_pat) t cases
and infer_case env t_pat t case =
let {pat; exp} = case.it in
let ve = check_pat env t_pat pat in
let initial_usage = enter_scope env in
let t' = recover_with T.Non (infer_exp (adjoin_vals env ve)) exp in
leave_scope env ve initial_usage;
let t'' = T.lub t t' in
if not env.pre && inconsistent t'' [t; t'] then
warn env case.at "M0101"
"the switch has type%a\nbecause branches have inconsistent types,\nthis case produces type%a\nthe previous produce type%a"
display_typ t''
display_typ_expand t
display_typ_expand t';
t''
and check_cases env t_pat t cases =
List.iter (check_case env t_pat t) cases
and check_case env t_pat t case =
let {pat; exp} = case.it in
let initial_usage = enter_scope env in
let ve = check_pat env t_pat pat in
let t' = recover (check_exp (adjoin_vals env ve) t) exp in
leave_scope env ve initial_usage;
t'
and inconsistent t ts =
T.opaque t && not (List.exists T.opaque ts)
(* Patterns *)
and infer_pat_exhaustive warnOrError env pat : T.typ * Scope.val_env =
let t, ve = infer_pat env pat in
if not env.pre then
coverage_pat warnOrError env pat t;
t, ve
and infer_pat env pat : T.typ * Scope.val_env =
assert (pat.note = T.Pre);
let t, ve = infer_pat' env pat in
if not env.pre then
pat.note <- T.normalize t;
t, ve
and infer_pat' env pat : T.typ * Scope.val_env =
match pat.it with
| WildP ->
error env pat.at "M0102" "cannot infer type of wildcard"
| VarP _ ->
error env pat.at "M0103" "cannot infer type of variable"
| LitP lit ->
T.Prim (infer_lit env lit pat.at), T.Env.empty
| SignP (op, lit) ->
let t1 = T.Prim (infer_lit env lit pat.at) in
let t = Operator.type_unop op t1 in
if not (Operator.has_unop op t) then
error env pat.at "M0059" "operator is not defined for operand type%a"
display_typ_expand t;
t, T.Env.empty
| TupP pats ->
let ts, ve = infer_pats pat.at env pats [] T.Env.empty in
T.Tup ts, ve
| ObjP pfs ->
let (s, tfs), ve = infer_pat_fields pat.at env pfs [] T.Env.empty in
T.Obj (s, tfs), ve
| OptP pat1 ->
let t1, ve = infer_pat env pat1 in
T.Opt t1, ve
| TagP (id, pat1) ->
let t1, ve = infer_pat env pat1 in
T.Variant [T.{lab = id.it; typ = t1; src = empty_src}], ve
| AltP (pat1, pat2) ->
error env pat.at "M0184"
"cannot infer the type of this or-pattern, please add a type annotation";
(*let t1, ve1 = infer_pat env pat1 in
let t2, ve2 = infer_pat env pat2 in
let t = T.lub t1 t2 in
if not (T.compatible t1 t2) then
error env pat.at "M0104"
"pattern branches have incompatible types,\nleft consumes%a\nright consumes%a"
display_typ_expand t1
display_typ_expand t2;
if T.Env.keys ve1 <> T.Env.keys ve2 then
error env pat.at "M0189" "different set of bindings in pattern alternatives";
if not env.pre then T.Env.(iter (fun k t1 -> warn_lossy_bind_type env pat.at k t1 (find k ve2))) ve1;
t, T.Env.merge (fun _ -> Lib.Option.map2 T.lub) ve1 ve2*)
| AnnotP (pat1, typ) ->
let t = check_typ env typ in
t, check_pat env t pat1
| ParP pat1 ->
infer_pat env pat1
and infer_pats at env pats ts ve : T.typ list * Scope.val_env =
match pats with
| [] -> List.rev ts, ve
| pat::pats' ->
let t, ve1 = infer_pat env pat in
let ve' = disjoint_union env at "M0017" "duplicate binding for %s in pattern" ve ve1 in
infer_pats at env pats' (t::ts) ve'
and infer_pat_fields at env pfs ts ve : (T.obj_sort * T.field list) * Scope.val_env =
match pfs with
| [] -> (T.Object, List.sort T.compare_field ts), ve
| pf::pfs' ->
let typ, ve1 = infer_pat env pf.it.pat in
let ve' = disjoint_union env at "M0017" "duplicate binding for %s in pattern" ve ve1 in
infer_pat_fields at env pfs' (T.{ lab = pf.it.id.it; typ; src = empty_src }::ts) ve'
and check_shared_pat env shared_pat : T.func_sort * Scope.val_env =
match shared_pat.it with
| T.Local -> T.Local, T.Env.empty
| T.Shared (ss, pat) ->
if pat.it <> WildP then
error_in [Flags.WASIMode; Flags.WasmMode] env pat.at "M0106" "shared function cannot take a context pattern";
T.Shared ss, check_pat_exhaustive local_error env T.ctxt pat
and check_class_shared_pat env shared_pat obj_sort : Scope.val_env =
match shared_pat.it, obj_sort.it with
| T.Local, (T.Module | T.Object) -> T.Env.empty
| T.Local, T.Actor ->
T.Env.empty (* error instead? That's a breaking change *)
| T.Shared (mode, pat), sort ->
if sort <> T.Actor then
error env pat.at "M0107" "non-actor class cannot take a context pattern";
if pat.it <> WildP then
error_in [Flags.WASIMode; Flags.WasmMode] env pat.at "M0108" "actor class cannot take a context pattern";
if mode = T.Query then
error env shared_pat.at "M0109" "class cannot be a query";
check_pat_exhaustive local_error env T.ctxt pat
| _, T.Memory -> assert false
and check_pat_exhaustive warnOrError env t pat : Scope.val_env =
let ve = check_pat env t pat in
if not env.pre then
coverage_pat warnOrError env pat t;
ve
and check_pat env t pat : Scope.val_env =
check_pat_aux env t pat Scope.Declaration
and check_pat_aux env t pat val_kind : Scope.val_env =
assert (pat.note = T.Pre);
if t = T.Pre then snd (infer_pat env pat) else
let t' = T.normalize t in
let ve = check_pat_aux' env t' pat val_kind in
if not env.pre then pat.note <- t';
ve
and check_pat_aux' env t pat val_kind : Scope.val_env =
assert (t <> T.Pre);
match pat.it with
| WildP ->
T.Env.empty
| VarP id ->
T.Env.singleton id.it (t, id.at, val_kind)
| LitP lit ->
if not env.pre then begin
let t' = if eq env pat.at t T.nat then T.int else t in (* account for Nat <: Int *)
if T.opaque t' then
error env pat.at "M0110" "literal pattern cannot consume expected type%a"
display_typ_expand t;
if sub env pat.at t' T.Non
then ignore (infer_lit env lit pat.at)
else check_lit env t' lit pat.at false
end;
T.Env.empty
| SignP (op, lit) ->
if not env.pre then begin
let t' = if eq env pat.at t T.nat then T.int else t in (* account for Nat <: Int *)
if not (Operator.has_unop op (T.promote t)) then
error env pat.at "M0111" "operator pattern cannot consume expected type%a"
display_typ_expand t;
if sub env pat.at t' T.Non
then ignore (infer_lit env lit pat.at)
else check_lit env t' lit pat.at false
end;
T.Env.empty
| TupP pats ->
let ts = try T.as_tup_sub (List.length pats) t with Invalid_argument _ ->
error env pat.at "M0112" "tuple pattern cannot consume expected type%a"
display_typ_expand t
in check_pats env ts pats T.Env.empty pat.at
| ObjP pfs ->
let pfs' = List.stable_sort compare_pat_field pfs in
let s, tfs =
try T.as_obj_sub (List.map (fun (pf : pat_field) -> pf.it.id.it) pfs') t
with Invalid_argument _ ->
error env pat.at "M0113" "object pattern cannot consume expected type%a"
display_typ_expand t
in
if not env.pre && s = T.Actor then
local_error env pat.at "M0114" "object pattern cannot consume actor type%a"
display_typ_expand t;
check_pat_fields env t tfs pfs' T.Env.empty pat.at
| OptP pat1 ->
let t1 = try T.as_opt_sub t with Invalid_argument _ ->
error env pat.at "M0115" "option pattern cannot consume expected type%a"
display_typ_expand t
in check_pat env t1 pat1
| TagP (id, pat1) ->
let t1 =
try
match T.lookup_val_field_opt id.it (T.as_variant_sub id.it t) with
| Some t1 -> t1
| None -> T.Non
with Invalid_argument _ ->
error env pat.at "M0116" "variant pattern cannot consume expected type%a"
display_typ_expand t
in check_pat env t1 pat1
| AltP (pat1, pat2) ->
let ve1 = check_pat env t pat1 in
let ve2 = check_pat env t pat2 in
if T.Env.keys ve1 <> T.Env.keys ve2 then
error env pat.at "M0189" "different set of bindings in pattern alternatives";
T.Env.(iter (fun k (t1, _, _) ->
let (t2, _, _) = find k ve2 in
warn_lossy_bind_type env pat.at k t1 t2)
) ve1;
let merge_entries (t1, at1, kind1) (t2, at2, kind2) = (T.lub t1 t2, at1, kind1) in
T.Env.merge (fun _ -> Lib.Option.map2 merge_entries) ve1 ve2
| AnnotP (pat1, typ) ->
let t' = check_typ env typ in
if not (sub env pat.at t t') then
error env pat.at "M0117"
"pattern of type%a\ncannot consume expected type%a"
display_typ_expand t'
display_typ_expand t;
check_pat env t' pat1
| ParP pat1 ->
check_pat env t pat1
(*
Consider:
case (P : A) : B
(P : A) :<= B iff
1: B <: A P :<= B
2: A <: B P :<= A
3: B <: A P :<= A
4: A <: B P :<= B
1 is implemented, allows
case ({x} : {}) : {x} // type annotations are reversed for patterns
case (1 : Int) : Nat // type annotations are reversed for patterns
case (x : Int) : Nat // type annotations are reversed for patterns
2 would allow
case ({x} : {x}) : {} // unsound, x does not exist
3 would allow
case (-1 : Int) : Nat // breaks coverage checking
4 would allow
case (x : Nat) : Int // x is Int, harmless but misleading
Alternative: pass in two types?
*)
and check_pats env ts pats ve at : Scope.val_env =
let ts_len = List.length ts in
let pats_len = List.length pats in
let rec go ts pats ve =
match ts, pats with
| [], [] -> ve
| t::ts', pat::pats' ->
let ve1 = check_pat env t pat in
let ve' = disjoint_union env at "M0017" "duplicate binding for %s in pattern" ve ve1 in
go ts' pats' ve'
| _, _ ->
error env at "M0118" "tuple pattern has %i components but expected type has %i"
pats_len ts_len
in
go ts pats ve
and check_pat_fields env t tfs pfs ve at : Scope.val_env =
match tfs, pfs with
| _, [] -> ve
| [], pf::_ ->
error env pf.at "M0119"
"object field %s is not contained in expected type%a"
pf.it.id.it
display_typ_expand t
| T.{lab; typ = Typ _; _}::tfs', _ -> (* TODO: remove the namespace hack *)
check_pat_fields env t tfs' pfs ve at
| T.{lab; typ; src}::tfs', pf::pfs' ->
match compare pf.it.id.it lab with
| -1 -> check_pat_fields env t [] pfs ve at
| +1 -> check_pat_fields env t tfs' pfs ve at
| _ ->
if T.is_mut typ then
error env pf.at "M0120" "cannot pattern match mutable field %s" lab;
check_deprecation env pf.at "field" lab src.T.depr;
let val_kind = kind_of_field_pattern pf in
let ve1 = check_pat_aux env typ pf.it.pat val_kind in
let ve' =
disjoint_union env at "M0017" "duplicate binding for %s in pattern" ve ve1 in
match pfs' with
| pf'::_ when pf'.it.id.it = lab ->
error env pf'.at "M0121" "duplicate field %s in object pattern" lab
| _ -> check_pat_fields env t tfs' pfs' ve' at
and compare_pat_field pf1 pf2 = compare pf1.it.id.it pf2.it.id.it
(* Objects *)
and pub_fields dec_fields : visibility_env =
List.fold_right pub_field dec_fields (T.Env.empty, T.Env.empty)
and pub_field dec_field xs : visibility_env =
match dec_field.it with
| {vis = { it = Public depr; _}; dec; _} -> pub_dec T.{depr = depr; region = dec_field.at} dec xs
| _ -> xs
and pub_dec src dec xs : visibility_env =
match dec.it with
| ExpD _ -> xs
| LetD (pat, _, _) -> pub_pat src pat xs
| VarD (id, _) -> pub_val_id src id xs
| ClassD (_, id, _, _, _, _, _, _) ->
pub_val_id src {id with note = ()} (pub_typ_id src id xs)
| TypD (id, _, _) -> pub_typ_id src id xs
and pub_pat src pat xs : visibility_env =
match pat.it with
| WildP | LitP _ | SignP _ -> xs
| VarP id -> pub_val_id src id xs
| TupP pats -> List.fold_right (pub_pat src) pats xs
| ObjP pfs -> List.fold_right (pub_pat_field src) pfs xs
| AltP (pat1, _)
| OptP pat1
| TagP (_, pat1)
| AnnotP (pat1, _)
| ParP pat1 -> pub_pat src pat1 xs
and pub_pat_field src pf xs =
pub_pat src pf.it.pat xs
and pub_typ_id src id (xs, ys) : visibility_env =
(T.Env.add id.it T.{depr = src.depr; id_region = id.at; field_region = src.region} xs, ys)
and pub_val_id src id (xs, ys) : visibility_env =
(xs, T.Env.add id.it T.{depr = src.depr; id_region = id.at; field_region = src.region} ys)
(* Object/Scope transformations *)
(* TODO: remove by merging conenv and valenv or by separating typ_fields *)
and object_of_scope env sort dec_fields scope at =
let pub_typ, pub_val = pub_fields dec_fields in
let tfs =
T.Env.fold
(fun id c tfs ->
match T.Env.find_opt id pub_typ with
| Some src -> T.{lab = id; typ = T.Typ c; src = {depr = src.depr; region = src.field_region}}::tfs
| _ -> tfs
) scope.Scope.typ_env []
in
let tfs' =
T.Env.fold
(fun id (t, _, _) tfs ->
match T.Env.find_opt id pub_val with
| Some src -> T.{lab = id; typ = t; src = {depr = src.depr; region = src.field_region}}::tfs
| _ -> tfs
) scope.Scope.val_env tfs
in
Lib.List.iter_pairs
(fun x y ->
if not (T.is_typ x.T.typ) && not (T.is_typ y.T.typ) &&
Hash.hash x.T.lab = Hash.hash y.T.lab
then error env at "M0122" "field names %s and %s in %sobject type have colliding hashes"
x.T.lab y.T.lab (T.string_of_obj_sort sort);
) tfs';
T.Obj (sort, List.sort T.compare_field tfs')
and is_actor_method dec : bool = match dec.it with
| LetD ({it = VarP _; _}, {it = FuncE (_, shared_pat, _, _, _, _, _); _}, _) ->
T.is_shared_sort shared_pat.it
| _ -> false
and is_typ_dec dec : bool = match dec.it with
| TypD _ -> true
| _ -> false
and infer_obj env s dec_fields at : T.typ =
let private_fields =
let scope = List.filter (fun field -> is_private field.it.vis) dec_fields
|> List.map (fun field -> field.it.dec)
|> gather_block_decs env in
get_identifiers scope.Scope.val_env
in
let private_identifiers identifiers =
T.Env.filter (fun id _ -> S.mem id private_fields) identifiers
in
let env =
if s <> T.Actor then
{ env with in_actor = false }
else
{ env with
in_actor = true;
labs = T.Env.empty;
rets = None;
}
in
let decs = List.map (fun (df : dec_field) -> df.it.dec) dec_fields in
let initial_usage = enter_scope env in
let _, scope = infer_block env decs at false in
let t = object_of_scope env s dec_fields scope at in
leave_scope env (private_identifiers scope.Scope.val_env) initial_usage;
let (_, tfs) = T.as_obj t in
if not env.pre then begin
if s = T.Actor then begin
List.iter (fun T.{lab; typ; _} ->
if not (T.is_typ typ) && not (T.is_shared_func typ) then
let _, pub_val = pub_fields dec_fields in
error env ((T.Env.find lab pub_val).id_region) "M0124"
"public actor field %s has non-shared function type%a"
lab
display_typ_expand typ
) tfs;
List.iter (fun df ->
if is_public df.it.vis && not (is_actor_method df.it.dec) && not (is_typ_dec df.it.dec) then
local_error env df.it.dec.at "M0125"
"public actor field needs to be a manifest function"
) dec_fields;
List.iter (fun df ->
if df.it.vis.it = Syntax.Private && is_actor_method df.it.dec then
error_in [Flags.ICMode; Flags.RefMode] env df.it.dec.at "M0126"
"a shared function cannot be private"
) dec_fields;
end;
if s = T.Module then Static.dec_fields env.msgs dec_fields;
check_system_fields env s scope tfs dec_fields;
check_stab env s scope dec_fields;
end;
t
and check_system_fields env sort scope tfs dec_fields =
List.iter (fun df ->
match sort, df.it.vis.it, df.it.dec.it with
| T.Actor, vis,
LetD({ it = VarP id; _ },
{ it = FuncE _; _ },
_) ->
begin
match List.assoc_opt id.it (system_funcs tfs) with
| Some t ->
(* TBR why does Stable.md require this to be a manifest function, not just any expression of appropriate type? *)
if vis = System then
begin
let (t1, _, _) = T.Env.find id.it scope.Scope.val_env in
if not (sub env id.at t1 t) then
local_error env df.at "M0127" "system function %s is declared with type%a\ninstead of expected type%a" id.it
display_typ t1
display_typ t
else if id.it = "timer" && not !Mo_config.Flags.global_timer then
local_error env df.at "M0182" "system function timer is present but -no-timer flag is specified"
end
else warn env id.at "M0128" "this function has the name of a system method, but is declared without system visibility and will not be called by the system"
| None ->
if vis = System then
local_error env id.at "M0129" "unexpected system method named %s, expected %s"
id.it (String.concat " or " (List.map fst (system_funcs tfs)))
else ()
end
| _, System, _ ->
local_error env df.it.vis.at "M0130" "misplaced system visibility, did you mean private?"
| _ -> ())
dec_fields
and stable_pat pat =
match pat.it with
| VarP _ -> true
| ParP pat'
| AnnotP (pat', _) -> stable_pat pat'
| _ -> false
and check_stab env sort scope dec_fields =
let check_stable id at =
match T.Env.find_opt id scope.Scope.val_env with
| None -> assert false
| Some (t, _, _) ->
let t1 = T.as_immut t in
if not (T.stable t1) then
local_error env at "M0131"
"variable %s is declared stable but has non-stable type%a" id
display_typ t1
in
let idss = List.map (fun df ->
match sort, df.it.stab, df.it.dec.it with
| (T.Object | T.Module), None, _ -> []
| (T.Object | T.Module), Some stab, _ ->
local_error env stab.at "M0132"
"misplaced stability declaration on field of non-actor";
[]
| T.Actor, Some {it = Stable; _}, VarD (id, _) ->
check_stable id.it id.at;
[id]
| T.Actor, Some {it = Stable; _}, LetD (pat, _, _) when stable_pat pat ->
let ids = T.Env.keys (gather_pat env T.Env.empty pat) in
List.iter (fun id -> check_stable id pat.at) ids;
List.map (fun id -> {it = id; at = pat.at; note = ()}) ids;
| T.Actor, Some {it = Flexible; _} , (VarD _ | LetD _) -> []
| T.Actor, Some stab, _ ->
local_error env stab.at "M0133"
"misplaced stability modifier: allowed on var or simple let declarations only";
[]
| _ -> []) dec_fields
in
check_ids env "actor type" "stable variable" (List.concat idss)
(* Blocks and Declarations *)
and infer_block env decs at check_unused : T.typ * Scope.scope =
let initial_usage = enter_scope env in
let scope = infer_block_decs env decs at in
let env' = adjoin env scope in
(* HACK: when compiling to IC, mark class constructors as unavailable *)
let ve = match !Flags.compile_mode with
| Flags.(ICMode | RefMode) ->
List.fold_left (fun ve' dec ->
match dec.it with
| ClassD(_, id, _, _, _, { it = T.Actor; _}, _, _) ->
T.Env.mapi (fun id' (typ, at, kind, avl) ->
(typ, at, kind, if id' = id.it then Unavailable else avl)) ve'
| _ -> ve') env'.vals decs
| _ -> env'.vals
in
let t = infer_block_exps { env' with vals = ve } decs in
if check_unused then
leave_scope env scope.Scope.val_env initial_usage
else ();
t, scope
and infer_block_decs env decs at : Scope.t =
let scope = gather_block_decs env decs in
let env' = adjoin {env with pre = true} scope in
let scope_ce = infer_block_typdecs env' decs in
check_con_env env' at scope_ce.Scope.con_env;
let env'' = adjoin {env' with pre = env.pre} scope_ce in
let _scope_ce = infer_block_typdecs env'' decs in
(* TBR: assertion does not work for types with binders, due to stamping *)
(* assert (scope_ce = _scope_ce); *)
infer_block_valdecs (adjoin env'' scope_ce) decs scope_ce
and infer_block_exps env decs : T.typ =
match decs with
| [] -> T.unit
| [dec] -> infer_dec env dec
| dec::decs' ->
if not env.pre then recover (check_dec env T.unit) dec;
infer_block_exps env decs'
and infer_dec env dec : T.typ =
let t =
match dec.it with
| ExpD exp -> infer_exp env exp
| LetD (pat, exp, None) ->
(* For developer convenience, ignore top-level actor and module identifiers in unused detection. *)
(if env.in_prog && (CompUnit.is_actor_def exp || CompUnit.is_module_def exp) then
match pat.it with
| VarP id -> use_identifier env id.it
| _ -> ());
infer_exp env exp
| LetD (_, exp, Some fail) ->
if not env.pre then
check_exp env T.Non fail;
infer_exp env exp
| VarD (_, exp) ->
if not env.pre then ignore (infer_exp env exp);
T.unit
| ClassD (shared_pat, id, typ_binds, pat, typ_opt, obj_sort, self_id, dec_fields) ->
let (t, _, _, _) = T.Env.find id.it env.vals in
if not env.pre then begin
let c = T.Env.find id.it env.typs in
let ve0 = check_class_shared_pat env shared_pat obj_sort in
let cs, tbs, te, ce = check_typ_binds env typ_binds in
let env' = adjoin_typs env te ce in
let in_actor = obj_sort.it = T.Actor in
(* Top-level actor class identifier is implicitly public and thus considered used. *)
if env.in_prog && in_actor then use_identifier env id.it;
let t_pat, ve =
infer_pat_exhaustive (if in_actor then error else warn) env' pat
in
if in_actor && not (T.shared t_pat) then
error_shared env t_pat pat.at "M0034"
"shared constructor has non-shared parameter type%a"
display_typ_expand t_pat;
let env'' = adjoin_vals (adjoin_vals env' ve0) ve in
let async_cap, _, class_cs = infer_class_cap env obj_sort.it tbs cs in
let self_typ = T.Con (c, List.map (fun c -> T.Con (c, [])) class_cs) in
let env''' =
{ (add_val env'' self_id self_typ) with
labs = T.Env.empty;
rets = None;
async = async_cap;
in_actor;
}
in
let initial_usage = enter_scope env''' in
let t' = infer_obj { env''' with check_unused = true } obj_sort.it dec_fields dec.at in
leave_scope env ve initial_usage;
match typ_opt, obj_sort.it with
| None, _ -> ()
| Some { it = AsyncT (T.Fut, _, typ); at; _ }, T.Actor
| Some ({ at; _ } as typ), T.(Module | Object) ->
if at = Source.no_region then
warn env dec.at "M0135"
"actor classes with non non-async return types are deprecated; please declare the return type as 'async ...'";
let t'' = check_typ env'' typ in
if not (sub env dec.at t' t'') then
local_error env dec.at "M0134"
"class body of type%a\ndoes not match expected type%a"
display_typ_expand t'
display_typ_expand t''
| Some typ, T.Actor ->
local_error env dec.at "M0193" "actor class has non-async return type"
| _, T.Memory -> assert false
end;
T.normalize t
| TypD _ ->
T.unit
in
let eff = A.infer_effect_dec dec in
dec.note <- {empty_typ_note with note_typ = t; note_eff = eff};
t
and check_block env t decs at : Scope.t =
let initial_usage = enter_scope env in
let scope = infer_block_decs env decs at in
check_block_exps (adjoin env scope) t decs at;
leave_scope env scope.Scope.val_env initial_usage;
scope
and check_block_exps env t decs at =
match decs with
| [] ->
if not (sub env at T.unit t) then
local_error env at "M0136" "empty block cannot produce expected type%a"
display_typ_expand t
| [dec] ->
check_dec env t dec
| dec::decs' ->
recover (check_dec env T.unit) dec;
recover (check_block_exps env t decs') at
and check_dec env t dec =
match dec.it with
| ExpD exp ->
check_exp env t exp;
dec.note <- exp.note
| _ ->
let t' = infer_dec env dec in
if not (eq env dec.at t T.unit || sub env dec.at t' t) then
local_error env dec.at "M0096"
"expression of type%a\ncannot produce expected type%a"
display_typ_expand t'
display_typ_expand t
and infer_val_path env exp : T.typ option =
match exp.it with
| ImportE (f, ri) ->
Some (check_import env exp.at f ri)
| VarE id ->
(match T.Env.find_opt id.it env.vals with (* TBR: return None for Unavailable? *)
| Some (t, _, _, _) -> Some t
| _ -> None)
| DotE (path, id) ->
(match infer_val_path env path with
| None -> None
| Some t ->
match T.promote t with
| T.Obj ( _, flds) ->
(try Some (T.lookup_val_field id.it flds)
with Invalid_argument _ -> None)
| _ -> None
)
| AnnotE (_, typ) ->
Some (check_typ {env with pre = true} typ)
| _ -> None
(* Pass 1: collect:
* type identifiers and their arity,
* object identifiers and their fields (if known) (recursively)
* other value identifiers at type T.Pre
*)
and gather_block_decs env decs : Scope.t =
List.fold_left (gather_dec env) Scope.empty decs
and gather_dec env scope dec : Scope.t =
match dec.it with
| ExpD _ -> scope
(* TODO: generalize beyond let <id> = <obje> *)
| LetD (
{it = VarP id; _},
( {it = ObjBlockE (obj_sort, _, dec_fields); at; _}
| {it = AwaitE (_,{ it = AsyncE (_, _, {it = ObjBlockE ({ it = Type.Actor; _} as obj_sort, _, dec_fields); at; _}) ; _ }); _ }),
_
) ->
let decs = List.map (fun df -> df.it.dec) dec_fields in
let open Scope in
if T.Env.mem id.it scope.val_env then
error_duplicate env "" id;
let scope' = gather_block_decs env decs in
let ve' = add_id scope.val_env id (object_of_scope env obj_sort.it dec_fields scope' at) in
let obj_env = T.Env.add id.it scope' scope.obj_env in
{ val_env = ve';
typ_env = scope.typ_env;
lib_env = scope.lib_env;
con_env = scope.con_env;
obj_env = obj_env
}
| LetD (pat, _, _) -> Scope.adjoin_val_env scope (gather_pat env scope.Scope.val_env pat)
| VarD (id, _) -> Scope.adjoin_val_env scope (gather_id env scope.Scope.val_env id Scope.Declaration)
| TypD (id, binds, _) | ClassD (_, id, binds, _, _, _, _, _) ->
let open Scope in
if T.Env.mem id.it scope.typ_env then
error_duplicate env "type " id;
let binds' = match binds with
| bind::binds when bind.it.sort.it = T.Scope ->
binds
| _ -> binds
in
let pre_tbs = List.map (fun bind ->
{ T.var = bind.it.var.it;
T.sort = T.Type;
T.bound = T.Pre })
binds'
in
let pre_k = T.Abs (pre_tbs, T.Pre) in
let c = match id.note with
| None -> let c = Cons.fresh id.it pre_k in id.note <- Some c; c
| Some c -> c
in
let val_env = match dec.it with
| ClassD _ ->
if T.Env.mem id.it scope.val_env then
error_duplicate env "" id;
add_id scope.val_env id T.Pre
| _ -> scope.val_env
in
{ val_env;
typ_env = T.Env.add id.it c scope.typ_env;
con_env = T.ConSet.disjoint_add c scope.con_env;
lib_env = scope.lib_env;
obj_env = scope.obj_env;
}
and gather_pat env ve pat : Scope.val_env =
gather_pat_aux env Scope.Declaration ve pat
and gather_pat_aux env val_kind ve pat : Scope.val_env =
match pat.it with
| WildP | LitP _ | SignP _ -> ve
| VarP id -> gather_id env ve id val_kind
| TupP pats -> List.fold_left (gather_pat env) ve pats
| ObjP pfs -> List.fold_left (gather_pat_field env) ve pfs
| TagP (_, pat1) | AltP (pat1, _) | OptP pat1
| AnnotP (pat1, _) | ParP pat1 -> gather_pat env ve pat1
and gather_pat_field env ve pf : Scope.val_env =
let val_kind = kind_of_field_pattern pf in
gather_pat_aux env val_kind ve pf.it.pat
and gather_id env ve id val_kind : Scope.val_env =
if T.Env.mem id.it ve then
error_duplicate env "" id;
T.Env.add id.it (T.Pre, id.at, val_kind) ve
(* Pass 2 and 3: infer type definitions *)
and infer_block_typdecs env decs : Scope.t =
let _env', scope =
List.fold_left (fun (env, scope) dec ->
let scope' = infer_dec_typdecs env dec in
adjoin env scope', Scope.adjoin scope scope'
) (env, Scope.empty) decs
in scope
and infer_dec_typdecs env dec : Scope.t =
match dec.it with
(* TODO: generalize beyond let <id> = <obje> *)
| LetD (
{it = VarP id; _},
( {it = ObjBlockE (obj_sort, _t, dec_fields); at; _}
| {it = AwaitE (_, { it = AsyncE (_, _, {it = ObjBlockE ({ it = Type.Actor; _} as obj_sort, _t, dec_fields); at; _}) ; _ }); _ }),
_
) ->
let decs = List.map (fun {it = {vis; dec; _}; _} -> dec) dec_fields in
let scope = T.Env.find id.it env.objs in
let env' = adjoin env scope in
let obj_scope_typs = infer_block_typdecs env' decs in
let obj_scope = Scope.adjoin scope obj_scope_typs in
Scope.{ empty with
con_env = obj_scope.con_env;
val_env = singleton id (object_of_scope env obj_sort.it dec_fields obj_scope at);
obj_env = T.Env.singleton id.it obj_scope
}
(* TODO: generalize beyond let <id> = <valpath> *)
| LetD ({it = VarP id; _}, exp, _) ->
(match infer_val_path env exp with
| None -> Scope.empty
| Some t ->
let open Scope in
match T.promote t with
| T.Obj (_, _) as t' -> { Scope.empty with val_env = singleton id t' }
| _ -> { Scope.empty with val_env = singleton id T.Pre }
)
| LetD _ | ExpD _ | VarD _ ->
Scope.empty
| TypD (id, typ_binds, typ) ->
let k = check_typ_def env dec.at (id, typ_binds, typ) in
let c = T.Env.find id.it env.typs in
Scope.{ empty with
typ_env = T.Env.singleton id.it c;
con_env = infer_id_typdecs env dec.at id c k;
}
| ClassD (shared_pat, id, binds, pat, _typ_opt, obj_sort, self_id, dec_fields) ->
let c = T.Env.find id.it env.typs in
let ve0 = check_class_shared_pat {env with pre = true} shared_pat obj_sort in
let cs, tbs, te, ce = check_typ_binds {env with pre = true} binds in
let env' = adjoin_typs (adjoin_vals {env with pre = true} ve0) te ce in
let _, ve = infer_pat env' pat in
let in_actor = obj_sort.it = T.Actor in
let async_cap, class_tbs, class_cs = infer_class_cap env obj_sort.it tbs cs in
let self_typ = T.Con (c, List.map (fun c -> T.Con (c, [])) class_cs) in
let env'' =
{ (add_val (adjoin_vals env' ve) self_id self_typ) with
labs = T.Env.empty;
rets = None;
async = async_cap;
in_actor}
in
let t = infer_obj { env'' with check_unused = false } obj_sort.it dec_fields dec.at in
let k = T.Def (T.close_binds class_cs class_tbs, T.close class_cs t) in
check_closed env id k dec.at;
Scope.{ empty with
typ_env = T.Env.singleton id.it c;
con_env = infer_id_typdecs env dec.at id c k;
}
and infer_id_typdecs env at id c k : Scope.con_env =
assert (match k with T.Abs (_, T.Pre) -> false | _ -> true);
(match Cons.kind c with
| T.Abs (_, T.Pre) -> T.set_kind c k; id.note <- Some c
| k' -> assert (eq_kind env at k' k) (* may diverge on expansive types *)
);
T.ConSet.singleton c
(* Pass 4: infer value types *)
and infer_block_valdecs env decs scope : Scope.t =
let _, scope' =
List.fold_left (fun (env, scope) dec ->
let scope' = infer_dec_valdecs env dec in
adjoin env scope', Scope.adjoin scope scope'
) (env, scope) decs
in scope'
and is_import d =
match d.it with
| LetD (_, {it = ImportE _; _}, None) -> true
| _ -> false
and infer_dec_valdecs env dec : Scope.t =
match dec.it with
| ExpD _ ->
Scope.empty
(* TODO: generalize beyond let <id> = <obje> *)
| LetD (
{it = VarP id; _} as pat,
( {it = ObjBlockE (obj_sort, _t, dec_fields); at; _}
| {it = AwaitE (_, { it = AsyncE (_, _, {it = ObjBlockE ({ it = Type.Actor; _} as obj_sort, _t, dec_fields); at; _}) ; _ }); _ }),
_
) ->
let decs = List.map (fun df -> df.it.dec) dec_fields in
let obj_scope = T.Env.find id.it env.objs in
let obj_scope' =
infer_block_valdecs
(adjoin {env with pre = true} obj_scope)
decs obj_scope
in
let obj_typ = object_of_scope env obj_sort.it dec_fields obj_scope' at in
let _ve = check_pat env obj_typ pat in
Scope.{empty with val_env = singleton id obj_typ}
| LetD (pat, exp, fail) ->
let t = infer_exp {env with pre = true; check_unused = false} exp in
let ve' = match fail with
| None -> check_pat_exhaustive (if is_import dec then local_error else warn) env t pat
| Some _ -> check_pat env t pat
in
Scope.{empty with val_env = ve'}
| VarD (id, exp) ->
let t = infer_exp {env with pre = true} exp in
Scope.{empty with val_env = singleton id (T.Mut t)}
| TypD (id, _, _) ->
let c = Option.get id.note in
Scope.{ empty with
typ_env = T.Env.singleton id.it c;
con_env = T.ConSet.singleton c;
}
| ClassD (_shared_pat, id, typ_binds, pat, _, obj_sort, _, _) ->
if obj_sort.it = T.Actor then begin
error_in [Flags.WASIMode; Flags.WasmMode] env dec.at "M0138" "actor classes are not supported";
if not env.in_prog then
error_in [Flags.ICMode; Flags.RefMode] env dec.at "M0139"
"inner actor classes are not supported yet; any actor class must come last in your program";
if not (List.length typ_binds = 1) then
local_error env dec.at "M0140"
"actor classes with type parameters are not supported yet";
end;
let cs, tbs, te, ce = check_typ_binds env typ_binds in
let env' = adjoin_typs env te ce in
let c = T.Env.find id.it env.typs in
let t1, _ = infer_pat {env' with pre = true} pat in
let ts1 = match pat.it with TupP _ -> T.seq_of_tup t1 | _ -> [t1] in
let class_tbs, _, class_cs = infer_class_cap env obj_sort.it tbs cs in
let obj_typ = T.Con (c, List.map (fun c -> T.Con (c, [])) class_cs) in
let t2 =
if obj_sort.it = T.Actor then
T.Async (T.Fut, T.Con (List.hd cs, []), obj_typ)
else obj_typ
in
let t = T.Func (T.Local, T.Returns, T.close_binds cs tbs,
List.map (T.close cs) ts1,
[T.close cs t2])
in
Scope.{ empty with
val_env = singleton id t;
typ_env = T.Env.singleton id.it c;
con_env = T.ConSet.singleton c;
}
(* Programs *)
let infer_prog ?(viper_mode=false) scope pkg_opt async_cap prog : (T.typ * Scope.t) Diag.result =
Diag.with_message_store
(fun msgs ->
recover_opt
(fun prog ->
let env0 = env_of_scope ~viper_mode msgs scope in
let env = {
env0 with async = async_cap;
} in
let res = infer_block env prog.it prog.at true in
if pkg_opt = None && Diag.is_error_free msgs then emit_unused_warnings env;
res
) prog
)
let is_actor_dec d =
match d.it with
| ExpD e
| LetD (_, e, _) -> CompUnit.is_actor_def e
| ClassD (shared_pat, id, typ_binds, pat, typ_opt, obj_sort, self_id, dec_fields) ->
obj_sort.it = T.Actor
| _ -> false
let check_actors ?(viper_mode=false) ?(check_actors=false) scope progs : unit Diag.result =
if not check_actors then Diag.return () else
Diag.with_message_store
(fun msgs ->
recover_opt (fun progs ->
let prog = (CompUnit.combine_progs progs).it in
let env = env_of_scope ~viper_mode msgs scope in
let report ds =
match ds with
[] -> ()
| d :: _ ->
let r = { d.at with right = (Lib.List.last ds).at.right } in
local_error env r "M0141" "move these declarations into the body of the main actor or actor class"
in
let rec go ds = function
| [] -> ()
| (d::ds') when is_actor_dec d ->
if ds <> [] || ds' <> [] then begin
report (List.rev ds);
report ds';
error_in [Flags.ICMode; Flags.RefMode] env d.at "M0141"
"an actor or actor class must be the only non-imported declaration in a program"
end
| (d::ds') when is_import d -> go ds ds'
| (d::ds') -> go (d::ds) ds'
in
go [] prog
) progs
)
let check_lib scope pkg_opt lib : Scope.t Diag.result =
Diag.with_message_store
(fun msgs ->
recover_opt
(fun lib ->
let env = { (env_of_scope msgs scope) with errors_only = (pkg_opt <> None) } in
let { imports; body = cub; _ } = lib.it in
let (imp_ds, ds) = CompUnit.decs_of_lib lib in
let typ, _ = infer_block env (imp_ds @ ds) lib.at false in
List.iter2 (fun import imp_d -> import.note <- imp_d.note.note_typ) imports imp_ds;
cub.note <- {empty_typ_note with note_typ = typ};
let imp_typ = match cub.it with
| ModuleU _ ->
if cub.at = no_region then begin
let r = Source.({
left = { no_pos with file = lib.note.filename };
right = { no_pos with file = lib.note.filename }})
in
warn env r "M0142" "deprecated syntax: an imported library should be a module or named actor class"
end;
typ
| ActorClassU (sp, id, tbs, p, _, self_id, dec_fields) ->
if is_anon_id id then
error env cub.at "M0143" "bad import: imported actor class cannot be anonymous";
let cs = List.map (fun tb -> Option.get tb.note) tbs in
let ts = List.map (fun c -> T.Con(c, [])) cs in
let fun_typ = typ in
let ts1, class_typ =
match T.normalize fun_typ with
| T.Func (sort, control, _, ts1, [t2]) ->
let t2 = T.normalize (T.open_ ts t2) in
(match t2 with
| T.Async (_, _, class_typ) -> List.map (T.open_ ts) ts1, class_typ
| _ -> assert false)
| _ -> assert false
in
let con = Cons.fresh id.it (T.Def([], class_typ)) in
T.(obj Module [
(id.it, Typ con);
(id.it, fun_typ);
("system", obj Module [id.it, install_typ (List.map (close cs) ts1) class_typ])
])
| ActorU _ ->
error env cub.at "M0144" "bad import: expected a module or actor class but found an actor"
| ProgU _ ->
(* this shouldn't really happen, as an imported program should be rewritten to a module *)
error env cub.at "M0000" "compiler bug: expected a module or actor class but found a program, i.e. a sequence of declarations"
in
if pkg_opt = None && Diag.is_error_free msgs then emit_unused_warnings env;
Scope.lib lib.note.filename imp_typ
) lib
)
let check_stab_sig scope sig_ : (T.field list) Diag.result =
Diag.with_message_store
(fun msgs ->
recover_opt
(fun (decs, sfs) ->
let env = env_of_scope msgs scope in
let scope = infer_block_decs env decs sig_.at in
let env1 = adjoin env scope in
check_ids env "object type" "field"
(List.filter_map (fun (field : typ_field) ->
match field.it with ValF (id, _, _) -> Some id | _ -> None)
sfs);
check_ids env "object type" "type field"
(List.filter_map (fun (field : typ_field) ->
match field.it with TypF (id, _, _) -> Some id | _ -> None)
sfs);
let _ = List.map (check_typ_field {env1 with pre = true} T.Object) sfs in
let fs = List.map (check_typ_field {env1 with pre = false} T.Object) sfs in
List.iter (fun (field : Syntax.typ_field) ->
match field.it with
| TypF _ -> ()
| ValF (id, typ, _) ->
if not (T.stable typ.note) then
error env id.at "M0131" "variable %s is declared stable but has non-stable type%a"
id.it
display_typ typ.note)
sfs;
List.sort T.compare_field fs
) sig_.it
)