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
|
(**************************************************************************)
(* Sail *)
(* *)
(* Copyright (c) 2013-2017 *)
(* Kathyrn Gray *)
(* Shaked Flur *)
(* Stephen Kell *)
(* Gabriel Kerneis *)
(* Robert Norton-Wright *)
(* Christopher Pulte *)
(* Peter Sewell *)
(* Alasdair Armstrong *)
(* Brian Campbell *)
(* Thomas Bauereiss *)
(* Anthony Fox *)
(* Jon French *)
(* Dominic Mulligan *)
(* Stephen Kell *)
(* Mark Wassell *)
(* *)
(* All rights reserved. *)
(* *)
(* This software was developed by the University of Cambridge Computer *)
(* Laboratory as part of the Rigorous Engineering of Mainstream Systems *)
(* (REMS) project, funded by EPSRC grant EP/K008528/1. *)
(* *)
(* Redistribution and use in source and binary forms, with or without *)
(* modification, are permitted provided that the following conditions *)
(* are met: *)
(* 1. Redistributions of source code must retain the above copyright *)
(* notice, this list of conditions and the following disclaimer. *)
(* 2. Redistributions in binary form must reproduce the above copyright *)
(* notice, this list of conditions and the following disclaimer in *)
(* the documentation and/or other materials provided with the *)
(* distribution. *)
(* *)
(* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' *)
(* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *)
(* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *)
(* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR *)
(* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, *)
(* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *)
(* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF *)
(* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND *)
(* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, *)
(* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT *)
(* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *)
(* SUCH DAMAGE. *)
(**************************************************************************)
open Type_check
open Ast
open Ast_util
open Rewriter
open PPrint
open Pretty_print_common
open Extra_pervasives
module StringSet = Set.Make(String)
let opt_undef_axioms = ref false
let opt_debug_on : string list ref = ref []
(****************************************************************************
* PPrint-based sail-to-coq pprinter
****************************************************************************)
type context = {
early_ret : bool;
kid_renames : kid KBindings.t; (* Plain tyvar -> tyvar renames *)
kid_id_renames : id KBindings.t; (* tyvar -> argument renames *)
bound_nvars : KidSet.t;
build_ex_return : bool;
debug : bool;
}
let empty_ctxt = {
early_ret = false;
kid_renames = KBindings.empty;
kid_id_renames = KBindings.empty;
bound_nvars = KidSet.empty;
build_ex_return = false;
debug = false;
}
let debug_depth = ref 0
let rec indent n = match n with
| 0 -> ""
| n -> "| " ^ indent (n - 1)
let debug ctxt m =
if ctxt.debug
then print_endline (indent !debug_depth ^ Lazy.force m)
else ()
let langlebar = string "<|"
let ranglebar = string "|>"
let anglebars = enclose langlebar ranglebar
let enclose_record = enclose (string "{| ") (string " |}")
let enclose_record_update = enclose (string "{[ ") (string " ]}")
let bigarrow = string "=>"
let separate_opt s f l = separate s (Util.map_filter f l)
let is_number_char c =
c = '0' || c = '1' || c = '2' || c = '3' || c = '4' || c = '5' ||
c = '6' || c = '7' || c = '8' || c = '9'
let is_enum env id =
match Env.lookup_id id env with
| Enum _ -> true
| _ -> false
let rec fix_id remove_tick name = match name with
| "assert"
| "lsl"
| "lsr"
| "asr"
| "type"
| "fun"
| "function"
| "raise"
| "try"
| "match"
| "with"
| "check"
| "field"
| "LT"
| "GT"
| "EQ"
| "Z"
| "O"
| "S"
| "mod"
| "M"
-> name ^ "'"
| _ ->
if String.contains name '#' then
fix_id remove_tick (String.concat "_" (Util.split_on_char '#' name))
else if String.contains name '?' then
fix_id remove_tick (String.concat "_pat_" (Util.split_on_char '?' name))
else if String.contains name '^' then
fix_id remove_tick (String.concat "__" (Util.split_on_char '^' name))
else if name.[0] = '\'' then
let var = String.sub name 1 (String.length name - 1) in
if remove_tick then fix_id remove_tick var else (var ^ "'")
else if is_number_char(name.[0]) then
("v" ^ name ^ "'")
else name
let string_id (Id_aux(i,_)) =
match i with
| Id i -> fix_id false i
| DeIid x -> Util.zencode_string ("op " ^ x)
let doc_id id = string (string_id id)
let doc_id_type (Id_aux(i,_)) =
match i with
| Id("int") -> string "Z"
| Id("real") -> string "R"
| Id i -> string (fix_id false i)
| DeIid x -> string (Util.zencode_string ("op " ^ x))
let doc_id_ctor (Id_aux(i,_)) =
match i with
| Id i -> string (fix_id false i)
| DeIid x -> string (Util.zencode_string ("op " ^ x))
let doc_var ctx kid =
match KBindings.find kid ctx.kid_id_renames with
| id -> doc_id id
| exception Not_found ->
string (fix_id true (string_of_kid (try KBindings.find kid ctx.kid_renames with Not_found -> kid)))
let doc_docstring (l, _) = match l with
| Parse_ast.Documented (str, _) -> string ("(*" ^ str ^ "*)") ^^ hardline
| _ -> empty
let simple_annot l typ = (Parse_ast.Generated l, Some (Env.empty, typ, no_effect))
let simple_num l n = E_aux (
E_lit (L_aux (L_num n, Parse_ast.Generated l)),
simple_annot (Parse_ast.Generated l)
(atom_typ (Nexp_aux (Nexp_constant n, Parse_ast.Generated l))))
let effectful_set = function
| [] -> false
| _ -> true
(*List.exists
(fun (BE_aux (eff,_)) ->
match eff with
| BE_rreg | BE_wreg | BE_rmem | BE_rmemt | BE_wmem | BE_eamem
| BE_exmem | BE_wmv | BE_wmvt | BE_barr | BE_depend | BE_nondet
| BE_escape -> true
| _ -> false)*)
let effectful (Effect_aux (Effect_set effs, _)) = effectful_set effs
let is_regtyp (Typ_aux (typ, _)) env = match typ with
| Typ_app(id, _) when string_of_id id = "register" -> true
| _ -> false
let doc_nexp ctx ?(skip_vars=KidSet.empty) nexp =
(* Print according to Coq's precedence rules *)
let rec plussub (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_sum (n1, n2) -> separate space [plussub n1; plus; mul n2]
| Nexp_minus (n1, n2) -> separate space [plussub n1; minus; mul n2]
| _ -> mul nexp
and mul (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_times (n1, n2) -> separate space [mul n1; star; uneg n2]
| _ -> uneg nexp
and uneg (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_neg n -> separate space [minus; uneg n]
| _ -> exp nexp
and exp (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_exp n -> separate space [string "2"; caret; exp n]
| _ -> app nexp
and app (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_app (Id_aux (Id "div",_), [n1;n2])
-> separate space [string "Z.quot"; atomic n1; atomic n2]
| Nexp_app (Id_aux (Id "mod",_), [n1;n2])
-> separate space [string "Z.rem"; atomic n1; atomic n2]
| Nexp_app (Id_aux (Id "abs_atom",_), [n1])
-> separate space [string "Z.abs"; atomic n1]
| _ -> atomic nexp
and atomic (Nexp_aux (n,l) as nexp) =
match n with
| Nexp_constant i -> string (Big_int.to_string i)
| Nexp_var v when KidSet.mem v skip_vars -> string "_"
| Nexp_var v -> doc_var ctx v
| Nexp_id id -> doc_id id
| Nexp_sum _ | Nexp_minus _ | Nexp_times _ | Nexp_neg _ | Nexp_exp _
| Nexp_app (Id_aux (Id ("div"|"mod"),_), [_;_])
| Nexp_app (Id_aux (Id "abs_atom",_), [_])
-> parens (plussub nexp)
| _ ->
raise (Reporting_basic.err_unreachable l __POS__
("cannot pretty-print nexp \"" ^ string_of_nexp nexp ^ "\""))
in atomic nexp
(* Rewrite mangled names of type variables to the original names *)
let rec orig_nexp (Nexp_aux (nexp, l)) =
let rewrap nexp = Nexp_aux (nexp, l) in
match nexp with
| Nexp_var kid -> rewrap (Nexp_var (orig_kid kid))
| Nexp_times (n1, n2) -> rewrap (Nexp_times (orig_nexp n1, orig_nexp n2))
| Nexp_sum (n1, n2) -> rewrap (Nexp_sum (orig_nexp n1, orig_nexp n2))
| Nexp_minus (n1, n2) -> rewrap (Nexp_minus (orig_nexp n1, orig_nexp n2))
| Nexp_exp n -> rewrap (Nexp_exp (orig_nexp n))
| Nexp_neg n -> rewrap (Nexp_neg (orig_nexp n))
| _ -> rewrap nexp
(* Returns the set of type variables that will appear in the Coq output,
which may be smaller than those in the Sail type. May need to be
updated with doc_typ *)
let rec coq_nvars_of_typ (Typ_aux (t,l)) =
let trec = coq_nvars_of_typ in
match t with
| Typ_id _ -> KidSet.empty
| Typ_var kid -> tyvars_of_nexp (orig_nexp (nvar kid))
| Typ_fn (t1,t2,_) -> KidSet.union (trec t1) (trec t2)
| Typ_tup ts ->
List.fold_left (fun s t -> KidSet.union s (trec t))
KidSet.empty ts
| Typ_app(Id_aux (Id "register", _), [Typ_arg_aux (Typ_arg_typ etyp, _)]) ->
trec etyp
| Typ_app(Id_aux (Id "implicit", _),_)
(* TODO: update when complex atom types are sorted out *)
| Typ_app(Id_aux (Id "atom", _), _) -> KidSet.empty
| Typ_app (_,tas) ->
List.fold_left (fun s ta -> KidSet.union s (coq_nvars_of_typ_arg ta))
KidSet.empty tas
(* TODO: remove appropriate bound variables *)
| Typ_exist (kids,_,t) -> trec t
| Typ_bidir _ -> unreachable l __POS__ "Coq doesn't support bidir types"
| Typ_internal_unknown -> unreachable l __POS__ "escaped Typ_internal_unknown"
and coq_nvars_of_typ_arg (Typ_arg_aux (ta,_)) =
match ta with
| Typ_arg_nexp nexp -> tyvars_of_nexp (orig_nexp nexp)
| Typ_arg_typ typ -> coq_nvars_of_typ typ
| Typ_arg_order _ -> KidSet.empty
(* Follows Coq precedence levels *)
let rec doc_nc_prop ctx nc =
let rec l85 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_or (nc1, nc2) -> doc_op (string "\\/") (doc_nc_prop ctx nc1) (doc_nc_prop ctx nc2)
| _ -> l80 nc_full
and l80 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_and (nc1, nc2) -> doc_op (string "/\\") (doc_nc_prop ctx nc1) (doc_nc_prop ctx nc2)
| _ -> l70 nc_full
and l70 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_equal (ne1, ne2) -> doc_op equals (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| NC_bounded_ge (ne1, ne2) -> doc_op (string ">=") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| NC_bounded_le (ne1, ne2) -> doc_op (string "<=") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| NC_not_equal (ne1, ne2) -> doc_op (string "<>") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| _ -> l10 nc_full
and l10 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_set (kid, is) ->
separate space [string "In"; doc_var ctx kid;
brackets (separate (string "; ")
(List.map (fun i -> string (Nat_big_num.to_string i)) is))]
| NC_true -> string "True"
| NC_false -> string "False"
| NC_or _
| NC_and _
| NC_equal _
| NC_bounded_ge _
| NC_bounded_le _
| NC_not_equal _ -> parens (l85 nc_full)
in l85 nc
(* Follows Coq precedence levels *)
let doc_nc_exp ctx nc =
let rec l70 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_equal (ne1, ne2) -> doc_op (string "=?") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| NC_bounded_ge (ne1, ne2) -> doc_op (string ">=?") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| NC_bounded_le (ne1, ne2) -> doc_op (string "<=?") (doc_nexp ctx ne1) (doc_nexp ctx ne2)
| _ -> l50 nc_full
and l50 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_or (nc1, nc2) -> doc_op (string "||") (l50 nc1) (l40 nc2)
| _ -> l40 nc_full
and l40 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_and (nc1, nc2) -> doc_op (string "&&") (l40 nc1) (l10 nc2)
| _ -> l10 nc_full
and l10 (NC_aux (nc,_) as nc_full) =
match nc with
| NC_not_equal (ne1, ne2) -> string "negb" ^^ space ^^ parens (doc_op (string "=?") (doc_nexp ctx ne1) (doc_nexp ctx ne2))
| NC_set (kid, is) ->
separate space [string "member_Z_list"; doc_var ctx kid;
brackets (separate (string "; ")
(List.map (fun i -> string (Nat_big_num.to_string i)) is))]
| NC_true -> string "true"
| NC_false -> string "false"
| NC_equal _
| NC_bounded_ge _
| NC_bounded_le _
| NC_or _
| NC_and _ -> parens (l70 nc_full)
in l70 nc
let maybe_expand_range_type (Typ_aux (typ,l) as full_typ) =
match typ with
| Typ_app(Id_aux (Id "range", _), [Typ_arg_aux(Typ_arg_nexp low,_);
Typ_arg_aux(Typ_arg_nexp high,_)]) ->
(* TODO: avoid name clashes *)
let kid = mk_kid "rangevar" in
let var = nvar kid in
let nc = nc_and (nc_lteq low var) (nc_lteq var high) in
Some (Typ_aux (Typ_exist ([kid], nc, atom_typ var),Parse_ast.Generated l))
| Typ_id (Id_aux (Id "nat",_)) ->
let kid = mk_kid "n" in
let var = nvar kid in
Some (Typ_aux (Typ_exist ([kid], nc_gteq var (nconstant Nat_big_num.zero), atom_typ var),
Parse_ast.Generated l))
| _ -> None
let expand_range_type typ = Util.option_default typ (maybe_expand_range_type typ)
let doc_arithfact ctxt ?(exists = []) ?extra nc =
let prop = doc_nc_prop ctxt nc in
let prop = match extra with
| None -> prop
| Some pp -> separate space [pp; string "/\\"; prop]
in
let prop =
match exists with
| [] -> prop
| _ -> separate space ([string "exists"]@(List.map (doc_var ctxt) exists)@[comma; prop])
in
string "ArithFact" ^^ space ^^ parens prop
let nice_and nc1 nc2 =
match nc1, nc2 with
| NC_aux (NC_true,_), _ -> nc2
| _, NC_aux (NC_true,_) -> nc1
| _,_ -> nc_and nc1 nc2
(* When making changes here, check whether they affect coq_nvars_of_typ *)
let doc_typ, doc_atomic_typ =
let fns ctx =
(* following the structure of parser for precedence *)
let rec typ ty = fn_typ true ty
and typ' ty = fn_typ false ty
and fn_typ atyp_needed ((Typ_aux (t, _)) as ty) = match t with
| Typ_fn(arg,ret,efct) ->
let ret_typ =
if effectful efct
then separate space [string "M"; fn_typ true ret]
else separate space [fn_typ false ret] in
let arg_typs = match arg with
| Typ_aux (Typ_tup typs, _) ->
List.map (app_typ false) typs
| _ -> [tup_typ false arg] in
let tpp = separate (space ^^ arrow ^^ space) (arg_typs @ [ret_typ]) in
(* once we have proper excetions we need to know what the exceptions type is *)
if atyp_needed then parens tpp else tpp
| _ -> tup_typ atyp_needed ty
and tup_typ atyp_needed ((Typ_aux (t, _)) as ty) = match t with
| Typ_tup typs ->
parens (separate_map (space ^^ star ^^ space) (app_typ false) typs)
| _ -> app_typ atyp_needed ty
and app_typ atyp_needed ((Typ_aux (t, l)) as ty) = match t with
| Typ_app(Id_aux (Id "vector", _), [
Typ_arg_aux (Typ_arg_nexp m, _);
Typ_arg_aux (Typ_arg_order ord, _);
Typ_arg_aux (Typ_arg_typ elem_typ, _)]) ->
(* TODO: remove duplication with exists, below *)
let tpp = match elem_typ with
| Typ_aux (Typ_id (Id_aux (Id "bit",_)),_) -> (* TODO: coq-compatible simplification *)
string "mword " ^^ doc_nexp ctx m
| _ -> string "vec" ^^ space ^^ typ elem_typ ^^ space ^^ doc_nexp ctx m in
if atyp_needed then parens tpp else tpp
| Typ_app(Id_aux (Id "register", _), [Typ_arg_aux (Typ_arg_typ etyp, _)]) ->
let tpp = string "register_ref regstate register_value " ^^ typ etyp in
if atyp_needed then parens tpp else tpp
| Typ_app(Id_aux (Id "range", _), _)
| Typ_id (Id_aux (Id "nat", _)) ->
(match maybe_expand_range_type ty with
| Some typ -> atomic_typ atyp_needed typ
| None -> raise (Reporting_basic.err_unreachable l __POS__ "Bad range type"))
| Typ_app(Id_aux (Id "implicit", _),_) ->
(string "Z")
| Typ_app(Id_aux (Id "atom", _), [Typ_arg_aux(Typ_arg_nexp n,_)]) ->
(string "Z")
| Typ_app(id,args) ->
let tpp = (doc_id_type id) ^^ space ^^ (separate_map space doc_typ_arg args) in
if atyp_needed then parens tpp else tpp
| _ -> atomic_typ atyp_needed ty
and atomic_typ atyp_needed ((Typ_aux (t, l)) as ty) = match t with
| Typ_id (Id_aux (Id "bool",_)) -> string "bool"
| Typ_id (Id_aux (Id "bit",_)) -> string "bitU"
| Typ_id (id) ->
(*if List.exists ((=) (string_of_id id)) regtypes
then string "register"
else*) doc_id_type id
| Typ_var v -> doc_var ctx v
| Typ_app _ | Typ_tup _ | Typ_fn _ ->
(* exhaustiveness matters here to avoid infinite loops
* if we add a new Typ constructor *)
let tpp = typ ty in
if atyp_needed then parens tpp else tpp
| Typ_exist (kids,nc,ty') -> begin
let kids,nc,ty' = match maybe_expand_range_type ty' with
| Some (Typ_aux (Typ_exist (kids',nc',ty'),_)) ->
kids'@kids,nc_and nc nc',ty'
| _ -> kids,nc,ty'
in
match ty' with
| Typ_aux (Typ_app (Id_aux (Id "atom",_),
[Typ_arg_aux (Typ_arg_nexp nexp,_)]),_) ->
begin match nexp, kids with
| (Nexp_aux (Nexp_var kid,_)), [kid'] when Kid.compare kid kid' == 0 ->
braces (separate space [doc_var ctx kid; colon; string "Z";
ampersand; doc_arithfact ctx nc])
| _ ->
let var = mk_kid "_atom" in (* TODO collision avoid *)
let nc = nice_and (nc_eq (nvar var) nexp) nc in
braces (separate space [doc_var ctx var; colon; string "Z";
ampersand; doc_arithfact ctx ~exists:kids nc])
end
| Typ_aux (Typ_app (Id_aux (Id "vector",_),
[Typ_arg_aux (Typ_arg_nexp m, _);
Typ_arg_aux (Typ_arg_order ord, _);
Typ_arg_aux (Typ_arg_typ elem_typ, _)]),_) ->
(* TODO: proper handling of m, complex elem type, dedup with above *)
let var = mk_kid "_vec" in (* TODO collision avoid *)
let kid_set = KidSet.of_list kids in
let m_pp = doc_nexp ctx ~skip_vars:kid_set m in
let tpp, len_pp = match elem_typ with
| Typ_aux (Typ_id (Id_aux (Id "bit",_)),_) ->
string "mword " ^^ m_pp, string "length_mword"
| _ -> string "vec" ^^ space ^^ typ elem_typ ^^ space ^^ m_pp,
string "vec_length" in
let length_constraint_pp =
if KidSet.is_empty (KidSet.inter kid_set (nexp_frees m))
then None
else Some (separate space [len_pp; doc_var ctx var; equals; doc_nexp ctx m])
in
braces (separate space
[doc_var ctx var; colon; tpp;
ampersand;
doc_arithfact ctx ~exists:kids ?extra:length_constraint_pp nc])
| _ ->
raise (Reporting_basic.err_todo l
("Non-atom existential type not yet supported in Coq: " ^
string_of_typ ty))
end
(*
let add_tyvar tpp kid =
braces (separate space [doc_var ctx kid; colon; string "Z"; ampersand; tpp])
in
match drop_duplicate_atoms kids ty with
| Some ty ->
let tpp = typ ty in
let tpp = match nc with NC_aux (NC_true,_) -> tpp | _ ->
braces (separate space [underscore; colon; parens (doc_arithfact ctx nc); ampersand; tpp])
in
List.fold_left add_tyvar tpp kids
| None ->
match nc with
(* | NC_aux (NC_true,_) -> List.fold_left add_tyvar (string "Z") (List.tl kids)*)
| _ -> List.fold_left add_tyvar (doc_arithfact ctx nc) kids
end*)
| Typ_bidir _ -> unreachable l __POS__ "Coq doesn't support bidir types"
| Typ_internal_unknown -> unreachable l __POS__ "escaped Typ_internal_unknown"
and doc_typ_arg (Typ_arg_aux(t,_)) = match t with
| Typ_arg_typ t -> app_typ true t
| Typ_arg_nexp n -> doc_nexp ctx n
| Typ_arg_order o -> empty
in typ', atomic_typ
in (fun ctx -> (fst (fns ctx))), (fun ctx -> (snd (fns ctx)))
(* Check for variables in types that would be pretty-printed and are not
bound in the val spec of the function. *)
let contains_t_pp_var ctxt (Typ_aux (t,a) as typ) =
KidSet.subset (coq_nvars_of_typ typ) ctxt.bound_nvars
(* TODO: should we resurrect this?
let replace_typ_size ctxt env (Typ_aux (t,a)) =
match t with
| Typ_app (Id_aux (Id "vector",_) as id, [Typ_arg_aux (Typ_arg_nexp size,_);ord;typ']) ->
begin
let mk_typ nexp =
Some (Typ_aux (Typ_app (id, [Typ_arg_aux (Typ_arg_nexp nexp,Parse_ast.Unknown);ord;typ']),a))
in
match Type_check.solve env size with
| Some n -> mk_typ (nconstant n)
| None ->
let is_equal nexp =
prove env (NC_aux (NC_equal (size,nexp),Parse_ast.Unknown))
in match List.find is_equal (NexpSet.elements ctxt.bound_nexps) with
| nexp -> mk_typ nexp
| exception Not_found -> None
end
| _ -> None*)
let doc_tannot ctxt env eff typ =
let of_typ typ =
let ta = doc_typ ctxt typ in
if eff then
if ctxt.early_ret
then string " : MR " ^^ parens ta ^^ string " _"
else string " : M " ^^ parens ta
else string " : " ^^ ta
in of_typ typ
let doc_lit (L_aux(lit,l)) =
match lit with
| L_unit -> utf8string "tt"
| L_zero -> utf8string "B0"
| L_one -> utf8string "B1"
| L_false -> utf8string "false"
| L_true -> utf8string "true"
| L_num i ->
let ipp = Big_int.to_string i in
utf8string ipp
| L_hex n -> failwith "Shouldn't happen" (*"(num_to_vec " ^ ("0x" ^ n) ^ ")" (*shouldn't happen*)*)
| L_bin n -> failwith "Shouldn't happen" (*"(num_to_vec " ^ ("0b" ^ n) ^ ")" (*shouldn't happen*)*)
| L_undef ->
utf8string "(Fail \"undefined value of unsupported type\")"
| L_string s -> utf8string ("\"" ^ s ^ "\"")
| L_real s ->
(* Lem does not support decimal syntax, so we translate a string
of the form "x.y" into the ratio (x * 10^len(y) + y) / 10^len(y).
The OCaml library has a conversion function from strings to floats, but
not from floats to ratios. ZArith's Q library does have the latter, but
using this would require adding a dependency on ZArith to Sail. *)
let parts = Util.split_on_char '.' s in
let (num, denom) = match parts with
| [i] -> (Big_int.of_string i, Big_int.of_int 1)
| [i;f] ->
let denom = Big_int.pow_int_positive 10 (String.length f) in
(Big_int.add (Big_int.mul (Big_int.of_string i) denom) (Big_int.of_string f), denom)
| _ ->
raise (Reporting_basic.Fatal_error
(Reporting_basic.Err_syntax_locn (l, "could not parse real literal"))) in
parens (separate space (List.map string [
"realFromFrac"; Big_int.to_string num; Big_int.to_string denom]))
let doc_quant_item_id ctx delimit (QI_aux (qi,_)) =
match qi with
| QI_id (KOpt_aux (KOpt_none kid,_)) ->
if KBindings.mem kid ctx.kid_id_renames then None else
Some (delimit (separate space [doc_var ctx kid; colon; string "Z"]))
| QI_id (KOpt_aux (KOpt_kind (K_aux (K_kind [BK_aux (kind,_)],_),kid),_)) -> begin
if KBindings.mem kid ctx.kid_id_renames then None else
match kind with
| BK_type -> Some (delimit (separate space [doc_var ctx kid; colon; string "Type"]))
| BK_int -> Some (delimit (separate space [doc_var ctx kid; colon; string "Z"]))
| BK_order -> None
end
| QI_id _ -> failwith "Quantifier with multiple kinds"
| QI_const nc -> None
let doc_quant_item_constr ctx delimit (QI_aux (qi,_)) =
match qi with
| QI_id _ -> None
| QI_const nc -> Some (bquote ^^ braces (doc_arithfact ctx nc))
let doc_typquant_items ctx delimit (TypQ_aux (tq,_)) =
match tq with
| TypQ_tq qis ->
separate_opt space (doc_quant_item_id ctx delimit) qis ^^
separate_opt space (doc_quant_item_constr ctx delimit) qis
| TypQ_no_forall -> empty
let doc_typquant_items_separate ctx delimit (TypQ_aux (tq,_)) =
match tq with
| TypQ_tq qis ->
Util.map_filter (doc_quant_item_id ctx delimit) qis,
Util.map_filter (doc_quant_item_constr ctx delimit) qis
| TypQ_no_forall -> [], []
let doc_typquant ctx (TypQ_aux(tq,_)) typ = match tq with
| TypQ_tq ((_ :: _) as qs) ->
string "forall " ^^ separate_opt space (doc_quant_item_id ctx braces) qs ^/^
separate_opt space (doc_quant_item_constr ctx parens) qs ^^ string ", " ^^ typ
| _ -> typ
(* Produce Size type constraints for bitvector sizes when using
machine words. Often these will be unnecessary, but this simple
approach will do for now. *)
let rec typeclass_nexps (Typ_aux(t,l)) =
match t with
| Typ_id _
| Typ_var _
-> NexpSet.empty
| Typ_fn (t1,t2,_) -> NexpSet.union (typeclass_nexps t1) (typeclass_nexps t2)
| Typ_tup ts -> List.fold_left NexpSet.union NexpSet.empty (List.map typeclass_nexps ts)
| Typ_app (Id_aux (Id "vector",_),
[Typ_arg_aux (Typ_arg_nexp size_nexp,_);
_;Typ_arg_aux (Typ_arg_typ (Typ_aux (Typ_id (Id_aux (Id "bit",_)),_)),_)])
| Typ_app (Id_aux (Id "itself",_),
[Typ_arg_aux (Typ_arg_nexp size_nexp,_)]) ->
let size_nexp = nexp_simp size_nexp in
if is_nexp_constant size_nexp then NexpSet.empty else
NexpSet.singleton (orig_nexp size_nexp)
| Typ_app _ -> NexpSet.empty
| Typ_exist (kids,_,t) -> NexpSet.empty (* todo *)
| Typ_bidir _ -> unreachable l __POS__ "Coq doesn't support bidir types"
| Typ_internal_unknown -> unreachable l __POS__ "escaped Typ_internal_unknown"
let doc_typschm ctx quants (TypSchm_aux(TypSchm_ts(tq,t),_)) =
let pt = doc_typ ctx t in
if quants then doc_typquant ctx tq pt else pt
let is_ctor env id = match Env.lookup_id id env with
| Enum _ -> true
| _ -> false
let is_auto_decomposed_exist env typ =
let typ = expand_range_type typ in
match destruct_exist env typ with
| Some (_, _, typ') -> Some typ'
| _ -> None
(*Note: vector concatenation, literal vectors, indexed vectors, and record should
be removed prior to pp. The latter two have never yet been seen
*)
let rec doc_pat ctxt apat_needed exists_as_pairs (P_aux (p,(l,annot)) as pat, typ) =
let env = env_of_annot (l,annot) in
let typ = Env.expand_synonyms env typ in
match exists_as_pairs, is_auto_decomposed_exist env typ with
| true, Some typ' ->
let pat_pp = doc_pat ctxt true true (pat, typ') in
let pat_pp = separate space [string "existT"; underscore; pat_pp; underscore] in
if apat_needed then parens pat_pp else pat_pp
| _ ->
match p with
(* Special case translation of the None constructor to remove the unit arg *)
| P_app(id, _) when string_of_id id = "None" -> string "None"
| P_app(id, ((_ :: _) as pats)) -> begin
(* Following the type checker to get the subpattern types, TODO perhaps ought
to persuade the type checker to output these somehow. *)
let (typq, ctor_typ) = Env.get_val_spec id env in
let untuple (Typ_aux (typ_aux, _) as typ) = match typ_aux with
| Typ_tup [Typ_aux (Typ_tup typs,_)] -> typs
| Typ_tup typs -> typs
| _ -> [typ]
in
let arg_typs =
match Env.expand_synonyms env ctor_typ with
| Typ_aux (Typ_fn (arg_typ, ret_typ, _), _) ->
(* The FIXME comes from the typechecker code, not sure what it's about... *)
let unifiers, _, _ (* FIXME! *) = unify l env ret_typ typ in
let arg_typ' = subst_unifiers unifiers arg_typ in
untuple arg_typ'
| _ -> assert false
in
let ppp = doc_unop (doc_id_ctor id)
(parens (separate_map comma (doc_pat ctxt true true) (List.combine pats arg_typs))) in
if apat_needed then parens ppp else ppp
end
| P_app(id, []) -> doc_id_ctor id
| P_lit lit -> doc_lit lit
| P_wild -> underscore
| P_id id -> doc_id id
| P_var(p,_) -> doc_pat ctxt true exists_as_pairs (p, typ)
| P_as(p,id) -> parens (separate space [doc_pat ctxt true exists_as_pairs (p, typ); string "as"; doc_id id])
| P_typ(ptyp,p) ->
let doc_p = doc_pat ctxt true exists_as_pairs (p, typ) in
doc_p
(* Type annotations aren't allowed everywhere in patterns in Coq *)
(*parens (doc_op colon doc_p (doc_typ typ))*)
| P_vector pats ->
let el_typ =
match destruct_vector env typ with
| Some (_,_,t) -> t
| None -> raise (Reporting_basic.err_unreachable l __POS__ "vector pattern doesn't have vector type")
in
let ppp = brackets (separate_map semi (fun p -> doc_pat ctxt true exists_as_pairs (p,el_typ)) pats) in
if apat_needed then parens ppp else ppp
| P_vector_concat pats ->
raise (Reporting_basic.err_unreachable l __POS__
"vector concatenation patterns should have been removed before pretty-printing")
| P_tup pats ->
let typs = match typ with
| Typ_aux (Typ_tup typs, _) -> typs
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "tuple pattern doesn't have tuple type")
in
(match pats, typs with
| [p], [typ'] -> doc_pat ctxt apat_needed exists_as_pairs (p, typ')
| [_], _ -> raise (Reporting_basic.err_unreachable l __POS__ "tuple pattern length does not match tuple type length")
| _ -> parens (separate_map comma_sp (doc_pat ctxt false exists_as_pairs) (List.combine pats typs)))
| P_list pats ->
let el_typ = match typ with
| Typ_aux (Typ_app (f, [Typ_arg_aux (Typ_arg_typ el_typ,_)]),_)
when Id.compare f (mk_id "list") = 0 -> el_typ
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "list pattern not a list")
in
brackets (separate_map semi (fun p -> doc_pat ctxt false true (p, el_typ)) pats)
| P_cons (p,p') ->
let el_typ = match typ with
| Typ_aux (Typ_app (f, [Typ_arg_aux (Typ_arg_typ el_typ,_)]),_)
when Id.compare f (mk_id "list") = 0 -> el_typ
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "list pattern not a list")
in
doc_op (string "::") (doc_pat ctxt true true (p, el_typ)) (doc_pat ctxt true true (p', typ))
| P_string_append _ -> unreachable l __POS__
"string append pattern found in Coq backend, should have been rewritten"
| P_not _ -> unreachable l __POS__ "Coq backend doesn't support not patterns"
| P_or _ -> unreachable l __POS__ "Coq backend doesn't support or patterns yet"
| P_record (_,_) -> empty (* TODO *)
let contains_early_return exp =
let e_app (f, args) =
let rets, args = List.split args in
(List.fold_left (||) (string_of_id f = "early_return") rets,
E_app (f, args)) in
fst (fold_exp
{ (Rewriter.compute_exp_alg false (||))
with e_return = (fun (_, r) -> (true, E_return r)); e_app = e_app } exp)
let find_e_ids exp =
let e_id id = IdSet.singleton id, E_id id in
fst (fold_exp
{ (compute_exp_alg IdSet.empty IdSet.union) with e_id = e_id } exp)
let typ_id_of (Typ_aux (typ, l)) = match typ with
| Typ_id id -> id
| Typ_app (register, [Typ_arg_aux (Typ_arg_typ (Typ_aux (Typ_id id, _)), _)])
when string_of_id register = "register" -> id
| Typ_app (id, _) -> id
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "failed to get type id")
(* TODO: maybe Nexp_exp, division? *)
(* Evaluation of constant nexp subexpressions, because Coq will be able to do those itself *)
let rec nexp_const_eval (Nexp_aux (n,l) as nexp) =
let binop f re l n1 n2 =
match nexp_const_eval n1, nexp_const_eval n2 with
| Nexp_aux (Nexp_constant c1,_), Nexp_aux (Nexp_constant c2,_) ->
Nexp_aux (Nexp_constant (f c1 c2),l)
| n1', n2' -> Nexp_aux (re n1' n2',l)
in
let unop f re l n1 =
match nexp_const_eval n1 with
| Nexp_aux (Nexp_constant c1,_) -> Nexp_aux (Nexp_constant (f c1),l)
| n1' -> Nexp_aux (re n1',l)
in
match n with
| Nexp_times (n1,n2) -> binop Big_int.mul (fun n1 n2 -> Nexp_times (n1,n2)) l n1 n2
| Nexp_sum (n1,n2) -> binop Big_int.add (fun n1 n2 -> Nexp_sum (n1,n2)) l n1 n2
| Nexp_minus (n1,n2) -> binop Big_int.sub (fun n1 n2 -> Nexp_minus (n1,n2)) l n1 n2
| Nexp_neg n1 -> unop Big_int.negate (fun n -> Nexp_neg n) l n1
| _ -> nexp
(* Decide whether two nexps used in a vector size are similar; if not
a cast will be inserted *)
let similar_nexps env n1 n2 =
let rec same_nexp_shape (Nexp_aux (n1,_)) (Nexp_aux (n2,_)) =
match n1, n2 with
| Nexp_id _, Nexp_id _ -> true
| Nexp_var k1, Nexp_var k2 -> prove env (nc_eq (nvar k1) (nvar k2))
| Nexp_constant c1, Nexp_constant c2 -> Nat_big_num.equal c1 c2
| Nexp_app (f1,args1), Nexp_app (f2,args2) ->
Id.compare f1 f2 == 0 && List.for_all2 same_nexp_shape args1 args2
| Nexp_times (n1,n2), Nexp_times (n3,n4)
| Nexp_sum (n1,n2), Nexp_sum (n3,n4)
| Nexp_minus (n1,n2), Nexp_minus (n3,n4)
-> same_nexp_shape n1 n3 && same_nexp_shape n2 n4
| Nexp_exp n1, Nexp_exp n2
| Nexp_neg n1, Nexp_neg n2
-> same_nexp_shape n1 n2
| _ -> false
in if same_nexp_shape (nexp_const_eval n1) (nexp_const_eval n2) then true else false
let constraint_fns = ["Z.leb"; "Z.geb"; "Z.ltb"; "Z.gtb"; "Z.eqb"; "neq_atom"]
let condition_produces_constraint exp =
(* Cheat a little - this isn't quite the right environment for subexpressions
but will have all of the relevant functions in it. *)
let env = env_of exp in
Rewriter.fold_exp
{ (Rewriter.pure_exp_alg false (||)) with
Rewriter.e_app = fun (f,bs) ->
List.exists (fun x -> x) bs ||
(let name = if Env.is_extern f env "coq"
then Env.get_extern f env "coq"
else string_id f in
List.exists (fun id -> String.compare name id == 0) constraint_fns)
} exp
(* For most functions whose return types are non-trivial atoms we return a
dependent pair with a proof that the result is the expected integer. This
is redundant for basic arithmetic functions and functions which we unfold
in the constraint solver. *)
let no_Z_proof_fns = ["Z.add"; "Z.sub"; "Z.opp"; "Z.mul"; "length_mword"; "length"]
let is_no_Z_proof_fn env id =
if Env.is_extern id env "coq"
then
let s = Env.get_extern id env "coq" in
List.exists (fun x -> String.compare x s == 0) no_Z_proof_fns
else false
let replace_atom_return_type ret_typ =
(* TODO: more complex uses of atom *)
match ret_typ with
| Typ_aux (Typ_app (Id_aux (Id "atom",_), [Typ_arg_aux (Typ_arg_nexp nexp,_)]),l) ->
let kid = mk_kid "_retval" in (* TODO: collision avoidance *)
true, Typ_aux (Typ_exist ([kid], nc_eq (nvar kid) nexp, atom_typ (nvar kid)),Parse_ast.Generated l)
| _ -> false, ret_typ
let is_range_from_atom env (Typ_aux (argty,_)) (Typ_aux (fnty,_)) =
match argty, fnty with
| Typ_app(Id_aux (Id "atom", _), [Typ_arg_aux (Typ_arg_nexp nexp,_)]),
Typ_app(Id_aux (Id "range", _), [Typ_arg_aux(Typ_arg_nexp low,_);
Typ_arg_aux(Typ_arg_nexp high,_)]) ->
Type_check.prove env (nc_and (nc_eq nexp low) (nc_eq nexp high))
| _ -> false
(* Get a more general type for an annotation/expression - i.e.,
like typ_of but using the expected type if there was one *)
let general_typ_of_annot annot =
match expected_typ_of annot with
| None -> typ_of_annot annot
| Some typ -> typ
let general_typ_of (E_aux (_,annot)) = general_typ_of_annot annot
let prefix_recordtype = true
let report = Reporting_basic.err_unreachable
let doc_exp, doc_let =
let rec top_exp (ctxt : context) (aexp_needed : bool)
(E_aux (e, (l,annot)) as full_exp) =
let top_exp c a e =
let () = debug_depth := !debug_depth + 1 in
let r = top_exp c a e in
let () = debug_depth := !debug_depth - 1 in
r
in
let expY = top_exp ctxt true in
let expN = top_exp ctxt false in
let expV = top_exp ctxt in
let wrap_parens doc = if aexp_needed then parens (doc) else doc in
let maybe_add_exist epp =
let env = env_of full_exp in
let typ = Env.expand_synonyms env (general_typ_of full_exp) in
let () =
debug ctxt (lazy ("Considering build_ex for " ^ string_of_exp full_exp));
debug ctxt (lazy (" at type " ^ string_of_typ typ))
in
let typ = expand_range_type typ in
match destruct_exist env typ with
| None -> epp
| Some _ ->
let epp = string "build_ex" ^/^ epp in
if aexp_needed then parens epp else epp
in
let rec construct_dep_pairs env =
let rec aux want_parens (E_aux (e,_) as exp) (Typ_aux (t,_) as typ) =
match e,t with
| E_tuple exps, Typ_tup typs
| E_cast (_, E_aux (E_tuple exps,_)), Typ_tup typs
->
parens (separate (string ", ") (List.map2 (aux false) exps typs))
| _ ->
let typ' = expand_range_type (Env.expand_synonyms (env_of exp) typ) in
let build_ex, out_typ =
match destruct_exist env typ' with
| Some (_,_,t) -> true, t
| None -> false, typ'
in
let in_typ = expand_range_type (Env.expand_synonyms (env_of exp) (typ_of exp)) in
let in_typ = match destruct_exist env in_typ with Some (_,_,t) -> t | None -> in_typ in
let autocast =
(* Avoid using helper functions which simplify the nexps *)
is_bitvector_typ in_typ && is_bitvector_typ out_typ &&
match in_typ, out_typ with
| Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n1,_);_;_]),_),
Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n2,_);_;_]),_) ->
not (similar_nexps (env_of exp) n1 n2)
| _ -> false
in
let exp_pp = expV (want_parens || autocast || build_ex) exp in
let exp_pp =
if autocast then
let exp_pp = string "autocast" ^^ space ^^ exp_pp in
if want_parens || build_ex then parens exp_pp else exp_pp
else exp_pp
in if build_ex then
let exp_pp = string "build_ex" ^^ space ^^ exp_pp in
if want_parens then parens exp_pp else exp_pp
else exp_pp
in aux
in
let liftR doc =
if ctxt.early_ret && effectful (effect_of full_exp)
then separate space [string "liftR"; parens (doc)]
else doc in
match e with
| E_assign((LEXP_aux(le_act,tannot) as le), e) ->
(* can only be register writes *)
(match le_act (*, t, tag*) with
| LEXP_vector_range (le,e2,e3) ->
(match le with
| LEXP_aux (LEXP_field ((LEXP_aux (_, lannot) as le),id), fannot) ->
if is_bit_typ (typ_of_annot fannot) then
raise (report l __POS__ "indexing a register's (single bit) bitfield not supported")
else
let field_ref =
doc_id (typ_id_of (typ_of_annot lannot)) ^^
underscore ^^
doc_id id in
liftR ((prefix 2 1)
(string "write_reg_field_range")
(align (doc_lexp_deref ctxt le ^/^
field_ref ^/^ expY e2 ^/^ expY e3 ^/^ expY e)))
| _ ->
let deref = doc_lexp_deref ctxt le in
liftR ((prefix 2 1)
(string "write_reg_range")
(align (deref ^/^ expY e2 ^/^ expY e3) ^/^ expY e)))
| LEXP_vector (le,e2) ->
(match le with
| LEXP_aux (LEXP_field ((LEXP_aux (_, lannot) as le),id), fannot) ->
if is_bit_typ (typ_of_annot fannot) then
raise (report l __POS__ "indexing a register's (single bit) bitfield not supported")
else
let field_ref =
doc_id (typ_id_of (typ_of_annot lannot)) ^^
underscore ^^
doc_id id in
let call = if is_bitvector_typ (Env.base_typ_of (env_of full_exp) (typ_of_annot fannot)) then "write_reg_field_bit" else "write_reg_field_pos" in
liftR ((prefix 2 1)
(string call)
(align (doc_lexp_deref ctxt le ^/^
field_ref ^/^ expY e2 ^/^ expY e)))
| LEXP_aux (_, lannot) ->
let deref = doc_lexp_deref ctxt le in
let call = if is_bitvector_typ (Env.base_typ_of (env_of full_exp) (typ_of_annot lannot)) then "write_reg_bit" else "write_reg_pos" in
liftR ((prefix 2 1) (string call)
(deref ^/^ expY e2 ^/^ expY e))
)
| LEXP_field ((LEXP_aux (_, lannot) as le),id) ->
let field_ref =
doc_id (typ_id_of (typ_of_annot lannot)) ^^
underscore ^^
doc_id id (*^^
dot ^^
string "set_field"*) in
liftR ((prefix 2 1)
(string "write_reg_field")
(doc_lexp_deref ctxt le ^^ space ^^
field_ref ^/^ expY e))
| LEXP_deref re ->
liftR ((prefix 2 1) (string "write_reg") (expY re ^/^ expY e))
| _ ->
liftR ((prefix 2 1) (string "write_reg") (doc_lexp_deref ctxt le ^/^ expY e)))
| E_vector_append(le,re) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_vector_append should have been rewritten before pretty-printing")
| E_cons(le,re) -> doc_op (group (colon^^colon)) (expY le) (expY re)
| E_if(c,t,e) ->
let epp = if_exp ctxt false c t e in
if aexp_needed then parens (align epp) else epp
| E_for(id,exp1,exp2,exp3,(Ord_aux(order,_)),exp4) ->
raise (report l __POS__ "E_for should have been rewritten before pretty-printing")
| E_loop _ ->
raise (report l __POS__ "E_loop should have been rewritten before pretty-printing")
| E_let(leb,e) ->
let epp = let_exp ctxt leb ^^ space ^^ string "in" ^^ hardline ^^ expN e in
if aexp_needed then parens epp else epp
| E_app(f,args) ->
begin match f with
| Id_aux (Id "and_bool", _) | Id_aux (Id "or_bool", _)
when effectful (effect_of full_exp) ->
let call = doc_id (append_id f "M") in
wrap_parens (hang 2 (flow (break 1) (call :: List.map expY args)))
(* temporary hack to make the loop body a function of the temporary variables *)
| Id_aux (Id "None", _) as none -> doc_id_ctor none
| Id_aux (Id "foreach", _) ->
begin
match args with
| [from_exp; to_exp; step_exp; ord_exp; vartuple; body] ->
let loopvar, body = match body with
| E_aux (E_let (LB_aux (LB_val (_, _), _),
E_aux (E_let (LB_aux (LB_val (_, _), _),
E_aux (E_if (_,
E_aux (E_let (LB_aux (LB_val (
((P_aux (P_typ (_, P_aux (P_var (P_aux (P_id id, _), _), _)), _))
| (P_aux (P_var (P_aux (P_id id, _), _), _))
| (P_aux (P_id id, _))), _), _),
body), _), _), _)), _)), _) -> id, body
| _ -> raise (Reporting_basic.err_unreachable l __POS__ ("Unable to find loop variable in " ^ string_of_exp body)) in
let dir = match ord_exp with
| E_aux (E_lit (L_aux (L_false, _)), _) -> "_down"
| E_aux (E_lit (L_aux (L_true, _)), _) -> "_up"
| _ -> raise (Reporting_basic.err_unreachable l __POS__ ("Unexpected loop direction " ^ string_of_exp ord_exp))
in
let combinator = if effectful (effect_of body) then "foreach_ZM" else "foreach_Z" in
let combinator = combinator ^ dir in
let used_vars_body = find_e_ids body in
let body_lambda =
(* Work around indentation issues in Lem when translating
tuple or literal unit patterns to Isabelle *)
match fst (uncast_exp vartuple) with
| E_aux (E_tuple _, _)
when not (IdSet.mem (mk_id "varstup") used_vars_body)->
separate space [string "fun"; doc_id loopvar; string "_"; string "varstup"; bigarrow]
^^ break 1 ^^
separate space [string "let"; squote ^^ expY vartuple; string ":= varstup in"]
| E_aux (E_lit (L_aux (L_unit, _)), _)
when not (IdSet.mem (mk_id "unit_var") used_vars_body) ->
separate space [string "fun"; doc_id loopvar; string "_"; string "unit_var"; bigarrow]
| _ ->
separate space [string "fun"; doc_id loopvar; string "_"; expY vartuple; bigarrow]
in
parens (
(prefix 2 1)
((separate space) [string combinator;
expY from_exp; expY to_exp; expY step_exp;
expY vartuple])
(parens
(prefix 2 1 (group body_lambda) (expN body))
)
)
| _ -> raise (Reporting_basic.err_unreachable l __POS__
"Unexpected number of arguments for loop combinator")
end
| Id_aux (Id (("while" | "until") as combinator), _) ->
begin
match args with
| [cond; varstuple; body] ->
let return (E_aux (e, a)) = E_aux (E_internal_return (E_aux (e, a)), a) in
let csuffix, cond, body =
match effectful (effect_of cond), effectful (effect_of body) with
| false, false -> "", cond, body
| false, true -> "M", return cond, body
| true, false -> "M", cond, return body
| true, true -> "M", cond, body
in
let used_vars_body = find_e_ids body in
let lambda =
(* Work around indentation issues in Lem when translating
tuple or literal unit patterns to Isabelle *)
match fst (uncast_exp varstuple) with
| E_aux (E_tuple _, _)
when not (IdSet.mem (mk_id "varstup") used_vars_body)->
separate space [string "fun varstup"; bigarrow] ^^ break 1 ^^
separate space [string "let"; squote ^^ expY varstuple; string ":= varstup in"]
| E_aux (E_lit (L_aux (L_unit, _)), _)
when not (IdSet.mem (mk_id "unit_var") used_vars_body) ->
separate space [string "fun unit_var"; bigarrow]
| _ ->
separate space [string "fun"; expY varstuple; bigarrow]
in
parens (
(prefix 2 1)
((separate space) [string (combinator ^ csuffix); expY varstuple])
((prefix 0 1)
(parens (prefix 2 1 (group lambda) (expN cond)))
(parens (prefix 2 1 (group lambda) (expN body))))
)
| _ -> raise (Reporting_basic.err_unreachable l __POS__
"Unexpected number of arguments for loop combinator")
end
| Id_aux (Id "early_return", _) ->
begin
match args with
| [exp] ->
let exp_pp =
if ctxt.build_ex_return
then parens (string "build_ex" ^/^ expY exp)
else expY exp
in
let epp = separate space [string "early_return"; exp_pp] in
let aexp_needed, tepp =
if contains_t_pp_var ctxt (typ_of exp) ||
contains_t_pp_var ctxt (typ_of full_exp) then
aexp_needed, epp
else
let tannot = separate space [string "MR";
doc_atomic_typ ctxt false (typ_of full_exp);
doc_atomic_typ ctxt false (typ_of exp)] in
true, doc_op colon epp tannot in
if aexp_needed then parens tepp else tepp
| _ -> raise (Reporting_basic.err_unreachable l __POS__
"Unexpected number of arguments for early_return builtin")
end
| _ ->
let env = env_of_annot (l,annot) in
let () = debug ctxt (lazy ("Function application " ^ string_of_id f)) in
let call, is_extern, is_ctor =
if Env.is_union_constructor f env then doc_id_ctor f, false, true else
if Env.is_extern f env "coq"
then string (Env.get_extern f env "coq"), true, false
else doc_id f, false, false in
let (tqs,fn_ty) = Env.get_val_spec_orig f env in
let arg_typs, ret_typ, eff = match fn_ty with
| Typ_aux (Typ_fn (arg_typ,ret_typ,eff),_) ->
(match arg_typ with
| Typ_aux (Typ_tup typs,_) -> typs, ret_typ, eff
| _ -> [arg_typ], ret_typ, eff)
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "Function not a function type")
in
let inst =
match instantiation_of_without_type full_exp with
| x -> x
(* Not all function applications can be inferred, so try falling back to the
type inferred when we know the target type.
TODO: there are probably some edge cases where this won't pick up a need
to cast. *)
| exception _ -> instantiation_of full_exp
in
let inst = KBindings.fold (fun k u m -> KBindings.add (orig_kid k) u m) inst KBindings.empty in
(* Insert existential packing of arguments where necessary *)
let doc_arg want_parens arg typ_from_fn =
let env = env_of arg in
let typ_from_fn = subst_unifiers inst typ_from_fn in
let typ_from_fn = Env.expand_synonyms env typ_from_fn in
(* TODO: more sophisticated check *)
let () =
debug ctxt (lazy (" arg type found " ^ string_of_typ (typ_of arg)));
debug ctxt (lazy (" arg type expected " ^ string_of_typ typ_from_fn))
in
let typ_of_arg = Env.expand_synonyms env (typ_of arg) in
let typ_of_arg = expand_range_type typ_of_arg in
let typ_of_arg' = match typ_of_arg with Typ_aux (Typ_exist (_,_,t),_) -> t | t -> t in
let typ_from_fn' = match typ_from_fn with Typ_aux (Typ_exist (_,_,t),_) -> t | t -> t in
let autocast =
(* Avoid using helper functions which simplify the nexps *)
is_bitvector_typ typ_of_arg' && is_bitvector_typ typ_from_fn' &&
match typ_of_arg', typ_from_fn' with
| Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n1,_);_;_]),_),
Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n2,_);_;_]),_) ->
not (similar_nexps env n1 n2)
| _ -> false
in
let want_parens1 = want_parens || autocast in
let arg_pp =
construct_dep_pairs env want_parens1 arg typ_from_fn
in
if autocast && false
then let arg_pp = string "autocast" ^^ space ^^ arg_pp in
if want_parens then parens arg_pp else arg_pp
else arg_pp
in
let epp =
if is_ctor
then hang 2 (call ^^ break 1 ^^ parens (flow (comma ^^ break 1) (List.map2 (doc_arg false) args arg_typs)))
else hang 2 (flow (break 1) (call :: List.map2 (doc_arg true) args arg_typs)) in
(* Decide whether to unpack an existential result, pack one, or cast.
To do this we compare the expected type stored in the checked expression
with the inferred type. *)
let ret_typ_inst =
subst_unifiers inst ret_typ
in
let packeff,unpack,autocast =
let ann_typ = Env.expand_synonyms env (general_typ_of_annot (l,annot)) in
let ann_typ = expand_range_type ann_typ in
let ret_typ_inst = expand_range_type (Env.expand_synonyms env ret_typ_inst) in
let ret_typ_inst =
if is_no_Z_proof_fn env f then ret_typ_inst
else snd (replace_atom_return_type ret_typ_inst) in
let () =
debug ctxt (lazy (" type returned " ^ string_of_typ ret_typ_inst));
debug ctxt (lazy (" type expected " ^ string_of_typ ann_typ))
in
let unpack, in_typ =
match ret_typ_inst with
| Typ_aux (Typ_exist (_,_,t1),_) -> true,t1
| t1 -> false,t1
in
let pack,out_typ =
match ann_typ with
| Typ_aux (Typ_exist (_,_,t1),_) -> true,t1
| t1 -> false,t1
in
let autocast =
(* Avoid using helper functions which simplify the nexps *)
is_bitvector_typ in_typ && is_bitvector_typ out_typ &&
match in_typ, out_typ with
| Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n1,_);_;_]),_),
Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n2,_);_;_]),_) ->
not (similar_nexps env n1 n2)
| _ -> false
in pack,unpack,autocast
in
let autocast_id, proj_id =
if effectful eff
then "autocast_m", "projT1_m"
else "autocast", "projT1" in
let epp = if unpack && not (effectful eff) then string proj_id ^^ space ^^ parens epp else epp in
let epp = if autocast then string autocast_id ^^ space ^^ parens epp else epp in
let epp =
if effectful eff && packeff && not unpack
then string "build_ex_m" ^^ space ^^ parens epp
else epp
in
liftR (if aexp_needed then parens (align epp) else epp)
end
| E_vector_access (v,e) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_vector_access should have been rewritten before pretty-printing")
| E_vector_subrange (v,e1,e2) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_vector_subrange should have been rewritten before pretty-printing")
| E_field((E_aux(_,(l,fannot)) as fexp),id) ->
(match destruct_tannot fannot with
| Some(env, (Typ_aux (Typ_id tid, _)), _)
| Some(env, (Typ_aux (Typ_app (tid, _), _)), _)
when Env.is_record tid env ->
let fname =
if prefix_recordtype && string_of_id tid <> "regstate"
then (string (string_of_id tid ^ "_")) ^^ doc_id id
else doc_id id in
expY fexp ^^ dot ^^ parens fname
| _ ->
raise (report l __POS__ "E_field expression with no register or record type"))
| E_block [] -> string "tt"
| E_block exps -> raise (report l __POS__ "Blocks should have been removed till now.")
| E_nondet exps -> raise (report l __POS__ "Nondet blocks not supported.")
| E_id id | E_ref id ->
let env = env_of full_exp in
let typ = typ_of full_exp in
let eff = effect_of full_exp in
let base_typ = Env.base_typ_of env typ in
if has_effect eff BE_rreg then
let epp = separate space [string "read_reg";doc_id (append_id id "_ref")] in
if is_bitvector_typ base_typ
then wrap_parens (align (group (prefix 0 1 (parens (liftR epp)) (doc_tannot ctxt env true base_typ))))
else liftR epp
else if Env.is_register id env then doc_id (append_id id "_ref")
else if is_ctor env id then doc_id_ctor id
else begin
match Env.lookup_id id env with
| Local (_,typ) ->
let exp_typ = expand_range_type (Env.expand_synonyms env typ) in
let ann_typ = general_typ_of full_exp in
let ann_typ = expand_range_type (Env.expand_synonyms env ann_typ) in
let () =
debug ctxt (lazy ("Variable " ^ string_of_id id ^ " with type " ^ string_of_typ typ));
debug ctxt (lazy (" expected type " ^ string_of_typ ann_typ))
in
doc_id id
| _ -> doc_id id
end
| E_lit lit -> doc_lit lit
| E_cast(typ,e) ->
let epp = expV true e in
let env = env_of_annot (l,annot) in
let outer_typ = Env.expand_synonyms env (general_typ_of_annot (l,annot)) in
let outer_typ = expand_range_type outer_typ in
let cast_typ = expand_range_type (Env.expand_synonyms env typ) in
let inner_typ = Env.expand_synonyms env (general_typ_of e) in
let inner_typ = expand_range_type inner_typ in
let () =
debug ctxt (lazy ("Cast of type " ^ string_of_typ cast_typ));
debug ctxt (lazy (" on expr of type " ^ string_of_typ inner_typ));
debug ctxt (lazy (" where type expected is " ^ string_of_typ outer_typ))
in
let outer_ex,outer_typ' =
match outer_typ with
| Typ_aux (Typ_exist (_,_,t1),_) -> true,t1
| t1 -> false,t1
in
let cast_ex,cast_typ' =
match cast_typ with
| Typ_aux (Typ_exist (_,_,t1),_) -> true,t1
| t1 -> false,t1
in
let inner_ex,inner_typ' =
match inner_typ with
| Typ_aux (Typ_exist (_,_,t1),_) -> true,t1
| t1 -> false,t1
in
let autocast =
(* Avoid using helper functions which simplify the nexps *)
is_bitvector_typ outer_typ' && is_bitvector_typ cast_typ' &&
match outer_typ', cast_typ' with
| Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n1,_);_;_]),_),
Typ_aux (Typ_app (_,[Typ_arg_aux (Typ_arg_nexp n2,_);_;_]),_) ->
not (similar_nexps env n1 n2)
| _ -> false
in
let effects = effectful (effect_of e) in
let epp =
if effects then
if inner_ex then
if cast_ex
then string "derive_m" ^^ space ^^ epp
else string "projT1_m" ^^ space ^^ epp
else if cast_ex
then string "build_ex_m" ^^ space ^^ epp
else epp
else if cast_ex
then string "build_ex" ^^ space ^^ epp
else epp
in
let epp = epp ^/^ doc_tannot ctxt (env_of e) effects typ in
let epp =
if effects then
if cast_ex && not outer_ex
then string "projT1_m" ^^ space ^^ parens epp
else epp
else if cast_ex
then string "projT1" ^^ space ^^ parens epp
else epp
in
let epp =
if autocast then
string (if effects then "autocast_m" else "autocast") ^^ space ^^ parens epp
else epp
in
if aexp_needed then parens epp else epp
| E_tuple exps ->
parens (align (group (separate_map (comma ^^ break 1) expN exps)))
| E_record(FES_aux(FES_Fexps(fexps,_),_)) ->
let recordtyp = match destruct_tannot annot with
| Some (env, Typ_aux (Typ_id tid,_), _)
| Some (env, Typ_aux (Typ_app (tid, _), _), _) ->
(* when Env.is_record tid env -> *)
tid
| _ -> raise (report l __POS__ ("cannot get record type from annot " ^ string_of_tannot annot ^ " of exp " ^ string_of_exp full_exp)) in
let epp = enclose_record (align (separate_map
(semi_sp ^^ break 1)
(doc_fexp ctxt recordtyp) fexps)) in
if aexp_needed then parens epp else epp
| E_record_update(e,(FES_aux(FES_Fexps(fexps,_),_))) ->
let recordtyp, env = match destruct_tannot annot with
| Some (env, Typ_aux (Typ_id tid,_), _)
| Some (env, Typ_aux (Typ_app (tid, _), _), _)
when Env.is_record tid env ->
tid, env
| _ -> raise (report l __POS__ ("cannot get record type from annot " ^ string_of_tannot annot ^ " of exp " ^ string_of_exp full_exp)) in
if List.length fexps > 1 then
let _,fields = Env.get_record recordtyp env in
let var, let_pp =
match e with
| E_aux (E_id id,_) -> id, empty
| _ -> let v = mk_id "_record" in (* TODO: collision avoid *)
v, separate space [string "let "; doc_id v; coloneq; top_exp ctxt true e; string "in"] ^^ break 1
in
let doc_field (_,id) =
match List.find (fun (FE_aux (FE_Fexp (id',_),_)) -> Id.compare id id' == 0) fexps with
| fexp -> doc_fexp ctxt recordtyp fexp
| exception Not_found ->
let fname =
if prefix_recordtype && string_of_id recordtyp <> "regstate"
then (string (string_of_id recordtyp ^ "_")) ^^ doc_id id
else doc_id id in
doc_op coloneq fname (doc_id var ^^ dot ^^ parens fname)
in let_pp ^^ enclose_record (align (separate_map (semi_sp ^^ break 1)
doc_field fields))
else
enclose_record_update (doc_op (string "with") (expY e) (separate_map semi_sp (doc_fexp ctxt recordtyp) fexps))
| E_vector exps ->
let t = Env.base_typ_of (env_of full_exp) (typ_of full_exp) in
let start, (len, order, etyp) =
if is_vector_typ t then vector_start_index t, vector_typ_args_of t
else raise (Reporting_basic.err_unreachable l __POS__
"E_vector of non-vector type") in
let dir,dir_out = if is_order_inc order then (true,"true") else (false, "false") in
let expspp =
match exps with
| [] -> empty
| e :: es ->
let (expspp,_) =
List.fold_left
(fun (pp,count) e ->
(pp ^^ semi ^^ (if count = 20 then break 0 else empty) ^^
expN e),
if count = 20 then 0 else count + 1)
(expN e,0) es in
align (group expspp) in
let epp = brackets expspp in
let (epp,aexp_needed) =
if is_bit_typ etyp then
let bepp = string "vec_of_bits" ^^ space ^^ align epp in
(align (group (prefix 0 1 bepp (doc_tannot ctxt (env_of full_exp) false t))), true)
else
let vepp = string "vec_of_list_len" ^^ space ^^ align epp in
(vepp,aexp_needed) in
if aexp_needed then parens (align epp) else epp
| E_vector_update(v,e1,e2) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_vector_update should have been rewritten before pretty-printing")
| E_vector_update_subrange(v,e1,e2,e3) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_vector_update should have been rewritten before pretty-printing")
| E_list exps ->
brackets (separate_map semi (expN) exps)
| E_case(e,pexps) ->
let only_integers e = expY e in
let epp =
group ((separate space [string "match"; only_integers e; string "with"]) ^/^
(separate_map (break 1) (doc_case ctxt (typ_of e)) pexps) ^/^
(string "end")) in
if aexp_needed then parens (align epp) else align epp
| E_try (e, pexps) ->
if effectful (effect_of e) then
let try_catch = if ctxt.early_ret then "try_catchR" else "try_catch" in
let epp =
(* TODO capture avoidance for __catch_val *)
group ((separate space [string try_catch; expY e; string "(fun __catch_val => match __catch_val with "]) ^/^
(separate_map (break 1) (doc_case ctxt exc_typ) pexps) ^/^
(string "end)")) in
if aexp_needed then parens (align epp) else align epp
else
raise (Reporting_basic.err_todo l "Warning: try-block around pure expression")
| E_throw e ->
let epp = liftR (separate space [string "throw"; expY e]) in
if aexp_needed then parens (align epp) else align epp
| E_exit e -> liftR (separate space [string "exit"; expY e])
| E_assert (e1,e2) ->
let epp = liftR (separate space [string "assert_exp"; expY e1; expY e2]) in
if aexp_needed then parens (align epp) else align epp
| E_app_infix (e1,id,e2) ->
raise (Reporting_basic.err_unreachable l __POS__
"E_app_infix should have been rewritten before pretty-printing")
| E_var(lexp, eq_exp, in_exp) ->
raise (report l __POS__ "E_vars should have been removed before pretty-printing")
| E_internal_plet (pat,e1,e2) ->
begin
let () =
debug ctxt (lazy ("Internal plet, pattern " ^ string_of_pat pat));
debug ctxt (lazy (" type of e1 " ^ string_of_typ (typ_of e1)))
in
match pat, e1, e2 with
| (P_aux (P_wild,_) | P_aux (P_typ (_, P_aux (P_wild, _)), _)),
(E_aux (E_assert (assert_e1,assert_e2),_)), _ ->
let epp = liftR (separate space [string "assert_exp'"; expY assert_e1; expY assert_e2]) in
let epp = infix 0 1 (string ">>= fun _ =>") epp (expN e2) in
if aexp_needed then parens (align epp) else align epp
(* Special case because we don't handle variables with nested existentials well yet.
TODO: check that id1 is not used in e2' *)
| ((P_aux (P_id id1,_)) | P_aux (P_typ (_, P_aux (P_id id1,_)),_)),
_,
(E_aux (E_let (LB_aux (LB_val (pat', E_aux (E_cast (typ', E_aux (E_id id2,_)),_)),_), e2'),_))
when Id.compare id1 id2 == 0 ->
let m_str, tail_pp = if ctxt.early_ret then "MR",[string "_"] else "M",[] in
let e1_pp = parens (separate space ([expY e1; colon;
string m_str;
parens (doc_typ ctxt typ')]@tail_pp)) in
let middle =
match pat' with
| P_aux (P_id id,_)
when Util.is_none (is_auto_decomposed_exist (env_of e1) (typ_of e1)) &&
not (is_enum (env_of e1) id) ->
separate space [string ">>= fun"; doc_id id; bigarrow]
| P_aux (P_typ (typ, P_aux (P_id id,_)),_)
when Util.is_none (is_auto_decomposed_exist (env_of e1) typ) &&
not (is_enum (env_of e1) id) ->
separate space [string ">>= fun"; doc_id id; colon; doc_typ ctxt typ; bigarrow] | _ ->
separate space [string ">>= fun"; squote ^^ doc_pat ctxt true true (pat', typ'); bigarrow]
in
infix 0 1 middle e1_pp (expN e2')
| _ ->
let epp =
let middle =
match pat with
| P_aux (P_wild,_) | P_aux (P_typ (_, P_aux (P_wild, _)), _) ->
string ">>"
| P_aux (P_id id,_)
when Util.is_none (is_auto_decomposed_exist (env_of e1) (typ_of e1)) &&
not (is_enum (env_of e1) id) ->
separate space [string ">>= fun"; doc_id id; bigarrow]
| P_aux (P_typ (typ, P_aux (P_id id,_)),_)
when Util.is_none (is_auto_decomposed_exist (env_of e1) typ) &&
not (is_enum (env_of e1) id) ->
separate space [string ">>= fun"; doc_id id; colon; doc_typ ctxt typ; bigarrow]
| P_aux (P_typ (typ, P_aux (P_id id,_)),_)
| P_aux (P_typ (typ, P_aux (P_var (P_aux (P_id id,_),_),_)),_)
| P_aux (P_var (P_aux (P_typ (typ, P_aux (P_id id,_)),_),_),_)
when not (is_enum (env_of e1) id) ->
let full_typ = (expand_range_type typ) in
let binder = match destruct_exist (env_of e1) full_typ with
| Some _ ->
squote ^^ parens (separate space [string "existT"; underscore; doc_id id; underscore; colon; doc_typ ctxt typ])
| _ ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ])
in separate space [string ">>= fun"; binder; bigarrow]
| _ ->
separate space [string ">>= fun"; squote ^^ doc_pat ctxt true true (pat, typ_of e1); bigarrow]
in
infix 0 1 middle (expY e1) (expN e2)
in
if aexp_needed then parens (align epp) else epp
end
| E_internal_return (e1) ->
let exp_typ = typ_of e1 in
let ret_typ = general_typ_of full_exp in
let () =
debug ctxt (lazy ("Monad return of " ^ string_of_exp e1));
debug ctxt (lazy (" with type " ^ string_of_typ exp_typ));
debug ctxt (lazy (" at type " ^ string_of_typ ret_typ))
in
let valpp =
let env = env_of e1 in
construct_dep_pairs env true e1 ret_typ
in
wrap_parens (align (separate space [string "returnm"; valpp]))
| E_sizeof nexp ->
(match nexp_simp nexp with
| Nexp_aux (Nexp_constant i, _) -> doc_lit (L_aux (L_num i, l))
| _ ->
raise (Reporting_basic.err_unreachable l __POS__
"pretty-printing non-constant sizeof expressions to Lem not supported"))
| E_return r ->
let ret_monad = " : MR" in
let exp_pp =
if ctxt.build_ex_return
then parens (string "build_ex" ^/^ expY r)
else expY r
in
let ta =
if contains_t_pp_var ctxt (typ_of full_exp) || contains_t_pp_var ctxt (typ_of r)
then empty
else separate space
[string ret_monad;
parens (doc_typ ctxt (typ_of full_exp));
parens (doc_typ ctxt (typ_of r))] in
align (parens (string "early_return" ^//^ exp_pp ^//^ ta))
| E_constraint nc -> wrap_parens (doc_nc_exp ctxt nc)
| E_internal_value _ ->
raise (Reporting_basic.err_unreachable l __POS__
"unsupported internal expression encountered while pretty-printing")
and if_exp ctxt (elseif : bool) c t e =
let if_pp = string (if elseif then "else if" else "if") in
let else_pp = match e with
| E_aux (E_if (c', t', e'), _)
| E_aux (E_cast (_, E_aux (E_if (c', t', e'), _)), _) ->
if_exp ctxt true c' t' e'
| _ -> prefix 2 1 (string "else") (top_exp ctxt false e)
in
(prefix 2 1
(soft_surround 2 1 if_pp
((if condition_produces_constraint c then string "sumbool_of_bool" ^^ space else empty)
^^ parens (top_exp ctxt true c)) (string "then"))
(top_exp ctxt false t)) ^^
break 1 ^^
else_pp
and let_exp ctxt (LB_aux(lb,_)) = match lb with
(* Prefer simple lets over patterns, because I've found Coq can struggle to
work out return types otherwise *)
| LB_val(P_aux (P_id id,_),e)
when Util.is_none (is_auto_decomposed_exist (env_of e) (typ_of e)) &&
not (is_enum (env_of e) id) ->
prefix 2 1
(separate space [string "let"; doc_id id; coloneq])
(top_exp ctxt false e)
| LB_val(P_aux (P_typ (typ,P_aux (P_id id,_)),_),e)
when Util.is_none (is_auto_decomposed_exist (env_of e) typ) &&
not (is_enum (env_of e) id) ->
prefix 2 1
(separate space [string "let"; doc_id id; colon; doc_typ ctxt typ; coloneq])
(top_exp ctxt false e)
| LB_val(P_aux (P_typ (typ,pat),_),(E_aux (_,e_ann) as e)) ->
prefix 2 1
(separate space [string "let"; squote ^^ doc_pat ctxt true false (pat, typ); coloneq])
(top_exp ctxt false (E_aux (E_cast (typ,e),e_ann)))
| LB_val(pat,e) ->
prefix 2 1
(separate space [string "let"; squote ^^ doc_pat ctxt true false (pat, typ_of e); coloneq])
(top_exp ctxt false e)
and doc_fexp ctxt recordtyp (FE_aux(FE_Fexp(id,e),_)) =
let fname =
if prefix_recordtype && string_of_id recordtyp <> "regstate"
then (string (string_of_id recordtyp ^ "_")) ^^ doc_id id
else doc_id id in
group (doc_op coloneq fname (top_exp ctxt true e))
and doc_case ctxt typ = function
| Pat_aux(Pat_exp(pat,e),_) ->
group (prefix 3 1 (separate space [pipe; doc_pat ctxt false false (pat,typ);bigarrow])
(group (top_exp ctxt false e)))
| Pat_aux(Pat_when(_,_,_),(l,_)) ->
raise (Reporting_basic.err_unreachable l __POS__
"guarded pattern expression should have been rewritten before pretty-printing")
and doc_lexp_deref ctxt ((LEXP_aux(lexp,(l,annot)))) = match lexp with
| LEXP_field (le,id) ->
parens (separate empty [doc_lexp_deref ctxt le;dot;doc_id id])
| LEXP_id id -> doc_id (append_id id "_ref")
| LEXP_cast (typ,id) -> doc_id (append_id id "_ref")
| LEXP_tup lexps -> parens (separate_map comma_sp (doc_lexp_deref ctxt) lexps)
| _ ->
raise (Reporting_basic.err_unreachable l __POS__ ("doc_lexp_deref: Unsupported lexp"))
(* expose doc_exp and doc_let *)
in top_exp, let_exp
let doc_type_union ctxt typ_name (Tu_aux(Tu_ty_id(typ,id),_)) =
separate space [doc_id_ctor id; colon;
doc_typ ctxt typ; arrow; typ_name]
let rec doc_range (BF_aux(r,_)) = match r with
| BF_single i -> parens (doc_op comma (doc_int i) (doc_int i))
| BF_range(i1,i2) -> parens (doc_op comma (doc_int i1) (doc_int i2))
| BF_concat(ir1,ir2) -> (doc_range ir1) ^^ comma ^^ (doc_range ir2)
let doc_typdef (TD_aux(td, (l, annot))) = match td with
| TD_abbrev(id,nm,(TypSchm_aux (TypSchm_ts (typq, _), _) as typschm)) ->
doc_op coloneq
(separate space [string "Definition"; doc_id_type id;
doc_typquant_items empty_ctxt parens typq;
colon; string "Type"])
(doc_typschm empty_ctxt false typschm) ^^ dot
| TD_record(id,nm,typq,fs,_) ->
let fname fid = if prefix_recordtype && string_of_id id <> "regstate"
then concat [doc_id id;string "_";doc_id_type fid;]
else doc_id_type fid in
let f_pp (typ,fid) =
concat [fname fid;space;colon;space;doc_typ empty_ctxt typ; semi] in
let rectyp = match typq with
| TypQ_aux (TypQ_tq qs, _) ->
let quant_item = function
| QI_aux (QI_id (KOpt_aux (KOpt_none kid, _)), l)
| QI_aux (QI_id (KOpt_aux (KOpt_kind (_, kid), _)), l) ->
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid, l)), l)]
| _ -> [] in
let targs = List.concat (List.map quant_item qs) in
mk_typ (Typ_app (id, targs))
| TypQ_aux (TypQ_no_forall, _) -> mk_id_typ id in
let fs_doc = group (separate_map (break 1) f_pp fs) in
let doc_update_field (_,fid) =
let idpp = fname fid in
let otherfield (_,fid') =
if Id.compare fid fid' == 0 then empty else
let idpp = fname fid' in
separate space [semi; idpp; string ":="; idpp; string "r"]
in
string "Notation \"{[ r 'with' '" ^^ idpp ^^ string "' := e ]}\" := ({| " ^^
idpp ^^ string " := e" ^^ concat (List.map otherfield fs) ^^
space ^^ string "|})."
in
let updates_pp = separate hardline (List.map doc_update_field fs) in
(* let doc_field (ftyp, fid) =
let reftyp =
mk_typ (Typ_app (Id_aux (Id "field_ref", Parse_ast.Unknown),
[mk_typ_arg (Typ_arg_typ rectyp);
mk_typ_arg (Typ_arg_typ ftyp)])) in
let rfannot = doc_tannot empty_ctxt env false reftyp in
let get, set =
string "rec_val" ^^ dot ^^ fname fid,
anglebars (space ^^ string "rec_val with " ^^
(doc_op equals (fname fid) (string "v")) ^^ space) in
let base_ftyp = match annot with
| Some (env, _, _) -> Env.base_typ_of env ftyp
| _ -> ftyp in
let (start, is_inc) =
try
let start, (_, ord, _) = vector_start_index base_ftyp, vector_typ_args_of base_ftyp in
match nexp_simp start with
| Nexp_aux (Nexp_constant i, _) -> (i, is_order_inc ord)
| _ ->
raise (Reporting_basic.err_unreachable Parse_ast.Unknown __POS__
("register " ^ string_of_id id ^ " has non-constant start index " ^ string_of_nexp start))
with
| _ -> (Big_int.zero, true) in
doc_op equals
(concat [string "let "; parens (concat [doc_id id; underscore; doc_id fid; rfannot])])
(anglebars (concat [space;
doc_op equals (string "field_name") (string_lit (doc_id fid)); semi_sp;
doc_op equals (string "field_start") (string (Big_int.to_string start)); semi_sp;
doc_op equals (string "field_is_inc") (string (if is_inc then "true" else "false")); semi_sp;
doc_op equals (string "get_field") (parens (doc_op arrow (string "fun rec_val") get)); semi_sp;
doc_op equals (string "set_field") (parens (doc_op arrow (string "fun rec_val v") set)); space])) in *)
doc_op coloneq
(separate space [string "Record"; doc_id_type id; doc_typquant_items empty_ctxt parens typq])
((*doc_typquant typq*) (braces (space ^^ align fs_doc ^^ space))) ^^
dot ^^ hardline ^^ updates_pp
| TD_variant(id,nm,typq,ar,_) ->
(match id with
| Id_aux ((Id "read_kind"),_) -> empty
| Id_aux ((Id "write_kind"),_) -> empty
| Id_aux ((Id "barrier_kind"),_) -> empty
| Id_aux ((Id "trans_kind"),_) -> empty
| Id_aux ((Id "instruction_kind"),_) -> empty
(* | Id_aux ((Id "regfp"),_) -> empty
| Id_aux ((Id "niafp"),_) -> empty
| Id_aux ((Id "diafp"),_) -> empty *)
| Id_aux ((Id "option"),_) -> empty
| _ ->
let id_pp = doc_id_type id in
let typ_nm = separate space [id_pp; doc_typquant_items empty_ctxt braces typq] in
let ar_doc = group (separate_map (break 1 ^^ pipe ^^ space) (doc_type_union empty_ctxt id_pp) ar) in
let typ_pp =
(doc_op coloneq)
(concat [string "Inductive"; space; typ_nm])
((*doc_typquant typq*) ar_doc) in
(* We declared the type parameters as implicit so that they're implicit
in the constructors. Currently Coq also makes them implicit in the
type, so undo that here. *)
let resetimplicit = separate space [string "Arguments"; id_pp; colon; string "clear implicits."] in
typ_pp ^^ dot ^^ hardline ^^ resetimplicit ^^ hardline ^^ hardline)
| TD_enum(id,nm,enums,_) ->
(match id with
| Id_aux ((Id "read_kind"),_) -> empty
| Id_aux ((Id "write_kind"),_) -> empty
| Id_aux ((Id "barrier_kind"),_) -> empty
| Id_aux ((Id "trans_kind"),_) -> empty
| Id_aux ((Id "instruction_kind"),_) -> empty
| Id_aux ((Id "regfp"),_) -> empty
| Id_aux ((Id "niafp"),_) -> empty
| Id_aux ((Id "diafp"),_) -> empty
| _ ->
let enums_doc = group (separate_map (break 1 ^^ pipe ^^ space) doc_id_ctor enums) in
let id_pp = doc_id_type id in
let typ_pp = (doc_op coloneq)
(concat [string "Inductive"; space; id_pp])
(enums_doc) in
let eq1_pp = string "Scheme Equality for" ^^ space ^^ id_pp ^^ dot in
let eq2_pp = string "Instance Decidable_eq_" ^^ id_pp ^^ space ^^ colon ^^ space ^^
string "forall (x y : " ^^ id_pp ^^ string "), Decidable (x = y) :=" ^/^
string "Decidable_eq_from_dec " ^^ id_pp ^^ string "_eq_dec." in
typ_pp ^^ dot ^^ hardline ^^ eq1_pp ^^ hardline ^^ eq2_pp ^^ hardline)
| _ -> raise (Reporting_basic.err_unreachable l __POS__ "register with non-constant indices")
let args_of_typ l env typs =
let arg i typ =
let id = mk_id ("arg" ^ string_of_int i) in
(P_aux (P_id id, (l, mk_tannot env typ no_effect)), typ),
E_aux (E_id id, (l, mk_tannot env typ no_effect)) in
List.split (List.mapi arg typs)
let rec untuple_args_pat typ (P_aux (paux, ((l, _) as annot)) as pat) =
let env = env_of_annot annot in
let tup_typs = match typ with
| Typ_aux (Typ_tup typs, _) -> Some typs
| _ -> match Env.expand_synonyms env typ with
| Typ_aux (Typ_tup typs, _) -> Some typs
| _ -> None
in
let identity = (fun body -> body) in
match paux, tup_typs with
| P_tup [], _ ->
let annot = (l, mk_tannot Env.empty unit_typ no_effect) in
[P_aux (P_lit (mk_lit L_unit), annot), unit_typ], identity
| P_tup pats, Some typs -> List.combine pats typs, identity
| P_tup pats, _ -> raise (Reporting_basic.err_unreachable l __POS__ "Tuple pattern against non-tuple type")
| P_wild, Some typs ->
let wild typ = P_aux (P_wild, (l, mk_tannot env typ no_effect)), typ in
List.map wild typs, identity
| P_typ (_, pat), _ -> untuple_args_pat typ pat
| P_as _, Some typs | P_id _, Some typs ->
let argpats, argexps = args_of_typ l env typs in
let argexp = E_aux (E_tuple argexps, annot) in
let bindargs (E_aux (_, bannot) as body) =
E_aux (E_let (LB_aux (LB_val (pat, argexp), annot), body), bannot) in
argpats, bindargs
| _, _ ->
[pat,typ], identity
let doc_rec (Rec_aux(r,_)) = match r with
| Rec_nonrec -> string "Definition"
| Rec_rec -> string "Fixpoint"
let doc_fun_body ctxt exp =
let doc_exp = doc_exp ctxt false exp in
if ctxt.early_ret
then align (string "catch_early_return" ^//^ parens (doc_exp))
else doc_exp
(* Coq doesn't support "as" patterns well in Definition binders, so we push
them over to the r.h.s. of the := *)
let demote_as_pattern i (P_aux (_,p_annot) as pat,typ) =
let open Rewriter in
if fst (fold_pat ({ (compute_pat_alg false (||)) with p_as = (fun ((_,p),id) -> true, P_as (p,id)) }) pat)
then
let id = mk_id ("arg" ^ string_of_int i) in (* TODO: name conflicts *)
(P_aux (P_id id, p_annot),typ),
fun (E_aux (_,e_ann) as e) ->
E_aux (E_let (LB_aux (LB_val (pat, E_aux (E_id id, p_annot)),p_annot),e),e_ann)
else (pat,typ), fun e -> e
(* Add equality constraints between arguments and nexps, except in the case
that they've been merged. *)
let rec atom_constraint ctxt (pat, typ) =
let typ = Env.base_typ_of (pat_env_of pat) typ in
match pat, typ with
| P_aux (P_id id, _),
Typ_aux (Typ_app (Id_aux (Id "atom",_),
[Typ_arg_aux (Typ_arg_nexp nexp,_)]),_) ->
(match nexp with
(* When the kid is mapped to the id, we don't need a constraint *)
| Nexp_aux (Nexp_var kid,_)
when (try Id.compare (KBindings.find kid ctxt.kid_id_renames) id == 0 with _ -> false) ->
None
| _ ->
Some (bquote ^^ braces (string "ArithFact" ^^ space ^^
parens (doc_op equals (doc_id id) (doc_nexp ctxt nexp)))))
| P_aux (P_typ (_,p),_), _ -> atom_constraint ctxt (p, typ)
| _ -> None
let all_ids pexp =
let open Rewriter in
fold_pexp (
{ (pure_exp_alg IdSet.empty IdSet.union) with
e_id = (fun id -> IdSet.singleton id);
e_ref = (fun id -> IdSet.singleton id);
e_app = (fun (id,ids) ->
List.fold_left IdSet.union (IdSet.singleton id) ids);
e_app_infix = (fun (ids1,id,ids2) ->
IdSet.add id (IdSet.union ids1 ids2));
e_for = (fun (id,ids1,ids2,ids3,_,ids4) ->
IdSet.add id (IdSet.union ids1 (IdSet.union ids2 (IdSet.union ids3 ids4))));
lEXP_id = IdSet.singleton;
lEXP_memory = (fun (id,ids) ->
List.fold_left IdSet.union (IdSet.singleton id) ids);
lEXP_cast = (fun (_,id) -> IdSet.singleton id);
pat_alg = { (pure_pat_alg IdSet.empty IdSet.union) with
p_as = (fun (ids,id) -> IdSet.add id ids);
p_id = IdSet.singleton;
p_app = (fun (id,ids) ->
List.fold_left IdSet.union (IdSet.singleton id) ids);
}
}) pexp
let tyvars_of_typquant (TypQ_aux (tq,_)) =
match tq with
| TypQ_no_forall -> KidSet.empty
| TypQ_tq qs -> List.fold_left KidSet.union KidSet.empty
(List.map tyvars_of_quant_item qs)
let mk_kid_renames ids_to_avoid kids =
let map_id = function
| Id_aux (Id i, _) -> Some (fix_id false i)
| Id_aux (DeIid _, _) -> None
in
let ids = StringSet.of_list (Util.map_filter map_id (IdSet.elements ids_to_avoid)) in
let rec check_kid kid (newkids,rebindings) =
let rec check kid1 =
let kid_string = fix_id true (string_of_kid kid1) in
if StringSet.mem kid_string ids
then let kid2 = match kid1 with Kid_aux (Var x,l) -> Kid_aux (Var (x ^ "0"),l) in
check kid2
else
KidSet.add kid1 newkids, KBindings.add kid kid1 rebindings
in check kid
in snd (KidSet.fold check_kid kids (kids, KBindings.empty))
let merge_kids_atoms pats =
let try_eliminate (gone,map,seen) = function
| P_aux (P_id id, ann), typ
| P_aux (P_typ (_,P_aux (P_id id, ann)),_), typ -> begin
match Type_check.destruct_atom_nexp (env_of_annot ann) typ with
| Some (Nexp_aux (Nexp_var kid,l)) ->
if KidSet.mem kid seen then
let () =
Reporting_basic.print_err false true l "merge_kids_atoms"
("want to merge tyvar and argument for " ^ string_of_kid kid ^
" but rearranging arguments isn't supported yet") in
gone,map,seen
else
KidSet.add kid gone, KBindings.add kid id map, KidSet.add kid seen
| _ -> gone,map,KidSet.union seen (tyvars_of_typ typ)
end
| _, typ -> gone,map,KidSet.union seen (tyvars_of_typ typ)
in
let gone,map,_ = List.fold_left try_eliminate (KidSet.empty, KBindings.empty, KidSet.empty) pats in
gone,map
let merge_var_patterns map pats =
let map,pats = List.fold_left (fun (map,pats) (pat, typ) ->
match pat with
| P_aux (P_var (P_aux (P_id id,_), TP_aux (TP_var kid,_)),ann) ->
KBindings.add kid id map, (P_aux (P_id id,ann), typ) :: pats
| _ -> map, (pat,typ)::pats) (map,[]) pats
in map, List.rev pats
let doc_funcl (FCL_aux(FCL_Funcl(id, pexp), annot)) =
let env = env_of_annot annot in
let (tq,typ) = Env.get_val_spec_orig id env in
let (arg_typ, ret_typ, eff) = match typ with
| Typ_aux (Typ_fn (arg_typ, ret_typ, eff),_) -> arg_typ, ret_typ, eff
| _ -> failwith ("Function " ^ string_of_id id ^ " does not have function type")
in
let build_ex, ret_typ = replace_atom_return_type ret_typ in
let build_ex = match destruct_exist env (expand_range_type ret_typ) with
| Some _ -> true
| _ -> build_ex
in
let ids_to_avoid = all_ids pexp in
let bound_kids = tyvars_of_typquant tq in
let pat,guard,exp,(l,_) = destruct_pexp pexp in
let pats, bind = untuple_args_pat arg_typ pat in
let pats, binds = List.split (Util.list_mapi demote_as_pattern pats) in
let eliminated_kids, kid_to_arg_rename = merge_kids_atoms pats in
let kid_to_arg_rename, pats = merge_var_patterns kid_to_arg_rename pats in
let kids_used = KidSet.diff bound_kids eliminated_kids in
let ctxt =
{ early_ret = contains_early_return exp;
kid_renames = mk_kid_renames ids_to_avoid kids_used;
kid_id_renames = kid_to_arg_rename;
bound_nvars = bound_kids;
build_ex_return = effectful eff && build_ex;
debug = List.mem (string_of_id id) (!opt_debug_on)
} in
let () =
debug ctxt (lazy ("Function " ^ string_of_id id));
debug ctxt (lazy (" return type " ^ string_of_typ ret_typ));
debug ctxt (lazy (" build_ex " ^ if build_ex then "needed" else "not needed"));
debug ctxt (lazy (if effectful eff then " effectful" else " pure"))
in
(* Put the constraints after pattern matching so that any type variable that's
been replaced by one of the term-level arguments is bound. *)
let quantspp, constrspp = doc_typquant_items_separate ctxt braces tq in
let exp = List.fold_left (fun body f -> f body) (bind exp) binds in
let used_a_pattern = ref false in
let doc_binder (P_aux (p,ann) as pat, typ) =
let env = env_of_annot ann in
let exp_typ = Env.expand_synonyms env typ in
match p with
| P_id id
| P_typ (_,P_aux (P_id id,_))
when Util.is_none (is_auto_decomposed_exist env exp_typ) &&
not (is_enum env id) ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ])
(* | P_id id
| P_typ (_,P_aux (P_id id,_))
when not (is_enum env id) -> begin
match destruct_exist env (expand_range_type exp_typ) with
| Some (kids, NC_aux (NC_true,_), typ) ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ])
| Some (kids, nc, typ) ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ]) ^^ space ^^
bquote ^^ braces (doc_arithfact ctxt nc)
| None ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ])
end*)
| P_id id
| P_typ (_,P_aux (P_id id,_))
when not (is_enum env id) -> begin
let full_typ = (expand_range_type exp_typ) in
match destruct_exist env full_typ with
| Some ([kid], NC_aux (NC_true,_),
Typ_aux (Typ_app (Id_aux (Id "atom",_),
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid',_)),_)]),_))
when Kid.compare kid kid' == 0 ->
parens (separate space [doc_id id; colon; string "Z"])
| Some ([kid], nc,
Typ_aux (Typ_app (Id_aux (Id "atom",_),
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid',_)),_)]),_))
when Kid.compare kid kid' == 0 ->
(used_a_pattern := true;
squote ^^ parens (separate space [string "existT"; underscore; doc_id id; underscore; colon; doc_typ ctxt typ]))
| _ ->
parens (separate space [doc_id id; colon; doc_typ ctxt typ])
end
| _ ->
(used_a_pattern := true;
squote ^^ parens (separate space [doc_pat ctxt true true (pat, exp_typ); colon; doc_typ ctxt typ]))
in
let patspp = separate_map space doc_binder pats in
let atom_constrs = Util.map_filter (atom_constraint ctxt) pats in
let atom_constr_pp = separate space atom_constrs in
let retpp =
if effectful eff
then string "M" ^^ space ^^ parens (doc_typ ctxt ret_typ)
else doc_typ ctxt ret_typ
in
let idpp = doc_id id in
(* Work around Coq bug 7975 about pattern binders followed by implicit arguments *)
let implicitargs =
if !used_a_pattern && List.length constrspp + List.length atom_constrs > 0 then
break 1 ^^ separate space
([string "Arguments"; idpp;] @
List.map (fun _ -> string "{_}") quantspp @
List.map (fun _ -> string "_") pats @
List.map (fun _ -> string "{_}") constrspp @
List.map (fun _ -> string "{_}") atom_constrs)
^^ dot
else empty
in
let _ = match guard with
| None -> ()
| _ ->
raise (Reporting_basic.err_unreachable l __POS__
"guarded pattern expression should have been rewritten before pretty-printing") in
let bodypp = doc_fun_body ctxt exp in
let bodypp = if effectful eff || not build_ex then bodypp else string "build_ex" ^^ parens bodypp in
group (prefix 3 1
(separate space ([idpp] @ quantspp @ [patspp] @ constrspp @ [atom_constr_pp]) ^/^
separate space [colon; retpp; coloneq])
(bodypp ^^ dot)) ^^ implicitargs
let get_id = function
| [] -> failwith "FD_function with empty list"
| (FCL_aux (FCL_Funcl (id,_),_))::_ -> id
(* Strictly speaking, Lem doesn't support multiple clauses for a single function
joined by "and", although it has worked for Isabelle before. However, all
the funcls should have been merged by the merge_funcls rewrite now. *)
let doc_fundef_rhs (FD_aux(FD_function(r, typa, efa, funcls),fannot)) =
separate_map (hardline ^^ string "and ") doc_funcl funcls
let doc_mutrec = function
| [] -> failwith "DEF_internal_mutrec with empty function list"
| fundefs ->
string "let rec " ^^
separate_map (hardline ^^ string "and ") doc_fundef_rhs fundefs
let rec doc_fundef (FD_aux(FD_function(r, typa, efa, fcls),fannot)) =
match fcls with
| [] -> failwith "FD_function with empty function list"
| [FCL_aux (FCL_Funcl(id,_),annot) as funcl]
when not (Env.is_extern id (env_of_annot annot) "coq") ->
(doc_rec r) ^^ space ^^ (doc_funcl funcl)
| [_] -> empty (* extern *)
| _ -> failwith "FD_function with more than one clause"
let doc_dec (DEC_aux (reg, ((l, _) as annot))) =
match reg with
| DEC_reg(typ,id) -> empty
(*
let env = env_of_annot annot in
let rt = Env.base_typ_of env typ in
if is_vector_typ rt then
let start, (size, order, etyp) = vector_start_index rt, vector_typ_args_of rt in
if is_bit_typ etyp && is_nexp_constant start && is_nexp_constant size then
let o = if is_order_inc order then "true" else "false" in
(doc_op equals)
(string "let" ^^ space ^^ doc_id id)
(string "Register" ^^ space ^^
align (separate space [string_lit(doc_id id);
doc_nexp (size);
doc_nexp (start);
string o;
string "[]"]))
^/^ hardline
else raise (Reporting_basic.err_unreachable l __POS__ ("can't deal with register type " ^ string_of_typ typ))
else raise (Reporting_basic.err_unreachable l __POS__ ("can't deal with register type " ^ string_of_typ typ)) *)
| DEC_config _ -> empty
| DEC_alias(id,alspec) -> empty
| DEC_typ_alias(typ,id,alspec) -> empty
let is_field_accessor regtypes fdef =
let is_field_of regtyp field =
List.exists (fun (tname, (_, _, fields)) -> tname = regtyp &&
List.exists (fun (_, fid) -> string_of_id fid = field) fields) regtypes in
match Util.split_on_char '_' (string_of_id (id_of_fundef fdef)) with
| [access; regtyp; field] ->
(access = "get" || access = "set") && is_field_of regtyp field
| _ -> false
let doc_regtype_fields (tname, (n1, n2, fields)) =
let i1, i2 = match n1, n2 with
| Nexp_aux(Nexp_constant i1,_),Nexp_aux(Nexp_constant i2,_) -> i1, i2
| _ -> raise (Reporting_basic.err_typ Parse_ast.Unknown
("Non-constant indices in register type " ^ tname)) in
let dir_b = i1 < i2 in
let dir = (if dir_b then "true" else "false") in
let doc_field (fr, fid) =
let i, j = match fr with
| BF_aux (BF_single i, _) -> (i, i)
| BF_aux (BF_range (i, j), _) -> (i, j)
| _ -> raise (Reporting_basic.err_unreachable Parse_ast.Unknown __POS__
("Unsupported type in field " ^ string_of_id fid ^ " of " ^ tname)) in
let fsize = Big_int.succ (Big_int.abs (Big_int.sub i j)) in
(* TODO Assumes normalised, decreasing bitvector slices; however, since
start indices or indexing order do not appear in Lem type annotations,
this does not matter. *)
let ftyp = vector_typ (nconstant fsize) dec_ord bit_typ in
let reftyp =
mk_typ (Typ_app (Id_aux (Id "field_ref", Parse_ast.Unknown),
[mk_typ_arg (Typ_arg_typ (mk_id_typ (mk_id tname)));
mk_typ_arg (Typ_arg_typ ftyp)])) in
let rfannot = doc_tannot empty_ctxt Env.empty false reftyp in
doc_op equals
(concat [string "let "; parens (concat [string tname; underscore; doc_id fid; rfannot])])
(concat [
space; langlebar; string " field_name = \"" ^^ doc_id fid ^^ string "\";"; hardline;
space; space; space; string (" field_start = " ^ Big_int.to_string i ^ ";"); hardline;
space; space; space; string (" field_is_inc = " ^ dir ^ ";"); hardline;
space; space; space; string (" get_field = get_" ^ tname ^ "_" ^ string_of_id fid ^ ";"); hardline;
space; space; space; string (" set_field = set_" ^ tname ^ "_" ^ string_of_id fid ^ " "); ranglebar])
in
separate_map hardline doc_field fields
(* Remove some type variables in a similar fashion to merge_kids_atoms *)
let doc_axiom_typschm typ_env (TypSchm_aux (TypSchm_ts (tqs,typ),l) as ts) =
let typ_env = add_typquant l tqs typ_env in
match typ with
| Typ_aux (Typ_fn (args_ty, ret_ty, eff),l') ->
let check_typ (args,used) typ =
match Type_check.destruct_atom_nexp typ_env typ with
| Some (Nexp_aux (Nexp_var kid,_)) ->
if KidSet.mem kid used then args,used else
KidSet.add kid args, used
| Some _ -> args, used
| _ -> args, KidSet.union used (tyvars_of_typ typ)
in
let typs = match args_ty with Typ_aux (Typ_tup typs,_) -> typs | _ -> [args_ty] in
let args, used = List.fold_left check_typ (KidSet.empty, KidSet.empty) typs in
let used = if is_number ret_ty then used else KidSet.union used (tyvars_of_typ ret_ty) in
let tqs = match tqs with
| TypQ_aux (TypQ_tq qs,l) -> TypQ_aux (TypQ_tq (List.filter (function
| QI_aux (QI_id kopt,_) when is_nat_kopt kopt ->
let kid = kopt_kid kopt in
KidSet.mem kid used && not (KidSet.mem kid args)
| _ -> true) qs),l)
| _ -> tqs
in
let doc_typ' typ =
match Type_check.destruct_atom_nexp typ_env typ with
| Some (Nexp_aux (Nexp_var kid,_)) when KidSet.mem kid args ->
parens (doc_var empty_ctxt kid ^^ string " : Z")
| _ -> parens (underscore ^^ string " : " ^^ doc_typ empty_ctxt typ)
in
let arg_typs_pp = separate space (List.map doc_typ' typs) in
let _, ret_ty = replace_atom_return_type ret_ty in
let ret_typ_pp = doc_typ empty_ctxt ret_ty in
let ret_typ_pp =
if effectful eff
then string "M" ^^ space ^^ parens ret_typ_pp
else ret_typ_pp
in
let tyvars_pp, constrs_pp = doc_typquant_items_separate empty_ctxt braces tqs in
string "forall" ^/^ separate space tyvars_pp ^/^
arg_typs_pp ^/^ separate space constrs_pp ^^ comma ^/^ ret_typ_pp
| _ -> doc_typschm empty_ctxt true ts
let doc_val_spec unimplemented (VS_aux (VS_val_spec(tys,id,_,_),ann)) =
if !opt_undef_axioms && IdSet.mem id unimplemented then
let typ_env = env_of_annot ann in
group (separate space
[string "Axiom"; doc_id id; colon; doc_axiom_typschm typ_env tys] ^^ dot) ^/^ hardline
else empty (* Type signatures appear in definitions *)
(* If a top-level value is declared with an existential type, we turn it into
a type annotation expression instead (unless it duplicates an existing one). *)
let doc_val pat exp =
let (id,pat_typ) = match pat with
| P_aux (P_typ (typ, P_aux (P_id id,_)),_) -> id, Some typ
| P_aux (P_id id, _) -> id, None
| P_aux (P_var (P_aux (P_id id, _), TP_aux (TP_var kid, _)),_) when Id.compare id (id_of_kid kid) == 0 ->
id, None
| P_aux (P_typ (typ, P_aux (P_var (P_aux (P_id id, _), TP_aux (TP_var kid, _)),_)),_) when Id.compare id (id_of_kid kid) == 0 ->
id, Some typ
| _ -> raise (Reporting_basic.err_todo (pat_loc pat)
"Top-level value definition with complex pattern not supported for Coq yet")
in
let typpp = match pat_typ with
| None -> empty
| Some typ -> space ^^ colon ^^ space ^^ doc_typ empty_ctxt typ
in
let env = env_of exp in
let ctxt = { empty_ctxt with debug = List.mem (string_of_id id) (!opt_debug_on) } in
let typpp, exp =
match pat_typ with
| None -> typpp, exp
| Some typ ->
let typ = expand_range_type (Env.expand_synonyms env typ) in
match destruct_exist env typ with
| None -> typpp, exp
| Some _ ->
empty, match exp with
| E_aux (E_cast (typ',_),_) when alpha_equivalent env typ typ' -> exp
| _ -> E_aux (E_cast (typ,exp), (Parse_ast.Unknown, mk_tannot env typ (effect_of exp)))
in
let idpp = doc_id id in
let base_pp = doc_exp ctxt false exp ^^ dot in
group (string "Definition" ^^ space ^^ idpp ^^ typpp ^^ space ^^ coloneq ^/^ base_pp) ^^ hardline ^^
group (separate space [string "Hint Unfold"; idpp; colon; string "sail."]) ^^ hardline
let rec doc_def unimplemented def =
(* let _ = Pretty_print_sail.pp_defs stderr (Defs [def]) in *)
match def with
| DEF_spec v_spec -> doc_val_spec unimplemented v_spec
| DEF_fixity _ -> empty
| DEF_overload _ -> empty
| DEF_type t_def -> group (doc_typdef t_def) ^/^ hardline
| DEF_reg_dec dec -> group (doc_dec dec)
| DEF_default df -> empty
| DEF_fundef fdef -> group (doc_fundef fdef) ^/^ hardline
| DEF_internal_mutrec fundefs -> doc_mutrec fundefs ^/^ hardline
| DEF_val (LB_aux (LB_val (pat, exp), _)) -> doc_val pat exp
| DEF_scattered sdef -> failwith "doc_def: shoulnd't have DEF_scattered at this point"
| DEF_mapdef (MD_aux (_, (l,_))) -> unreachable l __POS__ "Coq doesn't support mappings"
| DEF_kind _ -> empty
let find_exc_typ defs =
let is_exc_typ_def = function
| DEF_type td -> string_of_id (id_of_type_def td) = "exception"
| _ -> false in
if List.exists is_exc_typ_def defs then "exception" else "unit"
let find_unimplemented defs =
let adjust_def unimplemented = function
| DEF_spec (VS_aux (VS_val_spec (_,id,ext,_),_)) -> begin
match ext "coq" with
| Some _ -> unimplemented
| None -> IdSet.add id unimplemented
end
| DEF_fundef (FD_aux (FD_function (_,_,_,funcls),_)) -> begin
match funcls with
| [] -> unimplemented
| (FCL_aux (FCL_Funcl (id,_),_))::_ ->
IdSet.remove id unimplemented
end
| _ -> unimplemented
in
List.fold_left adjust_def IdSet.empty defs
let pp_defs_coq (types_file,types_modules) (defs_file,defs_modules) (Defs defs) top_line =
try
(* let regtypes = find_regtypes d in *)
let state_ids =
State.generate_regstate_defs true defs
|> Initial_check.val_spec_ids
in
let is_state_def = function
| DEF_spec vs -> IdSet.mem (id_of_val_spec vs) state_ids
| DEF_fundef fd -> IdSet.mem (id_of_fundef fd) state_ids
| _ -> false
in
let is_typ_def = function
| DEF_type _ -> true
| _ -> false
in
let exc_typ = find_exc_typ defs in
let typdefs, defs = List.partition is_typ_def defs in
let statedefs, defs = List.partition is_state_def defs in
let register_refs = State.register_refs_coq (State.find_registers defs) in
let unimplemented = find_unimplemented defs in
let () = if !opt_undef_axioms || IdSet.is_empty unimplemented then () else
Reporting_basic.print_err false false Parse_ast.Unknown "Warning"
("The following functions were declared but are undefined:\n" ^
String.concat "\n" (List.map string_of_id (IdSet.elements unimplemented)))
in
(print types_file)
(concat
[string "(*" ^^ (string top_line) ^^ string "*)";hardline;
(separate_map hardline)
(fun lib -> separate space [string "Require Import";string lib] ^^ dot) types_modules;hardline;
separate empty (List.map (doc_def unimplemented) typdefs); hardline;
hardline;
separate empty (List.map (doc_def unimplemented) statedefs); hardline;
hardline;
register_refs; hardline;
concat [
string ("Definition MR a r := monadR register_value a r " ^ exc_typ ^ "."); hardline;
string ("Definition M a := monad register_value a " ^ exc_typ ^ "."); hardline
]
]);
(print defs_file)
(concat
[string "(*" ^^ (string top_line) ^^ string "*)";hardline;
(separate_map hardline)
(fun lib -> separate space [string "Require Import";string lib] ^^ dot) defs_modules;hardline;
string "Import ListNotations.";
hardline;
string "Open Scope string."; hardline;
string "Open Scope bool."; hardline;
(* Put the body into a Section so that we can define some values with
Let to put them into the local context, where tactics can see them *)
string "Section Content.";
hardline;
hardline;
separate empty (List.map (doc_def unimplemented) defs);
hardline;
string "End Content.";
hardline])
with Type_check.Type_error (l,err) ->
let extra =
"\nError during Coq printing\n" ^
if Printexc.backtrace_status ()
then "\n" ^ Printexc.get_backtrace ()
else "(backtracing unavailable)"
in
raise (Reporting_basic.err_typ l (Type_error.string_of_type_error err ^ extra))
|