src/Tools/Code/code_eval.ML
author haftmann
Mon, 23 Aug 2010 11:09:49 +0200
changeset 38669 9ff76d0f0610
parent 37950 bc285d91041e
child 38921 15f8cffdbf5d
permissions -rw-r--r--
refined and unified naming convention for dynamic code evaluation techniques
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37744
3daaf23b9ab4 tuned titles
haftmann
parents: 37448
diff changeset
     1
(*  Title:      Tools/Code/code_eval.ML
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
     2
    Author:     Florian Haftmann, TU Muenchen
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
     3
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
     4
Runtime services building on code generation into implementation language SML.
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
     5
*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
     6
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
     7
signature CODE_EVAL =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
     8
sig
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
     9
  val target: string
32740
9dd0a2f83429 explicit indication of Unsynchronized.ref;
wenzelm
parents: 32123
diff changeset
    10
  val eval: string option -> string * (unit -> 'a) option Unsynchronized.ref
30970
3fe2e418a071 generic postprocessing scheme for term evaluations
haftmann
parents: 30962
diff changeset
    11
    -> ((term -> term) -> 'a -> 'a) -> theory -> term -> string list -> 'a
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    12
  val evaluation_code: theory -> string -> string list -> string list
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    13
    -> string * ((string * string) list * (string * string) list)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    14
  val setup: theory -> theory
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    15
end;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    16
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    17
structure Code_Eval : CODE_EVAL =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    18
struct
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    19
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    20
(** generic **)
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    21
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    22
val target = "Eval";
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    23
34032
f13b5c023e65 simplified notion of empty module name
haftmann
parents: 34028
diff changeset
    24
val eval_struct_name = "Code";
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    25
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    26
fun evaluation_code thy struct_name_hint tycos consts =
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    27
  let
36271
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 35360
diff changeset
    28
    val (consts', (naming, program)) = Code_Thingol.consts_program thy false consts;
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    29
    val tycos' = map (the o Code_Thingol.lookup_tyco naming) tycos;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    30
    val struct_name = if struct_name_hint = "" then eval_struct_name
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    31
      else struct_name_hint;
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    32
    val (ml_code, target_names) = Code_ML.evaluation_code_of thy target
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    33
      struct_name naming program (consts' @ tycos');
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    34
    val (consts'', tycos'') = chop (length consts') target_names;
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    35
    val consts_map = map2 (fn const => fn NONE =>
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    36
        error ("Constant " ^ (quote o Code.string_of_const thy) const
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    37
          ^ "\nhas a user-defined serialization")
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    38
      | SOME const'' => (const, const'')) consts consts''
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    39
    val tycos_map = map2 (fn tyco => fn NONE =>
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    40
        error ("Type " ^ (quote o Sign.extern_type thy) tyco
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    41
          ^ "\nhas a user-defined serialization")
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    42
      | SOME tyco'' => (tyco, tyco'')) tycos tycos'';
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    43
  in (ml_code, (tycos_map, consts_map)) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    44
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    45
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    46
(** evaluation **)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    47
30970
3fe2e418a071 generic postprocessing scheme for term evaluations
haftmann
parents: 30962
diff changeset
    48
fun eval some_target reff postproc thy t args =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    49
  let
36610
bafd82950e24 renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
wenzelm
parents: 36534
diff changeset
    50
    val ctxt = ProofContext.init_global thy;
31063
88aaab83b6fc dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents: 31054
diff changeset
    51
    fun evaluator naming program ((_, (_, ty)), t) deps =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    52
      let
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    53
        val _ = if Code_Thingol.contains_dictvar t then
28724
haftmann
parents: 28708
diff changeset
    54
          error "Term to be evaluated contains free dictionaries" else ();
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28350
diff changeset
    55
        val value_name = "Value.VALUE.value"
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    56
        val program' = program
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28350
diff changeset
    57
          |> Graph.new_node (value_name,
37437
4202e11ae7dc formal introduction of case cong
haftmann
parents: 37216
diff changeset
    58
              Code_Thingol.Fun (Term.dummy_patternN, ((([], ty), [(([], t), (NONE, true))]), NONE)))
28663
bd8438543bf2 code identifier namings are no longer imperative
haftmann
parents: 28350
diff changeset
    59
          |> fold (curry Graph.add_edge value_name) deps;
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    60
        val (value_code, [SOME value_name']) = Code_ML.evaluation_code_of thy
34032
f13b5c023e65 simplified notion of empty module name
haftmann
parents: 34028
diff changeset
    61
          (the_default target some_target) "" naming program' [value_name];
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    62
        val sml_code = "let\n" ^ value_code ^ "\nin " ^ value_name'
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    63
          ^ space_implode " " (map (enclose "(" ")") args) ^ " end";
30672
beaadd5af500 more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
wenzelm
parents: 30648
diff changeset
    64
      in ML_Context.evaluate ctxt false reff sml_code end;
38669
9ff76d0f0610 refined and unified naming convention for dynamic code evaluation techniques
haftmann
parents: 37950
diff changeset
    65
  in Code_Thingol.dynamic_eval_value thy postproc evaluator t end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    66
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    67
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    68
(** instrumentalization by antiquotation **)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    69
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    70
local
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    71
33519
e31a85f92ce9 adapted Generic_Data, Proof_Data;
wenzelm
parents: 33038
diff changeset
    72
structure CodeAntiqData = Proof_Data
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    73
(
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    74
  type T = (string list * string list) * (bool * (string
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    75
    * (string * ((string * string) list * (string * string) list)) lazy));
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    76
  fun init _ = (([], []), (true, ("", Lazy.value ("", ([], [])))));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    77
);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    78
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    79
val is_first_occ = fst o snd o CodeAntiqData.get;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    80
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    81
fun register_code new_tycos new_consts ctxt =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    82
  let
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    83
    val ((tycos, consts), (_, (struct_name, _))) = CodeAntiqData.get ctxt;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    84
    val tycos' = fold (insert (op =)) new_tycos tycos;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    85
    val consts' = fold (insert (op =)) new_consts consts;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    86
    val (struct_name', ctxt') = if struct_name = ""
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    87
      then ML_Antiquote.variant eval_struct_name ctxt
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    88
      else (struct_name, ctxt);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    89
    val acc_code = Lazy.lazy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
    90
      (fn () => evaluation_code (ProofContext.theory_of ctxt) eval_struct_name tycos' consts');
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    91
  in CodeAntiqData.put ((tycos', consts'), (false, (struct_name', acc_code))) ctxt' end;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    92
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    93
fun register_const const = register_code [] [const];
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    94
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    95
fun register_datatype tyco constrs = register_code [tyco] constrs;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    96
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    97
fun print_const const all_struct_name tycos_map consts_map =
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    98
  (Long_Name.append all_struct_name o the o AList.lookup (op =) consts_map) const;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
    99
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   100
fun print_code is_first print_it ctxt =
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   101
  let
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   102
    val (_, (_, (struct_code_name, acc_code))) = CodeAntiqData.get ctxt;
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   103
    val (ml_code, (tycos_map, consts_map)) = Lazy.force acc_code;
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   104
    val ml_code = if is_first then ml_code
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   105
      else "";
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   106
    val all_struct_name = "Isabelle." ^ struct_code_name;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   107
  in (ml_code, print_it all_struct_name tycos_map consts_map) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   108
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   109
in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   110
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   111
fun ml_code_antiq raw_const background =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   112
  let
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31121
diff changeset
   113
    val const = Code.check_const (ProofContext.theory_of background) raw_const;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   114
    val is_first = is_first_occ background;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   115
    val background' = register_const const background;
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   116
  in (print_code is_first (print_const const), background') end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   117
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   118
end; (*local*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   119
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   120
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   121
(** reflection support **)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   122
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   123
fun check_datatype thy tyco consts =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   124
  let
37448
3bd4b3809bee explicit type variable arguments for constructors
haftmann
parents: 37437
diff changeset
   125
    val constrs = (map (fst o fst) o snd o Code.get_type thy) tyco;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   126
    val missing_constrs = subtract (op =) consts constrs;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   127
    val _ = if null missing_constrs then []
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   128
      else error ("Missing constructor(s) " ^ commas (map quote missing_constrs)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   129
        ^ " for datatype " ^ quote tyco);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   130
    val false_constrs = subtract (op =) constrs consts;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   131
    val _ = if null false_constrs then []
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   132
      else error ("Non-constructor(s) " ^ commas (map quote false_constrs)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   133
        ^ " for datatype " ^ quote tyco);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   134
  in () end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   135
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   136
fun add_eval_tyco (tyco, tyco') thy =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   137
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   138
    val k = Sign.arity_number thy tyco;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   139
    fun pr pr' fxy [] = tyco'
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   140
      | pr pr' fxy [ty] =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   141
          Code_Printer.concat [pr' Code_Printer.BR ty, tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   142
      | pr pr' fxy tys =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   143
          Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   144
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   145
    thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   146
    |> Code_Target.add_syntax_tyco target tyco (SOME (k, pr))
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   147
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   148
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   149
fun add_eval_constr (const, const') thy =
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   150
  let
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   151
    val k = Code.args_number thy const;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   152
    fun pr pr' fxy ts = Code_Printer.brackify fxy
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   153
      (const' :: the_list (Code_ML.print_tuple pr' Code_Printer.BR (map fst ts)));
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   154
  in
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   155
    thy
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   156
    |> Code_Target.add_syntax_const target const (SOME (Code_Printer.simple_const_syntax (k, pr)))
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   157
  end;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   158
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   159
fun add_eval_const (const, const') = Code_Target.add_syntax_const target
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   160
  const (SOME (Code_Printer.simple_const_syntax (0, (K o K o K) const')));
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   161
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   162
fun process (code_body, (tyco_map, (constr_map, const_map))) module_name NONE thy =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   163
      let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   164
        val pr = Code_Printer.str o Long_Name.append module_name;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   165
      in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   166
        thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   167
        |> Code_Target.add_reserved target module_name
37198
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 36960
diff changeset
   168
        |> Context.theory_map
3af985b10550 replaced ML_Lex.read_antiq by more concise ML_Lex.read, which includes full read/report with explicit position information;
wenzelm
parents: 36960
diff changeset
   169
          (ML_Context.exec (fn () => ML_Context.eval_text true Position.none code_body))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   170
        |> fold (add_eval_tyco o apsnd pr) tyco_map
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   171
        |> fold (add_eval_constr o apsnd pr) constr_map
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   172
        |> fold (add_eval_const o apsnd pr) const_map
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   173
      end
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   174
  | process (code_body, _) _ (SOME file_name) thy =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   175
      let
37950
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   176
        val preamble =
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   177
          "(* Generated from " ^ Path.implode (Thy_Header.thy_path (Context.theory_name thy))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   178
          ^ "; DO NOT EDIT! *)";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   179
        val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code_body);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   180
      in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   181
        thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   182
      end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   183
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   184
fun gen_code_reflect prep_type prep_const raw_datatypes raw_functions module_name some_file thy  =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   185
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   186
    val datatypes = map (fn (raw_tyco, raw_cos) =>
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   187
      (prep_type thy raw_tyco, map (prep_const thy) raw_cos)) raw_datatypes;
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   188
    val _ = map (uncurry (check_datatype thy)) datatypes;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   189
    val tycos = map fst datatypes;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   190
    val constrs = maps snd datatypes;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   191
    val functions = map (prep_const thy) raw_functions;
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   192
    val result = evaluation_code thy module_name tycos (constrs @ functions)
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   193
      |> (apsnd o apsnd) (chop (length constrs));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   194
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   195
    thy
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   196
    |> process result module_name some_file
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   197
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   198
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   199
val code_reflect = gen_code_reflect Code_Target.cert_tyco Code.check_const;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   200
val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   201
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   202
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   203
(** Isar setup **)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   204
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   205
val _ = ML_Context.add_antiq "code" (fn _ => Args.term >> ml_code_antiq);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   206
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   207
local
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   208
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   209
val datatypesK = "datatypes";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   210
val functionsK = "functions";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   211
val fileK = "file";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   212
val andK = "and"
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   213
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   214
val _ = List.app Keyword.keyword [datatypesK, functionsK];
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   215
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   216
val parse_datatype =
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   217
  Parse.name --| Parse.$$$ "=" -- (Parse.term ::: (Scan.repeat (Parse.$$$ "|" |-- Parse.term)));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   218
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   219
in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   220
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   221
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   222
  Outer_Syntax.command "code_reflect" "enrich runtime environment with generated code"
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   223
    Keyword.thy_decl (Parse.name -- Scan.optional (Parse.$$$ datatypesK |-- (parse_datatype
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   224
      ::: Scan.repeat (Parse.$$$ andK |-- parse_datatype))) []
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   225
    -- Scan.optional (Parse.$$$ functionsK |-- Scan.repeat1 Parse.name) []
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   226
    -- Scan.option (Parse.$$$ fileK |-- Parse.name)
36534
0090b04432f7 dropped code_datatype antiquotation
haftmann
parents: 36514
diff changeset
   227
  >> (fn (((module_name, raw_datatypes), raw_functions), some_file) => Toplevel.theory
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   228
    (code_reflect_cmd raw_datatypes raw_functions module_name some_file)));
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   229
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   230
end; (*local*)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   231
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   232
val setup = Code_Target.extend_target (target, (Code_ML.target_SML, K I));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   233
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   234
end; (*struct*)