| author | wenzelm | 
| Sat, 10 Nov 2007 15:58:18 +0100 | |
| changeset 25376 | 87824cc5ff90 | 
| parent 25367 | 98b6b7f64e49 | 
| child 25400 | e05b9fa43885 | 
| permissions | -rw-r--r-- | 
| 11520 | 1  | 
(* Title: Pure/codegen.ML  | 
2  | 
ID: $Id$  | 
|
| 11539 | 3  | 
Author: Stefan Berghofer, TU Muenchen  | 
| 11520 | 4  | 
|
| 11539 | 5  | 
Generic code generator.  | 
| 11520 | 6  | 
*)  | 
7  | 
||
8  | 
signature CODEGEN =  | 
|
9  | 
sig  | 
|
10  | 
val quiet_mode : bool ref  | 
|
11  | 
val message : string -> unit  | 
|
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
12  | 
val mode : string list ref  | 
| 
13886
 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 
berghofe 
parents: 
13753 
diff
changeset
 | 
13  | 
val margin : int ref  | 
| 11520 | 14  | 
|
| 12452 | 15  | 
datatype 'a mixfix =  | 
| 11520 | 16  | 
Arg  | 
17  | 
| Ignore  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
18  | 
| Module  | 
| 11520 | 19  | 
| Pretty of Pretty.T  | 
| 12452 | 20  | 
| Quote of 'a;  | 
| 11520 | 21  | 
|
| 16649 | 22  | 
type deftab  | 
| 17144 | 23  | 
type node  | 
| 16649 | 24  | 
type codegr  | 
| 12452 | 25  | 
type 'a codegen  | 
26  | 
||
27  | 
val add_codegen: string -> term codegen -> theory -> theory  | 
|
28  | 
val add_tycodegen: string -> typ codegen -> theory -> theory  | 
|
| 15261 | 29  | 
val add_preprocessor: (theory -> thm list -> thm list) -> theory -> theory  | 
30  | 
val preprocess: theory -> thm list -> thm list  | 
|
| 17549 | 31  | 
val preprocess_term: theory -> term -> term  | 
| 11520 | 32  | 
val print_codegens: theory -> unit  | 
| 17144 | 33  | 
val generate_code: theory -> string list -> string -> (string * string) list ->  | 
34  | 
(string * string) list * codegr  | 
|
35  | 
val generate_code_i: theory -> string list -> string -> (string * term) list ->  | 
|
36  | 
(string * string) list * codegr  | 
|
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
37  | 
val assoc_const: string * (term mixfix list *  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
38  | 
(string * string) list) -> theory -> theory  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
39  | 
val assoc_const_i: (string * typ) * (term mixfix list *  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
40  | 
(string * string) list) -> theory -> theory  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
41  | 
val assoc_type: xstring * (typ mixfix list *  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
42  | 
(string * string) list) -> theory -> theory  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
43  | 
val get_assoc_code: theory -> string * typ ->  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
44  | 
(term mixfix list * (string * string) list) option  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
45  | 
val get_assoc_type: theory -> string ->  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
46  | 
(typ mixfix list * (string * string) list) option  | 
| 17144 | 47  | 
val codegen_error: codegr -> string -> string -> 'a  | 
| 16649 | 48  | 
val invoke_codegen: theory -> deftab -> string -> string -> bool ->  | 
49  | 
codegr * term -> codegr * Pretty.T  | 
|
50  | 
val invoke_tycodegen: theory -> deftab -> string -> string -> bool ->  | 
|
51  | 
codegr * typ -> codegr * Pretty.T  | 
|
| 14858 | 52  | 
val mk_id: string -> string  | 
| 17144 | 53  | 
val mk_qual_id: string -> string * string -> string  | 
54  | 
val mk_const_id: string -> string -> codegr -> codegr * (string * string)  | 
|
55  | 
val get_const_id: string -> codegr -> string * string  | 
|
56  | 
val mk_type_id: string -> string -> codegr -> codegr * (string * string)  | 
|
57  | 
val get_type_id: string -> codegr -> string * string  | 
|
| 16649 | 58  | 
val thyname_of_type: string -> theory -> string  | 
59  | 
val thyname_of_const: string -> theory -> string  | 
|
60  | 
val rename_terms: term list -> term list  | 
|
| 11520 | 61  | 
val rename_term: term -> term  | 
| 15398 | 62  | 
val new_names: term -> string list -> string list  | 
63  | 
val new_name: term -> string -> string  | 
|
| 17144 | 64  | 
val if_library: 'a -> 'a -> 'a  | 
| 16649 | 65  | 
val get_defn: theory -> deftab -> string -> typ ->  | 
66  | 
((typ * (string * (term list * term))) * int option) option  | 
|
| 
24908
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
67  | 
val is_instance: typ -> typ -> bool  | 
| 11520 | 68  | 
val parens: Pretty.T -> Pretty.T  | 
69  | 
val mk_app: bool -> Pretty.T -> Pretty.T list -> Pretty.T  | 
|
70  | 
val eta_expand: term -> term list -> int -> term  | 
|
| 14105 | 71  | 
val strip_tname: string -> string  | 
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
72  | 
val mk_type: bool -> typ -> Pretty.T  | 
| 17144 | 73  | 
val mk_term_of: codegr -> string -> bool -> typ -> Pretty.T  | 
74  | 
val mk_gen: codegr -> string -> bool -> string list -> string -> typ -> Pretty.T  | 
|
| 14105 | 75  | 
val test_fn: (int -> (string * term) list option) ref  | 
| 24456 | 76  | 
val test_term: theory -> bool -> int -> int -> term -> (string * term) list option  | 
77  | 
val auto_quickcheck: bool ref  | 
|
| 
24805
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
78  | 
val auto_quickcheck_time_limit: int ref  | 
| 
24655
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
79  | 
val eval_result: (unit -> term) ref  | 
| 17549 | 80  | 
val eval_term: theory -> term -> term  | 
| 20599 | 81  | 
val evaluation_conv: cterm -> thm  | 
| 12452 | 82  | 
val parse_mixfix: (string -> 'a) -> string -> 'a mixfix list  | 
| 18102 | 83  | 
val quotes_of: 'a mixfix list -> 'a list  | 
| 18281 | 84  | 
val num_args_of: 'a mixfix list -> int  | 
| 18102 | 85  | 
val replace_quotes: 'b list -> 'a mixfix list -> 'b mixfix list  | 
| 16649 | 86  | 
val mk_deftab: theory -> deftab  | 
| 
19341
 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 
haftmann 
parents: 
19299 
diff
changeset
 | 
87  | 
val add_unfold: thm -> theory -> theory  | 
| 17549 | 88  | 
|
| 17144 | 89  | 
val get_node: codegr -> string -> node  | 
90  | 
val add_edge: string * string -> codegr -> codegr  | 
|
91  | 
val add_edge_acyclic: string * string -> codegr -> codegr  | 
|
92  | 
val del_nodes: string list -> codegr -> codegr  | 
|
93  | 
val map_node: string -> (node -> node) -> codegr -> codegr  | 
|
94  | 
val new_node: string * node -> codegr -> codegr  | 
|
| 11520 | 95  | 
end;  | 
96  | 
||
97  | 
structure Codegen : CODEGEN =  | 
|
98  | 
struct  | 
|
99  | 
||
100  | 
val quiet_mode = ref true;  | 
|
101  | 
fun message s = if !quiet_mode then () else writeln s;  | 
|
102  | 
||
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
103  | 
val mode = ref ([] : string list);  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
104  | 
|
| 
13886
 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 
berghofe 
parents: 
13753 
diff
changeset
 | 
105  | 
val margin = ref 80;  | 
| 
 
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
 
berghofe 
parents: 
13753 
diff
changeset
 | 
106  | 
|
| 11520 | 107  | 
(**** Mixfix syntax ****)  | 
108  | 
||
| 12452 | 109  | 
datatype 'a mixfix =  | 
| 11520 | 110  | 
Arg  | 
111  | 
| Ignore  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
112  | 
| Module  | 
| 11520 | 113  | 
| Pretty of Pretty.T  | 
| 12452 | 114  | 
| Quote of 'a;  | 
| 11520 | 115  | 
|
116  | 
fun is_arg Arg = true  | 
|
117  | 
| is_arg Ignore = true  | 
|
118  | 
| is_arg _ = false;  | 
|
119  | 
||
| 12452 | 120  | 
fun quotes_of [] = []  | 
121  | 
| quotes_of (Quote q :: ms) = q :: quotes_of ms  | 
|
122  | 
| quotes_of (_ :: ms) = quotes_of ms;  | 
|
123  | 
||
124  | 
fun args_of [] xs = ([], xs)  | 
|
125  | 
| args_of (Arg :: ms) (x :: xs) = apfst (cons x) (args_of ms xs)  | 
|
126  | 
| args_of (Ignore :: ms) (_ :: xs) = args_of ms xs  | 
|
127  | 
| args_of (_ :: ms) xs = args_of ms xs;  | 
|
| 11520 | 128  | 
|
| 18281 | 129  | 
fun num_args_of x = length (List.filter is_arg x);  | 
| 11520 | 130  | 
|
131  | 
||
132  | 
(**** theory data ****)  | 
|
133  | 
||
| 16649 | 134  | 
(* preprocessed definition table *)  | 
135  | 
||
136  | 
type deftab =  | 
|
137  | 
(typ * (* type of constant *)  | 
|
138  | 
(string * (* name of theory containing definition of constant *)  | 
|
139  | 
(term list * (* parameters *)  | 
|
140  | 
term))) (* right-hand side *)  | 
|
141  | 
list Symtab.table;  | 
|
142  | 
||
143  | 
(* code dependency graph *)  | 
|
144  | 
||
| 17144 | 145  | 
type nametab = (string * string) Symtab.table * unit Symtab.table;  | 
146  | 
||
147  | 
fun merge_nametabs ((tab, used), (tab', used')) =  | 
|
148  | 
(Symtab.merge op = (tab, tab'), Symtab.merge op = (used, used'));  | 
|
149  | 
||
150  | 
type node =  | 
|
| 16649 | 151  | 
(exn option * (* slot for arbitrary data *)  | 
152  | 
string * (* name of structure containing piece of code *)  | 
|
| 17144 | 153  | 
string); (* piece of code *)  | 
154  | 
||
155  | 
type codegr =  | 
|
156  | 
node Graph.T *  | 
|
157  | 
(nametab * (* table for assigned constant names *)  | 
|
158  | 
nametab); (* table for assigned type names *)  | 
|
159  | 
||
160  | 
val emptygr : codegr = (Graph.empty,  | 
|
161  | 
((Symtab.empty, Symtab.empty), (Symtab.empty, Symtab.empty)));  | 
|
| 16649 | 162  | 
|
| 14105 | 163  | 
(* type of code generators *)  | 
| 11520 | 164  | 
|
| 16649 | 165  | 
type 'a codegen =  | 
166  | 
theory -> (* theory in which generate_code was called *)  | 
|
167  | 
deftab -> (* definition table (for efficiency) *)  | 
|
168  | 
codegr -> (* code dependency graph *)  | 
|
169  | 
string -> (* node name of caller (for recording dependencies) *)  | 
|
| 17144 | 170  | 
string -> (* module name of caller (for modular code generation) *)  | 
| 16649 | 171  | 
bool -> (* whether to parenthesize generated expression *)  | 
172  | 
'a -> (* item to generate code from *)  | 
|
173  | 
(codegr * Pretty.T) option;  | 
|
| 12452 | 174  | 
|
| 14105 | 175  | 
(* parameters for random testing *)  | 
176  | 
||
177  | 
type test_params =  | 
|
178  | 
  {size: int, iterations: int, default_type: typ option};
 | 
|
179  | 
||
180  | 
fun merge_test_params  | 
|
181  | 
  {size = size1, iterations = iterations1, default_type = default_type1}
 | 
|
182  | 
  {size = size2, iterations = iterations2, default_type = default_type2} =
 | 
|
183  | 
  {size = Int.max (size1, size2),
 | 
|
184  | 
iterations = Int.max (iterations1, iterations2),  | 
|
185  | 
default_type = case default_type1 of  | 
|
| 15531 | 186  | 
NONE => default_type2  | 
| 14105 | 187  | 
| _ => default_type1};  | 
188  | 
||
189  | 
val default_test_params : test_params =  | 
|
| 15531 | 190  | 
  {size = 10, iterations = 100, default_type = NONE};
 | 
| 14105 | 191  | 
|
192  | 
fun set_size size ({iterations, default_type, ...} : test_params) =
 | 
|
193  | 
  {size = size, iterations = iterations, default_type = default_type};
 | 
|
194  | 
||
195  | 
fun set_iterations iterations ({size, default_type, ...} : test_params) =
 | 
|
196  | 
  {size = size, iterations = iterations, default_type = default_type};
 | 
|
197  | 
||
| 16458 | 198  | 
fun set_default_type s thy ({size, iterations, ...} : test_params) =
 | 
| 14105 | 199  | 
  {size = size, iterations = iterations,
 | 
| 24707 | 200  | 
default_type = SOME (Syntax.read_typ_global thy s)};  | 
| 14105 | 201  | 
|
| 22846 | 202  | 
|
203  | 
(* theory data *)  | 
|
| 16458 | 204  | 
|
205  | 
structure CodegenData = TheoryDataFun  | 
|
| 22846 | 206  | 
(  | 
| 11520 | 207  | 
type T =  | 
| 12452 | 208  | 
    {codegens : (string * term codegen) list,
 | 
209  | 
tycodegens : (string * typ codegen) list,  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
210  | 
consts : ((string * typ) * (term mixfix list * (string * string) list)) list,  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
211  | 
types : (string * (typ mixfix list * (string * string) list)) list,  | 
| 15261 | 212  | 
preprocs: (stamp * (theory -> thm list -> thm list)) list,  | 
| 17144 | 213  | 
modules: codegr Symtab.table,  | 
| 14105 | 214  | 
test_params: test_params};  | 
| 11520 | 215  | 
|
| 
12555
 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 
berghofe 
parents: 
12490 
diff
changeset
 | 
216  | 
val empty =  | 
| 24219 | 217  | 
    {codegens = [], tycodegens = [], consts = [], types = [],
 | 
| 17144 | 218  | 
preprocs = [], modules = Symtab.empty, test_params = default_test_params};  | 
| 11520 | 219  | 
val copy = I;  | 
| 16458 | 220  | 
val extend = I;  | 
| 11520 | 221  | 
|
| 16458 | 222  | 
fun merge _  | 
| 
12555
 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 
berghofe 
parents: 
12490 
diff
changeset
 | 
223  | 
    ({codegens = codegens1, tycodegens = tycodegens1,
 | 
| 24219 | 224  | 
consts = consts1, types = types1,  | 
| 17144 | 225  | 
preprocs = preprocs1, modules = modules1, test_params = test_params1},  | 
| 
12555
 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 
berghofe 
parents: 
12490 
diff
changeset
 | 
226  | 
     {codegens = codegens2, tycodegens = tycodegens2,
 | 
| 24219 | 227  | 
consts = consts2, types = types2,  | 
| 17144 | 228  | 
preprocs = preprocs2, modules = modules2, test_params = test_params2}) =  | 
| 
19119
 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 
haftmann 
parents: 
19046 
diff
changeset
 | 
229  | 
    {codegens = AList.merge (op =) (K true) (codegens1, codegens2),
 | 
| 
 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 
haftmann 
parents: 
19046 
diff
changeset
 | 
230  | 
tycodegens = AList.merge (op =) (K true) (tycodegens1, tycodegens2),  | 
| 
21098
 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 
haftmann 
parents: 
21056 
diff
changeset
 | 
231  | 
consts = AList.merge (op =) (K true) (consts1, consts2),  | 
| 
 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 
haftmann 
parents: 
21056 
diff
changeset
 | 
232  | 
types = AList.merge (op =) (K true) (types1, types2),  | 
| 
19119
 
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
 
haftmann 
parents: 
19046 
diff
changeset
 | 
233  | 
preprocs = AList.merge (op =) (K true) (preprocs1, preprocs2),  | 
| 17144 | 234  | 
modules = Symtab.merge (K true) (modules1, modules2),  | 
| 14105 | 235  | 
test_params = merge_test_params test_params1 test_params2};  | 
| 22846 | 236  | 
);  | 
| 11520 | 237  | 
|
| 22846 | 238  | 
fun print_codegens thy =  | 
239  | 
  let val {codegens, tycodegens, ...} = CodegenData.get thy in
 | 
|
| 12452 | 240  | 
Pretty.writeln (Pretty.chunks  | 
241  | 
      [Pretty.strs ("term code generators:" :: map fst codegens),
 | 
|
| 22846 | 242  | 
       Pretty.strs ("type code generators:" :: map fst tycodegens)])
 | 
243  | 
end;  | 
|
| 11520 | 244  | 
|
245  | 
||
246  | 
||
| 14105 | 247  | 
(**** access parameters for random testing ****)  | 
248  | 
||
249  | 
fun get_test_params thy = #test_params (CodegenData.get thy);  | 
|
250  | 
||
251  | 
fun map_test_params f thy =  | 
|
| 24219 | 252  | 
  let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 253  | 
CodegenData.get thy;  | 
254  | 
  in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
 | 
|
| 24219 | 255  | 
consts = consts, types = types, preprocs = preprocs,  | 
| 17144 | 256  | 
modules = modules, test_params = f test_params} thy  | 
257  | 
end;  | 
|
258  | 
||
259  | 
||
260  | 
(**** access modules ****)  | 
|
261  | 
||
262  | 
fun get_modules thy = #modules (CodegenData.get thy);  | 
|
263  | 
||
264  | 
fun map_modules f thy =  | 
|
| 24219 | 265  | 
  let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 17144 | 266  | 
