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
|
open Parse_ast
open Ast
open Ast_util
open Type_check
let size_set_limit = 8
let vector_split_limit = 4
let optmap v f =
match v with
| None -> None
| Some v -> Some (f v)
let env_typ_expected l : tannot -> Env.t * typ = function
| None -> raise (Reporting_basic.err_unreachable l "Missing type environment")
| Some (env,ty,_) -> env,ty
let kbindings_from_list = List.fold_left (fun s (v,i) -> KBindings.add v i s) KBindings.empty
let bindings_from_list = List.fold_left (fun s (v,i) -> Bindings.add v i s) Bindings.empty
(* union was introduced in 4.03.0, a bit too recently *)
let bindings_union s1 s2 =
Bindings.merge (fun _ x y -> match x,y with
| _, (Some x) -> Some x
| (Some x), _ -> Some x
| _, _ -> None) s1 s2
let subst_nexp substs nexp =
let rec s_snexp substs (Nexp_aux (ne,l) as nexp) =
let re ne = Nexp_aux (ne,l) in
let s_snexp = s_snexp substs in
match ne with
| Nexp_var (Kid_aux (_,l) as kid) ->
(try KBindings.find kid substs
with Not_found -> nexp)
| Nexp_id _
| Nexp_constant _ -> nexp
| Nexp_times (n1,n2) -> re (Nexp_times (s_snexp n1, s_snexp n2))
| Nexp_sum (n1,n2) -> re (Nexp_sum (s_snexp n1, s_snexp n2))
| Nexp_minus (n1,n2) -> re (Nexp_minus (s_snexp n1, s_snexp n2))
| Nexp_exp ne -> re (Nexp_exp (s_snexp ne))
| Nexp_neg ne -> re (Nexp_neg (s_snexp ne))
in s_snexp substs nexp
let rec subst_nc substs (NC_aux (nc,l) as n_constraint) =
let snexp nexp = subst_nexp substs nexp in
let snc nc = subst_nc substs nc in
let re nc = NC_aux (nc,l) in
match nc with
| NC_equal (n1,n2) -> re (NC_equal (snexp n1, snexp n2))
| NC_bounded_ge (n1,n2) -> re (NC_bounded_ge (snexp n1, snexp n2))
| NC_bounded_le (n1,n2) -> re (NC_bounded_le (snexp n1, snexp n2))
| NC_not_equal (n1,n2) -> re (NC_not_equal (snexp n1, snexp n2))
| NC_set (kid,is) ->
begin
match KBindings.find kid substs with
| Nexp_aux (Nexp_constant i,_) ->
if List.mem i is then re NC_true else re NC_false
| nexp ->
raise (Reporting_basic.err_general l
("Unable to substitute " ^ string_of_nexp nexp ^
" into set constraint " ^ string_of_n_constraint n_constraint))
| exception Not_found -> n_constraint
end
| NC_or (nc1,nc2) -> re (NC_or (snc nc1, snc nc2))
| NC_and (nc1,nc2) -> re (NC_and (snc nc1, snc nc2))
| NC_true
| NC_false
-> n_constraint
let subst_src_typ substs t =
let rec s_styp substs ((Typ_aux (t,l)) as ty) =
let re t = Typ_aux (t,l) in
match t with
| Typ_wild
| Typ_id _
| Typ_var _
-> ty
| Typ_fn (t1,t2,e) -> re (Typ_fn (s_styp substs t1, s_styp substs t2,e))
| Typ_tup ts -> re (Typ_tup (List.map (s_styp substs) ts))
| Typ_app (id,tas) -> re (Typ_app (id,List.map (s_starg substs) tas))
| Typ_exist (kids,nc,t) ->
let substs = List.fold_left (fun sub v -> KBindings.remove v sub) substs kids in
re (Typ_exist (kids,nc,s_styp substs t))
and s_starg substs (Typ_arg_aux (ta,l) as targ) =
match ta with
| Typ_arg_nexp ne -> Typ_arg_aux (Typ_arg_nexp (subst_nexp substs ne),l)
| Typ_arg_typ t -> Typ_arg_aux (Typ_arg_typ (s_styp substs t),l)
| Typ_arg_order _ -> targ
in s_styp substs t
let make_vector_lit sz i =
let f j = if (i lsr (sz-j-1)) mod 2 = 0 then '0' else '1' in
let s = String.init sz f in
L_aux (L_bin s,Generated Unknown)
let tabulate f n =
let rec aux acc n =
let acc' = f n::acc in
if n = 0 then acc' else aux acc' (n-1)
in if n = 0 then [] else aux [] (n-1)
let make_vectors sz =
tabulate (make_vector_lit sz) (1 lsl sz)
let pat_id_is_variable env id =
match Env.lookup_id id env with
(* Unbound is returned for both variables and constructors which take
arguments, but the latter only don't appear in a P_id *)
| Unbound
(* Shadowing of immutable locals is allowed; mutable locals and registers
are rejected by the type checker, so don't matter *)
| Local _
| Register _
-> true
| Enum _
| Union _
-> false
let rec is_value (E_aux (e,(l,annot))) =
let is_constructor id =
match annot with
| None ->
(Reporting_basic.print_err false true l "Monomorphisation"
("Missing type information for identifier " ^ string_of_id id);
false) (* Be conservative if we have no info *)
| Some (env,_,_) ->
Env.is_union_constructor id env ||
(match Env.lookup_id id env with
| Enum _ | Union _ -> true
| Unbound | Local _ | Register _ -> false)
in
match e with
| E_id id -> is_constructor id
| E_lit _ -> true
| E_tuple es -> List.for_all is_value es
| E_app (id,es) -> is_constructor id && List.for_all is_value es
(* TODO: more? *)
| _ -> false
let is_pure (Effect_opt_aux (e,_)) =
match e with
| Effect_opt_pure -> true
| Effect_opt_effect (Effect_aux (Effect_set [],_)) -> true
| _ -> false
let rec list_extract f = function
| [] -> None
| h::t -> match f h with None -> list_extract f t | Some v -> Some v
let rec cross = function
| [] -> failwith "cross"
| [(x,l)] -> List.map (fun y -> [(x,y)]) l
| (x,l)::t ->
let t' = cross t in
List.concat (List.map (fun y -> List.map (fun l' -> (x,y)::l') t') l)
let rec cross' = function
| [] -> [[]]
| (h::t) ->
let t' = cross' t in
List.concat (List.map (fun x -> List.map (fun l -> x::l) t') h)
let rec cross'' = function
| [] -> [[]]
| (k,None)::t -> List.map (fun l -> (k,None)::l) (cross'' t)
| (k,Some h)::t ->
let t' = cross'' t in
List.concat (List.map (fun x -> List.map (fun l -> (k,Some x)::l) t') h)
let kidset_bigunion = function
| [] -> KidSet.empty
| h::t -> List.fold_left KidSet.union h t
(* TODO: deal with non-set constraints, intersections, etc somehow *)
let extract_set_nc var (NC_aux (_,l) as nc) =
let rec aux (NC_aux (nc,l)) =
let re nc = NC_aux (nc,l) in
match nc with
| NC_set (id,is) when Kid.compare id var = 0 -> Some (is,re NC_true)
| NC_and (nc1,nc2) ->
(match aux nc1, aux nc2 with
| None, None -> None
| None, Some (is,nc2') -> Some (is, re (NC_and (nc1,nc2')))
| Some (is,nc1'), None -> Some (is, re (NC_and (nc1',nc2)))
| Some _, Some _ ->
raise (Reporting_basic.err_general l ("Multiple set constraints for " ^ string_of_kid var)))
| _ -> None
in match aux nc with
| Some is -> is
| None ->
raise (Reporting_basic.err_general l ("No set constraint for " ^ string_of_kid var))
let rec peel = function
| [], l -> ([], l)
| h1::t1, h2::t2 -> let (l1,l2) = peel (t1, t2) in ((h1,h2)::l1,l2)
| _,_ -> assert false
let rec split_insts = function
| [] -> [],[]
| (k,None)::t -> let l1,l2 = split_insts t in l1,k::l2
| (k,Some v)::t -> let l1,l2 = split_insts t in (k,v)::l1,l2
let apply_kid_insts kid_insts t =
let kid_insts, kids' = split_insts kid_insts in
let kid_insts = List.map (fun (v,i) -> (v,Nexp_aux (Nexp_constant i,Generated Unknown))) kid_insts in
let subst = kbindings_from_list kid_insts in
kids', subst_src_typ subst t
let rec inst_src_type insts (Typ_aux (ty,l) as typ) =
match ty with
| Typ_wild
| Typ_id _
| Typ_var _
-> insts,typ
| Typ_fn _ ->
raise (Reporting_basic.err_general l "Function type in constructor")
| Typ_tup ts ->
let insts,ts =
List.fold_right
(fun typ (insts,ts) -> let insts,typ = inst_src_type insts typ in insts,typ::ts)
ts (insts,[])
in insts, Typ_aux (Typ_tup ts,l)
| Typ_app (id,args) ->
let insts,ts =
List.fold_right
(fun arg (insts,args) -> let insts,arg = inst_src_typ_arg insts arg in insts,arg::args)
args (insts,[])
in insts, Typ_aux (Typ_app (id,ts),l)
| Typ_exist (kids, nc, t) ->
let kid_insts, insts' = peel (kids,insts) in
let kids', t' = apply_kid_insts kid_insts t in
(* TODO: subst in nc *)
match kids' with
| [] -> insts', t'
| _ -> insts', Typ_aux (Typ_exist (kids', nc, t'), l)
and inst_src_typ_arg insts (Typ_arg_aux (ta,l) as tyarg) =
match ta with
| Typ_arg_nexp _
| Typ_arg_order _
-> insts, tyarg
| Typ_arg_typ typ ->
let insts', typ' = inst_src_type insts typ in
insts', Typ_arg_aux (Typ_arg_typ typ',l)
let rec contains_exist (Typ_aux (ty,_)) =
match ty with
| Typ_wild
| Typ_id _
| Typ_var _
-> false
| Typ_fn (t1,t2,_) -> contains_exist t1 || contains_exist t2
| Typ_tup ts -> List.exists contains_exist ts
| Typ_app (_,args) -> List.exists contains_exist_arg args
| Typ_exist _ -> true
and contains_exist_arg (Typ_arg_aux (arg,_)) =
match arg with
| Typ_arg_nexp _
| Typ_arg_order _
-> false
| Typ_arg_typ typ -> contains_exist typ
let rec size_nvars_nexp (Nexp_aux (ne,_)) =
match ne with
| Nexp_var v -> [v]
| Nexp_id _
| Nexp_constant _
-> []
| Nexp_times (n1,n2)
| Nexp_sum (n1,n2)
| Nexp_minus (n1,n2)
-> size_nvars_nexp n1 @ size_nvars_nexp n2
| Nexp_exp n
| Nexp_neg n
-> size_nvars_nexp n
(* Given a type for a constructor, work out which refinements we ought to produce *)
(* TODO collision avoidance *)
let split_src_type id ty (TypQ_aux (q,ql)) =
let i = string_of_id id in
(* This was originally written for the general case, but I cut it down to the
more manageable prenex-form below *)
let rec size_nvars_ty (Typ_aux (ty,l) as typ) =
match ty with
| Typ_wild
| Typ_id _
| Typ_var _
-> (KidSet.empty,[[],typ])
| Typ_fn _ ->
raise (Reporting_basic.err_general l ("Function type in constructor " ^ i))
| Typ_tup ts ->
let (vars,tys) = List.split (List.map size_nvars_ty ts) in
let insttys = List.map (fun x -> let (insts,tys) = List.split x in
List.concat insts, Typ_aux (Typ_tup tys,l)) (cross' tys) in
(kidset_bigunion vars, insttys)
| Typ_app (Id_aux (Id "vector",_),
[_;Typ_arg_aux (Typ_arg_nexp sz,_);
_;Typ_arg_aux (Typ_arg_typ (Typ_aux (Typ_id (Id_aux (Id "bit",_)),_)),_)]) ->
(KidSet.of_list (size_nvars_nexp sz), [[],typ])
| Typ_app (_, tas) ->
(KidSet.empty,[[],typ]) (* We only support sizes for bitvectors mentioned explicitly, not any buried
inside another type *)
| Typ_exist (kids, nc, t) ->
let (vars,tys) = size_nvars_ty t in
let find_insts k (insts,nc) =
let inst,nc' =
if KidSet.mem k vars then
let is,nc' = extract_set_nc k nc in
Some is,nc'
else None,nc
in (k,inst)::insts,nc'
in
let (insts,nc') = List.fold_right find_insts kids ([],nc) in
let insts = cross'' insts in
let ty_and_inst (inst0,ty) inst =
let kids, ty = apply_kid_insts inst ty in
let ty =
(* Typ_exist is not allowed an empty list of kids *)
match kids with
| [] -> ty
| _ -> Typ_aux (Typ_exist (kids, nc', ty),l)
in inst@inst0, ty
in
let tys = List.concat (List.map (fun instty -> List.map (ty_and_inst instty) insts) tys) in
let free = List.fold_left (fun vars k -> KidSet.remove k vars) vars kids in
(free,tys)
in
(* Only single-variable prenex-form for now *)
let size_nvars_ty (Typ_aux (ty,l) as typ) =
match ty with
| Typ_exist (kids,_,t) ->
begin
match snd (size_nvars_ty typ) with
| [] -> []
| tys ->
(* One level of tuple type is stripped off by the type checker, so
add another here *)
let tys =
List.map (fun (x,ty) ->
x, match ty with
| Typ_aux (Typ_tup _,_) -> Typ_aux (Typ_tup [ty],Unknown)
| _ -> ty) tys in
if contains_exist t then
raise (Reporting_basic.err_general l
"Only prenex types in unions are supported by monomorphisation")
else if List.length kids > 1 then
raise (Reporting_basic.err_general l
"Only single-variable existential types in unions are currently supported by monomorphisation")
else tys
end
| _ -> []
in
(* TODO: reject universally quantification or monomorphise it *)
let variants = size_nvars_ty ty in
match variants with
| [] -> None
| sample::__ ->
let () = if List.length variants > size_set_limit then
raise (Reporting_basic.err_general ql
(string_of_int (List.length variants) ^ "variants for constructor " ^ i ^
"bigger than limit " ^ string_of_int size_set_limit)) else ()
in
let wrap = match id with
| Id_aux (Id i,l) -> (fun f -> Id_aux (Id (f i),Generated l))
| Id_aux (DeIid i,l) -> (fun f -> Id_aux (DeIid (f i),l))
in
let name_seg = function
| (_,None) -> ""
| (k,Some i) -> string_of_kid k ^ string_of_int i
in
let name l i = String.concat "_" (i::(List.map name_seg l)) in
Some (List.map (fun (l,ty) -> (l, wrap (name l),ty)) variants)
let reduce_nexp subst ne =
let rec eval (Nexp_aux (ne,_) as nexp) =
match ne with
| Nexp_constant i -> i
| Nexp_sum (n1,n2) -> (eval n1) + (eval n2)
| Nexp_minus (n1,n2) -> (eval n1) - (eval n2)
| Nexp_times (n1,n2) -> (eval n1) * (eval n2)
| Nexp_exp n -> 1 lsl (eval n)
| Nexp_neg n -> - (eval n)
| _ ->
raise (Reporting_basic.err_general Unknown ("Couldn't turn nexp " ^
string_of_nexp nexp ^ " into concrete value"))
in eval ne
let typ_of_args args =
match args with
| [E_aux (_,(l,annot))] ->
snd (env_typ_expected l annot)
| _ ->
let tys = List.map (fun (E_aux (_,(l,annot))) -> snd (env_typ_expected l annot)) args in
Typ_aux (Typ_tup tys,Unknown)
(* Check to see if we need to monomorphise a use of a constructor. Currently
assumes that bitvector sizes are always given as a variable; don't yet handle
more general cases (e.g., 8 * var) *)
let refine_constructor refinements l env id args =
match List.find (fun (id',_) -> Id.compare id id' = 0) refinements with
| (_,irefinements) -> begin
let (_,constr_ty) = Env.get_val_spec id env in
match constr_ty with
| Typ_aux (Typ_fn (constr_ty,_,_),_) -> begin
let arg_ty = typ_of_args args in
match Type_check.destruct_exist env constr_ty with
| None -> None
| Some (kids,nc,constr_ty) ->
let (bindings,_,_) = Type_check.unify l env constr_ty arg_ty in
let find_kid kid = try Some (KBindings.find kid bindings) with Not_found -> None in
let bindings = List.map find_kid kids in
let matches_refinement (mapping,_,_) =
List.for_all2
(fun v (_,w) ->
match v,w with
| _,None -> true
| Some (U_nexp (Nexp_aux (Nexp_constant n, _))),Some m -> n = m
| _,_ -> false) bindings mapping
in
match List.find matches_refinement irefinements with
| (_,new_id,_) -> Some (E_app (new_id,args))
| exception Not_found ->
(Reporting_basic.print_err false true l "Monomorphisation"
("Unable to refine constructor " ^ string_of_id id);
None)
end
| _ -> None
end
| exception Not_found -> None
(* Substitute found nexps for variables in an expression, and rename constructors to reflect
specialisation *)
(* TODO: kid shadowing *)
let nexp_subst_fns substs =
let s_t t = subst_src_typ substs t in
(* let s_typschm (TypSchm_aux (TypSchm_ts (q,t),l)) = TypSchm_aux (TypSchm_ts (q,s_t t),l) in
hopefully don't need this anyway *)(*
let s_typschm tsh = tsh in*)
let s_tannot = function
| None -> None
| Some (env,t,eff) -> Some (env,s_t t,eff) (* TODO: what about env? *)
in
(* let rec s_pat (P_aux (p,(l,annot))) =
let re p = P_aux (p,(l,(*s_tannot*) annot)) in
match p with
| P_lit _ | P_wild | P_id _ -> re p
| P_var kid -> re p
| P_as (p',id) -> re (P_as (s_pat p', id))
| P_typ (ty,p') -> re (P_typ (ty,s_pat p'))
| P_app (id,ps) -> re (P_app (id, List.map s_pat ps))
| P_record (fps,flag) -> re (P_record (List.map s_fpat fps, flag))
| P_vector ps -> re (P_vector (List.map s_pat ps))
| P_vector_indexed ips -> re (P_vector_indexed (List.map (fun (i,p) -> (i,s_pat p)) ips))
| P_vector_concat ps -> re (P_vector_concat (List.map s_pat ps))
| P_tup ps -> re (P_tup (List.map s_pat ps))
| P_list ps -> re (P_list (List.map s_pat ps))
| P_cons (p1,p2) -> re (P_cons (s_pat p1, s_pat p2))
and s_fpat (FP_aux (FP_Fpat (id, p), (l,annot))) =
FP_aux (FP_Fpat (id, s_pat p), (l,s_tannot annot))
in*)
let rec s_exp (E_aux (e,(l,annot))) =
let re e = E_aux (e,(l,s_tannot annot)) in
match e with
| E_block es -> re (E_block (List.map s_exp es))
| E_nondet es -> re (E_nondet (List.map s_exp es))
| E_id _
| E_lit _
| E_comment _ -> re e
| E_sizeof ne -> re (E_sizeof ne) (* TODO: does this need done? does it appear in type checked code? *)
| E_constraint nc -> re (E_constraint (subst_nc substs nc))
| E_internal_exp (l,annot) -> re (E_internal_exp (l, s_tannot annot))
| E_sizeof_internal (l,annot) -> re (E_sizeof_internal (l, s_tannot annot))
| E_internal_exp_user ((l1,annot1),(l2,annot2)) ->
re (E_internal_exp_user ((l1, s_tannot annot1),(l2, s_tannot annot2)))
| E_cast (t,e') -> re (E_cast (t, s_exp e'))
| E_app (id,es) -> re (E_app (id, List.map s_exp es))
| E_app_infix (e1,id,e2) -> re (E_app_infix (s_exp e1,id,s_exp e2))
| E_tuple es -> re (E_tuple (List.map s_exp es))
| E_if (e1,e2,e3) -> re (E_if (s_exp e1, s_exp e2, s_exp e3))
| E_for (id,e1,e2,e3,ord,e4) -> re (E_for (id,s_exp e1,s_exp e2,s_exp e3,ord,s_exp e4))
| E_loop (loop,e1,e2) -> re (E_loop (loop,s_exp e1,s_exp e2))
| E_vector es -> re (E_vector (List.map s_exp es))
| E_vector_access (e1,e2) -> re (E_vector_access (s_exp e1,s_exp e2))
| E_vector_subrange (e1,e2,e3) -> re (E_vector_subrange (s_exp e1,s_exp e2,s_exp e3))
| E_vector_update (e1,e2,e3) -> re (E_vector_update (s_exp e1,s_exp e2,s_exp e3))
| E_vector_update_subrange (e1,e2,e3,e4) -> re (E_vector_update_subrange (s_exp e1,s_exp e2,s_exp e3,s_exp e4))
| E_vector_append (e1,e2) -> re (E_vector_append (s_exp e1,s_exp e2))
| E_list es -> re (E_list (List.map s_exp es))
| E_cons (e1,e2) -> re (E_cons (s_exp e1,s_exp e2))
| E_record fes -> re (E_record (s_fexps fes))
| E_record_update (e,fes) -> re (E_record_update (s_exp e, s_fexps fes))
| E_field (e,id) -> re (E_field (s_exp e,id))
| E_case (e,cases) -> re (E_case (s_exp e, List.map s_pexp cases))
| E_let (lb,e) -> re (E_let (s_letbind lb, s_exp e))
| E_assign (le,e) -> re (E_assign (s_lexp le, s_exp e))
| E_exit e -> re (E_exit (s_exp e))
| E_return e -> re (E_return (s_exp e))
| E_assert (e1,e2) -> re (E_assert (s_exp e1,s_exp e2))
| E_internal_cast ((l,ann),e) -> re (E_internal_cast ((l,s_tannot ann),s_exp e))
| E_comment_struc e -> re (E_comment_struc e)
| E_internal_let (le,e1,e2) -> re (E_internal_let (s_lexp le, s_exp e1, s_exp e2))
| E_internal_plet (p,e1,e2) -> re (E_internal_plet ((*s_pat*) p, s_exp e1, s_exp e2))
| E_internal_return e -> re (E_internal_return (s_exp e))
| E_throw e -> re (E_throw (s_exp e))
| E_try (e,cases) -> re (E_try (s_exp e, List.map s_pexp cases))
and s_opt_default (Def_val_aux (ed,(l,annot))) =
match ed with
| Def_val_empty -> Def_val_aux (Def_val_empty,(l,s_tannot annot))
| Def_val_dec e -> Def_val_aux (Def_val_dec (s_exp e),(l,s_tannot annot))
and s_fexps (FES_aux (FES_Fexps (fes,flag), (l,annot))) =
FES_aux (FES_Fexps (List.map s_fexp fes, flag), (l,s_tannot annot))
and s_fexp (FE_aux (FE_Fexp (id,e), (l,annot))) =
FE_aux (FE_Fexp (id,s_exp e),(l,s_tannot annot))
and s_pexp = function
| (Pat_aux (Pat_exp (p,e),(l,annot))) ->
Pat_aux (Pat_exp ((*s_pat*) p, s_exp e),(l,s_tannot annot))
| (Pat_aux (Pat_when (p,e1,e2),(l,annot))) ->
Pat_aux (Pat_when ((*s_pat*) p, s_exp e1, s_exp e2),(l,s_tannot annot))
and s_letbind (LB_aux (lb,(l,annot))) =
match lb with
| LB_val (p,e) -> LB_aux (LB_val ((*s_pat*) p,s_exp e), (l,s_tannot annot))
and s_lexp (LEXP_aux (e,(l,annot))) =
let re e = LEXP_aux (e,(l,s_tannot annot)) in
match e with
| LEXP_id _ -> re e
| LEXP_cast (typ,id) -> re (LEXP_cast (s_t typ, id))
| LEXP_memory (id,es) -> re (LEXP_memory (id,List.map s_exp es))
| LEXP_tup les -> re (LEXP_tup (List.map s_lexp les))
| LEXP_vector (le,e) -> re (LEXP_vector (s_lexp le, s_exp e))
| LEXP_vector_range (le,e1,e2) -> re (LEXP_vector_range (s_lexp le, s_exp e1, s_exp e2))
| LEXP_field (le,id) -> re (LEXP_field (s_lexp le, id))
in ((fun x -> x (*s_pat*)),s_exp)
let nexp_subst_pat substs = fst (nexp_subst_fns substs)
let nexp_subst_exp substs = snd (nexp_subst_fns substs)
let bindings_from_pat p =
let rec aux_pat (P_aux (p,(l,annot))) =
let env,_ = env_typ_expected l annot in
match p with
| P_lit _
| P_wild
-> []
| P_as (p,id) -> id::(aux_pat p)
| P_typ (_,p) -> aux_pat p
| P_id id ->
if pat_id_is_variable env id then [id] else []
| P_var (p,kid) -> aux_pat p
| P_vector ps
| P_vector_concat ps
| P_app (_,ps)
| P_tup ps
| P_list ps
-> List.concat (List.map aux_pat ps)
| P_record (fps,_) -> List.concat (List.map aux_fpat fps)
| P_cons (p1,p2) -> aux_pat p1 @ aux_pat p2
and aux_fpat (FP_aux (FP_Fpat (_,p), _)) = aux_pat p
in aux_pat p
let remove_bound env pat =
let bound = bindings_from_pat pat in
List.fold_left (fun sub v -> Bindings.remove v sub) env bound
(* Attempt simple pattern matches *)
let lit_match = function
| (L_zero | L_false), (L_zero | L_false) -> true
| (L_one | L_true ), (L_one | L_true ) -> true
| l1,l2 -> l1 = l2
(* There's no undefined nexp, so replace undefined sizes with a plausible size.
32 is used as a sensible default. *)
let fabricate_nexp l = function
| None -> Nexp_aux (Nexp_constant 32,Unknown)
| Some (env,typ,_) ->
match Type_check.destruct_exist env typ with
| None -> Nexp_aux (Nexp_constant 32,Unknown)
| Some (kids,nc,typ') ->
match kids,nc,Env.expand_synonyms env typ' with
| ([kid],NC_aux (NC_set (kid',i::_),_),
Typ_aux (Typ_app (Id_aux (Id "range",_),
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid'',_)),_);
Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid''',_)),_)]),_))
when Kid.compare kid kid' = 0 && Kid.compare kid kid'' = 0 &&
Kid.compare kid kid''' = 0 ->
Nexp_aux (Nexp_constant i,Unknown)
| ([kid],NC_aux (NC_true,_),
Typ_aux (Typ_app (Id_aux (Id "range",_),
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid'',_)),_);
Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid''',_)),_)]),_))
when Kid.compare kid kid'' = 0 &&
Kid.compare kid kid''' = 0 ->
Nexp_aux (Nexp_constant 32,Unknown)
| _ -> raise (Reporting_basic.err_general l
("Undefined value at unsupported type " ^ string_of_typ typ))
type 'a matchresult =
| DoesMatch of 'a
| DoesNotMatch
| GiveUp
let can_match_with_env env (E_aux (e,(l,annot)) as exp0) cases =
let rec findpat_generic check_pat description = function
| [] -> (Reporting_basic.print_err false true l "Monomorphisation"
("Failed to find a case for " ^ description); None)
| [Pat_aux (Pat_exp (P_aux (P_wild,_),exp),_)] -> Some (exp,[],[])
| (Pat_aux (Pat_exp (P_aux (P_typ (_,p),_),exp),ann))::tl ->
findpat_generic check_pat description ((Pat_aux (Pat_exp (p,exp),ann))::tl)
| (Pat_aux (Pat_exp (P_aux (P_id id',_),exp),_))::tl
when pat_id_is_variable env id' ->
Some (exp, [(id', exp0)], [])
| (Pat_aux (Pat_when _,_))::_ -> None
| (Pat_aux (Pat_exp (p,exp),_))::tl ->
match check_pat p with
| DoesNotMatch -> findpat_generic check_pat description tl
| DoesMatch (subst,ksubst) -> Some (exp,subst,ksubst)
| GiveUp -> None
in
match e with
| E_id id ->
(match Env.lookup_id id env with
| Enum _ ->
let checkpat = function
| P_aux (P_id id',_)
| P_aux (P_app (id',[]),_) ->
if Id.compare id id' = 0 then DoesMatch ([],[]) else DoesNotMatch
| P_aux (_,(l',_)) ->
(Reporting_basic.print_err false true l' "Monomorphisation"
"Unexpected kind of pattern for enumeration"; GiveUp)
in findpat_generic checkpat (string_of_id id) cases
| _ -> None)
| E_lit (L_aux (lit_e, lit_l)) ->
let checkpat = function
| P_aux (P_lit (L_aux (lit_p, _)),_) ->
if lit_match (lit_e,lit_p) then DoesMatch ([],[]) else DoesNotMatch
| P_aux (P_var (P_aux (P_id id,p_id_annot), kid),_) ->
begin
match lit_e with
| L_num i ->
DoesMatch ([id, E_aux (e,(l,annot))],
[kid,Nexp_aux (Nexp_constant i,Unknown)])
(* For undefined we fix the type-level size (because there's no good
way to construct an undefined size), but leave the term as undefined
to make the meaning clear. *)
| L_undef ->
let nexp = fabricate_nexp l annot in
let typ = subst_src_typ (KBindings.singleton kid nexp) (typ_of_annot p_id_annot) in
DoesMatch ([id, E_aux (E_cast (typ,E_aux (e,(l,None))),(l,None))],
[kid,nexp])
| _ ->
(Reporting_basic.print_err false true lit_l "Monomorphisation"
"Unexpected kind of literal for var match"; GiveUp)
end
| P_aux (_,(l',_)) ->
(Reporting_basic.print_err false true l' "Monomorphisation"
"Unexpected kind of pattern for literal"; GiveUp)
in findpat_generic checkpat "literal" cases
| _ -> None
let can_match (E_aux (_,(l,annot)) as exp0) cases =
let (env,_) = env_typ_expected l annot in
can_match_with_env env exp0 cases
(* Remove top-level casts from an expression. Useful when we need to look at
subexpressions to reduce something, but could break type-checking if we used
it everywhere. *)
let rec drop_casts = function
| E_aux (E_cast (_,e),_) -> drop_casts e
| exp -> exp
(* TODO: ought to be a big int of some form, but would need L_num to be one *)
let int_of_lit = function
| L_hex hex -> int_of_string ("0x" ^ hex)
| L_bin bin -> int_of_string ("0b" ^ bin)
| _ -> assert false
let lit_eq (L_aux (l1,_)) (L_aux (l2,_)) =
match l1,l2 with
| (L_zero|L_false), (L_zero|L_false)
| (L_one |L_true ), (L_one |L_true)
-> Some true
| (L_hex _| L_bin _), (L_hex _|L_bin _)
-> Some (int_of_lit l1 = int_of_lit l2)
| L_undef, _ | _, L_undef -> None
| _ -> Some (l1 = l2)
(* TODO: we should really specify which functions are equality in the prelude,
rather than fixing them here. *)
let eq_fns = [Id "eq_int"; Id "eq_vec"; Id "eq_string"; Id "eq_real"]
let neq_fns = [Id "neq_anything"]
let try_app (l,ann) (Id_aux (id,_),args) =
let is_eq = List.mem id eq_fns in
let is_neq = (not is_eq) && List.mem id neq_fns in
let new_l = Generated l in
if is_eq || is_neq then
match args with
| [E_aux (E_lit l1,_); E_aux (E_lit l2,_)] ->
let lit b = if b then L_true else L_false in
let lit b = lit (if is_eq then b else not b) in
(match lit_eq l1 l2 with
| None -> None
| Some b -> Some (E_aux (E_lit (L_aux (lit b,new_l)),(l,ann))))
| _ -> None
else if id = Id "cast_bit_bool" then
match args with
| [E_aux (E_lit L_aux (L_zero,_),_)] -> Some (E_aux (E_lit (L_aux (L_false,new_l)),(l,ann)))
| [E_aux (E_lit L_aux (L_one ,_),_)] -> Some (E_aux (E_lit (L_aux (L_true ,new_l)),(l,ann)))
| _ -> None
else if id = Id "UInt" then
match args with
| [E_aux (E_lit L_aux ((L_hex _| L_bin _) as lit,_), _)] ->
Some (E_aux (E_lit (L_aux (L_num (int_of_lit lit),new_l)),(l,ann)))
| _ -> None
else if id = Id "shl_int" then
match args with
| [E_aux (E_lit L_aux (L_num i,_),_); E_aux (E_lit L_aux (L_num j,_),_)] ->
Some (E_aux (E_lit (L_aux (L_num (i lsl j),new_l)),(l,ann)))
| _ -> None
else if id = Id "ex_int" then
match args with
| [E_aux (E_lit lit,(l,_))] -> Some (E_aux (E_lit lit,(l,ann)))
| _ -> None
else if id = Id "vector_access" || id = Id "bitvector_access" then
match args with
| [E_aux (E_lit L_aux ((L_hex _ | L_bin _) as lit,_),_);
E_aux (E_lit L_aux (L_num i,_),_)] ->
let v = int_of_lit lit in
let b = (v lsr i) land 1 in
let lit' = if b = 1 then L_one else L_zero in
Some (E_aux (E_lit (L_aux (lit',new_l)),(l,ann)))
| _ -> None
else None
let try_app_infix (l,ann) (E_aux (e1,ann1)) (Id_aux (id,_)) (E_aux (e2,ann2)) =
let i = match id with Id x -> x | DeIid x -> x in
let new_l = Generated l in
match e1, i, e2 with
| E_lit l1, ("=="|"!="), E_lit l2 ->
let lit b = if b then L_true else L_false in
let lit b = lit (if i = "==" then b else not b) in
(match lit_eq l1 l2 with
| Some b -> Some (E_aux (E_lit (L_aux (lit b,new_l)), (l,ann)))
| None -> None)
| _ -> None
let construct_lit_vector args =
let rec aux l = function
| [] -> Some (L_aux (L_bin (String.concat "" (List.rev l)),Unknown))
| E_aux (E_lit (L_aux ((L_zero | L_one) as lit,_)),_)::t ->
aux ((if lit = L_zero then "0" else "1")::l) t
| _ -> None
in aux [] args
(* We may need to split up a pattern match if (1) we've been told to case split
on a variable by the user, or (2) we monomorphised a constructor that's used
in the pattern. *)
type split =
| NoSplit
| VarSplit of (tannot pat * (id * tannot Ast.exp) list) list
| ConstrSplit of (tannot pat * nexp KBindings.t) list
let threaded_map f state l =
let l',state' =
List.fold_left (fun (tl,state) element -> let (el',state') = f state element in (el'::tl,state'))
([],state) l
in List.rev l',state'
let isubst_minus subst subst' =
Bindings.merge (fun _ x y -> match x,y with (Some a), None -> Some a | _, _ -> None) subst subst'
let isubst_minus_set subst set =
IdSet.fold Bindings.remove set subst
let assigned_vars exp =
fst (Rewriter.fold_exp
{ (Rewriter.compute_exp_alg IdSet.empty IdSet.union) with
Rewriter.lEXP_id = (fun id -> IdSet.singleton id, LEXP_id id);
Rewriter.lEXP_cast = (fun (ty,id) -> IdSet.singleton id, LEXP_cast (ty,id)) }
exp)
let assigned_vars_in_fexps (FES_aux (FES_Fexps (fes,_), _)) =
List.fold_left
(fun vs (FE_aux (FE_Fexp (_,e),_)) -> IdSet.union vs (assigned_vars e))
IdSet.empty
fes
let assigned_vars_in_pexp (Pat_aux (p,_)) =
match p with
| Pat_exp (_,e) -> assigned_vars e
| Pat_when (p,e1,e2) -> IdSet.union (assigned_vars e1) (assigned_vars e2)
let rec assigned_vars_in_lexp (LEXP_aux (le,_)) =
match le with
| LEXP_id id
| LEXP_cast (_,id) -> IdSet.singleton id
| LEXP_tup lexps -> List.fold_left (fun vs le -> IdSet.union vs (assigned_vars_in_lexp le)) IdSet.empty lexps
| LEXP_memory (_,es) -> List.fold_left (fun vs e -> IdSet.union vs (assigned_vars e)) IdSet.empty es
| LEXP_vector (le,e) -> IdSet.union (assigned_vars_in_lexp le) (assigned_vars e)
| LEXP_vector_range (le,e1,e2) ->
IdSet.union (assigned_vars_in_lexp le) (IdSet.union (assigned_vars e1) (assigned_vars e2))
| LEXP_field (le,_) -> assigned_vars_in_lexp le
let split_defs splits defs =
let split_constructors (Defs defs) =
let sc_type_union q (Tu_aux (tu,l) as tua) =
match tu with
| Tu_id id -> [],[tua]
| Tu_ty_id (ty,id) ->
(match split_src_type id ty q with
| None -> ([],[Tu_aux (Tu_ty_id (ty,id),l)])
| Some variants ->
([(id,variants)],
List.map (fun (insts, id', ty) -> Tu_aux (Tu_ty_id (ty,id'),Generated l)) variants))
in
let sc_type_def ((TD_aux (tda,annot)) as td) =
match tda with
| TD_variant (id,nscm,quant,tus,flag) ->
let (refinements, tus') = List.split (List.map (sc_type_union quant) tus) in
(List.concat refinements, TD_aux (TD_variant (id,nscm,quant,List.concat tus',flag),annot))
| _ -> ([],td)
in
let sc_def d =
match d with
| DEF_type td -> let (refinements,td') = sc_type_def td in (refinements, DEF_type td')
| _ -> ([], d)
in
let (refinements, defs') = List.split (List.map sc_def defs)
in (List.concat refinements, Defs defs')
in
let (refinements, defs') = split_constructors defs in
(* Constant propogation.
Takes maps of immutable/mutable variables to subsitute.
Extremely conservative about evaluation order of assignments in
subexpressions, dropping assignments rather than committing to
any particular order *)
let rec const_prop_exp substs assigns ((E_aux (e,(l,annot))) as exp) =
(* Functions to treat lists and tuples of subexpressions as possibly
non-deterministic: that is, we stop making any assumptions about
variables that are assigned to in any of the subexpressions *)
let non_det_exp_list es =
let assigned_in =
List.fold_left (fun vs exp -> IdSet.union vs (assigned_vars exp))
IdSet.empty es in
let assigns = isubst_minus_set assigns assigned_in in
let es' = List.map (fun e -> fst (const_prop_exp substs assigns e)) es in
es',assigns
in
let non_det_exp_2 e1 e2 =
let assigned_in_e12 = IdSet.union (assigned_vars e1) (assigned_vars e2) in
let assigns = isubst_minus_set assigns assigned_in_e12 in
let e1',_ = const_prop_exp substs assigns e1 in
let e2',_ = const_prop_exp substs assigns e2 in
e1',e2',assigns
in
let non_det_exp_3 e1 e2 e3 =
let assigned_in_e12 = IdSet.union (assigned_vars e1) (assigned_vars e2) in
let assigned_in_e123 = IdSet.union assigned_in_e12 (assigned_vars e3) in
let assigns = isubst_minus_set assigns assigned_in_e123 in
let e1',_ = const_prop_exp substs assigns e1 in
let e2',_ = const_prop_exp substs assigns e2 in
let e3',_ = const_prop_exp substs assigns e3 in
e1',e2',e3',assigns
in
let non_det_exp_4 e1 e2 e3 e4 =
let assigned_in_e12 = IdSet.union (assigned_vars e1) (assigned_vars e2) in
let assigned_in_e123 = IdSet.union assigned_in_e12 (assigned_vars e3) in
let assigned_in_e1234 = IdSet.union assigned_in_e123 (assigned_vars e4) in
let assigns = isubst_minus_set assigns assigned_in_e1234 in
let e1',_ = const_prop_exp substs assigns e1 in
let e2',_ = const_prop_exp substs assigns e2 in
let e3',_ = const_prop_exp substs assigns e3 in
let e4',_ = const_prop_exp substs assigns e4 in
e1',e2',e3',e4',assigns
in
let re e assigns = E_aux (e,(l,annot)),assigns in
match e with
(* TODO: are there more circumstances in which we should get rid of these? *)
| E_block [e] -> const_prop_exp substs assigns e
| E_block es ->
let es',assigns = threaded_map (const_prop_exp substs) assigns es in
re (E_block es') assigns
| E_nondet es ->
let es',assigns = non_det_exp_list es in
re (E_nondet es') assigns
| E_id id ->
let env,_ = env_typ_expected l annot in
(try
match Env.lookup_id id env with
| Local (Immutable,_) -> Bindings.find id substs
| Local (Mutable,_) -> Bindings.find id assigns
| _ -> exp
with Not_found -> exp),assigns
| E_lit _
| E_sizeof _
| E_internal_exp _
| E_sizeof_internal _
| E_internal_exp_user _
| E_comment _
| E_constraint _
-> exp,assigns
| E_cast (t,e') ->
let e'',assigns = const_prop_exp substs assigns e' in
re (E_cast (t, e'')) assigns
| E_app (id,es) ->
let es',assigns = non_det_exp_list es in
let env,_ = env_typ_expected l annot in
(match try_app (l,annot) (id,es') with
| None ->
(match const_prop_try_fn l env (id,es') with
| None ->
(let env,_ = env_typ_expected l annot in
match Env.is_union_constructor id env, refine_constructor refinements l env id es' with
| true, Some exp -> re exp assigns
| _,_ -> re (E_app (id,es')) assigns)
| Some r -> r,assigns)
| Some r -> r,assigns)
| E_app_infix (e1,id,e2) ->
let e1',e2',assigns = non_det_exp_2 e1 e2 in
(match try_app_infix (l,annot) e1' id e2' with
| Some exp -> exp,assigns
| None -> re (E_app_infix (e1',id,e2')) assigns)
| E_tuple es ->
let es',assigns = non_det_exp_list es in
re (E_tuple es') assigns
| E_if (e1,e2,e3) ->
let e1',assigns = const_prop_exp substs assigns e1 in
let e2',assigns2 = const_prop_exp substs assigns e2 in
let e3',assigns3 = const_prop_exp substs assigns e3 in
(match drop_casts e1' with
| E_aux (E_lit (L_aux ((L_true|L_false) as lit ,_)),_) ->
(match lit with L_true -> e2',assigns2 | _ -> e3',assigns3)
| _ ->
let assigns = isubst_minus_set assigns (assigned_vars e2) in
let assigns = isubst_minus_set assigns (assigned_vars e3) in
re (E_if (e1',e2',e3')) assigns)
| E_for (id,e1,e2,e3,ord,e4) ->
(* Treat e1, e2 and e3 (from, to and by) as a non-det tuple *)
let e1',e2',e3',assigns = non_det_exp_3 e1 e2 e3 in
let assigns = isubst_minus_set assigns (assigned_vars e4) in
let e4',_ = const_prop_exp (Bindings.remove id substs) assigns e4 in
re (E_for (id,e1',e2',e3',ord,e4')) assigns
| E_loop (loop,e1,e2) ->
let assigns = isubst_minus_set assigns (IdSet.union (assigned_vars e1) (assigned_vars e2)) in
let e1',_ = const_prop_exp substs assigns e1 in
let e2',_ = const_prop_exp substs assigns e2 in
re (E_loop (loop,e1',e2')) assigns
| E_vector es ->
let es',assigns = non_det_exp_list es in
begin
match construct_lit_vector es' with
| None -> re (E_vector es') assigns
| Some lit -> re (E_lit lit) assigns
end
| E_vector_access (e1,e2) ->
let e1',e2',assigns = non_det_exp_2 e1 e2 in
re (E_vector_access (e1',e2')) assigns
| E_vector_subrange (e1,e2,e3) ->
let e1',e2',e3',assigns = non_det_exp_3 e1 e2 e3 in
re (E_vector_subrange (e1',e2',e3')) assigns
| E_vector_update (e1,e2,e3) ->
let e1',e2',e3',assigns = non_det_exp_3 e1 e2 e3 in
re (E_vector_update (e1',e2',e3')) assigns
| E_vector_update_subrange (e1,e2,e3,e4) ->
let e1',e2',e3',e4',assigns = non_det_exp_4 e1 e2 e3 e4 in
re (E_vector_update_subrange (e1',e2',e3',e4')) assigns
| E_vector_append (e1,e2) ->
let e1',e2',assigns = non_det_exp_2 e1 e2 in
re (E_vector_append (e1',e2')) assigns
| E_list es ->
let es',assigns = non_det_exp_list es in
re (E_list es') assigns
| E_cons (e1,e2) ->
let e1',e2',assigns = non_det_exp_2 e1 e2 in
re (E_cons (e1',e2')) assigns
| E_record fes ->
let assigned_in_fes = assigned_vars_in_fexps fes in
let assigns = isubst_minus_set assigns assigned_in_fes in
re (E_record (const_prop_fexps substs assigns fes)) assigns
| E_record_update (e,fes) ->
let assigned_in = IdSet.union (assigned_vars_in_fexps fes) (assigned_vars e) in
let assigns = isubst_minus_set assigns assigned_in in
let e',_ = const_prop_exp substs assigns e in
re (E_record_update (e', const_prop_fexps substs assigns fes)) assigns
| E_field (e,id) ->
let e',assigns = const_prop_exp substs assigns e in
re (E_field (e',id)) assigns
| E_case (e,cases) ->
let e',assigns = const_prop_exp substs assigns e in
(match can_match e' cases with
| None ->
let assigned_in =
List.fold_left (fun vs pe -> IdSet.union vs (assigned_vars_in_pexp pe))
IdSet.empty cases
in
let assigns' = isubst_minus_set assigns assigned_in in
re (E_case (e', List.map (const_prop_pexp substs assigns) cases)) assigns'
| Some (E_aux (_,(_,annot')) as exp,newbindings,kbindings) ->
let exp = nexp_subst_exp (kbindings_from_list kbindings) exp in
let newbindings_env = bindings_from_list newbindings in
let substs' = bindings_union substs newbindings_env in
const_prop_exp substs' assigns exp)
| E_let (lb,e2) ->
begin
match lb with
| LB_aux (LB_val (p,e), annot) ->
let e',assigns = const_prop_exp substs assigns e in
let substs' = remove_bound substs p in
let plain () =
let e2',assigns = const_prop_exp substs' assigns e2 in
re (E_let (LB_aux (LB_val (p,e'), annot),
e2')) assigns in
if is_value e' && not (is_value e) then
match can_match e' [Pat_aux (Pat_exp (p,e2),(Unknown,None))] with
| None -> plain ()
| Some (e'',bindings,kbindings) ->
let e'' = nexp_subst_exp (kbindings_from_list kbindings) e'' in
let bindings = bindings_from_list bindings in
let substs'' = bindings_union substs' bindings in
const_prop_exp substs'' assigns e''
else plain ()
end
(* TODO maybe - tuple assignments *)
| E_assign (le,e) ->
let env,_ = env_typ_expected l annot in
let assigned_in = IdSet.union (assigned_vars_in_lexp le) (assigned_vars e) in
let assigns = isubst_minus_set assigns assigned_in in
let le',idopt = const_prop_lexp substs assigns le in
let e',_ = const_prop_exp substs assigns e in
let assigns =
match idopt with
| Some id ->
begin
match Env.lookup_id id env with
| Local (Mutable,_) | Unbound ->
if is_value e'
then Bindings.add id e' assigns
else Bindings.remove id assigns
| _ -> assigns
end
| None -> assigns
in
re (E_assign (le', e')) assigns
| E_exit e ->
let e',_ = const_prop_exp substs assigns e in
re (E_exit e') Bindings.empty
| E_throw e ->
let e',_ = const_prop_exp substs assigns e in
re (E_throw e') Bindings.empty
| E_try (e,cases) ->
(* TODO: try and preserve *any* assignment info *)
let e',_ = const_prop_exp substs assigns e in
re (E_case (e', List.map (const_prop_pexp substs Bindings.empty) cases)) Bindings.empty
| E_return e ->
let e',_ = const_prop_exp substs assigns e in
re (E_return e') Bindings.empty
| E_assert (e1,e2) ->
let e1',e2',assigns = non_det_exp_2 e1 e2 in
re (E_assert (e1',e2')) assigns
| E_internal_cast (ann,e) ->
let e',assigns = const_prop_exp substs assigns e in
re (E_internal_cast (ann,e')) assigns
(* TODO: should I substitute or anything here? Is it even used? *)
| E_comment_struc e -> re (E_comment_struc e) assigns
| E_internal_let _
| E_internal_plet _
| E_internal_return _
-> raise (Reporting_basic.err_unreachable l
"Unexpected internal expression encountered in monomorphisation")
and const_prop_fexps substs assigns (FES_aux (FES_Fexps (fes,flag), annot)) =
FES_aux (FES_Fexps (List.map (const_prop_fexp substs assigns) fes, flag), annot)
and const_prop_fexp substs assigns (FE_aux (FE_Fexp (id,e), annot)) =
FE_aux (FE_Fexp (id,fst (const_prop_exp substs assigns e)),annot)
and const_prop_pexp substs assigns = function
| (Pat_aux (Pat_exp (p,e),l)) ->
Pat_aux (Pat_exp (p,fst (const_prop_exp (remove_bound substs p) assigns e)),l)
| (Pat_aux (Pat_when (p,e1,e2),l)) ->
let substs' = remove_bound substs p in
let e1',assigns = const_prop_exp substs' assigns e1 in
Pat_aux (Pat_when (p, e1', fst (const_prop_exp substs' assigns e2)),l)
and const_prop_lexp substs assigns ((LEXP_aux (e,annot)) as le) =
let re e = LEXP_aux (e,annot), None in
match e with
| LEXP_id id (* shouldn't end up substituting here *)
| LEXP_cast (_,id)
-> le, Some id
| LEXP_memory (id,es) ->
re (LEXP_memory (id,List.map (fun e -> fst (const_prop_exp substs assigns e)) es)) (* or here *)
| LEXP_tup les -> re (LEXP_tup (List.map (fun le -> fst (const_prop_lexp substs assigns le)) les))
| LEXP_vector (le,e) -> re (LEXP_vector (fst (const_prop_lexp substs assigns le), fst (const_prop_exp substs assigns e)))
| LEXP_vector_range (le,e1,e2) ->
re (LEXP_vector_range (fst (const_prop_lexp substs assigns le),
fst (const_prop_exp substs assigns e1),
fst (const_prop_exp substs assigns e2)))
| LEXP_field (le,id) -> re (LEXP_field (fst (const_prop_lexp substs assigns le), id))
(* Reduce a function when
1. all arguments are values,
2. the function is pure,
3. the result is a value
(and 4. the function is not scattered, but that's not terribly important)
to try and keep execution time and the results managable.
*)
and const_prop_try_fn l env (id,args) =
if not (List.for_all is_value args) then
None
else
let Defs ds = defs in
match list_extract (function
| (DEF_fundef (FD_aux (FD_function (_,_,eff,((FCL_aux (FCL_Funcl (id',_,_),_))::_ as fcls)),_)))
-> if Id.compare id id' = 0 then Some (eff,fcls) else None
| _ -> None) ds with
| None -> None
| Some (eff,_) when not (is_pure eff) -> None
| Some (_,fcls) ->
let arg = match args with
| [] -> E_aux (E_lit (L_aux (L_unit,Generated l)),(Generated l,None))
| [e] -> e
| _ -> E_aux (E_tuple args,(Generated l,None)) in
let cases = List.map (function
| FCL_aux (FCL_Funcl (_,pat,exp), ann) -> Pat_aux (Pat_exp (pat,exp),ann))
fcls in
match can_match_with_env env arg cases with
| Some (exp,bindings,kbindings) ->
let substs = bindings_from_list bindings in
let result,_ = const_prop_exp substs Bindings.empty exp in
if is_value result then Some result else None
| None -> None
in
let subst_exp substs exp =
let substs = bindings_from_list substs in
fst (const_prop_exp substs Bindings.empty exp)
in
(* Split a variable pattern into every possible value *)
let split var l annot =
let v = string_of_id var in
let env, typ = env_typ_expected l annot in
let typ = Env.expand_synonyms env typ in
let Typ_aux (ty,l) = typ in
let new_l = Generated l in
let renew_id (Id_aux (id,l)) = Id_aux (id,new_l) in
let cannot () =
raise (Reporting_basic.err_general l
("Cannot split type " ^ string_of_typ typ ^ " for variable " ^ v))
in
match ty with
| Typ_id id ->
(try
(* enumerations *)
let ns = Env.get_enum id env in
List.map (fun n -> (P_aux (P_id (renew_id n),(l,annot)),
[var,E_aux (E_id (renew_id n),(new_l,annot))])) ns
with Type_error _ ->
match id with
| Id_aux (Id "bit",_) ->
List.map (fun b ->
P_aux (P_lit (L_aux (b,new_l)),(l,annot)),
[var,E_aux (E_lit (L_aux (b,new_l)),(new_l, annot))])
[L_zero; L_one]
| _ -> cannot ())
| Typ_app (Id_aux (Id "vector",_), [_;Typ_arg_aux (Typ_arg_nexp len,_);_;Typ_arg_aux (Typ_arg_typ (Typ_aux (Typ_id (Id_aux (Id "bit",_)),_)),_)]) ->
(match len with
| Nexp_aux (Nexp_constant sz,_) ->
if sz <= vector_split_limit then
let lits = make_vectors sz in
List.map (fun lit ->
P_aux (P_lit lit,(l,annot)),
[var,E_aux (E_lit lit,(new_l,annot))]) lits
else
raise (Reporting_basic.err_general l
("Refusing to split vector type of length " ^ string_of_int sz ^
" above limit " ^ string_of_int vector_split_limit ^
" for variable " ^ v))
| _ ->
cannot ()
)
(*| set constrained numbers TODO *)
| _ -> cannot ()
in
(* Split variable patterns at the given locations *)
let map_locs ls (Defs defs) =
let rec match_l = function
| Unknown
| Int _ -> []
| Generated l -> [] (* Could do match_l l, but only want to split user-written patterns *)
| Range (p,q) ->
let matches =
List.filter (fun ((filename,line),_) ->
Filename.basename p.Lexing.pos_fname = filename &&
p.Lexing.pos_lnum <= line && line <= q.Lexing.pos_lnum) ls
in List.map snd matches
in
let split_pat vars p =
let id_matches = function
| Id_aux (Id x,_) -> List.mem x vars
| Id_aux (DeIid x,_) -> List.mem x vars
in
let rec list f = function
| [] -> None
| h::t ->
let t' =
match list f t with
| None -> [t,[]]
| Some t' -> t'
in
let h' =
match f h with
| None -> [h,[]]
| Some ps -> ps
in
Some (List.concat (List.map (fun (h,hsubs) -> List.map (fun (t,tsubs) -> (h::t,hsubs@tsubs)) t') h'))
in
let rec spl (P_aux (p,(l,annot))) =
let relist f ctx ps =
optmap (list f ps)
(fun ps ->
List.map (fun (ps,sub) -> P_aux (ctx ps,(l,annot)),sub) ps)
in
let re f p =
optmap (spl p)
(fun ps -> List.map (fun (p,sub) -> (P_aux (f p,(l,annot)), sub)) ps)
in
let fpat (FP_aux ((FP_Fpat (id,p),annot))) =
optmap (spl p)
(fun ps -> List.map (fun (p,sub) -> FP_aux (FP_Fpat (id,p), annot), sub) ps)
in
let ipat (i,p) = optmap (spl p) (List.map (fun (p,sub) -> (i,p),sub))
in
match p with
| P_lit _
| P_wild
| P_var _
-> None
| P_as (p',id) when id_matches id ->
raise (Reporting_basic.err_general l
("Cannot split " ^ string_of_id id ^ " on 'as' pattern"))
| P_as (p',id) ->
re (fun p -> P_as (p,id)) p'
| P_typ (t,p') -> re (fun p -> P_typ (t,p)) p'
| P_id id when id_matches id ->
Some (split id l annot)
| P_id _ ->
None
| P_app (id,ps) ->
relist spl (fun ps -> P_app (id,ps)) ps
| P_record (fps,flag) ->
relist fpat (fun fps -> P_record (fps,flag)) fps
| P_vector ps ->
relist spl (fun ps -> P_vector ps) ps
| P_vector_concat ps ->
relist spl (fun ps -> P_vector_concat ps) ps
| P_tup ps ->
relist spl (fun ps -> P_tup ps) ps
| P_list ps ->
relist spl (fun ps -> P_list ps) ps
| P_cons (p1,p2) ->
match spl p1, spl p2 with
| None, None -> None
| p1', p2' ->
let p1' = match p1' with None -> [p1,[]] | Some p1' -> p1' in
let p2' = match p2' with None -> [p2,[]] | Some p2' -> p2' in
let ps = List.map (fun (p1',subs1) -> List.map (fun (p2',subs2) ->
P_aux (P_cons (p1',p2'),(l,annot)),subs1@subs2) p2') p1' in
Some (List.concat ps)
in spl p
in
let map_pat_by_loc (P_aux (p,(l,_)) as pat) =
match match_l l with
| [] -> None
| vars -> split_pat vars pat
in
let map_pat (P_aux (p,(l,tannot)) as pat) =
match map_pat_by_loc pat with
| Some l -> VarSplit l
| None ->
match p with
| P_app (id,args) ->
begin
let kid,kid_annot =
match args with
| [P_aux (P_var (_,kid),ann)] -> kid,ann
| _ ->
raise (Reporting_basic.err_general l
"Pattern match not currently supported by monomorphisation")
in match List.find (fun (id',_) -> Id.compare id id' = 0) refinements with
| (_,variants) ->
let map_inst (insts,id',_) =
let insts =
match insts with [(v,Some i)] -> [(kid,Nexp_aux (Nexp_constant i, Generated l))]
| _ -> assert false
in
(*
let insts,_ = split_insts insts in
let insts = List.map (fun (v,i) ->
(??,
Nexp_aux (Nexp_constant i,Generated l)))
insts in
P_aux (P_app (id',args),(Generated l,tannot)),
*)
P_aux (P_app (id',[P_aux (P_id (id_of_kid kid),kid_annot)]),(Generated l,tannot)),
kbindings_from_list insts
in
ConstrSplit (List.map map_inst variants)
| exception Not_found -> NoSplit
end
| _ -> NoSplit
in
let check_single_pat (P_aux (_,(l,annot)) as p) =
match match_l l with
| [] -> p
| lvs ->
let pvs = bindings_from_pat p in
let pvs = List.map string_of_id pvs in
let overlap = List.exists (fun v -> List.mem v pvs) lvs in
let () =
if overlap then
Reporting_basic.print_err false true l "Monomorphisation"
"Splitting a singleton pattern is not possible"
in p
in
let rec map_exp ((E_aux (e,annot)) as ea) =
let re e = E_aux (e,annot) in
match e with
| E_block es -> re (E_block (List.map map_exp es))
| E_nondet es -> re (E_nondet (List.map map_exp es))
| E_id _
| E_lit _
| E_sizeof _
| E_internal_exp _
| E_sizeof_internal _
| E_internal_exp_user _
| E_comment _
| E_constraint _
-> ea
| E_cast (t,e') -> re (E_cast (t, map_exp e'))
| E_app (id,es) -> re (E_app (id,List.map map_exp es))
| E_app_infix (e1,id,e2) -> re (E_app_infix (map_exp e1,id,map_exp e2))
| E_tuple es -> re (E_tuple (List.map map_exp es))
| E_if (e1,e2,e3) -> re (E_if (map_exp e1, map_exp e2, map_exp e3))
| E_for (id,e1,e2,e3,ord,e4) -> re (E_for (id,map_exp e1,map_exp e2,map_exp e3,ord,map_exp e4))
| E_loop (loop,e1,e2) -> re (E_loop (loop,map_exp e1,map_exp e2))
| E_vector es -> re (E_vector (List.map map_exp es))
| E_vector_access (e1,e2) -> re (E_vector_access (map_exp e1,map_exp e2))
| E_vector_subrange (e1,e2,e3) -> re (E_vector_subrange (map_exp e1,map_exp e2,map_exp e3))
| E_vector_update (e1,e2,e3) -> re (E_vector_update (map_exp e1,map_exp e2,map_exp e3))
| E_vector_update_subrange (e1,e2,e3,e4) -> re (E_vector_update_subrange (map_exp e1,map_exp e2,map_exp e3,map_exp e4))
| E_vector_append (e1,e2) -> re (E_vector_append (map_exp e1,map_exp e2))
| E_list es -> re (E_list (List.map map_exp es))
| E_cons (e1,e2) -> re (E_cons (map_exp e1,map_exp e2))
| E_record fes -> re (E_record (map_fexps fes))
| E_record_update (e,fes) -> re (E_record_update (map_exp e, map_fexps fes))
| E_field (e,id) -> re (E_field (map_exp e,id))
| E_case (e,cases) -> re (E_case (map_exp e, List.concat (List.map map_pexp cases)))
| E_let (lb,e) -> re (E_let (map_letbind lb, map_exp e))
| E_assign (le,e) -> re (E_assign (map_lexp le, map_exp e))
| E_exit e -> re (E_exit (map_exp e))
| E_throw e -> re (E_throw e)
| E_try (e,cases) -> re (E_try (map_exp e, List.concat (List.map map_pexp cases)))
| E_return e -> re (E_return (map_exp e))
| E_assert (e1,e2) -> re (E_assert (map_exp e1,map_exp e2))
| E_internal_cast (ann,e) -> re (E_internal_cast (ann,map_exp e))
| E_comment_struc e -> re (E_comment_struc e)
| E_internal_let (le,e1,e2) -> re (E_internal_let (map_lexp le, map_exp e1, map_exp e2))
| E_internal_plet (p,e1,e2) -> re (E_internal_plet (check_single_pat p, map_exp e1, map_exp e2))
| E_internal_return e -> re (E_internal_return (map_exp e))
and map_opt_default ((Def_val_aux (ed,annot)) as eda) =
match ed with
| Def_val_empty -> eda
| Def_val_dec e -> Def_val_aux (Def_val_dec (map_exp e),annot)
and map_fexps (FES_aux (FES_Fexps (fes,flag), annot)) =
FES_aux (FES_Fexps (List.map map_fexp fes, flag), annot)
and map_fexp (FE_aux (FE_Fexp (id,e), annot)) =
FE_aux (FE_Fexp (id,map_exp e),annot)
and map_pexp = function
| Pat_aux (Pat_exp (p,e),l) ->
(match map_pat p with
| NoSplit -> [Pat_aux (Pat_exp (p,map_exp e),l)]
| VarSplit patsubsts ->
List.map (fun (pat',substs) ->
let exp' = subst_exp substs e in
Pat_aux (Pat_exp (pat', map_exp exp'),l))
patsubsts
| ConstrSplit patnsubsts ->
List.map (fun (pat',nsubst) ->
let pat' = nexp_subst_pat nsubst pat' in
let exp' = nexp_subst_exp nsubst e in
Pat_aux (Pat_exp (pat', map_exp exp'),l)
) patnsubsts)
| Pat_aux (Pat_when (p,e1,e2),l) ->
(match map_pat p with
| NoSplit -> [Pat_aux (Pat_when (p,map_exp e1,map_exp e2),l)]
| VarSplit patsubsts ->
List.map (fun (pat',substs) ->
let exp1' = subst_exp substs e1 in
let exp2' = subst_exp substs e2 in
Pat_aux (Pat_when (pat', map_exp exp1', map_exp exp2'),l))
patsubsts
| ConstrSplit patnsubsts ->
List.map (fun (pat',nsubst) ->
let pat' = nexp_subst_pat nsubst pat' in
let exp1' = nexp_subst_exp nsubst e1 in
let exp2' = nexp_subst_exp nsubst e2 in
Pat_aux (Pat_when (pat', map_exp exp1', map_exp exp2'),l)
) patnsubsts)
and map_letbind (LB_aux (lb,annot)) =
match lb with
| LB_val (p,e) -> LB_aux (LB_val (check_single_pat p,map_exp e), annot)
and map_lexp ((LEXP_aux (e,annot)) as le) =
let re e = LEXP_aux (e,annot) in
match e with
| LEXP_id _
| LEXP_cast _
-> le
| LEXP_memory (id,es) -> re (LEXP_memory (id,List.map map_exp es))
| LEXP_tup les -> re (LEXP_tup (List.map map_lexp les))
| LEXP_vector (le,e) -> re (LEXP_vector (map_lexp le, map_exp e))
| LEXP_vector_range (le,e1,e2) -> re (LEXP_vector_range (map_lexp le, map_exp e1, map_exp e2))
| LEXP_field (le,id) -> re (LEXP_field (map_lexp le, id))
in
let map_funcl (FCL_aux (FCL_Funcl (id,pat,exp),annot)) =
match map_pat pat with
| NoSplit -> [FCL_aux (FCL_Funcl (id, pat, map_exp exp), annot)]
| VarSplit patsubsts ->
List.map (fun (pat',substs) ->
let exp' = subst_exp substs exp in
FCL_aux (FCL_Funcl (id, pat', map_exp exp'), annot))
patsubsts
| ConstrSplit patnsubsts ->
List.map (fun (pat',nsubst) ->
let pat' = nexp_subst_pat nsubst pat' in
let exp' = nexp_subst_exp nsubst exp in
FCL_aux (FCL_Funcl (id, pat', map_exp exp'), annot)
) patnsubsts
in
let map_fundef (FD_aux (FD_function (r,t,e,fcls),annot)) =
FD_aux (FD_function (r,t,e,List.concat (List.map map_funcl fcls)),annot)
in
let map_scattered_def sd =
match sd with
| SD_aux (SD_scattered_funcl fcl, annot) ->
List.map (fun fcl' -> SD_aux (SD_scattered_funcl fcl', annot)) (map_funcl fcl)
| _ -> [sd]
in
let map_def d =
match d with
| DEF_kind _
| DEF_type _
| DEF_spec _
| DEF_default _
| DEF_reg_dec _
| DEF_comm _
| DEF_overload _
| DEF_fixity _
| DEF_internal_mutrec _
-> [d]
| DEF_fundef fd -> [DEF_fundef (map_fundef fd)]
| DEF_val lb -> [DEF_val (map_letbind lb)]
| DEF_scattered sd -> List.map (fun x -> DEF_scattered x) (map_scattered_def sd)
in
Defs (List.concat (List.map map_def defs))
in
map_locs splits defs'
(* The next section of code turns atom('n) types into itself('n) types, which
survive into the Lem output, so can be used to parametrise functions over
internal bitvector lengths (such as datasize and regsize in ARM specs *)
module AtomToItself =
struct
let findi f =
let rec aux n = function
| [] -> None
| h::t -> match f h with Some x -> Some (n,x) | _ -> aux (n+1) t
in aux 0
let mapat f is xs =
let rec aux n = function
| _, [] -> []
| (i,_)::is, h::t when i = n ->
let h' = f h in
let t' = aux (n+1) (is, t) in
h'::t'
| is, h::t ->
let t' = aux (n+1) (is, t) in
h::t'
in aux 0 (is, xs)
let mapat_extra f is xs =
let rec aux n = function
| _, [] -> [], []
| (i,v)::is, h::t when i = n ->
let h',x = f v h in
let t',xs = aux (n+1) (is, t) in
h'::t',x::xs
| is, h::t ->
let t',xs = aux (n+1) (is, t) in
h::t',xs
in aux 0 (is, xs)
let tyvars_bound_in_pat pat =
let open Rewriter in
fst (fold_pat
{ (compute_pat_alg KidSet.empty KidSet.union) with
p_var = (fun ((s,pat),kid) -> KidSet.add kid s, P_var (pat,kid)) }
pat)
let tyvars_bound_in_lb (LB_aux (LB_val (pat,_),_)) = tyvars_bound_in_pat pat
let rec sizes_of_typ (Typ_aux (t,l)) =
match t with
Typ_wild
| Typ_id _
| Typ_var _
-> KidSet.empty
| Typ_fn _ -> raise (Reporting_basic.err_general l
"Function type on expressinon")
| Typ_tup typs -> kidset_bigunion (List.map sizes_of_typ typs)
| Typ_exist (kids,_,typ) ->
List.fold_left (fun s k -> KidSet.remove k s) (sizes_of_typ typ) kids
| Typ_app (Id_aux (Id "vector",_),
[_;Typ_arg_aux (Typ_arg_nexp size,_);
_;Typ_arg_aux (Typ_arg_typ (Typ_aux (Typ_id (Id_aux (Id "bit",_)),_)),_)]) ->
KidSet.of_list (size_nvars_nexp size)
| Typ_app (_,tas) ->
kidset_bigunion (List.map sizes_of_typarg tas)
and sizes_of_typarg (Typ_arg_aux (ta,_)) =
match ta with
Typ_arg_nexp _
| Typ_arg_order _
-> KidSet.empty
| Typ_arg_typ typ -> sizes_of_typ typ
let sizes_of_annot = function
| _,None -> KidSet.empty
| _,Some (_,typ,_) -> sizes_of_typ typ
let change_parameter_pat kid = function
| P_aux (P_id var, (l,_))
| P_aux (P_typ (_,P_aux (P_id var, (l,_))),_)
-> P_aux (P_id var, (l,None)), (var,kid)
| P_aux (_,(l,_)) -> raise (Reporting_basic.err_unreachable l
"Expected variable pattern")
(* We add code to change the itself('n) parameter into the corresponding
integer. *)
let add_var_rebind exp (var,kid) =
let l = Generated Unknown in
let annot = (l,None) in
E_aux (E_let (LB_aux (LB_val (P_aux (P_id var,annot),
E_aux (E_app (mk_id "size_itself_int",[E_aux (E_id var,annot)]),annot)),annot),exp),annot)
(* atom('n) arguments to function calls need to be rewritten *)
let replace_with_the_value (E_aux (_,(l,_)) as exp) =
let env = env_of exp in
let typ, wrap = match typ_of exp with
| Typ_aux (Typ_exist (kids,nc,typ),l) -> typ, fun t -> Typ_aux (Typ_exist (kids,nc,t),l)
| typ -> typ, fun x -> x
in
let typ = Env.expand_synonyms env typ in
let mk_exp nexp l l' =
E_aux (E_cast (wrap (Typ_aux (Typ_app (Id_aux (Id "itself",Generated Unknown),
[Typ_arg_aux (Typ_arg_nexp nexp,l')]),Generated Unknown)),
E_aux (E_app (Id_aux (Id "make_the_value",Generated Unknown),[exp]),(Generated l,None))),
(Generated l,None))
in
match typ with
| Typ_aux (Typ_app (Id_aux (Id "range",_),
[Typ_arg_aux (Typ_arg_nexp nexp,l');Typ_arg_aux (Typ_arg_nexp nexp',_)]),_)
when nexp = nexp' ->
mk_exp nexp l l'
| _ -> raise (Reporting_basic.err_unreachable l
"atom stopped being an atom?")
let replace_type env typ =
let Typ_aux (t,l) = Env.expand_synonyms env typ in
match t with
| Typ_app (Id_aux (Id "range",_),
[Typ_arg_aux (Typ_arg_nexp nexp,l');Typ_arg_aux (Typ_arg_nexp _,_)]) ->
Typ_aux (Typ_app (Id_aux (Id "itself",Generated Unknown),
[Typ_arg_aux (Typ_arg_nexp nexp,l')]),Generated l)
| _ -> raise (Reporting_basic.err_unreachable l
"atom stopped being an atom?")
let rewrite_size_parameters env (Defs defs) =
let open Rewriter in
let size_vars exp =
fst (fold_exp
{ (compute_exp_alg KidSet.empty KidSet.union) with
e_aux = (fun ((s,e),annot) -> KidSet.union s (sizes_of_annot annot), E_aux (e,annot));
e_let = (fun ((sl,lb),(s2,e2)) -> KidSet.union sl (KidSet.diff s2 (tyvars_bound_in_lb lb)), E_let (lb,e2));
pat_exp = (fun ((sp,pat),(s,e)) -> KidSet.diff s (tyvars_bound_in_pat pat), Pat_exp (pat,e))}
exp)
in
let sizes_funcl fsizes (FCL_aux (FCL_Funcl (id,pat,exp),(l,_))) =
let sizes = size_vars exp in
(* TODO: what, if anything, should sequential be? *)
let visible_tyvars =
KidSet.union (Pretty_print_lem.lem_tyvars_of_typ false true (pat_typ_of pat))
(Pretty_print_lem.lem_tyvars_of_typ false true (typ_of exp))
in
let expose_tyvars = KidSet.diff sizes visible_tyvars in
let parameters = match pat with
| P_aux (P_tup ps,_) -> ps
| _ -> [pat]
in
let to_change = List.map
(fun kid ->
let check (P_aux (_,(_,Some (env,typ,_)))) =
match Env.expand_synonyms env typ with
Typ_aux (Typ_app(Id_aux (Id "range",_),
[Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid',_)),_);
Typ_arg_aux (Typ_arg_nexp (Nexp_aux (Nexp_var kid'',_)),_)]),_) ->
if Kid.compare kid kid' = 0 && Kid.compare kid kid'' = 0 then Some kid else None
| _ -> None
in match findi check parameters with
| None -> raise (Reporting_basic.err_general l
("Unable to find an argument for " ^ string_of_kid kid))
| Some i -> i)
(KidSet.elements expose_tyvars)
in
let to_change = List.sort compare to_change in
match Bindings.find id fsizes with
| old -> if old = to_change then fsizes else
raise (Reporting_basic.err_general l
("Different size type variables in different clauses of " ^ string_of_id id))
| exception Not_found -> Bindings.add id to_change fsizes
in
let sizes_def fsizes = function
| DEF_fundef (FD_aux (FD_function (_,_,_,funcls),_)) ->
List.fold_left sizes_funcl fsizes funcls
| _ -> fsizes
in
let fn_sizes = List.fold_left sizes_def Bindings.empty defs in
let rewrite_e_app (id,args) =
match Bindings.find id fn_sizes with
| [] -> E_app (id,args)
| to_change ->
let args' = mapat replace_with_the_value to_change args in
E_app (id,args')
| exception Not_found -> E_app (id,args)
in
let rewrite_funcl (FCL_aux (FCL_Funcl (id,pat,body),(l,annot))) =
let pat,body =
(* Update pattern and add itself -> nat wrapper to body *)
match Bindings.find id fn_sizes with
| [] -> pat,body
| to_change ->
let pat, vars =
match pat with
P_aux (P_tup pats,(l,_)) ->
let pats, vars = mapat_extra change_parameter_pat to_change pats in
P_aux (P_tup pats,(l,None)), vars
| P_aux (_,(l,_)) ->
begin
match to_change with
| [0,kid] ->
let pat, var = change_parameter_pat kid pat in
pat, [var]
| _ ->
raise (Reporting_basic.err_unreachable l
"Expected multiple parameters at single parameter")
end
in
let body = List.fold_left add_var_rebind body vars in
pat,body
| exception Not_found -> pat,body
in
(* Update function applications *)
let body = fold_exp { id_exp_alg with e_app = rewrite_e_app } body in
FCL_aux (FCL_Funcl (id,pat,body),(l,None))
in
let rewrite_def = function
| DEF_fundef (FD_aux (FD_function (recopt,tannopt,effopt,funcls),(l,_))) ->
(* TODO rewrite tannopt? *)
DEF_fundef (FD_aux (FD_function (recopt,tannopt,effopt,List.map rewrite_funcl funcls),(l,None)))
| DEF_spec (VS_aux (VS_val_spec (typschm,id,extern,cast),(l,annot))) as spec ->
begin
match Bindings.find id fn_sizes with
| [] -> spec
| to_change ->
let typschm = match typschm with
| TypSchm_aux (TypSchm_ts (tq,typ),l) ->
let typ = match typ with
| Typ_aux (Typ_fn (Typ_aux (Typ_tup ts,l),t2,eff),l2) ->
Typ_aux (Typ_fn (Typ_aux (Typ_tup (mapat (replace_type env) to_change ts),l),t2,eff),l2)
| _ -> replace_type env typ
in TypSchm_aux (TypSchm_ts (tq,typ),l)
in
DEF_spec (VS_aux (VS_val_spec (typschm,id,extern,cast),(l,None)))
| exception Not_found -> spec
end
| def -> def
in
(*
Bindings.iter (fun id args ->
print_endline (string_of_id id ^ " needs " ^
String.concat ", " (List.map string_of_int args))) fn_sizes
*)
Defs (List.map rewrite_def defs)
end
let monomorphise mwords splits defs =
let defs = split_defs splits defs in
(* TODO: currently doing this because constant propagation leaves numeric literals as
int, try to avoid this later; also use final env for DEF_spec case above, because the
type checker doesn't store the env at that point :( *)
if mwords then
let (defs,env) = Type_check.check (Type_check.Env.no_casts Type_check.initial_env) defs in
let defs = AtomToItself.rewrite_size_parameters env defs in
defs
else
defs
|