src/Tools/Code/code_eval.ML
author wenzelm
Sun, 30 May 2010 21:34:19 +0200
changeset 37199 3af985b10550
parent 36970 01594f816e3a
child 37216 3165bc303f66
permissions -rw-r--r--
replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
ML_Context.eval/expression expect explicit ML_Lex source, which allows surrounding further text without loosing position information;
fall back on ML_Context.eval_text if there is no position or no surrounding text;
proper Args.name_source_position for method "tactic" and "raw_tactic";
tuned;
     1 (*  Title:      Tools/code/code_eval.ML
     2     Author:     Florian Haftmann, TU Muenchen
     3 
     4 Runtime services building on code generation into implementation language SML.
     5 *)
     6 
     7 signature CODE_EVAL =
     8 sig
     9   val target: string
    10   val eval: string option -> string * (unit -> 'a) option Unsynchronized.ref
    11     -> ((term -> term) -> 'a -> 'a) -> theory -> term -> string list -> 'a
    12   val evaluation_code: theory -> string -> string list -> string list
    13     -> string * ((string * string) list * (string * string) list)
    14   val setup: theory -> theory
    15 end;
    16 
    17 structure Code_Eval : CODE_EVAL =
    18 struct
    19 
    20 (** generic **)
    21 
    22 val target = "Eval";
    23 
    24 val eval_struct_name = "Code";
    25 
    26 fun evaluation_code thy struct_name_hint tycos consts =
    27   let
    28     val (consts', (naming, program)) = Code_Thingol.consts_program thy false consts;
    29     val tycos' = map (the o Code_Thingol.lookup_tyco naming) tycos;
    30     val struct_name = if struct_name_hint = "" then eval_struct_name
    31       else struct_name_hint;
    32     val (ml_code, target_names) = Code_ML.evaluation_code_of thy target
    33       struct_name naming program (consts' @ tycos');
    34     val (consts'', tycos'') = chop (length consts') target_names;
    35     val consts_map = map2 (fn const => fn NONE =>
    36         error ("Constant " ^ (quote o Code.string_of_const thy) const
    37           ^ "\nhas a user-defined serialization")
    38       | SOME const'' => (const, const'')) consts consts''
    39     val tycos_map = map2 (fn tyco => fn NONE =>
    40         error ("Type " ^ (quote o Sign.extern_type thy) tyco
    41           ^ "\nhas a user-defined serialization")
    42       | SOME tyco'' => (tyco, tyco'')) tycos tycos'';
    43   in (ml_code, (tycos_map, consts_map)) end;
    44 
    45 
    46 (** evaluation **)
    47 
    48 fun eval some_target reff postproc thy t args =
    49   let
    50     val ctxt = ProofContext.init_global thy;
    51     fun evaluator naming program ((_, (_, ty)), t) deps =
    52       let
    53         val _ = if Code_Thingol.contains_dictvar t then
    54           error "Term to be evaluated contains free dictionaries" else ();
    55         val value_name = "Value.VALUE.value"
    56         val program' = program
    57           |> Graph.new_node (value_name,
    58               Code_Thingol.Fun (Term.dummy_patternN, (([], ty), [(([], t), (NONE, true))])))
    59           |> fold (curry Graph.add_edge value_name) deps;
    60         val (value_code, [SOME value_name']) = Code_ML.evaluation_code_of thy
    61           (the_default target some_target) "" naming program' [value_name];
    62         val sml_code = "let\n" ^ value_code ^ "\nin " ^ value_name'
    63           ^ space_implode " " (map (enclose "(" ")") args) ^ " end";
    64       in ML_Context.evaluate ctxt false reff sml_code end;
    65   in Code_Thingol.eval thy postproc evaluator t end;
    66 
    67 
    68 (** instrumentalization by antiquotation **)
    69 
    70 local
    71 
    72 structure CodeAntiqData = Proof_Data
    73 (
    74   type T = (string list * string list) * (bool * (string
    75     * (string * ((string * string) list * (string * string) list)) lazy));
    76   fun init _ = (([], []), (true, ("", Lazy.value ("", ([], [])))));
    77 );
    78 
    79 val is_first_occ = fst o snd o CodeAntiqData.get;
    80 
    81 fun register_code new_tycos new_consts ctxt =
    82   let
    83     val ((tycos, consts), (_, (struct_name, _))) = CodeAntiqData.get ctxt;
    84     val tycos' = fold (insert (op =)) new_tycos tycos;
    85     val consts' = fold (insert (op =)) new_consts consts;
    86     val (struct_name', ctxt') = if struct_name = ""
    87       then ML_Antiquote.variant eval_struct_name ctxt
    88       else (struct_name, ctxt);
    89     val acc_code = Lazy.lazy
    90       (fn () => evaluation_code (ProofContext.theory_of ctxt) eval_struct_name tycos' consts');
    91   in CodeAntiqData.put ((tycos', consts'), (false, (struct_name', acc_code))) ctxt' end;
    92 
    93 fun register_const const = register_code [] [const];
    94 
    95 fun register_datatype tyco constrs = register_code [tyco] constrs;
    96 
    97 fun print_const const all_struct_name tycos_map consts_map =
    98   (Long_Name.append all_struct_name o the o AList.lookup (op =) consts_map) const;
    99 
   100 fun print_code is_first print_it ctxt =
   101   let
   102     val (_, (_, (struct_code_name, acc_code))) = CodeAntiqData.get ctxt;
   103     val (ml_code, (tycos_map, consts_map)) = Lazy.force acc_code;
   104     val ml_code = if is_first then ml_code
   105       else "";
   106     val all_struct_name = "Isabelle." ^ struct_code_name;
   107   in (ml_code, print_it all_struct_name tycos_map consts_map) end;
   108 
   109 in
   110 
   111 fun ml_code_antiq raw_const background =
   112   let
   113     val const = Code.check_const (ProofContext.theory_of background) raw_const;
   114     val is_first = is_first_occ background;
   115     val background' = register_const const background;
   116   in (print_code is_first (print_const const), background') end;
   117 
   118 end; (*local*)
   119 
   120 
   121 (** reflection support **)
   122 
   123 fun check_datatype thy tyco consts =
   124   let
   125     val constrs = (map fst o snd o Code.get_type thy) tyco;
   126     val missing_constrs = subtract (op =) consts constrs;
   127     val _ = if null missing_constrs then []
   128       else error ("Missing constructor(s) " ^ commas (map quote missing_constrs)
   129         ^ " for datatype " ^ quote tyco);
   130     val false_constrs = subtract (op =) constrs consts;
   131     val _ = if null false_constrs then []
   132       else error ("Non-constructor(s) " ^ commas (map quote false_constrs)
   133         ^ " for datatype " ^ quote tyco);
   134   in () end;
   135 
   136 fun add_eval_tyco (tyco, tyco') thy =
   137   let
   138     val k = Sign.arity_number thy tyco;
   139     fun pr pr' fxy [] = tyco'
   140       | pr pr' fxy [ty] =
   141           Code_Printer.concat [pr' Code_Printer.BR ty, tyco']
   142       | pr pr' fxy tys =
   143           Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
   144   in
   145     thy
   146     |> Code_Target.add_syntax_tyco target tyco (SOME (k, pr))
   147   end;
   148 
   149 fun add_eval_constr (const, const') thy =
   150   let
   151     val k = Code.args_number thy const;
   152     fun pr pr' fxy ts = Code_Printer.brackify fxy
   153       (const' :: the_list (Code_ML.print_tuple pr' Code_Printer.BR (map fst ts)));
   154   in
   155     thy
   156     |> Code_Target.add_syntax_const target const (SOME (Code_Printer.simple_const_syntax (k, pr)))
   157   end;
   158 
   159 fun add_eval_const (const, const') = Code_Target.add_syntax_const target
   160   const (SOME (Code_Printer.simple_const_syntax (0, (K o K o K) const')));
   161 
   162 fun process (code_body, (tyco_map, (constr_map, const_map))) module_name NONE thy =
   163       let
   164         val pr = Code_Printer.str o Long_Name.append module_name;
   165       in
   166         thy
   167         |> Code_Target.add_reserved target module_name
   168         |> Context.theory_map
   169           (ML_Context.exec (fn () => ML_Context.eval_text true Position.none code_body))
   170         |> fold (add_eval_tyco o apsnd pr) tyco_map
   171         |> fold (add_eval_constr o apsnd pr) constr_map
   172         |> fold (add_eval_const o apsnd pr) const_map
   173       end
   174   | process (code_body, _) _ (SOME file_name) thy =
   175       let
   176         val preamble = "(* Generated from " ^ Path.implode (ThyLoad.thy_path (Context.theory_name thy))
   177           ^ "; DO NOT EDIT! *)";
   178         val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code_body);
   179       in
   180         thy
   181       end;
   182 
   183 fun gen_code_reflect prep_type prep_const raw_datatypes raw_functions module_name some_file thy  =
   184   let
   185     val datatypes = map (fn (raw_tyco, raw_cos) =>
   186       (prep_type thy raw_tyco, map (prep_const thy) raw_cos)) raw_datatypes;
   187     val _ = map (uncurry (check_datatype thy)) datatypes;
   188     val tycos = map fst datatypes;
   189     val constrs = maps snd datatypes;
   190     val functions = map (prep_const thy) raw_functions;
   191     val result = evaluation_code thy module_name tycos (constrs @ functions)
   192       |> (apsnd o apsnd) (chop (length constrs));
   193   in
   194     thy
   195     |> process result module_name some_file
   196   end;
   197 
   198 val code_reflect = gen_code_reflect Code_Target.cert_tyco Code.check_const;
   199 val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const;
   200 
   201 
   202 (** Isar setup **)
   203 
   204 val _ = ML_Context.add_antiq "code" (fn _ => Args.term >> ml_code_antiq);
   205 
   206 local
   207 
   208 val datatypesK = "datatypes";
   209 val functionsK = "functions";
   210 val fileK = "file";
   211 val andK = "and"
   212 
   213 val _ = List.app Keyword.keyword [datatypesK, functionsK];
   214 
   215 val parse_datatype =
   216   Parse.name --| Parse.$$$ "=" -- (Parse.term ::: (Scan.repeat (Parse.$$$ "|" |-- Parse.term)));
   217 
   218 in
   219 
   220 val _ =
   221   Outer_Syntax.command "code_reflect" "enrich runtime environment with generated code"
   222     Keyword.thy_decl (Parse.name -- Scan.optional (Parse.$$$ datatypesK |-- (parse_datatype
   223       ::: Scan.repeat (Parse.$$$ andK |-- parse_datatype))) []
   224     -- Scan.optional (Parse.$$$ functionsK |-- Scan.repeat1 Parse.name) []
   225     -- Scan.option (Parse.$$$ fileK |-- Parse.name)
   226   >> (fn (((module_name, raw_datatypes), raw_functions), some_file) => Toplevel.theory
   227     (code_reflect_cmd raw_datatypes raw_functions module_name some_file)));
   228 
   229 end; (*local*)
   230 
   231 val setup = Code_Target.extend_target (target, (Code_ML.target_SML, K I));
   232 
   233 end; (*struct*)