CodegenData.get thy;  | 
267  | 
  in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
 | 
|
| 24219 | 268  | 
consts = consts, types = types, preprocs = preprocs,  | 
| 17144 | 269  | 
modules = f modules, test_params = test_params} thy  | 
| 14105 | 270  | 
end;  | 
271  | 
||
272  | 
||
| 12452 | 273  | 
(**** add new code generators to theory ****)  | 
| 11520 | 274  | 
|
275  | 
fun add_codegen name f thy =  | 
|
| 24219 | 276  | 
  let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 277  | 
CodegenData.get thy  | 
| 17521 | 278  | 
in (case AList.lookup (op =) codegens name of  | 
| 15531 | 279  | 
      NONE => CodegenData.put {codegens = (name, f) :: codegens,
 | 
| 
12555
 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 
berghofe 
parents: 
12490 
diff
changeset
 | 
280  | 
tycodegens = tycodegens, consts = consts, types = types,  | 
| 24219 | 281  | 
preprocs = preprocs, modules = modules,  | 
| 17144 | 282  | 
test_params = test_params} thy  | 
| 15531 | 283  | 
    | SOME _ => error ("Code generator " ^ name ^ " already declared"))
 | 
| 12452 | 284  | 
end;  | 
285  | 
||
286  | 
fun add_tycodegen name f thy =  | 
|
| 24219 | 287  | 
  let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 288  | 
CodegenData.get thy  | 
| 17521 | 289  | 
in (case AList.lookup (op =) tycodegens name of  | 
| 15531 | 290  | 
      NONE => CodegenData.put {tycodegens = (name, f) :: tycodegens,
 | 
| 
12555
 
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
 
berghofe 
parents: 
12490 
diff
changeset
 | 
291  | 
codegens = codegens, consts = consts, types = types,  | 
| 24219 | 292  | 
preprocs = preprocs, modules = modules,  | 
| 17144 | 293  | 
test_params = test_params} thy  | 
| 15531 | 294  | 
    | SOME _ => error ("Code generator " ^ name ^ " already declared"))
 | 
| 11520 | 295  | 
end;  | 
296  | 
||
297  | 
||
| 15261 | 298  | 
(**** preprocessors ****)  | 
299  | 
||
300  | 
fun add_preprocessor p thy =  | 
|
| 24219 | 301  | 
  let val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 15261 | 302  | 
CodegenData.get thy  | 
303  | 
  in CodegenData.put {tycodegens = tycodegens,
 | 
|
304  | 
codegens = codegens, consts = consts, types = types,  | 
|
| 24219 | 305  | 
preprocs = (stamp (), p) :: preprocs,  | 
| 17144 | 306  | 
modules = modules, test_params = test_params} thy  | 
| 15261 | 307  | 
end;  | 
308  | 
||
| 21836 | 309  | 
fun preprocess thy =  | 
| 15261 | 310  | 
  let val {preprocs, ...} = CodegenData.get thy
 | 
| 21836 | 311  | 
in fold (fn (_, f) => f thy) preprocs end;  | 
| 15261 | 312  | 
|
| 17549 | 313  | 
fun preprocess_term thy t =  | 
314  | 
let  | 
|
| 
20071
 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 
wenzelm 
parents: 
19806 
diff
changeset
 | 
315  | 
val x = Free (Name.variant (add_term_names (t, [])) "x", fastype_of t);  | 
| 17549 | 316  | 
(* fake definition *)  | 
317  | 
val eq = setmp quick_and_dirty true (SkipProof.make_thm thy)  | 
|
318  | 
(Logic.mk_equals (x, t));  | 
|
319  | 
fun err () = error "preprocess_term: bad preprocessor"  | 
|
320  | 
in case map prop_of (preprocess thy [eq]) of  | 
|
321  | 
      [Const ("==", _) $ x' $ t'] => if x = x' then t' else err ()
 | 
|
322  | 
| _ => err ()  | 
|
323  | 
end;  | 
|
| 18281 | 324  | 
|
| 
19341
 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 
haftmann 
parents: 
19299 
diff
changeset
 | 
