Source file bitv.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
open Format
open Sig
module Sy = Symbols
module E = Expr
type sort_var = A | B | C
type tvar = { var : int ; sorte : sort_var }
type 'a xterm = Var of tvar | Alien of 'a
type 'a alpha_term = {
bv : 'a;
sz : int;
}
type 'a simple_term_aux =
| Cte of bool
| Other of 'a xterm
| Ext of 'a xterm * int * int * int
type 'a simple_term = ('a simple_term_aux) alpha_term
type 'a abstract = ('a simple_term) list
type solver_simple_term_aux =
| S_Cte of bool
| S_Var of tvar
type solver_simple_term = solver_simple_term_aux alpha_term
module type ALIEN = sig
include Sig.X
val embed : r abstract -> r
end
module Shostak(X : ALIEN) = struct
type t = X.r abstract
type r = X.r
let name = "bitv"
let is_mine_symb sy _ =
match sy with
| Sy.Bitv _ | Sy.Op (Sy.Concat | Sy.Extract) -> true
| _ -> false
let embed r =
match X.extract r with
| None ->
begin
match X.type_info r with
| Ty.Tbitv n -> [{bv = Other (Alien r) ; sz = n}]
| _ -> assert false
end
| Some b -> b
let compare_xterm xt1 xt2 = match xt1,xt2 with
| Var v1, Var v2 ->
let c1 = compare v1.sorte v2.sorte in
if c1 <> 0 then c1
else -(compare v1.var v2.var)
| Alien t1, Alien t2 -> X.str_cmp t1 t2
| Var _, Alien _ -> 1
| Alien _, Var _ -> -1
let compare_simple_term st1 st2 =
if st1.sz <> st2.sz then st1.sz - st2.sz
else
begin
match st1.bv,st2.bv with
| Cte b,Cte b' -> compare b b'
| Cte false , _ | _ , Cte true -> -1
| _ , Cte false | Cte true,_ -> 1
| Other t1 , Other t2 -> compare_xterm t1 t2
| _ , Other _ -> -1
| Other _ , _ -> 1
| Ext(t1,s1,i1,_) , Ext(t2,s2,i2,_) ->
let c1 = compare s1 s2 in
if c1<>0 then c1
else let c2 = compare i1 i2 in
if c2 <> 0 then c2 else compare_xterm t1 t2
end
module ST_Set = Set.Make (
struct
type t = solver_simple_term
let compare st1 st2 =
if st1.sz <> st2.sz then st1.sz - st2.sz
else
begin
match st1.bv,st2.bv with
| S_Cte b, S_Cte b' -> compare b b'
| S_Cte false, _ | _, S_Cte true -> -1
| _ , S_Cte false | S_Cte true,_ -> 1
| S_Var v1, S_Var v2 ->
let c1 = compare v1.sorte v2.sorte
in if c1 <> 0 then c1 else compare v1.var v2.var
end
end)
module Canonizer = struct
type term_aux =
| I_Cte of bool
| I_Other of X.r xterm
| I_Ext of term * int * int
| I_Comp of term * term
and term = term_aux alpha_term
(** **)
let rec alpha t = match t.bv with
|I_Cte _ -> [t]
|I_Other _ -> [t]
|I_Comp (t1,t2) -> (alpha t1)@(alpha t2)
|I_Ext(t',i,j) ->
begin
match t'.bv with
|I_Cte _ -> [{t' with sz = j-i+1}]
|I_Other _ -> [t]
|I_Ext(t'',k,_) ->
alpha {t with bv = I_Ext(t'',i+k,j+k)}
|I_Comp(_,v) when j < v.sz ->
alpha{t with bv =I_Ext(v,i,j)}
|I_Comp(u,v) when i >= v.sz ->
alpha{t with bv=I_Ext(u,i-v.sz,j-v.sz)}
|I_Comp(u,v) ->
(alpha {sz = j-v.sz+1 ; bv = I_Ext(u,0,j-v.sz)})
@(alpha{sz = v.sz-i ; bv = I_Ext(v,i,v.sz-1)})
end
(** **)
let rec beta lt =
let simple_t st = match st.bv with
|I_Cte b -> {bv = Cte b ; sz = st.sz}
|I_Other x -> {bv = Other x ; sz = st.sz}
|I_Ext(t',i,j) ->
begin
match t'.bv with
|I_Other v ->
let siz = j-i+1
in {sz=siz ;
bv =if siz=t'.sz then Other v else Ext(v,t'.sz,i,j)}
|I_Comp _ |I_Ext _ |I_Cte _ -> assert false
end
|I_Comp(_,_) -> assert false
in match lt with
|[] -> []
|[s] -> [simple_t s]
|s::t::tl' ->
begin
match s.bv , t.bv with
|I_Cte b1,I_Cte b2 when b1=b2 ->beta({s with sz=s.sz+t.sz}::tl')
|I_Ext(d1,i,j),I_Ext(d2,k,l) when d1=d2 && l=i-1 ->
let tmp = {sz = s.sz + t.sz ; bv = I_Ext(d1,k,j)}
in if k=0 then (simple_t tmp)::(beta tl') else beta (tmp::tl')
|_ -> (simple_t s)::(beta (t::tl'))
end
(** **)
let sigma term = beta (alpha term)
let bitv_to_icomp =
List.fold_left (fun ac bt ->{ bv = I_Comp (ac,bt) ; sz = bt.sz + ac.sz })
let string_to_bitv s =
let tmp = ref[] in
String.iter(fun car -> tmp := (car<>'0',1)::(!tmp)) s;
let rec f_aux l acc = match l with
| [] -> assert false
| [(b,n)] -> { sz = n ; bv = I_Cte b }::acc
| (b1,n)::(b2,m)::r when b1 = b2 -> f_aux ((b1,n+m)::r) acc
| (b1,n)::(b2,m)::r ->
(f_aux ((b2,m)::r)) ({ sz = n ; bv = I_Cte b1 }::acc)
in
let res = f_aux (!tmp) [] in
bitv_to_icomp (List.hd res) (List.tl res)
let make t =
let rec make_rec t' ctx = match E.term_view t' with
| E.Term { E.f = Sy.Bitv s; _ } -> string_to_bitv s, ctx
| E.Term { E.f = Sy.Op Sy.Concat ;
xs = [t1;t2] ; ty = Ty.Tbitv n; _ } ->
let r1, ctx = make_rec t1 ctx in
let r2, ctx = make_rec t2 ctx in
{ bv = I_Comp (r1, r2) ; sz = n }, ctx
| E.Term { E.f = Sy.Op Sy.Extract;
xs = [t1;ti;tj] ; ty = Ty.Tbitv _; _ } ->
begin
match E.term_view ti , E.term_view tj with
| E.Term { E.f = Sy.Int i; _ } , E.Term { E.f = Sy.Int j; _ } ->
let i = int_of_string (Hstring.view i) in
let j = int_of_string (Hstring.view j) in
let r1, ctx = make_rec t1 ctx in
{ sz = j - i + 1 ; bv = I_Ext (r1,i,j)}, ctx
| _ -> assert false
end
| E.Term { E.ty = Ty.Tbitv n; _ } ->
let r', ctx' = X.make t' in
let ctx = ctx' @ ctx in
{bv = I_Other (Alien r') ; sz = n}, ctx
| _ -> assert false
in
let r, ctx = make_rec t [] in
sigma r, ctx
end
module Debug = struct
open Printer
let print_tvar fmt ({var=v;sorte=s},sz) =
fprintf fmt "%s_%d[%d]@?"
(match s with | A -> "a" | B -> "b" | C -> "c")
v sz
let print fmt ast = match ast.bv with
| Cte b -> fprintf fmt "%d[%d]@?" (if b then 1 else 0) ast.sz
| Other (Alien t) -> fprintf fmt "%a@?" X.print t
| Other (Var tv) -> fprintf fmt "%a@?" print_tvar (tv,ast.sz)
| Ext (Alien t,_,i,j) ->
fprintf fmt "%a@?" X.print t;
fprintf fmt "<%d,%d>@?" i j
| Ext (Var tv,_,i,j) ->
fprintf fmt "%a@?" print_tvar (tv,ast.sz);
fprintf fmt "<%d,%d>@?" i j
let print_C_ast fmt = function
[] -> assert false
| x::l -> print fmt x; List.iter (fprintf fmt " @@ %a" print) l
let print_s fmt ast = match ast.bv with
| S_Cte b -> fprintf fmt "%d[%d]@?" (if b then 1 else 0) ast.sz
| S_Var tv -> fprintf fmt "%a@?" print_tvar (tv,ast.sz)
let print_S_ast fmt = function
[] -> assert false
| x::l -> print_s fmt x; List.iter (fprintf fmt " @@ %a" print_s) l
let print_sliced_sys l =
let print fmt (a,b) =
fprintf fmt " %a == %a@ " print a print b
in
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv"
~function_name:"slicing"
"%a" (pp_list_no_space print) l
let print_c_solve_res l =
let print fmt (a,b) =
fprintf fmt " %a == %a@ " print a print_S_ast b
in
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv"
~function_name:"c_solve"
"(map)c_solve :@ %a" (pp_list_no_space print) l
let print_partition_res l =
let print fmt (t,cte_l) =
fprintf fmt " %a%a@ " print t
(fun fmt ->
List.iter (fun l' -> fprintf fmt " == %a" print_S_ast l'))
cte_l
in
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv"
~function_name:"partition"
"%a" (pp_list_no_space print) l
let print_final_solution l =
let print fmt (a,value) =
fprintf fmt " %a = %a@ " print a print_C_ast value
in
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv"
~function_name:"solution"
"%a" (pp_list_no_space print) l
end
module Solver = struct
exception Valid
let add elt l = if List.mem elt l then l else elt::l
let get_vars = List.fold_left
(fun ac st -> match st.bv with
|Other v |Ext(v,_,_,_) -> add v ac |_ -> ac )[]
let st_slice st siz =
let siz_bis = st.sz - siz in match st.bv with
|Cte _ -> {st with sz = siz},{st with sz = siz_bis}
|Other x ->
let s1 = Ext(x,st.sz, siz_bis, st.sz - 1) in
let s2 = Ext(x,st.sz, 0, siz_bis - 1) in
{bv = s1 ; sz = siz},{bv = s2 ; sz = siz_bis}
|Ext(x,s,p,q) ->
let s1 = Ext(x,s,p+siz_bis,q) in
let s2 = Ext(x,s,p,p+siz_bis-1) in
{bv = s1 ; sz = siz},{bv = s2 ; sz = siz_bis}
let slice t u =
let f_add (s1,s2) acc =
if (s1 = s2 || List.mem (s1,s2) acc || List.mem (s2,s1) acc) then acc
else (s1,s2)::acc
in let rec f_rec acc = function
|[],[] | _,[] | [],_ -> assert false
|[s1],[s2] ->if s1.sz<>s2.sz then assert false else f_add (s1,s2) acc
|s1::r1,s2::r2 ->
if s1.sz = s2.sz then f_rec (f_add (s1,s2) acc) (r1,r2)
else begin
if s1.sz > s2.sz then
let (s11,s12) = st_slice s1 s2.sz
in f_rec (f_add (s11,s2) acc) (s12::r1,r2)
else
let (s21,s22) = st_slice s2 s1.sz
in f_rec (f_add (s1,s21) acc) (r1,s22::r2)
end
in f_rec [] (t,u)
let fresh_var =
let cpt = ref 0 in fun t -> incr cpt; { var = !cpt ; sorte = t}
let fresh_bitv genre size =
if size <= 0 then []
else [ { bv = S_Var (fresh_var genre) ; sz = size } ]
let cte_vs_other bol st = st , [{bv = S_Cte bol ; sz = st.sz}]
let cte_vs_ext bol xt s_xt i j =
let a1 = fresh_bitv A i in
let a2 = fresh_bitv A (s_xt - 1 - j) in
let cte = [ {bv = S_Cte bol ; sz =j - i + 1 } ] in
let var = { bv = Other xt ; sz = s_xt }
in var, a2@cte@a1
let other_vs_other st1 st2 =
let c = fresh_bitv C st1.sz in [ (st1,c) ; (st2,c) ]
let other_vs_ext st xt s_xt i j =
let c = fresh_bitv C st.sz in
let a1 = fresh_bitv A i in
let a2 = fresh_bitv A (s_xt - 1 - j) in
let extr = { bv = Other xt ; sz = s_xt }
in [ (st,c) ; (extr,a2 @ c @ a1) ]
let ext1_vs_ext2 (id,s,i,j) (id',s',i',j') =
let c = fresh_bitv (C) (j - i + 1) in
let a1 = fresh_bitv A i in
let a1' = fresh_bitv A i' in
let a2 = fresh_bitv A (s - 1 - j) in
let a2' = fresh_bitv A (s' - 1 - j') in
let x_v = { sz = s ; bv = Other id } in
let y_v = { sz = s' ; bv = Other id' } in
[ (x_v , a2 @ c @ a1) ; (y_v , a2' @ c @ a1') ]
let ext_vs_ext xt siz (i1,i2) tai =
let overl = i1 + tai -i2 in
if overl <= 0 then begin
let a1 = fresh_bitv A i1 in
let a2 = fresh_bitv A (-overl) in
let a3 = fresh_bitv A (siz - tai - i2) in
let b = fresh_bitv B tai
in ({ bv = Other xt ; sz = siz } , a3 @ b @ a2 @ b @ a1)
end
else begin
let b_box = i2 + tai - i1 in
let nn_overl = tai - overl in
let sz_b1 = b_box mod nn_overl in
let a1 = fresh_bitv A i1 in
let a3 = fresh_bitv A (siz - tai - i2) in
let b1 = fresh_bitv B sz_b1 in
let b2 = fresh_bitv B (nn_overl - sz_b1 )in
let acc = ref b1 in
let cpt = ref nn_overl in
while !cpt <= b_box do
acc := b1 @ b2 @(!acc);
cpt := !cpt + nn_overl
done;
({ bv = Other xt ; sz = siz } , a3 @ (!acc) @ a1)
end
let sys_solve sys =
let c_solve (st1,st2) = match st1.bv,st2.bv with
|Cte _, Cte _ -> raise Util.Unsolvable
|Cte b, Other (Var _) -> [cte_vs_other b st2]
|Other (Var _), Cte b -> [cte_vs_other b st1]
|Cte b, Other (Alien _) -> [cte_vs_other b st2]
|Other (Alien _), Cte b -> [cte_vs_other b st1]
|Cte b, Ext(xt,s_xt,i,j) -> [cte_vs_ext b xt s_xt i j]
|Ext(xt,s_xt,i,j), Cte b -> [cte_vs_ext b xt s_xt i j]
|Other _, Other _ -> other_vs_other st1 st2
|Other _, Ext(xt,s_xt,i,j) ->
other_vs_ext st1 xt s_xt i j
|Ext(xt,s_xt,i,j), Other _ -> other_vs_ext st2 xt s_xt i j
|Ext(id,s,i,j), Ext(id',s',i',j') ->
if id <> id' then ext1_vs_ext2 (id,s,i,j) (id',s',i',j')
else[ext_vs_ext id s (if i<i' then (i,i') else (i',i)) (j - i + 1)]
in List.flatten (List.map c_solve sys)
let partition l =
let rec add acc (t,cnf) = match acc with
|[] -> [(t,[cnf])]
|(t',cnf')::r -> if t = t' then (t',cnf::cnf')::r
else (t',cnf')::(add r (t,cnf))
in List.fold_left add [] l
let slicing_pattern s_l =
let rec f_aux l1 l2 = match (l1,l2) with
|[],[] -> []
|a::r1,b::r2 when a = b -> a::(f_aux r1 r2)
|a::r1,b::r2 ->
if a < b then a::(f_aux r1 ((b-a)::r2))
else b::(f_aux ((a-b)::r1) r2)
|_ -> assert false
in List.fold_left f_aux (List.hd s_l)(List.tl s_l)
let slice_var var s1 =
let s2 = var.sz - s1 in
match var.bv with
|S_Cte _ -> {var with sz = s1},{var with sz = s2},None
|S_Var v ->
let (fs,sn,tr) = match v.sorte with
|A -> (fresh_var A), (fresh_var A), A
|B -> (fresh_var B), (fresh_var B), B
|C -> (fresh_var C), (fresh_var C), C
in {bv = S_Var fs; sz = s1},{bv = S_Var sn; sz = s2},Some tr
let rec slice_composition eq pat (ac_eq,c_sub) = match (eq,pat) with
|[],[] -> (ac_eq,c_sub)
|st::_,n::_ when st.sz < n -> assert false
|st::comp,n::pt ->
if st.sz = n then slice_composition comp pt (st::ac_eq , c_sub)
else let (st_n,res,flag) = slice_var st n
in begin
match flag with
|Some B -> let comp' = List.fold_right
(fun s_t acc -> if s_t <> st then s_t::acc
else st_n::res::acc
)comp []
in slice_composition (res::comp') pt (st_n::ac_eq,c_sub)
|Some C -> let ac' = (st_n::ac_eq,(st,(st_n,res))::c_sub)
in slice_composition (res::comp) pt ac'
| _ -> slice_composition (res::comp) pt (st_n::ac_eq,c_sub)
end
| _ -> assert false
let uniforme_slice vls =
let pat = slicing_pattern(List.map (List.map(fun bv ->bv.sz))vls) in
let rec f_aux acc subs l_vs = match l_vs with
|[] -> acc,subs
|eq::eqs -> let (eq',c_subs) = slice_composition eq pat ([],[])
in f_aux (List.rev eq'::acc) (c_subs@subs) eqs
in f_aux [] [] vls
let apply_subs subs sys =
let rec f_aux = function
|[] -> assert false
|v::r -> try let (v1,v2) = List.assoc v subs in v1::v2::(f_aux r)
with _ -> v::(f_aux r)
in List.map (fun (t,vls) ->(t,List.map f_aux vls))sys
let equations_slice parts =
let rec slice_rec bw = function
|[] -> bw
|(t,vls)::r ->
let (vls',subs) = uniforme_slice vls
in if subs =[] then slice_rec ((t,vls')::bw) r
else
begin
let _bw = apply_subs subs bw in
let _fw = apply_subs subs r in
if _bw = bw then slice_rec ((t,vls')::bw) _fw
else slice_rec [] (bw@((t,vls'):: _fw))
end
in slice_rec [] parts
let rec union_sets sets =
let included e1 e2 =
try
ST_Set.iter (fun at -> if ST_Set.mem at e2 then raise Exit)e1;
false
with Exit -> true
in match sets with
|[] -> []
|st::tl ->
let (ok,ko) = List.partition (included st) tl in
if ok = [] then st::union_sets tl
else union_sets ((List.fold_left ST_Set.union st ok)::ko)
let init_sets vals =
let acc = List.map (fun at -> ST_Set.singleton at) (List.hd vals) in
let tl = (List.tl vals) in
let f_aux = List.map2 (fun ac_e e -> ST_Set.add e ac_e)
in List.fold_left f_aux acc tl
let equalities_propagation eqs_slic =
let init_sets = List.map (fun (_,vls) -> init_sets vls) eqs_slic in
let init_sets = List.flatten init_sets
in List.map
(fun set ->
let st1 = ST_Set.min_elt set and st2 = ST_Set.max_elt set
in match st1.bv , st2.bv with
|S_Cte false, S_Cte true -> raise Util.Unsolvable
|S_Cte false , _ -> st1,set
|_ , _ -> st2,set
) (union_sets init_sets)
let build_solution unif_slic sets =
let get_rep var =
fst(List.find ( fun(_,set)->ST_Set.mem var set ) sets) in
let to_external_ast v =
{sz = v.sz;
bv = match v.bv with
|S_Cte b -> Cte b
|S_Var _ ->
begin
match (get_rep v).bv with
|S_Cte b -> Cte b
|S_Var tv -> Other (Var tv)
end
}in
let rec cnf_max l = match l with
|[] -> []
|[elt]-> [elt]
|a::b::r ->
begin
match a.bv,b.bv with
|Cte bol,Cte bol' when bol = bol' ->
cnf_max ({ b with sz = a.sz + b.sz }::r)
| _,Cte _ -> a::(cnf_max (b::r))
| _ -> a::b::(cnf_max r)
end
in List.map
(fun (t,vls) ->
t,cnf_max (List.map to_external_ast (List.hd vls))
)unif_slic
let solve u v =
if u = v then raise Valid
else begin
let varsU = get_vars u in
let varsV = get_vars v in
if varsU = [] && varsV = [] then raise Util.Unsolvable
else
begin
let st_sys = slice u v in
let sys_sols = sys_solve st_sys in
let parts = partition sys_sols in
let unif_slic = equations_slice parts in
let eq_pr = equalities_propagation unif_slic in
let sol = build_solution unif_slic eq_pr in
if Options.get_debug_bitv () then
begin
Debug.print_sliced_sys st_sys;
Debug.print_c_solve_res sys_sols;
Debug.print_partition_res parts;
Debug.print_partition_res unif_slic;
Debug.print_final_solution sol;
end;
sol
end
end
end
let compare_mine b1 b2 =
let rec comp l1 l2 = match l1,l2 with
[] , [] -> 0
| [] , _ -> -1
| _ , [] -> 1
| st1::l1 , st2::l2 ->
let c = compare_simple_term st1 st2 in
if c<>0 then c else comp l1 l2
in comp b1 b2
let compare x y = compare (embed x) (embed y)
let equal bv1 bv2 = compare_mine bv1 bv2 = 0
let hash_xterm = function
| Var {var = i; sorte = A} -> 11 * i
| Var {var = i; sorte = B} -> 17 * i
| Var {var = i; sorte = C} -> 19 * i
| Alien r -> 23 * X.hash r
let hash_simple_term_aux = function
| Cte b -> 11 * Hashtbl.hash b
| Other x -> 17 * hash_xterm x
| Ext (x, a, b, c) ->
hash_xterm x + 19 * (a + b + c)
let hash l =
List.fold_left
(fun acc {bv=r; sz=sz} -> acc + 19 * (sz + hash_simple_term_aux r) ) 19 l
let leaves bitv =
List.fold_left
(fun acc x ->
match x.bv with
| Cte _ -> acc
| Ext( Var v,sz,_,_) ->
(X.embed [{bv=Other (Var v) ; sz = sz }])::acc
| Other (Var _) -> (X.embed [x])::acc
| Other (Alien t) | Ext(Alien t,_,_,_) -> (X.leaves t)@acc
) [] bitv
let is_mine = function [{ bv = Other (Alien r); _ }] -> r | bv -> X.embed bv
let print = Debug.print_C_ast
let make t =
let r, ctx = Canonizer.make t in
is_mine r, ctx
let color _ = assert false
let type_info bv =
let sz = List.fold_left (fun acc bv -> bv.sz + acc) 0 bv in
Ty.Tbitv sz
let to_i_ast biv =
let f_aux st =
{sz = st.sz;
bv = match st.bv with
| Cte b -> Canonizer.I_Cte b
| Other tt -> Canonizer.I_Other tt
| Ext(tt,siz,i,j) ->
let tt' = { sz = siz ; bv = Canonizer.I_Other tt }
in Canonizer.I_Ext(tt',i,j)
} in
List.fold_left
(fun acc st ->
let tmp = f_aux st
in { bv = Canonizer.I_Comp(acc,tmp) ; sz = acc.sz + tmp.sz }
) (f_aux (List.hd biv)) (List.tl biv)
let r ty =
match X.extract r with
Some (_::_ as bv) -> to_i_ast bv
| None -> {bv = Canonizer.I_Other (Alien r); sz = ty}
| Some [] -> assert false
let r =
match X.extract r with
Some ([{ bv = Other (Var _ as x); _ }]) -> x
| None -> Alien r
| _ -> assert false
let var_or_term x =
match x.bv with
Other (Var _) -> X.embed [x]
| Other (Alien r) -> r
| _ -> assert false
let solve_bis u t =
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv" ~function_name:"solve_bis"
"solve %a = %a" X.print u X.print t;
match X.extract u , X.extract t with
| None , None -> if X.str_cmp u t > 0 then [u,t] else [t,u]
| None , Some _ -> [u , t]
| Some _ , None -> [t , u]
| Some u , Some t ->
try
List.map
(fun (p,v) -> var_or_term p,is_mine v)
(Solver.solve u t)
with Solver.Valid -> []
let rec subst_rec x subs biv =
match biv.bv , extract_xterm x with
| Canonizer.I_Cte _ , _ -> biv
| Canonizer.I_Other (Var y) , Var z when y=z -> extract subs biv.sz
| Canonizer.I_Other (Var _) , _ -> biv
| Canonizer.I_Other (Alien tt) , _ ->
if X.equal x tt then
extract subs biv.sz
else extract (X.subst x subs tt) biv.sz
| Canonizer.I_Ext (t,i,j) , _ ->
{ biv with bv = Canonizer.I_Ext(subst_rec x subs t,i,j) }
| Canonizer.I_Comp (u,v) , _ ->
{ biv with
bv = Canonizer.I_Comp(subst_rec x subs u ,subst_rec x subs v)}
let subst x subs biv =
if Options.get_debug_bitv () then
Printer.print_dbg
~module_name:"Bitv" ~function_name:"subst"
"subst %a |-> %a in %a" X.print x X.print subs print biv;
if biv = [] then is_mine biv
else
let r = Canonizer.sigma (subst_rec x subs (to_i_ast biv)) in
is_mine r
let fully_interpreted _ = true
let _ = None, false
let abstract_selectors v acc = is_mine v, acc
let solve r1 r2 pb =
{pb with sbt = List.rev_append (solve_bis r1 r2) pb.sbt}
let assign_value _ __ =
failwith "[Bitv.assign_value] not implemented for theory Bitv"
let choose_adequate_model _ _ =
assert false
end