author | haftmann |
Thu, 14 May 2009 15:09:46 +0200 | |
changeset 31153 | 6b31b143f18b |
parent 31125 | 80218ee73167 |
child 31157 | 6e1e8e194562 |
permissions | -rw-r--r-- |
11520 | 1 |
(* Title: Pure/codegen.ML |
11539 | 2 |
Author: Stefan Berghofer, TU Muenchen |
11520 | 3 |
|
11539 | 4 |
Generic code generator. |
11520 | 5 |
*) |
6 |
||
7 |
signature CODEGEN = |
|
8 |
sig |
|
9 |
val quiet_mode : bool ref |
|
10 |
val message : string -> unit |
|
13753
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
11 |
val mode : string list ref |
13886
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
berghofe
parents:
13753
diff
changeset
|
12 |
val margin : int ref |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
13 |
val string_of : Pretty.T -> string |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
14 |
val str : string -> Pretty.T |
11520 | 15 |
|
12452 | 16 |
datatype 'a mixfix = |
11520 | 17 |
Arg |
18 |
| Ignore |
|
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
19 |
| Module |
11520 | 20 |
| Pretty of Pretty.T |
12452 | 21 |
| Quote of 'a; |
11520 | 22 |
|
16649 | 23 |
type deftab |
17144 | 24 |
type node |
16649 | 25 |
type codegr |
12452 | 26 |
type 'a codegen |
27 |
||
28 |
val add_codegen: string -> term codegen -> theory -> theory |
|
29 |
val add_tycodegen: string -> typ codegen -> theory -> theory |
|
15261 | 30 |
val add_preprocessor: (theory -> thm list -> thm list) -> theory -> theory |
31 |
val preprocess: theory -> thm list -> thm list |
|
17549 | 32 |
val preprocess_term: theory -> term -> term |
11520 | 33 |
val print_codegens: theory -> unit |
17144 | 34 |
val generate_code: theory -> string list -> string -> (string * string) list -> |
35 |
(string * string) list * codegr |
|
36 |
val generate_code_i: theory -> string list -> string -> (string * term) list -> |
|
37 |
(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
|
38 |
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
|
39 |
(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
|
40 |
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
|
41 |
(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
|
42 |
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
|
43 |
(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
|
44 |
val get_assoc_code: theory -> string * typ -> |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
45 |
(term mixfix list * (string * string) list) option |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
46 |
val get_assoc_type: theory -> string -> |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
47 |
(typ mixfix list * (string * string) list) option |
17144 | 48 |
val codegen_error: codegr -> string -> string -> 'a |
16649 | 49 |
val invoke_codegen: theory -> deftab -> string -> string -> bool -> |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
50 |
term -> codegr -> Pretty.T * codegr |
16649 | 51 |
val invoke_tycodegen: theory -> deftab -> string -> string -> bool -> |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
52 |
typ -> codegr -> Pretty.T * codegr |
14858 | 53 |
val mk_id: string -> string |
17144 | 54 |
val mk_qual_id: string -> string * string -> string |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
55 |
val mk_const_id: string -> string -> codegr -> (string * string) * codegr |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
56 |
val get_const_id: codegr -> string -> string * string |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
57 |
val mk_type_id: string -> string -> codegr -> (string * string) * codegr |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
58 |
val get_type_id: codegr -> string -> string * string |
27398
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
59 |
val thyname_of_type: theory -> string -> string |
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
60 |
val thyname_of_const: theory -> string -> string |
16649 | 61 |
val rename_terms: term list -> term list |
11520 | 62 |
val rename_term: term -> term |
15398 | 63 |
val new_names: term -> string list -> string list |
64 |
val new_name: term -> string -> string |
|
17144 | 65 |
val if_library: 'a -> 'a -> 'a |
16649 | 66 |
val get_defn: theory -> deftab -> string -> typ -> |
67 |
((typ * (string * (term list * term))) * int option) option |
|
24908
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
wenzelm
parents:
24867
diff
changeset
|
68 |
val is_instance: typ -> typ -> bool |
11520 | 69 |
val parens: Pretty.T -> Pretty.T |
70 |
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
|
71 |
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
|
72 |
val mk_let: (Pretty.T * Pretty.T) list -> Pretty.T -> Pretty.T |
11520 | 73 |
val eta_expand: term -> term list -> int -> term |
14105 | 74 |
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
|
75 |
val mk_type: bool -> typ -> Pretty.T |
17144 | 76 |
val mk_term_of: codegr -> string -> bool -> typ -> Pretty.T |
77 |
val mk_gen: codegr -> string -> bool -> string list -> string -> typ -> Pretty.T |
|
14105 | 78 |
val test_fn: (int -> (string * term) list option) ref |
28315 | 79 |
val test_term: Proof.context -> term -> int -> term list option |
24655
24b630fd008f
- eval_term no longer computes result during compile time
berghofe
parents:
24634
diff
changeset
|
80 |
val eval_result: (unit -> term) ref |
17549 | 81 |
val eval_term: theory -> term -> term |
20599 | 82 |
val evaluation_conv: cterm -> thm |
12452 | 83 |
val parse_mixfix: (string -> 'a) -> string -> 'a mixfix list |
18102 | 84 |
val quotes_of: 'a mixfix list -> 'a list |
18281 | 85 |
val num_args_of: 'a mixfix list -> int |
18102 | 86 |
val replace_quotes: 'b list -> 'a mixfix list -> 'b mixfix list |
16649 | 87 |
val mk_deftab: theory -> deftab |
19341
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
haftmann
parents:
19299
diff
changeset
|
88 |
val add_unfold: thm -> theory -> theory |
17549 | 89 |
|
17144 | 90 |
val get_node: codegr -> string -> node |
91 |
val add_edge: string * string -> codegr -> codegr |
|
92 |
val add_edge_acyclic: string * string -> codegr -> codegr |
|
93 |
val del_nodes: string list -> codegr -> codegr |
|
94 |
val map_node: string -> (node -> node) -> codegr -> codegr |
|
95 |
val new_node: string * node -> codegr -> codegr |
|
28227 | 96 |
|
97 |
val setup: theory -> theory |
|
11520 | 98 |
end; |
99 |
||
100 |
structure Codegen : CODEGEN = |
|
101 |
struct |
|
102 |
||
103 |
val quiet_mode = ref true; |
|
104 |
fun message s = if !quiet_mode then () else writeln s; |
|
105 |
||
13753
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
106 |
val mode = ref ([] : string list); |
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
107 |
|
13886
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
berghofe
parents:
13753
diff
changeset
|
108 |
val margin = ref 80; |
0b243f6e257e
Margin for pretty-printing is now a mutable reference.
berghofe
parents:
13753
diff
changeset
|
109 |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
110 |
fun string_of p = (Pretty.string_of |> |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
111 |
PrintMode.setmp [] |> |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
112 |
Pretty.setmp_margin (!margin)) p; |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
113 |
|
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
114 |
val str = PrintMode.setmp [] Pretty.str; |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
115 |
|
11520 | 116 |
(**** Mixfix syntax ****) |
117 |
||
12452 | 118 |
datatype 'a mixfix = |
11520 | 119 |
Arg |
120 |
| Ignore |
|
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
121 |
| Module |
11520 | 122 |
| Pretty of Pretty.T |
12452 | 123 |
| Quote of 'a; |
11520 | 124 |
|
125 |
fun is_arg Arg = true |
|
126 |
| is_arg Ignore = true |
|
127 |
| is_arg _ = false; |
|
128 |
||
12452 | 129 |
fun quotes_of [] = [] |
130 |
| quotes_of (Quote q :: ms) = q :: quotes_of ms |
|
131 |
| quotes_of (_ :: ms) = quotes_of ms; |
|
132 |
||
133 |
fun args_of [] xs = ([], xs) |
|
134 |
| args_of (Arg :: ms) (x :: xs) = apfst (cons x) (args_of ms xs) |
|
135 |
| args_of (Ignore :: ms) (_ :: xs) = args_of ms xs |
|
136 |
| args_of (_ :: ms) xs = args_of ms xs; |
|
11520 | 137 |
|
18281 | 138 |
fun num_args_of x = length (List.filter is_arg x); |
11520 | 139 |
|
140 |
||
141 |
(**** theory data ****) |
|
142 |
||
16649 | 143 |
(* preprocessed definition table *) |
144 |
||
145 |
type deftab = |
|
146 |
(typ * (* type of constant *) |
|
147 |
(string * (* name of theory containing definition of constant *) |
|
148 |
(term list * (* parameters *) |
|
149 |
term))) (* right-hand side *) |
|
150 |
list Symtab.table; |
|
151 |
||
152 |
(* code dependency graph *) |
|
153 |
||
17144 | 154 |
type nametab = (string * string) Symtab.table * unit Symtab.table; |
155 |
||
28227 | 156 |
fun merge_nametabs ((tab, used) : nametab, (tab', used')) = |
17144 | 157 |
(Symtab.merge op = (tab, tab'), Symtab.merge op = (used, used')); |
158 |
||
159 |
type node = |
|
16649 | 160 |
(exn option * (* slot for arbitrary data *) |
161 |
string * (* name of structure containing piece of code *) |
|
17144 | 162 |
string); (* piece of code *) |
163 |
||
164 |
type codegr = |
|
165 |
node Graph.T * |
|
166 |
(nametab * (* table for assigned constant names *) |
|
167 |
nametab); (* table for assigned type names *) |
|
168 |
||
169 |
val emptygr : codegr = (Graph.empty, |
|
170 |
((Symtab.empty, Symtab.empty), (Symtab.empty, Symtab.empty))); |
|
16649 | 171 |
|
14105 | 172 |
(* type of code generators *) |
11520 | 173 |
|
16649 | 174 |
type 'a codegen = |
175 |
theory -> (* theory in which generate_code was called *) |
|
176 |
deftab -> (* definition table (for efficiency) *) |
|
177 |
string -> (* node name of caller (for recording dependencies) *) |
|
17144 | 178 |
string -> (* module name of caller (for modular code generation) *) |
16649 | 179 |
bool -> (* whether to parenthesize generated expression *) |
180 |
'a -> (* item to generate code from *) |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
181 |
codegr -> (* code dependency graph *) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
182 |
(Pretty.T * codegr) option; |
12452 | 183 |
|
22846 | 184 |
|
185 |
(* theory data *) |
|
16458 | 186 |
|
187 |
structure CodegenData = TheoryDataFun |
|
22846 | 188 |
( |
11520 | 189 |
type T = |
12452 | 190 |
{codegens : (string * term codegen) list, |
191 |
tycodegens : (string * typ codegen) list, |
|
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
192 |
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
|
193 |
types : (string * (typ mixfix list * (string * string) list)) list, |
15261 | 194 |
preprocs: (stamp * (theory -> thm list -> thm list)) list, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
195 |
modules: codegr Symtab.table}; |
11520 | 196 |
|
12555
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
berghofe
parents:
12490
diff
changeset
|
197 |
val empty = |
24219 | 198 |
{codegens = [], tycodegens = [], consts = [], types = [], |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
199 |
preprocs = [], modules = Symtab.empty}; |
11520 | 200 |
val copy = I; |
16458 | 201 |
val extend = I; |
11520 | 202 |
|
16458 | 203 |
fun merge _ |
12555
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
berghofe
parents:
12490
diff
changeset
|
204 |
({codegens = codegens1, tycodegens = tycodegens1, |
24219 | 205 |
consts = consts1, types = types1, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
206 |
preprocs = preprocs1, modules = modules1} : T, |
12555
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
berghofe
parents:
12490
diff
changeset
|
207 |
{codegens = codegens2, tycodegens = tycodegens2, |
24219 | 208 |
consts = consts2, types = types2, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
209 |
preprocs = preprocs2, modules = modules2}) = |
19119
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
haftmann
parents:
19046
diff
changeset
|
210 |
{codegens = AList.merge (op =) (K true) (codegens1, codegens2), |
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
haftmann
parents:
19046
diff
changeset
|
211 |
tycodegens = AList.merge (op =) (K true) (tycodegens1, tycodegens2), |
21098
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
haftmann
parents:
21056
diff
changeset
|
212 |
consts = AList.merge (op =) (K true) (consts1, consts2), |
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
haftmann
parents:
21056
diff
changeset
|
213 |
types = AList.merge (op =) (K true) (types1, types2), |
19119
dea8d858d37f
abandoned merge_alists' in favour of generic AList.merge
haftmann
parents:
19046
diff
changeset
|
214 |
preprocs = AList.merge (op =) (K true) (preprocs1, preprocs2), |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
215 |
modules = Symtab.merge (K true) (modules1, modules2)}; |
22846 | 216 |
); |
11520 | 217 |
|
22846 | 218 |
fun print_codegens thy = |
219 |
let val {codegens, tycodegens, ...} = CodegenData.get thy in |
|
12452 | 220 |
Pretty.writeln (Pretty.chunks |
221 |
[Pretty.strs ("term code generators:" :: map fst codegens), |
|
22846 | 222 |
Pretty.strs ("type code generators:" :: map fst tycodegens)]) |
223 |
end; |
|
11520 | 224 |
|
225 |
||
226 |
||
17144 | 227 |
(**** access modules ****) |
228 |
||
229 |
fun get_modules thy = #modules (CodegenData.get thy); |
|
230 |
||
231 |
fun map_modules f thy = |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
232 |
let val {codegens, tycodegens, consts, types, preprocs, modules} = |
17144 | 233 |
CodegenData.get thy; |
234 |
in CodegenData.put {codegens = codegens, tycodegens = tycodegens, |
|
24219 | 235 |
consts = consts, types = types, preprocs = preprocs, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
236 |
modules = f modules} thy |
14105 | 237 |
end; |
238 |
||
239 |
||
12452 | 240 |
(**** add new code generators to theory ****) |
11520 | 241 |
|
242 |
fun add_codegen name f thy = |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
243 |
let val {codegens, tycodegens, consts, types, preprocs, modules} = |
14105 | 244 |
CodegenData.get thy |
17521 | 245 |
in (case AList.lookup (op =) codegens name of |
15531 | 246 |
NONE => CodegenData.put {codegens = (name, f) :: codegens, |
12555
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
berghofe
parents:
12490
diff
changeset
|
247 |
tycodegens = tycodegens, consts = consts, types = types, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
248 |
preprocs = preprocs, modules = modules} thy |
15531 | 249 |
| SOME _ => error ("Code generator " ^ name ^ " already declared")) |
12452 | 250 |
end; |
251 |
||
252 |
fun add_tycodegen name f thy = |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
253 |
let val {codegens, tycodegens, consts, types, preprocs, modules} = |
14105 | 254 |
CodegenData.get thy |
17521 | 255 |
in (case AList.lookup (op =) tycodegens name of |
15531 | 256 |
NONE => CodegenData.put {tycodegens = (name, f) :: tycodegens, |
12555
e6d7f040fdc7
"code" attribute is now managed by basic code generator module.
berghofe
parents:
12490
diff
changeset
|
257 |
codegens = codegens, consts = consts, types = types, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
258 |
preprocs = preprocs, modules = modules} thy |
15531 | 259 |
| SOME _ => error ("Code generator " ^ name ^ " already declared")) |
11520 | 260 |
end; |
261 |
||
262 |
||
15261 | 263 |
(**** preprocessors ****) |
264 |
||
265 |
fun add_preprocessor p thy = |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
266 |
let val {codegens, tycodegens, consts, types, preprocs, modules} = |
15261 | 267 |
CodegenData.get thy |
268 |
in CodegenData.put {tycodegens = tycodegens, |
|
269 |
codegens = codegens, consts = consts, types = types, |
|
24219 | 270 |
preprocs = (stamp (), p) :: preprocs, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
271 |
modules = modules} thy |
15261 | 272 |
end; |
273 |
||
21836 | 274 |
fun preprocess thy = |
15261 | 275 |
let val {preprocs, ...} = CodegenData.get thy |
21836 | 276 |
in fold (fn (_, f) => f thy) preprocs end; |
15261 | 277 |
|
17549 | 278 |
fun preprocess_term thy t = |
279 |
let |
|
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29266
diff
changeset
|
280 |
val x = Free (Name.variant (OldTerm.add_term_names (t, [])) "x", fastype_of t); |
17549 | 281 |
(* fake definition *) |
282 |
val eq = setmp quick_and_dirty true (SkipProof.make_thm thy) |
|
283 |
(Logic.mk_equals (x, t)); |
|
284 |
fun err () = error "preprocess_term: bad preprocessor" |
|
285 |
in case map prop_of (preprocess thy [eq]) of |
|
286 |
[Const ("==", _) $ x' $ t'] => if x = x' then t' else err () |
|
287 |
| _ => err () |
|
288 |
end; |
|
18281 | 289 |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
290 |
structure UnfoldData = TheoryDataFun |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
291 |
( |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
292 |
type T = simpset; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
293 |
val empty = empty_ss; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
294 |
val copy = I; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
295 |
val extend = I; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
296 |
fun merge _ = merge_ss; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
297 |
); |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
298 |
|
19341
3414c04fbc39
added definitional code generator module: codegen_theorems.ML
haftmann
parents:
19299
diff
changeset
|
299 |
fun add_unfold eqn = |
15261 | 300 |
let |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
301 |
val ctxt = ProofContext.init (Thm.theory_of_thm eqn); |
22749 | 302 |
val eqn' = LocalDefs.meta_rewrite_rule ctxt eqn; |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
303 |
in |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
304 |
UnfoldData.map (fn ss => ss addsimps [eqn']) |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
305 |
end; |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
306 |
|
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
307 |
fun unfold_preprocessor thy = |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
308 |
let val ss = Simplifier.theory_context thy (UnfoldData.get thy) |
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
309 |
in map (Thm.transfer thy #> Simplifier.full_simplify ss) end; |
15261 | 310 |
|
311 |
||
11520 | 312 |
(**** associate constants with target language code ****) |
313 |
||
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
314 |
fun gen_assoc_const prep_const (raw_const, syn) thy = |
11520 | 315 |
let |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
316 |
val {codegens, tycodegens, consts, types, preprocs, modules} = |
14105 | 317 |
CodegenData.get thy; |
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
318 |
val (cname, T) = prep_const thy raw_const; |
11520 | 319 |
in |
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
320 |
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
|
321 |
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
|
322 |
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
|
323 |
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
|
324 |
tycodegens = tycodegens, |
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
325 |
consts = ((cname, T), syn) :: consts, |
24219 | 326 |
types = types, preprocs = preprocs, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
327 |
modules = modules} thy |
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
328 |
| 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
|
329 |
end; |
11520 | 330 |
|
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
331 |
val assoc_const_i = gen_assoc_const (K I); |
31153 | 332 |
val assoc_const = gen_assoc_const Code.read_bare_const; |
11520 | 333 |
|
15801 | 334 |
|
11520 | 335 |
(**** associate types with target language types ****) |
336 |
||
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
337 |
fun assoc_type (s, syn) thy = |
11520 | 338 |
let |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
339 |
val {codegens, tycodegens, consts, types, preprocs, modules} = |
14105 | 340 |
CodegenData.get thy; |
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
341 |
val tc = Sign.intern_type thy s; |
11520 | 342 |
in |
18320
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
berghofe
parents:
18281
diff
changeset
|
343 |
case Symtab.lookup (snd (#types (Type.rep_tsig (Sign.tsig_of thy)))) tc of |
27302 | 344 |
SOME ((Type.LogicalType i, _), _) => |
18320
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
berghofe
parents:
18281
diff
changeset
|
345 |
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
|
346 |
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
|
347 |
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
|
348 |
NONE => CodegenData.put {codegens = codegens, |
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
berghofe
parents:
18281
diff
changeset
|
349 |
tycodegens = tycodegens, consts = consts, |
24219 | 350 |
types = (tc, syn) :: types, |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
351 |
preprocs = preprocs, modules = modules} thy |
18320
ce523820ff75
assoc_consts and assoc_types now check number of arguments in template.
berghofe
parents:
18281
diff
changeset
|
352 |
| 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
|
353 |
| _ => 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
|
354 |
end; |
11520 | 355 |
|
21098
d0d8a48ae4e6
switched merge_alists'' to AList.merge'' whenever appropriate
haftmann
parents:
21056
diff
changeset
|
356 |
fun get_assoc_type thy = AList.lookup (op =) ((#types o CodegenData.get) thy); |
11546 | 357 |
|
11520 | 358 |
|
359 |
(**** make valid ML identifiers ****) |
|
360 |
||
14858 | 361 |
fun is_ascii_letdig x = Symbol.is_ascii_letter x orelse |
362 |
Symbol.is_ascii_digit x orelse Symbol.is_ascii_quasi x; |
|
363 |
||
28375 | 364 |
fun dest_sym s = (case split_last (snd (take_prefix (fn c => c = "\\") (explode s))) of |
14858 | 365 |
("<" :: "^" :: xs, ">") => (true, implode xs) |
366 |
| ("<" :: xs, ">") => (false, implode xs) |
|
367 |
| _ => sys_error "dest_sym"); |
|
16458 | 368 |
|
14858 | 369 |
fun mk_id s = if s = "" then "" else |
11520 | 370 |
let |
14858 | 371 |
fun check_str [] = [] |
372 |
| check_str xs = (case take_prefix is_ascii_letdig xs of |
|
373 |
([], " " :: zs) => check_str zs |
|
374 |
| ([], z :: zs) => |
|
375 |
if size z = 1 then string_of_int (ord z) :: check_str zs |
|
376 |
else (case dest_sym z of |
|
377 |
(true, "isub") => check_str zs |
|
378 |
| (true, "isup") => "" :: check_str zs |
|
379 |
| (ctrl, s') => (if ctrl then "ctrl_" ^ s' else s') :: check_str zs) |
|
380 |
| (ys, zs) => implode ys :: check_str zs); |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30288
diff
changeset
|
381 |
val s' = space_implode "_" (maps (check_str o Symbol.explode) (Long_Name.explode s)) |
11520 | 382 |
in |
14858 | 383 |
if Symbol.is_ascii_letter (hd (explode s')) then s' else "id_" ^ s' |
11520 | 384 |
end; |
385 |
||
17144 | 386 |
fun mk_long_id (p as (tab, used)) module s = |
16649 | 387 |
let |
17144 | 388 |
fun find_name [] = sys_error "mk_long_id" |
389 |
| find_name (ys :: yss) = |
|
390 |
let |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30288
diff
changeset
|
391 |
val s' = Long_Name.implode ys |
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30288
diff
changeset
|
392 |
val s'' = Long_Name.append module s' |
17412 | 393 |
in case Symtab.lookup used s'' of |
17261 | 394 |
NONE => ((module, s'), |
17412 | 395 |
(Symtab.update_new (s, (module, s')) tab, |
396 |
Symtab.update_new (s'', ()) used)) |
|
17144 | 397 |
| SOME _ => find_name yss |
398 |
end |
|
17412 | 399 |
in case Symtab.lookup tab s of |
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30288
diff
changeset
|
400 |
NONE => find_name (Library.suffixes1 (Long_Name.explode s)) |
17144 | 401 |
| SOME name => (name, p) |
16649 | 402 |
end; |
403 |
||
17144 | 404 |
(* module: module name for caller *) |
405 |
(* module': module name for callee *) |
|
406 |
(* if caller and callee reside in different modules, use qualified access *) |
|
16649 | 407 |
|
17144 | 408 |
fun mk_qual_id module (module', s) = |
409 |
if module = module' orelse module' = "" then s else module' ^ "." ^ s; |
|
410 |
||
411 |
fun mk_const_id module cname (gr, (tab1, tab2)) = |
|
16649 | 412 |
let |
17144 | 413 |
val ((module, s), tab1') = mk_long_id tab1 module cname |
414 |
val s' = mk_id s; |
|
21478
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
wenzelm
parents:
21098
diff
changeset
|
415 |
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s' |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
416 |
in (((module, s'')), (gr, (tab1', tab2))) end; |
13073
cc9d7f403a4b
mk_const_id now checks for clashes with reserved ML identifiers.
berghofe
parents:
13003
diff
changeset
|
417 |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
418 |
fun get_const_id (gr, (tab1, tab2)) cname = |
17412 | 419 |
case Symtab.lookup (fst tab1) cname of |
17144 | 420 |
NONE => error ("get_const_id: no such constant: " ^ quote cname) |
421 |
| SOME (module, s) => |
|
422 |
let |
|
423 |
val s' = mk_id s; |
|
21478
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
wenzelm
parents:
21098
diff
changeset
|
424 |
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_const" else s' |
17144 | 425 |
in (module, s'') end; |
426 |
||
427 |
fun mk_type_id module tyname (gr, (tab1, tab2)) = |
|
16649 | 428 |
let |
17144 | 429 |
val ((module, s), tab2') = mk_long_id tab2 module tyname |
430 |
val s' = mk_id s; |
|
21478
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
wenzelm
parents:
21098
diff
changeset
|
431 |
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s' |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
432 |
in ((module, s''), (gr, (tab1, tab2'))) end; |
16649 | 433 |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
434 |
fun get_type_id (gr, (tab1, tab2)) tyname = |
17412 | 435 |
case Symtab.lookup (fst tab2) tyname of |
17144 | 436 |
NONE => error ("get_type_id: no such type: " ^ quote tyname) |
437 |
| SOME (module, s) => |
|
438 |
let |
|
439 |
val s' = mk_id s; |
|
21478
a90250b1cf42
moved ML syntax operations to structure ML_Syntax;
wenzelm
parents:
21098
diff
changeset
|
440 |
val s'' = if ML_Syntax.is_reserved s' then s' ^ "_type" else s' |
17144 | 441 |
in (module, s'') end; |
442 |
||
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
443 |
fun get_type_id' f tab tyname = apsnd f (get_type_id tab tyname); |
17144 | 444 |
|
445 |
fun get_node (gr, x) k = Graph.get_node gr k; |
|
446 |
fun add_edge e (gr, x) = (Graph.add_edge e gr, x); |
|
447 |
fun add_edge_acyclic e (gr, x) = (Graph.add_edge_acyclic e gr, x); |
|
448 |
fun del_nodes ks (gr, x) = (Graph.del_nodes ks gr, x); |
|
449 |
fun map_node k f (gr, x) = (Graph.map_node k f gr, x); |
|
450 |
fun new_node p (gr, x) = (Graph.new_node p gr, x); |
|
16649 | 451 |
|
27398
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
452 |
fun thyname_of thy f x = the (AList.lookup (op =) (f x) Markup.theory_nameN); |
16649 | 453 |
|
27398
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
454 |
fun thyname_of_type thy = |
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
455 |
thyname_of thy (Type.the_tags (Sign.tsig_of thy)); |
16649 | 456 |
|
27398
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
457 |
fun thyname_of_const thy = |
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
458 |
thyname_of thy (Consts.the_tags (Sign.consts_of thy)); |
11520 | 459 |
|
13731
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
460 |
fun rename_terms ts = |
11520 | 461 |
let |
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29266
diff
changeset
|
462 |
val names = List.foldr OldTerm.add_term_names |
20286 | 463 |
(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
|
464 |
val reserved = filter ML_Syntax.is_reserved names; |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
465 |
val (illegal, alt_names) = split_list (map_filter (fn s => |
15531 | 466 |
let val s' = mk_id s in if s = s' then NONE else SOME (s, s') end) names) |
14858 | 467 |
val ps = (reserved @ illegal) ~~ |
20071
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
19806
diff
changeset
|
468 |
Name.variant_list names (map (suffix "'") reserved @ alt_names); |
11520 | 469 |
|
17521 | 470 |
fun rename_id s = AList.lookup (op =) ps s |> the_default s; |
14858 | 471 |
|
472 |
fun rename (Var ((a, i), T)) = Var ((rename_id a, i), T) |
|
473 |
| rename (Free (a, T)) = Free (rename_id a, T) |
|
11520 | 474 |
| rename (Abs (s, T, t)) = Abs (s, T, rename t) |
475 |
| rename (t $ u) = rename t $ rename u |
|
476 |
| rename t = t; |
|
477 |
in |
|
13731
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
478 |
map rename ts |
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
479 |
end; |
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
480 |
|
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
481 |
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
|
482 |
|
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
483 |
|
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
484 |
(**** retrieve definition of constant ****) |
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
485 |
|
24908
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
wenzelm
parents:
24867
diff
changeset
|
486 |
fun is_instance T1 T2 = |
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29266
diff
changeset
|
487 |
Type.raw_instance (T1, if null (OldTerm.typ_tfrees T2) then T2 else Logic.varifyT T2); |
13731
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
488 |
|
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
489 |
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
|
490 |
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
|
491 |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
492 |
fun get_aux_code xs = map_filter (fn (m, code) => |
20665 | 493 |
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
|
494 |
|
16649 | 495 |
fun mk_deftab thy = |
13731
e2d17090052b
Parameters in definitions are now renamed to avoid clashes with
berghofe
parents:
13073
diff
changeset
|
496 |
let |
22680
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
wenzelm
parents:
22596
diff
changeset
|
497 |
val axmss = map (fn thy' => (Context.theory_name thy', Theory.axiom_table thy')) |
16649 | 498 |
(thy :: Theory.ancestors_of thy); |
15261 | 499 |
fun prep_def def = (case preprocess thy [def] of |
16649 | 500 |
[def'] => prop_of def' | _ => error "mk_deftab: bad preprocessor"); |
15261 | 501 |
fun dest t = |
502 |
let |
|
503 |
val (lhs, rhs) = Logic.dest_equals t; |
|
504 |
val (c, args) = strip_comb lhs; |
|
16649 | 505 |
val (s, T) = dest_Const c |
506 |
in if forall is_Var args then SOME (s, (T, (args, rhs))) else NONE |
|
15531 | 507 |
end handle TERM _ => NONE; |
21056 | 508 |
fun add_def thyname (name, t) = (case dest t of |
509 |
NONE => I |
|
28674 | 510 |
| SOME _ => (case dest (prep_def (Thm.axiom thy name)) of |
21056 | 511 |
NONE => I |
512 |
| SOME (s, (T, (args, rhs))) => Symtab.map_default (s, []) |
|
513 |
(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
|
514 |
in |
21056 | 515 |
fold (fn (thyname, axms) => Symtab.fold (add_def thyname) axms) axmss Symtab.empty |
11520 | 516 |
end; |
517 |
||
17412 | 518 |
fun get_defn thy defs s T = (case Symtab.lookup defs s of |
16649 | 519 |
NONE => NONE |
520 |
| SOME ds => |
|
24908
c74ad8782eeb
Codegen.is_instance: raw match, ignore sort constraints;
wenzelm
parents:
24867
diff
changeset
|
521 |
let val i = find_index (is_instance T o fst) ds |
16649 | 522 |
in if i >= 0 then |
523 |
SOME (List.nth (ds, i), if length ds = 1 then NONE else SOME i) |
|
524 |
else NONE |
|
525 |
end); |
|
526 |
||
11520 | 527 |
|
12452 | 528 |
(**** invoke suitable code generator for term / type ****) |
11520 | 529 |
|
17144 | 530 |
fun codegen_error (gr, _) dep s = |
531 |
error (s ^ "\nrequired by:\n" ^ commas (Graph.all_succs gr [dep])); |
|
532 |
||
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
533 |
fun invoke_codegen thy defs dep module brack t gr = (case get_first |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
534 |
(fn (_, f) => f thy defs dep module brack t gr) (#codegens (CodegenData.get thy)) of |
17144 | 535 |
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
|
536 |
Syntax.string_of_term_global thy t) |
15531 | 537 |
| SOME x => x); |
12452 | 538 |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
539 |
fun invoke_tycodegen thy defs dep module brack T gr = (case get_first |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
540 |
(fn (_, f) => f thy defs dep module brack T gr ) (#tycodegens (CodegenData.get thy)) of |
17144 | 541 |
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
|
542 |
Syntax.string_of_typ_global thy T) |
15531 | 543 |
| SOME x => x); |
11520 | 544 |
|
545 |
||
546 |
(**** code generator for mixfix expressions ****) |
|
547 |
||
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
548 |
fun parens p = Pretty.block [str "(", p, str ")"]; |
11520 | 549 |
|
550 |
fun pretty_fn [] p = [p] |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
551 |
| pretty_fn (x::xs) p = str ("fn " ^ x ^ " =>") :: |
11520 | 552 |
Pretty.brk 1 :: pretty_fn xs p; |
553 |
||
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
554 |
fun pretty_mixfix _ _ [] [] _ = [] |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
555 |
| 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
|
556 |
p :: pretty_mixfix module module' ms ps qs |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
557 |
| pretty_mixfix module module' (Ignore :: ms) ps qs = |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
558 |
pretty_mixfix module module' ms ps qs |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
559 |
| pretty_mixfix module module' (Module :: ms) ps qs = |
17144 | 560 |
(if module <> module' |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
561 |
then cons (str (module' ^ ".")) else I) |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
562 |
(pretty_mixfix module module' ms ps qs) |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
563 |
| 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
|
564 |
p :: pretty_mixfix module module' ms ps qs |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
565 |
| 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
|
566 |
q :: pretty_mixfix module module' ms ps qs; |
11520 | 567 |
|
18102 | 568 |
fun replace_quotes [] [] = [] |
569 |
| replace_quotes xs (Arg :: ms) = |
|
570 |
Arg :: replace_quotes xs ms |
|
571 |
| replace_quotes xs (Ignore :: ms) = |
|
572 |
Ignore :: replace_quotes xs ms |
|
573 |
| replace_quotes xs (Module :: ms) = |
|
574 |
Module :: replace_quotes xs ms |
|
575 |
| replace_quotes xs (Pretty p :: ms) = |
|
576 |
Pretty p :: replace_quotes xs ms |
|
577 |
| replace_quotes (x::xs) (Quote _ :: ms) = |
|
578 |
Quote x :: replace_quotes xs ms; |
|
579 |
||
11520 | 580 |
|
12452 | 581 |
(**** default code generators ****) |
11520 | 582 |
|
583 |
fun eta_expand t ts i = |
|
584 |
let |
|
24456 | 585 |
val k = length ts; |
586 |
val Ts = Library.drop (k, binder_types (fastype_of t)); |
|
587 |
val j = i - k |
|
11520 | 588 |
in |
23178 | 589 |
List.foldr (fn (T, t) => Abs ("x", T, t)) |
15574
b1d1b5bfc464
Removed practically all references to Library.foldr.
skalberg
parents:
15570
diff
changeset
|
590 |
(list_comb (t, ts @ map Bound (j-1 downto 0))) (Library.take (j, Ts)) |
11520 | 591 |
end; |
592 |
||
593 |
fun mk_app _ p [] = p |
|
594 |
| 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
|
595 |
Pretty.block (str "(" :: |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
596 |
separate (Pretty.brk 1) (p :: ps) @ [str ")"]) |
11520 | 597 |
else Pretty.block (separate (Pretty.brk 1) (p :: ps)); |
598 |
||
20071
8f3e1ddb50e6
replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents:
19806
diff
changeset
|
599 |
fun new_names t xs = Name.variant_list |
29266 | 600 |
(map (fst o fst o dest_Var) (OldTerm.term_vars t) union |
29270
0eade173f77e
moved old add_type_XXX, add_term_XXX etc. to structure OldTerm;
wenzelm
parents:
29266
diff
changeset
|
601 |
OldTerm.add_term_names (t, ML_Syntax.reserved_names)) (map mk_id xs); |
11520 | 602 |
|
603 |
fun new_name t x = hd (new_names t [x]); |
|
604 |
||
20665 | 605 |
fun if_library x y = if member (op =) (!mode) "library" then x else y; |
17144 | 606 |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
607 |
fun default_codegen thy defs dep module brack t gr = |
11520 | 608 |
let |
609 |
val (u, ts) = strip_comb t; |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
610 |
fun codegens brack = fold_map (invoke_codegen thy defs dep module brack) |
11520 | 611 |
in (case u of |
14105 | 612 |
Var ((s, i), T) => |
613 |
let |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
614 |
val (ps, gr') = codegens true ts gr; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
615 |
val (_, gr'') = invoke_tycodegen thy defs dep module false T gr' |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
616 |
in SOME (mk_app brack (str (s ^ |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
617 |
(if i=0 then "" else string_of_int i))) ps, gr'') |
11520 | 618 |
end |
619 |
||
14105 | 620 |
| Free (s, T) => |
621 |
let |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
622 |
val (ps, gr') = codegens true ts gr; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
623 |
val (_, gr'') = invoke_tycodegen thy defs dep module false T gr' |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
624 |
in SOME (mk_app brack (str s) ps, gr'') end |
11520 | 625 |
|
626 |
| Const (s, T) => |
|
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
627 |
(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
|
628 |
SOME (ms, aux) => |
18281 | 629 |
let val i = num_args_of ms |
11520 | 630 |
in if length ts < i then |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
631 |
default_codegen thy defs dep module brack (eta_expand u ts i) gr |
11520 | 632 |
else |
633 |
let |
|
12452 | 634 |
val (ts1, ts2) = args_of ms ts; |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
635 |
val (ps1, gr1) = codegens false ts1 gr; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
636 |
val (ps2, gr2) = codegens true ts2 gr1; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
637 |
val (ps3, gr3) = codegens false (quotes_of ms) gr2; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
638 |
val (_, gr4) = invoke_tycodegen thy defs dep module false |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
639 |
(funpow (length ts) (hd o tl o snd o dest_Type) T) gr3; |
17144 | 640 |
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
|
641 |
NONE => (if_library (thyname_of_const thy s) module, "") |
17144 | 642 |
| SOME ((U, (module', _)), NONE) => |
643 |
(if_library module' module, "") |
|
644 |
| SOME ((U, (module', _)), SOME i) => |
|
645 |
(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
|
646 |
val node_id = s ^ suffix; |
17144 | 647 |
fun p module' = mk_app brack (Pretty.block |
648 |
(pretty_mixfix module module' ms ps1 ps3)) ps2 |
|
17549 | 649 |
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
|
650 |
NONE => (case get_aux_code aux of |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
651 |
[] => (p module, gr4) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
652 |
| xs => (p module', add_edge (node_id, dep) (new_node |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
653 |
(node_id, (NONE, module', cat_lines xs ^ "\n")) gr4))) |
17144 | 654 |
| SOME (_, module'', _) => |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
655 |
(p module'', add_edge (node_id, dep) gr4)) |
11520 | 656 |
end |
657 |
end |
|
16649 | 658 |
| NONE => (case get_defn thy defs s T of |
15531 | 659 |
NONE => NONE |
17144 | 660 |
| SOME ((U, (thyname, (args, rhs))), k) => |
11520 | 661 |
let |
17144 | 662 |
val module' = if_library thyname module; |
663 |
val suffix = (case k of NONE => "" | SOME i => " def" ^ string_of_int i); |
|
16649 | 664 |
val node_id = s ^ suffix; |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
665 |
val ((ps, def_id), gr') = gr |> codegens true ts |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
666 |
||>> mk_const_id module' (s ^ suffix); |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
667 |
val p = mk_app brack (str (mk_qual_id module def_id)) ps |
17144 | 668 |
in SOME (case try (get_node gr') node_id of |
669 |
NONE => |
|
670 |
let |
|
671 |
val _ = message ("expanding definition of " ^ s); |
|
18788
4f4ed2a01152
Fixed bug in code generator for primitive definitions that
berghofe
parents:
18728
diff
changeset
|
672 |
val (Ts, _) = strip_type U; |
17144 | 673 |
val (args', rhs') = |
674 |
if not (null args) orelse null Ts then (args, rhs) else |
|
675 |
let val v = Free (new_name rhs "x", hd Ts) |
|
676 |
in ([v], betapply (rhs, v)) end; |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
677 |
val (p', gr1) = invoke_codegen thy defs node_id module' false |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
678 |
rhs' (add_edge (node_id, dep) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
679 |
(new_node (node_id, (NONE, "", "")) gr')); |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
680 |
val (xs, gr2) = codegens false args' gr1; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
681 |
val (_, gr3) = invoke_tycodegen thy defs dep module false T gr2; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
682 |
val (ty, gr4) = invoke_tycodegen thy defs node_id module' false U gr3; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
683 |
in (p, map_node node_id (K (NONE, module', string_of |
17144 | 684 |
(Pretty.block (separate (Pretty.brk 1) |
685 |
(if null args' then |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
686 |
[str ("val " ^ snd def_id ^ " :"), ty] |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
687 |
else str ("fun " ^ snd def_id) :: xs) @ |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
688 |
[str " =", Pretty.brk 1, p', str ";"])) ^ "\n\n")) gr4) |
17144 | 689 |
end |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
690 |
| SOME _ => (p, add_edge (node_id, dep) gr')) |
11520 | 691 |
end)) |
692 |
||
693 |
| Abs _ => |
|
694 |
let |
|
695 |
val (bs, Ts) = ListPair.unzip (strip_abs_vars u); |
|
696 |
val t = strip_abs_body u |
|
697 |
val bs' = new_names t bs; |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
698 |
val (ps, gr1) = codegens true ts gr; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
699 |
val (p, gr2) = invoke_codegen thy defs dep module false |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
700 |
(subst_bounds (map Free (rev (bs' ~~ Ts)), t)) gr1; |
11520 | 701 |
in |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
702 |
SOME (mk_app brack (Pretty.block (str "(" :: pretty_fn bs' p @ |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
703 |
[str ")"])) ps, gr2) |
11520 | 704 |
end |
705 |
||
15531 | 706 |
| _ => NONE) |
11520 | 707 |
end; |
708 |
||
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
709 |
fun default_tycodegen thy defs dep module brack (TVar ((s, i), _)) gr = |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
710 |
SOME (str (s ^ (if i = 0 then "" else string_of_int i)), gr) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
711 |
| default_tycodegen thy defs dep module brack (TFree (s, _)) gr = |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
712 |
SOME (str s, gr) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
713 |
| default_tycodegen thy defs dep module brack (Type (s, Ts)) gr = |
17521 | 714 |
(case AList.lookup (op =) ((#types o CodegenData.get) thy) s of |
15531 | 715 |
NONE => NONE |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
716 |
| SOME (ms, aux) => |
12452 | 717 |
let |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
718 |
val (ps, gr') = fold_map |
17144 | 719 |
(invoke_tycodegen thy defs dep module false) |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
720 |
(fst (args_of ms Ts)) gr; |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
721 |
val (qs, gr'') = fold_map |
17144 | 722 |
(invoke_tycodegen thy defs dep module false) |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
723 |
(quotes_of ms) gr'; |
27398
768da1da59d6
simplified retrieval of theory names of consts and types
haftmann
parents:
27353
diff
changeset
|
724 |
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
|
725 |
val node_id = s ^ " (type)"; |
17144 | 726 |
fun p module' = Pretty.block (pretty_mixfix module module' ms ps qs) |
727 |
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
|
728 |
NONE => (case get_aux_code aux of |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
729 |
[] => (p module', gr'') |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
730 |
| xs => (p module', snd (mk_type_id module' s |
17144 | 731 |
(add_edge (node_id, dep) (new_node (node_id, |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
732 |
(NONE, module', cat_lines xs ^ "\n")) gr''))))) |
17144 | 733 |
| SOME (_, module'', _) => |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
734 |
(p module'', add_edge (node_id, dep) gr'')) |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
735 |
end); |
12452 | 736 |
|
25892
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
737 |
fun mk_tuple [p] = p |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
738 |
| mk_tuple ps = Pretty.block (str "(" :: |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
739 |
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
|
740 |
[str ")"]); |
25892
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
741 |
|
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
742 |
fun mk_let bindings body = |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
743 |
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
|
744 |
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
|
745 |
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
|
746 |
rhs, str ";"]) bindings)), |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
747 |
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
|
748 |
Pretty.brk 1, str "end"]); |
25892
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
749 |
|
16649 | 750 |
fun mk_struct name s = "structure " ^ name ^ " =\nstruct\n\n" ^ s ^ "end;\n"; |
751 |
||
28227 | 752 |
fun add_to_module name s = AList.map_entry (op =) (name : string) (suffix s); |
16649 | 753 |
|
17144 | 754 |
fun output_code gr module xs = |
16649 | 755 |
let |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
756 |
val code = map_filter (fn s => |
17144 | 757 |
let val c as (_, module', _) = Graph.get_node gr s |
758 |
in if module = "" orelse module = module' then SOME (s, c) else NONE end) |
|
759 |
(rev (Graph.all_preds gr xs)); |
|
16649 | 760 |
fun string_of_cycle (a :: b :: cs) = |
761 |
let val SOME (x, y) = get_first (fn (x, (_, a', _)) => |
|
762 |
if a = a' then Option.map (pair x) |
|
28375 | 763 |
(find_first ((fn (_, b', _) => b' = b) o Graph.get_node gr) |
16649 | 764 |
(Graph.imm_succs gr x)) |
765 |
else NONE) code |
|
766 |
in x ^ " called by " ^ y ^ "\n" ^ string_of_cycle (b :: cs) end |
|
767 |
| string_of_cycle _ = "" |
|
768 |
in |
|
17144 | 769 |
if module = "" then |
16649 | 770 |
let |
19046
bc5c6c9b114e
removed distinct, renamed gen_distinct to distinct;
wenzelm
parents:
18977
diff
changeset
|
771 |
val modules = distinct (op =) (map (#2 o snd) code); |
23178 | 772 |
val mod_gr = fold_rev Graph.add_edge_acyclic |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
773 |
(maps (fn (s, (_, module, _)) => map (pair module) |
28375 | 774 |
(filter_out (fn s => s = module) (map (#2 o Graph.get_node gr) |
23178 | 775 |
(Graph.imm_succs gr s)))) code) |
776 |
(fold_rev (Graph.new_node o rpair ()) modules Graph.empty); |
|
16649 | 777 |
val modules' = |
778 |
rev (Graph.all_preds mod_gr (map (#2 o Graph.get_node gr) xs)) |
|
779 |
in |
|
23178 | 780 |
List.foldl (fn ((_, (_, module, s)), ms) => add_to_module module s ms) |
16649 | 781 |
(map (rpair "") modules') code |
782 |
end handle Graph.CYCLES (cs :: _) => |
|
783 |
error ("Cyclic dependency of modules:\n" ^ commas cs ^ |
|
784 |
"\n" ^ string_of_cycle cs) |
|
17144 | 785 |
else [(module, implode (map (#3 o snd) code))] |
16649 | 786 |
end; |
11520 | 787 |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
788 |
fun gen_generate_code prep_term thy modules module xs = |
11520 | 789 |
let |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
21836
diff
changeset
|
790 |
val _ = (module <> "" orelse |
28375 | 791 |
member (op =) (!mode) "library" andalso forall (fn (s, _) => s = "") xs) |
21858
05f57309170c
avoid conflict with Alice keywords: renamed pack -> implode, unpack -> explode, any -> many, avoided assert;
wenzelm
parents:
21836
diff
changeset
|
792 |
orelse error "missing module name"; |
17144 | 793 |
val graphs = get_modules thy; |
16649 | 794 |
val defs = mk_deftab thy; |
17144 | 795 |
val gr = new_node ("<Top>", (NONE, module, "")) |
23178 | 796 |
(List.foldl (fn ((gr, (tab1, tab2)), (gr', (tab1', tab2'))) => |
17144 | 797 |
(Graph.merge (fn ((_, module, _), (_, module', _)) => |
798 |
module = module') (gr, gr'), |
|
799 |
(merge_nametabs (tab1, tab1'), merge_nametabs (tab2, tab2')))) emptygr |
|
17412 | 800 |
(map (fn s => case Symtab.lookup graphs s of |
17144 | 801 |
NONE => error ("Undefined code module: " ^ s) |
802 |
| SOME gr => gr) modules)) |
|
23655
d2d1138e0ddc
replaced exception TableFun/GraphFun.DUPS by TableFun/GraphFun.DUP;
wenzelm
parents:
23178
diff
changeset
|
803 |
handle Graph.DUP k => error ("Duplicate code for " ^ k); |
16649 | 804 |
fun expand (t as Abs _) = t |
805 |
| expand t = (case fastype_of t of |
|
806 |
Type ("fun", [T, U]) => Abs ("x", T, t $ Bound 0) | _ => t); |
|
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
807 |
val (ps, gr') = fold_map (fn (s, t) => fn gr => apfst (pair s) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
808 |
(invoke_codegen thy defs "<Top>" module false t gr)) |
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
809 |
(map (apsnd (expand o preprocess_term thy o prep_term thy)) xs) gr; |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
810 |
val code = map_filter |
17144 | 811 |
(fn ("", _) => NONE |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
812 |
| (s', p) => SOME (string_of (Pretty.block |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
813 |
[str ("val " ^ s' ^ " ="), Pretty.brk 1, p, str ";"]))) ps; |
17144 | 814 |
val code' = space_implode "\n\n" code ^ "\n\n"; |
815 |
val code'' = |
|
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
816 |
map_filter (fn (name, s) => |
20665 | 817 |
if member (op =) (!mode) "library" andalso name = module andalso null code |
17144 | 818 |
then NONE |
819 |
else SOME (name, mk_struct name s)) |
|
820 |
((if null code then I |
|
821 |
else add_to_module module code') |
|
822 |
(output_code (fst gr') (if_library "" module) ["<Top>"])) |
|
16649 | 823 |
in |
17144 | 824 |
(code'', del_nodes ["<Top>"] gr') |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
825 |
end; |
11520 | 826 |
|
22680
31a2303f4283
cleaned/simplified Sign.read_typ, Thm.read_cterm etc.;
wenzelm
parents:
22596
diff
changeset
|
827 |
val generate_code_i = gen_generate_code Sign.cert_term; |
27251 | 828 |
val generate_code = gen_generate_code OldGoals.read_term; |
11520 | 829 |
|
12452 | 830 |
|
13753
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
831 |
(**** Reflection ****) |
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
832 |
|
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
833 |
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
|
834 |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
835 |
fun pretty_list xs = Pretty.block (str "[" :: |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
836 |
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
|
837 |
[str "]"]); |
13753
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
838 |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
839 |
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
|
840 |
(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
|
841 |
| 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
|
842 |
| 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
|
843 |
[str "Type", Pretty.brk 1, str ("(\"" ^ s ^ "\","), |
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
844 |
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
|
845 |
|
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
846 |
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
|
847 |
(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
|
848 |
| mk_term_of gr module p (TFree (s, _)) = str (strip_tname s ^ "F") |
17144 | 849 |
| mk_term_of gr module p (Type (s, Ts)) = (if p then parens else I) |
16649 | 850 |
(Pretty.block (separate (Pretty.brk 1) |
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
851 |
(str (mk_qual_id module |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
852 |
(get_type_id' (fn s' => "term_of_" ^ s') gr s)) :: |
19482
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
853 |
maps (fn T => |
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
wenzelm
parents:
19473
diff
changeset
|
854 |
[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
|
855 |
|
38b76f457b9c
- Added mode reference variable (may be used to switch on and off specific
berghofe
parents:
13731
diff
changeset
|
856 |
|
14105 | 857 |
(**** Test data generators ****) |
858 |
||
26974
83adc1eaeaab
Replaced Pretty.str and Pretty.string_of by specific functions that
berghofe
parents:
26939
diff
changeset
|
859 |
fun mk_gen gr module p xs a (TVar ((s, i), _)) = str |
14105 | 860 |
(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
|
861 |
| 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
|
862 |
| mk_gen gr module p xs a (Type (tyc as (s, Ts))) = (if p then parens else I) |
16649 | 863 |
(Pretty.block (separate (Pretty.brk 1) |
28537
1e84256d1a8a
established canonical argument order in SML code generators
haftmann
parents:
28375
diff
changeset
|
864 |
(str (mk_qual_id module (get_type_id' (fn s' => "gen_" ^ s') gr s) ^ |
20665 | 865 |
(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
|
866 |
(case tyc of |
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
867 |
("fun", [T, U]) => |
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
868 |
[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
|
869 |
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
|
870 |
| _ => maps (fn T => |
3ff9d646a66a
Test data generation and conversion to terms are now more closely
berghofe
parents:
25400
diff
changeset
|
871 |
[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
|
872 |
(if member (op =) xs s then [str a] else [])))); |
14105 | 873 |
|
15531 | 874 |
val test_fn : (int -> (string * term) list option) ref = ref (fn _ => NONE); |
14105 | 875 |
|
28315 | 876 |
fun test_term ctxt t = |
28309 | 877 |
let |
878 |
val thy = ProofContext.theory_of ctxt; |
|
879 |
val (code, gr) = setmp mode ["term_of", "test"] |
|
880 |
(generate_code_i thy [] "Generated") [("testf", t)]; |
|
881 |
val frees = Name.names Name.context "a" ((map snd o fst o strip_abs) t); |
|
882 |
val frees' = frees ~~ |
|
883 |
map (fn i => "arg" ^ string_of_int i) (1 upto length frees); |
|
884 |
val s = "structure TestTerm =\nstruct\n\n" ^ |
|
885 |
cat_lines (map snd code) ^ |
|
886 |
"\nopen Generated;\n\n" ^ string_of |
|
887 |
(Pretty.block [str "val () = Codegen.test_fn :=", |
|
888 |
Pretty.brk 1, str ("(fn i =>"), Pretty.brk 1, |
|
889 |
mk_let (map (fn ((s, T), s') => |
|
890 |
(mk_tuple [str s', str (s' ^ "_t")], |
|
891 |
Pretty.block [mk_gen gr "Generated" false [] "" T, Pretty.brk 1, |
|
31153 | 892 |
str "i"])) frees') |
28309 | 893 |
(Pretty.block [str "if ", |
894 |
mk_app false (str "testf") (map (str o snd) frees'), |
|
895 |
Pretty.brk 1, str "then NONE", |
|
896 |
Pretty.brk 1, str "else ", |
|
897 |
Pretty.block [str "SOME ", Pretty.block (str "[" :: |
|
898 |
flat (separate [str ",", Pretty.brk 1] |
|
899 |
(map (fn ((s, T), s') => [Pretty.block |
|
900 |
[str ("(" ^ quote (Symbol.escape s) ^ ","), Pretty.brk 1, |
|
901 |
str (s' ^ "_t ())")]]) frees')) @ |
|
902 |
[str "]"])]]), |
|
903 |
str ");"]) ^ |
|
904 |
"\n\nend;\n"; |
|
905 |
val _ = ML_Context.eval_in (SOME ctxt) false Position.none s; |
|
906 |
in ! test_fn #> (Option.map o map) snd end; |
|
907 |
||
24456 | 908 |
|
14105 | 909 |
|
17549 | 910 |
(**** Evaluator for terms ****) |
911 |
||
24655
24b630fd008f
- eval_term no longer computes result during compile time
berghofe
parents:
24634
diff
changeset
|
912 |
val eval_result = ref (fn () => Bound 0); |
17549 | 913 |
|
25009
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
wenzelm
parents:
24920
diff
changeset
|
914 |
fun eval_term thy t = |
28271
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
915 |
let |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
916 |
val ctxt = ProofContext.init thy; |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
917 |
val e = |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
918 |
let |
29266 | 919 |
val _ = (null (Term.add_tvars t []) andalso null (Term.add_tfrees t [])) orelse |
28271
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
920 |
error "Term to be evaluated contains type variables"; |
29266 | 921 |
val _ = (null (Term.add_vars t []) andalso null (Term.add_frees t [])) orelse |
28271
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
922 |
error "Term to be evaluated contains variables"; |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
923 |
val (code, gr) = setmp mode ["term_of"] |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
924 |
(generate_code_i thy [] "Generated") |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
925 |
[("result", Abs ("x", TFree ("'a", []), t))]; |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
926 |
val s = "structure EvalTerm =\nstruct\n\n" ^ |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
927 |
cat_lines (map snd code) ^ |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
928 |
"\nopen Generated;\n\n" ^ string_of |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
929 |
(Pretty.block [str "val () = Codegen.eval_result := (fn () =>", |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
930 |
Pretty.brk 1, |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
931 |
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
|
932 |
[str "(result ())"], |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
933 |
str ");"]) ^ |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
934 |
"\n\nend;\n"; |
28293 | 935 |
val _ = NAMED_CRITICAL "codegen" (fn () => |
936 |
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
|
937 |
in !eval_result end; |
25009
61946780de00
eval_term: moved actual evaluation out of CRITICAL section;
wenzelm
parents:
24920
diff
changeset
|
938 |
in e () end; |
17549 | 939 |
|
28293 | 940 |
val (_, evaluation_conv) = Context.>>> (Context.map_theory_result |
30288
a32700e45ab3
Thm.add_oracle interface: replaced old bstring by binding;
wenzelm
parents:
29270
diff
changeset
|
941 |
(Thm.add_oracle (Binding.name "evaluation", fn ct => |
28293 | 942 |
let |
943 |
val thy = Thm.theory_of_cterm ct; |
|
944 |
val t = Thm.term_of ct; |
|
945 |
in Thm.cterm_of thy (Logic.mk_equals (t, eval_term thy t)) end))); |
|
20599 | 946 |
|
17549 | 947 |
|
12452 | 948 |
(**** Interface ****) |
949 |
||
11520 | 950 |
fun parse_mixfix rd s = |
951 |
(case Scan.finite Symbol.stopper (Scan.repeat |
|
952 |
( $$ "_" >> K Arg |
|
953 |
|| $$ "?" >> K Ignore |
|
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
954 |
|| $$ "\\<module>" >> K Module |
11520 | 955 |
|| $$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length) |
956 |
|| $$ "{" |-- $$ "*" |-- Scan.repeat1 |
|
23784
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
wenzelm
parents:
23655
diff
changeset
|
957 |
( $$ "'" |-- 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
|
958 |
|| Scan.unless ($$ "*" -- $$ "}") (Scan.one Symbol.is_regular)) --| |
12452 | 959 |
$$ "*" --| $$ "}" >> (Quote o rd o implode) |
11520 | 960 |
|| Scan.repeat1 |
23784
75e6b9dd5336
Symbol.not_eof/sync is superceded by Symbol.is_regular (rules out further control symbols);
wenzelm
parents:
23655
diff
changeset
|
961 |
( $$ "'" |-- Scan.one Symbol.is_regular |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
962 |
|| 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
|
963 |
(Scan.one Symbol.is_regular)) >> (Pretty o str o implode))) |
11520 | 964 |
(Symbol.explode s) of |
965 |
(p, []) => p |
|
966 |
| _ => error ("Malformed annotation: " ^ quote s)); |
|
967 |
||
15801 | 968 |
|
17057 | 969 |
structure P = OuterParse and K = OuterKeyword; |
11520 | 970 |
|
27353
71c4dd53d4cb
moved global keywords from OuterSyntax to OuterKeyword, tuned interfaces;
wenzelm
parents:
27302
diff
changeset
|
971 |
val _ = List.app OuterKeyword.keyword ["attach", "file", "contains"]; |
24867 | 972 |
|
28375 | 973 |
fun strip_whitespace s = implode (fst (take_suffix (fn c => c = "\n" orelse c = " ") |
974 |
(snd (take_prefix (fn c => c = "\n" orelse c = " ") (explode s))))) ^ "\n"; |
|
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
975 |
|
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
976 |
val parse_attach = Scan.repeat (P.$$$ "attach" |-- |
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
977 |
Scan.optional (P.$$$ "(" |-- P.xname --| P.$$$ ")") "" -- |
17144 | 978 |
(P.verbatim >> strip_whitespace)); |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
979 |
|
24867 | 980 |
val _ = |
11520 | 981 |
OuterSyntax.command "types_code" |
11546 | 982 |
"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
|
983 |
(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
|
984 |
(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
|
985 |
(fn ((name, mfx), aux) => (name, (parse_mixfix |
24707 | 986 |
(Syntax.read_typ_global thy) mfx, aux)))) xs thy))); |
11520 | 987 |
|
24867 | 988 |
val _ = |
11520 | 989 |
OuterSyntax.command "consts_code" |
11546 | 990 |
"associate constants with target language code" K.thy_decl |
11520 | 991 |
(Scan.repeat1 |
22921
475ff421a6a3
consts in consts_code Isar commands are now referred to by usual term syntax
haftmann
parents:
22846
diff
changeset
|
992 |
(P.term --| |
16769
7f188f2127f7
Implemented mechanism for attaching auxiliary code to consts_code and
berghofe
parents:
16649
diff
changeset
|
993 |
P.$$$ "(" -- P.string --| P.$$$ ")" -- parse_attach) >> |
25376
87824cc5ff90
auto_quickcheck ref: set default in ProofGeneral/preferences only
wenzelm
parents:
25367
diff
changeset
|
994 |
(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
|
995 |
(fn ((const, mfx), aux) => |
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
996 |
(const, (parse_mixfix (Syntax.read_term_global thy) mfx, aux)))) xs thy))); |
11520 | 997 |
|
17144 | 998 |
fun parse_code lib = |
999 |
Scan.optional (P.$$$ "(" |-- P.enum "," P.xname --| P.$$$ ")") (!mode) -- |
|
1000 |
(if lib then Scan.optional P.name "" else P.name) -- |
|
1001 |
Scan.option (P.$$$ "file" |-- P.name) -- |
|
1002 |
(if lib then Scan.succeed [] |
|
1003 |
else Scan.optional (P.$$$ "imports" |-- Scan.repeat1 P.name) []) --| |
|
1004 |
P.$$$ "contains" -- |
|
1005 |
( Scan.repeat1 (P.name --| P.$$$ "=" -- P.term) |
|
1006 |
|| Scan.repeat1 (P.term >> pair "")) >> |
|
1007 |
(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
|
1008 |
let |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1009 |
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
|
1010 |
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
|
1011 |
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
|
1012 |
(case opt_fname of |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1013 |
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
|
1014 |
| SOME fname => |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1015 |
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
|
1016 |
(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
|
1017 |
(("ROOT", implode (map (fn (name, _) => |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1018 |
"use \"" ^ name ^ ".ML\";\n") code)) :: code) |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1019 |
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
|
1020 |
in |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1021 |
if lib then thy' |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1022 |
else map_modules (Symtab.update (module, gr)) thy' |
0e1b07ded55f
simplified ML_Context.eval_in -- expect immutable Proof.context value;
wenzelm
parents:
28227
diff
changeset
|
1023 |
end)); |
17144 | 1024 |
|
28227 | 1025 |
val setup = add_codegen "default" default_codegen |
1026 |
#> add_tycodegen "default" default_tycodegen |
|
28640
188e9557c572
- removed test_params from CodegenData (now in Pure/Tools/quickcheck.ML)
berghofe
parents:
28537
diff
changeset
|
1027 |
#> add_preprocessor unfold_preprocessor; |
28227 | 1028 |
|
24867 | 1029 |
val _ = |
17144 | 1030 |
OuterSyntax.command "code_library" |
1031 |
"generates code for terms (one structure for each theory)" K.thy_decl |
|
1032 |
(parse_code true); |
|
1033 |
||
24867 | 1034 |
val _ = |
17144 | 1035 |
OuterSyntax.command "code_module" |
1036 |
"generates code for terms (single structure, incremental)" K.thy_decl |
|
1037 |
(parse_code false); |
|
11520 | 1038 |
|
1039 |
end; |