325  | 
fun add_unfold eqn =  | 
| 15261 | 326  | 
let  | 
| 22749 | 327  | 
val thy = Thm.theory_of_thm eqn;  | 
328  | 
val ctxt = ProofContext.init thy;  | 
|
329  | 
val eqn' = LocalDefs.meta_rewrite_rule ctxt eqn;  | 
|
330  | 
val names = term_consts (fst (Logic.dest_equals (prop_of eqn')));  | 
|
| 15261 | 331  | 
fun prep thy = map (fn th =>  | 
| 17666 | 332  | 
let val prop = prop_of th  | 
333  | 
in  | 
|
334  | 
if forall (fn name => exists_Const (equal name o fst) prop) names  | 
|
| 22749 | 335  | 
then rewrite_rule [eqn'] (Thm.transfer thy th)  | 
| 17666 | 336  | 
else th  | 
337  | 
end)  | 
|
| 
19341
 
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
 
haftmann 
parents: 
19299 
diff
changeset
 | 
338  | 
in add_preprocessor prep end;  | 
| 15261 | 339  | 
|
| 24456 | 340  | 
val _ = Context.add_setup  | 
341  | 
(let  | 
|
342  | 
fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);  | 
|
343  | 
in  | 
|
344  | 
    Code.add_attribute ("unfold", Scan.succeed (mk_attribute
 | 
|
345  | 
(fn thm => add_unfold thm #> Code.add_inline thm)))  | 
|
346  | 
end);  | 
|
| 22749 | 347  | 
|
| 15261 | 348  | 
|
| 11520 | 349  | 
(**** associate constants with target language code ****)  | 
350  | 
||
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
351  | 
fun gen_assoc_const prep_const (raw_const, syn) thy =  | 
| 11520 | 352  | 
let  | 
| 24219 | 353  | 
    val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 354  | 
CodegenData.get thy;  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
355  | 
val (cname, T) = prep_const thy raw_const;  | 
| 11520 | 356  | 
in  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
357  | 
if num_args_of (fst syn) > length (binder_types T) then  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
358  | 
      error ("More arguments than in corresponding type of " ^ cname)
 | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
359  | 
else case AList.lookup (op =) consts (cname, T) of  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
360  | 
      NONE => CodegenData.put {codegens = codegens,
 | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
361  | 
tycodegens = tycodegens,  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
362  | 
consts = ((cname, T), syn) :: consts,  | 
| 24219 | 363  | 
types = types, preprocs = preprocs,  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
364  | 
modules = modules, test_params = test_params} thy  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
365  | 
    | SOME _ => error ("Constant " ^ cname ^ " already associated with code")
 | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
366  | 
end;  | 
| 11520 | 367  | 
|
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
368  | 
val assoc_const_i = gen_assoc_const (K I);  | 
| 24219 | 369  | 
val assoc_const = gen_assoc_const CodeUnit.read_bare_const;  | 
| 11520 | 370  | 
|
| 15801 | 371  | 
|
| 11520 | 372  | 
(**** associate types with target language types ****)  | 
373  | 
||
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
374  | 
fun assoc_type (s, syn) thy =  | 
| 11520 | 375  | 
let  | 
| 24219 | 376  | 
    val {codegens, tycodegens, consts, types, preprocs, modules, test_params} =
 | 
| 14105 | 377  | 
CodegenData.get thy;  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
378  | 
val tc = Sign.intern_type thy s;  | 
| 11520 | 379  | 
in  | 
| 
18320
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
380  | 
case Symtab.lookup (snd (#types (Type.rep_tsig (Sign.tsig_of thy)))) tc of  | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
381  | 
SOME (Type.LogicalType i, _) =>  | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
382  | 
if num_args_of (fst syn) > i then  | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
383  | 
          error ("More arguments than corresponding type constructor " ^ s)
 | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
384  | 
else (case AList.lookup (op =) types tc of  | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
385  | 
          NONE => CodegenData.put {codegens = codegens,
 | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
386  | 
tycodegens = tycodegens, consts = consts,  | 
| 24219 | 387  | 
types = (tc, syn) :: types,  | 
| 
18320
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
388  | 
preprocs = preprocs, modules = modules, test_params = test_params} thy  | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
389  | 
        | SOME _ => error ("Type " ^ tc ^ " already associated with code"))
 | 
| 
 
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
 
berghofe 
parents: 
18281 
diff
changeset
 | 
390  | 
    | _ => error ("Not a type constructor: " ^ s)
 | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
391  | 
end;  | 
| 11520 | 392  | 
|
| 
21098
 
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
 
haftmann 
parents: 
21056 
diff
changeset
 | 
393  | 
fun get_assoc_type thy = AList.lookup (op =) ((#types o CodegenData.get) thy);  | 
| 11546 | 394  | 
|
| 11520 | 395  | 
|
396  | 
(**** make valid ML identifiers ****)  | 
|
397  | 
||
| 14858 | 398  | 
fun is_ascii_letdig x = Symbol.is_ascii_letter x orelse  | 
399  | 
Symbol.is_ascii_digit x orelse Symbol.is_ascii_quasi x;  | 
|
400  | 
||
401  | 
fun dest_sym s = (case split_last (snd (take_prefix (equal "\\") (explode s))) of  | 
|
402  | 
    ("<" :: "^" :: xs, ">") => (true, implode xs)
 | 
|
403  | 
  | ("<" :: xs, ">") => (false, implode xs)
 | 
|
404  | 
| _ => sys_error "dest_sym");  | 
|
| 16458 | 405  | 
|
| 14858 | 406  | 
fun mk_id s = if s = "" then "" else  | 
| 11520 | 407  | 
let  | 
| 14858 | 408  | 
fun check_str [] = []  | 
409  | 
| check_str xs = (case take_prefix is_ascii_letdig xs of  | 
|
410  | 
([], " " :: zs) => check_str zs  | 
|
411  | 
| ([], z :: zs) =>  | 
|
412  | 
if size z = 1 then string_of_int (ord z) :: check_str zs  | 
|
413  | 
else (case dest_sym z of  | 
|
414  | 
(true, "isub") => check_str zs  | 
|
415  | 
| (true, "isup") => "" :: check_str zs  | 
|
416  | 
| (ctrl, s') => (if ctrl then "ctrl_" ^ s' else s') :: check_str zs)  | 
|
417  | 
| (ys, zs) => implode ys :: check_str zs);  | 
|
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
418  | 
val s' = space_implode "_" (maps (check_str o Symbol.explode) (NameSpace.explode s))  | 
| 11520 | 419  | 
in  | 
| 14858 | 420  | 
if Symbol.is_ascii_letter (hd (explode s')) then s' else "id_" ^ s'  | 
| 11520 | 421  | 
end;  | 
422  | 
||
| 17144 | 423  | 
fun mk_long_id (p as (tab, used)) module s =  | 
| 16649 | 424  | 
let  | 
| 17144 | 425  | 
fun find_name [] = sys_error "mk_long_id"  | 
426  | 
| find_name (ys :: yss) =  | 
|
427  | 
let  | 
|
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
428  | 
val s' = NameSpace.implode ys  | 
| 17144 | 429  | 
val s'' = NameSpace.append module s'  | 
| 17412 | 430  | 
in case Symtab.lookup used s'' of  | 
| 17261 | 431  | 
NONE => ((module, s'),  | 
| 17412 | 432  | 
(Symtab.update_new (s, (module, s')) tab,  | 
433  | 
Symtab.update_new (s'', ()) used))  | 
|
| 17144 | 434  | 
| SOME _ => find_name yss  | 
435  | 
end  | 
|
| 17412 | 436  | 
in case Symtab.lookup tab s of  | 
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
437  | 
NONE => find_name (Library.suffixes1 (NameSpace.explode s))  | 
| 17144 | 438  | 
| SOME name => (name, p)  | 
| 16649 | 439  | 
end;  | 
440  | 
||
| 17144 | 441  | 
(* module: module name for caller *)  | 
442  | 
(* module': module name for callee *)  | 
|
443  | 
(* if caller and callee reside in different modules, use qualified access *)  | 
|
| 16649 | 444  | 
|
| 17144 | 445  | 
fun mk_qual_id module (module', s) =  | 
446  | 
if module = module' orelse module' = "" then s else module' ^ "." ^ s;  | 
|
447  | 
||
448  | 
fun mk_const_id module cname (gr, (tab1, tab2)) =  | 
|
| 16649 | 449  | 
let  | 
| 17144 | 450  | 
val ((module, s), tab1') = mk_long_id tab1 module cname  | 
451  | 
val s' = mk_id s;  | 
|
| 
21478
 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 
wenzelm 
parents: 
21098 
diff
changeset
 | 
452  | 
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s'  | 
| 17144 | 453  | 
in ((gr, (tab1', tab2)), (module, s'')) end;  | 
| 
13073
 
cc9d7f403a4b
mk_const_id now checks for clashes with reserved ML identifiers.
 
berghofe 
parents: 
13003 
diff
changeset
 | 
454  | 
|
| 17144 | 455  | 
fun get_const_id cname (gr, (tab1, tab2)) =  | 
| 17412 | 456  | 
case Symtab.lookup (fst tab1) cname of  | 
| 17144 | 457  | 
    NONE => error ("get_const_id: no such constant: " ^ quote cname)
 | 
458  | 
| SOME (module, s) =>  | 
|
459  | 
let  | 
|
460  | 
val s' = mk_id s;  | 
|
| 
21478
 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 
wenzelm 
parents: 
21098 
diff
changeset
 | 
461  | 
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s'  | 
| 17144 | 462  | 
in (module, s'') end;  | 
463  | 
||
464  | 
fun mk_type_id module tyname (gr, (tab1, tab2)) =  | 
|
| 16649 | 465  | 
let  | 
| 17144 | 466  | 
val ((module, s), tab2') = mk_long_id tab2 module tyname  | 
467  | 
val s' = mk_id s;  | 
|
| 
21478
 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 
wenzelm 
parents: 
21098 
diff
changeset
 | 
468  | 
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s'  | 
| 17144 | 469  | 
in ((gr, (tab1, tab2')), (module, s'')) end;  | 
| 16649 | 470  | 
|
| 17144 | 471  | 
fun get_type_id tyname (gr, (tab1, tab2)) =  | 
| 17412 | 472  | 
case Symtab.lookup (fst tab2) tyname of  | 
| 17144 | 473  | 
    NONE => error ("get_type_id: no such type: " ^ quote tyname)
 | 
474  | 
| SOME (module, s) =>  | 
|
475  | 
let  | 
|
476  | 
val s' = mk_id s;  | 
|
| 
21478
 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 
wenzelm 
parents: 
21098 
diff
changeset
 | 
477  | 
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s'  | 
| 17144 | 478  | 
in (module, s'') end;  | 
479  | 
||
480  | 
fun get_type_id' f tyname tab = apsnd f (get_type_id tyname tab);  | 
|
481  | 
||
482  | 
fun get_node (gr, x) k = Graph.get_node gr k;  | 
|
483  | 
fun add_edge e (gr, x) = (Graph.add_edge e gr, x);  | 
|
484  | 
fun add_edge_acyclic e (gr, x) = (Graph.add_edge_acyclic e gr, x);  | 
|
485  | 
fun del_nodes ks (gr, x) = (Graph.del_nodes ks gr, x);  | 
|
486  | 
fun map_node k f (gr, x) = (Graph.map_node k f gr, x);  | 
|
487  | 
fun new_node p (gr, x) = (Graph.new_node p gr, x);  | 
|
| 16649 | 488  | 
|
| 18281 | 489  | 
fun theory_of_type s thy =  | 
| 16649 | 490  | 
if Sign.declared_tyname thy s  | 
| 19473 | 491  | 
then SOME (the_default thy (get_first (theory_of_type s) (Theory.parents_of thy)))  | 
| 16649 | 492  | 
else NONE;  | 
493  | 
||
| 18281 | 494  | 
fun theory_of_const s thy =  | 
| 16649 | 495  | 
if Sign.declared_const thy s  | 
| 19473 | 496  | 
then SOME (the_default thy (get_first (theory_of_const s) (Theory.parents_of thy)))  | 
| 16649 | 497  | 
else NONE;  | 
498  | 
||
499  | 
fun thyname_of_type s thy = (case theory_of_type s thy of  | 
|
500  | 
    NONE => error ("thyname_of_type: no such type: " ^ quote s)
 | 
|
501  | 
| SOME thy' => Context.theory_name thy');  | 
|
502  | 
||
503  | 
fun thyname_of_const s thy = (case theory_of_const s thy of  | 
|
504  | 
    NONE => error ("thyname_of_const: no such constant: " ^ quote s)
 | 
|
505  | 
| SOME thy' => Context.theory_name thy');  | 
|
| 11520 | 506  | 
|
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
507  | 
fun rename_terms ts =  | 
| 11520 | 508  | 
let  | 
| 23178 | 509  | 
val names = List.foldr add_term_names  | 
| 20286 | 510  | 
(map (fst o fst) (rev (fold Term.add_vars ts []))) ts;  | 
| 
21478
 
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
 
wenzelm 
parents: 
21098 
diff
changeset
 | 
511  | 
val reserved = filter ML_Syntax.is_reserved names;  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
512  | 
val (illegal, alt_names) = split_list (map_filter (fn s =>  | 
| 15531 | 513  | 
let val s' = mk_id s in if s = s' then NONE else SOME (s, s') end) names)  | 
| 14858 | 514  | 
val ps = (reserved @ illegal) ~~  | 
| 
20071
 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 
wenzelm 
parents: 
19806 
diff
changeset
 | 
515  | 
Name.variant_list names (map (suffix "'") reserved @ alt_names);  | 
| 11520 | 516  | 
|
| 17521 | 517  | 
fun rename_id s = AList.lookup (op =) ps s |> the_default s;  | 
| 14858 | 518  | 
|
519  | 
fun rename (Var ((a, i), T)) = Var ((rename_id a, i), T)  | 
|
520  | 
| rename (Free (a, T)) = Free (rename_id a, T)  | 
|
| 11520 | 521  | 
| rename (Abs (s, T, t)) = Abs (s, T, rename t)  | 
522  | 
| rename (t $ u) = rename t $ rename u  | 
|
523  | 
| rename t = t;  | 
|
524  | 
in  | 
|
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
525  | 
map rename ts  | 
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
526  | 
end;  | 
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
527  | 
|
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
528  | 
val rename_term = hd o rename_terms o single;  | 
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
529  | 
|
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
530  | 
|
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
531  | 
(**** retrieve definition of constant ****)  | 
| 
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
532  | 
|
| 
24908
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
533  | 
fun is_instance T1 T2 =  | 
| 
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
534  | 
Type.raw_instance (T1, Logic.legacy_varifyT T2);  | 
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
535  | 
|
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
536  | 
fun get_assoc_code thy (s, T) = Option.map snd (find_first (fn ((s', T'), _) =>  | 
| 
24908
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
537  | 
s = s' andalso is_instance T T') (#consts (CodegenData.get thy)));  | 
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
538  | 
|
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
539  | 
fun get_aux_code xs = map_filter (fn (m, code) =>  | 
| 20665 | 540  | 
if m = "" orelse member (op =) (!mode) m then SOME code else NONE) xs;  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
541  | 
|
| 16649 | 542  | 
fun mk_deftab thy =  | 
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
543  | 
let  | 
| 
22680
 
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
 
wenzelm 
parents: 
22596 
diff
changeset
 | 
544  | 
val axmss = map (fn thy' => (Context.theory_name thy', Theory.axiom_table thy'))  | 
| 16649 | 545  | 
(thy :: Theory.ancestors_of thy);  | 
| 15261 | 546  | 
fun prep_def def = (case preprocess thy [def] of  | 
| 16649 | 547  | 
[def'] => prop_of def' | _ => error "mk_deftab: bad preprocessor");  | 
| 15261 | 548  | 
fun dest t =  | 
549  | 
let  | 
|
550  | 
val (lhs, rhs) = Logic.dest_equals t;  | 
|
551  | 
val (c, args) = strip_comb lhs;  | 
|
| 16649 | 552  | 
val (s, T) = dest_Const c  | 
553  | 
in if forall is_Var args then SOME (s, (T, (args, rhs))) else NONE  | 
|
| 15531 | 554  | 
end handle TERM _ => NONE;  | 
| 21056 | 555  | 
fun add_def thyname (name, t) = (case dest t of  | 
556  | 
NONE => I  | 
|
| 
24908
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
557  | 
| SOME _ => (case dest (prep_def (Thm.get_axiom_i thy name)) of  | 
| 21056 | 558  | 
NONE => I  | 
559  | 
| SOME (s, (T, (args, rhs))) => Symtab.map_default (s, [])  | 
|
560  | 
(cons (T, (thyname, split_last (rename_terms (args @ [rhs])))))))  | 
|
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
561  | 
in  | 
| 21056 | 562  | 
fold (fn (thyname, axms) => Symtab.fold (add_def thyname) axms) axmss Symtab.empty  | 
| 11520 | 563  | 
end;  | 
564  | 
||
| 17412 | 565  | 
fun get_defn thy defs s T = (case Symtab.lookup defs s of  | 
| 16649 | 566  | 
NONE => NONE  | 
567  | 
| SOME ds =>  | 
|
| 
24908
 
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
 
wenzelm 
parents: 
24867 
diff
changeset
 | 
568  | 
let val i = find_index (is_instance T o fst) ds  | 
| 16649 | 569  | 
in if i >= 0 then  | 
570  | 
SOME (List.nth (ds, i), if length ds = 1 then NONE else SOME i)  | 
|
571  | 
else NONE  | 
|
572  | 
end);  | 
|
573  | 
||
| 11520 | 574  | 
|
| 12452 | 575  | 
(**** invoke suitable code generator for term / type ****)  | 
| 11520 | 576  | 
|
| 17144 | 577  | 
fun codegen_error (gr, _) dep s =  | 
578  | 
error (s ^ "\nrequired by:\n" ^ commas (Graph.all_succs gr [dep]));  | 
|
579  | 
||
580  | 
fun invoke_codegen thy defs dep module brack (gr, t) = (case get_first  | 
|
581  | 
(fn (_, f) => f thy defs gr dep module brack t) (#codegens (CodegenData.get thy)) of  | 
|
582  | 
      NONE => codegen_error gr dep ("Unable to generate code for term:\n" ^
 | 
|
583  | 
Sign.string_of_term thy t)  | 
|
| 15531 | 584  | 
| SOME x => x);  | 
| 12452 | 585  | 
|
| 17144 | 586  | 
fun invoke_tycodegen thy defs dep module brack (gr, T) = (case get_first  | 
587  | 
(fn (_, f) => f thy defs gr dep module brack T) (#tycodegens (CodegenData.get thy)) of  | 
|
588  | 
      NONE => codegen_error gr dep ("Unable to generate code for type:\n" ^
 | 
|
589  | 
Sign.string_of_typ thy T)  | 
|
| 15531 | 590  | 
| SOME x => x);  | 
| 11520 | 591  | 
|
592  | 
||
593  | 
(**** code generator for mixfix expressions ****)  | 
|
594  | 
||
595  | 
fun parens p = Pretty.block [Pretty.str "(", p, Pretty.str ")"];
 | 
|
596  | 
||
597  | 
fun pretty_fn [] p = [p]  | 
|
598  | 
  | pretty_fn (x::xs) p = Pretty.str ("fn " ^ x ^ " =>") ::
 | 
|
599  | 
Pretty.brk 1 :: pretty_fn xs p;  | 
|
600  | 
||
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
601  | 
fun pretty_mixfix _ _ [] [] _ = []  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
602  | 
| pretty_mixfix module module' (Arg :: ms) (p :: ps) qs =  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
603  | 
p :: pretty_mixfix module module' ms ps qs  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
604  | 
| pretty_mixfix module module' (Ignore :: ms) ps qs =  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
605  | 
pretty_mixfix module module' ms ps qs  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
606  | 
| pretty_mixfix module module' (Module :: ms) ps qs =  | 
| 17144 | 607  | 
(if module <> module'  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
608  | 
then cons (Pretty.str (module' ^ ".")) else I)  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
609  | 
(pretty_mixfix module module' ms ps qs)  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
610  | 
| pretty_mixfix module module' (Pretty p :: ms) ps qs =  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
611  | 
p :: pretty_mixfix module module' ms ps qs  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
612  | 
| pretty_mixfix module module' (Quote _ :: ms) ps (q :: qs) =  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
613  | 
q :: pretty_mixfix module module' ms ps qs;  | 
| 11520 | 614  | 
|
| 18102 | 615  | 
fun replace_quotes [] [] = []  | 
616  | 
| replace_quotes xs (Arg :: ms) =  | 
|
617  | 
Arg :: replace_quotes xs ms  | 
|
618  | 
| replace_quotes xs (Ignore :: ms) =  | 
|
619  | 
Ignore :: replace_quotes xs ms  | 
|
620  | 
| replace_quotes xs (Module :: ms) =  | 
|
621  | 
Module :: replace_quotes xs ms  | 
|
622  | 
| replace_quotes xs (Pretty p :: ms) =  | 
|
623  | 
Pretty p :: replace_quotes xs ms  | 
|
624  | 
| replace_quotes (x::xs) (Quote _ :: ms) =  | 
|
625  | 
Quote x :: replace_quotes xs ms;  | 
|
626  | 
||
| 11520 | 627  | 
|
| 12452 | 628  | 
(**** default code generators ****)  | 
| 11520 | 629  | 
|
630  | 
fun eta_expand t ts i =  | 
|
631  | 
let  | 
|
| 24456 | 632  | 
val k = length ts;  | 
633  | 
val Ts = Library.drop (k, binder_types (fastype_of t));  | 
|
634  | 
val j = i - k  | 
|
| 11520 | 635  | 
in  | 
| 23178 | 636  | 
    List.foldr (fn (T, t) => Abs ("x", T, t))
 | 
| 
15574
 
b1d1b5bfc464
Removed practically all references to Library.foldr.
 
skalberg 
parents: 
15570 
diff
changeset
 | 
637  | 
(list_comb (t, ts @ map Bound (j-1 downto 0))) (Library.take (j, Ts))  | 
| 11520 | 638  | 
end;  | 
639  | 
||
640  | 
fun mk_app _ p [] = p  | 
|
641  | 
| mk_app brack p ps = if brack then  | 
|
642  | 
       Pretty.block (Pretty.str "(" ::
 | 
|
643  | 
separate (Pretty.brk 1) (p :: ps) @ [Pretty.str ")"])  | 
|
644  | 
else Pretty.block (separate (Pretty.brk 1) (p :: ps));  | 
|
645  | 
||
| 
20071
 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 
wenzelm 
parents: 
19806 
diff
changeset
 | 
646  | 
fun new_names t xs = Name.variant_list  | 
| 
 
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
 
wenzelm 
parents: 
19806 
diff
changeset
 | 
647  | 
(map (fst o fst o dest_Var) (term_vars t) union  | 
| 21719 | 648  | 
add_term_names (t, ML_Syntax.reserved_names)) (map mk_id xs);  | 
| 11520 | 649  | 
|
650  | 
fun new_name t x = hd (new_names t [x]);  | 
|
651  | 
||
| 20665 | 652  | 
fun if_library x y = if member (op =) (!mode) "library" then x else y;  | 
| 17144 | 653  | 
|
654  | 
fun default_codegen thy defs gr dep module brack t =  | 
|
| 11520 | 655  | 
let  | 
656  | 
val (u, ts) = strip_comb t;  | 
|
| 17144 | 657  | 
fun codegens brack = foldl_map (invoke_codegen thy defs dep module brack)  | 
| 11520 | 658  | 
in (case u of  | 
| 14105 | 659  | 
Var ((s, i), T) =>  | 
660  | 
let  | 
|
661  | 
val (gr', ps) = codegens true (gr, ts);  | 
|
| 17144 | 662  | 
val (gr'', _) = invoke_tycodegen thy defs dep module false (gr', T)  | 
| 15531 | 663  | 
in SOME (gr'', mk_app brack (Pretty.str (s ^  | 
| 11520 | 664  | 
(if i=0 then "" else string_of_int i))) ps)  | 
665  | 
end  | 
|
666  | 
||
| 14105 | 667  | 
| Free (s, T) =>  | 
668  | 
let  | 
|
669  | 
val (gr', ps) = codegens true (gr, ts);  | 
|
| 17144 | 670  | 
val (gr'', _) = invoke_tycodegen thy defs dep module false (gr', T)  | 
| 15531 | 671  | 
in SOME (gr'', mk_app brack (Pretty.str s) ps) end  | 
| 11520 | 672  | 
|
673  | 
| Const (s, T) =>  | 
|
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
674  | 
(case get_assoc_code thy (s, T) of  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
675  | 
SOME (ms, aux) =>  | 
| 18281 | 676  | 
let val i = num_args_of ms  | 
| 11520 | 677  | 
in if length ts < i then  | 
| 17144 | 678  | 
default_codegen thy defs gr dep module brack (eta_expand u ts i)  | 
| 11520 | 679  | 
else  | 
680  | 
let  | 
|
| 12452 | 681  | 
val (ts1, ts2) = args_of ms ts;  | 
682  | 
val (gr1, ps1) = codegens false (gr, ts1);  | 
|
683  | 
val (gr2, ps2) = codegens true (gr1, ts2);  | 
|
684  | 
val (gr3, ps3) = codegens false (gr2, quotes_of ms);  | 
|
| 17549 | 685  | 
val (gr4, _) = invoke_tycodegen thy defs dep module false  | 
686  | 
(gr3, funpow (length ts) (hd o tl o snd o dest_Type) T);  | 
|
| 17144 | 687  | 
val (module', suffix) = (case get_defn thy defs s T of  | 
688  | 
NONE => (if_library (thyname_of_const s thy) module, "")  | 
|
689  | 
| SOME ((U, (module', _)), NONE) =>  | 
|
690  | 
(if_library module' module, "")  | 
|
691  | 
| SOME ((U, (module', _)), SOME i) =>  | 
|
692  | 
(if_library module' module, " def" ^ string_of_int i));  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
693  | 
val node_id = s ^ suffix;  | 
| 17144 | 694  | 
fun p module' = mk_app brack (Pretty.block  | 
695  | 
(pretty_mixfix module module' ms ps1 ps3)) ps2  | 
|
| 17549 | 696  | 
in SOME (case try (get_node gr4) node_id of  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
697  | 
NONE => (case get_aux_code aux of  | 
| 17549 | 698  | 
[] => (gr4, p module)  | 
| 17144 | 699  | 
| xs => (add_edge (node_id, dep) (new_node  | 
| 17549 | 700  | 
(node_id, (NONE, module', space_implode "\n" xs ^ "\n")) gr4),  | 
| 17144 | 701  | 
p module'))  | 
702  | 
| SOME (_, module'', _) =>  | 
|
| 17549 | 703  | 
(add_edge (node_id, dep) gr4, p module''))  | 
| 11520 | 704  | 
end  | 
705  | 
end  | 
|
| 16649 | 706  | 
| NONE => (case get_defn thy defs s T of  | 
| 15531 | 707  | 
NONE => NONE  | 
| 17144 | 708  | 
| SOME ((U, (thyname, (args, rhs))), k) =>  | 
| 11520 | 709  | 
let  | 
| 17144 | 710  | 
val module' = if_library thyname module;  | 
711  | 
val suffix = (case k of NONE => "" | SOME i => " def" ^ string_of_int i);  | 
|
| 16649 | 712  | 
val node_id = s ^ suffix;  | 
| 17144 | 713  | 
val (gr', (ps, def_id)) = codegens true (gr, ts) |>>>  | 
714  | 
mk_const_id module' (s ^ suffix);  | 
|
715  | 
val p = mk_app brack (Pretty.str (mk_qual_id module def_id)) ps  | 
|
716  | 
in SOME (case try (get_node gr') node_id of  | 
|
717  | 
NONE =>  | 
|
718  | 
let  | 
|
719  | 
                     val _ = message ("expanding definition of " ^ s);
 | 
|
| 
18788
 
4f4ed2a01152
Fixed bug in code generator for primitive definitions that
 
berghofe 
parents: 
18728 
diff
changeset
 | 
720  | 
val (Ts, _) = strip_type U;  | 
| 17144 | 721  | 
val (args', rhs') =  | 
722  | 
if not (null args) orelse null Ts then (args, rhs) else  | 
|
723  | 
let val v = Free (new_name rhs "x", hd Ts)  | 
|
724  | 
in ([v], betapply (rhs, v)) end;  | 
|
725  | 
val (gr1, p') = invoke_codegen thy defs node_id module' false  | 
|
726  | 
(add_edge (node_id, dep)  | 
|
727  | 
(new_node (node_id, (NONE, "", "")) gr'), rhs');  | 
|
728  | 
val (gr2, xs) = codegens false (gr1, args');  | 
|
729  | 
val (gr3, _) = invoke_tycodegen thy defs dep module false (gr2, T);  | 
|
730  | 
val (gr4, ty) = invoke_tycodegen thy defs node_id module' false (gr3, U);  | 
|
731  | 
in (map_node node_id (K (NONE, module', Pretty.string_of  | 
|
732  | 
(Pretty.block (separate (Pretty.brk 1)  | 
|
733  | 
(if null args' then  | 
|
734  | 
                            [Pretty.str ("val " ^ snd def_id ^ " :"), ty]
 | 
|
735  | 
                          else Pretty.str ("fun " ^ snd def_id) :: xs) @
 | 
|
736  | 
[Pretty.str " =", Pretty.brk 1, p', Pretty.str ";"])) ^ "\n\n")) gr4,  | 
|
737  | 
p)  | 
|
738  | 
end  | 
|
739  | 
| SOME _ => (add_edge (node_id, dep) gr', p))  | 
|
| 11520 | 740  | 
end))  | 
741  | 
||
742  | 
| Abs _ =>  | 
|
743  | 
let  | 
|
744  | 
val (bs, Ts) = ListPair.unzip (strip_abs_vars u);  | 
|
745  | 
val t = strip_abs_body u  | 
|
746  | 
val bs' = new_names t bs;  | 
|
| 12452 | 747  | 
val (gr1, ps) = codegens true (gr, ts);  | 
| 17144 | 748  | 
val (gr2, p) = invoke_codegen thy defs dep module false  | 
| 12452 | 749  | 
(gr1, subst_bounds (map Free (rev (bs' ~~ Ts)), t));  | 
| 11520 | 750  | 
in  | 
| 15531 | 751  | 
        SOME (gr2, mk_app brack (Pretty.block (Pretty.str "(" :: pretty_fn bs' p @
 | 
| 11520 | 752  | 
[Pretty.str ")"])) ps)  | 
753  | 
end  | 
|
754  | 
||
| 15531 | 755  | 
| _ => NONE)  | 
| 11520 | 756  | 
end;  | 
757  | 
||
| 17144 | 758  | 
fun default_tycodegen thy defs gr dep module brack (TVar ((s, i), _)) =  | 
| 15531 | 759  | 
SOME (gr, Pretty.str (s ^ (if i = 0 then "" else string_of_int i)))  | 
| 17144 | 760  | 
| default_tycodegen thy defs gr dep module brack (TFree (s, _)) =  | 
| 16649 | 761  | 
SOME (gr, Pretty.str s)  | 
| 17144 | 762  | 
| default_tycodegen thy defs gr dep module brack (Type (s, Ts)) =  | 
| 17521 | 763  | 
(case AList.lookup (op =) ((#types o CodegenData.get) thy) s of  | 
| 15531 | 764  | 
NONE => NONE  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
765  | 
| SOME (ms, aux) =>  | 
| 12452 | 766  | 
let  | 
767  | 
val (gr', ps) = foldl_map  | 
|
| 17144 | 768  | 
(invoke_tycodegen thy defs dep module false)  | 
| 16649 | 769  | 
(gr, fst (args_of ms Ts));  | 
| 12452 | 770  | 
val (gr'', qs) = foldl_map  | 
| 17144 | 771  | 
(invoke_tycodegen thy defs dep module false)  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
772  | 
(gr', quotes_of ms);  | 
| 17144 | 773  | 
val module' = if_library (thyname_of_type s thy) module;  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
774  | 
val node_id = s ^ " (type)";  | 
| 17144 | 775  | 
fun p module' = Pretty.block (pretty_mixfix module module' ms ps qs)  | 
776  | 
in SOME (case try (get_node gr'') node_id of  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
777  | 
NONE => (case get_aux_code aux of  | 
| 17144 | 778  | 
[] => (gr'', p module')  | 
779  | 
| xs => (fst (mk_type_id module' s  | 
|
780  | 
(add_edge (node_id, dep) (new_node (node_id,  | 
|
781  | 
(NONE, module', space_implode "\n" xs ^ "\n")) gr''))),  | 
|
782  | 
p module'))  | 
|
783  | 
| SOME (_, module'', _) =>  | 
|
784  | 
(add_edge (node_id, dep) gr'', p module''))  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
785  | 
end);  | 
| 12452 | 786  | 
|
| 24456 | 787  | 
val _ = Context.add_setup  | 
788  | 
(add_codegen "default" default_codegen #>  | 
|
789  | 
add_tycodegen "default" default_tycodegen);  | 
|
790  | 
||
791  | 
||
| 16649 | 792  | 
fun mk_struct name s = "structure " ^ name ^ " =\nstruct\n\n" ^ s ^ "end;\n";  | 
793  | 
||
| 17521 | 794  | 
fun add_to_module name s = AList.map_entry (op =) name (suffix s);  | 
| 16649 | 795  | 
|
| 17144 | 796  | 
fun output_code gr module xs =  | 
| 16649 | 797  | 
let  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
798  | 
val code = map_filter (fn s =>  | 
| 17144 | 799  | 
let val c as (_, module', _) = Graph.get_node gr s  | 
800  | 
in if module = "" orelse module = module' then SOME (s, c) else NONE end)  | 
|
801  | 
(rev (Graph.all_preds gr xs));  | 
|
| 16649 | 802  | 
fun string_of_cycle (a :: b :: cs) =  | 
803  | 
let val SOME (x, y) = get_first (fn (x, (_, a', _)) =>  | 
|
804  | 
if a = a' then Option.map (pair x)  | 
|
| 21056 | 805  | 
(find_first (equal b o #2 o Graph.get_node gr)  | 
| 16649 | 806  | 
(Graph.imm_succs gr x))  | 
807  | 
else NONE) code  | 
|
808  | 
in x ^ " called by " ^ y ^ "\n" ^ string_of_cycle (b :: cs) end  | 
|
809  | 
| string_of_cycle _ = ""  | 
|
810  | 
in  | 
|
| 17144 | 811  | 
if module = "" then  | 
| 16649 | 812  | 
let  | 
| 
19046
 
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
 
wenzelm 
parents: 
18977 
diff
changeset
 | 
813  | 
val modules = distinct (op =) (map (#2 o snd) code);  | 
| 23178 | 814  | 
val mod_gr = fold_rev Graph.add_edge_acyclic  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
815  | 
(maps (fn (s, (_, module, _)) => map (pair module)  | 
| 17144 | 816  | 
(filter_out (equal module) (map (#2 o Graph.get_node gr)  | 
| 23178 | 817  | 
(Graph.imm_succs gr s)))) code)  | 
818  | 
(fold_rev (Graph.new_node o rpair ()) modules Graph.empty);  | 
|
| 16649 | 819  | 
val modules' =  | 
820  | 
rev (Graph.all_preds mod_gr (map (#2 o Graph.get_node gr) xs))  | 
|
821  | 
in  | 
|
| 23178 | 822  | 
List.foldl (fn ((_, (_, module, s)), ms) => add_to_module module s ms)  | 
| 16649 | 823  | 
(map (rpair "") modules') code  | 
824  | 
end handle Graph.CYCLES (cs :: _) =>  | 
|
825  | 
        error ("Cyclic dependency of modules:\n" ^ commas cs ^
 | 
|
826  | 
"\n" ^ string_of_cycle cs)  | 
|
| 17144 | 827  | 
else [(module, implode (map (#3 o snd) code))]  | 
| 16649 | 828  | 
end;  | 
| 11520 | 829  | 
|
| 17144 | 830  | 
fun gen_generate_code prep_term thy modules module =  | 
| 24634 | 831  | 
PrintMode.setmp [] (Pretty.setmp_margin (!margin) (fn xs =>  | 
| 11520 | 832  | 
let  | 
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
833  | 
val _ = (module <> "" orelse  | 
| 20665 | 834  | 
member (op =) (!mode) "library" andalso forall (equal "" o fst) xs)  | 
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
835  | 
orelse error "missing module name";  | 
| 17144 | 836  | 
val graphs = get_modules thy;  | 
| 16649 | 837  | 
val defs = mk_deftab thy;  | 
| 17144 | 838  | 
    val gr = new_node ("<Top>", (NONE, module, ""))
 | 
| 23178 | 839  | 
(List.foldl (fn ((gr, (tab1, tab2)), (gr', (tab1', tab2'))) =>  | 
| 17144 | 840  | 
(Graph.merge (fn ((_, module, _), (_, module', _)) =>  | 
841  | 
module = module') (gr, gr'),  | 
|
842  | 
(merge_nametabs (tab1, tab1'), merge_nametabs (tab2, tab2')))) emptygr  | 
|
| 17412 | 843  | 
(map (fn s => case Symtab.lookup graphs s of  | 
| 17144 | 844  | 
                NONE => error ("Undefined code module: " ^ s)
 | 
845  | 
| SOME gr => gr) modules))  | 
|
| 
23655
 
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
 
wenzelm 
parents: 
23178 
diff
changeset
 | 
846  | 
      handle Graph.DUP k => error ("Duplicate code for " ^ k);
 | 
| 16649 | 847  | 
fun expand (t as Abs _) = t  | 
848  | 
| expand t = (case fastype_of t of  | 
|
849  | 
          Type ("fun", [T, U]) => Abs ("x", T, t $ Bound 0) | _ => t);
 | 
|
| 11520 | 850  | 
val (gr', ps) = foldl_map (fn (gr, (s, t)) => apsnd (pair s)  | 
| 17144 | 851  | 
(invoke_codegen thy defs "<Top>" module false (gr, t)))  | 
| 17549 | 852  | 
(gr, map (apsnd (expand o preprocess_term thy o prep_term thy)) xs);  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
853  | 
val code = map_filter  | 
| 17144 | 854  | 
      (fn ("", _) => NONE
 | 
855  | 
| (s', p) => SOME (Pretty.string_of (Pretty.block  | 
|
856  | 
          [Pretty.str ("val " ^ s' ^ " ="), Pretty.brk 1, p, Pretty.str ";"]))) ps;
 | 
|
857  | 
val code' = space_implode "\n\n" code ^ "\n\n";  | 
|
858  | 
val code'' =  | 
|
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
859  | 
map_filter (fn (name, s) =>  | 
| 20665 | 860  | 
if member (op =) (!mode) "library" andalso name = module andalso null code  | 
| 17144 | 861  | 
then NONE  | 
862  | 
else SOME (name, mk_struct name s))  | 
|
863  | 
((if null code then I  | 
|
864  | 
else add_to_module module code')  | 
|
865  | 
(output_code (fst gr') (if_library "" module) ["<Top>"]))  | 
|
| 16649 | 866  | 
in  | 
| 17144 | 867  | 
(code'', del_nodes ["<Top>"] gr')  | 
| 16649 | 868  | 
end));  | 
| 11520 | 869  | 
|
| 
22680
 
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
 
wenzelm 
parents: 
22596 
diff
changeset
 | 
870  | 
val generate_code_i = gen_generate_code Sign.cert_term;  | 
| 
 
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
 
wenzelm 
parents: 
22596 
diff
changeset
 | 
871  | 
val generate_code = gen_generate_code Sign.read_term;  | 
| 11520 | 872  | 
|
| 12452 | 873  | 
|
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
874  | 
(**** Reflection ****)  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
875  | 
|
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
876  | 
val strip_tname = implode o tl o explode;  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
877  | 
|
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
878  | 
fun pretty_list xs = Pretty.block (Pretty.str "[" ::  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
879  | 
flat (separate [Pretty.str ",", Pretty.brk 1] (map single xs)) @  | 
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
880  | 
[Pretty.str "]"]);  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
881  | 
|
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
882  | 
fun mk_type p (TVar ((s, i), _)) = Pretty.str  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
883  | 
(strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "T")  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
884  | 
| mk_type p (TFree (s, _)) = Pretty.str (strip_tname s ^ "T")  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
885  | 
| mk_type p (Type (s, Ts)) = (if p then parens else I) (Pretty.block  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
886  | 
      [Pretty.str "Type", Pretty.brk 1, Pretty.str ("(\"" ^ s ^ "\","),
 | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
887  | 
Pretty.brk 1, pretty_list (map (mk_type false) Ts), Pretty.str ")"]);  | 
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
888  | 
|
| 17144 | 889  | 
fun mk_term_of gr module p (TVar ((s, i), _)) = Pretty.str  | 
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
890  | 
(strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "F")  | 
| 17144 | 891  | 
| mk_term_of gr module p (TFree (s, _)) = Pretty.str (strip_tname s ^ "F")  | 
892  | 
| mk_term_of gr module p (Type (s, Ts)) = (if p then parens else I)  | 
|
| 16649 | 893  | 
(Pretty.block (separate (Pretty.brk 1)  | 
| 17144 | 894  | 
(Pretty.str (mk_qual_id module  | 
895  | 
(get_type_id' (fn s' => "term_of_" ^ s') s gr)) ::  | 
|
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
896  | 
maps (fn T =>  | 
| 
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
897  | 
[mk_term_of gr module true T, mk_type true T]) Ts)));  | 
| 
13753
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
898  | 
|
| 
 
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
 
berghofe 
parents: 
13731 
diff
changeset
 | 
899  | 
|
| 14105 | 900  | 
(**** Test data generators ****)  | 
901  | 
||
| 17144 | 902  | 
fun mk_gen gr module p xs a (TVar ((s, i), _)) = Pretty.str  | 
| 14105 | 903  | 
(strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "G")  | 
| 17144 | 904  | 
| mk_gen gr module p xs a (TFree (s, _)) = Pretty.str (strip_tname s ^ "G")  | 
905  | 
| mk_gen gr module p xs a (Type (s, Ts)) = (if p then parens else I)  | 
|
| 16649 | 906  | 
(Pretty.block (separate (Pretty.brk 1)  | 
| 17144 | 907  | 
(Pretty.str (mk_qual_id module (get_type_id' (fn s' => "gen_" ^ s') s gr) ^  | 
| 20665 | 908  | 
(if member (op =) xs s then "'" else "")) ::  | 
| 17144 | 909  | 
map (mk_gen gr module true xs a) Ts @  | 
| 20665 | 910  | 
(if member (op =) xs s then [Pretty.str a] else []))));  | 
| 14105 | 911  | 
|
| 15531 | 912  | 
val test_fn : (int -> (string * term) list option) ref = ref (fn _ => NONE);  | 
| 14105 | 913  | 
|
| 24456 | 914  | 
fun test_term thy quiet sz i t =  | 
| 14105 | 915  | 
let  | 
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
916  | 
val _ = (null (term_tvars t) andalso null (term_tfrees t)) orelse  | 
| 
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
917  | 
error "Term to be tested contains type variables";  | 
| 
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
918  | 
val _ = null (term_vars t) orelse  | 
| 
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
919  | 
error "Term to be tested contains schematic variables";  | 
| 14105 | 920  | 
val frees = map dest_Free (term_frees t);  | 
| 17549 | 921  | 
val frees' = frees ~~  | 
922  | 
map (fn i => "arg" ^ string_of_int i) (1 upto length frees);  | 
|
| 17144 | 923  | 
val (code, gr) = setmp mode ["term_of", "test"]  | 
924  | 
      (generate_code_i thy [] "Generated") [("testf", list_abs_free (frees, t))];
 | 
|
| 24634 | 925  | 
val s = PrintMode.setmp [] (fn () => "structure TestTerm =\nstruct\n\n" ^  | 
| 17144 | 926  | 
space_implode "\n" (map snd code) ^  | 
| 16649 | 927  | 
"\nopen Generated;\n\n" ^ Pretty.string_of  | 
| 14105 | 928  | 
(Pretty.block [Pretty.str "val () = Codegen.test_fn :=",  | 
| 17549 | 929  | 
          Pretty.brk 1, Pretty.str ("(fn i =>"), Pretty.brk 1,
 | 
| 14105 | 930  | 
Pretty.blk (0, [Pretty.str "let", Pretty.brk 1,  | 
| 17549 | 931  | 
Pretty.blk (0, separate Pretty.fbrk (map (fn ((s, T), s') =>  | 
932  | 
              Pretty.block [Pretty.str ("val " ^ s' ^ " ="), Pretty.brk 1,
 | 
|
| 17144 | 933  | 
mk_gen gr "Generated" false [] "" T, Pretty.brk 1,  | 
| 17549 | 934  | 
Pretty.str "i;"]) frees')),  | 
| 14105 | 935  | 
Pretty.brk 1, Pretty.str "in", Pretty.brk 1,  | 
936  | 
Pretty.block [Pretty.str "if ",  | 
|
| 17549 | 937  | 
mk_app false (Pretty.str "testf") (map (Pretty.str o snd) frees'),  | 
| 15531 | 938  | 
Pretty.brk 1, Pretty.str "then NONE",  | 
| 14105 | 939  | 
Pretty.brk 1, Pretty.str "else ",  | 
| 15531 | 940  | 
Pretty.block [Pretty.str "SOME ", Pretty.block (Pretty.str "[" ::  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
941  | 
flat (separate [Pretty.str ",", Pretty.brk 1]  | 
| 17549 | 942  | 
(map (fn ((s, T), s') => [Pretty.block  | 
| 21056 | 943  | 
                    [Pretty.str ("(" ^ quote (Symbol.escape s) ^ ","), Pretty.brk 1,
 | 
| 17144 | 944  | 
mk_app false (mk_term_of gr "Generated" false T)  | 
| 17549 | 945  | 
[Pretty.str s'], Pretty.str ")"]]) frees')) @  | 
| 14105 | 946  | 
[Pretty.str "]"])]],  | 
| 14980 | 947  | 
Pretty.brk 1, Pretty.str "end"]), Pretty.str ");"]) ^  | 
| 17638 | 948  | 
"\n\nend;\n") ();  | 
| 
24655
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
949  | 
val _ = ML_Context.use_mltext s false (SOME (Context.Theory thy));  | 
| 15531 | 950  | 
fun iter f k = if k > i then NONE  | 
| 
14135
 
f8a25218b423
test_term now handles Match exception raised in generated code.
 
berghofe 
parents: 
14110 
diff
changeset
 | 
951  | 
else (case (f () handle Match =>  | 
| 24456 | 952  | 
(if quiet then ()  | 
953  | 
else warning "Exception Match raised in generated code"; NONE)) of  | 
|
| 15531 | 954  | 
NONE => iter f (k+1) | SOME x => SOME x);  | 
955  | 
fun test k = if k > sz then NONE  | 
|
| 24456 | 956  | 
      else (if quiet then () else priority ("Test data size: " ^ string_of_int k);
 | 
| 14105 | 957  | 
case iter (fn () => !test_fn k) 1 of  | 
| 15531 | 958  | 
NONE => test (k+1) | SOME x => SOME x);  | 
| 17638 | 959  | 
in test 0 end;  | 
| 14105 | 960  | 
|
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
961  | 
fun test_goal quiet ({size, iterations, default_type}, tvinsts) i assms state =
 | 
| 14105 | 962  | 
let  | 
| 24456 | 963  | 
val thy = Proof.theory_of state;  | 
| 14105 | 964  | 
    fun strip (Const ("all", _) $ Abs (_, _, t)) = strip t
 | 
965  | 
| strip t = t;  | 
|
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
966  | 
val (_, (_, st)) = Proof.get_goal state;  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
967  | 
val (gi, frees) = Logic.goal_params (prop_of st) i;  | 
| 
20548
 
8ef25fe585a8
renamed Term.map_term_types to Term.map_types (cf. Term.fold_types);
 
wenzelm 
parents: 
20286 
diff
changeset
 | 
968  | 
val gi' = ObjectLogic.atomize_term thy (map_types  | 
| 
24655
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
969  | 
(map_type_tfree (fn p as (s, S) =>  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
970  | 
let val T = the_default (the_default (TFree p) default_type)  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
971  | 
(AList.lookup (op =) tvinsts s)  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
972  | 
in if Sign.of_sort thy (T, S) then T  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
973  | 
          else error ("Type " ^ Sign.string_of_typ thy T ^
 | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
974  | 
" to be substituted for variable " ^  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
975  | 
Sign.string_of_typ thy (TFree p) ^ "\ndoes not have sort " ^  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
976  | 
Sign.string_of_sort thy S)  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
977  | 
end))  | 
| 24456 | 978  | 
(Logic.list_implies (assms, subst_bounds (frees, strip gi))));  | 
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
979  | 
in test_term thy quiet size iterations gi' end;  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
980  | 
|
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
981  | 
fun pretty_counterex ctxt NONE = Pretty.str "No counterexamples found."  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
982  | 
| pretty_counterex ctxt (SOME cex) =  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
983  | 
Pretty.chunks (Pretty.str "Counterexample found:\n" ::  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
984  | 
map (fn (s, t) =>  | 
| 24920 | 985  | 
Pretty.block [Pretty.str (s ^ " ="), Pretty.brk 1, Syntax.pretty_term ctxt t]) cex);  | 
| 24456 | 986  | 
|
| 
25376
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
987  | 
val auto_quickcheck = ref false;  | 
| 
24805
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
988  | 
val auto_quickcheck_time_limit = ref 5000;  | 
| 24456 | 989  | 
|
990  | 
fun test_goal' int state =  | 
|
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
991  | 
let  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
992  | 
val ctxt = Proof.context_of state;  | 
| 
25376
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
993  | 
val assms = map term_of (Assumption.assms_of ctxt);  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
994  | 
val params = get_test_params (Proof.theory_of state);  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
995  | 
    fun report msg = (Output.priority ("Auto quickcheck: " ^ msg); state);
 | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
996  | 
fun test () =  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
997  | 
let  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
998  | 
val _ = Output.priority "Auto quickcheck ...";  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
999  | 
val res = TimeLimit.timeLimit (Time.fromMilliseconds (!auto_quickcheck_time_limit))  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1000  | 
(try (test_goal true (params, []) 1 assms)) state;  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1001  | 
in  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1002  | 
case res of  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1003  | 
NONE => report "failed."  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1004  | 
| SOME NONE => report "no counterexamples found."  | 
| 
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1005  | 
| SOME cex => Proof.goal_message (fn () => Pretty.chunks [Pretty.str "",  | 
| 25309 | 1006  | 
Pretty.markup Markup.hilite [pretty_counterex ctxt cex]]) state  | 
| 
25376
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1007  | 
end handle TimeLimit.TimeOut => report "timeout.";  | 
| 24456 | 1008  | 
in  | 
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1009  | 
if int andalso !auto_quickcheck andalso not (!Toplevel.quiet)  | 
| 
25376
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1010  | 
then test ()  | 
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1011  | 
else state  | 
| 
24805
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
1012  | 
end;  | 
| 24456 | 1013  | 
|
1014  | 
val _ = Context.add_setup  | 
|
1015  | 
(Context.theory_map (Specification.add_theorem_hook test_goal'));  | 
|
1016  | 
||
| 14105 | 1017  | 
|
| 17549 | 1018  | 
(**** Evaluator for terms ****)  | 
1019  | 
||
| 
24655
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
1020  | 
val eval_result = ref (fn () => Bound 0);  | 
| 17549 | 1021  | 
|
| 
25009
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1022  | 
fun eval_term thy t =  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1023  | 
let val e = PrintMode.setmp [] (fn () =>  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1024  | 
let  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1025  | 
val _ = (null (term_tvars t) andalso null (term_tfrees t)) orelse  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1026  | 
error "Term to be evaluated contains type variables";  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1027  | 
val _ = (null (term_vars t) andalso null (term_frees t)) orelse  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1028  | 
error "Term to be evaluated contains variables";  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1029  | 
val (code, gr) = setmp mode ["term_of"]  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1030  | 
(generate_code_i thy [] "Generated")  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1031  | 
        [("result", Abs ("x", TFree ("'a", []), t))];
 | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1032  | 
val s = "structure EvalTerm =\nstruct\n\n" ^  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1033  | 
space_implode "\n" (map snd code) ^  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1034  | 
"\nopen Generated;\n\n" ^ Pretty.string_of  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1035  | 
(Pretty.block [Pretty.str "val () = Codegen.eval_result := (fn () =>",  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1036  | 
Pretty.brk 1,  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1037  | 
mk_app false (mk_term_of gr "Generated" false (fastype_of t))  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1038  | 
[Pretty.str "(result ())"],  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1039  | 
Pretty.str ");"]) ^  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1040  | 
"\n\nend;\n";  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1041  | 
val _ = ML_Context.use_mltext s false (SOME (Context.Theory thy))  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1042  | 
in !eval_result end) ();  | 
| 
 
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
 
wenzelm 
parents: 
24920 
diff
changeset
 | 
1043  | 
in e () end;  | 
| 17549 | 1044  | 
|
1045  | 
fun print_evaluated_term s = Toplevel.keep (fn state =>  | 
|
1046  | 
let  | 
|
| 21506 | 1047  | 
val ctxt = Toplevel.context_of state;  | 
| 21002 | 1048  | 
val thy = ProofContext.theory_of ctxt;  | 
| 
24508
 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 
wenzelm 
parents: 
24469 
diff
changeset
 | 
1049  | 
val t = eval_term thy (Syntax.read_term ctxt s);  | 
| 17549 | 1050  | 
val T = Term.type_of t;  | 
1051  | 
in  | 
|
| 24585 | 1052  | 
Pretty.writeln  | 
| 24920 | 1053  | 
(Pretty.block [Pretty.quote (Syntax.pretty_term ctxt t), Pretty.fbrk,  | 
1054  | 
Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt T)])  | 
|
| 17549 | 1055  | 
end);  | 
1056  | 
||
| 20599 | 1057  | 
exception Evaluation of term;  | 
1058  | 
||
1059  | 
fun evaluation_oracle (thy, Evaluation t) =  | 
|
1060  | 
Logic.mk_equals (t, eval_term thy t);  | 
|
1061  | 
||
1062  | 
fun evaluation_conv ct =  | 
|
| 22596 | 1063  | 
  let val {thy, t, ...} = rep_cterm ct
 | 
| 24456 | 1064  | 
in Thm.invoke_oracle_i thy "Pure.evaluation" (thy, Evaluation t) end;  | 
1065  | 
||
1066  | 
val _ = Context.add_setup  | 
|
1067  | 
  (Theory.add_oracle ("evaluation", evaluation_oracle));
 | 
|
| 20599 | 1068  | 
|
| 17549 | 1069  | 
|
| 12452 | 1070  | 
(**** Interface ****)  | 
1071  | 
||
| 24634 | 1072  | 
val str = PrintMode.setmp [] Pretty.str;  | 
| 
13731
 
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
 
berghofe 
parents: 
13073 
diff
changeset
 | 
1073  | 
|
| 11520 | 1074  | 
fun parse_mixfix rd s =  | 
1075  | 
(case Scan.finite Symbol.stopper (Scan.repeat  | 
|
1076  | 
( $$ "_" >> K Arg  | 
|
1077  | 
|| $$ "?" >> K Ignore  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1078  | 
|| $$ "\\<module>" >> K Module  | 
| 11520 | 1079  | 
|| $$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length)  | 
1080  | 
      || $$ "{" |-- $$ "*" |-- Scan.repeat1
 | 
|
| 
23784
 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 
wenzelm 
parents: 
23655 
diff
changeset
 | 
1081  | 
( $$ "'" |-- Scan.one Symbol.is_regular  | 
| 
 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 
wenzelm 
parents: 
23655 
diff
changeset
 | 
1082  | 
|| Scan.unless ($$ "*" -- $$ "}") (Scan.one Symbol.is_regular)) --|  | 
| 12452 | 1083  | 
$$ "*" --| $$ "}" >> (Quote o rd o implode)  | 
| 11520 | 1084  | 
|| Scan.repeat1  | 
| 
23784
 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 
wenzelm 
parents: 
23655 
diff
changeset
 | 
1085  | 
( $$ "'" |-- Scan.one Symbol.is_regular  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1086  | 
            || Scan.unless ($$ "_" || $$ "?" || $$ "\\<module>" || $$ "/" || $$ "{" |-- $$ "*")
 | 
| 
23784
 
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
 
wenzelm 
parents: 
23655 
diff
changeset
 | 
1087  | 
(Scan.one Symbol.is_regular)) >> (Pretty o str o implode)))  | 
| 11520 | 1088  | 
(Symbol.explode s) of  | 
1089  | 
(p, []) => p  | 
|
1090  | 
   | _ => error ("Malformed annotation: " ^ quote s));
 | 
|
1091  | 
||
| 24456 | 1092  | 
val _ = Context.add_setup  | 
1093  | 
  (fold assoc_type [("fun", (parse_mixfix (K dummyT) "(_ ->/ _)",
 | 
|
1094  | 
     [("term_of",
 | 
|
1095  | 
"fun term_of_fun_type _ T _ U _ = Free (\"<function>\", T --> U);\n"),  | 
|
1096  | 
      ("test",
 | 
|
1097  | 
"fun gen_fun_type _ G i =\n\  | 
|
1098  | 
\ let\n\  | 
|
1099  | 
\ val f = ref (fn x => raise Match);\n\  | 
|
1100  | 
\ val _ = (f := (fn x =>\n\  | 
|
1101  | 
\ let\n\  | 
|
1102  | 
\ val y = G i;\n\  | 
|
1103  | 
\ val f' = !f\n\  | 
|
1104  | 
\ in (f := (fn x' => if x = x' then y else f' x'); y) end))\n\  | 
|
1105  | 
\ in (fn x => !f x) end;\n")]))]);  | 
|
1106  | 
||
| 15801 | 1107  | 
|
| 17057 | 1108  | 
structure P = OuterParse and K = OuterKeyword;  | 
| 11520 | 1109  | 
|
| 24867 | 1110  | 
val _ = OuterSyntax.keywords ["attach", "file", "contains"];  | 
1111  | 
||
| 17144 | 1112  | 
fun strip_whitespace s = implode (fst (take_suffix (equal "\n" orf equal " ")  | 
1113  | 
(snd (take_prefix (equal "\n" orf equal " ") (explode s))))) ^ "\n";  | 
|
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1114  | 
|
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1115  | 
val parse_attach = Scan.repeat (P.$$$ "attach" |--  | 
| 
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1116  | 
  Scan.optional (P.$$$ "(" |-- P.xname --| P.$$$ ")") "" --
 | 
| 17144 | 1117  | 
(P.verbatim >> strip_whitespace));  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1118  | 
|
| 24867 | 1119  | 
val _ =  | 
| 11520 | 1120  | 
OuterSyntax.command "types_code"  | 
| 11546 | 1121  | 
"associate types with target language types" K.thy_decl  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1122  | 
    (Scan.repeat1 (P.xname --| P.$$$ "(" -- P.string --| P.$$$ ")" -- parse_attach) >>
 | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
1123  | 
(fn xs => Toplevel.theory (fn thy => fold (assoc_type o  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
1124  | 
(fn ((name, mfx), aux) => (name, (parse_mixfix  | 
| 24707 | 1125  | 
(Syntax.read_typ_global thy) mfx, aux)))) xs thy)));  | 
| 11520 | 1126  | 
|
| 24867 | 1127  | 
val _ =  | 
| 11520 | 1128  | 
OuterSyntax.command "consts_code"  | 
| 11546 | 1129  | 
"associate constants with target language code" K.thy_decl  | 
| 11520 | 1130  | 
(Scan.repeat1  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
1131  | 
(P.term --|  | 
| 
16769
 
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
 
berghofe 
parents: 
16649 
diff
changeset
 | 
1132  | 
        P.$$$ "(" -- P.string --| P.$$$ ")" -- parse_attach) >>
 | 
| 
25376
 
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
 
wenzelm 
parents: 
25367 
diff
changeset
 | 
1133  | 
(fn xs => Toplevel.theory (fn thy => fold (assoc_const o  | 
| 
22921
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
1134  | 
(fn ((const, mfx), aux) =>  | 
| 
 
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
 
haftmann 
parents: 
22846 
diff
changeset
 | 
1135  | 
(const, (parse_mixfix (Sign.read_term thy) mfx, aux)))) xs thy)));  | 
| 11520 | 1136  | 
|
| 17144 | 1137  | 
fun parse_code lib =  | 
1138  | 
  Scan.optional (P.$$$ "(" |-- P.enum "," P.xname --| P.$$$ ")") (!mode) --
 | 
|
1139  | 
(if lib then Scan.optional P.name "" else P.name) --  | 
|
1140  | 
Scan.option (P.$$$ "file" |-- P.name) --  | 
|
1141  | 
(if lib then Scan.succeed []  | 
|
1142  | 
else Scan.optional (P.$$$ "imports" |-- Scan.repeat1 P.name) []) --|  | 
|
1143  | 
P.$$$ "contains" --  | 
|
1144  | 
( Scan.repeat1 (P.name --| P.$$$ "=" -- P.term)  | 
|
1145  | 
|| Scan.repeat1 (P.term >> pair "")) >>  | 
|
1146  | 
(fn ((((mode', module), opt_fname), modules), xs) => Toplevel.theory (fn thy =>  | 
|
1147  | 
let  | 
|
| 19299 | 1148  | 
val mode'' = (if lib then insert (op =) "library" else I) (remove (op =) "library" mode');  | 
| 17144 | 1149  | 
val (code, gr) = setmp mode mode'' (generate_code thy modules module) xs  | 
1150  | 
in ((case opt_fname of  | 
|
| 
24655
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
1151  | 
NONE => ML_Context.use_mltext (space_implode "\n" (map snd code))  | 
| 
 
24b630fd008f
- eval_term no longer computes result during compile time
 
berghofe 
parents: 
24634 
diff
changeset
 | 
1152  | 
false (SOME (Context.Theory thy))  | 
| 17144 | 1153  | 
| SOME fname =>  | 
1154  | 
if lib then  | 
|
1155  | 
app (fn (name, s) => File.write  | 
|
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
1156  | 
(Path.append (Path.explode fname) (Path.basic (name ^ ".ML"))) s)  | 
| 17144 | 1157  | 
               (("ROOT", implode (map (fn (name, _) =>
 | 
1158  | 
"use \"" ^ name ^ ".ML\";\n") code)) :: code)  | 
|
| 
21858
 
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
 
wenzelm 
parents: 
21836 
diff
changeset
 | 
1159  | 
else File.write (Path.explode fname) (snd (hd code)));  | 
| 17144 | 1160  | 
if lib then thy  | 
| 17412 | 1161  | 
else map_modules (Symtab.update (module, gr)) thy)  | 
| 17144 | 1162  | 
end));  | 
1163  | 
||
| 24867 | 1164  | 
val _ =  | 
| 17144 | 1165  | 
OuterSyntax.command "code_library"  | 
1166  | 
"generates code for terms (one structure for each theory)" K.thy_decl  | 
|
1167  | 
(parse_code true);  | 
|
1168  | 
||
| 24867 | 1169  | 
val _ =  | 
| 17144 | 1170  | 
OuterSyntax.command "code_module"  | 
1171  | 
"generates code for terms (single structure, incremental)" K.thy_decl  | 
|
1172  | 
(parse_code false);  | 
|
| 11520 | 1173  | 
|
| 14105 | 1174  | 
val params =  | 
1175  | 
  [("size", P.nat >> (K o set_size)),
 | 
|
1176  | 
   ("iterations", P.nat >> (K o set_iterations)),
 | 
|
1177  | 
   ("default_type", P.typ >> set_default_type)];
 | 
|
1178  | 
||
| 24022 | 1179  | 
val parse_test_params = P.short_ident :|-- (fn s =>  | 
1180  | 
P.$$$ "=" |-- (AList.lookup (op =) params s |> the_default Scan.fail));  | 
|
| 14105 | 1181  | 
|
1182  | 
fun parse_tyinst xs =  | 
|
| 16458 | 1183  | 
(P.type_ident --| P.$$$ "=" -- P.typ >> (fn (v, s) => fn thy =>  | 
| 24707 | 1184  | 
fn (x, ys) => (x, (v, Syntax.read_typ_global thy s) :: ys))) xs;  | 
| 14105 | 1185  | 
|
| 24867 | 1186  | 
val _ =  | 
| 14105 | 1187  | 
OuterSyntax.command "quickcheck_params" "set parameters for random testing" K.thy_decl  | 
1188  | 
(P.$$$ "[" |-- P.list1 parse_test_params --| P.$$$ "]" >>  | 
|
1189  | 
(fn fs => Toplevel.theory (fn thy =>  | 
|
| 24456 | 1190  | 
map_test_params (Library.apply (map (fn f => f thy) fs)) thy)));  | 
| 14105 | 1191  | 
|
| 24867 | 1192  | 
val _ =  | 
| 14105 | 1193  | 
OuterSyntax.command "quickcheck" "try to find counterexample for subgoal" K.diag  | 
1194  | 
(Scan.option (P.$$$ "[" |-- P.list1  | 
|
| 16458 | 1195  | 
( parse_test_params >> (fn f => fn thy => apfst (f thy))  | 
| 14105 | 1196  | 
|| parse_tyinst) --| P.$$$ "]") -- Scan.optional P.nat 1 >>  | 
| 
24565
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1197  | 
(fn (ps, g) => Toplevel.keep (fn st => Toplevel.proof_of st |>  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1198  | 
test_goal false (Library.apply (the_default []  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1199  | 
(Option.map (map (fn f => f (Toplevel.theory_of st))) ps))  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1200  | 
(get_test_params (Toplevel.theory_of st), [])) g [] |>  | 
| 
 
08578e380a41
Auto quickcheck now displays counterexample using Proof.goal_message
 
berghofe 
parents: 
24508 
diff
changeset
 | 
1201  | 
pretty_counterex (Toplevel.context_of st) |> Pretty.writeln)));  | 
| 14105 | 1202  | 
|
| 24867 | 1203  | 
val _ =  | 
| 17549 | 1204  | 
OuterSyntax.improper_command "value" "read, evaluate and print term" K.diag  | 
1205  | 
(P.term >> (Toplevel.no_timing oo print_evaluated_term));  | 
|
1206  | 
||
| 11520 | 1207  | 
end;  | 
| 
24805
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
1208  | 
|
| 
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
1209  | 
val auto_quickcheck = Codegen.auto_quickcheck;  | 
| 
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
1210  | 
val auto_quickcheck_time_limit = Codegen.auto_quickcheck_time_limit;  | 
| 
 
34cbfb87dfe8
auto_quickcheck: pervasive options, turned time_limit into plain int, simplified exception handling;
 
wenzelm 
parents: 
24707 
diff
changeset
 | 
1211  |