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