-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixpoint.ml
138 lines (110 loc) · 4.82 KB
/
fixpoint.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
(*
* Copyright © 2009 The Regents of the University of California. All rights reserved.
*
* Permission is hereby granted, without written agreement and without
* license or royalty fees, to use, copy, modify, and distribute this
* software and its documentation for any purpose, provided that the
* above copyright notice and the following two paragraphs appear in
* all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
* FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
* IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION
* TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*
*)
(** read a set of constraints, solve, and dump out the solution *)
module CX = Counterexample
module BS = BNstats
module SM = Ast.Symbol.SMap
module Co = Constants
module C = FixConstraint
module F = Format
module T = Toplevel
module PA = PredAbs
module SPA = Solve.Make (PA)
module Cg = FixConfig
open Misc.Ops
(*****************************************************************)
(********************* Hooking into Solver ***********************)
(*****************************************************************)
let print_raw_cs ppf = function
| [] -> F.fprintf ppf "SAT \n \n \n"
| cs -> F.fprintf ppf "UNSAT [%s] \n \n \n" (Misc.map_to_string (C.id_of_t <+> string_of_int) cs)
let save_raw fname cs s =
let oc = open_out fname in
let ppf = F.formatter_of_out_channel oc in
let _ = print_now ("Fixpoint: save_raw into file = " ^ fname ^ " : BEGIN \n") in
F.fprintf ppf "%a \n" print_raw_cs cs;
F.fprintf ppf "%a \n" PA.print s;
F.fprintf ppf "@.";
F.print_flush ();
close_out oc;
print_now "Fixpoint: save_raw: END \n"
let solve ac =
let _ = print_now "Fixpoint: Creating CI\n" in
let ctx, s = BS.time "create" SPA.create ac None in
let _ = print_now "Fixpoint: Solving \n" in
let s, cs',_ = BS.time "solve" (SPA.solve ctx) s in
let _ = print_now "Fixpoint: Saving Result \n" in
let _ = BS.time "save" (save_raw !Co.out_file cs') s in
let _ = print_now "Fixpoint: Saving Result DONE \n" in
cs'
let dump_solve ac =
let cs' = solve { ac with Cg.bm = SM.map PA.mkbind ac.Cg.bm } in
let _ = BNstats.print stdout "Fixpoint Solver Time \n" in
match cs' with
| [] -> (F.printf "\nSAT\n" ; exit 0)
| _ -> (F.printf "\nUNSAT\n" ; exit 1)
(*****************************************************************)
(********************* Generate Imp Program **********************)
(*****************************************************************)
let dump_imp a =
(List.map (fun c -> Cg.Cst c) a.Cg.cs ++ List.map (fun c -> Cg.Wfc c) a.Cg.ws)
|> ToImp.mk_program
|> F.fprintf F.std_formatter "%a" Imp.print_program_as_c
|> fun _ -> exit 1
(*****************************************************************)
(***************** Generate Simplified Constraints ***************)
(*****************************************************************)
let hook_simplify_ts = function
| "andrey" -> List.map Simplification.simplify_t
<+> List.filter (not <.> Simplification.is_tauto_t)
<+> Simplification.simplify_ts
| "jhala" -> FixSimplify.simplify_ts
(* put other transforms here *)
| _ -> id
let simplify_ts cs = hook_simplify_ts !Co.dump_simp cs
let dump_simp ac =
let ac = {ac with Cg.cs = simplify_ts ac.Cg.cs; Cg.bm = SM.empty} in
Misc.with_out_formatter !Co.save_file (fun ppf -> Cg.print ppf ac)
(*
let dump_simp ac =
(* let ac = {ac with Cg.cs = simplify_ts ac.Cg.cs; Cg.bm = SM.empty; Cg.qs = []} in *)
let ac = {ac with Cg.cs = simplify_ts ac.Cg.cs; Cg.bm = SM.empty} in
Misc.with_out_formatter !Co.save_file (fun ppf -> Cg.print ppf ac)
let ctx,_ = BS.time "create" SPA.create ac None in
let s0 = PA.empty (* PA.create ac None *) in
let _ = BS.time "save" (SPA.save !Co.save_file ctx) s0 in
exit 1
*)
(*****************************************************************)
(*********************** Main ************************************)
(*****************************************************************)
let usage = "Usage: fixpoint.native <options> [source-files]\noptions are:"
let main () =
let cfg = usage |> Toplevel.read_inputs |> snd in
if !Co.dump_imp then
dump_imp cfg
else if !Co.dump_simp <> "" then
dump_simp cfg
else
dump_solve cfg
let _ = main ()