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