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