author | haftmann |
Wed, 13 Jan 2010 10:18:45 +0100 | |
changeset 34893 | ecdc526af73a |
parent 34248 | 6fb7dd3fd81a |
child 36121 | 86b952fc31da |
permissions | -rw-r--r-- |
24219 | 1 |
(* Title: Tools/code/code_target.ML |
2 |
Author: Florian Haftmann, TU Muenchen |
|
3 |
||
28054 | 4 |
Serializer from intermediate language ("Thin-gol") to target languages. |
24219 | 5 |
*) |
6 |
||
7 |
signature CODE_TARGET = |
|
8 |
sig |
|
28054 | 9 |
type serializer |
34152 | 10 |
type literals = Code_Printer.literals |
28064 | 11 |
val add_target: string * (serializer * literals) -> theory -> theory |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
12 |
val extend_target: string * |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
13 |
(string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program)) |
28054 | 14 |
-> theory -> theory |
15 |
val assert_target: theory -> string -> string |
|
24219 | 16 |
|
28054 | 17 |
type destination |
18 |
type serialization |
|
19 |
val parse_args: (OuterLex.token list -> 'a * OuterLex.token list) |
|
20 |
-> OuterLex.token list -> 'a |
|
21 |
val stmt_names_of_destination: destination -> string list |
|
22 |
val mk_serialization: string -> ('a -> unit) option |
|
23 |
-> (Path.T option -> 'a -> unit) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
24 |
-> ('a -> string * string option list) |
28054 | 25 |
-> 'a -> serialization |
34071 | 26 |
val serialize: theory -> string -> int option -> string option -> OuterLex.token list |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
27 |
-> Code_Thingol.naming -> Code_Thingol.program -> string list -> serialization |
28064 | 28 |
val serialize_custom: theory -> string * (serializer * literals) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
29 |
-> Code_Thingol.naming -> Code_Thingol.program -> string list -> string * string option list |
28090
29af3c712d2b
distributed literal code generation out of central infrastructure
haftmann
parents:
28064
diff
changeset
|
30 |
val the_literals: theory -> string -> literals |
28054 | 31 |
val compile: serialization -> unit |
32 |
val export: serialization -> unit |
|
33 |
val file: Path.T -> serialization -> unit |
|
34 |
val string: string list -> serialization -> string |
|
34071 | 35 |
val code_of: theory -> string -> int option -> string |
28690 | 36 |
-> string list -> (Code_Thingol.naming -> string list) -> string |
34071 | 37 |
val set_default_code_width: int -> theory -> theory |
30494
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
38 |
val shell_command: string (*theory name*) -> string (*export_code expr*) -> unit |
28054 | 39 |
|
40 |
val allow_abort: string -> theory -> theory |
|
34152 | 41 |
type tyco_syntax = Code_Printer.tyco_syntax |
42 |
type proto_const_syntax = Code_Printer.proto_const_syntax |
|
28690 | 43 |
val add_syntax_class: string -> class -> string option -> theory -> theory |
34071 | 44 |
val add_syntax_inst: string -> class * string -> unit option -> theory -> theory |
28054 | 45 |
val add_syntax_tyco: string -> string -> tyco_syntax option -> theory -> theory |
31056
01ac77eb660b
robustifed infrastructure for complex term syntax during code generation
haftmann
parents:
31036
diff
changeset
|
46 |
val add_syntax_const: string -> string -> proto_const_syntax option -> theory -> theory |
28054 | 47 |
val add_reserved: string -> string -> theory -> theory |
33969 | 48 |
val add_include: string -> string * (string * string list) option -> theory -> theory |
24219 | 49 |
end; |
50 |
||
28054 | 51 |
structure Code_Target : CODE_TARGET = |
24219 | 52 |
struct |
53 |
||
28054 | 54 |
open Basic_Code_Thingol; |
34152 | 55 |
|
56 |
type literals = Code_Printer.literals; |
|
57 |
type tyco_syntax = Code_Printer.tyco_syntax; |
|
58 |
type proto_const_syntax = Code_Printer.proto_const_syntax; |
|
59 |
||
24219 | 60 |
|
61 |
(** basics **) |
|
62 |
||
27304 | 63 |
datatype destination = Compile | Export | File of Path.T | String of string list; |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
64 |
type serialization = destination -> (string * string option list) option; |
27014
a5f53d9d2b60
yet another attempt to circumvent printmode problems
haftmann
parents:
27001
diff
changeset
|
65 |
|
34071 | 66 |
fun compile f = (f Compile; ()); |
67 |
fun export f = (f Export; ()); |
|
68 |
fun file p f = (f (File p); ()); |
|
69 |
fun string stmts f = fst (the (f (String stmts))); |
|
27304 | 70 |
|
71 |
fun stmt_names_of_destination (String stmts) = stmts |
|
72 |
| stmt_names_of_destination _ = []; |
|
27014
a5f53d9d2b60
yet another attempt to circumvent printmode problems
haftmann
parents:
27001
diff
changeset
|
73 |
|
28054 | 74 |
fun mk_serialization target (SOME comp) _ _ code Compile = (comp code; NONE) |
75 |
| mk_serialization target NONE _ _ _ Compile = error (target ^ ": no internal compilation") |
|
76 |
| mk_serialization target _ output _ code Export = (output NONE code ; NONE) |
|
77 |
| mk_serialization target _ output _ code (File file) = (output (SOME file) code; NONE) |
|
78 |
| mk_serialization target _ _ string code (String _) = SOME (string code); |
|
27550 | 79 |
|
24219 | 80 |
|
28054 | 81 |
(** theory data **) |
82 |
||
83 |
datatype name_syntax_table = NameSyntaxTable of { |
|
28690 | 84 |
class: string Symtab.table, |
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30513
diff
changeset
|
85 |
instance: unit Symreltab.table, |
34152 | 86 |
tyco: Code_Printer.tyco_syntax Symtab.table, |
87 |
const: Code_Printer.proto_const_syntax Symtab.table |
|
28054 | 88 |
}; |
27000 | 89 |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
90 |
fun mk_name_syntax_table ((class, instance), (tyco, const)) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
91 |
NameSyntaxTable { class = class, instance = instance, tyco = tyco, const = const }; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
92 |
fun map_name_syntax_table f (NameSyntaxTable { class, instance, tyco, const }) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
93 |
mk_name_syntax_table (f ((class, instance), (tyco, const))); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
94 |
fun merge_name_syntax_table (NameSyntaxTable { class = class1, instance = instance1, tyco = tyco1, const = const1 }, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
95 |
NameSyntaxTable { class = class2, instance = instance2, tyco = tyco2, const = const2 }) = |
28054 | 96 |
mk_name_syntax_table ( |
97 |
(Symtab.join (K snd) (class1, class2), |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30513
diff
changeset
|
98 |
Symreltab.join (K snd) (instance1, instance2)), |
28054 | 99 |
(Symtab.join (K snd) (tyco1, tyco2), |
100 |
Symtab.join (K snd) (const1, const2)) |
|
101 |
); |
|
102 |
||
103 |
type serializer = |
|
104 |
string option (*module name*) |
|
30513 | 105 |
-> OuterLex.token list (*arguments*) |
28054 | 106 |
-> (string -> string) (*labelled_name*) |
107 |
-> string list (*reserved symbols*) |
|
108 |
-> (string * Pretty.T) list (*includes*) |
|
109 |
-> (string -> string option) (*module aliasses*) |
|
28690 | 110 |
-> (string -> string option) (*class syntax*) |
34152 | 111 |
-> (string -> Code_Printer.tyco_syntax option) |
112 |
-> (string -> Code_Printer.const_syntax option) |
|
34071 | 113 |
-> ((Pretty.T -> string) * (Pretty.T -> unit)) |
28054 | 114 |
-> Code_Thingol.program |
115 |
-> string list (*selected statements*) |
|
116 |
-> serialization; |
|
27000 | 117 |
|
34152 | 118 |
datatype serializer_entry = Serializer of serializer * Code_Printer.literals |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
119 |
| Extends of string * (Code_Thingol.naming -> Code_Thingol.program -> Code_Thingol.program); |
28054 | 120 |
|
121 |
datatype target = Target of { |
|
122 |
serial: serial, |
|
123 |
serializer: serializer_entry, |
|
124 |
reserved: string list, |
|
28926 | 125 |
includes: (Pretty.T * string list) Symtab.table, |
28054 | 126 |
name_syntax_table: name_syntax_table, |
127 |
module_alias: string Symtab.table |
|
128 |
}; |
|
27103 | 129 |
|
31599 | 130 |
fun make_target ((serial, serializer), ((reserved, includes), (name_syntax_table, module_alias))) = |
28054 | 131 |
Target { serial = serial, serializer = serializer, reserved = reserved, |
132 |
includes = includes, name_syntax_table = name_syntax_table, module_alias = module_alias }; |
|
133 |
fun map_target f ( Target { serial, serializer, reserved, includes, name_syntax_table, module_alias } ) = |
|
31599 | 134 |
make_target (f ((serial, serializer), ((reserved, includes), (name_syntax_table, module_alias)))); |
28054 | 135 |
fun merge_target strict target (Target { serial = serial1, serializer = serializer, |
136 |
reserved = reserved1, includes = includes1, |
|
137 |
name_syntax_table = name_syntax_table1, module_alias = module_alias1 }, |
|
138 |
Target { serial = serial2, serializer = _, |
|
139 |
reserved = reserved2, includes = includes2, |
|
140 |
name_syntax_table = name_syntax_table2, module_alias = module_alias2 }) = |
|
141 |
if serial1 = serial2 orelse not strict then |
|
31599 | 142 |
make_target ((serial1, serializer), |
28054 | 143 |
((merge (op =) (reserved1, reserved2), Symtab.merge (op =) (includes1, includes2)), |
144 |
(merge_name_syntax_table (name_syntax_table1, name_syntax_table2), |
|
145 |
Symtab.join (K snd) (module_alias1, module_alias2)) |
|
146 |
)) |
|
147 |
else |
|
148 |
error ("Incompatible serializers: " ^ quote target); |
|
27103 | 149 |
|
28054 | 150 |
fun the_serializer (Target { serializer, ... }) = serializer; |
151 |
fun the_reserved (Target { reserved, ... }) = reserved; |
|
152 |
fun the_includes (Target { includes, ... }) = includes; |
|
153 |
fun the_name_syntax (Target { name_syntax_table = NameSyntaxTable x, ... }) = x; |
|
154 |
fun the_module_alias (Target { module_alias , ... }) = module_alias; |
|
27437 | 155 |
|
34248 | 156 |
structure Targets = Theory_Data |
34071 | 157 |
( |
158 |
type T = (target Symtab.table * string list) * int; |
|
159 |
val empty = ((Symtab.empty, []), 80); |
|
160 |
val extend = I; |
|
161 |
fun merge (((target1, exc1), width1), ((target2, exc2), width2)) : T = |
|
162 |
((Symtab.join (merge_target true) (target1, target2), |
|
163 |
Library.merge (op =) (exc1, exc2)), Int.max (width1, width2)); |
|
164 |
); |
|
27436 | 165 |
|
34248 | 166 |
val abort_allowed = snd o fst o Targets.get; |
34071 | 167 |
|
34248 | 168 |
val the_default_width = snd o Targets.get; |
34071 | 169 |
|
34248 | 170 |
fun assert_target thy target = if Symtab.defined ((fst o fst) (Targets.get thy)) target |
33969 | 171 |
then target |
172 |
else error ("Unknown code target language: " ^ quote target); |
|
28054 | 173 |
|
174 |
fun put_target (target, seri) thy = |
|
27304 | 175 |
let |
34248 | 176 |
val lookup_target = Symtab.lookup ((fst o fst) (Targets.get thy)); |
28054 | 177 |
val _ = case seri |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
178 |
of Extends (super, _) => if is_some (lookup_target super) then () |
28054 | 179 |
else error ("Unknown code target language: " ^ quote super) |
180 |
| _ => (); |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
181 |
val overwriting = case (Option.map the_serializer o lookup_target) target |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
182 |
of NONE => false |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
183 |
| SOME (Extends _) => true |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
184 |
| SOME (Serializer _) => (case seri |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
185 |
of Extends _ => error ("Will not overwrite existing target " ^ quote target) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
186 |
| _ => true); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
187 |
val _ = if overwriting |
28054 | 188 |
then warning ("Overwriting existing target " ^ quote target) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
189 |
else (); |
28054 | 190 |
in |
191 |
thy |
|
34248 | 192 |
|> (Targets.map o apfst o apfst o Symtab.update) |
31599 | 193 |
(target, make_target ((serial (), seri), (([], Symtab.empty), |
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30513
diff
changeset
|
194 |
(mk_name_syntax_table ((Symtab.empty, Symreltab.empty), (Symtab.empty, Symtab.empty)), |
28054 | 195 |
Symtab.empty)))) |
196 |
end; |
|
27436 | 197 |
|
28054 | 198 |
fun add_target (target, seri) = put_target (target, Serializer seri); |
199 |
fun extend_target (target, (super, modify)) = |
|
200 |
put_target (target, Extends (super, modify)); |
|
27436 | 201 |
|
28054 | 202 |
fun map_target_data target f thy = |
27436 | 203 |
let |
28054 | 204 |
val _ = assert_target thy target; |
205 |
in |
|
206 |
thy |
|
34248 | 207 |
|> (Targets.map o apfst o apfst o Symtab.map_entry target o map_target) f |
28054 | 208 |
end; |
27304 | 209 |
|
28054 | 210 |
fun map_reserved target = |
211 |
map_target_data target o apsnd o apfst o apfst; |
|
212 |
fun map_includes target = |
|
213 |
map_target_data target o apsnd o apfst o apsnd; |
|
214 |
fun map_name_syntax target = |
|
215 |
map_target_data target o apsnd o apsnd o apfst o map_name_syntax_table; |
|
216 |
fun map_module_alias target = |
|
217 |
map_target_data target o apsnd o apsnd o apsnd; |
|
27000 | 218 |
|
34248 | 219 |
fun set_default_code_width k = (Targets.map o apsnd) (K k); |
34071 | 220 |
|
27000 | 221 |
|
34021 | 222 |
(** serializer usage **) |
223 |
||
224 |
(* montage *) |
|
225 |
||
226 |
fun the_literals thy = |
|
227 |
let |
|
34248 | 228 |
val ((targets, _), _) = Targets.get thy; |
34021 | 229 |
fun literals target = case Symtab.lookup targets target |
230 |
of SOME data => (case the_serializer data |
|
231 |
of Serializer (_, literals) => literals |
|
232 |
| Extends (super, _) => literals super) |
|
233 |
| NONE => error ("Unknown code target language: " ^ quote target); |
|
234 |
in literals end; |
|
235 |
||
236 |
local |
|
237 |
||
238 |
fun activate_syntax lookup_name src_tab = Symtab.empty |
|
239 |
|> fold_map (fn thing_identifier => fn tab => case lookup_name thing_identifier |
|
240 |
of SOME name => (SOME name, |
|
241 |
Symtab.update_new (name, the (Symtab.lookup src_tab thing_identifier)) tab) |
|
242 |
| NONE => (NONE, tab)) (Symtab.keys src_tab) |
|
243 |
|>> map_filter I; |
|
244 |
||
245 |
fun activate_const_syntax thy literals src_tab naming = (Symtab.empty, naming) |
|
246 |
|> fold_map (fn thing_identifier => fn (tab, naming) => |
|
247 |
case Code_Thingol.lookup_const naming thing_identifier |
|
248 |
of SOME name => let |
|
249 |
val (syn, naming') = Code_Printer.activate_const_syntax thy |
|
250 |
literals (the (Symtab.lookup src_tab thing_identifier)) naming |
|
251 |
in (SOME name, (Symtab.update_new (name, syn) tab, naming')) end |
|
252 |
| NONE => (NONE, (tab, naming))) (Symtab.keys src_tab) |
|
253 |
|>> map_filter I; |
|
254 |
||
255 |
fun invoke_serializer thy abortable serializer literals reserved abs_includes |
|
34071 | 256 |
module_alias class instance tyco const module width args naming program2 names1 = |
34021 | 257 |
let |
258 |
val (names_class, class') = |
|
259 |
activate_syntax (Code_Thingol.lookup_class naming) class; |
|
260 |
val names_inst = map_filter (Code_Thingol.lookup_instance naming) |
|
261 |
(Symreltab.keys instance); |
|
262 |
val (names_tyco, tyco') = |
|
263 |
activate_syntax (Code_Thingol.lookup_tyco naming) tyco; |
|
264 |
val (names_const, (const', _)) = |
|
265 |
activate_const_syntax thy literals const naming; |
|
266 |
val names_hidden = names_class @ names_inst @ names_tyco @ names_const; |
|
267 |
val names2 = subtract (op =) names_hidden names1; |
|
268 |
val program3 = Graph.subgraph (not o member (op =) names_hidden) program2; |
|
269 |
val names_all = Graph.all_succs program3 names2; |
|
270 |
val includes = abs_includes names_all; |
|
271 |
val program4 = Graph.subgraph (member (op =) names_all) program3; |
|
272 |
val empty_funs = filter_out (member (op =) abortable) |
|
273 |
(Code_Thingol.empty_funs program3); |
|
274 |
val _ = if null empty_funs then () else error ("No code equations for " |
|
275 |
^ commas (map (Sign.extern_const thy) empty_funs)); |
|
276 |
in |
|
277 |
serializer module args (Code_Thingol.labelled_name thy program2) reserved includes |
|
278 |
(Symtab.lookup module_alias) (Symtab.lookup class') |
|
279 |
(Symtab.lookup tyco') (Symtab.lookup const') |
|
34152 | 280 |
(Code_Printer.string_of_pretty width, Code_Printer.writeln_pretty width) |
34021 | 281 |
program4 names2 |
282 |
end; |
|
283 |
||
34071 | 284 |
fun mount_serializer thy alt_serializer target some_width module args naming program names = |
34021 | 285 |
let |
34248 | 286 |
val ((targets, abortable), default_width) = Targets.get thy; |
34021 | 287 |
fun collapse_hierarchy target = |
288 |
let |
|
289 |
val data = case Symtab.lookup targets target |
|
290 |
of SOME data => data |
|
291 |
| NONE => error ("Unknown code target language: " ^ quote target); |
|
292 |
in case the_serializer data |
|
293 |
of Serializer _ => (I, data) |
|
294 |
| Extends (super, modify) => let |
|
295 |
val (modify', data') = collapse_hierarchy super |
|
296 |
in (modify' #> modify naming, merge_target false target (data', data)) end |
|
297 |
end; |
|
298 |
val (modify, data) = collapse_hierarchy target; |
|
299 |
val (serializer, _) = the_default (case the_serializer data |
|
300 |
of Serializer seri => seri) alt_serializer; |
|
301 |
val reserved = the_reserved data; |
|
302 |
fun select_include names_all (name, (content, cs)) = |
|
303 |
if null cs then SOME (name, content) |
|
304 |
else if exists (fn c => case Code_Thingol.lookup_const naming c |
|
305 |
of SOME name => member (op =) names_all name |
|
306 |
| NONE => false) cs |
|
307 |
then SOME (name, content) else NONE; |
|
308 |
fun includes names_all = map_filter (select_include names_all) |
|
309 |
((Symtab.dest o the_includes) data); |
|
310 |
val module_alias = the_module_alias data; |
|
311 |
val { class, instance, tyco, const } = the_name_syntax data; |
|
312 |
val literals = the_literals thy target; |
|
34071 | 313 |
val width = the_default default_width some_width; |
34021 | 314 |
in |
315 |
invoke_serializer thy abortable serializer literals reserved |
|
34071 | 316 |
includes module_alias class instance tyco const module width args naming (modify program) names |
34021 | 317 |
end; |
318 |
||
319 |
in |
|
320 |
||
321 |
fun serialize thy = mount_serializer thy NONE; |
|
322 |
||
323 |
fun serialize_custom thy (target_name, seri) naming program names = |
|
34071 | 324 |
mount_serializer thy (SOME seri) target_name NONE NONE [] naming program names (String []) |
34021 | 325 |
|> the; |
326 |
||
327 |
end; (* local *) |
|
328 |
||
329 |
||
330 |
(* code presentation *) |
|
331 |
||
34071 | 332 |
fun code_of thy target some_width module_name cs names_stmt = |
34021 | 333 |
let |
334 |
val (names_cs, (naming, program)) = Code_Thingol.consts_program thy cs; |
|
335 |
in |
|
34071 | 336 |
string (names_stmt naming) |
337 |
(serialize thy target some_width (SOME module_name) [] naming program names_cs) |
|
34021 | 338 |
end; |
339 |
||
340 |
||
341 |
(* code generation *) |
|
342 |
||
343 |
fun transitivly_non_empty_funs thy naming program = |
|
344 |
let |
|
345 |
val cs = subtract (op =) (abort_allowed thy) (Code_Thingol.empty_funs program); |
|
346 |
val names = map_filter (Code_Thingol.lookup_const naming) cs; |
|
347 |
in subtract (op =) (Graph.all_preds program names) (Graph.keys program) end; |
|
348 |
||
349 |
fun read_const_exprs thy cs = |
|
350 |
let |
|
351 |
val (cs1, cs2) = Code_Thingol.read_const_exprs thy cs; |
|
352 |
val (names3, (naming, program)) = Code_Thingol.consts_program thy cs2; |
|
353 |
val names4 = transitivly_non_empty_funs thy naming program; |
|
354 |
val cs5 = map_filter |
|
355 |
(fn (c, name) => if member (op =) names4 name then SOME c else NONE) (cs2 ~~ names3); |
|
356 |
in fold (insert (op =)) cs5 cs1 end; |
|
357 |
||
358 |
fun export_code thy cs seris = |
|
359 |
let |
|
34173
458ced35abb8
reduced code generator cache to the baremost minimum
haftmann
parents:
34152
diff
changeset
|
360 |
val (cs', (naming, program)) = Code_Thingol.consts_program thy cs; |
34021 | 361 |
fun mk_seri_dest dest = case dest |
362 |
of NONE => compile |
|
363 |
| SOME "-" => export |
|
364 |
| SOME f => file (Path.explode f) |
|
365 |
val _ = map (fn (((target, module), dest), args) => |
|
34071 | 366 |
(mk_seri_dest dest (serialize thy target NONE module args naming program cs'))) seris; |
34021 | 367 |
in () end; |
368 |
||
369 |
fun export_code_cmd raw_cs seris thy = export_code thy (read_const_exprs thy raw_cs) seris; |
|
370 |
||
371 |
||
28054 | 372 |
(** serializer configuration **) |
27000 | 373 |
|
374 |
(* data access *) |
|
24219 | 375 |
|
24992 | 376 |
fun cert_class thy class = |
377 |
let |
|
378 |
val _ = AxClass.get_info thy class; |
|
379 |
in class end; |
|
380 |
||
27103 | 381 |
fun read_class thy = cert_class thy o Sign.intern_class thy; |
24992 | 382 |
|
383 |
fun cert_tyco thy tyco = |
|
384 |
let |
|
385 |
val _ = if Sign.declared_tyname thy tyco then () |
|
386 |
else error ("No such type constructor: " ^ quote tyco); |
|
387 |
in tyco end; |
|
388 |
||
27103 | 389 |
fun read_tyco thy = cert_tyco thy o Sign.intern_type thy; |
24219 | 390 |
|
34071 | 391 |
fun cert_inst thy (class, tyco) = |
392 |
(cert_class thy class, cert_tyco thy tyco); |
|
393 |
||
394 |
fun read_inst thy (raw_tyco, raw_class) = |
|
395 |
(read_class thy raw_class, read_tyco thy raw_tyco); |
|
396 |
||
34152 | 397 |
fun gen_add_syntax upd del mapp check_x check_raw_syn prep_syn prep_x target raw_x some_raw_syn thy = |
24219 | 398 |
let |
34152 | 399 |
val x = prep_x thy raw_x |> tap (check_x thy); |
400 |
fun prep_check raw_syn = prep_syn (raw_syn |> tap (check_raw_syn thy target)); |
|
401 |
in case some_raw_syn |
|
402 |
of SOME raw_syn => (map_name_syntax target o mapp) (upd (x, prep_check raw_syn)) thy |
|
34071 | 403 |
| NONE => (map_name_syntax target o mapp) (del x) thy |
24219 | 404 |
end; |
405 |
||
34152 | 406 |
fun gen_add_syntax_class prep_class = |
407 |
gen_add_syntax Symtab.update Symtab.delete_safe (apfst o apfst) (K I) ((K o K o K) ()) I prep_class; |
|
34071 | 408 |
|
34152 | 409 |
fun gen_add_syntax_inst prep_inst = |
410 |
gen_add_syntax Symreltab.update Symreltab.delete_safe (apfst o apsnd) (K I) ((K o K o K) ()) I prep_inst; |
|
24219 | 411 |
|
34152 | 412 |
fun gen_add_syntax_tyco prep_tyco = |
34071 | 413 |
gen_add_syntax Symtab.update Symtab.delete_safe (apsnd o apfst) |
414 |
(fn thy => fn tyco => fn (n, _) => if n <> Sign.arity_number thy tyco |
|
415 |
then error ("Number of arguments mismatch in syntax for type constructor " ^ quote tyco) |
|
34152 | 416 |
else ()) ((K o K o K) ()) I prep_tyco; |
34071 | 417 |
|
34152 | 418 |
fun gen_add_syntax_const prep_const check_raw_syn prep_syn = |
34071 | 419 |
gen_add_syntax Symtab.update Symtab.delete_safe (apsnd o apsnd) |
420 |
(fn thy => fn c => fn (n, _) => if n > Code.args_number thy c |
|
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
421 |
then error ("Too many arguments in syntax for constant " ^ quote c) |
34152 | 422 |
else ()) check_raw_syn prep_syn prep_const; |
24219 | 423 |
|
424 |
fun add_reserved target = |
|
425 |
let |
|
426 |
fun add sym syms = if member (op =) syms sym |
|
427 |
then error ("Reserved symbol " ^ quote sym ^ " already declared") |
|
428 |
else insert (op =) sym syms |
|
27103 | 429 |
in map_reserved target o add end; |
24992 | 430 |
|
28926 | 431 |
fun gen_add_include read_const target args thy = |
24992 | 432 |
let |
28926 | 433 |
fun add (name, SOME (content, raw_cs)) incls = |
24992 | 434 |
let |
435 |
val _ = if Symtab.defined incls name |
|
436 |
then warning ("Overwriting existing include " ^ name) |
|
437 |
else (); |
|
28926 | 438 |
val cs = map (read_const thy) raw_cs; |
34152 | 439 |
in Symtab.update (name, (Code_Printer.str content, cs)) incls end |
28926 | 440 |
| add (name, NONE) incls = Symtab.delete name incls; |
441 |
in map_includes target (add args) thy end; |
|
442 |
||
33969 | 443 |
val add_include = gen_add_include (K I); |
31156 | 444 |
val add_include_cmd = gen_add_include Code.read_const; |
24219 | 445 |
|
31013 | 446 |
fun add_module_alias target (thyname, modlname) = |
447 |
let |
|
448 |
val xs = Long_Name.explode modlname; |
|
31036 | 449 |
val xs' = map (Name.desymbolize true) xs; |
31013 | 450 |
in if xs' = xs |
451 |
then map_module_alias target (Symtab.update (thyname, modlname)) |
|
452 |
else error ("Invalid module name: " ^ quote modlname ^ "\n" |
|
453 |
^ "perhaps try " ^ quote (Long_Name.implode xs')) |
|
454 |
end; |
|
24219 | 455 |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
456 |
fun gen_allow_abort prep_const raw_c thy = |
24841 | 457 |
let |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28090
diff
changeset
|
458 |
val c = prep_const thy raw_c; |
34248 | 459 |
in thy |> (Targets.map o apfst o apsnd) (insert (op =) c) end; |
24841 | 460 |
|
27000 | 461 |
|
27103 | 462 |
(* concrete syntax *) |
27000 | 463 |
|
34021 | 464 |
local |
465 |
||
24219 | 466 |
structure P = OuterParse |
467 |
and K = OuterKeyword |
|
468 |
||
34152 | 469 |
fun zip_list (x::xs) f g = |
470 |
f |
|
471 |
#-> (fn y => |
|
472 |
fold_map (fn x => g |-- f >> pair x) xs |
|
473 |
#-> (fn xys => pair ((x, y) :: xys))); |
|
474 |
||
24219 | 475 |
fun parse_multi_syntax parse_thing parse_syntax = |
476 |
P.and_list1 parse_thing |
|
477 |
#-> (fn things => Scan.repeat1 (P.$$$ "(" |-- P.name -- |
|
478 |
(zip_list things parse_syntax (P.$$$ "and")) --| P.$$$ ")")); |
|
479 |
||
480 |
in |
|
481 |
||
33969 | 482 |
val add_syntax_class = gen_add_syntax_class cert_class; |
34071 | 483 |
val add_syntax_inst = gen_add_syntax_inst cert_inst; |
24219 | 484 |
val add_syntax_tyco = gen_add_syntax_tyco cert_tyco; |
34152 | 485 |
val add_syntax_const_simple = gen_add_syntax_const (K I) ((K o K o K) ()) Code_Printer.simple_const_syntax; |
486 |
val add_syntax_const = gen_add_syntax_const (K I) ((K o K o K) ()) I; |
|
27103 | 487 |
val allow_abort = gen_allow_abort (K I); |
28054 | 488 |
val add_reserved = add_reserved; |
33969 | 489 |
val add_include = add_include; |
24219 | 490 |
|
33969 | 491 |
val add_syntax_class_cmd = gen_add_syntax_class read_class; |
34071 | 492 |
val add_syntax_inst_cmd = gen_add_syntax_inst read_inst; |
24219 | 493 |
val add_syntax_tyco_cmd = gen_add_syntax_tyco read_tyco; |
34152 | 494 |
val add_syntax_const_simple_cmd = gen_add_syntax_const Code.read_const ((K o K o K) ()) Code_Printer.simple_const_syntax; |
495 |
val add_syntax_const_cmd = gen_add_syntax_const Code.read_const ((K o K o K) ()) I; |
|
496 |
||
31156 | 497 |
val allow_abort_cmd = gen_allow_abort Code.read_const; |
24219 | 498 |
|
28054 | 499 |
fun parse_args f args = |
500 |
case Scan.read OuterLex.stopper f args |
|
501 |
of SOME x => x |
|
502 |
| NONE => error "Bad serializer arguments"; |
|
503 |
||
504 |
||
27304 | 505 |
(** Isar setup **) |
27103 | 506 |
|
507 |
val (inK, module_nameK, fileK) = ("in", "module_name", "file"); |
|
508 |
||
30494
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
509 |
val code_exprP = |
34173
458ced35abb8
reduced code generator cache to the baremost minimum
haftmann
parents:
34152
diff
changeset
|
510 |
(Scan.repeat1 P.term_group |
27103 | 511 |
-- Scan.repeat (P.$$$ inK |-- P.name |
512 |
-- Scan.option (P.$$$ module_nameK |-- P.name) |
|
513 |
-- Scan.option (P.$$$ fileK |-- P.name) |
|
27809
a1e409db516b
unified Args.T with OuterLex.token, renamed some operations;
wenzelm
parents:
27757
diff
changeset
|
514 |
-- Scan.optional (P.$$$ "(" |-- Args.parse --| P.$$$ ")") [] |
30494
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
515 |
) >> (fn (raw_cs, seris) => export_code_cmd raw_cs seris)); |
27103 | 516 |
|
28054 | 517 |
val _ = List.app OuterKeyword.keyword [inK, module_nameK, fileK]; |
24867 | 518 |
|
519 |
val _ = |
|
24992 | 520 |
OuterSyntax.command "code_class" "define code syntax for class" K.thy_decl ( |
28690 | 521 |
parse_multi_syntax P.xname (Scan.option P.string) |
24219 | 522 |
>> (Toplevel.theory oo fold) (fn (target, syns) => |
523 |
fold (fn (raw_class, syn) => add_syntax_class_cmd target raw_class syn) syns) |
|
524 |
); |
|
525 |
||
24867 | 526 |
val _ = |
24992 | 527 |
OuterSyntax.command "code_instance" "define code syntax for instance" K.thy_decl ( |
34152 | 528 |
parse_multi_syntax (P.xname --| P.$$$ "::" -- P.xname) (Scan.option (P.minus >> K ())) |
24219 | 529 |
>> (Toplevel.theory oo fold) (fn (target, syns) => |
530 |
fold (fn (raw_inst, add_del) => add_syntax_inst_cmd target raw_inst add_del) syns) |
|
531 |
); |
|
532 |
||
24867 | 533 |
val _ = |
24992 | 534 |
OuterSyntax.command "code_type" "define code syntax for type constructor" K.thy_decl ( |
34152 | 535 |
parse_multi_syntax P.xname (Code_Printer.parse_syntax I) |
24219 | 536 |
>> (Toplevel.theory oo fold) (fn (target, syns) => |
537 |
fold (fn (raw_tyco, syn) => add_syntax_tyco_cmd target raw_tyco syn) syns) |
|
538 |
); |
|
539 |
||
24867 | 540 |
val _ = |
24992 | 541 |
OuterSyntax.command "code_const" "define code syntax for constant" K.thy_decl ( |
34152 | 542 |
parse_multi_syntax P.term_group (Code_Printer.parse_syntax fst) |
24219 | 543 |
>> (Toplevel.theory oo fold) (fn (target, syns) => |
34152 | 544 |
fold (fn (raw_const, syn) => add_syntax_const_simple_cmd target raw_const syn) syns) |
24219 | 545 |
); |
546 |
||
24867 | 547 |
val _ = |
24992 | 548 |
OuterSyntax.command "code_reserved" "declare words as reserved for target language" K.thy_decl ( |
24219 | 549 |
P.name -- Scan.repeat1 P.name |
550 |
>> (fn (target, reserveds) => (Toplevel.theory o fold (add_reserved target)) reserveds) |
|
24841 | 551 |
); |
24219 | 552 |
|
24867 | 553 |
val _ = |
24992 | 554 |
OuterSyntax.command "code_include" "declare piece of code to be included in generated code" K.thy_decl ( |
28926 | 555 |
P.name -- P.name -- (P.text :|-- (fn "-" => Scan.succeed NONE |
556 |
| s => Scan.optional (P.$$$ "attach" |-- Scan.repeat1 P.term) [] >> pair s >> SOME)) |
|
557 |
>> (fn ((target, name), content_consts) => |
|
558 |
(Toplevel.theory o add_include_cmd target) (name, content_consts)) |
|
24992 | 559 |
); |
560 |
||
561 |
val _ = |
|
562 |
OuterSyntax.command "code_modulename" "alias module to other name" K.thy_decl ( |
|
24219 | 563 |
P.name -- Scan.repeat1 (P.name -- P.name) |
27103 | 564 |
>> (fn (target, modlnames) => (Toplevel.theory o fold (add_module_alias target)) modlnames) |
565 |
); |
|
566 |
||
567 |
val _ = |
|
568 |
OuterSyntax.command "code_abort" "permit constant to be implemented as program abort" K.thy_decl ( |
|
27757
650af1991b8b
fall back on P.term_group, to avoid problems with inner_syntax markup (due to CodeName.read_const_exprs);
wenzelm
parents:
27710
diff
changeset
|
569 |
Scan.repeat1 P.term_group >> (Toplevel.theory o fold allow_abort_cmd) |
24841 | 570 |
); |
24219 | 571 |
|
24867 | 572 |
val _ = |
27103 | 573 |
OuterSyntax.command "export_code" "generate executable code for constants" |
30494
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
574 |
K.diag (P.!!! code_exprP >> (fn f => Toplevel.keep (f o Toplevel.theory_of))); |
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
575 |
|
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
576 |
fun shell_command thyname cmd = Toplevel.program (fn _ => |
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
577 |
(use_thy thyname; case Scan.read OuterLex.stopper (P.!!! code_exprP) |
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
578 |
((filter OuterLex.is_proper o OuterSyntax.scan Position.none) cmd) |
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
579 |
of SOME f => (writeln "Now generating code..."; f (theory thyname)) |
c150e6fa4e0d
consider exit status of code generation direcitve
haftmann
parents:
30242
diff
changeset
|
580 |
| NONE => error ("Bad directive " ^ quote cmd))) |
33969 | 581 |
handle Runtime.TOPLEVEL_ERROR => OS.Process.exit OS.Process.failure; |
27103 | 582 |
|
24219 | 583 |
end; (*local*) |
584 |
||
585 |
end; (*struct*) |