Source file term_domain.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
module In_bits = Units.In_bits
(** This file corresponds to the symbolic expression domain described
in [POPL'23] and [PLDI'24]. *)
module Log = Tracelog.Make(struct let category = "Domains.Term_domain" end);;
[@@@warning "-33"]
let option_translate: [ `First_order | `Horn ] = `Horn;;
type pretty_terms =
| Value
| Symbolic
| Both
| Relation
let option_pretty_terms = ref Value
let set_pretty_terms x = option_pretty_terms := x
let option_fresh_variable_every_time =
(not Term_based.Propagation.option_push_and_pop) ||
(not Term_based.Propagation.option_push_and_pop_on_restart) ||
true;;
let option_semantic_simplification_constraints = true
module TC = Operator.Function_symbol
module Terms_SMT = Terms.Smt
module Make
(Terms: Terms.Sig.TERMS)
(Domain: Term_based_sig.Domain_S with module Terms = Terms)
: Sig.BASE_WITH_INTEGER
with type binary = TC.binary Terms.t
and type integer = TC.integer Terms.t
and type boolean = TC.boolean Terms.t
and type enum = TC.enum Terms.t
= struct
let name() = "Term_domain(" ^ (Domain.name) ^ ")";;
let unique_id() = Sig.Fresh_id.fresh @@ name();;
type 'a identifier = 'a Terms.t
module Types = struct
type binary = TC.binary identifier
type integer = TC.integer identifier
type boolean = TC.boolean identifier
type enum = TC.enum identifier
end
include Types
module Identifier = struct
let pretty fmt x = Format.fprintf fmt "%a" Terms.pretty x
let _equal a b =
let res = Terms.equal a b in res
;;
let equal a b = a == b;;
let compare = Terms.compare
let hash = Terms.hash
let to_int = Terms.hash
end
module Binary = struct
type t = binary
include Identifier
end
module Integer = struct
type t = integer
include Identifier
end
module Boolean = struct
type t = boolean
include Identifier
end
module Enum = struct
type t = enum
include Identifier
end
type context =
{
unique_id: int;
mutable path_condition: Boolean.t;
level:int;
mutable domain:Domain.t
}
;;
module TC_Binary = struct
type t = TC.binary identifier
include Identifier
end
module TC_Integer = struct
type t = TC.integer identifier
include Identifier
end
module TC_Boolean = struct
type t = TC.boolean identifier
include Identifier
end
module TC_Enum = struct
type t = TC.enum identifier
include Identifier
end
module Pair(Key : Datatype_sig.S) = struct
type t = Key.t * Key.t
let compare (a1,b1) (a2,b2) =
let c = Key.compare a1 a2 in
if c <> 0 then c
else Key.compare b1 b2
let equal (a1,b1) (a2,b2) = Key.equal a1 a2 && Key.equal b1 b2
let hash (a,b) = Hashing.hash2 (Key.hash a) (Key.hash b)
end
module MapPair = struct
module Key = struct
type 'key t = 'key identifier
let to_int = Terms.hash
let polyeq: 'a t -> 'b t -> ('a, 'b) PatriciaTree.cmp = fun a b ->
let open PatriciaTree in
if (Obj.magic a == Obj.magic b)
then (Obj.magic Eq)
else Diff
;;
end
module Value2 = struct
type ('key,'value) t = 'key Terms.t
end
module Map2 = PatriciaTree.MakeHeterogeneousMap(Key)(Value2)
module Value1 = struct
type ('key,'value) t = 'key Terms.t Map2.t
end
module Map1 = PatriciaTree.MakeHeterogeneousMap(Key)(Value1)
type t = unit Map2.t Map1.t
let find: 'a Key.t -> 'a Key.t -> t -> 'a Key.t =
fun key1 key2 map1 ->
let map2 = Map1.find key1 map1 in
Map2.find key2 map2
let mem: 'a Key.t -> 'a Key.t -> t -> bool =
fun key1 key2 map1 ->
match Map1.find key1 map1 with
| exception Not_found -> false
| map2 -> Map2.mem key2 map2
;;
let add: 'a Key.t -> 'a Key.t -> 'a Key.t -> t -> t =
fun key1 key2 value map1 ->
let map2 = match Map1.find key1 map1 with
| exception Not_found -> Map2.singleton key2 value
| map2 -> Map2.add key2 value map2
in Map1.add key1 map2 map1
;;
let empty = Map1.empty
end
module Common = struct
module Key = struct
include Terms.Any
let to_int = get_id_int
end
module Map = PatriciaTree.MakeMap(Key)
module Set = PatriciaTree.MakeSet(Key)
end
module SetPair = struct
open Common
type t = Set.t Map.t
let mem key1 key2 map1 =
match Map.find key1 map1 with
| exception Not_found -> false
| map2 -> Set.mem key2 map2
;;
let add key1 key2 value map1 =
let set2 = match Map.find key1 map1 with
| exception Not_found -> Set.singleton key2
| set2 -> Set.add key2 set2
in Map.add key1 set2 map1
;;
let empty = Map.empty
end
module Context = struct
type t = context
let level ctx = ctx.level
let copy x = { x with path_condition = x.path_condition; domain = x.domain }
let assign ctx newctx =
ctx.domain <- newctx.domain;
ctx.path_condition <- newctx.path_condition
type 'a mapping =
| EmptyMapping: unit mapping
| ConsSame: 'a Terms.t * 'b mapping -> ('a identifier * 'b) mapping
| ConsDifferent: 'a Terms.t * 'a Terms.t * 'b mapping -> ('a identifier * 'b) mapping
;;
type 'a in_tuple = { mapping: 'a mapping; } [@@unboxed]
type 'a in_acc = bool * 'a in_tuple
type 'a out_tuple = { phi: MapPair.t }
type ('a,'b) result =
Result: bool * 'some in_tuple * (t -> 'some out_tuple -> 'a * 'b out_tuple) -> ('a,'b) result
type empty_tuple = unit
let empty_tuple () = { mapping = EmptyMapping; }
end
open Context
let root_domain() =
let domain = Domain.top in
let domain = Domain.Boolean_Forward.true_ domain Terms.Build.Boolean.true_ in
let domain = Domain.Boolean_Forward.false_ domain Terms.Build.Boolean.false_ in
let domain = Domain.boolean_empty domain Terms.Build.Boolean.empty in
let domain = Domain.Integer_Forward.iconst Z.zero domain Terms.Build.Integer.zero in
let domain = Domain.Integer_Forward.iconst Z.one domain Terms.Build.Integer.one in
let domain = Domain.integer_empty domain Terms.Build.Integer.empty in
domain
;;
let unique_id_ref = ref 0;;
let get_unique_id() = incr unique_id_ref; !unique_id_ref;;
let root_context() =
let ctx = {
unique_id = get_unique_id();
path_condition = Terms.Build.Boolean.true_;
level = 0;
domain = root_domain()
}
in
ctx
;;
let context_pretty fmt ctx = Format.fprintf fmt "Context{@[<hv>id=%d,@ %a@]}" ctx.unique_id Domain.pretty ctx.domain
type 'a m = Domain.t -> 'a * Domain.t
let return x = fun domain -> x,domain
let (>>=) m f = fun dom1 -> let (res,dom2) = m dom1 in (f res) dom2
let run ctx f =
let dom = ctx.domain in
let (res:'a identifier),dom = f dom in
ctx.domain <- dom;
res
;;
let opt_boolean x domain =
match Domain.Query.boolean domain x with
| Lattices.Quadrivalent.True -> Terms.Build.Boolean.true_, domain
| Lattices.Quadrivalent.False -> Terms.Build.Boolean.false_, domain
| Lattices.Quadrivalent.Bottom -> Terms.Build.Boolean.empty, domain
| _ -> x, domain
;;
let ar0 constrain fdomain domain =
constrain,fdomain domain constrain
;;
let ar0_boolean = ar0
let ar0_integer ctx = ar0
let ar0_binary = ar0
let ar0_enum = ar0
let iconst k = ar0 (Terms.Build.Integer.iconst k) (Domain.Integer_Forward.iconst k);;
let biconst ~size k = ar0 (Terms.Build.Binary.biconst ~size k) (Domain.Binary_Forward.biconst ~size k);;
let opt_integer x domain =
if option_semantic_simplification_constraints
then
let value = Domain.Query.integer domain x in
match Domain.Query.Integer_Lattice.is_singleton value with
| None -> x, domain
| Some k -> iconst k domain
else x, domain
;;
let opt_binary ~size x domain =
if option_semantic_simplification_constraints
then
let value = Domain.Query.binary ~size domain x in
match Domain.Query.Binary_Lattice.is_singleton ~size value with
| None -> x,domain
| Some k -> biconst ~size k domain
else x,domain
;;
let opt_enum x domain = x,domain
;;
let ar1 fconstrain fdomain a domain =
let res = fconstrain a in
let dom = fdomain domain a res in
res, dom
;;
let _ar1_integer_integer = ar1
let ar1_integer_integer ctx fconstrain fdomain a =
run ctx @@ (ar1 fconstrain fdomain a >>= opt_integer)
;;
let _ar1_binary_binary ~size = ar1
let ar1_binary_binary ~size ctx fconstrain fdomain a =
run ctx @@ (ar1 fconstrain fdomain a >>= opt_binary ~size)
;;
let ar1_boolean_binary ~size ctx fconstrain fdomain a =
run ctx @@ (ar1 fconstrain fdomain a >>= opt_binary ~size)
;;
let ar1_boolean_boolean ctx fconstrain fdomain a =
run ctx @@ (ar1 fconstrain fdomain a >>= opt_boolean)
;;
let ar1_enum_boolean ctx fconstrain fdomain a =
run ctx @@ (ar1 fconstrain fdomain a >>= opt_boolean)
;;
let ar2 ctx fconstrain fdomain a b dom =
let res = fconstrain a b in
let dom = fdomain dom a b res in
res, dom
;;
let ar2' ctx f a b dom =
let (constrain,dom) = f dom a b in
constrain, dom
;;
let ar2_binary_binary_binary' ~size ctx f a b =
run ctx @@ (ar2' ctx f a b >>= opt_binary ~size)
let ar2_binary_binary_binary ~size ctx fconstrain fdomain a b =
run ctx @@ (ar2 ctx fconstrain fdomain a b >>= opt_binary ~size)
let ar2_integer_integer_integer ctx fconstrain fdomain a b =
run ctx @@ (ar2 ctx fconstrain fdomain a b >>= opt_integer)
let ar2_boolean_boolean_boolean ctx fconstrain fdomain a b =
(ar2 ctx fconstrain fdomain a b >>= opt_boolean)
;;
let ar2_integer_integer_boolean =
(if option_semantic_simplification_constraints
then ar2_boolean_boolean_boolean
else ar2 )
;;
let ar2_binary_binary_boolean ~size =
if option_semantic_simplification_constraints
then ar2_boolean_boolean_boolean
else ar2
;;
let ar2_integer_integer_boolean ctx fconstrain fdomain a b =
run ctx @@ ar2_integer_integer_boolean ctx fconstrain fdomain a b
;;
let ar2_binary_binary_boolean ~size ctx fconstrain fdomain a b =
run ctx @@ ar2_binary_binary_boolean ~size ctx fconstrain fdomain a b
;;
let ar2_boolean_boolean_boolean ctx fconstrain fdomain a b =
run ctx @@ ar2_boolean_boolean_boolean ctx fconstrain fdomain a b
;;
let rec assume ctx cond pos domain =
let join a b pos domain =
Codex_log.warning "This was never tested";
let dom1 = assume ctx a pos domain in
let dom2 = assume ctx b pos domain in
let tup = Immutable_array.empty in
match dom1,dom2 with
| None, dom | dom, None -> dom
| Some doma, Some domb -> Some(Domain.nondet ~doma ~tupa:tup ~domb ~tupb:tup ~tupres:tup)
in
let inter a b pos domain = match assume ctx a pos domain with
| None -> None
| Some domain -> assume ctx b pos domain
in
match pos, cond with
| _, Terms.(Bool{term=T1{tag=TC.Not;a=Terms.Bool _ as a}}) ->
assume ctx a (not pos) domain
| true,Terms.(Bool{term=T2{tag=TC.And; a=Terms.Bool _ as a; b=Terms.Bool _ as b}}) ->
inter a b pos domain
| false,Terms.(Bool{term=T2{tag=TC.Or; a=Terms.Bool _ as a; b=Terms.Bool _ as b}}) ->
inter a b pos domain
| true, Terms.(Bool{term=T2{tag=TC.Or; a=Terms.Bool _ as a; b=Terms.Bool _ as b}}) ->
join a b pos domain
| false, Terms.(Bool{term=T2{tag=TC.And; a=Terms.Bool _ as a; b=Terms.Bool _ as b}}) ->
join a b pos domain
| _ ->
match pos, Domain.Query.Boolean_Lattice.to_quadrivalent @@ Domain.Query.boolean domain cond with
| (_, Lattices.Quadrivalent.Bottom)
| true, Lattices.Quadrivalent.False
| false, Lattices.Quadrivalent.True -> None
| true, Lattices.Quadrivalent.True
| false,Lattices.Quadrivalent.False -> Some domain
| (true, Lattices.Quadrivalent.Top) -> Domain.assume domain cond
| (false,Lattices.Quadrivalent.Top) ->
let ncond = Terms.Build.Boolean.not cond in
let domain = Domain.Boolean_Forward.not domain cond ncond in
Domain.assume domain ncond
let assume ctx cond =
let domain = assume ctx cond true ctx.domain in
match domain with
| None -> None
| Some domain ->
begin
match Domain.Query.Boolean_Lattice.to_quadrivalent @@ Domain.Query.boolean domain cond with
| Lattices.Quadrivalent.(False | Bottom) -> None
| Lattices.Quadrivalent.(True | Top) ->
Some { domain;
unique_id = get_unique_id();
path_condition = Terms.Build.Boolean.(&&) cond ctx.path_condition ;
level = ctx.level }
end
;;
let assume ctx cond =
match Domain.Query.Boolean_Lattice.to_quadrivalent @@ Domain.Query.boolean ctx.domain cond with
| Lattices.Quadrivalent.True -> Some ctx
| Lattices.Quadrivalent.(False | Bottom) -> None
| Lattices.Quadrivalent.Top ->
begin
match Domain.assume ctx.domain cond with
| None -> None
| Some domain -> begin
match Domain.Query.Boolean_Lattice.to_quadrivalent @@ Domain.Query.boolean domain cond with
| Lattices.Quadrivalent.(False | Bottom) -> None
| Lattices.Quadrivalent.(True | Top) ->
Some { domain;
unique_id = get_unique_id();
path_condition = Terms.Build.Boolean.(&&) cond ctx.path_condition ;
level = ctx.level }
end
end
;;
let imperative_assume ctx cond =
match assume ctx cond with
| None -> raise Sig.Bottom
| Some newctx -> begin
ctx.domain <- newctx.domain;
ctx.path_condition <- Terms.Build.Boolean.(&&) cond ctx.path_condition
end
module Boolean_Forward = struct
let (||) ctx = ar2_boolean_boolean_boolean ctx Terms.Build.Boolean.(||) Domain.Boolean_Forward.(||)
let (&&) ctx = ar2_boolean_boolean_boolean ctx Terms.Build.Boolean.(&&) Domain.Boolean_Forward.(&&)
let not ctx = ar1_boolean_boolean ctx Terms.Build.Boolean.not Domain.Boolean_Forward.not
let true_ ctx = run ctx @@ ar0_boolean Terms.Build.Boolean.true_ Domain.Boolean_Forward.true_
let true_ = let res = Terms.Build.Boolean.true_ in fun ctx -> res
let false_ ctx = run ctx @@ ar0_boolean Terms.Build.Boolean.false_ Domain.Boolean_Forward.false_
let false_ = let res = Terms.Build.Boolean.false_ in fun ctx -> res
end
module Integer_Forward' = struct
let ile ctx = ar2_integer_integer_boolean ctx Terms.Build.Integer.ile Domain.Integer_Forward.ile
let ieq ctx = ar2_integer_integer_boolean ctx Terms.Build.Integer.ieq Domain.Integer_Forward.ieq
let iconst k ctx = run ctx @@ ar0_integer ctx (Terms.Build.Integer.iconst k) (Domain.Integer_Forward.iconst k)
let one ctx = iconst Z.one ctx
let one = let res = Terms.Build.Integer.one in fun ctx -> res
let zero ctx = iconst Z.zero ctx
let zero = let res = Terms.Build.Integer.zero in fun ctx -> res
let ixor ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.ixor Domain.Integer_Forward.ixor
let ior ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.ior Domain.Integer_Forward.ior
let iand ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.iand Domain.Integer_Forward.iand
let ishr ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.ishr Domain.Integer_Forward.ishr
let ishl ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.ishl Domain.Integer_Forward.ishl
let imod ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.imod Domain.Integer_Forward.imod
let idiv ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.idiv Domain.Integer_Forward.idiv
let imul ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.imul Domain.Integer_Forward.imul
let iadd ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.iadd Domain.Integer_Forward.iadd
let isub ctx = ar2_integer_integer_integer ctx Terms.Build.Integer.isub Domain.Integer_Forward.isub
let itimes k ctx = ar1_integer_integer ctx (Terms.Build.Integer.itimes k) (Domain.Integer_Forward.itimes k)
end
module Integer_Forward = struct
include Integer_Forward'
let iadd ctx a' b' = match a',b' with
| a,b ->
if a == b
then
let two = Z.of_int 2 in
let two = (Terms.Build.Integer.iconst two) in
let constrain = Terms.Build.Integer.imul two a in
ctx.domain <- Domain.Integer_Forward.imul ctx.domain two a constrain;
constrain
else iadd ctx a' b'
;;
end
module Enum_Forward = struct
let caseof ~case ctx =
ar1_enum_boolean ctx (Terms.Build.Enum.caseof ~case) (Domain.Enum_Forward.caseof ~case)
let enum_const ~case ctx =
run ctx @@ ar0_enum (Terms.Build.Enum.enum_const ~case) (Domain.Enum_Forward.enum_const ~case)
end
module Binary_Forward = struct
module No_Rewrite = struct
let default fconstrain fdomain dom a b =
let constrain = fconstrain a b in
let domain = fdomain dom a b constrain in
constrain,domain
let biadd ~size ~flags = default (Terms.Build.Binary.biadd ~size ~flags) (Domain.Binary_Forward.biadd ~size ~flags)
let bisub ~size ~flags = default (Terms.Build.Binary.bisub ~size ~flags) (Domain.Binary_Forward.bisub ~size ~flags)
let bimul ~size ~flags = default (Terms.Build.Binary.bimul ~size ~flags) (Domain.Binary_Forward.bimul ~size ~flags)
let bxor ~size = default (Terms.Build.Binary.bxor ~size) (Domain.Binary_Forward.bxor ~size)
let bor ~size = default (Terms.Build.Binary.bor ~size) (Domain.Binary_Forward.bor ~size)
let band ~size = default (Terms.Build.Binary.band ~size) (Domain.Binary_Forward.band ~size)
let bashr ~size = default (Terms.Build.Binary.bashr ~size) (Domain.Binary_Forward.bashr ~size)
let blshr ~size = default (Terms.Build.Binary.blshr ~size) (Domain.Binary_Forward.blshr ~size)
let bshl ~size ~flags = default (Terms.Build.Binary.bshl ~size ~flags) (Domain.Binary_Forward.bshl ~size ~flags)
let bisdiv ~size = default (Terms.Build.Binary.bisdiv ~size) (Domain.Binary_Forward.bisdiv ~size)
let biudiv ~size = default (Terms.Build.Binary.biudiv ~size) (Domain.Binary_Forward.biudiv ~size)
let bismod ~size = default (Terms.Build.Binary.bismod ~size) (Domain.Binary_Forward.bismod ~size)
let biumod ~size = default (Terms.Build.Binary.biumod ~size) (Domain.Binary_Forward.biumod ~size)
let ~size ~index ~oldsize dom a =
let constrain = Terms.Build.Binary.bextract ~size ~index ~oldsize a in
let domain = Domain.Binary_Forward.bextract ~size ~index ~oldsize dom a constrain in
constrain, domain
end
module Rewrite = struct
include No_Rewrite
let = function
| Terms.(Binary{term=T2{tag=TC.Bimul _size;
a=Binary{term=T0{tag=TC.Biconst(_size2,k)}};
b=Binary _ as b}}) -> (k,b)
| Terms.(Binary{term=T2{tag=TC.Bimul _size;
a=Binary _ as a;
b=Binary{term=T0{tag=TC.Biconst(_size2,k)}}}}) -> (k,a)
| x-> (Z.one, x)
;;
let = function
| Terms.(Binary{term=T2{tag=TC.Biadd _size;
a=Binary _ as a;
b=Binary{term=T0{tag=TC.Biconst(_size2,k)};}}}) ->
(a,k)
| Terms.(Binary{term=T2{tag=TC.Biadd _size;
a=Binary{term=T0{tag=TC.Biconst(_size2,k)}};
b=Binary _ as b;}}) ->
(b,k)
| x -> (x, Z.zero)
let rec bimul ~size ~flags domain a b =
match a,b with
| Terms.(Binary{term=T0{tag=TC.Biconst(_size1,k1)}}),
Terms.(Binary{term=T2{tag=TC.Bimul _size;a=Binary{term=T0{tag=TC.Biconst(_size2,k2)}};b=Binary _ as x}}) ->
bitimes ~size ~flags domain (Z.mul k1 k2) x
| Terms.(Binary{term=T2{tag=TC.Bimul _size;a=Binary{term=T0{tag=TC.Biconst(_size2,k2)}};b=Binary _ as x}}),
Terms.(Binary{term=T0{tag=TC.Biconst(_size1,k1)}}) ->
bitimes ~size ~flags domain (Z.mul k1 k2) x
| _ -> No_Rewrite.bimul ~size ~flags domain a b
and bitimes ~size ~flags domain k x =
let Operator.Flags.Bimul.{nsw;nuw} = Operator.Flags.Bimul.unpack flags in
if Z.equal k Z.zero then (Terms.Build.Binary.biconst ~size Z.zero), domain
else if Z.equal k Z.one then (x,domain)
else
let default () =
let constr = (Terms.Build.Binary.biconst ~size k) in
let domain = Domain.Binary_Forward.biconst ~size k domain constr in
No_Rewrite.bimul ~size ~flags domain constr x
in
let x',c = extract_sum x in
let two_pow_size = Z.shift_left Z.one (size:>int) in
let kc = Z.mul k c in
let q,r = Z.ediv_rem kc two_pow_size in
let cond1 = Z.equal q Z.zero in
let cond2 = Z.equal Z.zero @@ Z.erem (Z.sub two_pow_size r) k in
let cond3 = Z.gt r (Z.sub two_pow_size kc) in
if cond1 && cond2 && cond3 then
let d = Z.divexact (Z.sub two_pow_size r) k in
let constr_d = Terms.Build.Binary.biconst ~size d in
let domain = Domain.Binary_Forward.biconst ~size d domain constr_d in
let interm,domain = No_Rewrite.bisub ~size
~flags:(Operator.Flags.Bisub.pack ~nsw ~nuw ~nusw:false) domain x' constr_d in
let constr_k = Terms.Build.Binary.biconst ~size k in
let domain = Domain.Binary_Forward.biconst ~size k domain constr_k in
No_Rewrite.bimul ~size ~flags domain constr_k interm
else
default ()
and bisdiv ~size domain a b =
match b with
| Terms.(Binary{term=T0{tag=TC.Biconst(_size,k)}}) when not @@ Z.equal k Z.zero ->
let ka,va = extract a in
if Z.equal Z.zero (Z.rem ka k) then
bitimes ~size ~flags:(Operator.Flags.Bimul.pack ~nsw:false ~nuw:false) domain (Z.divexact ka k) va
else
No_Rewrite.bisdiv ~size domain a b
| _ -> No_Rewrite.bisdiv ~size domain a b
and biadd ~(size:In_bits.t) ~flags domain a b =
match a,b with
| Terms.(Binary{term=T0{tag=TC.Biconst(_size,k)}}), _
when Z.equal k Z.zero ->
b, domain
| _, Terms.(Binary{term=T0{tag=TC.Biconst(_size,k)}})
when Z.equal k Z.zero ->
a, domain
| Terms.(Binary{term=T2{tag=TC.Bisub _size';
a=Binary _ as x;
b=Binary{term=T0{tag=TC.Biconst(_size1,k1)}}}},
Binary{term=T0{tag=TC.Biconst (_size2, k2)}})
when Z.equal k1 k2 ->
x, domain
| Terms.(Binary{term=T0{tag=TC.Biconst (_size2, k2)}},
Binary{term=T2{tag=TC.Bisub _size';
a=Binary _ as x;
b=Binary{term=T0{tag=TC.Biconst(_size1,k1)}}}})
when Z.equal k1 k2 ->
x, domain
| Terms.(Binary{term=T2{tag=TC.Biadd _size';
a=Binary _ as x;
b=Binary{term=T0{tag=TC.Biconst(_size1,k1)}}}},
Binary{term=T0{tag=TC.Biconst (_size2, k2)}})
when Z.equal (Z.rem (Z.add k1 k2) (Z.shift_left Z.one (size:>int))) Z.zero ->
x, domain
| Terms.(Binary{term=T2{tag=TC.Biadd _size';
a=Binary{term=T0{tag=TC.Biconst(_size1,k1)}};
b=Binary _ as x}},
Binary{term=T0{tag=TC.Biconst (_size2, k2)}})
when Z.equal (Z.rem (Z.add k1 k2) (Z.shift_left Z.one (size:>int))) Z.zero ->
x, domain
| Terms.(Binary{term=T2{tag=TC.Biadd _size;
a=Binary{term=T0{tag=TC.Biconst(_size1,k1)}};
b=Binary _ as x}},
Binary{term=T0{tag=TC.Biconst (_size2, k2)}})
| Terms.(Binary{term=T0{tag=TC.Biconst (_size2, k2)}},
Binary{term=T2{tag=TC.Biadd _size;
a=Binary{term=T0{tag=TC.Biconst(_size1,k1)}};
b=Binary _ as x}})
| Terms.(Binary{term=T2{tag=TC.Biadd _size;
a=Binary _ as x;
b=Binary{term=T0{tag=TC.Biconst(_size1,k1)}}}},
Binary{term=T0{tag=TC.Biconst (_size2, k2)}})
| Terms.(Binary{term=T0{tag=TC.Biconst (_size2, k2)}},
Binary{term=T2{tag=TC.Biadd _size;
a=Binary _ as x;
b=Binary{term=T0{tag=TC.Biconst(_size1,k1)}}}})
->
let k = Z.add k2 k1 in
let c = Terms.Build.Binary.biconst ~size k in
let domain = Domain.Binary_Forward.biconst ~size k domain c in
let res = Terms.Build.Binary.biadd ~size ~flags x c in
let domain = Domain.Binary_Forward.biadd ~size ~flags domain x c res in
res, domain
| _ ->
let (ka,va) = extract a and (kb,vb) = extract b in
let Operator.Flags.Biadd.{nsw;nuw;nusw} = Operator.Flags.Biadd.unpack flags in
if Terms.equal va vb
then bitimes ~size ~flags:(Operator.Flags.Bimul.pack ~nsw ~nuw) domain (Z.add ka kb) va
else No_Rewrite.biadd ~size ~flags domain a b
and bisub ~size ~flags domain a b =
match a,b with
| _, Terms.(Binary{term=T0{tag=TC.Biconst(_size,k)}})
when Z.equal k Z.zero ->
a, domain
| Terms.Binary{term=T2{tag=TC.Biadd _size; a=Binary _ as x; b=Binary _ as y}}, _
when Binary.equal x b ->
y, domain
| Terms.Binary{term=T2{tag=TC.Biadd _size; a=Binary _ as x; b=Binary _ as y}}, _
when Binary.equal y b ->
x, domain
| _ ->
let Operator.Flags.Bisub.{nsw;nuw;nusw} = Operator.Flags.Bisub.unpack flags in
let (ka,va) = extract a and (kb,vb) = extract b in
if Terms.equal va vb
then bitimes ~size ~flags:(Operator.Flags.Bimul.pack ~nsw ~nuw) domain (Z.sub ka kb) va
else if Terms.equal va b
then bitimes ~size ~flags:(Operator.Flags.Bimul.pack ~nsw ~nuw) domain (Z.pred ka) va
else No_Rewrite.bisub ~size ~flags domain a b
let band ~size domain a b =
if Terms.equal a b then
a, domain
else No_Rewrite.band ~size domain a b
let rec ~size ~index ~oldsize domain c =
if (size = oldsize) && (index = In_bits.zero) then c, domain
else
begin match c with
| Terms.(Binary{term=T2{tag=Bconcat(size1,size2);a;b}}) ->
if ((index:>int) < (size2:>int)) && (size <= size2) then (bextract ~size ~index ~oldsize:size2 domain b)
else
if ((index:>int) >= (size2:>int)) && (size <= size1) then (bextract ~size ~index:In_bits.(index - size2) ~oldsize:size1 domain a)
else No_Rewrite.bextract ~size ~index ~oldsize domain c
| _ -> No_Rewrite.bextract ~size ~index ~oldsize domain c
end
end
module R = Rewrite
let biadd ~size ~flags ctx = ar2_binary_binary_binary' ~size ctx @@ R.biadd ~size ~flags
let bisub ~size ~flags ctx = ar2_binary_binary_binary' ~size ctx @@ R.bisub ~size ~flags
let bimul ~size ~flags ctx = ar2_binary_binary_binary' ~size ctx @@ R.bimul ~size ~flags
let bxor ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.bxor ~size
let band ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.band ~size
let bor ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.bor ~size
let bashr ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.bashr ~size
let blshr ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.blshr ~size
let bshl ~size ~flags ctx = ar2_binary_binary_binary' ~size ctx @@ R.bshl ~size ~flags
let bisdiv ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.bisdiv ~size
let biudiv ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.biudiv ~size
let bismod ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.bismod ~size
let biumod ~size ctx = ar2_binary_binary_binary' ~size ctx @@ R.biumod ~size
let bconcat ~size1 ~size2 ctx = ar2_binary_binary_binary ~size:In_bits.(size1 + size2) ctx (Terms.Build.Binary.bconcat ~size1 ~size2) (Domain.Binary_Forward.bconcat ~size1 ~size2)
let bextract ~size ~index ~oldsize ctx = ar1_binary_binary ~size ctx (Terms.Build.Binary.bextract ~size ~index ~oldsize) (Domain.Binary_Forward.bextract ~size ~index ~oldsize)
let biconst ~size k ctx = run ctx @@ ar0_binary (Terms.Build.Binary.biconst ~size k) (Domain.Binary_Forward.biconst ~size k)
let beq ~size ctx = ar2_binary_binary_boolean ~size ctx (Terms.Build.Binary.beq ~size) (Domain.Binary_Forward.beq ~size)
let beq ~size ctx a b =
let exception Opt of bool in
try begin
let _x,_dom = ar2' ctx (fun domain a b -> raise (Opt(Terms.equal a b))) a b ctx.domain in
assert false
end
with Opt res ->
if res
then Boolean_Forward.true_ ctx
else beq ~size ctx a b
;;
let biule ~size ctx = ar2_binary_binary_boolean ~size ctx (Terms.Build.Binary.biule ~size) (Domain.Binary_Forward.biule ~size)
let bisle ~size ctx = ar2_binary_binary_boolean ~size ctx (Terms.Build.Binary.bisle ~size) (Domain.Binary_Forward.bisle ~size)
let bsext ~size ~oldsize ctx = ar1_binary_binary ~size ctx (Terms.Build.Binary.bsext ~size ~oldsize) (Domain.Binary_Forward.bsext ~size ~oldsize)
let buext ~size ~oldsize ctx = ar1_binary_binary ~size ctx (Terms.Build.Binary.buext ~size ~oldsize) (Domain.Binary_Forward.buext ~size ~oldsize)
let bchoose ~size cond ctx = ar1_binary_binary ~size ctx (Terms.Build.Binary.bchoose ~size cond) (Domain.Binary_Forward.bchoose ~size cond)
let bofbool ~size ctx = ar1_boolean_binary ~size ctx (Terms.Build.Binary.bofbool ~size) (Domain.Binary_Forward.bofbool ~size)
let bconcat ~size1 ~size2 ctx = ar2_binary_binary_binary ~size:In_bits.(size1 + size2) ctx (Terms.Build.Binary.bconcat ~size1 ~size2) (Domain.Binary_Forward.bconcat ~size1 ~size2)
let ~size ~index ~oldsize ctx a =
let res, dom = R.bextract ~size ~index ~oldsize ctx.domain a in
ctx.domain <- dom;
res
let biconst ~size k ctx = run ctx @@ ar0_binary (Terms.Build.Binary.biconst ~size k) (Domain.Binary_Forward.biconst ~size k)
let buninit ~size _ = assert false
let bshift ~size ~offset ~max _ = assert false
let bindex ~size _ = assert false
let valid ~size _ = assert false
let valid_ptr_arith ~size _ = assert false
(** --------------------------- Bit-stealing operations --------------------------- **)
let beq ~size ctx a b =
match a,b with
| Terms.(Binary{term=T0{tag=TC.Biconst(_size4,r)}}),
Terms.(Binary{term=T2{tag=TC.Band _size1;
a=(Binary{term=T0{tag=TC.Biconst(_size3,l)}});
b=(Binary{term=T2{tag=TC.Biadd _size2;
a=(Binary{term=T2{tag=TC.Biadd _size6;
a=Binary _ ;
b=Binary _
}});
b=(Binary{term=T0{tag=TC.Biconst(_size7,k)}})
}})
}})
when Z.equal Z.zero r
->
assert false
| Terms.(Binary{term=T0{tag=TC.Biconst(_size4,r)}}),
Terms.(Binary{term=T2{tag=TC.Band _size1;
a=(Binary{term=T0{tag=TC.Biconst(_size3,l)}} as mask);
b=(Binary{term=T1{tag=TC.Bextract{size;index;oldsize};
a=(Binary{term=T2{tag=TC.Biadd _size2;
a=(Binary{term=T0{tag=TC.Biconst(_size7,k)}} as ofs);
b=(Binary{term=T2{tag=TC.Biadd{size=_size8;flags};
a=Binary _ as tag;
b=Binary _ as ptr
}})
}})
}})
}})
when Z.equal Z.zero r
->
Log.debug (fun p -> p "l : %a" Z.pp_print l);
let lsb = Z.trailing_zeros l in
Log.debug (fun p -> p "lsb : %d" lsb);
let m = Z.shift_right l lsb in
Log.debug (fun p -> p "m : %a" Z.pp_print m);
let msucc = Z.succ m in
let msb = Z.log2 msucc in
Log.debug (fun p -> p "msb : %d" msb);
let c1 = Z.equal msucc (Z.shift_left Z.one msb) in
Log.debug (fun p -> p "is_mask : %b" c1);
let k = Z.signed_extract k lsb msb in
Log.debug (fun p -> p "offset : %a" Z.pp_print k);
let c2 = Z.leq (Z.neg m) k && Z.leq k m in
Log.debug (fun p -> p "is offset in [-mask;mask] : %b" c2);
let zero = biconst ~size:oldsize Z.zero ctx in
let c3 = beq ~size:oldsize ctx (band ~size:oldsize ctx ptr mask) zero in
Log.debug (fun p -> p "c3 : %a" (Domain.boolean_pretty ctx.domain) c3);
let neg_mask = biconst ~size:oldsize (Z.lognot l) ctx in
Log.debug (fun p -> p "neg_mask : %a" (Domain.binary_pretty ~size:oldsize ctx.domain) neg_mask);
let c4 = beq ~size:oldsize ctx (band ~size:oldsize ctx tag neg_mask) zero in
Log.debug (fun p -> p "c4 : %a" (Domain.boolean_pretty ctx.domain) c4);
let c5 =
match Domain.Query.(Boolean_Lattice.to_quadrivalent @@ boolean ctx.domain @@ Boolean_Forward.(&&) ctx c3 c4) with
| Lattices.Quadrivalent.True -> true
| _ -> false
in
Log.debug (fun p -> p "c5 : %b" c5);
let c6 = index = In_bits.zero && msb <= (size:>int) in
Log.debug (fun p -> p "c6 : %b" c6);
Log.debug (fun p -> p "c1 /\ c2 /\ c5 /\ c6 : %b" (c1 && c2 && c5 && c6));
if c1 && c2 && c5 && c6 then
beq ~size:oldsize ctx (biadd ~size ~flags ctx tag ofs) zero
else assert false
| _ -> beq ~size ctx a b
end
let integer_empty = let res = Terms.Build.Integer.empty in fun ctx -> res
let boolean_empty = let res = Terms.Build.Boolean.empty in fun ctx -> res
let enum_empty = let res = Terms.Build.Enum.empty in fun ctx -> res
let boolean_empty = let res = Terms.Build.Boolean.empty in fun ctx -> res
let binary_empty ~size ctx =
let res = ar0_binary (Terms.Build.Binary.empty ~size) (Domain.binary_empty ~size) in
run ctx res
;;
let boolean_unknown ctx = run ctx @@ ar0_boolean (Terms.Build.Boolean.unknown ~level:ctx.level) (Domain.boolean_unknown)
let binary_unknown ~size ctx = run ctx @@ ar0_binary (Terms.Build.Binary.unknown ~level:ctx.level ~size) (Domain.binary_unknown ~size)
let enum_unknown ~enumsize ctx = run ctx @@ ar0_enum (Terms.Build.Enum.unknown ~level:ctx.level) (Domain.enum_unknown ~enumsize)
let integer_unknown ctx = run ctx @@ ar0_integer ctx (Terms.Build.Integer.unknown ~level:ctx.level) (Domain.integer_unknown);;
;;
module type Pretty_Terms = sig
val boolean_pretty: Context.t -> Format.formatter -> boolean -> unit
val integer_pretty: Context.t -> Format.formatter -> integer -> unit
val binary_pretty: size:In_bits.t -> Context.t -> Format.formatter -> binary -> unit
val enum_pretty: Context.t -> Format.formatter -> enum -> unit
end
module Pretty_Both:Pretty_Terms = struct
let boolean_pretty ctx fmt x =
Format.fprintf fmt "%a (value %a)"
Terms.pretty x
(Domain.boolean_pretty ctx.domain) x
let integer_pretty ctx fmt x =
Format.fprintf fmt "%a (value %a)"
Terms.pretty x
(Domain.integer_pretty ctx.domain) x
let enum_pretty ctx fmt x =
Format.fprintf fmt "%a (value %a)"
Terms.pretty x
(Domain.enum_pretty ctx.domain) x
let binary_pretty ~size ctx fmt x =
Format.fprintf fmt "%a (value %a)"
Terms.pretty x
(Domain.binary_pretty ~size ctx.domain) x
end
module Pretty_Both_with_UF:Pretty_Terms = struct
let pp_parent (type a) fmt (x: a Terms.t) =
match Terms.get_parent x with
| Root -> ()
| Node(p,rel) -> Format.fprintf fmt " (verifies %a)"
(Terms.Relation.pretty_with_terms Terms.pretty x Terms.pretty p)
rel
let boolean_pretty ctx fmt x =
Format.fprintf fmt "%a%a (value %a)"
Terms.pretty x
pp_parent x
(Domain.boolean_pretty ctx.domain) x
let integer_pretty ctx fmt x =
Format.fprintf fmt "%a%a (value %a)"
Terms.pretty x
pp_parent x
(Domain.integer_pretty ctx.domain) x
let enum_pretty ctx fmt x =
Format.fprintf fmt "%a%a (value %a)"
Terms.pretty x
pp_parent x
(Domain.enum_pretty ctx.domain) x
let binary_pretty ~size ctx fmt x =
Format.fprintf fmt "%a%a (value %a)"
Terms.pretty x
pp_parent x
(Domain.binary_pretty ~size ctx.domain) x
end
module Pretty_Value:Pretty_Terms = struct
let boolean_pretty ctx fmt x =
Domain.boolean_pretty ctx.domain fmt x
;;
let integer_pretty ctx fmt x =
Domain.integer_pretty ctx.domain fmt x
;;
let enum_pretty ctx fmt x =
Domain.enum_pretty ctx.domain fmt x
;;
let binary_pretty ~size ctx fmt x =
Domain.binary_pretty ~size ctx.domain fmt x
;;
end
module Pretty_Symbolic:Pretty_Terms = struct
let boolean_pretty ctx = Identifier.pretty
let integer_pretty ctx = Identifier.pretty
let binary_pretty ~size ctx = Identifier.pretty
let enum_pretty ctx = Identifier.pretty
end
let boolean_pretty,integer_pretty,binary_pretty,enum_pretty =
let (module X : Pretty_Terms) = (match !option_pretty_terms with
| Value -> (module Pretty_Value)
| Both -> (module Pretty_Both)
| Symbolic -> (module Pretty_Symbolic)
| Relation -> (module Pretty_Both_with_UF))
in X.boolean_pretty,X.integer_pretty,X.binary_pretty,X.enum_pretty
let binary_is_empty ~size ctx (b:binary) = Terms.equal b (Terms.Build.Binary.empty ~size)
let integer_is_empty ctx (i:integer) = Terms.equal i Terms.Build.Integer.empty
let boolean_is_empty ctx (b:boolean) = Terms.equal b Terms.Build.Boolean.empty
let serialize: 'hd 'tail . t -> 'hd identifier -> t -> 'hd identifier -> 'tail in_acc -> ('hd identifier, 'tail) Context.result =
fun ctxa a ctxb b (included, acc) ->
let mapping =
if Terms.equal a b then ConsSame(a,acc.mapping)
else ConsDifferent(a,b,acc.mapping)
in
let deserialize ctx ({phi} as out_tup) =
let constrain =
if Terms.equal a b then a
else begin
match MapPair.find a b phi with
| exception Not_found -> assert false
| x -> x
end
in
constrain, out_tup
in
Result(included, { mapping}, deserialize)
;;
let serialize_binary ~widens ~size = serialize
let serialize_integer ~widens = serialize
let serialize_boolean = serialize
let serialize_enum = serialize
let build_phi_arguments in_tup =
let filtereda,filteredb, map =
let rec loop: type a. _ -> _ -> _ -> a mapping -> _ = fun la lb map -> function
| EmptyMapping -> la,lb,map
| ConsSame(_,mapping) -> loop la lb map mapping
| ConsDifferent(a,b,mapping) when MapPair.mem a b map -> loop la lb map mapping
| ConsDifferent(a,b,mapping) ->
let map = MapPair.add a b a map in
loop ((Terms.Any a)::la) ((Terms.Any b)::lb) map mapping
in loop [] [] MapPair.empty in_tup.mapping
in filtereda,filteredb, map
;;
let build_phi tupa tupb tupres =
Immutable_array.fold_left3 (fun map a b c ->
match a,b,c with
| Terms.(Any(Binary _ as a), Any(Binary _ as b), Any(Binary _ as c)) -> MapPair.add a b c map
| Terms.(Any(Integer _ as a), Any(Integer _ as b), Any(Integer _ as c)) -> MapPair.add a b c map
| Terms.(Any(Bool _ as a), Any(Bool _ as b), Any(Bool _ as c)) -> MapPair.add a b c map
| Terms.(Any(Enum _ as a), Any(Enum _ as b), Any(Enum _ as c)) -> MapPair.add a b c map
| _ -> Log.fatal (fun p -> p "Wrong type assertion")) MapPair.empty tupa tupb tupres
;;
let nondet_same_context (ctx:context) (in_tup: _ in_tuple) =
let filtereda,filteredb, map = build_phi_arguments in_tup in
let tupa = Immutable_array.of_list filtereda in
let tupb = Immutable_array.of_list filteredb in
let dom = ctx.domain in
let doma = dom in
let domb = dom in
let conda_bool = ctx.path_condition in
let condb_bool = ctx.path_condition in
let tupres =
Terms.Build.Tuple.nondet ~level:ctx.level
~conda_bool ~a:tupa
~condb_bool ~b:tupb
in
let domain = Domain.nondet ~doma ~tupa ~domb ~tupb ~tupres in
ctx.domain <- domain;
let phi = build_phi tupa tupb tupres in
{phi}
;;
let union cond (ctx:context) (in_tup: _ in_tuple) =
let filtereda,filteredb, map = build_phi_arguments in_tup in
let tupa = Immutable_array.of_list filtereda in
let tupb = Immutable_array.of_list filteredb in
let tupres = Immutable_array.map2 (fun (Terms.Any x1) (Terms.Any x2) ->
match (x1,x2) with
| Terms.Binary{size=s1}, Terms.Binary{size=s2} ->
assert(s1 == s2);
Terms.Any(Terms.Build.Binary.bunion ~size:s1 cond x1 x2)
| Terms.Bool _, Terms.Bool _ ->
Terms.Any(Terms.Build.Boolean.bunion x1 x2)
| Terms.Integer _, Terms.Integer _ ->
assert false
| _ -> assert false ) tupa tupb in
let domres = ctx.domain in
let domain = Domain.nondet ~doma:domres ~tupa ~domb:domres ~tupb ~tupres in
ctx.domain <- domain;
let phi = build_phi tupa tupb tupres in
{phi}
;;
let typed_nondet2 (ctxa:context) (ctxb:context) (in_tup: _ in_tuple) =
let filtereda,filteredb, map = build_phi_arguments in_tup in
let tupa = Immutable_array.of_list filtereda in
let tupb = Immutable_array.of_list filteredb in
let doma = ctxa.domain in
let domb = ctxb.domain in
let conda_bool = ctxa.path_condition in
let condb_bool = ctxb.path_condition in
assert(ctxa.level = ctxb.level);
let tupres =
Terms.Build.Tuple.nondet ~level:ctxa.level
~conda_bool ~a:tupa
~condb_bool ~b:tupb
in
let domain = Domain.nondet ~doma ~tupa ~domb ~tupb ~tupres in
let ctx = { domain = domain; level = ctxa.level; unique_id = get_unique_id();
path_condition = Terms.Build.Boolean.(||) ctxa.path_condition ctxb.path_condition; } in
let phi = build_phi tupa tupb tupres in
ctx,{phi}
;;
let widened_fixpoint_step ~widening_id ~previous ~next (includes,(in_tup:_ in_tuple)) =
let widening_id: Sig.Widening_Id.t = widening_id in
let widening_id: int = (widening_id :> int) in
Log.debug (fun p -> p "widened_fixpoint_step: arg is %b %a %a" includes context_pretty previous context_pretty next);
let is_inductive_variable (type u) (x:u Terms.t) i :bool =
match x with
| Terms.Bool{term = Terms.Inductive_var {widening_id=w}} -> (w = widening_id)
| Terms.Binary{term = Terms.Inductive_var {widening_id=w}} -> (w = widening_id)
| Terms.Integer{term = Terms.Inductive_var {widening_id=w}} -> (w = widening_id)
| Terms.Enum{term = Terms.Inductive_var {widening_id=w}} -> (w = widening_id)
| Terms.(Binary{term= Tuple_get(j,Inductive_vars{widening_id=w})}) -> (w = widening_id)
| Terms.(Bool{term= Tuple_get(j,Inductive_vars{widening_id=w})}) -> (w = widening_id)
| Terms.(Integer{term= Tuple_get(j,Inductive_vars{widening_id=w})}) -> (w = widening_id)
| Terms.(Enum{term= Tuple_get(j,Inductive_vars{widening_id=w})}) -> (w = widening_id)
| _ -> false
in
let filtereda,filteredb,map,includes,i =
let rec loop: type a. _ -> _ -> _ -> bool -> int -> a mapping -> _ = fun la lb map includes i -> function
| EmptyMapping -> la,lb,map,includes,i
| ConsSame(_,mapping) -> loop la lb map includes i mapping
| ConsDifferent(a,b,mapping) when MapPair.mem a b map -> loop la lb map includes i mapping
| ConsDifferent(a,b,mapping) ->
let la' = ((Terms.Any a)::la) and lb' = ((Terms.Any b)::lb) in
let oldmap = map in
let map = MapPair.add a b a map in
let includes =
if is_inductive_variable a i
then begin
let two_definitions_for_a = MapPair.Map1.mem a oldmap in
not two_definitions_for_a && includes
end else false
in
loop la' lb' map includes (i + 1) mapping
in loop [] [] MapPair.empty includes 0 in_tup.mapping
in
let previous_tup = Immutable_array.of_list filtereda in
let next_tup = Immutable_array.of_list filteredb in
let ctxa = previous and ctxb = next in
assert(ctxa.level = ctxb.level);
let res_tup =
if includes then begin
if Codex_config.term_group_inductive_variable_by_tuple then
Log.error(fun p -> p "TODO: Change the definition of the Inductive_var here.")
else
Immutable_array.iter2 (fun phi def ->
let open Terms in
let Any phi = phi in let Any def = def in
let f: type a b. a t * b t -> unit = fun (phi,def) -> match (phi,def) with
| Binary({term=Inductive_var x}),Binary _ -> x.definition <- def
| Integer({term=Inductive_var x}),Integer _ -> x.definition <- def
| Bool({term=Inductive_var x}),Bool _ -> x.definition <- def
| Enum({term=Inductive_var x}),Enum _ -> x.definition <- def
| _ -> Log.fatal (fun p -> p "Type mismatch in phi arguments");
in f (phi,def)
) previous_tup next_tup;
previous_tup
end
else
Terms.Build.Tuple.inductive_vars ~widening_id:(widening_id :> int) ~level:ctxa.level ~def:next_tup
in
let domain,bool =
Domain.widened_fixpoint_step
~previous:previous.domain ~previous_tup
~next:next.domain ~next_tup
includes ~res_tup
in
Log.debug (fun p -> p "includes %b bool %b" includes bool);
let ctx = { domain = domain; level = ctxa.level; unique_id = get_unique_id();
path_condition = Terms.Build.Boolean.(||) ctxa.path_condition ctxb.path_condition; } in
let phi =
Immutable_array.fold_left3 (fun map a b c ->
match a,b,c with
| Terms.(Any(Binary _ as a), Any(Binary _ as b), Any(Binary _ as c)) -> MapPair.add a b c map
| Terms.(Any(Integer _ as a), Any(Integer _ as b), Any(Integer _ as c)) -> MapPair.add a b c map
| Terms.(Any(Bool _ as a), Any(Bool _ as b), Any(Bool _ as c)) -> MapPair.add a b c map
| Terms.(Any(Enum _ as a), Any(Enum _ as b), Any(Enum _ as c)) -> MapPair.add a b c map
| _ -> Log.fatal (fun p -> p "Wrong type assertion")) MapPair.empty previous_tup next_tup res_tup
in
ctx,bool,{phi}
;;
let typed_fixpoint_step ~iteration ~init ~arg:(arg:Context.t) ~body ((included, in_tup):'a in_acc) =
let init:context = init in
let body:context = body in
let cur_level = body.level in
let init_dom = init.domain in
let final_dom = body.domain in
assert(Terms.level @@ init.path_condition < cur_level);
let fixpoint_reached = ref included in
let actuals,old_args,finals,map,init_dom =
let rec loop: type a. _ -> _ -> _ -> _ -> _ -> a mapping -> _ = fun actuals old_args finals map init_dom -> function
| EmptyMapping -> actuals,old_args,finals,map,init_dom
| ConsSame(x,mapping) ->
assert(Terms.level x < cur_level);
loop actuals old_args finals map init_dom mapping
| ConsDifferent(input,final,mapping) when MapPair.mem input final map ->
loop actuals old_args finals map init_dom mapping
| ConsDifferent(input,final,mapping) ->
assert(Terms.level input <= cur_level);
if Terms.level final > cur_level then
raise (Failure "Trying to join two SSA constraints of the same level during widening") ;
let init_dom,old_arg,actual =
input |> fun (type a) (input:a Terms.t) -> match input with
| Terms.Bool{term = Terms.Mu_formal {level;actual=(actual_constrain,_)}}
when level == cur_level ->
init_dom,Terms.Any input,Terms.Any actual_constrain
| Terms.Integer{term = Terms.Mu_formal {level;actual=(actual_constrain,_)}}
when level == cur_level ->
init_dom,Terms.Any input,Terms.Any actual_constrain
| Terms.Binary{term = Terms.Mu_formal {level;actual=(actual_constrain,_)}}
when level == cur_level ->
init_dom,Terms.Any input,Terms.Any actual_constrain
| Terms.Enum{term = Terms.Mu_formal {level;actual=(actual_constrain,_)}}
when level == cur_level ->
init_dom,Terms.Any input,Terms.Any actual_constrain
| _ when Terms.level input < cur_level -> begin
fixpoint_reached := false;
init_dom,Terms.Any input, Terms.Any input
end
| _ when Terms.level input == cur_level ->
fixpoint_reached := false;
let rec subst: type a. a Terms.t -> a identifier =
let open Terms in function
| Integer{term=T2{tag=TC.Imod;a;b=Integer{term=T0{tag=TC.Iconst k}}}} ->
Integer_Forward.imod init (subst a) (Integer_Forward.iconst k init)
| Integer{term=T2{tag=TC.Ishr;a;b=Integer{term=T0{tag=TC.Iconst k}}}} ->
Integer_Forward.ishr init (subst a) (Integer_Forward.iconst k init)
| Integer{term=Mu_formal{actual=(v,_)}} -> v
| Binary{term=T1{tag=TC.Bextract{size;index;oldsize};a}} ->
Binary_Forward.bextract init ~size ~index ~oldsize (subst a)
| Binary{term=Unknown level} as v -> v
| Binary{term=Mu_formal{actual=(v,_)}} -> v
| Binary{term=T2{tag=TC.Biadd{size;flags};a;b=Binary{term=T0{tag=TC.Biconst (size1,k)}}}} ->
Binary_Forward.biadd ~size ~flags init (subst a) (Binary_Forward.biconst ~size:size1 k init)
| Binary{term=T2{tag=TC.Biadd{size;flags};a=Binary{term=T0{tag=TC.Biconst (size1,k)}};b}} ->
Binary_Forward.biadd ~size ~flags init (Binary_Forward.biconst ~size:size1 k init) (subst b)
| Binary{term=T2{tag=TC.Bisub{size;flags};a;b=Binary{term=T0{tag=TC.Biconst (size1,k)}}}} ->
Binary_Forward.bisub ~size ~flags init (subst a) (Binary_Forward.biconst ~size:size1 k init)
| Binary{term=T2{tag=TC.Bisub{size;flags};a=Binary{term=T0{tag=TC.Biconst (size1,k)}};b}} ->
Binary_Forward.bisub ~size ~flags init (Binary_Forward.biconst ~size:size1 k init) (subst b)
| Binary{term=T2{tag=TC.Bimul{size;flags};a;b=Binary{term=T0{tag=TC.Biconst (size1,k)}}}} ->
Binary_Forward.bimul ~size ~flags init (subst a) (Binary_Forward.biconst ~size:size1 k init)
| Binary{term=T2{tag=TC.Bimul{size;flags};a=Binary{term=T0{tag=TC.Biconst (size1,k)}};b}} ->
Binary_Forward.bimul ~size ~flags init (Binary_Forward.biconst ~size:size1 k init) (subst b)
| Binary{term=T2{tag=TC.Biadd{size;flags};a;b}} when Terms.level a < cur_level ->
Binary_Forward.biadd ~size ~flags init a (subst b)
| Binary{term=T2{tag=TC.Biadd{size;flags};a;b}} when Terms.level b < cur_level ->
Binary_Forward.biadd ~size ~flags init (subst a) b
| constr -> Codex_log.fatal "in typed_fixpoint_step, invalid constr = %a"
Terms.pretty constr
in
begin match subst input with
| substed ->
assert(Terms.level @@ init.path_condition < cur_level);
let substed = Terms.Any substed in
init_dom,(Terms.Any input), substed
end
| _ ->
assert(Terms.level input > cur_level);
assert false
in loop (actual::actuals) (old_arg::old_args)
((Terms.Any final)::finals) (MapPair.add input final input map) init_dom mapping
in loop [] [] [] MapPair.empty init_dom in_tup.mapping
in
let actuals = Immutable_array.of_list actuals in
let old_args = Immutable_array.of_list old_args in
let finals = Immutable_array.of_list finals in
let cond_init = init.path_condition in
assert(Terms.level cond_init < cur_level);
let bool,domainf = Domain.fixpoint_step ~iteration ~lvl:cur_level init_dom ~actuals arg.domain ~args:old_args final_dom ~finals in
let res = !fixpoint_reached && bool in
let continuef ~close =
let constraints =
if close then begin
let body_cond = body.path_condition in
Terms.Build.Tuple.mu
~level:(cur_level - 1)
~init:actuals ~var:old_args ~body:finals ~body_cond
end
else
let new_args = actuals |> Immutable_array.map (fun actual ->
let intro constrain x =
if option_fresh_variable_every_time
|| Terms.level constrain != cur_level
then
Terms.Build.Mu_Formal.intro
~level:cur_level ~actual:constrain ~actual_cond:Terms.Build.Boolean.true_ x
else constrain
in
match actual with
| Terms.(Any (Bool _ as c)) -> Terms.Any (intro c TC.Boolean)
| Terms.(Any (Integer _ as c)) -> Terms.Any (intro c TC.Integer)
| Terms.(Any (Binary {size} as c)) -> Terms.Any (intro c @@ TC.Binary size)
| Terms.(Any (Enum _ as c)) -> Terms.Any (intro c TC.Enum))
in
new_args
in
let domain = domainf ~close constraints in
let phi = build_phi old_args finals constraints in
let restup = {phi} in
let resctx:Context.t = if close then init else arg in
restup, {resctx with domain = domain }
in
res,continuef
let mu_context_open parent_ctx =
Domain.fixpoint_open();
let ctx = { unique_id = get_unique_id();
level = parent_ctx.level + 1;
domain = parent_ctx.domain;
path_condition = parent_ctx.path_condition;
}
in ctx
module Integer_Query = struct
include Domain.Integer_Query
let query ctx x = query ctx.domain x
end
module Query = struct
include Domain.Query
let boolean (ctx:context) x =
let domain = ctx.domain in
Domain.Query.boolean domain x
;;
let boolean ctx x =
match boolean ctx x with
| Lattices.Quadrivalent.(False | True | Bottom) as x -> x
| Lattices.Quadrivalent.Top ->
match assume ctx x, assume ctx (Boolean_Forward.not ctx x) with
| Some _, Some _ -> Lattices.Quadrivalent.Top
| None, None -> Lattices.Quadrivalent.Bottom
| None, Some _ -> Lattices.Quadrivalent.False
| Some _, None -> Lattices.Quadrivalent.True
;;
let binary ~size (ctx:context) x =
let domain = ctx.domain in
Domain.Query.binary ~size domain x
let integer (ctx:context) x =
let domain = ctx.domain in
Domain.Query.integer domain x
let enum (ctx:context) x =
let domain = ctx.domain in
Domain.Query.enum domain x
end
let assume_binary ~size = assert false
let binary_is_empty = binary_is_empty
let integer_is_empty = integer_is_empty
let boolean_is_empty = boolean_is_empty
module Satisfiable = struct
module To_SMT_FirstOrder = Terms_SMT.MakeFirstOrder(Terms)
module To_SMT_Horn = Terms_SMT.MakeHorn(Terms)
let satisfiable (ctx:context) bool =
let condition = ctx.path_condition in
Smtbackend.Smtlib.with_z3
(fun (module SMT:Smtbackend.Smtlib.UNTYPED_MUZ) ->
let translate = match option_translate with
| `Horn -> let module Inst = To_SMT_Horn(SMT) in Inst.translate
| `First_order -> let module Inst = To_SMT_FirstOrder(SMT) in Inst.translate
in
translate @@ Terms.Build.Boolean.(&&) bool condition)
;;
let boolean_unknown ctx =
let res = boolean_unknown ctx in
Log.debug (fun p -> p "Term_domain.boolean_unknown %a" (boolean_pretty ctx) res);
res
module Binary_Forward = struct
include Binary_Forward
let bofbool ~size ctx b =
let res = bofbool ~size ctx b in
Log.debug (fun p -> p "Term_domain.bofbool %a" (binary_pretty ~size ctx) res);
res
end
end
let satisfiable = Satisfiable.satisfiable
let binary_unknown_typed ~size ctx typ = binary_unknown ~size ctx
let query_boolean = Query.boolean
end