1 (* Title: Pure/codegen.ML
3 Author: Stefan Berghofer, TU Muenchen
4 License: GPL (GNU GENERAL PUBLIC LICENSE)
6 Generic code generator.
11 val quiet_mode : bool ref
12 val message : string -> unit
13 val mode : string list ref
24 val add_codegen: string -> term codegen -> theory -> theory
25 val add_tycodegen: string -> typ codegen -> theory -> theory
26 val add_attribute: string -> (Args.T list -> theory attribute * Args.T list) -> theory -> theory
27 val print_codegens: theory -> unit
28 val generate_code: theory -> (string * string) list -> string
29 val generate_code_i: theory -> (string * term) list -> string
30 val assoc_consts: (xstring * string option * term mixfix list) list -> theory -> theory
31 val assoc_consts_i: (xstring * typ option * term mixfix list) list -> theory -> theory
32 val assoc_types: (xstring * typ mixfix list) list -> theory -> theory
33 val get_assoc_code: theory -> string -> typ -> term mixfix list option
34 val get_assoc_type: theory -> string -> typ mixfix list option
35 val invoke_codegen: theory -> string -> bool ->
36 (exn option * string) Graph.T * term -> (exn option * string) Graph.T * Pretty.T
37 val invoke_tycodegen: theory -> string -> bool ->
38 (exn option * string) Graph.T * typ -> (exn option * string) Graph.T * Pretty.T
39 val mk_const_id: Sign.sg -> string -> string
40 val mk_type_id: Sign.sg -> string -> string
41 val rename_term: term -> term
42 val get_defn: theory -> string -> typ -> ((term list * term) * int option) option
43 val is_instance: theory -> typ -> typ -> bool
44 val parens: Pretty.T -> Pretty.T
45 val mk_app: bool -> Pretty.T -> Pretty.T list -> Pretty.T
46 val eta_expand: term -> term list -> int -> term
47 val strip_tname: string -> string
48 val mk_type: bool -> typ -> Pretty.T
49 val mk_term_of: Sign.sg -> bool -> typ -> Pretty.T
50 val mk_gen: Sign.sg -> bool -> string list -> string -> typ -> Pretty.T
51 val test_fn: (int -> (string * term) list option) ref
52 val test_term: theory -> int -> int -> term -> (string * term) list option
53 val parse_mixfix: (string -> 'a) -> string -> 'a mixfix list
54 val parsers: OuterSyntax.parser list
55 val setup: (theory -> theory) list
58 structure Codegen : CODEGEN =
61 val quiet_mode = ref true;
62 fun message s = if !quiet_mode then () else writeln s;
64 val mode = ref ([] : string list);
68 (**** Mixfix syntax ****)
77 | is_arg Ignore = true
81 | quotes_of (Quote q :: ms) = q :: quotes_of ms
82 | quotes_of (_ :: ms) = quotes_of ms;
84 fun args_of [] xs = ([], xs)
85 | args_of (Arg :: ms) (x :: xs) = apfst (cons x) (args_of ms xs)
86 | args_of (Ignore :: ms) (_ :: xs) = args_of ms xs
87 | args_of (_ :: ms) xs = args_of ms xs;
89 fun num_args x = length (filter is_arg x);
92 (**** theory data ****)
94 (* type of code generators *)
96 type 'a codegen = theory -> (exn option * string) Graph.T ->
97 string -> bool -> 'a -> ((exn option * string) Graph.T * Pretty.T) option;
99 (* parameters for random testing *)
102 {size: int, iterations: int, default_type: typ option};
104 fun merge_test_params
105 {size = size1, iterations = iterations1, default_type = default_type1}
106 {size = size2, iterations = iterations2, default_type = default_type2} =
107 {size = Int.max (size1, size2),
108 iterations = Int.max (iterations1, iterations2),
109 default_type = case default_type1 of
110 None => default_type2
111 | _ => default_type1};
113 val default_test_params : test_params =
114 {size = 10, iterations = 100, default_type = None};
116 fun set_size size ({iterations, default_type, ...} : test_params) =
117 {size = size, iterations = iterations, default_type = default_type};
119 fun set_iterations iterations ({size, default_type, ...} : test_params) =
120 {size = size, iterations = iterations, default_type = default_type};
122 fun set_default_type s sg ({size, iterations, ...} : test_params) =
123 {size = size, iterations = iterations,
124 default_type = Some (typ_of (read_ctyp sg s))};
126 (* data kind 'Pure/codegen' *)
128 structure CodegenArgs =
130 val name = "Pure/codegen";
132 {codegens : (string * term codegen) list,
133 tycodegens : (string * typ codegen) list,
134 consts : ((string * typ) * term mixfix list) list,
135 types : (string * typ mixfix list) list,
136 attrs: (string * (Args.T list -> theory attribute * Args.T list)) list,
137 test_params: test_params};
140 {codegens = [], tycodegens = [], consts = [], types = [], attrs = [],
141 test_params = default_test_params};
146 ({codegens = codegens1, tycodegens = tycodegens1,
147 consts = consts1, types = types1, attrs = attrs1,
148 test_params = test_params1},
149 {codegens = codegens2, tycodegens = tycodegens2,
150 consts = consts2, types = types2, attrs = attrs2,
151 test_params = test_params2}) =
152 {codegens = rev (merge_alists (rev codegens1) (rev codegens2)),
153 tycodegens = rev (merge_alists (rev tycodegens1) (rev tycodegens2)),
154 consts = merge_alists consts1 consts2,
155 types = merge_alists types1 types2,
156 attrs = merge_alists attrs1 attrs2,
157 test_params = merge_test_params test_params1 test_params2};
159 fun print sg ({codegens, tycodegens, ...} : T) =
160 Pretty.writeln (Pretty.chunks
161 [Pretty.strs ("term code generators:" :: map fst codegens),
162 Pretty.strs ("type code generators:" :: map fst tycodegens)]);
165 structure CodegenData = TheoryDataFun(CodegenArgs);
166 val print_codegens = CodegenData.print;
169 (**** access parameters for random testing ****)
171 fun get_test_params thy = #test_params (CodegenData.get thy);
173 fun map_test_params f thy =
174 let val {codegens, tycodegens, consts, types, attrs, test_params} =
176 in CodegenData.put {codegens = codegens, tycodegens = tycodegens,
177 consts = consts, types = types, attrs = attrs,
178 test_params = f test_params} thy
182 (**** add new code generators to theory ****)
184 fun add_codegen name f thy =
185 let val {codegens, tycodegens, consts, types, attrs, test_params} =
187 in (case assoc (codegens, name) of
188 None => CodegenData.put {codegens = (name, f) :: codegens,
189 tycodegens = tycodegens, consts = consts, types = types,
190 attrs = attrs, test_params = test_params} thy
191 | Some _ => error ("Code generator " ^ name ^ " already declared"))
194 fun add_tycodegen name f thy =
195 let val {codegens, tycodegens, consts, types, attrs, test_params} =
197 in (case assoc (tycodegens, name) of
198 None => CodegenData.put {tycodegens = (name, f) :: tycodegens,
199 codegens = codegens, consts = consts, types = types,
200 attrs = attrs, test_params = test_params} thy
201 | Some _ => error ("Code generator " ^ name ^ " already declared"))
205 (**** code attribute ****)
207 fun add_attribute name att thy =
208 let val {codegens, tycodegens, consts, types, attrs, test_params} =
210 in (case assoc (attrs, name) of
211 None => CodegenData.put {tycodegens = tycodegens,
212 codegens = codegens, consts = consts, types = types,
213 attrs = (name, att) :: attrs, test_params = test_params} thy
214 | Some _ => error ("Code attribute " ^ name ^ " already declared"))
217 fun mk_parser (a, p) = (if a = "" then Scan.succeed "" else Args.$$$ a) |-- p;
220 Attrib.syntax (Scan.depend (fn thy => foldr op || (map mk_parser
221 (#attrs (CodegenData.get thy)), Scan.fail) >> pair thy));
224 (**** associate constants with target language code ****)
226 fun gen_assoc_consts prep_type xs thy = foldl (fn (thy, (s, tyopt, syn)) =>
228 val sg = sign_of thy;
229 val {codegens, tycodegens, consts, types, attrs, test_params} =
231 val cname = Sign.intern_const sg s;
233 (case Sign.const_type sg cname of
235 let val T' = (case tyopt of
238 let val U = prep_type sg ty
239 in if Sign.typ_instance sg (U, T) then U
240 else error ("Illegal type constraint for constant " ^ cname)
242 in (case assoc (consts, (cname, T')) of
243 None => CodegenData.put {codegens = codegens,
244 tycodegens = tycodegens,
245 consts = ((cname, T'), syn) :: consts,
246 types = types, attrs = attrs, test_params = test_params} thy
247 | Some _ => error ("Constant " ^ cname ^ " already associated with code"))
249 | _ => error ("Not a constant: " ^ s))
252 val assoc_consts_i = gen_assoc_consts (K I);
253 val assoc_consts = gen_assoc_consts (fn sg => typ_of o read_ctyp sg);
255 (**** associate types with target language types ****)
257 fun assoc_types xs thy = foldl (fn (thy, (s, syn)) =>
259 val {codegens, tycodegens, consts, types, attrs, test_params} =
261 val tc = Sign.intern_tycon (sign_of thy) s
263 (case assoc (types, tc) of
264 None => CodegenData.put {codegens = codegens,
265 tycodegens = tycodegens, consts = consts,
266 types = (tc, syn) :: types, attrs = attrs,
267 test_params = test_params} thy
268 | Some _ => error ("Type " ^ tc ^ " already associated with code"))
271 fun get_assoc_type thy s = assoc (#types (CodegenData.get thy), s);
274 (**** make valid ML identifiers ****)
276 fun gen_mk_id kind rename sg s =
278 val (xs as x::_) = explode (rename (space_implode "_"
279 (NameSpace.unpack (Sign.cond_extern sg kind s))));
280 fun check_str [] = ""
281 | check_str (" " :: xs) = "_" ^ check_str xs
282 | check_str (x :: xs) =
283 (if Symbol.is_letdig x then x
284 else "_" ^ string_of_int (ord x)) ^ check_str xs
286 (if not (Symbol.is_letter x) then "id" else "") ^ check_str xs
289 val mk_const_id = gen_mk_id Sign.constK
290 (fn s => if s mem ThmDatabase.ml_reserved then s ^ "_const" else s);
292 val mk_type_id = gen_mk_id Sign.typeK
293 (fn s => if s mem ThmDatabase.ml_reserved then s ^ "_type" else s);
295 fun rename_terms ts =
297 val names = foldr add_term_names
298 (ts, map (fst o fst) (Drule.vars_of_terms ts));
299 val clash = names inter ThmDatabase.ml_reserved;
300 val ps = clash ~~ variantlist (clash, names);
302 fun rename (Var ((a, i), T)) = Var ((if_none (assoc (ps, a)) a, i), T)
303 | rename (Free (a, T)) = Free (if_none (assoc (ps, a)) a, T)
304 | rename (Abs (s, T, t)) = Abs (s, T, rename t)
305 | rename (t $ u) = rename t $ rename u
311 val rename_term = hd o rename_terms o single;
314 (**** retrieve definition of constant ****)
316 fun is_instance thy T1 T2 =
317 Sign.typ_instance (sign_of thy) (T1, Type.varifyT T2);
319 fun get_assoc_code thy s T = apsome snd (find_first (fn ((s', T'), _) =>
320 s = s' andalso is_instance thy T T') (#consts (CodegenData.get thy)));
322 fun get_defn thy s T =
324 val axms = flat (map (Symtab.dest o #axioms o Theory.rep_theory)
325 (thy :: Theory.ancestors_of thy));
326 val defs = mapfilter (fn (_, t) =>
328 val (lhs, rhs) = Logic.dest_equals t;
329 val (c, args) = strip_comb lhs;
330 val (s', T') = dest_Const c
331 in if s=s' then Some (T', split_last (rename_terms (args @ [rhs])))
332 else None end) handle TERM _ => None) axms;
333 val i = find_index (is_instance thy T o fst) defs
335 if i>=0 then Some (snd (nth_elem (i, defs)),
336 if length defs = 1 then None else Some i)
341 (**** invoke suitable code generator for term / type ****)
343 fun invoke_codegen thy dep brack (gr, t) = (case get_first
344 (fn (_, f) => f thy gr dep brack t) (#codegens (CodegenData.get thy)) of
345 None => error ("Unable to generate code for term:\n" ^
346 Sign.string_of_term (sign_of thy) t ^ "\nrequired by:\n" ^
347 commas (Graph.all_succs gr [dep]))
350 fun invoke_tycodegen thy dep brack (gr, T) = (case get_first
351 (fn (_, f) => f thy gr dep brack T) (#tycodegens (CodegenData.get thy)) of
352 None => error ("Unable to generate code for type:\n" ^
353 Sign.string_of_typ (sign_of thy) T ^ "\nrequired by:\n" ^
354 commas (Graph.all_succs gr [dep]))
358 (**** code generator for mixfix expressions ****)
360 fun parens p = Pretty.block [Pretty.str "(", p, Pretty.str ")"];
362 fun pretty_fn [] p = [p]
363 | pretty_fn (x::xs) p = Pretty.str ("fn " ^ x ^ " =>") ::
364 Pretty.brk 1 :: pretty_fn xs p;
366 fun pretty_mixfix [] [] _ = []
367 | pretty_mixfix (Arg :: ms) (p :: ps) qs = p :: pretty_mixfix ms ps qs
368 | pretty_mixfix (Ignore :: ms) ps qs = pretty_mixfix ms ps qs
369 | pretty_mixfix (Pretty p :: ms) ps qs = p :: pretty_mixfix ms ps qs
370 | pretty_mixfix (Quote _ :: ms) ps (q :: qs) = q :: pretty_mixfix ms ps qs;
373 (**** default code generators ****)
375 fun eta_expand t ts i =
377 val (Ts, _) = strip_type (fastype_of t);
378 val j = i - length ts
380 foldr (fn (T, t) => Abs ("x", T, t))
381 (take (j, Ts), list_comb (t, ts @ map Bound (j-1 downto 0)))
384 fun mk_app _ p [] = p
385 | mk_app brack p ps = if brack then
386 Pretty.block (Pretty.str "(" ::
387 separate (Pretty.brk 1) (p :: ps) @ [Pretty.str ")"])
388 else Pretty.block (separate (Pretty.brk 1) (p :: ps));
390 fun new_names t xs = variantlist (xs,
391 map (fst o fst o dest_Var) (term_vars t) union
392 add_term_names (t, ThmDatabase.ml_reserved));
394 fun new_name t x = hd (new_names t [x]);
396 fun default_codegen thy gr dep brack t =
398 val (u, ts) = strip_comb t;
399 fun codegens brack = foldl_map (invoke_codegen thy dep brack)
403 val (gr', ps) = codegens true (gr, ts);
404 val (gr'', _) = invoke_tycodegen thy dep false (gr', T)
405 in Some (gr'', mk_app brack (Pretty.str (s ^
406 (if i=0 then "" else string_of_int i))) ps)
411 val (gr', ps) = codegens true (gr, ts);
412 val (gr'', _) = invoke_tycodegen thy dep false (gr', T)
413 in Some (gr'', mk_app brack (Pretty.str s) ps) end
416 (case get_assoc_code thy s T of
418 let val i = num_args ms
419 in if length ts < i then
420 default_codegen thy gr dep brack (eta_expand u ts i)
423 val (ts1, ts2) = args_of ms ts;
424 val (gr1, ps1) = codegens false (gr, ts1);
425 val (gr2, ps2) = codegens true (gr1, ts2);
426 val (gr3, ps3) = codegens false (gr2, quotes_of ms);
428 Some (gr3, mk_app brack (Pretty.block (pretty_mixfix ms ps1 ps3)) ps2)
431 | None => (case get_defn thy s T of
433 | Some ((args, rhs), k) =>
435 val id = mk_const_id (sign_of thy) s ^ (case k of
436 None => "" | Some i => "_def" ^ string_of_int i);
437 val (gr', ps) = codegens true (gr, ts);
439 Some (Graph.add_edge (id, dep) gr' handle Graph.UNDEF _ =>
441 val _ = message ("expanding definition of " ^ s);
442 val (Ts, _) = strip_type T;
444 if not (null args) orelse null Ts then (args, rhs) else
445 let val v = Free (new_name rhs "x", hd Ts)
446 in ([v], betapply (rhs, v)) end;
447 val (gr1, p) = invoke_codegen thy id false
448 (Graph.add_edge (id, dep)
449 (Graph.new_node (id, (None, "")) gr'), rhs');
450 val (gr2, xs) = codegens false (gr1, args');
451 val (gr3, ty) = invoke_tycodegen thy id false (gr2, T);
452 in Graph.map_node id (K (None, Output.output (Pretty.string_of (Pretty.block
453 (separate (Pretty.brk 1) (if null args' then
454 [Pretty.str ("val " ^ id ^ " :"), ty]
455 else Pretty.str ("fun " ^ id) :: xs) @
456 [Pretty.str " =", Pretty.brk 1, p, Pretty.str ";"])) ^ "\n\n"))) gr3
457 end, mk_app brack (Pretty.str id) ps)
462 val (bs, Ts) = ListPair.unzip (strip_abs_vars u);
463 val t = strip_abs_body u
464 val bs' = new_names t bs;
465 val (gr1, ps) = codegens true (gr, ts);
466 val (gr2, p) = invoke_codegen thy dep false
467 (gr1, subst_bounds (map Free (rev (bs' ~~ Ts)), t));
469 Some (gr2, mk_app brack (Pretty.block (Pretty.str "(" :: pretty_fn bs' p @
470 [Pretty.str ")"])) ps)
476 fun default_tycodegen thy gr dep brack (TVar ((s, i), _)) =
477 Some (gr, Pretty.str (s ^ (if i = 0 then "" else string_of_int i)))
478 | default_tycodegen thy gr dep brack (TFree (s, _)) = Some (gr, Pretty.str s)
479 | default_tycodegen thy gr dep brack (Type (s, Ts)) =
480 (case assoc (#types (CodegenData.get thy), s) of
484 val (gr', ps) = foldl_map
485 (invoke_tycodegen thy dep false) (gr, fst (args_of ms Ts));
486 val (gr'', qs) = foldl_map
487 (invoke_tycodegen thy dep false) (gr', quotes_of ms)
488 in Some (gr'', Pretty.block (pretty_mixfix ms ps qs)) end);
491 fun output_code gr xs = implode (map (snd o Graph.get_node gr)
492 (rev (Graph.all_preds gr xs)));
494 fun gen_generate_code prep_term thy =
495 setmp print_mode [] (Pretty.setmp_margin (!margin) (fn xs =>
497 val sg = sign_of thy;
498 val gr = Graph.new_node ("<Top>", (None, "")) Graph.empty;
499 val (gr', ps) = foldl_map (fn (gr, (s, t)) => apsnd (pair s)
500 (invoke_codegen thy "<Top>" false (gr, t)))
501 (gr, map (apsnd (prep_term sg)) xs)
503 "structure Generated =\nstruct\n\n" ^
504 output_code gr' ["<Top>"] ^
505 space_implode "\n\n" (map (fn (s', p) => Pretty.string_of (Pretty.block
506 [Pretty.str ("val " ^ s' ^ " ="), Pretty.brk 1, p, Pretty.str ";"])) ps) ^
507 "\n\nend;\n\nopen Generated;\n";
508 in Output.output code end));
510 val generate_code_i = gen_generate_code (K I);
511 val generate_code = gen_generate_code
512 (fn sg => term_of o read_cterm sg o rpair TypeInfer.logicT);
515 (**** Reflection ****)
517 val strip_tname = implode o tl o explode;
519 fun pretty_list xs = Pretty.block (Pretty.str "[" ::
520 flat (separate [Pretty.str ",", Pretty.brk 1] (map single xs)) @
523 fun mk_type p (TVar ((s, i), _)) = Pretty.str
524 (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "T")
525 | mk_type p (TFree (s, _)) = Pretty.str (strip_tname s ^ "T")
526 | mk_type p (Type (s, Ts)) = (if p then parens else I) (Pretty.block
527 [Pretty.str "Type", Pretty.brk 1, Pretty.str ("(\"" ^ s ^ "\","),
528 Pretty.brk 1, pretty_list (map (mk_type false) Ts), Pretty.str ")"]);
530 fun mk_term_of sg p (TVar ((s, i), _)) = Pretty.str
531 (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "F")
532 | mk_term_of sg p (TFree (s, _)) = Pretty.str (strip_tname s ^ "F")
533 | mk_term_of sg p (Type (s, Ts)) = (if p then parens else I) (Pretty.block
534 (separate (Pretty.brk 1) (Pretty.str ("term_of_" ^ mk_type_id sg s) ::
535 flat (map (fn T => [mk_term_of sg true T, mk_type true T]) Ts))));
538 (**** Test data generators ****)
540 fun mk_gen sg p xs a (TVar ((s, i), _)) = Pretty.str
541 (strip_tname s ^ (if i = 0 then "" else string_of_int i) ^ "G")
542 | mk_gen sg p xs a (TFree (s, _)) = Pretty.str (strip_tname s ^ "G")
543 | mk_gen sg p xs a (Type (s, Ts)) = (if p then parens else I) (Pretty.block
544 (separate (Pretty.brk 1) (Pretty.str ("gen_" ^ mk_type_id sg s ^
545 (if s mem xs then "'" else "")) :: map (mk_gen sg true xs a) Ts @
546 (if s mem xs then [Pretty.str a] else []))));
548 val test_fn : (int -> (string * term) list option) ref = ref (fn _ => None);
550 fun test_term thy sz i t =
552 val _ = assert (null (term_tvars t) andalso null (term_tfrees t))
553 "Term to be tested contains type variables";
554 val _ = assert (null (term_vars t))
555 "Term to be tested contains schematic variables";
556 val sg = sign_of thy;
557 val frees = map dest_Free (term_frees t);
558 val szname = variant (map fst frees) "i";
559 val s = "structure TestTerm =\nstruct\n\n" ^
560 setmp mode ["term_of", "test"] (generate_code_i thy)
561 [("testf", list_abs_free (frees, t))] ^
562 "\n" ^ Output.output (Pretty.string_of
563 (Pretty.block [Pretty.str "val () = Codegen.test_fn :=",
564 Pretty.brk 1, Pretty.str ("(fn " ^ szname ^ " =>"), Pretty.brk 1,
565 Pretty.blk (0, [Pretty.str "let", Pretty.brk 1,
566 Pretty.blk (0, separate Pretty.fbrk (map (fn (s, T) =>
567 Pretty.block [Pretty.str ("val " ^ s ^ " ="), Pretty.brk 1,
568 mk_gen sg false [] "" T, Pretty.brk 1,
569 Pretty.str (szname ^ ";")]) frees)),
570 Pretty.brk 1, Pretty.str "in", Pretty.brk 1,
571 Pretty.block [Pretty.str "if ",
572 mk_app false (Pretty.str "testf") (map (Pretty.str o fst) frees),
573 Pretty.brk 1, Pretty.str "then Library.None",
574 Pretty.brk 1, Pretty.str "else ",
575 Pretty.block [Pretty.str "Library.Some ", Pretty.block (Pretty.str "[" ::
576 flat (separate [Pretty.str ",", Pretty.brk 1]
577 (map (fn (s, T) => [Pretty.block
578 [Pretty.str ("(" ^ Library.quote s ^ ","), Pretty.brk 1,
579 mk_app false (mk_term_of sg false T)
580 [Pretty.str s], Pretty.str ")"]]) frees)) @
582 Pretty.brk 1, Pretty.str "end"]), Pretty.str ");"])) ^
584 val _ = use_text Context.ml_output false s;
585 fun iter f k = if k > i then None
586 else (case (f () handle Match =>
587 (warning "Exception Match raised in generated code"; None)) of
588 None => iter f (k+1) | Some x => Some x);
589 fun test k = if k > sz then None
590 else (priority ("Test data size: " ^ string_of_int k);
591 case iter (fn () => !test_fn k) 1 of
592 None => test (k+1) | Some x => Some x);
595 fun test_goal ({size, iterations, default_type}, tvinsts) i st =
597 val sg = Toplevel.sign_of st;
598 fun strip (Const ("all", _) $ Abs (_, _, t)) = strip t
600 val (gi, frees) = Logic.goal_params
601 (prop_of (snd (snd (Proof.get_goal (Toplevel.proof_of st))))) i;
602 val gi' = ObjectLogic.atomize_term sg (map_term_types
603 (map_type_tfree (fn p as (s, _) => if_none (assoc (tvinsts, s))
604 (if_none default_type (TFree p)))) (subst_bounds (frees, strip gi)));
605 in case test_term (Toplevel.theory_of st) size iterations gi' of
606 None => writeln "No counterexamples found."
607 | Some cex => writeln ("Counterexample found:\n" ^
608 Pretty.string_of (Pretty.chunks (map (fn (s, t) =>
609 Pretty.block [Pretty.str (s ^ " ="), Pretty.brk 1,
610 Sign.pretty_term sg t]) cex)))
614 (**** Interface ****)
616 val str = setmp print_mode [] Pretty.str;
618 fun parse_mixfix rd s =
619 (case Scan.finite Symbol.stopper (Scan.repeat
621 || $$ "?" >> K Ignore
622 || $$ "/" |-- Scan.repeat ($$ " ") >> (Pretty o Pretty.brk o length)
623 || $$ "{" |-- $$ "*" |-- Scan.repeat1
624 ( $$ "'" |-- Scan.one Symbol.not_eof
625 || Scan.unless ($$ "*" -- $$ "}") (Scan.one Symbol.not_eof)) --|
626 $$ "*" --| $$ "}" >> (Quote o rd o implode)
628 ( $$ "'" |-- Scan.one Symbol.not_eof
629 || Scan.unless ($$ "_" || $$ "?" || $$ "/" || $$ "{" |-- $$ "*")
630 (Scan.one Symbol.not_eof)) >> (Pretty o str o implode)))
631 (Symbol.explode s) of
633 | _ => error ("Malformed annotation: " ^ quote s));
635 structure P = OuterParse and K = OuterSyntax.Keyword;
638 OuterSyntax.command "types_code"
639 "associate types with target language types" K.thy_decl
640 (Scan.repeat1 (P.xname --| P.$$$ "(" -- P.string --| P.$$$ ")") >>
641 (fn xs => Toplevel.theory (fn thy => assoc_types
642 (map (fn (name, mfx) => (name, parse_mixfix
643 (typ_of o read_ctyp (sign_of thy)) mfx)) xs) thy)));
646 OuterSyntax.command "consts_code"
647 "associate constants with target language code" K.thy_decl
649 (P.xname -- (Scan.option (P.$$$ "::" |-- P.typ)) --|
650 P.$$$ "(" -- P.string --| P.$$$ ")") >>
651 (fn xs => Toplevel.theory (fn thy => assoc_consts
652 (map (fn ((name, optype), mfx) => (name, optype, parse_mixfix
653 (term_of o read_cterm (sign_of thy) o rpair TypeInfer.logicT) mfx))
657 OuterSyntax.command "generate_code" "generates code for terms" K.thy_decl
658 (Scan.option (P.$$$ "(" |-- P.name --| P.$$$ ")") --
659 Scan.optional (P.$$$ "[" |-- P.enum "," P.xname --| P.$$$ "]") (!mode) --
660 Scan.repeat1 (P.name --| P.$$$ "=" -- P.term) >>
661 (fn ((opt_fname, mode'), xs) => Toplevel.theory (fn thy =>
663 None => use_text Context.ml_output false
664 | Some fname => File.write (Path.unpack fname))
665 (setmp mode mode' (generate_code thy) xs); thy))));
668 [("size", P.nat >> (K o set_size)),
669 ("iterations", P.nat >> (K o set_iterations)),
670 ("default_type", P.typ >> set_default_type)];
672 val parse_test_params = P.short_ident :-- (fn s =>
673 P.$$$ "=" |-- if_none (assoc (params, s)) Scan.fail) >> snd;
675 fun parse_tyinst xs =
676 (P.type_ident --| P.$$$ "=" -- P.typ >> (fn (v, s) => fn sg =>
677 fn (x, ys) => (x, (v, typ_of (read_ctyp sg s)) :: ys))) xs;
680 | app (f :: fs) x = app fs (f x);
683 OuterSyntax.command "quickcheck_params" "set parameters for random testing" K.thy_decl
684 (P.$$$ "[" |-- P.list1 parse_test_params --| P.$$$ "]" >>
685 (fn fs => Toplevel.theory (fn thy =>
686 map_test_params (app (map (fn f => f (sign_of thy)) fs)) thy)));
689 OuterSyntax.command "quickcheck" "try to find counterexample for subgoal" K.diag
690 (Scan.option (P.$$$ "[" |-- P.list1
691 ( parse_test_params >> (fn f => fn sg => apfst (f sg))
692 || parse_tyinst) --| P.$$$ "]") -- Scan.optional P.nat 1 >>
693 (fn (ps, g) => Toplevel.keep (fn st =>
694 test_goal (app (if_none (apsome
695 (map (fn f => f (Toplevel.sign_of st))) ps) [])
696 (get_test_params (Toplevel.theory_of st), [])) g st)));
698 val parsers = [assoc_typeP, assoc_constP, generate_codeP, test_paramsP, testP];
702 add_codegen "default" default_codegen,
703 add_tycodegen "default" default_tycodegen,
704 assoc_types [("fun", parse_mixfix (K dummyT) "(_ ->/ _)")],
705 Attrib.add_attributes [("code",
706 (code_attr, K Attrib.undef_local_attribute),
707 "declare theorems for code generation")]];
711 OuterSyntax.add_parsers Codegen.parsers;