Source file typing.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
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
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
open Ident
open Tools
open Location
module L = Location
module PT = ParseTree
module A = Ast
module Type : sig
val as_builtin : A.ptyp -> A.vtyp option
val as_container : A.ptyp -> (A.ptyp * A.container) option
val as_asset : A.ptyp -> A.lident option
val as_asset_collection : A.ptyp -> (A.lident * A.container) option
val as_contract : A.ptyp -> A.ptyp option
val as_tuple : A.ptyp -> (A.ptyp list) option
val as_option : A.ptyp -> A.ptyp option
val as_set : A.ptyp -> A.ptyp option
val as_list : A.ptyp -> A.ptyp option
val as_map : A.ptyp -> (A.ptyp * A.ptyp) option
val is_asset : A.ptyp -> bool
val is_numeric : A.ptyp -> bool
val is_currency : A.ptyp -> bool
val is_primitive : A.ptyp -> bool
val is_contract : A.ptyp -> bool
val is_option : A.ptyp -> bool
val is_set : A.ptyp -> bool
val is_list : A.ptyp -> bool
val is_map : A.ptyp -> bool
module Michelson : sig
val is_type : A.ptyp -> bool
val is_comparable : ?simple:bool -> A.ptyp -> bool
end
val support_eq : A.ptyp -> bool
val equal : A.ptyp -> A.ptyp -> bool
val sig_equal : A.ptyp list -> A.ptyp list -> bool
val compatible : ?autoview:bool -> from_:A.ptyp -> to_:A.ptyp -> bool
val distance : from_:A.ptyp -> to_:A.ptyp -> int option
val sig_compatible : from_:A.ptyp list -> to_:A.ptyp list -> bool
val sig_distance : from_:A.ptyp list -> to_:A.ptyp list -> int option
val join : ?autoview:bool -> A.ptyp list -> A.ptyp option
type trestr = [`Michelson]
exception UnificationFailure
val unify : ?restr:trestr Mint.t -> ptn:A.ptyp -> tg:A.ptyp -> A.ptyp Mint.t ref -> unit
val subst : A.ptyp Mint.t -> A.ptyp -> A.ptyp
val pktype : A.ptyp -> bool
val create_tuple : A.ptyp list -> A.ptyp
end = struct
let as_builtin = function A.Tbuiltin ty -> Some ty | _ -> None
let as_container = function A.Tcontainer (ty, c) -> Some (ty, c) | _ -> None
let as_asset = function A.Tasset x -> Some x | _ -> None
let as_tuple = function A.Ttuple ts -> Some ts | _ -> None
let as_contract = function A.Tcontract x -> Some x | _ -> None
let as_option = function A.Toption t -> Some t | _ -> None
let as_set = function A.Tset t -> Some t | _ -> None
let as_list = function A.Tlist t -> Some t | _ -> None
let as_map = function A.Tmap (k, v) -> Some (k, v) | _ -> None
let as_asset_collection = function
| A.Tcontainer (A.Tasset asset, c) -> Some (asset, c)
| _ -> None
let is_asset = function
| A.Tasset _ -> true | _ -> false
let is_numeric = function
| A.Tbuiltin (A.VTnat | A.VTint | A.VTrational) -> true | _ -> false
let is_currency = function
| A.Tbuiltin (A.VTcurrency) -> true | _ -> false
let is_primitive = function
| A.Tbuiltin _ -> true | _ -> false
let is_contract = function
| A.Tcontract _ -> true | _ -> false
let is_option = function
| A.Toption _ -> true | _ -> false
let is_set = function
| A.Tset _ -> true | _ -> false
let is_list = function
| A.Tlist _ -> true | _ -> false
let is_map = function
| A.Tmap _ -> true | _ -> false
module Michelson = struct
let is_comparable ?(simple = false) = function
| A.Tbuiltin VTnat
| A.Tbuiltin VTint
| A.Tbuiltin VTstring
| A.Tbuiltin VTbytes
| A.Tbuiltin VTcurrency
| A.Tbuiltin VTbool
| A.Tbuiltin VTkeyhash
| A.Tbuiltin VTdate
| A.Tbuiltin VTduration
| A.Tbuiltin VTaddress
| A.Tbuiltin VTrole
-> true
| A.Trecord _ when not simple -> true
| _ -> false
let rec is_type = function
| t when is_comparable t -> true
| A.Tbuiltin VTkey -> true
| A.Tbuiltin VTsignature -> true
| A.Tbuiltin VTchainid -> true
| A.Toption t -> is_type t
| A.Tlist t -> is_type t
| A.Tset t -> is_type t
| A.Ttuple ts -> List.for_all is_type ts
| A.Tmap (k, t) -> is_comparable k && is_type t
| A.Tcontract _ -> true
| A.Trecord _ -> true
| _ -> false
end
let rec support_eq = function
| A.Tbuiltin VTchainid -> false
| A.Tbuiltin _ -> true
| A.Tenum _ -> true
| A.Ttuple tys -> List.for_all support_eq tys
| _ -> false
let equal = ((=) : A.ptyp -> A.ptyp -> bool)
let distance ?(autoview = false) ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
match from_, to_ with
| _, _ when equal from_ to_ ->
Some 0
| A.Tbuiltin bfrom, A.Tbuiltin bto -> begin
match bfrom, bto with
| A.VTaddress , A.VTrole -> Some 1
| A.VTrole , A.VTaddress -> Some 1
| A.VTnat , A.VTint -> Some 1
| A.VTnat , A.VTrational -> Some 2
| A.VTint , A.VTrational -> Some 1
| A.VTstring , A.VTkey -> Some 1
| A.VTstring , A.VTsignature -> Some 1
| A.VTcurrency , A.VTnat -> Some 1
| A.VTduration , A.VTint -> Some 1
| _, _ -> None
end
| A.Tbuiltin (A.VTaddress | A.VTrole), A.Tcontract Tbuiltin (VTunit) ->
Some 1
| A.Tcontainer (ty1, cf), A.Tcontainer (ty2, ct) ->
if equal ty1 ty2 && (cf = ct || (autoview && ct = A.View))
then Some 0
else None
| _, _ ->
None
let compatible ?autoview ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
Option.is_some (distance ?autoview ~from_ ~to_)
let join ?autoview (tys : A.ptyp list) =
let module E = struct exception Error end in
let join2 ty1 ty2 =
if compatible ?autoview ~from_:ty1 ~to_:ty2 then ty2 else
if compatible ?autoview ~from_:ty2 ~to_:ty1 then ty1 else
raise E.Error in
try
match tys with
| [] -> raise E.Error
| ty :: tys -> Some (List.fold_left join2 ty tys)
with E.Error -> None
let distance ~(from_ : A.ptyp) ~(to_ : A.ptyp) =
distance ~autoview:false ~from_ ~to_
let sig_compatible ~(from_ : A.ptyp list) ~(to_ : A.ptyp list) =
List.length from_ = List.length to_
&& List.for_all2
(fun from_ to_ -> compatible ~autoview:false ~from_ ~to_)
from_ to_
let sig_distance ~(from_ : A.ptyp list) ~(to_ : A.ptyp list) =
if List.length from_ <> List.length to_ then None else
let module E = struct exception Reject end in
try
let i =
List.fold_left2 (fun d from_ to_ ->
d + Option.get_exn E.Reject (distance ~from_ ~to_)
) 0 from_ to_
in Some i
with E.Reject -> None
let sig_equal tys1 tys2 =
List.length tys1 = List.length tys2
&& List.for_all2 equal tys1 tys2
type trestr = [`Michelson]
exception UnificationFailure
let unify ?(restr = Mint.empty) ~(ptn : A.ptyp) ~(tg : A.ptyp) (map : A.ptyp Mint.t ref) =
let module E = struct exception Error end in
try
let rec doit (ptn : A.ptyp) (tg : A.ptyp) =
match ptn, tg with
| A.Tnamed i, _ -> begin
begin match Mint.find_opt i restr with
| Some `Michelson ->
if not (Michelson.is_type tg) then
raise E.Error;
| None -> () end;
map := !map |> Mint.update i (function
| None -> Some tg
| Some ty ->
if compatible ~autoview:false ~to_:ty ~from_:tg
then Some ty
else raise E.Error)
end
| Toperation, Toperation ->
()
| Tasset x, Tasset y
| Tenum x, Tenum y ->
if unloc x <> unloc y then raise E.Error
| Ttrace x, Ttrace y ->
if x <> y then raise E.Error
| Tbuiltin x, Tbuiltin y ->
if x <> y then raise E.Error
| Tset ptn, Tset tg
| Tlist ptn, Tlist tg
| Toption ptn, Toption tg
| Tcontract ptn, Tcontract tg ->
doit ptn tg
| Tmap (kptn, vptn), Tmap (ktg, vtg) ->
List.iter2 doit [kptn; vptn] [ktg; vtg]
| Tcontainer (ptn, x), Tcontainer (tg, y) when x = y ->
doit ptn tg
| Ttuple ptn, Ttuple tg when List.length ptn = List.length tg ->
List.iter2 doit ptn tg
| _, _ ->
raise E.Error
in
if not (compatible ~autoview:false ~to_:ptn ~from_:tg) then
doit ptn tg
with E.Error -> raise UnificationFailure
let subst (subst : A.ptyp Mint.t) (ty : A.ptyp) : A.ptyp =
let rec doit (ty : A.ptyp) =
match ty with
| Tnamed i -> Option.get (Mint.find_opt i subst)
| Tasset _
| Trecord _
| Tenum _
| Toperation
| Ttrace _
| Tbuiltin _ -> ty
| Tcontainer (ty, c) -> Tcontainer (doit ty, c)
| Tset ty -> Tset (doit ty)
| Tlist ty -> Tlist (doit ty)
| Tmap (k, v) -> Tmap (doit k, doit v)
| Ttuple ty -> Ttuple (List.map doit ty)
| Toption ty -> Toption (doit ty)
| Tcontract ty -> Tcontract (doit ty)
in doit ty
let rec pktype = function
| A.Ttuple tys -> List.for_all pktype_simpl tys
| (A.Tbuiltin _) as ty -> pktype_simpl ty
| _ -> false
and pktype_simpl = function
| Tbuiltin (
VTbool
| VTnat
| VTint
| VTdate
| VTstring
| VTaddress
| VTrole
| VTcurrency
| VTbytes
) -> true
| _ -> false
let create_tuple (tys : A.ptyp list) =
match tys with
| [] -> A.vtunit
| [ty] -> ty
| tys -> A.Ttuple tys
end
type opsig = {
osl_sig : A.ptyp list;
osl_ret : A.ptyp;
} [@@deriving show {with_path = false}]
type error_desc =
| TODO
| AEntryExpected of A.ptyp
| AlienPattern
| AnonymousFieldInEffect
| AssertInGlobalSpec
| AssetExpected of A.ptyp
| AssetOrRecordExpected of A.ptyp
| AssetUpdateInNonFormula
| AssetWithoutFields
| AssetWithoutPKey
| BeforeIrrelevant of [`Local | `State]
| BeforeOrLabelInExpr
| BindingInExpr
| CannotAssignArgument of ident
| CannotAssignLoopIndex of ident
| CannotCaptureLocal
| CannotInfer
| CannotInferAnonAssetOrRecord
| CannotInferCollectionType
| CannotInitShadowField
| CannotUpdatePKey
| CollectionExpected
| ContainerOfNonAsset
| ContractInvariantInLocalSpec
| DivergentExpr
| DoesNotSupportMethodCall
| DuplicatedArgName of ident
| DuplicatedCtorName of ident
| DuplicatedFieldInAssetDecl of ident
| DuplicatedFieldInAssetOrRecordLiteral of ident
| DuplicatedFieldInRecordDecl of ident
| DuplicatedInitMarkForCtor
| DuplicatedPkeyField of ident
| DuplicatedVarDecl of ident
| EffectInGlobalSpec
| EmptyEnumDecl
| ExpressionExpected
| ForeignState of ident option * ident option
| FormulaExpected
| IncompatibleSpecSig
| IncompatibleTypes of A.ptyp * A.ptyp
| IndexOutOfBoundForTuple
| InvalidArcheTypeDecl
| InvalidAssetCollectionExpr of A.ptyp
| InvalidAssetExpression
| InvalidCallByExpression
| InvalidEffectForCtn of A.container * A.container list
| InvalidEntryDescription
| InvalidEntryExpression
| InvalidExpression
| InvalidExpressionForEffect
| InvalidExprressionForTupleAccess
| InvalidFieldsCountInAssetOrRecordLiteral
| InvalidForIdentMap
| InvalidForIdentSimple
| InvalidFormula
| InvalidInstruction
| InvalidLValue
| InvalidMapType
| InvalidMethodInExec
| InvalidMethodInFormula
| InvalidMethodWithBigMap of ident
| InvalidNumberOfArguments of int * int
| InvalidRecordFieldType
| InvalidRoleExpression
| InvalidSecurityEntry
| InvalidSecurityRole
| InvalidShadowFieldAccess
| InvalidShadowVariableAccess
| InvalidSortingExpression
| InvalidStateExpression
| InvalidTypeForDoFailIf
| InvalidTypeForDoRequire
| InvalidTypeForEntrypoint
| InvalidTypeForContract
| InvalidTypeForFail
| InvalidTypeForMapKey
| InvalidTypeForMapValue
| InvalidTypeForPk
| InvalidTypeForSet
| InvalidVarOrArgType
| LabelInNonInvariant
| LetInElseInInstruction
| LetInElseOnNonOption
| MethodCallInPredicate
| MisorderedPkeyFields
| MissingFieldInAssetOrRecordLiteral of ident
| MissingInitValueForShadowField
| MixedAnonInAssetOrRecordLiteral
| MixedFieldNamesInAssetOrRecordLiteral of ident list
| MoreThanOneInitState of ident list
| MultipleAssetStateDeclaration
| MultipleInitialMarker
| MultipleMatchingFunction of ident * A.ptyp list * (A.ptyp list * A.ptyp) list
| MultipleMatchingOperator of PT.operator * A.ptyp list * opsig list
| MultipleStateDeclaration
| NameIsAlreadyBound of ident * Location.t option
| NoLetInInstruction
| NoMatchingFunction of ident * A.ptyp list
| NoMatchingOperator of PT.operator * A.ptyp list
| NonCodeLabel of ident
| NonIterable
| NonIterableBigMapAsset of ident
| NonLoopLabel of ident
| NoSuchMethod of ident
| NoSuchSecurityPredicate of ident
| NotAKeyOfType
| NotAnAssetType
| NotAnEnumType
| NotAPrimitiveType
| NotARole of ident
| NumericExpressionExpected
| NumericOrCurrencyExpressionExpected
| OpInRecordLiteral
| OrphanedLabel of ident
| PackUnpackOnNonPrimitive
| PartialMatch of ident list
| PostConditionInGlobalSpec
| PredicateCallInExpr
| ReadOnlyGlobal of ident
| RecordExpected
| ReturnInVoidContext
| RecordUpdateDuplicatedFieldName of ident
| RecordUpdateOnNonRecordOrAsset
| RecordUpdateOnPKey
| RecordUpdateWithInvalidFieldName
| SecurityInExpr
| ShadowPKey
| ShadowSKey
| SpecOperatorInExpr
| StringLiteralExpected
| TransferWithoutDest
| UninitializedVar
| UnknownAsset of ident
| UnknownAssetToProperty of ident
| UnknownEntry of ident
| UnknownEnum of ident
| UnknownField of ident * ident
| UnknownFieldName of ident
| UnknownFunction of ident
| UnknownGetter of ident
| UnknownLabel of ident
| UnknownLocalOrVariable of ident
| UnknownProcedure of ident
| UnknownState of ident
| UnknownTypeName of ident
| UnknownVariable of ident
| UnpureInFormula
| UpdateEffectOnPkey
| UpdateEffectWithoutDefault
| UselessPattern
| UsePkeyOfInsteadOfAsset
| VoidMethodInExpr
| VSetInExpr
| VSetOnNonAsset
[@@deriving show {with_path = false}]
type error = L.t * error_desc
let pp_operator fmt (op : PT.operator) : unit =
let pp = Printer_tools.pp_str fmt in
match op with
| Logical And -> pp "and"
| Logical Or -> pp "or"
| Logical Xor -> pp "xor"
| Logical Imply -> pp "->"
| Logical Equiv -> pp "<->"
| Cmp Equal -> pp "="
| Cmp Nequal -> pp "<>"
| Cmp Gt -> pp ">"
| Cmp Ge -> pp ">="
| Cmp Lt -> pp "<"
| Cmp Le -> pp "<="
| Arith Plus -> pp "+"
| Arith Minus -> pp "-"
| Arith Mult -> pp "*"
| Arith DivRat -> pp "/"
| Arith DivEuc -> pp "div"
| Arith Modulo -> pp "%"
| Unary Uminus -> pp "unary -"
| Unary Not -> pp "not"
let pp_error_desc fmt e =
let pp s = Format.fprintf fmt s in
match e with
| TODO -> pp "TODO"
| AEntryExpected ty -> pp "Expecting an entry point, not a `%a'" Printer_ast.pp_ptyp ty
| AlienPattern -> pp "This pattern does not belong to the enumeration"
| AnonymousFieldInEffect -> pp "Anonymous field in effect"
| AssertInGlobalSpec -> pp "Assertions specification at global level are forbidden"
| AssetExpected ty -> pp "Asset expected (found a %a)" Printer_ast.pp_ptyp ty
| AssetOrRecordExpected ty -> pp "Asset or record expected (found a %a)" Printer_ast.pp_ptyp ty
| AssetUpdateInNonFormula -> pp "Asset record updated can only appear in formulas"
| AssetWithoutFields -> pp "Asset declaration without fields"
| AssetWithoutPKey -> pp "Asset declaration without a primary key"
| BeforeIrrelevant `Local -> pp "The `before' modifier cannot be used on local variables"
| BeforeIrrelevant `State -> pp "The `before' modifier cannot be used on state constructors"
| BeforeOrLabelInExpr -> pp "The `before' or label modifiers can only be used in formulas"
| BindingInExpr -> pp "Binding in expression"
| CannotAssignArgument x -> pp "Cannot assign argument `%s'" x
| CannotAssignLoopIndex x -> pp "Cannot assign loop index `%s'" x
| CannotCaptureLocal -> pp "Cannot capture local variables in this context"
| CannotInfer -> pp "Cannot infer type"
| CannotInferAnonAssetOrRecord -> pp "Cannot infer anonymous asset or record"
| CannotInferCollectionType -> pp "Cannot infer collection type"
| CannotInitShadowField -> pp "Cannot initialize a shadow field"
| CannotUpdatePKey -> pp "Cannot modify the primary key of asset"
| CollectionExpected -> pp "Collection expected"
| ContainerOfNonAsset -> pp "The base type of a container must be an asset type"
| ContractInvariantInLocalSpec -> pp "Contract invariants at local levl are forbidden"
| DivergentExpr -> pp "Divergent expression"
| DoesNotSupportMethodCall -> pp "Cannot use method calls on this kind of objects"
| DuplicatedArgName x -> pp "Duplicated argument name: %s" x
| DuplicatedCtorName i -> pp "Duplicated constructor name: %a" pp_ident i
| DuplicatedFieldInAssetDecl i -> pp "Duplicated field in asset declaration: %a" pp_ident i
| DuplicatedFieldInAssetOrRecordLiteral i
-> pp "Duplicated field in asset or record literal: %a" pp_ident i
| DuplicatedFieldInRecordDecl i -> pp "Duplicated field in record declaration: %a" pp_ident i
| DuplicatedInitMarkForCtor -> pp "Duplicated 'initialized by' section for asset"
| DuplicatedPkeyField x -> pp "Duplicated primary key field: %a" pp_ident x
| DuplicatedVarDecl i -> pp "Duplicated variable declaration: %a" pp_ident i
| EffectInGlobalSpec -> pp "(Shadow) effects at global level are forbidden"
| EmptyEnumDecl -> pp "Empty state/enum declaration"
| ExpressionExpected -> pp "Expression expected"
| ForeignState (i1, i2) -> pp "Expecting a state of %a, not %a" pp_ident (Option.get_dfl "<global>" i1) pp_ident (Option.get_dfl "<global>" i2)
| FormulaExpected -> pp "Formula expected"
| IncompatibleSpecSig -> pp "Specification's signature does not match the one of the targeted object"
| IncompatibleTypes (t1, t2) -> pp "Incompatible types: found '%a' but expected '%a'" Printer_ast.pp_ptyp t1 Printer_ast.pp_ptyp t2
| IndexOutOfBoundForTuple -> pp "Index out of bounds for tuple"
| InvalidArcheTypeDecl -> pp "Invalid Archetype declaration"
| InvalidAssetCollectionExpr ty -> pp "Invalid asset collection expression: %a" A.pp_ptyp ty
| InvalidAssetExpression -> pp "Invalid asset expression"
| InvalidCallByExpression -> pp "Invalid 'Calledby' expression"
| InvalidEffectForCtn _ -> pp "Invalid effect for this container kind"
| InvalidEntryDescription -> pp "Invalid entry description"
| InvalidEntryExpression -> pp "Invalid entry expression"
| InvalidExpression -> pp "Invalid expression"
| InvalidExpressionForEffect -> pp "Invalid expression for effect"
| InvalidExprressionForTupleAccess -> pp "Invalid expression for tuple access, only int literals are allowed"
| InvalidFieldsCountInAssetOrRecordLiteral
-> pp "Invalid fields count in asset or record literal"
| InvalidForIdentMap -> pp "Invalid identifier for map iteration, must specify two identifiers like (x, y) instead of x"
| InvalidForIdentSimple -> pp "Invalid identifiers for iteration, excpted only one identifier"
| InvalidFormula -> pp "Invalid formula"
| InvalidInstruction -> pp "Invalid instruction"
| InvalidLValue -> pp "Invalid left-value"
| InvalidMapType -> pp "Invalid map type"
| InvalidMethodInExec -> pp "Invalid method in execution"
| InvalidMethodInFormula -> pp "Invalid method in formula"
| InvalidMethodWithBigMap id -> pp "Invalid method with big map asset: %s" id
| InvalidNumberOfArguments (n1, n2) -> pp "Invalid number of arguments: found '%i', but expected '%i'" n2 n1
| InvalidRecordFieldType -> pp "Invalid record field's type"
| InvalidRoleExpression -> pp "Invalid role expression"
| InvalidSecurityEntry -> pp "Invalid security entry"
| InvalidSecurityRole -> pp "Invalid security role"
| InvalidShadowFieldAccess -> pp "Shadow field access in non-shadow code"
| InvalidShadowVariableAccess -> pp "Shadow variable access in non-shadow code"
| InvalidSortingExpression -> pp "Invalid sorting expression"
| InvalidStateExpression -> pp "Invalid state expression"
| InvalidTypeForDoFailIf -> pp "Invalid type for dofailif"
| InvalidTypeForDoRequire -> pp "Invalid type for dorequire"
| InvalidTypeForEntrypoint -> pp "Invalid type for entrypoint"
| InvalidTypeForContract -> pp "Invalid type for contract"
| InvalidTypeForFail -> pp "Invalid type for fail"
| InvalidTypeForMapKey -> pp "Invalid type for map key"
| InvalidTypeForMapValue -> pp "Invalid type for map value"
| InvalidTypeForPk -> pp "Invalid type for primary key"
| InvalidTypeForSet -> pp "Invalid type for set"
| InvalidVarOrArgType -> pp "A variable / argument type cannot be an asset or a collection"
| LabelInNonInvariant -> pp "The label modifier can only be used in invariants"
| LetInElseInInstruction -> pp "Let In else in instruction"
| LetInElseOnNonOption -> pp "Let in else on non-option type"
| MethodCallInPredicate -> pp "Cannot call methods in predicates"
| MisorderedPkeyFields -> pp "Primary keys order should follow asset fields order"
| MissingFieldInAssetOrRecordLiteral i
-> pp "Missing field in asset or record literal: %a" pp_ident i
| MissingInitValueForShadowField -> pp "Shadow fields must have a default value"
| MixedAnonInAssetOrRecordLiteral -> pp "Mixed anonymous in asset or record literal"
| MixedFieldNamesInAssetOrRecordLiteral l
-> pp "Mixed field names in asset or record literal: %a" (Printer_tools.pp_list "," pp_ident) l
| MoreThanOneInitState l -> pp "More than one initial state: %a" (Printer_tools.pp_list ", " pp_ident) l
| MultipleAssetStateDeclaration -> pp "Multiple asset states declaration"
| MultipleInitialMarker -> pp "Multiple 'initial' marker"
| MultipleStateDeclaration -> pp "Multiple state declaration"
| NameIsAlreadyBound (i, None) -> pp "Name is already bound: %a" pp_ident i
| NameIsAlreadyBound (i, Some l) -> pp "Name is already bound: %a (previous definition: %s)" pp_ident i (Location.tostring l)
| NoLetInInstruction -> pp "No Let In in instruction"
| NonCodeLabel i -> pp "Not a code label: %a" pp_ident i
| NonIterable -> pp "Cannot iterate over"
| NonIterableBigMapAsset i -> pp "Asset to big_map is not iterable: %s" i
| NonLoopLabel i -> pp "Not a loop label: %a" pp_ident i
| NoSuchMethod i -> pp "No such method: %a" pp_ident i
| NoSuchSecurityPredicate i -> pp "No such security predicate: %a" pp_ident i
| NotAKeyOfType -> pp "pkey-of type expected"
| NotAnAssetType -> pp "Asset type expected"
| NotAnEnumType -> pp "Enumeration type expected"
| NotAPrimitiveType -> pp "Primitive type expected"
| NotARole i -> pp "Not a role: %a" pp_ident i
| NumericExpressionExpected -> pp "Expecting numerical expression"
| NumericOrCurrencyExpressionExpected-> pp "Expecting numerical or currency expression"
| OpInRecordLiteral -> pp "Operation in record literal"
| OrphanedLabel i -> pp "Label not used: %a" pp_ident i
| PackUnpackOnNonPrimitive -> pp "Cannot pack / unpack non primitive types"
| PartialMatch ps -> pp "Partial match (%a)" (Printer_tools.pp_list ", " pp_ident) ps
| PostConditionInGlobalSpec -> pp "Post-conditions at global level are forbidden"
| PredicateCallInExpr -> pp "Cannot access predicates in code"
| ReadOnlyGlobal i -> pp "Global is read only: %a" pp_ident i
| RecordExpected -> pp "Record expected"
| ReturnInVoidContext -> pp "Unexpected return in void context"
| RecordUpdateDuplicatedFieldName x -> pp "Duplicated field name: %a" pp_ident x
| RecordUpdateOnNonRecordOrAsset -> pp "Record update on a non-record/asset expression"
| RecordUpdateOnPKey -> pp "Record updates cannot act on primary keys"
| RecordUpdateWithInvalidFieldName -> pp "Unknown or invalid field name"
| SecurityInExpr -> pp "Found securtiy predicate in expression"
| ShadowPKey -> pp "Primary key cannot be a shadow field"
| ShadowSKey -> pp "Sort key cannot be a shadow field"
| SpecOperatorInExpr -> pp "Specification operator in expression"
| StringLiteralExpected -> pp "Expecting a string literal"
| TransferWithoutDest -> pp "Transfer without destination"
| UninitializedVar -> pp "This variable declaration is missing an initializer"
| UnknownAsset i -> pp "Unknown asset: %a" pp_ident i
| UnknownAssetToProperty i -> pp "Unknown asset to property: %a" pp_ident i
| UnknownEntry i -> pp "Unknown entry: %a" pp_ident i
| UnknownEnum i -> pp "Unknown enum: %a" pp_ident i
| UnknownField (i1, i2) -> pp "Unknown field: asset %a does not have a field %a" pp_ident i1 pp_ident i2
| UnknownFieldName i -> pp "Unknown field name: %a" pp_ident i
| UnknownFunction i -> pp "Unknown function name: %a" pp_ident i
| UnknownGetter i -> pp "Unknown getter name: %a" pp_ident i
| UnknownLabel i -> pp "Unknown label: %a" pp_ident i
| UnknownLocalOrVariable i -> pp "Unknown local or variable: %a" pp_ident i
| UnknownProcedure i -> pp "Unknown procedure: %a" pp_ident i
| UnknownState i -> pp "Unknown state: %a" pp_ident i
| UnknownTypeName i -> pp "Unknown type: %a" pp_ident i
| UnknownVariable i -> pp "Unknown variable: %a" pp_ident i
| UnpureInFormula -> pp "Cannot use expression with side effect"
| UpdateEffectOnPkey -> pp "Cannot set/update the primary key in an effect"
| UpdateEffectWithoutDefault -> pp "Update effect without default value for field"
| UselessPattern -> pp "Useless match branch"
| UsePkeyOfInsteadOfAsset -> pp "Cannot reference assets directly, use `pkey of` instead"
| VoidMethodInExpr -> pp "Void method in non-void context"
| VSetInExpr -> pp "Virtual set in expression"
| VSetOnNonAsset -> pp "Virtual set modifier on non-asset"
| NoMatchingOperator (op, sig_) ->
pp "No matches for operator %a(%a)"
pp_operator op
(Printer_tools.pp_list ", " Printer_ast.pp_ptyp) sig_
| MultipleMatchingOperator (op, sig_, sigs) ->
pp "Multiple matches for operator %a(%a): %a"
pp_operator op
(Printer_tools.pp_list ", " Printer_ast.pp_ptyp) sig_
(Printer_tools.pp_list ", " (fun fmt sig_ ->
Format.fprintf fmt "(%a) -> %a"
(Printer_tools.pp_list " * " Printer_ast.pp_ptyp) sig_.osl_sig
Printer_ast.pp_ptyp sig_.osl_ret)) sigs
| NoMatchingFunction (f, sig_) ->
pp "No matches for function %s(%a)" f
(Printer_tools.pp_list ", " Printer_ast.pp_ptyp) sig_
| MultipleMatchingFunction (f, sig_, sigs) ->
pp "Multiple matches for operator %s(%a): %a" f
(Printer_tools.pp_list ", " Printer_ast.pp_ptyp) sig_
(Printer_tools.pp_list ", " (fun fmt sig_ ->
Format.fprintf fmt "(%a) -> %a"
(Printer_tools.pp_list " * " Printer_ast.pp_ptyp) (fst sig_)
Printer_ast.pp_ptyp (snd sig_))) sigs
type argtype = [`Type of A.type_ | `Effect of ident]
let cmptypes =
[ A.VTnat ;
A.VTint ;
A.VTrational;
A.VTdate ;
A.VTduration;
A.VTstring ;
A.VTaddress ;
A.VTcurrency;
A.VTbytes ]
let grptypes =
[ A.VTduration ;
A.VTcurrency ]
let rgtypes =
[ A.VTint ;
A.VTrational ]
let cmpsigs : (PT.operator * (A.vtyp list * A.vtyp)) list =
let ops = [PT.Gt; PT.Ge; PT.Lt; PT.Le] in
let sigs = List.map (fun ty -> ([ty; ty], A.VTbool)) cmptypes in
List.mappdt (fun op sig_ -> (PT.Cmp op, sig_)) ops sigs
let opsigs =
let grptypes : (PT.operator * (A.vtyp list * A.vtyp)) list =
let bops = List.map (fun x -> PT.Arith x) [PT.Plus ; PT.Minus] in
let uops = List.map (fun x -> PT.Unary x) [PT.Uminus] in
let bsig = List.map (fun ty -> ([ty; ty], ty)) grptypes in
let usig = List.map (fun ty -> ([ty], ty)) grptypes in
(List.mappdt (fun op sig_ -> (op, sig_)) bops bsig)
@ (List.mappdt (fun op sig_ -> (op, sig_)) uops usig) in
let rgtypes : (PT.operator * (A.vtyp list * A.vtyp)) list =
let bops = (List.map (fun x -> PT.Arith x) [PT.Plus; PT.Minus; PT.Mult]) in
let uops = (List.map (fun x -> PT.Unary x) [PT.Uminus]) in
let bsig = List.map (fun ty -> ([ty; ty], ty)) rgtypes in
let usig = List.map (fun ty -> ([ty], ty)) rgtypes in
(List.mappdt (fun op sig_ -> (op, sig_)) bops bsig)
@ (List.mappdt (fun op sig_ -> (op, sig_)) uops usig) in
let ariths : (PT.operator * (A.vtyp list * A.vtyp)) list =
[ PT.Arith PT.Modulo, ([A.VTint; A.VTint], A.VTnat);
PT.Arith PT.DivRat, ([A.VTrational; A.VTrational], A.VTrational);
PT.Arith PT.DivEuc, ([A.VTint; A.VTint], A.VTint) ] in
let nat : (PT.operator * (A.vtyp list * A.vtyp)) list =
[ PT.Arith PT.Plus , ([A.VTnat; A.VTnat], A.VTnat) ;
PT.Arith PT.Mult , ([A.VTnat; A.VTnat], A.VTnat) ;
PT.Arith PT.DivEuc, ([A.VTnat; A.VTnat], A.VTnat) ] in
let bools : (PT.operator * (A.vtyp list * A.vtyp)) list =
let unas = List.map (fun x -> PT.Unary x) [PT.Not] in
let bins = List.map (fun x -> PT.Logical x) [PT.And; PT.Or; PT.Imply; PT.Equiv] in
List.map (fun op -> (op, ([A.VTbool], A.VTbool))) unas
@ List.map (fun op -> (op, ([A.VTbool; A.VTbool], A.VTbool))) bins in
let others : (PT.operator * (A.vtyp list * A.vtyp)) list =
[ PT.Arith PT.Plus , ([A.VTdate ; A.VTduration ], A.VTdate ) ;
PT.Arith PT.Plus , ([A.VTduration; A.VTdate ], A.VTdate ) ;
PT.Arith PT.Plus , ([A.VTint ; A.VTduration ], A.VTduration) ;
PT.Arith PT.Plus , ([A.VTduration; A.VTint ], A.VTduration) ;
PT.Arith PT.Minus , ([A.VTint ; A.VTduration ], A.VTduration) ;
PT.Arith PT.Minus , ([A.VTduration; A.VTint ], A.VTduration) ;
PT.Arith PT.Minus , ([A.VTdate ; A.VTduration ], A.VTdate ) ;
PT.Arith PT.Minus , ([A.VTdate ; A.VTdate ], A.VTduration) ;
PT.Arith PT.Mult , ([A.VTnat ; A.VTcurrency ], A.VTcurrency) ;
PT.Arith PT.Mult , ([A.VTcurrency; A.VTint ], A.VTcurrency) ;
PT.Arith PT.Mult , ([A.VTrational; A.VTcurrency ], A.VTcurrency) ;
PT.Arith PT.Mult , ([A.VTint ; A.VTduration ], A.VTduration) ;
PT.Arith PT.Mult , ([A.VTrational; A.VTduration ], A.VTduration) ;
PT.Arith PT.Mult , ([A.VTduration; A.VTrational ], A.VTduration) ;
PT.Arith PT.DivRat , ([A.VTduration; A.VTduration ], A.VTrational) ;
PT.Arith PT.DivEuc , ([A.VTcurrency; A.VTcurrency ], A.VTnat ) ;
PT.Arith PT.DivEuc , ([A.VTduration; A.VTduration ], A.VTint ) ;
PT.Arith PT.DivEuc , ([A.VTcurrency; A.VTnat ], A.VTcurrency) ;
PT.Arith PT.DivEuc , ([A.VTduration; A.VTint ], A.VTduration) ;
PT.Arith PT.Plus , ([A.VTstring ; A.VTstring ], A.VTstring ) ;
PT.Logical PT.Xor , ([A.VTbool ; A.VTbool ], A.VTbool ) ;
PT.Logical PT.Xor , ([A.VTnat ; A.VTnat ], A.VTnat ) ;
] in
cmpsigs @ grptypes @ rgtypes @ ariths @ nat @ bools @ others
let opsigs =
let doit (args, ret) =
{ osl_sig = List.map (fun x -> A.Tbuiltin x) args;
osl_ret = A.Tbuiltin ret; } in
List.map (snd_map doit) opsigs
type acttx = [
| `Entry of PT.entry_decl
| `Transition of PT.transition_decl
]
type groups = {
gr_archetypes : (PT.lident * PT.exts) loced list;
gr_states : PT.enum_decl loced list;
gr_enums : (PT.lident * PT.enum_decl) loced list;
gr_assets : PT.asset_decl loced list;
gr_records : PT.record_decl loced list;
gr_vars : PT.variable_decl loced list;
gr_funs : PT.s_function loced list;
gr_acttxs : acttx loced list;
gr_specs : PT.specification loced list;
gr_specfuns : PT.specfun loced list;
gr_specvars : (PT.lident * PT.label_exprs) loced list;
gr_specassets : (PT.lident * PT.label_exprs) loced list;
gr_secs : PT.security loced list;
}
let globals = [
("balance" , A.Cbalance , A.vtcurrency);
("caller" , A.Ccaller , A.vtaddress);
("now" , A.Cnow , A.vtdate);
("source" , A.Csource , A.vtaddress);
("selfaddress" , A.Cselfaddress , A.vtaddress);
("transferred" , A.Ctransferred , A.vtcurrency);
("chainid" , A.Cchainid , A.vtchainid);
("operations" , A.Coperations , A.Tlist (A.Toperation));
("metadata" , A.Cmetadata , A.Tmap (A.vtstring, A.vtbytes));
]
let statename = "state"
type ('args, 'rty) gmethod_ = {
mth_name : A.const;
mth_place : [`Both | `OnlyFormula | `OnlyExec ];
mth_purity : [`Pure | `Effect of A.container list];
mth_totality : [`Total | `Partial];
mth_map_type : [`Both | `Standard ] ;
mth_sig : 'args * 'rty option;
}
type mthstyp = [
| `T of A.ptyp
]
type mthtyp = [
| mthstyp
| `The
| `Pk
| `ThePkForAggregate
| `Asset
| `Coll
| `SubColl
| `PkOrAsset
| `Cmp
| `Pred of bool
| `RExpr of bool
| `Ef of bool
| `Ref of int
]
and mthatyp = [ `Fixed of mthtyp list | `Multi of mthtyp ]
type smethod_ = (mthstyp list, mthstyp) gmethod_
type method_ = (mthatyp , mthtyp ) gmethod_
let methods : (string * method_) list =
let cap = [A.Collection; Aggregate; Partition] in
let capv = [A.Collection; Aggregate; Partition; View] in
let ap = [A.Aggregate; Partition] in
let c = [A.Collection] in
let c_p = [A.Collection; Partition] in
let mk mth_name mth_place mth_purity mth_totality mth_map_type mth_sig =
{ mth_name; mth_place; mth_purity; mth_totality; mth_map_type; mth_sig; }
in [
("empty" , mk A.Cempty `OnlyFormula (`Pure ) `Total `Standard (`Fixed [ ], Some (`Coll)));
("singleton" , mk A.Csingleton `OnlyFormula (`Pure ) `Total `Standard (`Fixed [`The ], Some (`Coll)));
("isempty" , mk A.Cisempty `OnlyFormula (`Pure ) `Total `Standard (`Fixed [ ], Some (`T A.vtbool)));
("subsetof" , mk A.Csubsetof `OnlyFormula (`Pure ) `Total `Standard (`Fixed [`SubColl ], Some (`T A.vtbool)));
("union" , mk A.Cunion `OnlyFormula (`Pure ) `Total `Standard (`Fixed [`Coll ], Some (`Coll)));
("inter" , mk A.Cinter `OnlyFormula (`Pure ) `Total `Standard (`Fixed [`Coll ], Some (`Coll)));
("diff" , mk A.Cdiff `OnlyFormula (`Pure ) `Total `Standard (`Fixed [`Coll ], Some (`Coll)));
("add" , mk A.Cadd `Both (`Effect cap ) `Total `Both (`Fixed [`ThePkForAggregate ], None));
("remove" , mk A.Cremove `Both (`Effect cap ) `Total `Both (`Fixed [`Pk ], None));
("clear" , mk A.Cclear `Both (`Effect capv) `Total `Standard (`Fixed [ ], None));
("removeif" , mk A.Cremoveif `Both (`Effect cap ) `Total `Standard (`Fixed [`Pred true ], None));
("removeall" , mk A.Cremoveall `Both (`Effect ap ) `Total `Standard (`Fixed [ ], None));
("update" , mk A.Cupdate `Both (`Effect c ) `Total `Both (`Fixed [`Pk; `Ef true ], None));
("addupdate" , mk A.Caddupdate `Both (`Effect c_p ) `Total `Both (`Fixed [`Pk; `Ef false ], None));
("contains" , mk A.Ccontains `Both (`Pure ) `Total `Both (`Fixed [`Pk ], Some (`T A.vtbool)));
("nth" , mk A.Cnth `Both (`Pure ) `Partial `Standard (`Fixed [`T A.vtnat ], Some (`Pk)));
("select" , mk A.Cselect `Both (`Pure ) `Total `Standard (`Fixed [`Pred true ], Some (`SubColl)));
("sort" , mk A.Csort `OnlyExec (`Pure ) `Total `Standard (`Multi (`Cmp ), Some (`SubColl)));
("count" , mk A.Ccount `Both (`Pure ) `Total `Standard (`Fixed [ ], Some (`T A.vtnat)));
("sum" , mk A.Csum `Both (`Pure ) `Total `Standard (`Fixed [`RExpr false ], Some (`Ref 0)));
("head" , mk A.Chead `Both (`Pure ) `Total `Standard (`Fixed [`T A.vtnat ], Some (`SubColl)));
("tail" , mk A.Ctail `Both (`Pure ) `Total `Standard (`Fixed [`T A.vtnat ], Some (`SubColl)));
]
let methods = Mid.of_list methods
type opinfo =
string
* A.const
* [`Partial | `Total]
* A.type_ option
* A.type_ list
* A.type_
* Type.trestr Mint.t
let coreops : opinfo list =
(List.map
(fun (x, y) -> ("abs", A.Cabs, `Total, None, [x], y, Mint.empty))
[(A.vtint, A.vtnat); (A.vtrational, A.vtrational)])
@ (List.map
(fun (x, y) -> (x, y, `Total, None, [A.vtrational], A.vtint, Mint.empty))
["floor", A.Cfloor ; "ceil", A.Cceil])
@ (List.flatten (List.map (fun (name, cname) -> (
List.map
(fun x -> (name, cname, `Total, None, [x; x], x, Mint.empty))
[A.vtnat; A.vtint; A.vtrational; A.vtdate; A.vtduration; A.vtcurrency]))
[("min", A.Cmin); ("max", A.Cmax)]))
@ (List.map
(fun x -> ("concat", A.Cconcat, `Total, None, [x; x], x, Mint.empty))
[A.vtbytes; A.vtstring])
@ (List.map
(fun x -> ("slice", A.Cslice, `Total, None, [x; A.vtnat; A.vtnat], x, Mint.empty))
[A.vtbytes; A.vtstring])
@ (List.map
(fun x -> ("length", A.Clength, `Total, None, [x], A.vtnat, Mint.empty))
[A.vtstring; A.vtbytes])
@ (List.map
(fun x -> ("to_string", A.Ctostring, `Total, None, [x], A.vtstring, Mint.empty))
[A.vtnat])
let optionops : opinfo list = [
("isnone", A.Cisnone, `Total , Some (A.Toption (A.Tnamed 0)), [], A.vtbool , Mint.empty);
("issome", A.Cissome, `Total , Some (A.Toption (A.Tnamed 0)), [], A.vtbool , Mint.empty);
("opt_get", A.Cgetopt, `Partial, Some (A.Toption (A.Tnamed 0)), [], A.Tnamed 0, Mint.empty);
]
let setops : opinfo list =
let elemt = A.Tnamed 0 in
let set = A.Tset elemt in [
("add" , A.Csadd , `Total , Some set, [ elemt ], set , Mint.empty);
("remove" , A.Csremove , `Total , Some set, [ elemt ], set , Mint.empty);
("contains" , A.Cscontains , `Total , Some set, [ elemt ], A.vtbool, Mint.empty);
("length" , A.Cslength , `Total , Some set, [ ], A.vtnat , Mint.empty);
]
let listops : opinfo list =
let elemt = A.Tnamed 0 in
let lst = A.Tlist elemt in [
("prepend" , A.Cprepend , `Total , Some lst, [elemt ], lst , Mint.empty);
("length" , A.Clength , `Total , Some lst, [ ], A.vtnat , Mint.empty);
("head_tail" , A.Cheadtail , `Total , Some lst, [ ], A.Ttuple [elemt; lst] , Mint.empty);
("contains" , A.Ccontains , `Total , Some lst, [elemt ], A.vtbool , Mint.empty);
("nth" , A.Cnth , `Partial, Some lst, [A.vtnat], elemt , Mint.empty);
("reverse" , A.Creverse , `Total , Some lst, [ ], lst , Mint.empty);
]
let mapops : opinfo list =
let tkey = A.Tnamed 0 in
let tval = A.Tnamed 1 in
let map = A.Tmap (tkey, tval) in [
("put" , A.Cmput , `Total , Some map, [ tkey; tval ], map , Mint.empty);
("remove" , A.Cmremove , `Total , Some map, [ tkey ], map , Mint.empty);
("getopt" , A.Cmgetopt , `Partial , Some map, [ tkey ], A.Toption tval, Mint.empty);
("contains" , A.Cmcontains , `Total , Some map, [ tkey ], A.vtbool , Mint.empty);
("length" , A.Cmlength , `Total , Some map, [ ], A.vtnat , Mint.empty);
]
let cryptoops : opinfo list =
List.map (fun (x, y) -> x, y, `Total, None, [A.vtbytes], A.vtbytes, Mint.empty)
[("blake2b", A.Cblake2b);
("sha256" , A.Csha256 );
("sha512" , A.Csha512 )]
@ [("hash_key" , A.Chashkey , `Total, None, [A.vtkey] , A.vtkeyhash, Mint.empty);
("check_signature", A.Cchecksignature, `Total, None, [A.vtkey; A.vtsignature; A.vtbytes], A.vtbool , Mint.empty)]
let packops : opinfo list =
["pack", A.Cpack, `Total, None, [A.Tnamed 0], A.vtbytes, Mint.of_list [0, `Michelson]]
let opsops : opinfo list =
[ "mkoperation", A.Cmkoperation, `Total, None,
[A.vtcurrency; A.Tcontract (A.Tnamed 0); A.Tnamed 0], A.Toperation, Mint.empty ]
let allops : opinfo list =
coreops @ optionops @ setops @ listops @ mapops @ cryptoops @ packops @ opsops
type assetdecl = {
as_name : A.lident;
as_fields : fielddecl list;
as_pkty : A.ptyp;
as_pk : A.lident list;
as_sortk : A.lident list;
as_bm : bool;
as_invs : (A.lident option * A.pterm) list;
as_state : A.lident option;
as_init : (A.pterm list) list;
}
[@@deriving show {with_path = false}]
and fielddecl = {
fd_name : A.lident;
fd_type : A.ptyp;
fd_dfl : A.pterm option;
fd_ghost : bool;
}
let get_field (x : ident) (decl : assetdecl) =
List.Exn.find (fun fd -> x = L.unloc fd.fd_name) decl.as_fields
type recorddecl = {
rd_name : A.lident;
rd_fields : rfielddecl list;
}
[@@deriving show {with_path = false}]
and rfielddecl = {
rfd_name : A.lident;
rfd_type : A.ptyp;
rfd_dfl : A.pterm option;
}
let get_rfield (x : ident) (decl : recorddecl) =
List.Exn.find (fun fd -> x = L.unloc fd.rfd_name) decl.rd_fields
type vardecl = {
vr_name : A.lident;
vr_type : A.ptyp;
vr_kind : [`Constant | `Variable | `Ghost | `Enum];
vr_invs : A.lident A.label_term list;
vr_def : (A.pterm * [`Inline | `Std]) option;
vr_core : A.const option;
}
type 'env ispecification = [
| `Predicate of A.lident * (A.lident * A.ptyp) list * A.pterm
| `Definition of A.lident * (A.lident * A.ptyp) * A.pterm
| `Fails of (A.lident * A.lident * A.ptyp * A.pterm) list
| `Variable of A.lident * A.pterm option
| `Asset of A.lident * A.pterm * (A.lident * A.pterm list) list * A.lident list
| `Effect of 'env * A.instruction
| `Postcondition of A.lident * A.pterm * (A.lident * A.pterm list) list * A.lident list
]
type 'env fundecl = {
fs_name : A.lident;
fs_kind : A.fun_kind;
fs_args : (A.lident * A.ptyp) list;
fs_retty : A.ptyp;
fs_body : A.instruction;
fs_spec : 'env ispecification list;
}
type preddecl = {
pr_name : A.lident;
pr_args : (A.lident * A.ptyp) list;
pr_body : A.pterm;
}
type txeffect = {
tx_state : A.lident;
tx_when : A.pterm option;
tx_effect : A.instruction option;
}
type 'env tentrydecl = {
ad_name : A.lident;
ad_args : (A.lident * A.ptyp) list;
ad_callby : (A.pterm option) loced list;
ad_effect : [`Raw of A.instruction | `Tx of transition] option;
ad_funs : 'env fundecl option list;
ad_reqs : (A.lident option * A.pterm * A.pterm option) list;
ad_fais : (A.lident option * A.pterm * A.pterm option) list;
ad_spec : 'env ispecification list;
ad_actfs : bool;
}
and transition = A.sexpr * (A.lident * assetdecl) option * txeffect list
type statedecl = {
sd_name : A.lident;
sd_state : bool;
sd_ctors : ctordecl list;
sd_init : ident;
}
and ctordecl = A.lident * (A.lident option * A.pterm) list
type definitiondecl = {
df_name : A.lident;
df_arg : A.lident * A.ptyp;
df_asset : A.lident;
df_body : A.pterm;
}
let pterm_arg_as_pterm = function A.AExpr e -> Some e | _ -> None
let core_types = [
("unit" , A.vtunit );
("string" , A.vtstring );
("nat" , A.vtnat );
("int" , A.vtint );
("rational" , A.vtrational );
("bool" , A.vtbool );
("role" , A.vtrole );
("address" , A.vtaddress );
("date" , A.vtdate );
("tez" , A.vtcurrency );
("duration" , A.vtduration );
("signature", A.vtsignature );
("key" , A.vtkey );
("key_hash" , A.vtkeyhash );
("bytes" , A.vtbytes );
("chain_id" , A.vtchainid );
("operation", A.Toperation );
]
module Env : sig
type t
type label_kind = [`Plain | `Code | `Loop of A.ptyp]
type entry = [
| `Label of t * label_kind
| `State of statedecl
| `StateByCtor of statedecl * A.lident
| `Type of A.ptyp
| `Local of A.ptyp * locvarkind
| `Global of vardecl
| `Definition of definitiondecl
| `Asset of assetdecl
| `Record of recorddecl
| `Entry of t tentrydecl
| `Function of t fundecl
| `Predicate of preddecl
| `Field of ident * [`Asset | `Record]
| `Context of assetdecl * ident option
]
and locvarkind = [`Standard | `Argument | `LoopIndex]
type ecallback = error -> unit
val create : ecallback -> t
val emit_error : t -> error -> unit
val name_free : t -> ident -> [`Free | `Clash of Location.t option]
val lookup_entry : t -> ident -> entry option
val open_ : t -> t
val close : t -> t
val inscope : t -> (t -> t * 'a) -> t * 'a
module Label : sig
val lookup : t -> ident -> (t * label_kind) option
val get : t -> ident -> t * label_kind
val exists : t -> ident -> bool
val push : t -> A.lident * label_kind -> t
end
module Type : sig
val lookup : t -> ident -> A.ptyp option
val get : t -> ident -> A.ptyp
val exists : t -> ident -> bool
val push : t -> (A.lident * A.ptyp) -> t
end
module Local : sig
val lookup : t -> ident -> (ident * (A.ptyp * locvarkind)) option
val get : t -> ident -> (ident * (A.ptyp * locvarkind))
val exists : t -> ident -> bool
val push : t -> ?kind:locvarkind -> A.lident * A.ptyp -> t
end
module Definition : sig
val lookup : t -> ident -> definitiondecl option
val get : t -> ident -> definitiondecl
val exists : t -> ident -> bool
val push : t -> definitiondecl -> t
end
module Var : sig
val lookup : t -> ident -> vardecl option
val get : t -> ident -> vardecl
val exists : t -> ident -> bool
val push : t -> vardecl -> t
end
module Function : sig
val lookup : t -> ident -> t fundecl option
val get : t -> ident -> t fundecl
val exists : t -> ident -> bool
val push : t -> t fundecl -> t
end
module Predicate : sig
val lookup : t -> ident -> preddecl option
val get : t -> ident -> preddecl
val exists : t -> ident -> bool
val push : t -> preddecl -> t
end
module State : sig
val lookup : t -> ident -> statedecl option
val get : t -> ident -> statedecl
val exists : t -> ident -> bool
val byctor : t -> ident -> statedecl option
val push : t -> statedecl -> t
end
module Record : sig
val lookup : t -> ident -> recorddecl option
val get : t -> ident -> recorddecl
val exists : t -> ident -> bool
val byfield : t -> ident -> (recorddecl * rfielddecl) option
val push : t -> recorddecl -> t
end
module Asset : sig
val lookup : t -> ident -> assetdecl option
val get : t -> ident -> assetdecl
val exists : t -> ident -> bool
val byfield : t -> ident -> (assetdecl * fielddecl) option
val push : t -> assetdecl -> t
end
module Tentry : sig
val lookup : t -> ident -> t tentrydecl option
val get : t -> ident -> t tentrydecl
val exists : t -> ident -> bool
val push : t -> t tentrydecl -> t
end
module Context : sig
val the : ident
val push : t -> ident -> t
end
end = struct
type ecallback = error -> unit
type label_kind = [`Plain | `Code | `Loop of A.ptyp]
type entry = [
| `Label of t * label_kind
| `State of statedecl
| `StateByCtor of statedecl * A.lident
| `Type of A.ptyp
| `Local of A.ptyp * locvarkind
| `Global of vardecl
| `Definition of definitiondecl
| `Asset of assetdecl
| `Record of recorddecl
| `Entry of t tentrydecl
| `Function of t fundecl
| `Predicate of preddecl
| `Field of ident * [`Asset | `Record]
| `Context of assetdecl * ident option
]
and locvarkind = [`Standard | `Argument | `LoopIndex]
and t = {
env_error : ecallback;
env_bindings : (Location.t option * entry) Mid.t;
env_context : assetdecl list;
env_locals : Sid.t;
env_scopes : Sid.t list;
}
let ctxtname = "the"
let create ecallback : t =
{ env_error = ecallback;
env_bindings = Mid.empty;
env_context = [];
env_locals = Sid.empty;
env_scopes = []; }
let emit_error (env : t) (e : error) =
env.env_error e
let name_free (env : t) (x : ident) =
if x = ctxtname then `Clash None else
Option.map fst (Mid.find_opt x env.env_bindings)
|> Option.map_dfl (fun x -> `Clash x) `Free
let lookup_entry (env : t) (name : ident) : entry option =
if name = ctxtname
then Option.map (fun x -> `Context (x, None)) (List.ohead env.env_context)
else Option.map snd (Mid.find_opt name env.env_bindings)
let lookup_gen (proj : entry -> 'a option) (env : t) (name : ident) : 'a option =
Option.bind proj (lookup_entry env name)
let push (env : t) ?(loc : Location.t option) (name : ident) (entry : entry) =
let env = { env with
env_bindings = Mid.add name (loc, entry) env.env_bindings } in
match entry with
| `Local _ -> { env with env_locals = Sid.add name env.env_locals }
| _ -> env
let open_ (env : t) =
{ env with
env_locals = Sid.empty;
env_scopes = env.env_locals :: env.env_scopes; }
let close (env : t) =
let lc, sc =
match env.env_scopes with lc :: sc -> lc, sc | _ -> assert false in
let bds =
Sid.fold
(fun x bds -> Mid.remove x bds) env.env_locals env.env_bindings in
{ env with env_bindings = bds; env_locals = lc; env_scopes = sc; }
let inscope (env : t) (f : t -> t * 'a) =
let env, aout = f (open_ env) in (close env, aout)
module Label = struct
let proj (entry : entry) =
match entry with
| `Label x -> Some x
| _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) ((name, kind) : A.lident * label_kind) =
push env ~loc:(loc name) (unloc name) (`Label (env, kind))
end
module Type = struct
let proj (entry : entry) =
match entry with
| `Type x -> Some x
| `Asset decl -> Some (A.Tasset decl.as_name)
| `State decl -> Some (A.Tenum decl.sd_name)
| `Record decl -> Some (A.Trecord decl.rd_name)
| _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) ((name, ty) : A.lident * A.ptyp) =
push env ~loc:(loc name) (unloc name) (`Type ty)
end
module State = struct
let proj (entry : entry) =
match entry with
| `State x -> Some x
| _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let byctor (env : t) (name : ident) =
match lookup_entry env name with
| Some (`StateByCtor (decl, _)) -> Some decl
| _ -> None
let push (env : t) (decl : statedecl) =
let env =
List.fold_left
(fun env (name, _) ->
(push env ~loc:(loc name) (unloc name) (`StateByCtor (decl, name))))
env decl.sd_ctors in
push env (unloc decl.sd_name) (`State decl)
end
module Local = struct
let proj = function `Local x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
Option.map (fun ty -> (name, ty)) (lookup_gen proj env name)
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) ?(kind = `Standard) ((x, ty) : A.lident * A.ptyp) =
push env ~loc:(loc x) (unloc x) (`Local (ty, kind))
end
module Definition = struct
let proj = function `Definition x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) (decl : definitiondecl) =
push env ~loc:(loc decl.df_name) (unloc decl.df_name) (`Definition decl)
end
module Var = struct
let proj = function
| `Global x ->
Some x
| `Asset a ->
Some { vr_name = a.as_name;
vr_type = A.Tcontainer (A.Tasset a.as_name, A.Collection);
vr_kind = `Constant;
vr_invs = [];
vr_core = None;
vr_def = None; }
| `StateByCtor (enum, ctor) ->
Some { vr_name = ctor;
vr_type = A.Tenum enum.sd_name;
vr_kind = `Enum;
vr_invs = [];
vr_core = None;
vr_def = None; }
| `Definition def ->
Some { vr_name = def.df_name;
vr_type = A.Tcontainer (A.Tasset def.df_asset, A.View);
vr_kind = `Ghost;
vr_invs = [];
vr_core = None;
vr_def = None; }
| _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) (decl : vardecl) =
push env ~loc:(loc decl.vr_name) (unloc decl.vr_name) (`Global decl)
end
module Function = struct
let proj = function `Function x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) (decl : t fundecl) =
push env ~loc:(loc decl.fs_name) (unloc decl.fs_name) (`Function decl)
end
module Predicate = struct
let proj = function `Predicate x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) (decl : preddecl) =
push env ~loc:(loc decl.pr_name) (unloc decl.pr_name) (`Predicate decl)
end
module Asset = struct
let proj = function `Asset x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let byfield (env : t) (fname : ident) =
Option.bind
(function
| `Field (nm, `Asset) ->
let decl = get env nm in
let field = get_field fname decl in
Some (decl, Option.get field)
| _ -> None)
(lookup_entry env fname)
let push (env : t) ({ as_name = nm } as decl : assetdecl) : t =
let env = push env ~loc:(loc nm) (unloc nm) (`Asset decl) in
List.fold_left
(fun env fd -> push env ~loc:(loc fd.fd_name)
(unloc fd.fd_name) (`Field (unloc nm, `Asset)))
env decl.as_fields
end
module Record = struct
let proj = function `Record x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let byfield (env : t) (fname : ident) =
Option.bind
(function
| `Field (nm, `Record) ->
let decl = get env nm in
let field = get_rfield fname decl in
Some (decl, Option.get field)
| _ -> None)
(lookup_entry env fname)
let push (env : t) ({ rd_name = nm } as decl : recorddecl) : t =
let env = push env ~loc:(loc nm) (unloc nm) (`Record decl) in
List.fold_left
(fun env fd -> push env ~loc:(loc fd.rfd_name)
(unloc fd.rfd_name) (`Field (unloc nm, `Record)))
env decl.rd_fields
end
module Tentry = struct
let proj = function `Entry x -> Some x | _ -> None
let lookup (env : t) (name : ident) =
lookup_gen proj env name
let exists (env : t) (name : ident) =
Option.is_some (lookup env name)
let get (env : t) (name : ident) =
Option.get (lookup env name)
let push (env : t) (act : t tentrydecl) =
push env ~loc:(loc act.ad_name) (unloc act.ad_name) (`Entry act)
end
module Context = struct
let the : ident = ctxtname
let push (env : t) (asset : ident) =
let asset = Asset.get env asset in
{ env with
env_context = asset :: env.env_context;
env_bindings = List.fold_left (fun bds fd ->
Mid.add (unloc fd.fd_name)
(None, `Context (asset, Some (unloc fd.fd_name))) bds
) env.env_bindings asset.as_fields; }
end
end
type env = Env.t
let coreloc = { Location.dummy with loc_fname = "<stdlib>" }
let empty : env =
let cb (lc, error) =
let str : string = Format.asprintf "%a@." pp_error_desc error in
let pos : Position.t list = [location_to_position lc] in
Error.error_alert pos str (fun _ -> ());
in
let env = Env.create cb in
let env =
List.fold_left
(fun env (name, ty) -> Env.Type.push env (mkloc coreloc name, ty))
env core_types in
let env =
let mk vr_name vr_type vr_core =
let def = A.Pconst vr_core in
let def = A.mk_sp ~type_:vr_type def in
{ vr_name; vr_type; vr_core = Some vr_core;
vr_def = Some (def, `Inline);
vr_kind = `Constant;
vr_invs = [];
} in
List.fold_left
(fun env (name, const, ty) ->
Env.Var.push env (mk (mkloc L.dummy name) ty const))
env globals in
env
let check_and_emit_name_free (env : env) (x : A.lident) =
match Env.name_free env (unloc x) with
| `Free ->
true
| `Clash olc ->
Env.emit_error env (loc x, NameIsAlreadyBound (unloc x, olc));
false
let select_operator env ?(formula = false) ?(asset = false) loc (op, tys) =
match op with
| PT.Cmp (PT.Equal | PT.Nequal) -> begin
let module E = struct exception NoEq end in
try
match tys with
| [t1; t2] ->
if not formula && (not (Type.support_eq t1) || not (Type.support_eq t2)) then
raise E.NoEq;
if not (Type.compatible ~autoview:false ~from_:t1 ~to_:t2) &&
not (Type.compatible ~autoview:false ~from_:t2 ~to_:t1) then
raise E.NoEq;
Some ({ osl_sig = [t1; t2]; osl_ret = A.Tbuiltin A.VTbool; })
| _ ->
raise E.NoEq
with E.NoEq ->
Env.emit_error env (loc, NoMatchingOperator (op, tys)); None
end
| _ -> begin
let ops =
let filter (sig_ : opsig) =
Type.sig_compatible ~from_:tys ~to_:sig_.osl_sig
in List.filter filter (List.assoc_all op opsigs) in
let ops =
let =
match asset, op, tys with
| true, PT.Arith PT.Plus,
[Tcontainer ((Tasset _) as aty, Partition) as rty;
Tcontainer ((Tasset _) as sty, Collection)]
when Type.compatible ~autoview:false ~from_:sty ~to_:aty
-> [{ osl_sig = tys; osl_ret = rty }]
| true, PT.Arith PT.Plus,
[Tcontainer (Tasset aty, Aggregate) as rty; Tlist sty]
| true, PT.Arith PT.Minus,
[Tcontainer (Tasset aty, (Aggregate | Partition)) as rty; Tlist sty] ->
let asset = Env.Asset.get env (unloc aty) in
if Type.compatible ~autoview:false ~from_:sty ~to_:asset.as_pkty then
[{ osl_sig = tys; osl_ret = rty }]
else []
| _, _, _ -> []
in ops @ extra
in
match ops with
| [] ->
Env.emit_error env
(loc, NoMatchingOperator (op, tys));
None
| _::_::_ as sigs -> begin
let module E = struct exception Bailout end in
let mind =
let ds =
List.pmap (fun sig_ -> Type.sig_distance ~to_:sig_.osl_sig ~from_:tys) ops
in if List.is_empty ds then None else Some (List.fold_left min max_int ds) in
let ops =
List.filter
(fun sig_ ->
let d = Type.sig_distance ~to_:sig_.osl_sig ~from_:tys in
d = mind || Option.is_none d)
ops in
try
let sig_ = match ops with [sig_] -> sig_ | _ -> raise E.Bailout in
List.iter (fun sig2 ->
if not (Type.sig_compatible ~from_:sig_.osl_sig ~to_:sig2.osl_sig) then
raise E.Bailout
) sigs;
Some sig_
with E.Bailout ->
Env.emit_error env
(loc, MultipleMatchingOperator (op, tys, sigs));
None
end
| [sig_] ->
Some sig_
end
let rec valid_var_or_arg_type (ty : A.ptyp) =
match ty with
| Tnamed _ -> assert false
| Tasset _ -> false
| Trecord _ -> true
| Tenum _ -> true
| Tbuiltin _ -> true
| Tset ty -> valid_var_or_arg_type ty
| Tlist ty -> valid_var_or_arg_type ty
| Tmap (k, v) -> List.for_all valid_var_or_arg_type [k; v]
| Ttuple ty -> List.for_all valid_var_or_arg_type ty
| Toption ty -> valid_var_or_arg_type ty
| Tcontract _ -> true
| Toperation -> true
| Ttrace _ -> false
| Tcontainer (_, A.View) -> true
| Tcontainer (_, _) -> false
let for_container (_ : env) = function
| PT.Aggregate -> A.Aggregate
| PT.Partition -> A.Partition
| PT.View -> A.View
let for_assignment_operator = function
| PT.ValueAssign -> A.ValueAssign
| PT.PlusAssign -> A.PlusAssign
| PT.MinusAssign -> A.MinusAssign
| PT.MultAssign -> A.MultAssign
| PT.DivAssign -> A.DivAssign
| PT.AndAssign -> A.AndAssign
| PT.OrAssign -> A.OrAssign
let tt_logical_operator (op : PT.logical_operator) =
match op with
| And -> A.And
| Or -> A.Or
| Xor -> A.Xor
| Imply -> A.Imply
| Equiv -> A.Equiv
let tt_arith_operator (op : PT.arithmetic_operator) =
match op with
| Plus -> A.Plus
| Minus -> A.Minus
| Mult -> A.Mult
| DivEuc -> A.DivEuc
| DivRat -> A.DivRat
| Modulo -> A.Modulo
let tt_cmp_operator (op : PT.comparison_operator) =
match op with
| Equal -> A.Equal
| Nequal -> A.Nequal
| Gt -> A.Gt
| Ge -> A.Ge
| Lt -> A.Lt
| Le -> A.Le
exception InvalidType
let for_type_exn ?pkey (env : env) =
let rec doit ?(canasset = false) (ty : PT.type_t) : A.ptyp =
match unloc ty with
| Tref x -> begin
match Env.Type.lookup env (unloc x) with
| None ->
Env.emit_error env (loc x, UnknownTypeName (unloc x));
raise InvalidType
| Some (A.Tasset _) when not canasset && Option.is_some pkey ->
Env.emit_error env (loc x, UsePkeyOfInsteadOfAsset);
raise InvalidType
| Some ty -> ty
end
| Tcontainer (pty, ctn) ->
let ty = doit ~canasset:true pty in
if not (Type.is_asset ty) then
Env.emit_error env (loc pty, ContainerOfNonAsset);
A.Tcontainer (ty, for_container env ctn)
| Tset ty ->
let t = doit ty in
if not (Type.Michelson.is_comparable ~simple:true t) then
Env.emit_error env (loc ty, InvalidTypeForSet);
A.Tset (doit ty)
| Tlist ty ->
A.Tlist (doit ty)
| Tmap (k, v) ->
let nk, nv = doit k, doit v in
if not (Type.Michelson.is_comparable nk) then
Env.emit_error env (loc k, InvalidTypeForMapKey);
if not (Type.Michelson.is_type nk) then
Env.emit_error env (loc k, InvalidTypeForMapValue);
A.Tmap (nk, nv)
| Ttuple tys ->
A.Ttuple (List.map doit tys)
| Toption ty ->
A.Toption (doit ty)
| Tcontract ty ->
A.Tcontract (doit ty)
| Tkeyof ty -> begin
match doit ~canasset:true ty with
| A.Tasset x -> begin
let decl = Env.Asset.get env (unloc x) in
match pkey with
| Some map when List.mem (unloc x) map ->
Tnamed (List.index_of ((=) (unloc x)) map)
| _ ->
decl.as_pkty
end
| _ ->
Env.emit_error env (loc ty, NotAnAssetType);
raise InvalidType
end
in fun ty -> doit ty
let for_type ?pkey (env : env) (ty : PT.type_t) : A.ptyp option =
try Some (for_type_exn ?pkey env ty) with InvalidType -> None
let for_asset_type (env : env) (ty : PT.type_t) : A.lident option =
match Option.map Type.as_asset (for_type env ty) with
| None ->
None
| Some None ->
Env.emit_error env (loc ty, NotAnAssetType);
None
| Some (Some x) ->
Some x
let for_asset_keyof_type (env : env) (ty : PT.type_t) : A.lident option =
match unloc ty with
| PT.Tkeyof t ->
for_asset_type env t
| _ ->
Env.emit_error env (loc ty, NotAKeyOfType);
None
let for_literal (_env : env) (_ety : A.type_ option) (topv : PT.literal loced) : A.bval =
let mk_sp type_ node = A.mk_sp ~loc:(loc topv) ~type_ node in
match unloc topv with
| Lbool b ->
mk_sp A.vtbool (A.BVbool b)
| Lint i -> mk_sp A.vtint (A.BVint i)
| Lnat i -> mk_sp A.vtnat (A.BVnat i)
| Ldecimal str -> begin
let n, d = Core.decimal_string_to_rational str in
mk_sp A.vtrational (A.BVrational (n, d))
end
| Lstring s ->
mk_sp A.vtstring (A.BVstring s)
| Ltz tz ->
mk_sp (A.vtcurrency) (A.BVcurrency (A.Tz, tz))
| Lmtz tz ->
mk_sp (A.vtcurrency) (A.BVcurrency (A.Mtz, tz))
| Lutz tz ->
mk_sp (A.vtcurrency) (A.BVcurrency (A.Utz, tz))
| Laddress a ->
mk_sp A.vtaddress (A.BVaddress a)
| Lduration d ->
mk_sp A.vtduration (A.BVduration (Core.string_to_duration d))
| Ldate d ->
mk_sp A.vtdate (A.BVdate (Core.string_to_date d))
| Lbytes s ->
mk_sp A.vtbytes (A.BVbytes (s))
| Lpercent n -> begin
let n, d = Core.compute_irr_fract (n, Big_int.big_int_of_int 100) in
mk_sp A.vtrational (A.BVrational (n, d))
end
type imode_t = [`Ghost | `Concrete]
type ekind = [`Expr of imode_t | `Formula of bool]
type emode_t = {
em_kind : ekind;
em_pred : bool;
}
let is_expr_kind (kind : ekind) =
match kind with `Expr _ -> true | _ -> false
let is_form_kind (kind : ekind) =
match kind with `Formula _ -> true | _ -> false
let expr_mode imode =
{ em_kind = `Expr imode; em_pred = false; }
let form_mode (invariant : bool) =
{ em_kind = `Formula invariant ; em_pred = false; }
let rec for_xexpr
(mode : emode_t) ?autoview ?(capture = `Yes None)
(env : env) ?(ety : A.ptyp option) (tope : PT.expr)
=
let for_xexpr = for_xexpr mode ~capture in
let module E = struct exception Bailout end in
let bailout = fun () -> raise E.Bailout in
let mk_sp type_ node = A.mk_sp ~loc:(loc tope) ?type_ node in
let dummy type_ : A.pterm = mk_sp type_ (A.Pvar (VTnone, Vnone, mkloc (loc tope) "<error>")) in
let doit () =
match unloc tope with
| Eterm ((vset, pvt), x) -> begin
let vt, subenv =
match pvt with
| Some VLBefore ->
A.VTbefore, env
| Some (VLIdent lbl) -> begin
match Env.Label.lookup env (unloc lbl) with
| None ->
Env.emit_error env (loc lbl, UnknownLabel (unloc lbl));
A.VTnone, env
| Some (subenv, `Code) ->
A.VTat (unloc lbl), subenv
| Some (_, _) ->
Env.emit_error env (loc lbl, NonCodeLabel (unloc lbl));
A.VTnone, env
end
| None ->
A.VTnone, env
in
let vt =
match vt, mode.em_kind with
| A.VTnone , _
| A.VTat _ , `Formula true
| A.VTbefore, `Formula _ -> vt
| _, `Expr _ ->
Env.emit_error env (loc tope, BeforeOrLabelInExpr);
A.VTnone
| _, `Formula _ ->
Env.emit_error env (loc tope, LabelInNonInvariant);
A.VTnone
in
let lk = Env.lookup_entry subenv (unloc x) in
begin match lk, vset with
| None, _ | _, None | Some (`Asset _), _ -> ()
| Some _, Some _ ->
Env.emit_error env (loc tope, VSetOnNonAsset)
end;
if is_expr_kind mode.em_kind && Option.is_some vset then
Env.emit_error env (loc tope, VSetInExpr);
let vs =
match vset with
| None -> A.Vnone
| Some VSAdded -> A.Vadded
| Some VSRemoved -> A.Vremoved
| Some VSUnmoved -> A.Vunmoved
in
match lk with
| Some (`Local (xty, _)) ->
let vt =
if pvt = Some VLBefore then begin
Env.emit_error env (loc tope, BeforeIrrelevant `Local); A.VTnone
end else vt in
begin match capture with
| `No ->
Env.emit_error env (loc tope, CannotCaptureLocal);
| `Yes (Some lmap) ->
lmap := Mid.add (unloc x) (loc x, xty) !lmap
| `Yes None ->
() end;
mk_sp (Some xty) (A.Pvar (vt, vs, x))
| Some (`Global decl) -> begin
begin match mode.em_kind, decl.vr_kind with
| `Expr `Concrete, `Ghost ->
Env.emit_error env (loc tope, InvalidShadowVariableAccess)
| _, _ -> ()
end;
match decl.vr_def with
| Some (body, `Inline) ->
body
| _ ->
mk_sp (Some decl.vr_type) (A.Pvar (vt, vs, x))
end
| Some (`Asset decl) ->
let typ = A.Tcontainer ((A.Tasset decl.as_name), A.Collection) in
mk_sp (Some typ) (A.Pvar (vt, vs, x))
| Some (`Definition decl) ->
let typ = A.Tcontainer ((A.Tasset decl.df_asset), A.View) in
mk_sp (Some typ) (A.Pvar (vt, vs, x))
| Some (`StateByCtor (decl, _)) ->
let vt =
if pvt = Some VLBefore then begin
Env.emit_error env (loc tope, BeforeIrrelevant `State); A.VTnone
end else vt in
let typ = A.Tenum decl.sd_name in
mk_sp (Some typ) (A.Pvar (vt, vs, x))
| Some (`Context (asset, ofield)) -> begin
let atype = A.Tasset asset.as_name in
let var = mkloc (loc tope) Env.Context.the in
let the = mk_sp (Some atype) (A.Pvar (vt, Vnone, var)) in
match ofield with
| None ->
the
| Some fname ->
let fty = (Option.get (get_field fname asset)).fd_type in
mk_sp (Some fty) (A.Pdot (the, mkloc (loc tope) fname))
end
| _ ->
Env.emit_error env (loc x, UnknownLocalOrVariable (unloc x));
bailout ()
end
| Eliteral v ->
let v = for_literal env ety (mkloc (loc tope) v) in
mk_sp v.A.type_ (A.Plit v)
| Earray [] -> begin
match ety with
| Some (A.Tcontainer (_, _))
| Some (A.Tset _ | A.Tlist _ | A.Tmap _) ->
mk_sp ety (A.Parray [])
| _ ->
Env.emit_error env (loc tope, CannotInferCollectionType);
bailout ()
end
| Earray (e :: es) -> begin
let elty = Option.bind (Option.map fst |@ Type.as_container) ety in
let e = for_xexpr env ?ety:elty e in
let elty = if Option.is_some e.A.type_ then e.A.type_ else elty in
let es = List.map (fun e -> for_xexpr env ?ety:elty e) es in
match ety, elty with
| Some (A.Tcontainer (_, k)), Some ty ->
mk_sp (Some (A.Tcontainer (ty, k))) (A.Parray (e :: es))
| None, Some ((A.Tasset _) as ty) ->
mk_sp (Some (A.Tcontainer (ty, A.Collection))) (A.Parray (e :: es))
| Some Tset _, Some ty ->
mk_sp (Some (A.Tset ty)) (A.Parray (e :: es))
| Some Tmap _, Some ty ->
let k, v =
match ty with
| Ttuple [k; v] -> (k, v)
| _ -> (Env.emit_error env (loc tope, InvalidMapType); bailout ())
in
mk_sp (Some (A.Tmap (k, v))) (A.Parray (e :: es))
| _, Some ty ->
mk_sp (Some (A.Tlist ty)) (A.Parray (e :: es))
| _ ->
Env.emit_error env (loc tope, CannotInferCollectionType);
bailout ()
end
| Erecord fields -> begin
let module E = struct
type state = {
hasupdate : bool;
fields : ident list;
anon : bool;
}
let state0 = {
hasupdate = false; fields = []; anon = false;
}
end in
let is_update = function
| (None | Some (PT.ValueAssign, _)) -> false
| _ -> true in
let infos = List.fold_left (fun state (fname, _) ->
E.{ hasupdate = state.hasupdate || is_update fname;
fields = Option.fold
(fun names (_, name)-> unloc name :: names)
state.fields fname;
anon = state.anon || Option.is_none fname; })
E.state0 fields in
let get_target_field_type = function
| A.Tcontainer (Tasset an, Aggregate) -> begin
let asset = Env.Asset.get env (unloc an) in
A.Tlist asset.as_pkty
end
| t -> t
in
if infos.E.hasupdate then
Env.emit_error env (loc tope, OpInRecordLiteral);
if infos.E.anon && not (List.is_empty (infos.E.fields)) then begin
Env.emit_error env (loc tope, MixedAnonInAssetOrRecordLiteral);
bailout ()
end;
if infos.E.anon || List.is_empty fields then
let dfields =
match ety with
| Some (A.Tasset asset) ->
let asset = Env.Asset.get env (unloc asset) in
List.pmap
(fun fd -> if fd.fd_ghost then None else Some fd.fd_type)
asset.as_fields
| Some (A.Trecord record) ->
let record = Env.Record.get env (unloc record) in
List.map (fun fd -> fd.rfd_type) record.rd_fields
| _ ->
Env.emit_error env (loc tope, CannotInferAnonAssetOrRecord);
bailout () in
let ne = List.length fields in
let ng = List.length dfields in
if ne <> ng then begin
Env.emit_error env (loc tope, InvalidFieldsCountInAssetOrRecordLiteral);
bailout ()
end;
let fields =
List.map2 (fun (_, fe) ty ->
for_xexpr env ~ety:(get_target_field_type ty) fe
) fields dfields;
in mk_sp ety (A.Precord fields)
else begin
let fmap =
List.fold_left (fun fmap (fname, e) ->
let fname = unloc (snd (Option.get fname)) in
Mid.update fname (function
| None when Option.is_some (Env.Asset.byfield env fname) -> begin
let asset, fd = Option.get (Env.Asset.byfield env fname) in
if fd.fd_ghost then
Env.emit_error env (loc tope, CannotInitShadowField);
Some ((Some (`Asset (unloc asset.as_name), fd.fd_type), [e]))
end
| None when Option.is_some (Env.Record.byfield env fname) -> begin
let record, fd = Option.get (Env.Record.byfield env fname) in
Some ((Some (`Record (unloc record.rd_name), fd.rfd_type), [e]))
end
| None ->
Env.emit_error env (loc tope, UnknownFieldName fname);
Some (None, [e])
| Some (src, es) ->
if List.length es = 1 then begin
let err = DuplicatedFieldInAssetOrRecordLiteral fname in
Env.emit_error env (loc tope, err)
end; Some (src, e :: es)) fmap
) Mid.empty fields
in
let sources =
List.pmap
(fun (_, (src, _)) -> Option.map fst src)
(Mid.bindings fmap) in
let sources = List.undup (fun x -> x) sources in
let fields =
fmap |> Mid.map (fun (src, es) ->
let ety = Option.map (snd %> get_target_field_type) src in
es |> List.map (fun e -> for_xexpr env ?ety e)) in
let record =
match sources with
| [] ->
bailout ()
| _ :: _ :: _ ->
let err =
let for1 = function `Record x | `Asset x -> x in
MixedFieldNamesInAssetOrRecordLiteral (List.map for1 sources) in
Env.emit_error env (loc tope, err); bailout ()
| [src] ->
let sfields, rty =
match src with
| `Asset aname ->
let asset = Env.Asset.get env aname in
let sfields =
List.map
(fun fd -> fd.fd_name, fd.fd_type, fd.fd_dfl)
asset.as_fields
in (sfields, A.Tasset asset.as_name)
| `Record rname ->
let record = Env.Record.get env rname in
let sfields =
List.map
(fun fd -> fd.rfd_name, fd.rfd_type, fd.rfd_dfl)
record.rd_fields
in (sfields, A.Trecord record.rd_name)
in
let fields =
List.map (fun ({ pldesc = fd_name }, fd_type, fd_dfl) ->
match Mid.find_opt fd_name fields with
| None -> begin
match fd_dfl with
| None ->
let err = MissingFieldInAssetOrRecordLiteral fd_name in
Env.emit_error env (loc tope, err); dummy (Some fd_type)
| Some dfl -> dfl
end
| Some thisf ->
List.hd (List.rev thisf)
) sfields
in mk_sp (Some rty) (A.Precord fields)
in record
end
end
| Erecupdate (e, upd) -> begin
let e = for_xexpr env e in
let fields, isasset =
match e.A.type_ with
| Some Trecord { pldesc = rname } -> begin
let recd = Env.Record.get env rname in
let fields = List.map
(fun fd -> unloc fd.rfd_name, fd.rfd_type) recd.rd_fields in
(fields, None)
end
| Some Tasset { pldesc = aname } -> begin
let asset = Env.Asset.get env aname in
let fields = List.map
(fun fd -> unloc fd.fd_name, fd.fd_type) asset.as_fields in
(fields, Some (List.map unloc asset.as_pk))
end
| _ ->
if Option.is_some e.A.type_ then
Env.emit_error env (loc tope, RecordUpdateOnNonRecordOrAsset);
List.iter (fun (_, e) -> ignore (for_xexpr env e : A.pterm)) upd;
bailout () in
if Option.is_some isasset && not (is_form_kind mode.em_kind) then begin
Env.emit_error env (loc tope, AssetUpdateInNonFormula);
List.iter (fun (_, e) -> ignore (for_xexpr env e : A.pterm)) upd;
bailout ()
end;
let upd =
let seen = ref Sstr.empty in
let for1 (x, ue) =
if Sstr.mem (unloc x) !seen then
Env.emit_error env (loc x, RecordUpdateDuplicatedFieldName (unloc x));
if Option.get_dfl false (Option.map (List.mem (unloc x)) isasset) then
Env.emit_error env (loc x, RecordUpdateOnPKey);
let aout =
match List.assoc_opt (unloc x) fields with
| None ->
Env.emit_error env (loc x, RecordUpdateWithInvalidFieldName);
ignore (for_xexpr env ue : A.pterm);
None
| Some ety ->
let ue = for_xexpr env ~ety ue in
if Sstr.mem (unloc x) !seen then None else Some (x, ue) in
seen := Sstr.add (unloc x) !seen; aout
in List.pmap for1 upd in
mk_sp e.A.type_ (A.Precupdate (e, upd))
end
| Etuple es -> begin
let etys =
match Option.bind Type.as_tuple ety with
| Some etys when List.length etys = List.length es ->
List.map Option.some etys
| _ ->
List.make (fun _ -> None) (List.length es) in
let es = List.map2 (fun ety e -> for_xexpr env ?ety e) etys es in
let ty = Option.get_all (List.map (fun x -> x.A.type_) es) in
let ty = Option.map (fun x -> A.Ttuple x) ty in
mk_sp ty (A.Ptuple es)
end
| Esqapp (e, pk) -> begin
let ee = for_xexpr env e in
match ee.type_ with
| Some (A.Ttuple lt) -> begin
let pk = for_xexpr ?ety:(Some A.vtnat) env pk in
let idx : Core.big_int =
match pk.node with
| A.Plit ({node = A.BVnat idx}) -> idx
| _ -> Env.emit_error env (pk.loc, InvalidExprressionForTupleAccess); Big_int.zero_big_int
in
let i =
if Big_int.lt_big_int idx Big_int.zero_big_int
|| Big_int.ge_big_int idx (Big_int.big_int_of_int (List.length lt))
then (Env.emit_error env (pk.loc, IndexOutOfBoundForTuple); 0)
else (Big_int.int_of_big_int idx)
in
mk_sp (Some (List.nth lt i)) (A.Ptupleaccess (ee, idx))
end
| Some (A.Tmap (kt, vt)) -> begin
let pk = for_xexpr ?ety:(Some kt) env pk in
mk_sp
(Some vt)
(A.Pcall (None, A.Cconst A.Cmget, [A.AExpr ee; A.AExpr pk]))
end
| _ -> begin
let e, asset = for_asset_collection_expr mode env (`Parsed e) in
let pkty = asset |> Option.map (fun (asset, _) -> asset.as_pkty) in
let pk = for_xexpr ?ety:pkty env pk in
let aoutty = Option.map (fun (asset, _) -> A.Tasset asset.as_name) asset in
let aoutty = aoutty |> Option.map (fun aoutty ->
match mode.em_kind with
| `Expr _ -> aoutty
| `Formula _ -> A.Toption aoutty)in
mk_sp
aoutty
(A.Pcall (Some e, A.Cconst A.Cget, [A.AExpr pk]))
end
end
| Edot (pe, x) -> begin
let e = for_xexpr env pe in
match e.A.type_ with
| None ->
bailout ()
| Some (A.Tasset asset) -> begin
let asset = Env.Asset.get env (unloc asset) in
match get_field (unloc x) asset with
| None ->
let err = UnknownField (unloc asset.as_name, unloc x) in
Env.emit_error env (loc x, err); bailout ()
| Some { fd_type = fty; fd_ghost = ghost } ->
if ghost && not (is_form_kind mode.em_kind) then
Env.emit_error env (loc x, InvalidShadowFieldAccess);
mk_sp (Some fty) (A.Pdot (e, x))
end
| Some (A.Trecord record) -> begin
let record = Env.Record.get env (unloc record) in
match get_rfield (unloc x) record with
| None ->
let err = UnknownField (unloc record.rd_name, unloc x) in
Env.emit_error env (loc x, err); bailout ()
| Some { rfd_type = fty } ->
mk_sp (Some fty) (A.Pdot (e, x))
end
| Some ty ->
Env.emit_error env (loc pe, AssetOrRecordExpected ty);
bailout ()
end
| Emulticomp (e, l) ->
let e = for_xexpr env e in
let l = List.map (snd_map (for_xexpr env)) l in
let _, aout =
List.fold_left_map (fun e ({ pldesc = op }, e') ->
match e.A.type_, e'.A.type_ with
| Some ty, Some ty' -> begin
let aout =
Option.map (fun sig_ ->
let e, e' =
Option.get
(List.as_seq2
(List.map2
(fun ty e -> cast_expr env (Some ty) e)
sig_.osl_sig [e; e'])) in
let term = A.Pcomp (tt_cmp_operator op, e, e') in
mk_sp (Some sig_.osl_ret) term
) (select_operator env (loc tope) (PT.Cmp op, [ty; ty']) ~formula:(is_form_kind mode.em_kind))
in (e', aout)
end
| _, _ ->
e', None)
e l in
begin match List.pmap (fun x -> x) aout with
| [] ->
let lit = A.mk_sp ~type_:A.vtbool ~loc:(loc tope) (A.BVbool true) in
mk_sp (Some A.vtbool) (A.Plit lit)
| e :: es ->
List.fold_left (fun e e' ->
(mk_sp (Some A.vtbool) (A.Plogical (tt_logical_operator And, e, e'))))
e es
end
| Eapp (Foperator { pldesc = op }, args) -> begin
let args = List.map (for_xexpr env) args in
if List.exists (fun arg -> Option.is_none arg.A.type_) args then
bailout ();
let aty = List.map (fun a -> Option.get a.A.type_) args in
let sig_ =
Option.get_fdfl
(fun () -> bailout ())
(select_operator env (loc tope) (op, aty) ~formula:(is_form_kind mode.em_kind)) in
let args =
List.map2
(fun ty e -> cast_expr ~autoview:false env (Some ty) e)
sig_.osl_sig args in
let aout =
match op with
| Logical op ->
let a1, a2 = Option.get (List.as_seq2 args) in
A.Plogical (tt_logical_operator op, a1, a2)
| Unary op -> begin
let a1 = Option.get (List.as_seq1 args) in
match
match op with
| PT.Not -> `Not
| PT.Uminus -> `UArith (A.Uminus)
with
| `Not ->
A.Pnot a1
| `UArith op ->
A.Puarith (op, a1)
end
| Arith op ->
let a1, a2 = Option.get (List.as_seq2 args) in
A.Parith (tt_arith_operator op, a1, a2)
| Cmp op ->
let a1, a2 = Option.get (List.as_seq2 args) in
A.Pcomp (tt_cmp_operator op, a1, a2)
in mk_sp (Some (sig_.osl_ret)) aout
end
| Eapp (Fident f, args) when Env.Predicate.exists env (unloc f) ->
if not (is_form_kind mode.em_kind) then begin
Env.emit_error env (loc tope, PredicateCallInExpr);
bailout ()
end;
let pred = Env.Predicate.get env (unloc f) in
let args = match args with [{ pldesc = Etuple args }] -> args | _ -> args in
let tyargs =
if List.length args <> List.length pred.pr_args then begin
let na = List.length args and ne = List.length pred.pr_args in
Env.emit_error env (loc tope, InvalidNumberOfArguments (na, ne));
List.make (fun _ -> None) ne
end else List.map (fun (_, ty) -> Some ty) pred.pr_args in
let args = List.map2 (fun ety e -> for_xexpr env ?ety e) tyargs args in
let args = List.map (fun x -> A.AExpr x) args in
mk_sp (Some A.vtbool) (A.Pcall (None, A.Cid f, args))
| Eapp (Fident f, args) when Env.Function.exists env (unloc f) ->
let fun_ = Env.Function.get env (unloc f) in
let args = match args with [{ pldesc = Etuple args }] -> args | _ -> args in
let tyargs =
if List.length args <> List.length fun_.fs_args then begin
let na = List.length args and ne = List.length fun_.fs_args in
Env.emit_error env (loc tope, InvalidNumberOfArguments (na, ne));
List.make (fun _ -> None) ne
end else List.map (fun (_, ty) -> Some ty) fun_.fs_args in
let args = List.map2 (fun ety e -> for_xexpr env ?ety e) tyargs args in
let args = List.map (fun x -> A.AExpr x) args in
mk_sp (Some fun_.fs_retty) (A.Pcall (None, A.Cid f, args))
| Eapp (Fident f, args) -> begin
let args = List.map (for_xexpr env) args in
if List.exists (fun arg -> Option.is_none arg.A.type_) args then
bailout ();
let aty = List.map (fun a -> Option.get a.A.type_) args in
let select (name, cname, totality, thety, ety, rty, restr) =
let module E = struct exception Reject end in
try
if unloc f <> name then
raise E.Reject;
let ety = Option.get_as_list thety @ ety in
if List.length aty <> List.length ety then
raise E.Reject;
let map = ref Mint.empty in
List.iter2
(fun ety aty -> Type.unify ~restr ~ptn:ety ~tg:aty map)
ety aty;
let ety = List.map (Type.subst !map) ety in
let rty = Type.subst !map rty in
let rty =
match totality, mode.em_kind with
| `Partial, `Formula _ -> A.Toption rty
| _, _ -> rty in
let d = Type.sig_distance ~from_:aty ~to_:ety in
Some (Option.get_exn E.Reject d, (cname, (ety, rty)))
with E.Reject | Type.UnificationFailure -> None in
let cd = List.pmap select allops in
let cd = List.sort (fun (i, _) (j, _) -> compare i j) cd in
let cd =
let i0 = Option.get_dfl (-1) (Option.map fst (List.ohead cd)) in
List.map snd (List.filter (fun (i, _) -> i = i0) cd) in
match cd with
| [] ->
Env.emit_error env (loc tope, NoMatchingFunction (unloc f, aty));
bailout ()
| _::_::_ ->
Env.emit_error env
(loc tope, MultipleMatchingFunction (unloc f, aty, List.map snd cd));
bailout ()
| [cname, (_, rty)] ->
let args = List.map (fun x -> A.AExpr x) args in
mk_sp (Some rty) (A.Pcall (None, A.Cconst cname, args))
end
| Emethod (the, m, args) -> begin
let type_of_mthtype asset amap = function
| `T typ -> Some typ
| `The -> Some (A.Tasset asset.as_name)
| `Asset -> Some (A.Tasset asset.as_name)
| `Coll -> Some (A.Tcontainer (A.Tasset asset.as_name, A.Collection))
| `SubColl -> Some (A.Tcontainer (A.Tasset asset.as_name, A.View))
| `Ref i -> Mint.find_opt i amap
| `Pk -> Some (asset.as_pkty)
| `PkOrAsset -> (match mode.em_kind with | `Formula _ -> Some ((A.Tasset asset.as_name)) | _ -> Some (asset.as_pkty))
| _ -> assert false in
let the = for_xexpr env the in
let the, asset, mname, (place, map_type, purity, totality), args, rty =
match the.A.type_ with
| None ->
bailout ()
| Some ty -> begin
match Type.as_asset_collection ty with
| Some _ ->
let infos = for_gen_method_call mode env (loc tope) (`Typed the, m, args) in
let the, (asset, c), method_, args, amap = Option.get_fdfl bailout infos in
let rty = Option.bind (type_of_mthtype asset amap) (snd method_.mth_sig) in
(the, Some (asset, c), method_.mth_name,
(method_.mth_place, method_.mth_map_type, method_.mth_purity, method_.mth_totality), args, rty)
| None ->
let infos = for_api_call mode env (loc tope) (`Typed the, m, args) in
let the, method_, args = Option.get_fdfl bailout infos in
let rty =
Option.map (fun ty -> let `T ty = ty in ty) (snd (method_.mth_sig)) in
(the, None, method_.mth_name,
(method_.mth_place, method_.mth_map_type, method_.mth_purity, method_.mth_totality), args, rty)
end
in
if Option.is_none rty then begin
Env.emit_error env (loc tope, VoidMethodInExpr)
end;
begin match place, mode.em_kind with
| `OnlyExec, `Formula _ ->
Env.emit_error env (loc tope, InvalidMethodInFormula)
| `OnlyFormula, (`Expr _) ->
Env.emit_error env (loc tope, InvalidMethodInExec)
| _, _ ->
()
end;
begin match asset, purity, mode.em_kind with
| _, `Effect _, `Formula _ ->
Env.emit_error env (loc tope, UnpureInFormula)
| Some (_, ctn), `Effect allowed, _ when not (List.mem ctn allowed) ->
Env.emit_error env (loc tope, InvalidEffectForCtn (ctn, allowed))
| _, _, _ ->
()
end;
begin match asset, map_type with
| Some (asset, _), `Standard when asset.as_bm && not (is_form_kind mode.em_kind) ->
Env.emit_error env (loc tope, InvalidMethodWithBigMap (unloc m))
| _ -> ()
end;
let rty =
match totality, mode.em_kind with
| `Partial, `Formula _ ->
Option.map (fun x -> A.Toption x) rty
| _, _ ->
rty in
mk_sp rty (A.Pcall (Some the, A.Cconst mname, args))
end
| Eif (c, et, Some ef) ->
let c = for_xexpr env ~ety:A.vtbool c in
let et = for_xexpr env et in
let ef = for_xexpr env ef in
let ty, es = join_expr ?autoview env ety [et; ef] in
let et, ef = Option.get (List.as_seq2 es) in
mk_sp ty (A.Pif (c, et, ef))
| Eletin (x, ty, e1, e2, oe) ->
let ty = Option.bind (for_type env) ty in
let e = for_xexpr env ?ety:ty e1 in
let bty =
if Option.is_some oe then
Option.bind (fun bty ->
match bty with
| A.Toption bty -> Some bty
| _ -> Env.emit_error env (loc tope, LetInElseOnNonOption); None
) e.A.type_
else e.A.type_ in
let env, body =
let _ : bool = check_and_emit_name_free env x in
Env.inscope env (fun env ->
let env =
Option.fold (fun env bty ->
Env.Local.push env (x, bty)) env bty
in env, for_xexpr env e2) in
let oe = Option.map (fun oe -> for_xexpr env ?ety:body.A.type_ oe) oe in
mk_sp body.A.type_ (A.Pletin (x, e, ty, body, oe))
| Eoption oe -> begin
match oe with
| ONone ->
let ty = Option.bind Type.as_option ety in
if Option.is_none ty then
Env.emit_error env (loc tope, CannotInfer);
mk_sp (Option.map (fun ty -> A.Toption ty) ty) A.Pnone
| OSome oe ->
let oe = for_xexpr env oe in
mk_sp
(Option.map (fun ty -> A.Toption ty) oe.A.type_)
(A.Psome oe)
end
| Ematchwith (e, bs) -> begin
match for_gen_matchwith mode env (loc tope) e bs with
| None -> bailout () | Some (decl, me, (wd, bsm), es) ->
let es = List.map (for_xexpr env) es in
let bty, es = join_expr env ety es in
let aout = List.pmap (fun (cname, _) ->
let ctor = A.mk_sp (A.Mconst cname) in
let bse =
match Mstr.find (unloc cname) bsm, wd with
| Some i, _ ->
Some (List.nth es i)
| None, Some _ ->
None
| None, None ->
Some (dummy bty)
in Option.map (fun bse -> (ctor, bse)) bse) decl.sd_ctors in
let aout =
Option.fold
(fun aout -> aout @ [A.mk_sp A.Mwild, extra])
aout (Option.map (List.nth es) wd) in
mk_sp bty (A.Pmatchwith (me, aout))
end
| Equantifier (qt, x, xty, body) -> begin
if not (is_form_kind mode.em_kind) then begin
Env.emit_error env (loc tope, BindingInExpr);
bailout ()
end else
match
match xty with
| PT.Qcollection xe ->
let ast, xe = for_asset_collection_expr mode env (`Parsed xe) in
Option.map (fun (ad, _) -> (Some ast, A.Tasset ad.as_name)) xe
| PT.Qtype ty ->
let ty = for_type env ty in
Option.map (fun ty -> (None, ty)) ty
with
| None -> bailout () | Some (ast, xty) ->
let _, body =
Env.inscope env (fun env ->
let _ : bool = check_and_emit_name_free env x in
let env = Env.Local.push env (x, xty) in
env, for_formula env body) in
let qt =
match qt with
| PT.Forall -> A.Forall
| PT.Exists -> A.Exists in
mk_sp (Some A.vtbool) (A.Pquantifer (qt, x, (ast, xty), body))
end
| Eunpack (ty, e) ->
let ty = for_type env ty in
let e = for_xexpr env ~ety:A.vtbytes e in
Option.iter (fun ty ->
if not (Type.Michelson.is_type ty) then
Env.emit_error env (loc tope, PackUnpackOnNonPrimitive)) ty;
mk_sp
(Option.map (fun ty -> A.Toption ty) ty)
(A.Pcall (None, A.Cconst A.Cunpack, [AExpr e]))
| Enothing ->
let lit = A.mk_sp ~type_:A.vtunit ~loc:(loc tope) (A.BVunit) in
mk_sp (Some A.vtunit) (A.Plit lit)
| Eself name when is_expr_kind mode.em_kind -> begin
let decl =
match Env.Tentry.lookup env (unloc name) with
| None ->
Env.emit_error env (loc name, UnknownEntry (unloc name));
bailout ()
| Some decl -> decl in
let rty = Type.create_tuple (List.map snd decl.ad_args) in
mk_sp (Some (A.Tcontract rty)) (A.Pself name)
end
| Eentrypoint (ty, a, b) -> begin
let ty = for_type_exn env ty in
let a = for_xexpr env ~ety:A.vtstring a in
let b = for_xexpr env ~ety:A.vtaddress b in
if not (Type.Michelson.is_type ty) then
Env.emit_error env (loc tope, InvalidTypeForEntrypoint);
let id =
match a.node with
| A.Plit { node = (BVstring str); _ } -> mkloc a.loc str
| _ -> (Env.emit_error env (a.loc, StringLiteralExpected); bailout ())
in
mk_sp
(Some (A.Toption (A.Tcontract ty)))
(A.Pentrypoint (ty, id, b))
end
| Eself _
| Evar _
| Efail _
| Eassert _
| Elabel _
| Eassign _
| Edofailif _
| Efor _
| Eiter _
| Ewhile _
| Eif _
| Edorequire _
| Ereturn _
| Eseq _
| Etransfer _
| Eany
| Einvalid ->
Env.emit_error env (loc tope, InvalidExpression);
bailout ()
in
try
cast_expr ?autoview env ety (doit ())
with E.Bailout -> dummy ety
and cast_expr ?(autoview = false) (env : env) (to_ : A.ptyp option) (e : A.pterm) =
let to_ =
if not autoview then to_ else begin
match e.A.type_, to_ with
| Some (A.Tcontainer (asset, ctn)), None when ctn <> A.View ->
Some (A.Tcontainer (asset, A.View))
| _, _ -> to_
end
in
match to_, e with
| Some (A.Tlist xty as to_),
{ type_ = Some (A.Tcontainer (A.Tasset asset, A.View) as from_) } ->
let decl = Env.Asset.get env (unloc asset) in
if not (Type.equal xty decl.as_pkty) then
Env.emit_error env (e.loc, IncompatibleTypes (from_, to_));
A.mk_sp ~loc:e.loc ~type_:to_ (A.Pcast (from_, to_, e))
| Some to_, { type_ = Some from_ } ->
if not (Type.compatible ~autoview ~from_ ~to_) then
Env.emit_error env (e.loc, IncompatibleTypes (from_, to_));
if not (Type.equal from_ to_) then
A.mk_sp ~loc:e.loc ~type_:to_ (A.Pcast (from_, to_, e))
else e
| _, _ ->
e
and join_expr ?autoview (env : env) (ety : A.ptyp option) (es : A.pterm list) =
match ety with
| Some _ ->
(ety, List.map (cast_expr ?autoview env ety) es)
| _ -> begin
match Type.join (List.pmap (fun e -> e.A.type_) es) with
| None ->
(None, es)
| Some _ as ty ->
(ty, List.map (cast_expr ?autoview env ty) es)
end
and for_gen_matchwith (mode : emode_t) (env : env) theloc pe bs =
let me = for_xexpr mode env pe in
match me.A.type_ with
| None ->
None
| Some (A.Tenum x) ->
let decl = Env.State.get env (unloc x) in
let bsm = List.map (fun (ct, _) -> (unloc ct, None)) decl.sd_ctors in
let bsm = Mstr.of_list bsm in
let wd, bsm = List.fold_lefti (fun bse bsm (pts, _) ->
List.fold_left (fun (wd, bsm) pt ->
let module E = struct exception Bailout end in
try
begin match unloc pt with
| PT.Pref pid ->
if not (Mstr.mem (unloc pid) bsm) then begin
end;
| PT.Pwild -> () end;
match unloc pt with
| PT.Pref pid ->
let bsm =
Mstr.change (unloc pid) (function
| None ->
Env.emit_error env (loc pt, AlienPattern);
raise E.Bailout
| Some None when Option.is_none wd ->
Some (bse)
| Some _ ->
Env.emit_error env (loc pt, UselessPattern);
raise E.Bailout
) bsm
in (wd, bsm)
| PT.Pwild -> begin
match wd with
| None when Mstr.exists (fun _ v -> Option.is_none v) bsm ->
(Some bse, bsm)
| _ ->
Env.emit_error env (loc pt, UselessPattern);
raise E.Bailout
end
with E.Bailout -> (wd, bsm)) bsm pts
) (None, bsm) bs in
if Option.is_none wd then begin
let missing = Mstr.bindings bsm in
let missing = List.filter (fun (_, v) -> Option.is_none v) missing in
let missing = List.sort String.compare (List.map fst missing) in
if not (List.is_empty missing) then
Env.emit_error env (theloc, PartialMatch missing)
end;
Some (decl, me, (wd, bsm), (List.map snd bs))
| Some _ ->
Env.emit_error env (loc pe, NotAnEnumType);
None
and for_asset_expr mode (env : env) (tope : PT.expr) =
let ast = for_xexpr mode env tope in
let typ =
match Option.map Type.as_asset ast.A.type_ with
| None ->
None
| Some None ->
Env.emit_error env (loc tope, InvalidAssetExpression);
None
| Some (Some asset) ->
Some (Env.Asset.get env (unloc asset))
in (ast, typ)
and for_asset_collection_expr mode (env : env) tope =
let ast =
match tope with
| `Typed ast -> ast
| `Parsed tope -> for_xexpr mode env tope
in
let typ =
match Option.map Type.as_asset_collection ast.A.type_ with
| None ->
None
| Some None ->
Env.emit_error env
(ast.A.loc, InvalidAssetCollectionExpr (Option.get ast.A.type_));
None
| Some (Some (asset, c)) ->
Some (Env.Asset.get env (unloc asset), c)
in (ast, typ)
and for_api_call mode env theloc (the, m, args)
: (A.pterm * smethod_ * A.pterm_arg list) option
=
let module E = struct exception Bailout end in
try
let the =
match the with
| `Typed ast -> ast
| `Parsed the -> for_xexpr mode env the in
let methods =
match the.A.type_ with
| None ->
raise E.Bailout
| Some _ ->
Env.emit_error env (theloc, DoesNotSupportMethodCall);
raise E.Bailout in
let method_ =
match Mid.find_opt (unloc m) methods with
| None ->
Env.emit_error env (loc m, NoSuchMethod (unloc m));
raise E.Bailout
| Some method_ -> method_
in
let args =
match args with
| [ { pldesc = PT.Etuple l; _ } ] -> l
| _ -> args
in
let ne = List.length (fst method_.mth_sig) in
let ng = List.length args in
if ne <> ng then begin
Env.emit_error env (theloc, InvalidNumberOfArguments (ne, ng));
raise E.Bailout
end;
let doarg arg (aty : mthstyp) =
match aty with
| `T ty ->
A.AExpr (for_xexpr mode env ~ety:ty arg)
in
let args = List.map2 doarg args (fst method_.mth_sig) in
Some (the, method_, args)
with E.Bailout -> None
and for_gen_method_call mode env theloc (the, m, args)
: (A.pterm * (assetdecl * A.container) * method_ * A.pterm_arg list * A.type_ Mint.t) option
=
let module E = struct exception Bailout end in
if mode.em_pred then
Env.emit_error env (theloc, MethodCallInPredicate);
try
let the, asset = for_asset_collection_expr mode env the in
let asset, c = Option.get_fdfl (fun () -> raise E.Bailout) asset in
let method_ =
match Mid.find_opt (unloc m) methods with
| None ->
Env.emit_error env (loc m, NoSuchMethod (unloc m));
raise E.Bailout
| Some method_ -> method_
in
let ne =
match fst method_.mth_sig with
| `Fixed sig_ -> List.length sig_
| `Multi _ -> List.length args in
let ng = List.length args in
if ne <> ng then begin
Env.emit_error env (theloc, InvalidNumberOfArguments (ne, ng));
raise E.Bailout
end;
let rec doarg arg (aty : mthtyp) =
match aty with
| `Pk ->
A.AExpr (for_xexpr mode env ~ety:asset.as_pkty arg)
| `The ->
A.AExpr (for_xexpr mode env ~ety:(Tasset asset.as_name) arg)
| `ThePkForAggregate -> begin
match the.type_ with
| Some (A.Tcontainer(_, Aggregate)) -> doarg arg `Pk
| _ -> doarg arg `The
end
| (`Pred capture | `RExpr capture) as sub -> begin
let env = Env.Context.push env (unloc asset.as_name) in
let theid = mkloc (loc arg) Env.Context.the in
let thety = A.Tasset asset.as_name in
let mode = match sub with `Pred _ -> { mode with em_pred = true; } | _ -> mode in
let ety = match sub with `Pred _ -> Some A.vtbool | _ -> None in
let map = ref Mid.empty in
let lmap = if capture then `Yes (Some map) else `No in
let body = for_xexpr ~capture:lmap mode env ?ety arg in
let closure =
List.map
(fun (x, (loc, xty)) ->
let xterm = A.mk_sp ~loc ~type_:xty (A.Pvar (VTnone, Vnone, mkloc loc x)) in
(mkloc loc x, xty, xterm))
(Mid.bindings !map) in
begin match sub with
| `Pred _ -> ()
| `RExpr _ ->
body.A.type_ |> Option.iter (fun ty ->
if not (Type.is_numeric ty || Type.is_currency ty) then
Env.emit_error env (loc arg, NumericExpressionExpected))
end;
A.AFun (theid, thety, closure, body)
end
| `Ef update ->
A.AEffect (Option.get_dfl [] (for_arg_effect mode env ~update asset arg))
| `Coll ->
let ty = A.Tcontainer (Tasset asset.as_name, A.Collection) in
A.AExpr (for_xexpr ~autoview:true mode env ~ety:ty arg)
| `SubColl ->
let ty = A.Tcontainer (Tasset asset.as_name, A.View) in
A.AExpr (for_xexpr ~autoview:true mode env ~ety:ty arg)
| `T ty ->
A.AExpr (for_xexpr mode env ~ety:ty arg)
| `Cmp -> begin
let asc, field =
match unloc arg with
| Eterm ((None, None), f) ->
(true, Some f)
| Eapp (Fident { pldesc = ("asc" | "desc") as order },
[{pldesc = Eterm ((None, None), f) }]) ->
(order = "asc", Some f)
| _ ->
Env.emit_error env (loc arg, InvalidSortingExpression);
(true, None) in
let field = Option.bind (fun f ->
match get_field (unloc f) asset with
| None ->
Env.emit_error env (loc f, UnknownFieldName (unloc f));
None
| Some _ -> Some f) field in
let field = Option.get_fdfl (fun () -> mkloc (loc arg) "<error>") field in
A.ASorting (asc, field)
end
| _ ->
assert false
in
let atyps =
match fst method_.mth_sig with
| `Fixed x -> x | `Multi x -> List.make (fun _ -> x) ne in
let args = List.map2 doarg args atyps in
let amap =
let aout = ref Mint.empty in
List.iteri (fun i arg ->
match arg with
| A.AExpr { A.type_ = Some ty } ->
aout := Mint.add i ty !aout
| A.AFun (_, _, _, { A.type_ = Some ty }) ->
aout := Mint.add i ty !aout
| _ -> ()) args; !aout in
Some (the, (asset, c), method_, args, amap)
with E.Bailout -> None
and for_arg_effect
mode (env : env) ~(update : bool) (asset : assetdecl) (tope : PT.expr)
=
match unloc tope with
| Erecord fields ->
let do1 map ((x, e) : PT.record_item) =
match x with
| None ->
Env.emit_error env (loc tope, AnonymousFieldInEffect);
map
| Some (op, x) -> begin
match get_field (unloc x) asset with
| Some { fd_type = fty; fd_ghost = fghost } ->
let rfty =
match fty with
| A.Tcontainer (A.Tasset subasset, A.Aggregate) -> begin
let subasset = Env.Asset.get env (unloc subasset) in
A.Tlist subasset.as_pkty
end
| _ -> fty
in
let op = for_assignment_operator op in
let e = for_assign_expr
~autoview:false ~asset:true mode env
(loc x) (op, fty, rfty) e in
if Mid.mem (unloc x) map then begin
Env.emit_error env (loc x, DuplicatedFieldInAssetOrRecordLiteral (unloc x));
map
end else if List.exists (fun f -> unloc x = unloc f) asset.as_pk then begin
Env.emit_error env (loc x, UpdateEffectOnPkey);
map
end else if mode.em_kind = `Expr `Concrete && fghost then begin
Env.emit_error env (loc x, InvalidShadowFieldAccess);
map
end else
Mid.add (unloc x) (x, `Assign op, e) map
| None ->
Env.emit_error env (loc x, UnknownField (unloc asset.as_name, unloc x));
map
end
in
let effects = List.fold_left do1 Mid.empty fields in
if not update then begin
List.iter (fun field ->
if List.for_all (fun f -> unloc f <> unloc field.fd_name) asset.as_pk then begin
match Mid.find_opt (unloc field.fd_name) effects with
| None ->
if Option.is_none field.fd_dfl then
Env.emit_error env
(loc tope, MissingFieldInAssetOrRecordLiteral (unloc field.fd_name))
| Some (x, `Assign op, _) ->
if op <> A.ValueAssign && Option.is_none field.fd_dfl then
Env.emit_error env (loc x, UpdateEffectWithoutDefault)
end
) asset.as_fields
end;
Some (List.map snd (Mid.bindings effects))
| _ ->
Env.emit_error env (loc tope, InvalidExpressionForEffect);
None
and for_assign_expr ?autoview ?(asset = false) mode env orloc (op, lfty, rfty) e =
let op =
match op with
| ValueAssign -> None
| PlusAssign -> Some (PT.Arith PT.Plus )
| MinusAssign -> Some (PT.Arith PT.Minus )
| MultAssign -> Some (PT.Arith PT.Mult )
| DivAssign -> Some (PT.Arith PT.DivRat )
| AndAssign -> Some (PT.Logical PT.And )
| OrAssign -> Some (PT.Logical PT.Or )
in
let ety = if Option.is_none op then Some rfty else None in
let e = for_xexpr ?autoview mode env ?ety e in
Option.get_dfl e (
op |> Option.bind (fun op ->
e.type_ |> Option.bind (fun ety ->
select_operator env ~asset orloc (op, [lfty; ety]) ~formula:(is_form_kind mode.em_kind)
|> Option.map (fun sig_ ->
cast_expr ?autoview env (Some (List.last sig_.osl_sig)) e))))
and for_formula ?(invariant = false) (env : env) (topf : PT.expr) : A.pterm =
let e = for_xexpr (form_mode invariant) ~ety:(A.Tbuiltin A.VTbool) env topf in
Option.iter (fun ety ->
if ety <> A.vtbool then
Env.emit_error env (loc topf, FormulaExpected))
e.type_; e
and for_entry_description (env : env) (sa : PT.security_arg) : A.entry_description =
match unloc sa with
| Sident { pldesc = "anyentry" } ->
A.ADAny
| Sapp (act, [{ pldesc = PT.Sident asset }]) -> begin
let mode = { em_kind = `Formula false; em_pred = false; } in
let asset = mkloc (loc asset) (PT.Eterm ((None, None), asset)) in
let asset = for_asset_collection_expr mode env (`Parsed asset) in
match snd asset with
| None ->
A.ADAny
| Some (decl, _) ->
A.ADOp (unloc act, decl.as_name)
end
| _ ->
Env.emit_error env (loc sa, InvalidEntryDescription);
A.ADAny
and for_security_entry (env : env) (sa : PT.security_arg) : A.security_entry =
match unloc sa with
| Sident id ->
begin
match unloc id with
| "anyentry" -> Sany
| _ ->
let ad = Env.Tentry.lookup env (unloc id) in
if Option.is_none ad then
Env.emit_error env (loc id, UnknownEntry (unloc id));
Sentry [id]
end
| Slist sas ->
A.Sentry (List.flatten (List.map (
fun x ->
let a = for_security_entry env x in
match a with
| Sentry ids -> ids
| _ -> assert false) sas))
| _ ->
Env.emit_error env (loc sa, InvalidSecurityEntry);
Sentry []
and for_security_role (env : env) (sa : PT.security_arg) : A.security_role list =
match unloc sa with
| Sident id ->
Option.get_as_list (for_role env id)
| _ ->
Env.emit_error env (loc sa, InvalidSecurityRole);
[]
and for_role (env : env) (name : PT.lident) =
match Env.Var.lookup env (unloc name) with
| None ->
Env.emit_error env (loc name, UnknownLocalOrVariable (unloc name));
None
| Some nty ->
if not (Type.compatible ~autoview:false ~from_:nty.vr_type ~to_:A.vtrole) then
(Env.emit_error env (loc name, NotARole (unloc name)); None)
else Some name
let for_expr
(kind : imode_t) ?autoview (env : env) ?(ety : A.type_ option)
(tope : PT.expr) : A.pterm
=
for_xexpr (expr_mode kind) ?autoview env ?ety tope
let for_lbl_expr
?ety (kind : imode_t) (env : env) (topf : PT.label_expr) : env * (A.lident option * A.pterm)
=
if check_and_emit_name_free env (fst (unloc topf)) then
let env = Env.Label.push env (fst (unloc topf), `Plain) in
env, (Some (fst (unloc topf)), for_expr kind env ?ety (snd (unloc topf)))
else
env, (None, for_expr kind env ?ety (snd (unloc topf)))
let for_lbls_expr
kind ?ety (env : env) (topf : PT.label_exprs) : env * (A.lident option * A.pterm) list
=
List.fold_left_map (for_lbl_expr ?ety kind) env topf
let for_lbl_bexpr = for_lbl_expr ~ety:(A.Tbuiltin A.VTbool)
let for_rf
kind ?ety (env : env) (topf : (PT.lident * PT.expr * PT.expr option) list) : env * (A.lident option * A.pterm * A.pterm option) list
=
let aux
?ety (kind : imode_t) (env : env) (id, e, err : PT.lident * PT.expr * PT.expr option) : env * (A.lident option * A.pterm * A.pterm option)
=
let error = Option.map (for_expr kind env) err in
error
|> Option.iter (fun (x : A.pterm) ->
x.type_ |> Option.iter (fun ty ->
if (not (Type.Michelson.is_type ty))
then (Env.emit_error env (x.loc, InvalidTypeForFail))));
if check_and_emit_name_free env id then
let env = Env.Label.push env (id, `Plain) in
env, (Some id, for_expr kind env ?ety e, error)
else
env, (None, for_expr kind env ?ety e, error)
in
List.fold_left_map (aux ?ety kind) env topf
let for_rfs = for_rf ~ety:(A.Tbuiltin A.VTbool)
let for_lbl_formula (env : env) (topf : PT.label_expr) : env * (A.lident option * A.pterm) =
if check_and_emit_name_free env (fst (unloc topf)) then
let env = Env.Label.push env (fst (unloc topf), `Plain) in
env, (Some (fst (unloc topf)), for_formula env (snd (unloc topf)))
else
env, (None, for_formula env (snd (unloc topf)))
let for_xlbls_formula (env : env) (topf : PT.label_exprs) : env * (A.lident option * A.pterm) list =
List.fold_left_map for_lbl_formula env topf
let for_lbls_formula (env : env) (topf : PT.label_exprs) : env * (A.lident option * A.pterm) list =
List.fold_left_map for_lbl_formula env topf
let for_arg_decl ?(can_asset = false) (env : env) ((x, ty, _) : PT.lident_typ) =
let ty = for_type env ty in
let b = check_and_emit_name_free env x in
if not can_asset then begin
ty |> Option.iter (fun ty ->
if not (valid_var_or_arg_type ty) then
Env.emit_error env (loc x, InvalidVarOrArgType))
end;
match b, ty with
| true, Some ty ->
(Env.Local.push ~kind:`Argument env (x, ty), Some (x, ty))
| _, _ ->
(env, None)
let for_args_decl ?can_asset (env : env) (xs : PT.args) =
List.fold_left_map (for_arg_decl ?can_asset) env xs
let for_lvalue kind (env : env) (e : PT.expr) : (A.lvalue * A.ptyp) option =
match unloc e with
| Eterm ((None, None), x) -> begin
match Env.lookup_entry env (unloc x) with
| Some (`Local (xty, kind)) -> begin
match kind with
| `LoopIndex ->
Env.emit_error env (loc e, CannotAssignLoopIndex (unloc x));
None
| `Argument ->
Env.emit_error env (loc e, CannotAssignArgument (unloc x));
None
| `Standard ->
Some (`Var x, xty)
end
| Some (`Global vd) ->
begin match vd.vr_kind, kind, vd.vr_core with
| `Variable, `Concrete, _
| `Ghost, `Ghost, _
| _, _, Some (A.Coperations | A.Cmetadata) -> ()
| _, _, _ ->
Env.emit_error env (loc e, ReadOnlyGlobal (unloc x));
end;
Some (`Var x, vd.vr_type)
| _ ->
Env.emit_error env (loc e, UnknownLocalOrVariable (unloc x));
None
end
| Edot ({pldesc = Esqapp ({pldesc = Eterm ((None, None), asset)}, key)}, x) -> begin
let asset = Env.Asset.get env (unloc asset) in
if List.exists (fun f -> unloc f = unloc x) asset.as_pk then begin
Env.emit_error env (loc x, CannotUpdatePKey);
None
end else begin
match get_field (unloc x) asset with
| None ->
let err = UnknownField (unloc asset.as_name, unloc x) in
Env.emit_error env (loc x, err); None
| Some { fd_type = fty } ->
let ktype = asset.as_pkty in
let key = for_expr ~ety:ktype kind env key in
Some (`Field (asset.as_name, key, x), fty)
end
end
| Edot (ptg, x) -> begin
let tg = for_expr kind env ptg in
match tg.A.type_ with
| Some (Trecord record) -> begin
let record = Env.Record.get env (unloc record) in
let field = get_rfield (unloc x) record in
match field with
| None ->
Env.emit_error env (loc x, UnknownFieldName (unloc x)); None
| Some field ->
Some (`Field (record.rd_name, tg, x), field.rfd_type)
end
| Some _ ->
Env.emit_error env (loc ptg, RecordExpected); None
| None ->
None
end
| _ ->
Env.emit_error env (loc e, InvalidLValue); None
let rec for_instruction_r
~(ret : A.type_ option) (kind : imode_t) (env : env) (i : PT.expr) : env * A.instruction
=
let module E = struct exception Failure end in
let bailout () = raise E.Failure in
let mki ?label node : A.instruction =
A.{ node; label; loc = loc i; } in
let mkseq i1 i2 =
let asblock = function A.{ node = Iseq is } -> is | _ as i -> [i] in
match asblock i1 @ asblock i2 with
| [i] -> i
| is -> mki (Iseq is) in
try
match unloc i with
| Emethod (pthe, m, args) -> begin
let the = for_expr kind env pthe in
match the.A.type_ with
| Some ty -> begin
match Type.as_asset_collection ty with
| Some _ ->
let infos = for_gen_method_call (expr_mode kind) env (loc i) (`Typed the, m, args) in
let the, (assetdecl , c), method_, args, _ = Option.get_fdfl bailout infos in
begin match c, method_.mth_purity with
| ctn, `Effect allowed when not (List.mem ctn allowed) ->
Env.emit_error env (loc i, InvalidEffectForCtn (ctn, allowed))
| _, _ ->
() end;
begin match assetdecl.as_bm, method_.mth_map_type with
| true, `Standard -> Env.emit_error env (loc i, InvalidMethodWithBigMap (unloc m))
| _ -> ()
end;
env, mki (A.Icall (Some the, A.Cconst method_.mth_name, args))
| _ ->
let infos = for_api_call (expr_mode kind) env (loc i) (`Typed the, m, args) in
let the, method_, args = Option.get_fdfl bailout infos in
env, mki (A.Icall (Some the, A.Cconst method_.mth_name, args))
end
| None -> bailout ()
end
| Eseq (i1, i2) ->
let env, i1 = for_instruction_r ~ret kind env i1 in
let env, i2 = for_instruction_r ~ret kind env i2 in
env, mkseq i1 i2
| Eassign (op, plv, pe) -> begin
let lv = for_lvalue kind env plv in
let x, t = Option.get_dfl
(`Var (mkloc (loc plv) "<error>"), A.vtunit)
(Option.map id lv) in
let op = for_assignment_operator op in
let e =
match lv with
| None ->
for_expr kind env pe
| Some (_, fty) ->
for_assign_expr
(expr_mode kind) env (loc plv) (op, fty, fty) pe
in
env, mki (A.Iassign (op, t, x, e))
end
| Etransfer (e, tr) ->
let e = for_expr kind env ~ety:A.vtcurrency e in
let tr =
match tr with
| TTsimple to_ ->
A.TTsimple (for_expr kind env ~ety:A.vtrole to_)
| TTcontract (to_, name, ty, arg) -> begin
let ty = for_type_exn env ty in
let to_ = for_expr ~ety:A.vtaddress kind env to_ in
let arg = for_expr ~ety:ty kind env arg in
A.TTcontract (to_, name, ty, arg)
end
| TTentry (name, arg) -> begin
let nty =
match Env.lookup_entry env (unloc name) with
| Some (`Local (nty, (`Standard | `Argument))) ->
nty
| Some (`Global { vr_type = nty; vr_kind = `Variable }) ->
nty
| _ ->
Env.emit_error env (loc name, UnknownLocalOrVariable (unloc name));
bailout () in
if not (Type.is_contract nty) then begin
Env.emit_error env (loc name, AEntryExpected nty);
bailout ();
end;
let aty = Option.get (Type.as_contract nty) in
let arg = for_expr kind env ~ety:aty arg in
let e = A.mk_sp ~type_:nty (A.Pvar (VTnone, Vnone, name)) in
A.TTentry (e, arg)
end
| TTself (name, args) -> begin
let entry =
match Env.Tentry.lookup env (unloc name) with
| None ->
Env.emit_error env (loc name, UnknownEntry (unloc name));
bailout ()
| Some entry -> entry in
if List.length entry.ad_args <> List.length args then begin
let n = List.length entry.ad_args in
let c = List.length args in
Env.emit_error env (loc name, InvalidNumberOfArguments (n, c));
bailout ()
end;
let args =
List.map2
(fun (id, ety) arg -> id, for_expr ~ety kind env arg)
entry.ad_args args in
A.TTself (name, args)
end
in env, mki (Itransfer (e, tr))
| Eif (c, bit, bif) ->
let c = for_expr kind env ~ety:A.vtbool c in
let env, cit = for_instruction ~ret kind env bit in
let cif = Option.map (for_instruction ~ret kind env) bif in
let env, cif = Option.get_dfl (env, mki (Iseq [])) cif in
env, mki (A.Iif (c, cit, cif))
| Eletin _ ->
Env.emit_error env (loc i, NoLetInInstruction);
bailout ()
| Efor (lbl, x, pe, i) ->
let e = for_expr kind env pe in
let kty =
let is_for_ident k =
match k, unloc x with
| `Simple, PT.FIsimple _
| `Double, PT.FIdouble _ -> true
| _ -> false
in
match e.A.type_ with
| Some (A.Tcontainer (A.Tasset asset, _)) ->
let asset = Env.Asset.get env (unloc asset) in
if asset.as_bm then
Env.emit_error env (loc pe, NonIterableBigMapAsset (unloc asset.as_name));
if is_for_ident `Double
then (Env.emit_error env (loc x, InvalidForIdentSimple); None)
else Some [asset.as_pkty]
| Some (A.Tmap (kt, vt)) ->
if is_for_ident `Simple
then (Env.emit_error env (loc x, InvalidForIdentMap); None)
else Some [kt; vt]
| Some (A.Tset ty | A.Tlist ty) ->
if is_for_ident `Double
then (Env.emit_error env (loc x, InvalidForIdentSimple); None)
else Some [ty]
| Some _ ->
Env.emit_error env (loc pe, NonIterable); None
| None ->
None in
let env, i = Env.inscope env (fun env ->
let idents = match unloc x with PT.FIsimple i -> [i] | PT.FIdouble (x, y) -> [x; y] in
let _ : bool = List.for_all (check_and_emit_name_free env) idents in
let env =
Option.map_dfl
(List.fold_left2
(fun accu x y -> Env.Local.push accu ~kind:`LoopIndex (x, y))
env idents)
env kty in
let env =
match e.A.type_ with
| None ->
env
| Some lblty ->
Option.fold (fun env lbl ->
if (check_and_emit_name_free env lbl) then
Env.Label.push env (lbl, `Loop lblty)
else env) env lbl
in for_instruction ~ret kind env i) in
let x : A.lident A.for_ident =
match unloc x with
| PT.FIsimple i -> A.FIsimple i
| PT.FIdouble (x, y) -> A.FIdouble (x, y)
in env, mki (A.Ifor (x, e, i)) ?label:(Option.map unloc lbl)
| Eiter (lbl, x, a, b, i) ->
let zero_b = A.mk_sp (A.BVint Big_int.zero_big_int) ~type_:A.vtint in
let zero : A.pterm = A.mk_sp (A.Plit zero_b) ~type_:A.vtint in
let a = Option.map_dfl (fun x -> for_expr kind env ~ety:A.vtint x) zero a in
let b = for_expr kind env ~ety:A.vtint b in
let env, i = Env.inscope env (fun env ->
let _ : bool = check_and_emit_name_free env x in
let env = Env.Local.push env ~kind:`LoopIndex (x, A.vtint) in
for_instruction ~ret kind env i) in
env, mki (A.Iiter (x, a, b, i)) ?label:(Option.map unloc lbl)
| Ewhile (lbl, c, i) ->
let c = for_expr kind env ~ety:A.vtbool c in
let env, i = for_instruction ~ret kind env i in
env, mki (A.Iwhile (c, i)) ?label:(Option.map unloc lbl)
| Edorequire (e, f) ->
let e = for_expr kind env e in
let f = for_expr kind env f in
let ty = Option.get f.type_ in
if not (Type.Michelson.is_type ty) then
Env.emit_error env (f.loc, InvalidTypeForDoRequire);
env, mki (A.Irequire (true, e, f))
| Edofailif (e, f) ->
let e = for_expr kind env e in
let f = for_expr kind env f in
let ty = Option.get f.type_ in
if not (Type.Michelson.is_type ty) then
Env.emit_error env (f.loc, InvalidTypeForDoFailIf);
env, mki (A.Irequire (false, e, f))
| Efail e ->
let e = for_expr kind env e in
e.type_ |> Option.iter (fun ty ->
if (not (Type.Michelson.is_type ty))
then (Env.emit_error env (e.loc, InvalidTypeForFail)));
env, mki (A.Ifail e)
| Eassert lbl ->
let env =
if (check_and_emit_name_free env lbl) then
Env.Label.push env (lbl, `Plain)
else env in
env, mki (Ilabel lbl)
| Ematchwith (e, bs) -> begin
match for_gen_matchwith (expr_mode kind) env (loc i) e bs with
| None -> bailout () | Some (decl, me, (wd, bsm), is) ->
let env, is = List.fold_left_map (for_instruction ~ret kind) env is in
let aout = List.pmap (fun (cname, _) ->
let ctor = A.mk_sp (A.Mconst cname) in
let bse =
match Mstr.find (unloc cname) bsm, wd with
| Some k, _ ->
Some (List.nth is k)
| None, Some _ ->
None
| None, None ->
Some (mki (Iseq []))
in Option.map (fun bse -> (ctor, bse)) bse) decl.sd_ctors in
let aout =
Option.fold
(fun aout -> aout @ [A.mk_sp A.Mwild, extra])
aout (Option.map (List.nth is) wd) in
env, mki (A.Imatchwith (me, aout))
end
| Elabel lbl ->
let env =
if check_and_emit_name_free env lbl
then Env.Label.push env (lbl, `Code)
else env
in env, mki (Ilabel lbl)
| Enothing ->
env, mki (Iseq [])
| Ereturn re ->
if Option.is_none ret then
Env.emit_error env (loc re, ReturnInVoidContext);
env, mki (Ireturn (for_expr ?ety:ret kind env re))
| Evar (x, ty, v) ->
let ty = Option.bind (for_type env) ty in
let v = for_expr kind env ?ety:ty v in
let env =
let _ : bool = check_and_emit_name_free env x in
if Option.is_some v.A.type_ then
Env.Local.push env (x, Option.get v.A.type_)
else env in
Option.iter (fun ty ->
if not (valid_var_or_arg_type ty) then
Env.emit_error env (loc x, InvalidVarOrArgType)) v.A.type_;
env, mki (A.Ideclvar (x, v))
| _ ->
Env.emit_error env (loc i, InvalidInstruction);
bailout ()
with E.Failure ->
env, mki (Iseq [])
and for_instruction ~(ret : A.type_ option) (kind : imode_t) (env : env) (i : PT.expr) : env * A.instruction =
Env.inscope env (fun env -> for_instruction_r ~ret kind env i)
let for_effect (kind : imode_t) (env : env) (effect : PT.expr) =
Env.inscope env (fun env ->
let env, i = for_instruction ~ret:None kind env effect in (env, (env, i)))
type spmode = [`Global | `Local]
let for_specification_item
(mode : spmode) (env, poenv : env * env) (v : PT.specification_item)
: (env * env) * (env ispecification) list
=
match unloc v with
| PT.Vpredicate (x, args, f) ->
let env, (args, f) =
Env.inscope env (fun env ->
let env, args = for_args_decl ~can_asset:true env args in
let args = List.pmap id args in
let f = for_formula env f in
(env, (args, f))) in
let decl = { pr_name = x; pr_args = args; pr_body = f; } in
let poenv =
if not (check_and_emit_name_free poenv x) then poenv else
Env.Predicate.push poenv decl in
(env, poenv), [`Predicate (x, args, f)]
| PT.Vdefinition (x, ty, y, f) ->
let poenv, def =
Env.inscope poenv (fun poenv ->
let poenv, arg = for_arg_decl ~can_asset:true poenv (y, ty, None) in
match arg with
| Some ((_, A.Tasset asset) as arg) ->
let f = for_formula poenv f in (poenv, Some (asset, arg, f))
| _ -> (poenv, None)) in
let decl =
Option.map (fun (asset, arg, f) ->
{ df_name = x; df_arg = arg; df_asset = asset; df_body = f; }) def in
let poenv =
if not (check_and_emit_name_free poenv x) then poenv else
Option.fold (fun poenv decl ->
Env.Definition.push poenv decl) poenv decl in
let item = Option.map (fun decl ->
`Definition (decl.df_name, decl.df_arg, decl.df_body)) decl in
(env, poenv), Option.get_as_list item
| PT.Vvariable (x, ty, e) ->
let ty = for_type env ty in
let e = Option.map (for_expr `Ghost env ?ety:ty) e in
ty |> Option.iter (fun ty ->
if not (valid_var_or_arg_type ty) then
Env.emit_error env (loc x, InvalidVarOrArgType));
let env, poenv =
if not (check_and_emit_name_free poenv x) then env, poenv else
Option.fold (fun (env, poenv) ty ->
let decl = {
vr_name = x; vr_type = ty; vr_kind = `Ghost;
vr_invs = []; vr_def = None;
vr_core = None;
} in
let env = if mode = `Global then Env.Var.push env decl else env in
let poenv = Env.Var.push poenv decl in
(env, poenv)) (env, poenv) ty
in (env, poenv), [`Variable (x, e)]
| PT.Vassert (x, f, invs, uses) -> begin
if mode = `Global then
Env.emit_error env (loc x, AssertInGlobalSpec);
let env0 =
match Env.Label.lookup env (unloc x) with
| None ->
Env.emit_error env (loc x, UnknownLabel (unloc x));
env
| Some (env, _) ->
env
in
let for_inv (lbl, linvs) =
(lbl, List.map (for_formula env0) linvs) in
let f = for_formula env0 f in
let invs = List.map for_inv invs in
(env, poenv), [`Asset (x, f, invs, uses)]
end
| PT.Veffect i ->
if mode = `Global then
Env.emit_error env (loc i, EffectInGlobalSpec);
let _, ((poenv, _) as i) = for_effect `Ghost poenv i in
(env, poenv), [`Effect i]
| PT.Vfails l -> begin
let l, env = List.fold_left (
fun (accu, aenv) (lbl, arg, atype, f) ->
let ty = for_type_exn aenv atype in
let env_internal = Env.Local.push env (arg, ty) in
let f = for_formula env_internal f in
let env =
if check_and_emit_name_free env lbl
then Env.Label.push env (lbl, `Plain)
else env
in
(lbl, arg, ty, f)::accu, env
) ([], env) l in
(env, poenv), [`Fails (List.rev l)]
end
| PT.Vpostcondition (x, f, invs, uses, kind) -> begin
begin match kind, mode with
| Some PKInv, `Local ->
Env.emit_error env (loc x, ContractInvariantInLocalSpec)
| Some PKPost, `Global ->
Env.emit_error env (loc x, PostConditionInGlobalSpec)
| _, _ -> () end;
let for_inv (lbl, linvs) =
let env0 =
match Env.Label.lookup env (unloc lbl) with
| None ->
Env.emit_error env (loc lbl, UnknownLabel (unloc lbl));
env
| Some (env, `Loop lblty) ->
Option.fold (fun env (aname, _) ->
let ty = A.Tasset (mkloc (loc lbl) (unloc aname)) in
let ty = A.Tcontainer (ty, A.View) in
let env = Env.Local.push env (mkloc coreloc "toiterate", ty) in
let env = Env.Local.push env (mkloc coreloc "iterated", ty) in
env) env (Type.as_asset_collection lblty)
| Some (_, _) ->
Env.emit_error env (loc lbl, NonLoopLabel (unloc lbl));
env
in (lbl, List.map (for_formula ~invariant:true env0) linvs) in
let f = for_formula poenv f in
let invs = List.map for_inv invs in
(env, poenv), [`Postcondition (x, f, invs, uses)]
end
let for_specification mode ((env, poenv) : env * env) (v : PT.specification) =
let (env, _), items =
List.fold_left_map (for_specification_item mode) (env, poenv) (fst (unloc v))
in (env, List.flatten items)
module SecurityPred = struct
type _ mode =
| EntryDesc : A.entry_description mode
| Role : A.lident list mode
| Entry : A.security_entry mode
let validate1 (type a) (env : env) (mode : a mode) (v : PT.security_arg) : a =
match mode with
| EntryDesc -> for_entry_description env v
| Role -> for_security_role env v
| Entry -> for_security_entry env v
type _ validator =
| V0 : unit validator
| VC : 'a mode * 'b validator -> ('a * 'b) validator
let (^:) m v = VC (m, v)
exception ArgCountError
let rec vdlen : type a . a validator -> int =
function V0 -> 0 | VC (_, vd) -> 1 + vdlen vd
let rec validate
: type a . env -> a validator * PT.security_arg list -> a
= fun env -> function
| V0, [] ->
()
| VC (m, vd), v :: args ->
let v = validate1 env m v in
let args = validate env (vd, args) in
(v, args)
| _, _ ->
raise ArgCountError
type predc =
| PredC : ('a -> A.security_node) * 'a validator -> predc
let pclen (PredC (_, vd)) = vdlen vd
let vd1 f m =
PredC ((fun (x, ()) -> f x), m ^: V0)
let vd2 f m1 m2 =
PredC
((fun (x, (y, ())) -> f x y),
m1 ^: m2 ^: V0)
let vd3 f m1 m2 m3 =
PredC
((fun (x, (y, (z, ()))) -> f x y z),
m1 ^: m2 ^: m3 ^: V0)
let validate_and_build env (PredC (f, vd)) args =
f (validate env (vd, args))
let preds = [
"only_by_role", vd2 (fun x y -> A.SonlyByRole (x, y) ) EntryDesc Role;
"only_in_entry", vd2 (fun x y -> A.SonlyInEntry (x, y) ) EntryDesc Entry;
"only_by_role_in_entry", vd3 (fun x y z -> A.SonlyByRoleInEntry (x, y, z)) EntryDesc Role Entry;
"not_by_role", vd2 (fun x y -> A.SnotByRole (x, y) ) EntryDesc Role;
"not_in_entry", vd2 (fun x y -> A.SnotInEntry (x, y) ) EntryDesc Entry;
"not_by_role_in_entry", vd3 (fun x y z -> A.SnotByRoleInEntry (x, y, z)) EntryDesc Role Entry;
"transferred_by", vd1 (fun x -> A.StransferredBy (x) ) EntryDesc;
"transferred_to", vd1 (fun x -> A.StransferredTo (x) ) EntryDesc;
"no_storage_fail", vd1 (fun x -> A.SnoStorageFail (x) ) Entry;
]
let preds = Mid.of_list preds
end
let for_security_item (env : env) (v : PT.security_item) : (env * A.security_item) option =
let module E = struct exception Bailout end in
try
let loc, (label, name, args) = Location.deloc v in
let sp =
match Mid.find_opt (unloc name) SecurityPred.preds with
| None ->
Env.emit_error env (L.loc name, NoSuchSecurityPredicate (unloc name));
raise E.Bailout
| Some method_ -> method_
in
let ne = SecurityPred.pclen sp in
let ng = List.length args in
if ne <> ng then begin
Env.emit_error env (loc, InvalidNumberOfArguments (ne, ng));
raise E.Bailout
end;
let security_node : A.security_node =
SecurityPred.validate_and_build env sp args
in
let security_item : A.security_item =
A.{ loc; label; predicate = A.{ loc; s_node = security_node; }; }
in
Some (env, security_item)
with E.Bailout -> None
let for_security (env : env) (v : PT.security) : env * A.security =
let env, items = List.fold_left (fun (env, items) x ->
match for_security_item env x with
| Some (e, v) -> (e, v::items)
| None -> (env, items)
) (env, []) (fst (unloc v)) in
env, A.{ items = List.rev items; loc = loc v; }
let for_named_state ?enum (env : env) (x : PT.lident) =
match Env.State.byctor env (unloc x) with
| None ->
Env.emit_error env (loc x, UnknownState (unloc x));
mkloc (loc x) "<error>"
| Some state ->
let sname = unloc state.sd_name in
if Option.get_dfl ("$" ^ statename) enum <> sname then begin
Env.emit_error env (loc x, ForeignState (enum, Some sname));
mkloc (loc x) "<error>"
end else
x
let rec for_state_formula ?enum (env : env) (st : PT.expr) : A.sexpr =
let mk_sp = A.mk_sp ~loc:(loc st) in
match unloc st with
| Eterm ((None, None), x) ->
mk_sp (A.Sref (for_named_state ?enum env x))
| Eapp (Foperator { pldesc = Logical Or }, [e1; e2]) ->
let s1 = for_state_formula ?enum env e1 in
let s2 = for_state_formula ?enum env e2 in
mk_sp (A.Sor (s1, s2))
| Eany ->
mk_sp (A.Sany)
| _ ->
Env.emit_error env (loc st, InvalidStateExpression);
mk_sp (A.Sref (mkloc (loc st) "<error>"))
let named_sig_compatible args xargs =
let module E = struct exception Incompatible end in
try
if List.length args <> List.length xargs then
raise E.Incompatible;
List.iter2 (fun arg xarg ->
match arg, xarg with
| Some ({ pldesc = name }, ty), Some ({ pldesc = xname }, xty) ->
if name <> xname || not (Type.equal ty xty) then
raise E.Incompatible
| _, _ -> ()) args xargs;
true
with E.Incompatible -> false
let for_function
?(xspecs : PT.specfun loced list option) (env as topenv : env) (fdecl : PT.s_function loced)
=
let { pldesc = fdecl; plloc = loc; } = fdecl in
Env.inscope env (fun env ->
let env, args = for_args_decl env fdecl.args in
let rty = Option.bind (for_type env) fdecl.ret_t in
let env, body = for_instruction ~ret:rty `Concrete env fdecl.body in
let env, spec =
let poenv = rty |> Option.fold (fun poenv rty ->
let decl = {
vr_name = mkloc loc "result";
vr_type = rty;
vr_kind = `Ghost;
vr_invs = [];
vr_def = None;
vr_core = None;
} in Env.Var.push poenv decl
) env in
let spec =
let myspec { plloc = xloc; pldesc = (kind, x, xargs, xspec) } =
match kind, fdecl.getter with
| PT.SKgetter , true
| PT.SKfunction, false ->
if unloc x = unloc fdecl.name then begin
let _, xargs = for_args_decl topenv xargs in
if not (named_sig_compatible args xargs) then
Env.emit_error env (xloc, IncompatibleSpecSig);
Some xspec
end else None
| _ -> None in
Option.get_as_list fdecl.spec
@ List.pmap myspec (Option.get_dfl [] xspecs) in
let env, items =
List.fold_left_map
(fun env spec -> for_specification `Local (env, poenv) spec)
env spec in
env, List.flatten items in
if Option.is_some rty && not (List.exists Option.is_none args) then
if check_and_emit_name_free env fdecl.name then
(env, Some {
fs_name = fdecl.name;
fs_kind = if fdecl.getter then FKgetter else FKfunction;
fs_args = List.pmap id args;
fs_retty = Option.get rty;
fs_body = body;
fs_spec = spec; })
else (env, None)
else (env, None))
let rec for_callby (env : env) (cb : PT.expr) =
match unloc cb with
| Eany -> [mkloc (loc cb) None]
| Eapp (Foperator { pldesc = Logical Or }, [e1; e2]) ->
(for_callby env e1) @ (for_callby env e2)
| _ ->
[mkloc (loc cb) (Some (for_expr `Concrete env ~ety:A.vtrole cb))]
let for_entry_properties (env, poenv : env * env) (act : PT.entry_properties) =
let calledby = Option.map (fun (x, _) -> for_callby env x) act.calledby in
let env, req = Option.foldmap (for_rfs `Concrete) env (Option.fst act.require) in
let env, fai = Option.foldmap (for_rfs `Concrete) env (Option.fst act.failif) in
let env, spec = Option.foldmap
(fun env x -> for_specification `Local (env, poenv) x) env act.spec_fun in
let env, funs = List.fold_left_map for_function env act.functions in
(env, (calledby, req, fai, spec, funs))
let for_transition ?enum (env : env) (state, when_, effect) =
let tx_state = for_named_state ?enum env state in
let tx_when =
Option.map (for_formula env) (Option.fst when_) in
let env, tx_effect = snd_map (Option.map snd)
(Option.foldmap (for_effect `Concrete) env (Option.fst effect)) in
env, { tx_state; tx_when; tx_effect; }
type enum_core = ((PT.lident * PT.enum_option list) list)
let for_core_enum_decl (env : env) (enum : enum_core loced) =
let ctors = unloc enum in
match ctors with
| [] ->
Env.emit_error env (loc enum, EmptyEnumDecl);
env, None
| _ ->
Option.iter
(fun (_, x) ->
Env.emit_error env (loc x, DuplicatedCtorName (unloc x)))
(List.find_dup unloc (List.map fst ctors));
let ctors = Mid.collect (unloc : A.lident -> ident) ctors in
let for1 (cname, options) =
let init, inv =
List.fold_left (fun (init, inv) option ->
match option with
| PT.EOinitial ->
(init+1, inv)
| PT.EOspecification spec ->
(init, List.rev_append spec inv)
) (0, []) options in
if init > 1 then
Env.emit_error env (loc cname, DuplicatedInitMarkForCtor);
(init <> 0, List.rev inv) in
let for1 env ((cname : PT.lident), options) =
let init, inv = for1 (cname, options) in
(env, (cname, init, inv)) in
let env, ctors = List.fold_left_map for1 env ctors in
let ictor =
let ictors =
List.pmap
(fun (x, b, _) -> if b then Some x else None)
ctors in
match ictors with
| [] ->
proj3_1 (List.hd ctors)
| init :: ictors ->
if not (List.is_empty ictors) then
Env.emit_error env (loc enum, MultipleInitialMarker);
init in
env, Some (unloc ictor, List.map (fun (x, _, inv) -> (x, inv)) ctors)
let for_enum_decl (env : env) (decl : (PT.lident * PT.enum_decl) loced) =
let (name, (ctors, _)) = unloc decl in
let env, ctors = for_core_enum_decl env (mkloc (loc decl) ctors) in
let env, decl =
Option.foldbind (fun env (sd_init, ctors) ->
let sd_ctors = List.map (fun (x, _) -> (x, [])) ctors in
let enum = { sd_name = name; sd_ctors; sd_init; sd_state = false; } in
if check_and_emit_name_free env name
then Env.State.push env enum, Some enum
else env, None) env ctors in
let inv = Option.map (fun (_, ctors) -> List.map snd ctors) ctors in
env, (decl, inv)
let for_enums_decl (env : env) (decls : (PT.lident * PT.enum_decl) loced list) =
List.fold_left_map for_enum_decl env decls
let for_var_decl (env : env) (decl : PT.variable_decl loced) =
let (x, ty, pe, ctt, invs, _) = unloc decl in
let ty = for_type env ty in
let e = Option.map (for_expr `Concrete env ?ety:ty) pe in
let dty =
if Option.is_some ty
then ty
else Option.bind (fun e -> e.A.type_) e in
dty |> Option.iter (fun ty ->
if not (valid_var_or_arg_type ty) then
Env.emit_error env (loc x, InvalidVarOrArgType));
let ctt = match ctt with
| VKconstant -> `Constant
| VKvariable -> `Variable in
if Option.is_none pe then
Env.emit_error env (loc decl, UninitializedVar);
match dty with
| None ->
(env, (None, None))
| Some dty ->
let decl = {
vr_name = x;
vr_type = dty;
vr_kind = ctt;
vr_core = None;
vr_invs = [];
vr_def = Option.map (fun e -> (e, `Std)) e; } in
if (check_and_emit_name_free env x)
then (Env.Var.push env decl, (Some decl, Some invs))
else (env, (None, Some invs))
let for_vars_decl (env : env) (decls : PT.variable_decl loced list) =
List.fold_left_map for_var_decl env decls
let for_var_specs
(env : env) (specs : (PT.lident * PT.label_exprs) loced list)
=
List.iter (fun { pldesc = (x, _) } ->
if not (Env.Var.exists env (unloc x)) then
Env.emit_error env (loc x, UnknownVariable (unloc x)))
specs
let for_fun_decl
?(xspecs : PT.specfun loced list option) (env : env) (fdecl : PT.s_function loced)
=
let env, decl = for_function ?xspecs env fdecl in
(Option.fold (fun env decl -> Env.Function.push env decl) env decl, decl)
let for_funs_decl
(env : env) (decls : PT.s_function loced list) (xspecs : PT.specfun loced list)
=
List.fold_left_map (for_fun_decl ~xspecs) env decls
let for_fun_specs (env : env) (specs : PT.specfun loced list) =
let for1 { plloc = _; pldesc = (kind, x, _, _) } =
match kind with
| PT.SKfunction -> begin
match Env.Function.lookup env (unloc x) with
| Some fund when fund.fs_kind = A.FKfunction ->
()
| _ ->
Env.emit_error env (loc x, UnknownFunction (unloc x))
end
| PT.SKgetter -> begin
match Env.Function.lookup env (unloc x) with
| Some fund when fund.fs_kind = A.FKgetter ->
()
| _ ->
Env.emit_error env (loc x, UnknownGetter (unloc x));
end
| PT.SKentry -> begin
if not (Env.Tentry.exists env (unloc x)) then
Env.emit_error env (loc x, UnknownEntry (unloc x));
end
in List.iter for1 specs
type pre_assetdecl = {
pas_name : A.lident;
pas_fields : (string * A.ptyp * PT.expr option * bool) loced list;
pas_pkty : A.ptyp;
pas_pk : A.lident list;
pas_sortk : A.lident list;
pas_bm : bool;
pas_invs : PT.label_exprs list;
pas_state : statedecl option;
pas_init : PT.expr list;
}
let for_asset_decl
?(xspecs = []) pkey (env : env) ((adecl, decl) : assetdecl * PT.asset_decl loced)
=
let (x, cfields, sfields, opts, postopts, _ , _) = unloc decl in
let for_field field =
let (f, fty, init, shadow) = field in
let fty = for_type ~pkey env fty in
if check_and_emit_name_free env f
then Option.map (fun fty -> mkloc (loc f) (unloc f, fty, init, shadow)) fty
else None in
let fields =
let cfields =
List.map
(fun { pldesc = PT.Ffield (x, ty, e, _) } -> (x, ty, e, false))
cfields in
let sfields =
List.map
(fun { pldesc = PT.Ffield (x, ty, e, _) } -> (x, ty, e, true))
sfields in
List.pmap for_field (cfields @ sfields) in
Option.iter
(fun (_, { plloc = lc; pldesc = (name, _, _, _) }) ->
Env.emit_error env (lc, DuplicatedFieldInAssetDecl name))
(List.find_dup (fun x -> proj4_1 (unloc x)) fields);
let get_field name =
List.Exn.find
(fun { pldesc = (x, _, _, _) } -> x = name)
fields
in
let pks = List.pmap (function PT.AOidentifiedby pk -> Some pk | _ -> None) opts in
let sortks = List.pmap (function PT.AOsortedby sk -> Some sk | _ -> None) opts in
let invs = List.pmap (function PT.APOconstraints fi -> Some fi | _ -> None) postopts in
let state = List.pmap (function PT.APOstates st -> Some st | _ -> None) postopts in
let inits = List.pmap (function PT.APOinit it -> Some it | _ -> None) postopts in
let invs =
let xinvs =
List.pmap (fun { pldesc = ({ pldesc = xname }, xinv ) } ->
if xname = unloc adecl.as_name then Some xinv else None) xspecs in
invs @ xinvs in
let bigmaps =
let valid_to_type_values = ["big_map"] in
List.iter (function
| PT.AOto v when not (List.exists (String.equal (unloc v)) valid_to_type_values) ->
Env.emit_error env (loc v, UnknownAssetToProperty (unloc v))
| _ -> ()) opts;
List.exists (function PT.AOto {pldesc = "big_map"} -> true | _ -> false) opts in
let pks =
let dokey key =
match get_field (unloc key) with
| None ->
Env.emit_error env (loc key, UnknownFieldName (unloc key));
None
| Some { pldesc = (_, _, _, true) } ->
Env.emit_error env (loc key, ShadowPKey);
None
| Some _ -> Some key in
List.pmap dokey (List.flatten pks) in
let pks =
if List.is_empty pks
then Option.get_as_list (Option.map (L.lmap proj4_1) (List.ohead fields))
else pks in
pks |> List.iter (fun pk ->
match Option.get (get_field (unloc pk)) with
| { pldesc = _, ty, _, _; plloc = loc; } ->
if not (Type.pktype ty) then
Env.emit_error env (loc, InvalidTypeForPk)
);
let _ : Sstr.t =
List.fold_left (fun seen pk ->
if Sstr.mem (unloc pk) seen then
Env.emit_error env (loc pk, DuplicatedPkeyField (unloc pk));
Sstr.add (unloc pk) seen) Sstr.empty pks in
begin
let opks =
List.filter
(fun { pldesc = (fd, _, _, _) } ->
List.exists (fun f -> unloc f = fd) pks)
fields in
let opks = List.map (unloc %> proj4_1) opks in
if opks <> List.map unloc pks then
Env.emit_error env (loc decl, MisorderedPkeyFields)
end;
let pkty =
Type.create_tuple
(List.map (fun pk -> proj4_2 (unloc (Option.get (get_field (unloc pk))))) pks) in
let sortks =
let dokey key =
match get_field (unloc key) with
| None ->
Env.emit_error env (loc key, UnknownFieldName (unloc key));
None
| Some { pldesc = (_, _, _, true) } ->
Env.emit_error env (loc key, ShadowSKey);
None
| Some _ -> Some key in
List.pmap dokey sortks in
let state =
let for1 x =
let state = Env.State.lookup env (unloc x) in
if Option.is_none state then
Env.emit_error env (loc x, UnknownEnum (unloc x));
state in
if List.length state > 1 then
Env.emit_error env (loc decl, MultipleAssetStateDeclaration);
let state = List.map for1 state in
Option.bind (fun x -> x) (List.ohead state) in
let env, adecl =
let for_ctor { pldesc = (fd, fdty, fdinit, shadow); plloc = fdloc; } =
let fddfl =
fdinit |> Option.map (fun fdinit ->
A.mk_sp ~type_:fdty ~loc:(loc fdinit)
(A.Pvar (VTnone, Vnone, mkloc (loc fdinit) "<init>"))) in
{ fd_name = mkloc fdloc fd;
fd_type = fdty;
fd_dfl = fddfl;
fd_ghost = shadow; } in
let adecl = { adecl with as_fields = List.map for_ctor fields } in
let env = Env.Asset.push env adecl in
(env, adecl) in
let module E = struct exception Bailout end in
try
if List.is_empty adecl.as_fields then begin
Env.emit_error env (loc decl, AssetWithoutFields);
raise E.Bailout
end;
if List.is_empty pks then env, None else
let aout =
{ pas_name = x;
pas_fields = fields;
pas_pkty = pkty;
pas_pk = pks;
pas_sortk = sortks;
pas_bm = bigmaps;
pas_invs = invs;
pas_state = state;
pas_init = List.flatten inits; }
in env, Some aout
with E.Bailout -> env, None
let for_assets_decl (env as env0 : env) (decls : PT.asset_decl loced list) xspecs =
let (b, env), adecls = List.fold_left_map (fun (b, env) decl ->
let (name, _, _, _, _, _, _) = unloc decl in
let b = b && check_and_emit_name_free env name in
let d = { as_name = name;
as_fields = [];
as_pkty = A.vtunit;
as_pk = [];
as_sortk = [];
as_bm = false;
as_invs = [];
as_state = None;
as_init = []; } in
((b, Env.Asset.push env d), d)) (true, env) decls in
let module E = struct exception Bailout end in
try
if not b then
raise E.Bailout;
let pkey = List.map (fun { pldesc = (x, _, _, _, _, _, _) } -> unloc x) decls in
let _, decls =
List.fold_left_map
(for_asset_decl ~xspecs pkey) env (List.combine adecls decls) in
if not (List.for_all Option.is_some decls) then
raise E.Bailout;
let decls = List.map Option.get decls in
let pksty =
let for1 decl =
let fields =
List.filter
(fun fd -> List.exists (fun f -> unloc f = proj4_1 (L.unloc fd)) decl.pas_pk)
decl.pas_fields in
Type.create_tuple (List.map (fun fd -> proj4_2 (unloc fd)) fields) in
List.map for1 decls in
let pksty = Mint.of_list (List.mapi (fun i x -> (i, x)) pksty) in
let adecls =
let for1 decl =
let for_ctor { pldesc = (fd, fdty, fdinit, shadow); plloc = fdloc; } =
let fdty = Type.subst pksty fdty in
let fddfl =
fdinit |> Option.map (fun fdinit ->
A.mk_sp ~type_:fdty ~loc:(loc fdinit)
(A.Pvar (VTnone, Vnone, mkloc (loc fdinit) "<init>"))) in
{ fd_name = mkloc fdloc fd;
fd_type = fdty;
fd_dfl = fddfl;
fd_ghost = shadow; }
in
{ as_name = decl.pas_name;
as_fields = List.map for_ctor decl.pas_fields;
as_pkty = decl.pas_pkty;
as_pk = decl.pas_pk;
as_sortk = decl.pas_sortk;
as_bm = decl.pas_bm;
as_invs = [];
as_state = Option.map (fun x -> x.sd_name) decl.pas_state;
as_init = []; }
in List.map for1 decls in
let env = List.fold_left Env.Asset.push env0 adecls in
let adecls =
let for1 adecl decl =
let for_ctor ctor { pldesc = (_, _, dfl, shadow); plloc = xloc; } =
if shadow && Option.is_none dfl then
Env.emit_error env (xloc, MissingInitValueForShadowField);
let fd_dfl =
dfl |> Option.map
(for_expr `Concrete env ~ety:ctor.fd_type) in
{ ctor with fd_dfl }
in
{ adecl with
as_fields = List.map2 for_ctor adecl.as_fields decl.pas_fields; }
in List.map2 for1 adecls decls in
let env, adecls =
let for1 env (adecl, decl) =
let env, as_invs =
Env.inscope env (fun env ->
let env =
List.fold_left (fun env field ->
Env.Local.push env (field.fd_name, field.fd_type)
) env adecl.as_fields
in List.fold_left_map for_xlbls_formula env decl.pas_invs)
in (env, { adecl with as_invs = List.flatten as_invs }) in
List.fold_left_map for1 env (List.combine adecls decls)
in
let adecls =
let for1 adecl decl =
let forinit = function
| { pldesc = PT.Erecord init1; plloc = thisloc }
when List.for_all (fun (x, _) -> Option.is_none x) init1
->
if List.length init1 <> List.length adecl.as_fields then begin
Env.emit_error env (thisloc, InvalidAssetExpression); None
end else
let init1 =
List.map2
(fun field (_, ie) -> for_expr `Concrete env ~ety:field.fd_type ie)
adecl.as_fields init1 in
Some init1
| { pldesc = PT.Erecord init1; plloc = _; }
when List.for_all
(function (Some (PT.ValueAssign, _), _) -> true | _ -> false)
init1
->
let init1 =
List.pmap (function (Some (_, x), e) -> Some (x, e) | _ -> None) init1 in
let init1 =
List.filter (fun (x, _) ->
if Option.is_none (get_field (unloc x) adecl) then
(Env.emit_error env (loc x, UnknownFieldName (unloc x)); false)
else true) init1 in
let init1 =
List.fold_left (fun init1 ({pldesc = x; plloc = tloc}, e) ->
let { fd_type = fty } = Option.get (get_field x adecl) in
let e = for_expr `Concrete env ~ety:fty e in
Mid.update x (fun es -> Some ((e, tloc) :: (Option.get_dfl [] es))) init1
) Mid.empty init1 in
Mid.iter (fun x es ->
List.iter
(fun (_, lloc) ->
Env.emit_error env (lloc, DuplicatedFieldInAssetOrRecordLiteral x))
(List.chop (List.rev es))
) init1;
let init1 = List.map (fun fd ->
match Mid.find_opt (unloc fd.fd_name) init1 with
| None when Option.is_none fd.fd_dfl ->
Env.emit_error env
(loc fd.fd_name, MissingFieldInAssetOrRecordLiteral (unloc fd.fd_name));
None
| None ->
fd.fd_dfl
| Some es ->
Some (fst (Option.get (List.ohead (List.rev es))))
) adecl.as_fields in
if List.for_all Option.is_some init1
then Some (List.pmap (fun x -> x) init1)
else None
| { plloc = thisloc } ->
Env.emit_error env (thisloc, InvalidAssetExpression); None in
{ adecl with as_init = List.pmap forinit decl.pas_init } in
List.map2 for1 adecls decls in
let env = List.fold_left Env.Asset.push env adecls in
(env, List.map Option.some adecls)
with E.Bailout ->
(env0, List.map (fun _ -> None) decls)
let for_asset_specs
(env : env) (specs : (PT.lident * PT.label_exprs) loced list)
=
List.iter (fun { pldesc = (x, _) } ->
if not (Env.Asset.exists env (unloc x)) then
Env.emit_error env (loc x, UnknownAsset (unloc x)))
specs
let for_record_decl (env : env) (decl : PT.record_decl loced) =
let name, fields, _ = unloc decl in
let fields =
let get_field { pldesc = PT.Ffield (x, ty, e, _) } = (x, ty, e) in
List.map get_field fields in
let fields =
let for1 (x, pty, e) =
let ty = for_type env pty in
ty |> Option.iter (fun ty ->
if not (Type.Michelson.is_type ty) then
Env.emit_error env (loc pty, InvalidRecordFieldType));
let e = e |> Option.map (for_expr `Concrete env ?ety:ty) in
(x, ty, e) in
List.map for1 fields in
let _, fields = List.fold_left_map (fun seen (x, ty, e) ->
if Sid.mem (unloc x) seen then begin
Env.emit_error env (loc x, DuplicatedFieldInRecordDecl (unloc x));
(seen, None)
end else (Sid.add (unloc x) seen, Some (x, ty, e))) Sid.empty fields in
let fields = List.pmap (fun x -> x) fields in
let fields =
let for1 (x, ty, e) =
match check_and_emit_name_free env x, ty with
| true, Some ty -> Some { rfd_name = x; rfd_type = ty; rfd_dfl = e }
| _ , _ -> None in
List.pmap for1 fields in
if check_and_emit_name_free env name then
let rdecl = { rd_name = name; rd_fields = fields; } in
Env.Record.push env rdecl, Some rdecl
else (env, None)
let for_records_decl (env : env) (decls : PT.record_decl loced list) =
List.fold_left_map for_record_decl env decls
let for_acttx_decl
?(xspecs : PT.specfun loced list option) (env as topenv : env) (decl : acttx loced)
=
match unloc decl with
| `Entry (x, args, pt, i_exts, _exts) -> begin
let env, decl =
Env.inscope env (fun env ->
let env, args = for_args_decl env args in
let env, poeffect =
Option.foldmap (for_effect `Concrete) env (Option.fst i_exts) in
let effect = Option.map snd poeffect in
let poenv = Option.get_dfl env (Option.map fst poeffect) in
let env, (callby, reqs, fais, spec, funs) =
for_entry_properties (env, poenv) pt in
let env, xspec =
let myspec { plloc = xloc; pldesc = (kind, xname, xargs, xspec) } =
match kind with
| PT.SKentry ->
if unloc xname = unloc x then begin
let _, xargs = for_args_decl topenv xargs in
if not (named_sig_compatible args xargs) then
Env.emit_error env (xloc, IncompatibleSpecSig);
Some xspec
end else None
| _ -> None in
let env, items =
List.fold_left_map
(fun env spec -> for_specification `Local (env, poenv) spec)
env (List.pmap myspec (Option.get_dfl [] xspecs))
in env, List.flatten items in
let decl =
{ ad_name = x;
ad_args = List.pmap (fun x -> x) args;
ad_callby = Option.get_dfl [] callby;
ad_effect = Option.map (fun x -> `Raw x) effect;
ad_funs = funs;
ad_reqs = Option.get_dfl [] reqs;
ad_fais = Option.get_dfl [] fais;
ad_spec = Option.get_dfl [] spec @ xspec;
ad_actfs = pt.accept_transfer; } in
(env, decl))
in
if check_and_emit_name_free env x then
(Env.Tentry.push env decl, Some decl)
else (env, None)
end
| `Transition (x, args, tgt, from_, entrys, tx, _exts) ->
let env, decl =
Env.inscope env (fun env ->
let env, args = for_args_decl env args in
let env, enum, tgt =
let env, aout =
Option.foldbind (fun env (vtg, ttg) ->
Option.foldbind (fun env aname ->
let asset = Env.Asset.get env (unloc aname) in
let env =
if check_and_emit_name_free env vtg then
Env.Local.push env (vtg, asset.as_pkty)
else env in
let tgt = (vtg, asset) in
(env, Option.map (fun x -> (unloc x, tgt)) asset.as_state))
env (for_asset_keyof_type env ttg))
env tgt in
env, Option.map fst aout, Option.map snd aout in
let from_ = for_state_formula ?enum env from_ in
let env, (callby, reqs, fais, spec, funs) =
for_entry_properties (env, env) entrys in
let env, xspec =
let myspec { plloc = xloc; pldesc = (kind, xname, xargs, xspec) } =
match kind with
| PT.SKentry when unloc xname = unloc x ->
let _, xargs = for_args_decl topenv xargs in
if not (named_sig_compatible args xargs) then
Env.emit_error env (xloc, IncompatibleSpecSig);
Some xspec
| _ -> None in
let env, items =
List.fold_left_map
(fun env spec -> for_specification `Local (env, env) spec)
env (List.pmap myspec (Option.get_dfl [] xspecs))
in env, List.flatten items in
let env, tx =
List.fold_left_map (for_transition ?enum) env tx in
let decl =
{ ad_name = x;
ad_args = List.pmap (fun x -> x) args;
ad_callby = Option.get_dfl [] callby;
ad_effect = Some (`Tx (from_, tgt, tx));
ad_funs = funs;
ad_reqs = Option.get_dfl [] reqs;
ad_fais = Option.get_dfl [] fais;
ad_spec = Option.get_dfl [] spec @ xspec;
ad_actfs = entrys.accept_transfer; }
in (env, decl))
in
if check_and_emit_name_free env x then
(Env.Tentry.push env decl, Some decl)
else (env, None)
let for_acttxs_decl
(env : env) (decls : acttx loced list) (xspecs : PT.specfun loced list)
=
List.fold_left_map (for_acttx_decl ~xspecs) env decls
let for_specs_decl (env as poenv : env) (decls : PT.specification loced list) =
List.fold_left_map
(fun env { pldesc = x } -> for_specification `Global (env, poenv) x)
env decls
let for_secs_decl (env : env) (decls : PT.security loced list) =
List.fold_left_map
(fun env { pldesc = x } -> for_security env x)
env decls
let group_declarations (decls : (PT.declaration list)) =
let empty = {
gr_archetypes = [];
gr_states = [];
gr_enums = [];
gr_assets = [];
gr_records = [];
gr_vars = [];
gr_funs = [];
gr_acttxs = [];
gr_specs = [];
gr_specfuns = [];
gr_specvars = [];
gr_specassets = [];
gr_secs = [];
} in
let for1 { plloc = loc; pldesc = decl } (g : groups) =
let mk x = Location.mkloc loc x in
match decl with
| PT.Darchetype (x, exts) ->
{ g with gr_archetypes = mk (x, exts) :: g.gr_archetypes }
| PT.Dvariable infos ->
{ g with gr_vars = mk infos :: g.gr_vars }
| PT.Denum (PT.EKstate, infos) ->
{ g with gr_states = mk infos :: g.gr_states }
| PT.Denum (PT.EKenum x, infos) ->
{ g with gr_enums = mk (x, infos) :: g.gr_enums }
| PT.Dasset infos ->
{ g with gr_assets = mk infos :: g.gr_assets }
| PT.Drecord infos ->
{ g with gr_records = mk infos :: g.gr_records }
| PT.Dentry infos ->
{ g with gr_acttxs = mk (`Entry infos) :: g.gr_acttxs }
| PT.Dtransition infos ->
{ g with gr_acttxs = mk (`Transition infos) :: g.gr_acttxs }
| PT.Dfunction infos ->
{ g with gr_funs = mk infos :: g.gr_funs }
| PT.Dspecification infos ->
{ g with gr_specs = mk infos :: g.gr_specs }
| PT.Dsecurity infos ->
{ g with gr_secs = mk infos :: g.gr_secs }
| PT.Dspecfun infos ->
{ g with gr_specfuns = mk infos :: g.gr_specfuns }
| PT.Dspecvariable infos ->
{ g with gr_specvars = mk infos :: g.gr_specvars }
| PT.Dspecasset infos ->
{ g with gr_specassets = mk infos :: g.gr_specassets }
| Dnamespace _ -> assert false
| Dextension _ -> assert false
| Dinvalid -> assert false
in List.fold_right for1 decls empty
type decls = {
state : statedecl option;
variables : vardecl option list;
enums : statedecl option list;
records : recorddecl option list;
assets : assetdecl option list;
functions : env fundecl option list;
acttxs : env tentrydecl option list;
specs : env ispecification list list;
secspecs : A.security list;
}
let for_grouped_declarations (env : env) (toploc, g) =
if not (List.is_empty g.gr_archetypes) then
Env.emit_error env (toploc, InvalidArcheTypeDecl);
if List.length g.gr_states > 1 then
Env.emit_error env (toploc, MultipleStateDeclaration);
let state, stinv, env =
let for1 { plloc = loc; pldesc = state } =
match for_core_enum_decl env (mkloc loc (fst state)) with
| env, Some state -> Some (env, loc, state)
| _ , None -> None in
match List.pmap for1 g.gr_states with
| (env, loc, (init, ctors)) :: _ ->
let stinv = List.map snd ctors in
let ctors = List.map (fun (x, _) -> (x, [])) ctors in
let decl = { sd_name = mkloc loc ("$" ^ statename);
sd_state = true;
sd_ctors = ctors;
sd_init = init; } in
let vdecl = { vr_name = (mkloc loc statename);
vr_type = A.Tenum (mkloc loc ("$" ^ statename));
vr_kind = `Constant;
vr_invs = [];
vr_def = None;
vr_core = Some Cstate; } in
let env = Env.State.push env decl in
let env = Env.Var.push env vdecl in
(Some decl, Some stinv, env)
| _ ->
(None, None, env) in
let env, records = for_records_decl env g.gr_records in
let env, enums = for_enums_decl env g.gr_enums in
let enums, especs = List.split enums in
let env, variables = for_vars_decl env g.gr_vars in
let variables, vspecs = List.split variables in
let env, assets = for_assets_decl env g.gr_assets g.gr_specassets in
let () = for_asset_specs env g.gr_specassets in
let env, enums =
let check_enum_spec env (enum, spec) =
match spec with None -> env, enum | Some spec ->
let env, spec = List.fold_left_map for_lbls_formula env spec in
Option.foldmap (fun env enum ->
let sd_ctors =
List.map2 (fun (x, oinv) inv -> (x, oinv @ inv))
enum.sd_ctors spec in
let enum = { enum with sd_ctors } in
(Env.State.push env enum, enum)) env enum
in List.fold_left_map
check_enum_spec env
(List.combine (state :: enums) (stinv :: especs))
in
let env, variables =
let check_var_spec env (var, specs) =
let xspecs =
match var with
| Some var ->
List.pmap (fun { pldesc = ({ pldesc = xname }, xspec) } ->
if xname = unloc var.vr_name
then Some xspec
else None) g.gr_specvars
| None -> [] in
let specs = List.flatten (Option.get_as_list specs @ xspecs) in
match specs with [] -> env, var | _ ->
let env, spec = for_lbls_formula env specs in
let spec = List.map (fun (label, term) ->
A.{ label; term; error = None; loc = term.A.loc }
) spec in
Option.foldmap (fun env var ->
let var = { var with vr_invs = var.vr_invs @ spec } in
(Env.Var.push env var, var)) env var
in List.fold_left_map
check_var_spec env
(List.combine variables vspecs) in
let () = for_var_specs env g.gr_specvars in
let state = List.hd enums in
let enums = List.tl enums in
let env, specs = for_specs_decl env g.gr_specs in
let env, functions = for_funs_decl env g.gr_funs g.gr_specfuns in
let env, acttxs = for_acttxs_decl env g.gr_acttxs g.gr_specfuns in
let () = for_fun_specs env g.gr_specfuns in
let env, secspecs = for_secs_decl env g.gr_secs in
let output =
{ state ; variables; enums ; assets ; functions;
acttxs ; specs ; secspecs; records; }
in (env, output)
let enums_of_statedecl (enums : statedecl list) : A.enum list =
let for1 tg =
let for_ctor1 ((id, invs) : ctordecl) =
let invs = List.map (fun (label, inv) -> A.mk_label_term ?label inv) invs in
A.{ name = id;
initial = String.equal (unloc id) tg.sd_init;
invariants = invs;
loc = Location.dummy; } in
let items = List.map for_ctor1 tg.sd_ctors in
let kind =
if tg.sd_state then A.EKstate else A.EKenum tg.sd_name in
A.{ kind; items; loc = Location.dummy; }
in List.map for1 enums
let assets_of_adecls adecls =
let for1 (decl : assetdecl) =
let for_field fd =
A.{ name = fd.fd_name;
typ = Some fd.fd_type;
default = fd.fd_dfl;
shadow = fd.fd_ghost;
loc = loc fd.fd_name; } in
let spec (l, f) =
A.{ label = l; term = f; error = None; loc = f.loc } in
A.{ name = decl.as_name;
fields = List.map for_field decl.as_fields;
keys = decl.as_pk;
sort = decl.as_sortk;
big_map = decl.as_bm;
state = decl.as_state;
init = decl.as_init;
specs = List.map spec decl.as_invs;
loc = loc decl.as_name; }
in List.map for1 (List.pmap (fun x -> x) adecls)
let records_of_rdecls rdecls =
let for1 (decl : recorddecl) =
let for_field fd =
A.{ name = fd.rfd_name;
typ = Some fd.rfd_type;
default = fd.rfd_dfl;
shadow = false;
loc = loc fd.rfd_name; }
in
A.{ name = decl.rd_name;
fields = List.map for_field decl.rd_fields;
loc = loc decl.rd_name; }
in List.map for1 rdecls
let variables_of_vdecls fdecls =
let for1 (decl : vardecl) =
A.{ decl =
A.{ name = decl.vr_name;
typ = Some decl.vr_type;
default = Option.fst decl.vr_def;
shadow = false;
loc = loc decl.vr_name; };
constant = decl.vr_kind = `Constant;
invs = decl.vr_invs;
loc = loc decl.vr_name; }
in List.map for1 (List.pmap (fun x -> x) fdecls)
let specifications_of_ispecifications =
let env0 : A.lident A.specification = A.{
predicates = [];
definitions = [];
fails = [];
lemmas = [];
theorems = [];
variables = [];
invariants = [];
effect = None;
specs = [];
asserts = [];
loc = L.dummy; } in
let do1 (env : A.lident A.specification) (ispec : env ispecification) =
match ispec with
| `Postcondition (x, e, invs, uses) ->
let spec =
let for_inv (lbl, inv) =
A.{ label = lbl; formulas = inv }
in
A.{ name = x;
formula = e;
invariants = List.map for_inv invs;
uses = uses; }
in { env with A.specs = env.specs @ [spec] }
| `Asset (x, form, invs, uses) ->
let asst =
let for_inv (lbl, inv) =
A.{ label = lbl; formulas = inv }
in
A.{ name = x;
label = x;
formula = form;
invariants = List.map for_inv invs;
uses = uses; }
in { env with A.asserts = env.asserts @ [asst] }
| `Variable (x, e) ->
let var =
A.mk_variable ~loc:(loc x)
(A.mk_decl
~loc:(loc x) ?default:e
?typ:(Option.bind (fun e -> e.A.type_) e)
x)
in { env with A.variables = env.variables @ [var] }
| `Effect (_, i) ->
assert (Option.is_none env.A.effect);
{ env with A.effect = Some i; }
| `Predicate (defname, args, body) ->
let def = A.mk_predicate ~loc:(loc defname) defname ~args body in
{ env with A.predicates = env.predicates @ [def] }
| `Definition (defname, (x, xty), body) ->
let def = A.mk_definition ~loc:(loc defname) defname xty x body in
{ env with A.definitions = env.definitions @ [def] }
| `Fails fails ->
let fails = List.map (fun (id, arg, atype, f) -> A.mk_fail id arg atype f) fails in
{ env with A.fails = env.fails @ fails }
in fun ispecs -> List.fold_left do1 env0 ispecs
let functions_of_fdecls fdecls =
let for1 (decl : env fundecl) =
let args = List.map (fun (x, ty) -> A.{
name = x; typ = Some ty; default = None; shadow = false; loc = loc x;
}) decl.fs_args in
let specs =
if List.is_empty decl.fs_spec
then None
else Some (specifications_of_ispecifications decl.fs_spec) in
A.{ name = decl.fs_name;
kind = decl.fs_kind;
args = args;
body = decl.fs_body;
specification = specs;
return = decl.fs_retty;
loc = loc decl.fs_name; }
in List.map for1 (List.pmap (fun x -> x) fdecls)
let transentrys_of_tdecls tdecls =
let for_calledby cb : A.rexpr option =
match cb with [] -> None | c :: cb ->
let for1 = fun (x : A.pterm option loced) ->
let node =
Option.get_dfl A.Rany (Option.map (fun e -> A.Rexpr e) (unloc x))
in A.mk_sp ~loc:(loc x) node in
let aout = List.fold_left
(fun acc c' -> A.mk_sp (A.Ror (acc, for1 c')))
(for1 c) cb
in Some aout
in
let for1 tdecl =
let mkl (x, c, e) = A.{ label = x; term = c; error = e; loc = L.dummy; } in
let transition =
match tdecl.ad_effect with
| Some (`Tx (from_, tgt, x)) ->
let on =
Option.map (fun (on, asset) ->
let pkty = asset.as_pkty in
let stty = A.Tenum (Option.get asset.as_state) in
(on, pkty, asset.as_name, stty)
) tgt in
let trs = List.map (fun tx -> (tx.tx_state, tx.tx_when, tx.tx_effect)) x in
Some (A.{ from = from_; on; trs })
| _ -> None in
let effect =
match tdecl.ad_effect with
| Some (`Raw x) -> Some x | _ -> None in
A.{ name = tdecl.ad_name;
args =
List.map (fun (x, xty) ->
A.{ name = x; typ = Some xty; default = None; shadow = false; loc = loc x; })
tdecl.ad_args;
calledby = for_calledby tdecl.ad_callby;
accept_transfer = tdecl.ad_actfs;
require = Some (List.map mkl tdecl.ad_reqs);
failif = Some (List.map mkl tdecl.ad_fais);
transition = transition;
specification = Some (specifications_of_ispecifications tdecl.ad_spec);
functions = functions_of_fdecls tdecl.ad_funs;
effect = effect;
loc = loc tdecl.ad_name; }
in List.map for1 (List.pmap id tdecls)
let for_declarations (env : env) (decls : (PT.declaration list) loced) : A.ast =
let toploc = loc decls in
match unloc decls with
| { pldesc = Darchetype (x, _exts) } :: decls ->
let groups = group_declarations decls in
let _env, decls = for_grouped_declarations env (toploc, groups) in
A.mk_model
~decls:(
List.map (fun x -> A.Dvariable x) (variables_of_vdecls decls.variables) @
List.map (fun x -> A.Denum x) (enums_of_statedecl (List.pmap id (decls.state :: decls.enums))) @
List.map (fun x -> A.Drecord x) (records_of_rdecls (List.pmap id decls.records)) @
List.map (fun x -> A.Dasset x) (assets_of_adecls decls.assets)
)
~funs:(
List.map (fun x -> A.Ffunction x) (functions_of_fdecls decls.functions) @
List.map (fun x -> A.Ftransaction x) (transentrys_of_tdecls decls.acttxs)
)
~specifications:(List.map specifications_of_ispecifications decls.specs)
~securities:(decls.secspecs)
~loc:toploc
x
| _ ->
Env.emit_error env (loc decls, InvalidArcheTypeDecl);
{ (A.mk_model (mkloc (loc decls) "<unknown>")) with loc = loc decls }
let typing (env : env) (cmd : PT.archetype) =
match unloc cmd with
| Marchetype decls ->
for_declarations env (mkloc (loc cmd) decls)
| Mextension _ ->
assert false