Source file td3.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
(** Incremental/interactive terminating top-down solver, which supports space-efficiency and caching ([td3]).
@see <https://doi.org/10.1017/S0960129521000499> Seidl, H., Vogler, R. Three improvements to the top-down solver.
@see <https://arxiv.org/abs/2209.10445> Interactive Abstract Interpretation: Reanalyzing Whole Programs for Cheap. *)
(** Incremental terminating top down solver that optionally only keeps values at widening points and restores other values afterwards. *)
open Batteries
open ConstrSys
open Messages
module M = Messages
module type Hooks =
sig
module S: EqConstrSys
module HM: Hashtbl.S with type key = S.v
val print_data: unit -> unit
(** Print additional solver data statistics. *)
val system: S.v -> ((S.v -> S.d) -> (S.v -> S.d -> unit) -> S.d) option
(** Wrap [S.system]. Always use this hook instead of [S.system]! *)
val delete_marked: S.v list -> unit
(** Incrementally delete additional solver data. *)
val stable_remove: S.v -> unit
(** Remove additional solver data when variable removed from [stable]. *)
val prune: reachable:unit HM.t -> unit
(** Prune unreachable additional solver data. *)
end
module Base =
functor (Arg: IncrSolverArg) ->
functor (S:EqConstrSys) ->
functor (HM:Hashtbl.S with type key = S.v) ->
functor (Hooks: Hooks with module S = S and module HM = HM) ->
struct
open SolverBox.Warrow (S.Dom)
include Generic.SolverStats (S) (HM)
module VS = Set.Make (S.Var)
let exists_key f hm = HM.exists (fun k _ -> f k) hm
type solver_data = {
st: (S.Var.t * S.Dom.t) list;
infl: VS.t HM.t;
sides: VS.t HM.t;
rho: S.Dom.t HM.t;
wpoint: unit HM.t;
stable: unit HM.t;
side_dep: VS.t HM.t; (** Dependencies of side-effected variables. Knowing these allows restarting them and re-triggering all side effects. *)
side_infl: VS.t HM.t; (** Influences to side-effected variables. Not normally in [infl], but used for restarting them. *)
var_messages: Message.t HM.t; (** Messages from right-hand sides of variables. Used for incremental postsolving. *)
rho_write: S.Dom.t HM.t HM.t; (** Side effects from variables to write-only variables with values. Used for fast incremental restarting of write-only variables. *)
dep: VS.t HM.t; (** Dependencies of variables. Inverse of [infl]. Used for fast pre-reachable pruning in incremental postsolving. *)
}
type marshal = solver_data
let create_empty_data () = {
st = [];
infl = HM.create 10;
sides = HM.create 10;
rho = HM.create 10;
wpoint = HM.create 10;
stable = HM.create 10;
side_dep = HM.create 10;
side_infl = HM.create 10;
var_messages = HM.create 10;
rho_write = HM.create 10;
dep = HM.create 10;
}
let print_data data =
Logs.debug "|rho|=%d" (HM.length data.rho);
Logs.debug "|stable|=%d" (HM.length data.stable);
Logs.debug "|infl|=%d" (HM.length data.infl);
Logs.debug "|wpoint|=%d" (HM.length data.wpoint);
Logs.debug "|sides|=%d" (HM.length data.sides);
Logs.debug "|side_dep|=%d" (HM.length data.side_dep);
Logs.debug "|side_infl|=%d" (HM.length data.side_infl);
Logs.debug "|var_messages|=%d" (HM.length data.var_messages);
Logs.debug "|rho_write|=%d" (HM.length data.rho_write);
Logs.debug "|dep|=%d" (HM.length data.dep);
Hooks.print_data ()
let print_data_verbose data str =
if Logs.Level.should_log Debug then (
Logs.debug "%s:" str;
print_data data
)
let verify_data data =
if GobConfig.get_bool "solvers.td3.verify" then (
HM.iter (fun x _ ->
if not (HM.mem data.stable x) then (
Logs.warn "unstable in rho: %a" S.Var.pretty_trace x;
assert false
)
) data.rho
)
let copy_marshal (data: marshal): marshal =
{
rho = HM.copy data.rho;
stable = HM.copy data.stable;
wpoint = HM.copy data.wpoint;
infl = HM.copy data.infl;
sides = HM.copy data.sides;
side_infl = HM.copy data.side_infl;
side_dep = HM.copy data.side_dep;
st = data.st;
var_messages = HM.copy data.var_messages;
rho_write = HM.map (fun x w -> HM.copy w) data.rho_write;
dep = HM.copy data.dep;
}
let relift_marshal (data: marshal): marshal =
let rho = HM.create (HM.length data.rho) in
HM.iter (fun k v ->
let k' = S.Var.relift k in
let v' = S.Dom.relift v in
HM.replace rho k' v';
) data.rho;
let stable = HM.create (HM.length data.stable) in
HM.iter (fun k v ->
HM.replace stable (S.Var.relift k) v
) data.stable;
let wpoint = HM.create (HM.length data.wpoint) in
HM.iter (fun k v ->
HM.replace wpoint (S.Var.relift k) v
) data.wpoint;
let infl = HM.create (HM.length data.infl) in
HM.iter (fun k v ->
HM.replace infl (S.Var.relift k) (VS.map S.Var.relift v)
) data.infl;
let sides = HM.create (HM.length data.sides) in
HM.iter (fun k v ->
HM.replace sides (S.Var.relift k) (VS.map S.Var.relift v)
) data.sides;
let side_infl = HM.create (HM.length data.side_infl) in
HM.iter (fun k v ->
HM.replace side_infl (S.Var.relift k) (VS.map S.Var.relift v)
) data.side_infl;
let side_dep = HM.create (HM.length data.side_dep) in
HM.iter (fun k v ->
HM.replace side_dep (S.Var.relift k) (VS.map S.Var.relift v)
) data.side_dep;
let st = List.map (fun (k, v) -> S.Var.relift k, S.Dom.relift v) data.st in
let var_messages = HM.create (HM.length data.var_messages) in
HM.iter (fun k v ->
HM.add var_messages (S.Var.relift k) v
) data.var_messages;
let rho_write = HM.create (HM.length data.rho_write) in
HM.iter (fun x w ->
let w' = HM.create (HM.length w) in
HM.iter (fun y d ->
HM.add w' (S.Var.relift y) (S.Dom.relift d)
) w;
HM.replace rho_write (S.Var.relift x) w';
) data.rho_write;
let dep = HM.create (HM.length data.dep) in
HM.iter (fun k v ->
HM.replace dep (S.Var.relift k) (VS.map S.Var.relift v)
) data.dep;
{st; infl; sides; rho; wpoint; stable; side_dep; side_infl; var_messages; rho_write; dep}
type phase = Widen | Narrow [@@deriving show]
module CurrentVarS = ConstrSys.CurrentVarEqConstrSys (S)
module S = CurrentVarS.S
let solve st vs marshal =
let reuse_stable = GobConfig.get_bool "incremental.stable" in
let reuse_wpoint = GobConfig.get_bool "incremental.wpoint" in
let data =
match marshal with
| Some data ->
if not reuse_stable then (
Logs.info "Destabilizing everything!";
HM.clear data.stable;
HM.clear data.infl
);
if not reuse_wpoint then (
HM.clear data.wpoint;
HM.clear data.sides
);
data
| None ->
create_empty_data ()
in
let term = GobConfig.get_bool "solvers.td3.term" in
let side_widen = GobConfig.get_string "solvers.td3.side_widen" in
let space = GobConfig.get_bool "solvers.td3.space" in
let cache = GobConfig.get_bool "solvers.td3.space_cache" in
let called = HM.create 10 in
let infl = data.infl in
let sides = data.sides in
let rho = data.rho in
let wpoint = data.wpoint in
let stable = data.stable in
let narrow_reuse = GobConfig.get_bool "solvers.td3.narrow-reuse" in
let remove_wpoint = GobConfig.get_bool "solvers.td3.remove-wpoint" in
let side_dep = data.side_dep in
let side_infl = data.side_infl in
let restart_sided = GobConfig.get_bool "incremental.restart.sided.enabled" in
let restart_vars = GobConfig.get_string "incremental.restart.sided.vars" in
let restart_wpoint = GobConfig.get_bool "solvers.td3.restart.wpoint.enabled" in
let restart_once = GobConfig.get_bool "solvers.td3.restart.wpoint.once" in
let restarted_wpoint = HM.create 10 in
let incr_verify = GobConfig.get_bool "incremental.postsolver.enabled" in
let consider_superstable_reached = GobConfig.get_bool "incremental.postsolver.superstable-reached" in
let superstable = HM.copy stable in
let reluctant = GobConfig.get_bool "incremental.reluctant.enabled" in
let var_messages = data.var_messages in
let rho_write = data.rho_write in
let dep = data.dep in
let () = print_solver_stats := fun () ->
print_data data;
Logs.info "|called|=%d" (HM.length called);
print_context_stats rho
in
if GobConfig.get_bool "incremental.load" then (
print_data_verbose data "Loaded data for incremental analysis";
verify_data data
);
let cache_sizes = ref [] in
let add_infl y x =
if tracing then trace "sol2" "add_infl %a %a" S.Var.pretty_trace y S.Var.pretty_trace x;
HM.replace infl y (VS.add x (try HM.find infl y with Not_found -> VS.empty));
HM.replace dep x (VS.add y (HM.find_default dep x VS.empty));
in
let add_sides y x = HM.replace sides y (VS.add x (try HM.find sides y with Not_found -> VS.empty)) in
let destabilize_ref: (S.v -> unit) ref = ref (fun _ -> failwith "no destabilize yet") in
let destabilize x = !destabilize_ref x in
let rec destabilize_vs x =
if tracing then trace "sol2" "destabilize_vs %a" S.Var.pretty_trace x;
let w = HM.find_default infl x VS.empty in
HM.replace infl x VS.empty;
VS.fold (fun y b ->
let was_stable = HM.mem stable y in
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
if not (HM.mem called y) then
destabilize_vs y || b || was_stable && List.mem_cmp S.Var.compare y vs
else
true
) w false
and solve ?reuse_eq x phase =
if tracing then trace "sol2" "solve %a, phase: %s, called: %b, stable: %b, wpoint: %b" S.Var.pretty_trace x (show_phase phase) (HM.mem called x) (HM.mem stable x) (HM.mem wpoint x);
init x;
assert (Hooks.system x <> None);
if not (HM.mem called x || HM.mem stable x) then (
if tracing then trace "sol2" "stable add %a" S.Var.pretty_trace x;
HM.replace stable x ();
HM.replace called x ();
let wp = HM.mem wpoint x in
let l = HM.create 10 in
let eqd =
match reuse_eq with
| Some d when narrow_reuse ->
if tracing then trace "sol2" "eq reused %a" S.Var.pretty_trace x;
incr SolverStats.narrow_reuses;
d
| _ ->
HM.replace dep x VS.empty;
eq x (eval l x) (side ~x)
in
HM.remove called x;
let old = HM.find rho x in
let wpd =
if not wp then eqd
else if term then
match phase with
| Widen -> S.Dom.widen old (S.Dom.join old eqd)
| Narrow when GobConfig.get_bool "exp.no-narrow" -> old
| Narrow ->
S.Dom.narrow old eqd
else
box old eqd
in
if tracing then trace "sol" "Var: %a (wp: %b)\nOld value: %a\nEqd: %a\nNew value: %a" S.Var.pretty_trace x wp S.Dom.pretty old S.Dom.pretty eqd S.Dom.pretty wpd;
if cache then (
if tracing then trace "cache" "cache size %d for %a" (HM.length l) S.Var.pretty_trace x;
cache_sizes := HM.length l :: !cache_sizes;
);
if not (Timing.wrap "S.Dom.equal" (fun () -> S.Dom.equal old wpd) ()) then (
if tracing then trace "sol" "Changed";
if tracing && not (S.Dom.is_bot old) && HM.mem wpoint x then trace "solchange" "%a (wpx: %b): %a" S.Var.pretty_trace x (HM.mem wpoint x) S.Dom.pretty_diff (wpd, old);
update_var_event x old wpd;
HM.replace rho x wpd;
destabilize x;
(solve[@tailcall]) x phase
) else (
if not (HM.mem stable x) then (
if tracing then trace "sol2" "solve still unstable %a" S.Var.pretty_trace x;
(solve[@tailcall]) x Widen
) else (
if term && phase = Widen && HM.mem wpoint x then (
if tracing then trace "sol2" "solve switching to narrow %a" S.Var.pretty_trace x;
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace x;
HM.remove stable x;
HM.remove superstable x;
Hooks.stable_remove x;
(solve[@tailcall]) ~reuse_eq:eqd x Narrow
) else if remove_wpoint && not space && (not term || phase = Narrow) then (
if tracing then trace "sol2" "solve removing wpoint %a (%b)" S.Var.pretty_trace x (HM.mem wpoint x);
HM.remove wpoint x
)
)
)
)
and eq x get set =
if tracing then trace "sol2" "eq %a" S.Var.pretty_trace x;
match Hooks.system x with
| None -> S.Dom.bot ()
| Some f -> f get set
and simple_solve l x y =
if tracing then trace "sol2" "simple_solve %a (rhs: %b)" S.Var.pretty_trace y (Hooks.system y <> None);
if Hooks.system y = None then (init y; HM.replace stable y (); HM.find rho y) else
if not space || HM.mem wpoint y then (solve y Widen; HM.find rho y) else
if HM.mem called y then (init y; HM.remove l y; HM.find rho y) else
if cache && HM.mem l y then HM.find l y
else (
HM.replace called y ();
let eqd = eq y (eval l x) (side ~x) in
HM.remove called y;
if HM.mem wpoint y then (HM.remove l y; solve y Widen; HM.find rho y)
else (if cache then HM.replace l y eqd; eqd)
)
and eval l x y =
if tracing then trace "sol2" "eval %a ## %a" S.Var.pretty_trace x S.Var.pretty_trace y;
get_var_event y;
if HM.mem called y then (
if restart_wpoint && not (HM.mem wpoint y) then (
if not (restart_once && HM.mem restarted_wpoint y) then (
if tracing then trace "sol2" "wpoint restart %a ## %a" S.Var.pretty_trace y S.Dom.pretty (HM.find_default rho y (S.Dom.bot ()));
HM.replace rho y (S.Dom.bot ());
if restart_once then
HM.replace restarted_wpoint y ();
)
);
if tracing then trace "sol2" "eval adding wpoint %a from %a" S.Var.pretty_trace y S.Var.pretty_trace x;
HM.replace wpoint y ();
);
let tmp = simple_solve l x y in
if HM.mem rho y then add_infl y x;
if tracing then trace "sol2" "eval %a ## %a -> %a" S.Var.pretty_trace x S.Var.pretty_trace y S.Dom.pretty tmp;
tmp
and side ?x y d =
if tracing then trace "sol2" "side to %a (wpx: %b) from %a ## value: %a" S.Var.pretty_trace y (HM.mem wpoint y) (Pretty.docOpt (S.Var.pretty_trace ())) x S.Dom.pretty d;
if Hooks.system y <> None then (
Logs.warn "side-effect to unknown w/ rhs: %a, contrib: %a" S.Var.pretty_trace y S.Dom.pretty d;
);
assert (Hooks.system y = None);
init y;
(match x with None -> () | Some x -> if side_widen = "unstable_self" then add_infl x y);
let widen a b =
if M.tracing then M.traceli "sol2" "side widen %a %a" S.Dom.pretty a S.Dom.pretty b;
let r = S.Dom.widen a (S.Dom.join a b) in
if M.tracing then M.traceu "sol2" "-> %a" S.Dom.pretty r;
r
in
let old_sides = HM.find_default sides y VS.empty in
let op a b = match side_widen with
| "sides-local" when not (S.Dom.leq b a) -> (
match x with
| None -> widen a b
| Some x when VS.mem x old_sides -> widen a b
| _ -> S.Dom.join a b
)
| _ when HM.mem wpoint y -> widen a b
| _ -> S.Dom.join a b
in
let old = HM.find rho y in
let tmp = op old d in
if tracing then trace "sol2" "stable add %a" S.Var.pretty_trace y;
HM.replace stable y ();
if not (S.Dom.leq tmp old) then (
if tracing && not (S.Dom.is_bot old) then trace "solside" "side to %a (wpx: %b) from %a: %a -> %a" S.Var.pretty_trace y (HM.mem wpoint y) (Pretty.docOpt (S.Var.pretty_trace ())) x S.Dom.pretty old S.Dom.pretty tmp;
if tracing && not (S.Dom.is_bot old) then trace "solchange" "side to %a (wpx: %b) from %a: %a" S.Var.pretty_trace y (HM.mem wpoint y) (Pretty.docOpt (S.Var.pretty_trace ())) x S.Dom.pretty_diff (tmp, old);
let sided = match x with
| Some x ->
let sided = VS.mem x old_sides in
if not sided then add_sides y x;
sided
| None -> false
in
HM.replace rho y tmp;
if side_widen <> "cycle" then destabilize y;
let wpoint_if e =
if e then (
if tracing then trace "sol2" "side adding wpoint %a from %a" S.Var.pretty_trace y (Pretty.docOpt (S.Var.pretty_trace ())) x;
HM.replace wpoint y ()
)
in
match side_widen with
| "always" ->
wpoint_if true
| "never" ->
()
| "sides-local" ->
()
| "sides" ->
wpoint_if sided
| "sides-pp" ->
begin match x with
| Some x ->
let n = S.Var.node x in
let sided = VS.exists (fun v -> Node.equal (S.Var.node v) n) old_sides in
wpoint_if sided
| None -> ()
end
| "cycle" ->
let destabilized_vs = destabilize_vs y in
wpoint_if destabilized_vs
| "unstable_self" ->
wpoint_if @@ not (HM.mem stable y)
| "unstable_called" ->
wpoint_if @@ exists_key (neg (HM.mem stable)) called
| x -> failwith ("Unknown value '" ^ x ^ "' for option solvers.td3.side_widen!")
)
and init x =
if tracing then trace "sol2" "init %a" S.Var.pretty_trace x;
if not (HM.mem rho x) then (
new_var_event x;
HM.replace rho x (S.Dom.bot ())
)
in
let set_start (x,d) =
if tracing then trace "sol2" "set_start %a ## %a" S.Var.pretty_trace x S.Dom.pretty d;
init x;
HM.replace rho x d;
HM.replace stable x ();
in
let rec destabilize_normal x =
if tracing then trace "sol2" "destabilize %a" S.Var.pretty_trace x;
let w = HM.find_default infl x VS.empty in
HM.replace infl x VS.empty;
VS.iter (fun y ->
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace y;
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
if not (HM.mem called y) then destabilize_normal y
) w
in
start_event ();
let reluctant_vs: S.Var.t list ref = ref [] in
let restart_write_only = GobConfig.get_bool "incremental.restart.write-only" in
if GobConfig.get_bool "incremental.load" then (
let restart_leaf x =
if tracing then trace "sol2" "Restarting to bot %a" S.Var.pretty_trace x;
Logs.debug "Restarting to bot %a" S.Var.pretty_trace x;
HM.replace rho x (S.Dom.bot ());
HM.remove wpoint x;
HM.remove sides x;
match GobList.assoc_eq_opt S.Var.equal x st with
| Some d ->
HM.replace rho x d;
| None ->
()
in
let restart_fuel_only_globals = GobConfig.get_bool "incremental.restart.sided.fuel-only-global" in
let rec destabilize_with_side ~side_fuel x =
if tracing then trace "sol2" "destabilize_with_side %a %a" S.Var.pretty_trace x (Pretty.docOpt (Pretty.dprintf "%d")) side_fuel;
let w_side_dep = HM.find_default side_dep x VS.empty in
HM.remove side_dep x;
let w_infl = HM.find_default infl x VS.empty in
HM.replace infl x VS.empty;
let w_side_infl = HM.find_default side_infl x VS.empty in
HM.remove side_infl x;
let should_restart =
match restart_write_only, S.Var.is_write_only x with
| true, true -> false
| _, is_write_only ->
match restart_vars with
| "all" -> true
| "global" -> Node.equal (S.Var.node x) (Function GoblintCil.dummyFunDec)
| "write-only" -> is_write_only
| _ -> assert false
in
if not (VS.is_empty w_side_dep) && should_restart then (
restart_leaf x;
VS.iter (fun y ->
if tracing then trace "sol2" "destabilize_with_side %a side_dep %a" S.Var.pretty_trace x S.Var.pretty_trace y;
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace y;
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
destabilize_with_side ~side_fuel y
) w_side_dep;
);
VS.iter (fun y ->
if tracing then trace "sol2" "destabilize_with_side %a infl %a" S.Var.pretty_trace x S.Var.pretty_trace y;
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace y;
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
destabilize_with_side ~side_fuel y
) w_infl;
if side_fuel <> Some 0 then (
let side_fuel' =
if not restart_fuel_only_globals || Node.equal (S.Var.node x) (Function GoblintCil.dummyFunDec) then
Option.map Int.pred side_fuel
else
side_fuel
in
VS.iter (fun y ->
if tracing then trace "sol2" "destabilize_with_side %a side_infl %a" S.Var.pretty_trace x S.Var.pretty_trace y;
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace y;
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
destabilize_with_side ~side_fuel:side_fuel' y
) w_side_infl
)
in
destabilize_ref :=
if restart_sided then (
let side_fuel =
match GobConfig.get_int "incremental.restart.sided.fuel" with
| fuel when fuel >= 0 -> Some fuel
| _ -> None
in
destabilize_with_side ~side_fuel
)
else
destabilize_normal;
let sys_change = S.sys_change (fun v -> try HM.find rho v with Not_found -> S.Dom.bot ()) in
let old_ret = HM.create 103 in
if reluctant then (
List.iter (fun k ->
if HM.mem rho k then (
let old_rho = HM.find rho k in
let old_infl = HM.find_default infl k VS.empty in
HM.replace old_ret k (old_rho, old_infl)
)
) sys_change.reluctant;
);
if sys_change.obsolete <> [] then
Logs.debug "Destabilizing changed functions and primary old nodes ...";
List.iter (fun k ->
if HM.mem stable k then
destabilize k
) sys_change.obsolete;
Logs.debug "Removing data for changed and removed functions...";
let delete_marked s = List.iter (fun k -> HM.remove s k) sys_change.delete in
delete_marked rho;
delete_marked infl;
delete_marked wpoint;
delete_marked dep;
Hooks.delete_marked sys_change.delete;
if restart_sided then (
Logs.debug "Destabilizing sides of changed functions, primary old nodes and removed functions ...";
List.iter (fun k ->
if HM.mem stable k then (
Logs.debug "marked %a" S.Var.pretty_trace k;
destabilize k
)
) sys_change.delete
);
let destabilize_leaf (x : S.v) =
let destab_side_dep (x : S.v) =
let w = HM.find_default side_dep x VS.empty in
if not (VS.is_empty w) then (
HM.remove side_dep x;
VS.iter (fun y ->
if tracing then trace "sol2" "destabilize_leaf %a side_dep %a" S.Var.pretty_trace x S.Var.pretty_trace y;
if tracing then trace "sol2" "stable remove %a" S.Var.pretty_trace y;
HM.remove stable y;
HM.remove superstable y;
Hooks.stable_remove y;
destabilize_normal y
) w
)
in
restart_leaf x;
destab_side_dep x;
destabilize_normal x
in
List.iter (fun v ->
if Hooks.system v <> None then
Logs.warn "Trying to restart non-leaf unknown %a. This has no effect." S.Var.pretty_trace v
else if HM.mem stable v then
destabilize_leaf v
) sys_change.restart;
let restart_and_destabilize x =
restart_leaf x;
destabilize x
in
let should_restart_start = restart_sided && restart_vars <> "write-only" in
List.iter (fun (v,d) ->
if should_restart_start then (
match GobList.assoc_eq_opt S.Var.equal v data.st with
| Some old_d when not (S.Dom.equal old_d d) ->
Logs.debug "Destabilizing and restarting changed start var %a" S.Var.pretty_trace v;
restart_and_destabilize v
| _ ->
()
);
side v d
) st;
if should_restart_start then (
List.iter (fun (v, _) ->
match GobList.assoc_eq_opt S.Var.equal v st with
| None ->
Logs.debug "Destabilizing and restarting removed start var %a" S.Var.pretty_trace v;
restart_and_destabilize v
| _ ->
()
) data.st
);
delete_marked stable;
delete_marked side_dep;
delete_marked side_infl;
delete_marked superstable;
delete_marked var_messages;
if restart_write_only then (
HM.iter (fun x w ->
HM.iter (fun y d ->
Logs.debug "Restarting write-only to bot %a" S.Var.pretty_trace y;
HM.replace rho y (S.Dom.bot ());
) w
) rho_write
);
delete_marked rho_write;
HM.iter (fun x w -> delete_marked w) rho_write;
print_data_verbose data "Data after clean-up";
if reluctant then (
Logs.debug "Separately solving changed functions...";
HM.iter (fun x (old_rho, old_infl) -> HM.replace rho x old_rho; HM.replace infl x old_infl) old_ret;
HM.iter (fun x (old_rho, old_infl) ->
Logs.debug "test for %a" Node.pretty_trace (S.Var.node x);
solve x Widen;
if not (S.Dom.equal (HM.find rho x) old_rho) then (
Logs.debug "Further destabilization happened ...";
)
else (
Logs.debug "Destabilization not required...";
reluctant_vs := x :: !reluctant_vs
)
) old_ret;
Logs.debug "Final solve..."
);
) else (
List.iter set_start st;
);
destabilize_ref := destabilize_normal;
List.iter init vs;
let i = ref 0 in
let rec solver () =
incr i;
let unstable_vs = List.filter (neg (HM.mem stable)) vs in
if unstable_vs <> [] then (
if Logs.Level.should_log Debug then (
if !i = 1 then Logs.newline ();
Logs.debug "Unstable solver start vars in %d. phase:" !i;
List.iter (fun v -> Logs.debug "\t%a" S.Var.pretty_trace v) unstable_vs;
Logs.newline ();
flush_all ();
);
List.iter (fun x -> solve x Widen) unstable_vs;
solver ();
)
in
solver ();
let visited = HM.create 10 in
let check_side x y d =
HM.replace visited y ();
let mem = HM.mem rho y in
let d' = try HM.find rho y with Not_found -> S.Dom.bot () in
if not (S.Dom.leq d d') then Logs.error "TDFP Fixpoint not reached in restore step at side-effected variable (mem: %b) %a from %a: %a not leq %a" mem S.Var.pretty_trace y S.Var.pretty_trace x S.Dom.pretty d S.Dom.pretty d'
in
let rec eq check x =
HM.replace visited x ();
match Hooks.system x with
| None -> if HM.mem rho x then HM.find rho x else (Logs.warn "TDFP Found variable %a w/o rhs and w/o value in rho" S.Var.pretty_trace x; S.Dom.bot ())
| Some f -> f (get ~check) (check_side x)
and get ?(check=false) x =
if HM.mem visited x then (
HM.find rho x
) else if HM.mem rho x then (
let d1 = HM.find rho x in
let d2 = eq check x in
if check then (
if not (HM.mem stable x) && Hooks.system x <> None then Logs.error "TDFP Found an unknown in rho that should be stable: %a" S.Var.pretty_trace x;
if not (S.Dom.leq d2 d1) then
Logs.error "TDFP Fixpoint not reached in restore step at %a\n @[Variable:\n%a\nRight-Hand-Side:\n%a\nCalculating one more step changes: %a\n@]" S.Var.pretty_trace x S.Dom.pretty d1 S.Dom.pretty d2 S.Dom.pretty_diff (d1,d2);
);
d1
) else (
let d = eq check x in
HM.replace rho x d;
d
)
in
if space && GobConfig.get_bool "solvers.td3.space_restore" then (
Logs.debug "Restoring missing values.";
let restore () =
let get x =
let d = get ~check:true x in
if tracing then trace "sol2" "restored var %a ## %a" S.Var.pretty_trace x S.Dom.pretty d
in
List.iter get vs;
HM.filteri_inplace (fun x _ -> HM.mem visited x) rho
in
Timing.wrap "restore" restore ();
Logs.debug "Solved %d vars. Total of %d vars after restore." !SolverStats.vars (HM.length rho);
let avg xs = if List.is_empty !cache_sizes then 0.0 else float_of_int (BatList.sum xs) /. float_of_int (List.length xs) in
if tracing && cache then trace "cache" "#caches: %d, max: %d, avg: %.2f" (List.length !cache_sizes) (List.max !cache_sizes) (avg !cache_sizes);
);
stop_event ();
print_data_verbose data "Data after solve completed";
if GobConfig.get_bool "dbg.print_wpoints" then (
Logs.newline ();
Logs.debug "Widening points:";
HM.iter (fun k () -> Logs.debug "%a" S.Var.pretty_trace k) wpoint;
Logs.newline ();
);
let module IncrPrune: PostSolver.S with module S = S and module VH = HM =
struct
include PostSolver.Unit (S) (HM)
let finalize ~vh ~reachable =
VH.filteri_inplace (fun x _ ->
VH.mem reachable x
) stable;
let filter_vs_hm hm =
VH.filter_map_inplace (fun x vs ->
if VH.mem reachable x then
Some (VS.filter (VH.mem reachable) vs)
else
None
) hm
in
filter_vs_hm infl;
filter_vs_hm side_infl;
filter_vs_hm side_dep;
filter_vs_hm dep;
VH.filteri_inplace (fun x w ->
if VH.mem reachable x then (
VH.filteri_inplace (fun y _ ->
VH.mem reachable y
) w;
true
)
else
false
) rho_write
end
in
let module SideInfl: PostSolver.S with module S = S and module VH = HM =
struct
include PostSolver.Unit (S) (HM)
let one_side ~vh ~x ~y ~d =
HM.replace side_dep y (VS.add x (try HM.find side_dep y with Not_found -> VS.empty));
HM.replace side_infl x (VS.add y (try HM.find side_infl x with Not_found -> VS.empty));
end
in
let stable_reluctant_vs =
List.filter (fun x -> HM.mem stable x) !reluctant_vs
in
let reachable_and_superstable =
if incr_verify && not consider_superstable_reached then
let reachable' = HM.create (HM.length rho) in
let reachable_and_superstable = HM.create (HM.length rho) in
let rec one_var' x =
if (not (HM.mem reachable' x)) then (
if HM.mem superstable x then HM.replace reachable_and_superstable x ();
HM.replace reachable' x ();
Option.may (VS.iter one_var') (HM.find_option dep x);
Option.may (VS.iter one_var') (HM.find_option side_infl x)
)
in
(Timing.wrap "cheap_full_reach" (List.iter one_var')) (vs @ stable_reluctant_vs);
reachable_and_superstable
else if incr_verify then
superstable
else
HM.create 0
in
if incr_verify then (
HM.filteri_inplace (fun x _ -> HM.mem reachable_and_superstable x) var_messages;
HM.filteri_inplace (fun x _ -> HM.mem reachable_and_superstable x) rho_write
)
else (
HM.clear var_messages;
HM.clear rho_write
);
let init_reachable = reachable_and_superstable in
let module IncrWarn: PostSolver.S with module S = S and module VH = HM =
struct
include PostSolver.Warn (S) (HM)
let init () =
init ();
if incr_verify then (
HM.iter (fun _ m ->
Messages.add m
) var_messages;
);
Messages.Table.add_hook := (fun m ->
match !CurrentVarS.current_var with
| Some x -> HM.add var_messages x m
| None -> ()
)
let finalize ~vh ~reachable =
finalize ~vh ~reachable;
Messages.Table.add_hook := (fun _ -> ())
end
in
(** Incremental write-only side effect restart handling:
retriggers superstable ones (after restarting above) and collects new (non-superstable) ones. *)
let module IncrWrite: PostSolver.S with module S = S and module VH = HM =
struct
include PostSolver.Unit (S) (HM)
let init () =
if incr_verify then (
HM.iter (fun x w ->
HM.iter (fun y d ->
let old_d = try HM.find rho y with Not_found -> S.Dom.bot () in
HM.replace rho y (S.Dom.join old_d d);
HM.replace init_reachable y ();
HM.replace stable y ();
) w
) rho_write
)
let one_side ~vh ~x ~y ~d =
if S.Var.is_write_only y then (
HM.replace stable y ();
let w =
try
VH.find rho_write x
with Not_found ->
let w = VH.create 1 in
VH.replace rho_write x w;
w
in
VH.add w y d
)
end
in
let module MakeIncrListArg =
struct
module Arg =
struct
include Arg
let should_warn = false
end
include PostSolver.ListArgFromStdArg (S) (HM) (Arg)
let postsolvers = (module IncrPrune: M) :: (module SideInfl: M) :: (module IncrWrite: M) :: (module IncrWarn: M) :: postsolvers
let init_reachable ~vh =
if incr_verify then
init_reachable
else
HM.create (HM.length vh)
end
in
let module Post = PostSolver.MakeIncrList (MakeIncrListArg) in
Post.post st (stable_reluctant_vs @ vs) rho;
print_data_verbose data "Data after postsolve";
verify_data data;
(rho, {st; infl; sides; rho; wpoint; stable; side_dep; side_infl; var_messages; rho_write; dep})
end
(** TD3 with no hooks. *)
module Basic: GenericEqIncrSolver =
functor (Arg: IncrSolverArg) ->
functor (S:EqConstrSys) ->
functor (HM:Hashtbl.S with type key = S.v) ->
struct
include Generic.SolverStats (S) (HM)
module Hooks =
struct
module S = S
module HM = HM
let print_data () = ()
let system x =
match S.system x with
| None -> None
| Some f ->
let f' get set =
eval_rhs_event x;
f get set
in
Some f'
let delete_marked _ = ()
let stable_remove _ = ()
let prune ~reachable = ()
end
include Base (Arg) (S) (HM) (Hooks)
end
(** TD3 with eval skipping using [dep_vals]. *)
module DepVals: GenericEqIncrSolver =
functor (Arg: IncrSolverArg) ->
functor (S:EqConstrSys) ->
functor (HM:Hashtbl.S with type key = S.v) ->
struct
include Generic.SolverStats (S) (HM)
type dep_vals = (S.Dom.t * (S.Var.t * S.Dom.t) list) HM.t
let current_dep_vals: dep_vals ref = ref (HM.create 0)
(** Reference to current [dep_vals] in hooks. *)
module Hooks =
struct
module S = S
module HM = HM
let print_data () =
Logs.debug "|dep_vals|=%d" (HM.length !current_dep_vals)
let system x =
match S.system x with
| None -> None
| Some f ->
let dep_vals = !current_dep_vals in
let f' get set =
let all_deps_unchanged =
match HM.find_option dep_vals x with
| None -> None
| Some (oldv, deps) ->
let deps_inorder = List.rev deps in
if List.for_all (fun (var, value) -> S.Dom.equal (get var) value) deps_inorder then
Some oldv
else
None
in
match all_deps_unchanged with
| Some oldv ->
if M.tracing then M.trace "sol2" "All deps unchanged for %a, not evaluating RHS" S.Var.pretty_trace x;
oldv
| None ->
let get y =
let tmp = get y in
let (oldv,curr_dep_vals) = HM.find dep_vals x in
HM.replace dep_vals x (oldv,((y,tmp) :: curr_dep_vals));
tmp
in
eval_rhs_event x;
HM.replace dep_vals x (S.Dom.bot (),[]);
let res = f get set in
HM.replace dep_vals x (res, snd (HM.find dep_vals x));
res
in
Some f'
let delete_marked delete =
List.iter (HM.remove !current_dep_vals) delete
let stable_remove x =
HM.remove !current_dep_vals x
let prune ~reachable =
HM.filteri_inplace (fun x _ ->
HM.mem reachable x
) !current_dep_vals
end
module Base = Base (Arg) (S) (HM) (Hooks)
type marshal = {
base: Base.marshal;
dep_vals: dep_vals; (** Dependencies of variables and values encountered at last eval of RHS. *)
}
let copy_marshal {base; dep_vals} =
{
base = Base.copy_marshal base;
dep_vals = HM.copy dep_vals;
}
let relift_marshal {base; dep_vals} =
let base' = Base.relift_marshal base in
let dep_vals' = HM.create (HM.length dep_vals) in
HM.iter (fun k (value,deps) ->
HM.replace dep_vals' (S.Var.relift k) (S.Dom.relift value, List.map (fun (var,value) -> (S.Var.relift var,S.Dom.relift value)) deps)
) dep_vals;
{base = base'; dep_vals = dep_vals'}
let solve st vs marshal =
let base_marshal = match marshal with
| Some {base; dep_vals} ->
current_dep_vals := dep_vals;
Some base
| None ->
current_dep_vals := HM.create 10;
None
in
let (rho, base_marshal') = Base.solve st vs base_marshal in
(rho, {base = base_marshal'; dep_vals = !current_dep_vals})
end
let after_config () =
let restart_sided = GobConfig.get_bool "incremental.restart.sided.enabled" in
let restart_wpoint = GobConfig.get_bool "solvers.td3.restart.wpoint.enabled" in
let restart_once = GobConfig.get_bool "solvers.td3.restart.wpoint.once" in
let skip_unchanged_rhs = GobConfig.get_bool "solvers.td3.skip-unchanged-rhs" in
if skip_unchanged_rhs then (
if restart_sided || restart_wpoint || restart_once then (
M.warn "restarting active, ignoring solvers.td3.skip-unchanged-rhs";
Selector.add_solver ("td3", (module Basic: GenericEqIncrSolver))
)
else
Selector.add_solver ("td3", (module DepVals: GenericEqIncrSolver))
)
else
Selector.add_solver ("td3", (module Basic: GenericEqIncrSolver))
let () =
AfterConfig.register after_config