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