| author | haftmann |
| Wed, 28 May 2008 12:24:48 +0200 | |
| changeset 27001 | d21bb9f73364 |
| parent 27000 | e8a40d8b7897 |
| child 27014 | a5f53d9d2b60 |
| permissions | -rw-r--r-- |
| 24219 | 1 |
(* Title: Tools/code/code_package.ML |
2 |
ID: $Id$ |
|
3 |
Author: Florian Haftmann, TU Muenchen |
|
4 |
||
| 24918 | 5 |
Code generator interfaces and Isar setup. |
| 24219 | 6 |
*) |
7 |
||
8 |
signature CODE_PACKAGE = |
|
9 |
sig |
|
| 26011 | 10 |
val evaluate_conv: theory |
| 26740 | 11 |
-> (term -> term * (CodeThingol.code -> CodeThingol.typscheme * CodeThingol.iterm |
12 |
-> string list -> thm)) |
|
| 24283 | 13 |
-> cterm -> thm; |
| 26011 | 14 |
val evaluate_term: theory |
| 26740 | 15 |
-> (term -> term * (CodeThingol.code -> CodeThingol.typscheme * CodeThingol.iterm |
16 |
-> string list -> 'a)) |
|
|
24835
8c26128f8997
clarified relationship of code generator conversions and evaluations
haftmann
parents:
24811
diff
changeset
|
17 |
-> term -> 'a; |
| 26011 | 18 |
val eval_conv: string * (unit -> thm) option ref |
19 |
-> theory -> cterm -> string list -> thm; |
|
20 |
val eval_term: string * (unit -> 'a) option ref |
|
21 |
-> theory -> term -> string list -> 'a; |
|
22 |
val satisfies: theory -> term -> string list -> bool; |
|
| 24585 | 23 |
val satisfies_ref: (unit -> bool) option ref; |
| 25611 | 24 |
val codegen_shell_command: string (*theory name*) -> string (*cg expr*) -> unit; |
| 24219 | 25 |
end; |
26 |
||
27 |
structure CodePackage : CODE_PACKAGE = |
|
28 |
struct |
|
29 |
||
|
24844
98c006a30218
certificates for code generator case expressions
haftmann
parents:
24835
diff
changeset
|
30 |
(** code theorems **) |
| 24219 | 31 |
|
| 24283 | 32 |
fun code_depgr thy [] = CodeFuncgr.make thy [] |
| 24219 | 33 |
| code_depgr thy consts = |
34 |
let |
|
| 24283 | 35 |
val gr = CodeFuncgr.make thy consts; |
|
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
36 |
val select = Graph.all_succs gr consts; |
| 24219 | 37 |
in |
|
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
38 |
gr |
|
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
39 |
|> Graph.subgraph (member (op =) select) |
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25485
diff
changeset
|
40 |
|> Graph.map_nodes ((apsnd o map) (AxClass.overload thy)) |
| 24219 | 41 |
end; |
42 |
||
43 |
fun code_thms thy = |
|
44 |
Pretty.writeln o CodeFuncgr.pretty thy o code_depgr thy; |
|
45 |
||
46 |
fun code_deps thy consts = |
|
47 |
let |
|
48 |
val gr = code_depgr thy consts; |
|
49 |
fun mk_entry (const, (_, (_, parents))) = |
|
50 |
let |
|
51 |
val name = CodeUnit.string_of_const thy const; |
|
52 |
val nameparents = map (CodeUnit.string_of_const thy) parents; |
|
53 |
in { name = name, ID = name, dir = "", unfold = true,
|
|
54 |
path = "", parents = nameparents } |
|
55 |
end; |
|
|
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
56 |
val prgr = Graph.fold ((fn x => fn xs => xs @ [x]) o mk_entry) gr []; |
| 24219 | 57 |
in Present.display_graph prgr end; |
58 |
||
|
24844
98c006a30218
certificates for code generator case expressions
haftmann
parents:
24835
diff
changeset
|
59 |
|
| 24918 | 60 |
(** code generation interfaces **) |
61 |
||
62 |
(* code data *) |
|
|
24844
98c006a30218
certificates for code generator case expressions
haftmann
parents:
24835
diff
changeset
|
63 |
|
| 24219 | 64 |
structure Program = CodeDataFun |
65 |
( |
|
66 |
type T = CodeThingol.code; |
|
67 |
val empty = CodeThingol.empty_code; |
|
68 |
fun merge _ = CodeThingol.merge_code; |
|
69 |
fun purge _ NONE _ = CodeThingol.empty_code |
|
70 |
| purge NONE _ _ = CodeThingol.empty_code |
|
71 |
| purge (SOME thy) (SOME cs) code = |
|
72 |
let |
|
73 |
val cs_exisiting = |
|
74 |
map_filter (CodeName.const_rev thy) (Graph.keys code); |
|
75 |
val dels = (Graph.all_preds code |
|
76 |
o map (CodeName.const thy) |
|
|
24423
ae9cd0e92423
overloaded definitions accompanied by explicit constants
haftmann
parents:
24381
diff
changeset
|
77 |
o filter (member (op =) cs_exisiting) |
| 24219 | 78 |
) cs; |
79 |
in Graph.del_nodes dels code end; |
|
80 |
); |
|
81 |
||
| 24918 | 82 |
(* generic generation combinators *) |
| 24811 | 83 |
|
| 24918 | 84 |
val ensure_const = CodeThingol.ensure_const; |
| 24219 | 85 |
|
| 24918 | 86 |
fun perhaps_const thy algbr funcgr c trns = |
87 |
case try (CodeThingol.ensure_const thy algbr funcgr c) trns |
|
| 24219 | 88 |
of SOME (c, trns) => (SOME c, trns) |
89 |
| NONE => (NONE, trns); |
|
90 |
||
| 25969 | 91 |
fun generate thy funcgr f x = |
92 |
Program.change_yield thy (CodeThingol.transact thy funcgr |
|
93 |
(fn thy => fn funcgr => fn algbr => f thy funcgr algbr x)); |
|
| 24219 | 94 |
|
| 26113 | 95 |
(* export_code functionality *) |
96 |
||
| 24436 | 97 |
fun code thy permissive cs seris = |
98 |
let |
|
99 |
val code = Program.get thy; |
|
| 27000 | 100 |
fun mk_seri_dest file = case file |
101 |
of NONE => CodeTarget.compile |
|
| 27001 | 102 |
| SOME "-" => CodeTarget.write |
| 27000 | 103 |
| SOME f => CodeTarget.file (Path.explode f) |
104 |
val _ = map (fn (((target, module), file), args) => |
|
105 |
(mk_seri_dest file (CodeTarget.serialize thy target permissive module args code cs))) seris; |
|
106 |
in () end; |
|
| 24436 | 107 |
|
| 26113 | 108 |
(* evaluation machinery *) |
109 |
||
| 26740 | 110 |
fun evaluate eval_kind thy evaluator = |
| 24250 | 111 |
let |
| 26740 | 112 |
fun evaluator'' evaluator''' funcgr t = |
113 |
let |
|
114 |
val ((code, (vs_ty_t, deps)), _) = |
|
115 |
generate thy funcgr CodeThingol.ensure_value t; |
|
116 |
in evaluator''' code vs_ty_t deps end; |
|
117 |
fun evaluator' t = |
|
118 |
let |
|
119 |
val (t', evaluator''') = evaluator t; |
|
120 |
in (t', evaluator'' evaluator''') end; |
|
121 |
in eval_kind thy evaluator' end |
|
| 26011 | 122 |
|
| 26740 | 123 |
fun evaluate_conv thy = evaluate CodeFuncgr.eval_conv thy; |
124 |
fun evaluate_term thy = evaluate CodeFuncgr.eval_term thy; |
|
| 26011 | 125 |
|
| 26740 | 126 |
fun eval_ml reff args thy code ((vs, ty), t) deps = |
| 26011 | 127 |
CodeTarget.eval thy reff code (t, ty) args; |
| 24219 | 128 |
|
| 26011 | 129 |
fun eval evaluate term_of reff thy ct args = |
130 |
let |
|
131 |
val _ = if null (term_frees (term_of ct)) then () else error ("Term "
|
|
|
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26740
diff
changeset
|
132 |
^ quote (Syntax.string_of_term_global thy (term_of ct)) |
| 26740 | 133 |
^ " to be evaluated contains free variables"); |
134 |
in evaluate thy (fn t => (t, eval_ml reff args thy)) ct end; |
|
| 26011 | 135 |
|
136 |
fun eval_conv reff = eval evaluate_conv Thm.term_of reff; |
|
137 |
fun eval_term reff = eval evaluate_term I reff; |
|
| 24219 | 138 |
|
| 24585 | 139 |
val satisfies_ref : (unit -> bool) option ref = ref NONE; |
| 24219 | 140 |
|
| 26011 | 141 |
val satisfies = eval_term ("CodePackage.satisfies_ref", satisfies_ref);
|
| 24219 | 142 |
|
| 26113 | 143 |
(* code antiquotation *) |
144 |
||
145 |
fun code_antiq (ctxt, args) = |
|
146 |
let |
|
147 |
val thy = Context.theory_of ctxt; |
|
148 |
val (ts, (ctxt', args')) = Scan.repeat1 Args.term (ctxt, args); |
|
149 |
val cs = map (CodeUnit.check_const thy) ts; |
|
150 |
val (cs', code') = generate thy (CodeFuncgr.make thy cs) |
|
151 |
(fold_map ooo ensure_const) cs; |
|
| 27000 | 152 |
val code'' = CodeTarget.sml_of thy code' cs' ^ " ()"; |
| 26113 | 153 |
in (("codevals", code''), (ctxt', args')) end;
|
154 |
||
155 |
||
156 |
(* const expressions *) |
|
157 |
||
|
26615
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
158 |
local |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
159 |
|
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
160 |
fun consts_of thy some_thyname = |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
161 |
let |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
162 |
val this_thy = Option.map ThyInfo.get_theory some_thyname |> the_default thy; |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
163 |
val raw_cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
164 |
((snd o #constants o Consts.dest o #consts o Sign.rep_sg) this_thy) []; |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
165 |
val cs = map (CodeUnit.subst_alias thy) raw_cs; |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
166 |
fun belongs_here thyname c = |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
167 |
not (exists (fn thy' => Sign.declared_const thy' c) (Theory.parents_of this_thy)) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
168 |
in case some_thyname |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
169 |
of NONE => cs |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
170 |
| SOME thyname => filter (belongs_here thyname) cs |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
171 |
end; |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
172 |
|
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
173 |
fun read_const_expr thy "*" = ([], consts_of thy NONE) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
174 |
| read_const_expr thy s = if String.isSuffix ".*" s |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
175 |
then ([], consts_of thy (SOME (unsuffix ".*" s))) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
176 |
else ([CodeUnit.read_const thy s], []); |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
177 |
|
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
178 |
in |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
179 |
|
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
180 |
fun read_const_exprs thy select exprs = |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
181 |
case (pairself flat o split_list o map (read_const_expr thy)) exprs |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
182 |
of (consts, []) => (false, consts) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
183 |
| (consts, consts') => (true, consts @ select consts'); |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
184 |
|
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
185 |
end; (*local*) |
|
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
186 |
|
| 24219 | 187 |
fun filter_generatable thy consts = |
188 |
let |
|
| 24283 | 189 |
val (consts', funcgr) = CodeFuncgr.make_consts thy consts; |
| 24918 | 190 |
val (consts'', _) = generate thy funcgr (fold_map ooo perhaps_const) consts'; |
| 24219 | 191 |
val consts''' = map_filter (fn (const, SOME _) => SOME const | (_, NONE) => NONE) |
192 |
(consts' ~~ consts''); |
|
193 |
in consts''' end; |
|
194 |
||
| 24436 | 195 |
fun generate_const_exprs thy raw_cs = |
196 |
let |
|
|
26615
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
197 |
val (perm1, cs) = read_const_exprs thy |
| 24436 | 198 |
(filter_generatable thy) raw_cs; |
199 |
val (perm2, cs') = case generate thy (CodeFuncgr.make thy cs) |
|
| 24918 | 200 |
(fold_map ooo ensure_const) cs |
201 |
of ([], _) => (true, NONE) |
|
202 |
| (cs, _) => (false, SOME cs); |
|
| 24436 | 203 |
in (perm1 orelse perm2, cs') end; |
204 |
||
205 |
||
206 |
(** code properties **) |
|
207 |
||
208 |
fun mk_codeprops thy all_cs sel_cs = |
|
209 |
let |
|
|
24976
821628d16552
moved Drule.unvarify to Thm.unvarify (cf. more_thm.ML);
wenzelm
parents:
24971
diff
changeset
|
210 |
fun select (thmref, thm) = case try (Thm.unvarify o Drule.zero_var_indexes) thm |
| 24436 | 211 |
of NONE => NONE |
212 |
| SOME thm => let |
|
213 |
val t = (ObjectLogic.drop_judgment thy o Thm.prop_of) thm; |
|
214 |
val cs = fold_aterms (fn Const (c, ty) => |
|
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25485
diff
changeset
|
215 |
cons (AxClass.unoverload_const thy (c, ty)) | _ => I) t []; |
| 24436 | 216 |
in if exists (member (op =) sel_cs) cs |
217 |
andalso forall (member (op =) all_cs) cs |
|
218 |
then SOME (thmref, thm) else NONE end; |
|
219 |
fun mk_codeprop (thmref, thm) = |
|
220 |
let |
|
221 |
val t = ObjectLogic.drop_judgment thy (Thm.prop_of thm); |
|
222 |
val ty_judg = fastype_of t; |
|
223 |
val tfrees1 = fold_aterms (fn Const (c, ty) => |
|
224 |
Term.add_tfreesT ty | _ => I) t []; |
|
225 |
val vars = Term.add_frees t []; |
|
226 |
val tfrees2 = fold (Term.add_tfreesT o snd) vars []; |
|
227 |
val tfrees' = subtract (op =) tfrees2 tfrees1 |> map TFree; |
|
228 |
val ty = map Term.itselfT tfrees' @ map snd vars ---> ty_judg; |
|
229 |
val tfree_vars = map Logic.mk_type tfrees'; |
|
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26285
diff
changeset
|
230 |
val c = Facts.string_of_ref thmref |
| 24436 | 231 |
|> NameSpace.explode |
232 |
|> (fn [x] => [x] | (x::xs) => xs) |
|
233 |
|> space_implode "_" |
|
234 |
val propdef = (((c, ty), tfree_vars @ map Free vars), t); |
|
235 |
in if c = "" then NONE else SOME (thmref, propdef) end; |
|
236 |
in |
|
| 26690 | 237 |
Facts.dest_static (PureThy.facts_of thy) |
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26285
diff
changeset
|
238 |
|> maps Facts.selections |
| 24436 | 239 |
|> map_filter select |
240 |
|> map_filter mk_codeprop |
|
241 |
end; |
|
242 |
||
243 |
fun add_codeprops all_cs sel_cs thy = |
|
244 |
let |
|
245 |
val codeprops = mk_codeprops thy all_cs sel_cs; |
|
246 |
fun lift_name_yield f x = (Name.context, x) |> f ||> snd; |
|
247 |
fun add (thmref, (((raw_c, ty), ts), t)) (names, thy) = |
|
248 |
let |
|
|
26336
a0e2b706ce73
renamed datatype thmref to Facts.ref, tuned interfaces;
wenzelm
parents:
26285
diff
changeset
|
249 |
val _ = warning ("Adding theorem " ^ quote (Facts.string_of_ref thmref)
|
| 24436 | 250 |
^ " as code property " ^ quote raw_c); |
251 |
val ([raw_c'], names') = Name.variants [raw_c] names; |
|
|
24971
4d006b03aa4a
replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents:
24918
diff
changeset
|
252 |
val (const as Const (c, _), thy') = thy |> Sign.declare_const [] (raw_c', ty, NoSyn); |
|
4d006b03aa4a
replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents:
24918
diff
changeset
|
253 |
val eq = Logic.mk_equals (list_comb (const, ts), t); |
|
4d006b03aa4a
replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents:
24918
diff
changeset
|
254 |
val ([def], thy'') = thy' |> PureThy.add_defs_i false [((Thm.def_name raw_c', eq), [])]; |
|
4d006b03aa4a
replaced Sign.add_consts_authentic by Sign.declare_const;
wenzelm
parents:
24918
diff
changeset
|
255 |
in ((c, def), (names', thy'')) end; |
| 24436 | 256 |
in |
257 |
thy |
|
258 |
|> Sign.sticky_prefix "codeprop" |
|
259 |
|> lift_name_yield (fold_map add codeprops) |
|
260 |
||> Sign.restore_naming thy |
|
| 24621 | 261 |
|-> (fn c_thms => fold (Code.add_func o snd) c_thms #> pair c_thms) |
| 24436 | 262 |
end; |
263 |
||
264 |
||
| 24918 | 265 |
(** interfaces and Isar setup **) |
| 24219 | 266 |
|
267 |
local |
|
268 |
||
269 |
structure P = OuterParse |
|
270 |
and K = OuterKeyword |
|
271 |
||
| 24436 | 272 |
fun code_cmd raw_cs seris thy = |
| 24219 | 273 |
let |
| 24436 | 274 |
val (permissive, cs) = generate_const_exprs thy raw_cs; |
275 |
val _ = code thy permissive cs seris; |
|
276 |
in () end; |
|
| 24219 | 277 |
|
278 |
fun code_thms_cmd thy = |
|
|
26615
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
279 |
code_thms thy o snd o read_const_exprs thy (fst o CodeFuncgr.make_consts thy); |
| 24219 | 280 |
|
281 |
fun code_deps_cmd thy = |
|
|
26615
8a9d3eebd534
added read_const_exprs (from Pure/Isar/code_unit.ML);
wenzelm
parents:
26604
diff
changeset
|
282 |
code_deps thy o snd o read_const_exprs thy (fst o CodeFuncgr.make_consts thy); |
| 24219 | 283 |
|
| 24436 | 284 |
fun code_props_cmd raw_cs seris thy = |
285 |
let |
|
286 |
val (_, all_cs) = generate_const_exprs thy ["*"]; |
|
287 |
val (permissive, cs) = generate_const_exprs thy raw_cs; |
|
288 |
val (c_thms, thy') = add_codeprops (map (the o CodeName.const_rev thy) (these all_cs)) |
|
289 |
(map (the o CodeName.const_rev thy) (these cs)) thy; |
|
290 |
val prop_cs = (filter_generatable thy' o map fst) c_thms; |
|
| 24918 | 291 |
val _ = if null seris then () else (generate thy' (CodeFuncgr.make thy' prop_cs) |
292 |
(fold_map ooo ensure_const) prop_cs; ()); |
|
| 24436 | 293 |
val _ = if null seris then () else code thy' permissive |
294 |
(SOME (map (CodeName.const thy') prop_cs)) seris; |
|
295 |
in thy' end; |
|
296 |
||
| 24250 | 297 |
val (inK, module_nameK, fileK) = ("in", "module_name", "file");
|
| 24219 | 298 |
|
| 24436 | 299 |
fun code_exprP cmd = |
| 24219 | 300 |
(Scan.repeat P.term |
301 |
-- Scan.repeat (P.$$$ inK |-- P.name |
|
| 24250 | 302 |
-- Scan.option (P.$$$ module_nameK |-- P.name) |
| 24219 | 303 |
-- Scan.option (P.$$$ fileK |-- P.name) |
304 |
-- Scan.optional (P.$$$ "(" |-- P.arguments --| P.$$$ ")") []
|
|
| 24436 | 305 |
) >> (fn (raw_cs, seris) => cmd raw_cs seris)); |
| 24219 | 306 |
|
| 24867 | 307 |
val _ = OuterSyntax.keywords [inK, module_nameK, fileK]; |
| 24219 | 308 |
|
| 24436 | 309 |
val (codeK, code_thmsK, code_depsK, code_propsK) = |
310 |
("export_code", "code_thms", "code_deps", "code_props");
|
|
| 24219 | 311 |
|
312 |
in |
|
313 |
||
| 24867 | 314 |
val _ = |
| 25110 | 315 |
OuterSyntax.command codeK "generate executable code for constants" |
| 24436 | 316 |
K.diag (P.!!! (code_exprP code_cmd) >> (fn f => Toplevel.keep (f o Toplevel.theory_of))); |
| 24219 | 317 |
|
| 26604 | 318 |
fun codegen_shell_command thyname cmd = Toplevel.program (fn _ => |
| 25611 | 319 |
(use_thy thyname; case Scan.read OuterLex.stopper (P.!!! (code_exprP code_cmd)) ((filter OuterLex.is_proper o OuterSyntax.scan) cmd) |
320 |
of SOME f => (writeln "Now generating code..."; f (theory thyname)) |
|
321 |
| NONE => error ("Bad directive " ^ quote cmd)))
|
|
322 |
handle TOPLEVEL_ERROR => OS.Process.exit OS.Process.failure; |
|
| 24219 | 323 |
|
| 24867 | 324 |
val _ = |
| 24219 | 325 |
OuterSyntax.improper_command code_thmsK "print system of defining equations for code" OuterKeyword.diag |
326 |
(Scan.repeat P.term |
|
327 |
>> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory |
|
328 |
o Toplevel.keep ((fn thy => code_thms_cmd thy cs) o Toplevel.theory_of))); |
|
329 |
||
| 24867 | 330 |
val _ = |
| 24219 | 331 |
OuterSyntax.improper_command code_depsK "visualize dependencies of defining equations for code" OuterKeyword.diag |
332 |
(Scan.repeat P.term |
|
333 |
>> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory |
|
334 |
o Toplevel.keep ((fn thy => code_deps_cmd thy cs) o Toplevel.theory_of))); |
|
335 |
||
| 24867 | 336 |
val _ = |
| 24436 | 337 |
OuterSyntax.command code_propsK "generate characteristic properties for executable constants" |
338 |
K.thy_decl (P.!!! (code_exprP code_props_cmd) >> Toplevel.theory); |
|
| 24219 | 339 |
|
| 26113 | 340 |
val _ = ML_Context.value_antiq "code" code_antiq; |
341 |
||
| 24436 | 342 |
end; (*local*) |
343 |
||
344 |
end; (*struct*) |