src/Tools/Code/code_runtime.ML
author wenzelm
Fri, 01 Oct 2010 17:23:26 +0200
changeset 39820 cd691e2c7a1a
parent 39816 c7cec137c48a
child 39913 721ba2c1a799
permissions -rw-r--r--
made SML/NJ happy;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39401
887f4218a39a code_eval renamed to code_runtime
haftmann
parents: 39388
diff changeset
     1
(*  Title:      Tools/Code/code_runtime.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
39401
887f4218a39a code_eval renamed to code_runtime
haftmann
parents: 39388
diff changeset
     7
signature CODE_RUNTIME =
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
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    10
  type 'a cookie = (Proof.context -> unit -> 'a) * ((unit -> 'a) -> Proof.context -> Proof.context) * string
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    11
  val dynamic_value: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    12
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    13
  val dynamic_value_strict: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    14
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    15
  val dynamic_value_exn: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    16
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a Exn.result
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    17
  val static_value: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    18
    -> ((term -> term) -> 'a -> 'a) -> string list -> term -> 'a option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    19
  val static_value_strict: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    20
    -> ((term -> term) -> 'a -> 'a) -> string list -> term -> 'a
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    21
  val static_value_exn: 'a cookie -> theory -> string option
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    22
    -> ((term -> term) -> 'a -> 'a) -> string list -> term -> 'a Exn.result
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    23
  val dynamic_holds_conv: conv
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    24
  val static_holds_conv: theory -> string list -> conv
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
    25
  val code_reflect: (string * string list) list -> string list -> string -> string option
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
    26
    -> theory -> theory
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    27
  datatype truth = Holds
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    28
  val put_truth: (unit -> truth) -> Proof.context -> Proof.context
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
    29
  val polyml_as_definition: (binding * typ) list -> Path.T list -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    30
end;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    31
39401
887f4218a39a code_eval renamed to code_runtime
haftmann
parents: 39388
diff changeset
    32
structure Code_Runtime : CODE_RUNTIME =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    33
struct
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    34
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    35
open Basic_Code_Thingol;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    36
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
    37
(** evaluation **)
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    38
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    39
(* technical prerequisites *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    40
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    41
val this = "Code_Runtime";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    42
val s_truth = Long_Name.append this "truth";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    43
val s_Holds = Long_Name.append this "Holds";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    44
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    45
val target = "Eval";
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    46
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    47
datatype truth = Holds;
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
    48
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    49
val _ = Context.>> (Context.map_theory
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    50
  (Code_Target.extend_target (target, (Code_ML.target_SML, K I))
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    51
  #> Code_Target.add_tyco_syntax target @{type_name prop}
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    52
       (SOME (0, (K o K o K) (Code_Printer.str s_truth)))
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    53
  #> Code_Target.add_const_syntax target @{const_name Code_Generator.holds}
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    54
       (SOME (Code_Printer.plain_const_syntax s_Holds))
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    55
  #> Code_Target.add_reserved target this
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    56
  #> fold (Code_Target.add_reserved target) ["oo", "ooo", "oooo", "upto", "downto", "orf", "andf"]));
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    57
       (*avoid further pervasive infix names*)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    58
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    59
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    60
(* evaluation into target language values *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    61
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    62
type 'a cookie = (Proof.context -> unit -> 'a) * ((unit -> 'a) -> Proof.context -> Proof.context) * string;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    63
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    64
fun reject_vars thy t =
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    65
  let
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    66
    val ctxt = ProofContext.init_global thy;
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    67
  in ((Sign.no_frees ctxt o Sign.no_vars ctxt o map_types (K dummyT)) t; t) end;
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    68
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    69
fun obtain_serializer thy some_target = Code_Target.produce_code_for thy
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    70
  (the_default target some_target) NONE "Code" [];
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    71
39537
41afe7124aa6 made smlnj happy
haftmann
parents: 39485
diff changeset
    72
fun base_evaluator cookie serializer (naming : Code_Thingol.naming) thy program ((vs, ty), t) deps args =
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
    73
  let
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
    74
    val ctxt = ProofContext.init_global thy;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    75
    val _ = if Code_Thingol.contains_dictvar t then
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    76
      error "Term to be evaluated contains free dictionaries" else ();
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    77
    val v' = Name.variant (map fst vs) "a";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    78
    val vs' = (v', []) :: vs
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    79
    val ty' = Code_Thingol.fun_tyco `%% [ITyVar v', ty];
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    80
    val value_name = "Value.value.value"
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    81
    val program' = program
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    82
      |> Graph.new_node (value_name,
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    83
          Code_Thingol.Fun (Term.dummy_patternN, (((vs', ty'), [(([IVar NONE], t), (NONE, true))]), NONE)))
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    84
      |> fold (curry Graph.add_edge value_name) deps;
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    85
    val (program_code, [SOME value_name']) = serializer naming program' [value_name];
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    86
    val value_code = space_implode " "
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    87
      (value_name' :: "()" :: map (enclose "(" ")") args);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    88
  in Exn.capture (ML_Context.value ctxt cookie) (program_code, value_code) end;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    89
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    90
fun partiality_as_none e = SOME (Exn.release e)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    91
  handle General.Match => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    92
    | General.Bind => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    93
    | General.Fail _ => NONE;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    94
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    95
fun dynamic_value_exn cookie thy some_target postproc t args =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    96
  let
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
    97
    val _ = reject_vars thy t;
39482
1c37d19e3d58 made sml/nj happy
haftmann
parents: 39473
diff changeset
    98
    fun evaluator naming program ((_, vs_ty), t) deps =
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    99
      base_evaluator cookie (obtain_serializer thy some_target) naming thy program (vs_ty, t) deps args;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   100
  in Code_Thingol.dynamic_eval_value thy (Exn.map_result o postproc) evaluator t end;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   101
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   102
fun dynamic_value_strict cookie thy some_target postproc t args =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   103
  Exn.release (dynamic_value_exn cookie thy some_target postproc t args);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   104
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   105
fun dynamic_value cookie thy some_target postproc t args =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   106
  partiality_as_none (dynamic_value_exn cookie thy some_target postproc t args);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   107
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   108
fun static_value_exn cookie thy some_target postproc consts =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   109
  let
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   110
    val serializer = obtain_serializer thy some_target;
39482
1c37d19e3d58 made sml/nj happy
haftmann
parents: 39473
diff changeset
   111
    fun evaluator naming program thy ((_, vs_ty), t) deps =
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   112
      base_evaluator cookie serializer naming thy program (vs_ty, t) deps [];
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   113
  in Code_Thingol.static_eval_value thy (Exn.map_result o postproc) consts evaluator o reject_vars thy end;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   114
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   115
fun static_value_strict cookie thy some_target postproc consts t =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   116
  Exn.release (static_value_exn cookie thy some_target postproc consts t);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   117
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   118
fun static_value cookie thy some_target postproc consts t =
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   119
  partiality_as_none (static_value_exn cookie thy some_target postproc consts t);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   120
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   121
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   122
(* evaluation for truth or nothing *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   123
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   124
structure Truth_Result = Proof_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   125
(
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   126
  type T = unit -> truth
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   127
  fun init _ () = error "Truth_Result"
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   128
);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   129
val put_truth = Truth_Result.put;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   130
val truth_cookie = (Truth_Result.get, put_truth, Long_Name.append this "put_truth");
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   131
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   132
val reject_vars = fn thy => tap (reject_vars thy o Thm.term_of);
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   133
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   134
fun check_holds serializer naming thy program vs_t deps ct =
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   135
  let
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   136
    val t = Thm.term_of ct;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   137
    val _ = if fastype_of t <> propT
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   138
      then error ("Not a proposition: " ^ Syntax.string_of_term_global thy t)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   139
      else ();
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   140
    val iff = Thm.cterm_of thy (Term.Const ("==", propT --> propT --> propT));
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   141
    val result = case partiality_as_none (base_evaluator truth_cookie serializer naming thy program vs_t deps [])
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   142
     of SOME Holds => true
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   143
      | _ => false;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   144
  in
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   145
    Thm.mk_binop iff ct (if result then @{cprop "PROP Code_Generator.holds"} else ct)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   146
  end;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   147
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   148
val (_, raw_check_holds_oracle) = Context.>>> (Context.map_theory_result
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   149
  (Thm.add_oracle (Binding.name "holds_by_evaluation",
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   150
  fn (serializer, naming, thy, program, vs_t, deps, ct) => check_holds serializer naming thy program vs_t deps ct)));
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   151
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   152
fun check_holds_oracle serializer naming thy program ((_, vs_ty), t) deps ct =
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   153
  raw_check_holds_oracle (serializer, naming, thy, program, (vs_ty, t), deps, ct);
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   154
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   155
val dynamic_holds_conv = Conv.tap_thy (fn thy => Code_Thingol.dynamic_eval_conv thy
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   156
  (fn naming => check_holds_oracle (obtain_serializer thy NONE) naming thy)
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   157
  o reject_vars thy);
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   158
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   159
fun static_holds_conv thy consts =
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   160
  let
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   161
    val serializer = obtain_serializer thy NONE;
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   162
  in
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   163
    Code_Thingol.static_eval_conv thy consts
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   164
      (fn naming => fn program => fn thy => check_holds_oracle serializer naming thy program)
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   165
    o reject_vars thy
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   166
  end;
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   167
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   168
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   169
(** instrumentalization **)
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   170
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   171
fun evaluation_code thy module_name tycos consts =
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   172
  let
36271
2ef9dbddfcb8 optionally ignore errors during translation of equations
haftmann
parents: 35360
diff changeset
   173
    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
   174
    val tycos' = map (the o Code_Thingol.lookup_tyco naming) tycos;
38921
15f8cffdbf5d dropped legacy interfaces
haftmann
parents: 38669
diff changeset
   175
    val (ml_code, target_names) = Code_Target.produce_code_for thy
38933
bd77e092f67c avoid strange special treatment of empty module names
haftmann
parents: 38931
diff changeset
   176
      target NONE module_name [] naming program (consts' @ tycos');
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   177
    val (consts'', tycos'') = chop (length consts') target_names;
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   178
    val consts_map = map2 (fn const => fn NONE =>
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   179
        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
   180
          ^ "\nhas a user-defined serialization")
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   181
      | SOME const'' => (const, const'')) consts consts''
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   182
    val tycos_map = map2 (fn tyco => fn NONE =>
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   183
        error ("Type " ^ (quote o Sign.extern_type thy) tyco
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   184
          ^ "\nhas a user-defined serialization")
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   185
      | SOME tyco'' => (tyco, tyco'')) tycos tycos'';
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   186
  in (ml_code, (tycos_map, consts_map)) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   187
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   188
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   189
(* by antiquotation *)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   190
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   191
local
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   192
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   193
structure Code_Antiq_Data = Proof_Data
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   194
(
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   195
  type T = (string list * string list) * (bool
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   196
    * (string * ((string * string) list * (string * string) list)) lazy);
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   197
  fun init _ = (([], []), (true, (Lazy.value ("", ([], [])))));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   198
);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   199
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   200
val is_first_occ = fst o snd o Code_Antiq_Data.get;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   201
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   202
fun register_code new_tycos new_consts ctxt =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   203
  let
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   204
    val ((tycos, consts), _) = Code_Antiq_Data.get ctxt;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   205
    val tycos' = fold (insert (op =)) new_tycos tycos;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   206
    val consts' = fold (insert (op =)) new_consts consts;
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   207
    val acc_code = Lazy.lazy (fn () =>
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   208
      evaluation_code (ProofContext.theory_of ctxt) "Code" tycos' consts');
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   209
  in Code_Antiq_Data.put ((tycos', consts'), (false, acc_code)) ctxt end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   210
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   211
fun register_const const = register_code [] [const];
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   212
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   213
fun register_datatype tyco constrs = register_code [tyco] constrs;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   214
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   215
fun print_const const all_struct_name tycos_map consts_map =
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   216
  (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
   217
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   218
fun print_code is_first print_it ctxt =
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   219
  let
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   220
    val (_, (_, acc_code)) = Code_Antiq_Data.get ctxt;
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   221
    val (ml_code, (tycos_map, consts_map)) = Lazy.force acc_code;
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   222
    val ml_code = if is_first then ml_code
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   223
      else "";
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   224
    val all_struct_name = "Isabelle";
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   225
  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
   226
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   227
in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   228
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   229
fun ml_code_antiq raw_const background =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   230
  let
31156
90fed3d4430f merged module code_unit.ML into code.ML
haftmann
parents: 31121
diff changeset
   231
    val const = Code.check_const (ProofContext.theory_of background) raw_const;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   232
    val is_first = is_first_occ background;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   233
    val background' = register_const const background;
35019
1ec0a3ff229e simplified interface for ML antiquotations, struct_name is always "Isabelle";
wenzelm
parents: 34032
diff changeset
   234
  in (print_code is_first (print_const const), background') end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   235
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   236
end; (*local*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   237
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   238
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   239
(* reflection support *)
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   240
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   241
fun check_datatype thy tyco consts =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   242
  let
37448
3bd4b3809bee explicit type variable arguments for constructors
haftmann
parents: 37437
diff changeset
   243
    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
   244
    val missing_constrs = subtract (op =) consts constrs;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   245
    val _ = if null missing_constrs then []
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   246
      else error ("Missing constructor(s) " ^ commas (map quote missing_constrs)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   247
        ^ " for datatype " ^ quote tyco);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   248
    val false_constrs = subtract (op =) constrs consts;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   249
    val _ = if null false_constrs then []
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   250
      else error ("Non-constructor(s) " ^ commas (map quote false_constrs)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   251
        ^ " for datatype " ^ quote tyco);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   252
  in () end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   253
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   254
fun add_eval_tyco (tyco, tyco') thy =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   255
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   256
    val k = Sign.arity_number thy tyco;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   257
    fun pr pr' fxy [] = tyco'
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   258
      | pr pr' fxy [ty] =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   259
          Code_Printer.concat [pr' Code_Printer.BR ty, tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   260
      | pr pr' fxy tys =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   261
          Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   262
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   263
    thy
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38922
diff changeset
   264
    |> Code_Target.add_tyco_syntax target tyco (SOME (k, pr))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   265
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   266
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   267
fun add_eval_constr (const, const') thy =
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   268
  let
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   269
    val k = Code.args_number thy const;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   270
    fun pr pr' fxy ts = Code_Printer.brackify fxy
38922
ec2a8efd8990 Code_Printer.tuplify
haftmann
parents: 38921
diff changeset
   271
      (const' :: the_list (Code_Printer.tuplify pr' Code_Printer.BR (map fst ts)));
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   272
  in
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   273
    thy
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38922
diff changeset
   274
    |> Code_Target.add_const_syntax target const (SOME (Code_Printer.simple_const_syntax (k, pr)))
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   275
  end;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   276
38923
79d7f2b4cf71 more coherent naming of syntax data structures
haftmann
parents: 38922
diff changeset
   277
fun add_eval_const (const, const') = Code_Target.add_const_syntax target
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   278
  const (SOME (Code_Printer.simple_const_syntax (0, (K o K o K) const')));
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   279
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   280
fun process_reflection (code_body, (tyco_map, (constr_map, const_map))) module_name NONE thy =
38935
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   281
      thy
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   282
      |> Code_Target.add_reserved target module_name
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   283
      |> Context.theory_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   284
        (ML_Context.exec (fn () => ML_Context.eval_text true Position.none code_body))
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   285
      |> fold (add_eval_tyco o apsnd Code_Printer.str) tyco_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   286
      |> fold (add_eval_constr o apsnd Code_Printer.str) constr_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   287
      |> fold (add_eval_const o apsnd Code_Printer.str) const_map
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   288
  | process_reflection (code_body, _) _ (SOME file_name) thy =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   289
      let
37950
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   290
        val preamble =
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   291
          "(* Generated from " ^ Path.implode (Thy_Header.thy_path (Context.theory_name thy))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   292
          ^ "; DO NOT EDIT! *)";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   293
        val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code_body);
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   294
      in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   295
        thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   296
      end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   297
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   298
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
   299
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   300
    val datatypes = map (fn (raw_tyco, raw_cos) =>
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   301
      (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
   302
    val _ = map (uncurry (check_datatype thy)) datatypes;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   303
    val tycos = map fst datatypes;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   304
    val constrs = maps snd datatypes;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   305
    val functions = map (prep_const thy) raw_functions;
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   306
    val result = evaluation_code thy module_name tycos (constrs @ functions)
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   307
      |> (apsnd o apsnd) (chop (length constrs));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   308
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   309
    thy
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   310
    |> process_reflection result module_name some_file
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   311
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   312
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
   313
val code_reflect = gen_code_reflect Code_Target.cert_tyco (K I);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   314
val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   315
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   316
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   317
(** Isar setup **)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   318
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   319
val _ = ML_Context.add_antiq "code" (fn _ => Args.term >> ml_code_antiq);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   320
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   321
local
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   322
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   323
val datatypesK = "datatypes";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   324
val functionsK = "functions";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   325
val fileK = "file";
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   326
val andK = "and"
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   327
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   328
val _ = List.app Keyword.keyword [datatypesK, functionsK];
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   329
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   330
val parse_datatype =
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   331
  Parse.name --| Parse.$$$ "=" -- (Parse.term ::: (Scan.repeat (Parse.$$$ "|" |-- Parse.term)));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   332
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   333
in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   334
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   335
val _ =
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   336
  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
   337
    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
   338
      ::: Scan.repeat (Parse.$$$ andK |-- parse_datatype))) []
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   339
    -- Scan.optional (Parse.$$$ functionsK |-- Scan.repeat1 Parse.name) []
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   340
    -- Scan.option (Parse.$$$ fileK |-- Parse.name)
36534
0090b04432f7 dropped code_datatype antiquotation
haftmann
parents: 36514
diff changeset
   341
  >> (fn (((module_name, raw_datatypes), raw_functions), some_file) => Toplevel.theory
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   342
    (code_reflect_cmd raw_datatypes raw_functions module_name some_file)));
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   343
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   344
end; (*local*)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   345
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   346
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   347
(** using external SML files as substitute for proper definitions -- only for polyml!  **)
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   348
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   349
local
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   350
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   351
structure Loaded_Values = Theory_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   352
(
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   353
  type T = string list
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   354
  val empty = []
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   355
  fun merge data : T = Library.merge (op =) data
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   356
  val extend = I
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   357
);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   358
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   359
fun notify_val (string, value) = 
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   360
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   361
    val _ = #enterVal ML_Env.name_space (string, value);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   362
    val _ = Context.>> ((Context.map_theory o Loaded_Values.map) (insert (op =) string));
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   363
  in () end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   364
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   365
fun abort _ = error "Only value bindings allowed.";
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   366
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   367
val notifying_context : use_context =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   368
 {tune_source = #tune_source ML_Env.local_context,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   369
  name_space =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   370
   {lookupVal    = #lookupVal ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   371
    lookupType   = #lookupType ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   372
    lookupFix    = #lookupFix ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   373
    lookupStruct = #lookupStruct ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   374
    lookupSig    = #lookupSig ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   375
    lookupFunct  = #lookupFunct ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   376
    enterVal     = notify_val,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   377
    enterType    = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   378
    enterFix     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   379
    enterStruct  = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   380
    enterSig     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   381
    enterFunct   = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   382
    allVal       = #allVal ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   383
    allType      = #allType ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   384
    allFix       = #allFix ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   385
    allStruct    = #allStruct ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   386
    allSig       = #allSig ML_Env.name_space,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   387
    allFunct     = #allFunct ML_Env.name_space},
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   388
  str_of_pos = #str_of_pos ML_Env.local_context,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   389
  print = #print ML_Env.local_context,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   390
  error = #error ML_Env.local_context};
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   391
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   392
in
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   393
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   394
fun use_file filepath thy =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   395
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   396
    val thy' = Loaded_Values.put [] thy;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   397
    val _ = Context.set_thread_data ((SOME o Context.Theory) thy');
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   398
    val _ = Secure.use_text notifying_context
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   399
      (0, Path.implode filepath) false (File.read filepath);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   400
    val thy'' = (Context.the_theory o the) (Context.thread_data ())
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   401
    val names = Loaded_Values.get thy''
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   402
  in (names, thy'') end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   403
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   404
end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   405
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   406
fun add_definiendum (ml_name, (b, T)) thy =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   407
  thy
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   408
  |> Code_Target.add_reserved target ml_name
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   409
  |> Specification.axiomatization [(b, SOME T, NoSyn)] []
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   410
  |-> (fn ([Const (const, _)], _) =>
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   411
     Code_Target.add_const_syntax target const
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   412
       (SOME (Code_Printer.simple_const_syntax (0, (K o K o K o Code_Printer.str) ml_name))));
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   413
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   414
fun process_file filepath (definienda, thy) =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   415
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   416
    val (ml_names, thy') = use_file filepath thy;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   417
    val superfluous = subtract (fn ((name1, _), name2) => name1 = name2) definienda ml_names;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   418
    val _ = if null superfluous then ()
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   419
      else error ("Value binding(s) " ^ commas_quote superfluous
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   420
        ^ " found in external file " ^ quote (Path.implode filepath)
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   421
        ^ " not present among the given contants binding(s).");
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   422
    val these_definienda = AList.make (the o AList.lookup (op =) definienda) ml_names;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   423
    val thy'' = fold add_definiendum these_definienda thy';
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   424
    val definienda' = fold (AList.delete (op =)) ml_names definienda;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   425
  in (definienda', thy'') end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   426
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   427
fun polyml_as_definition bTs filepaths thy =
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   428
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   429
    val definienda = map (fn bT => ((Binding.name_of o fst) bT, bT)) bTs;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   430
    val (remaining, thy') = fold process_file filepaths (definienda, thy);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   431
    val _ = if null remaining then ()
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   432
      else error ("Constant binding(s) " ^ commas_quote (map fst remaining)
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   433
        ^ " not present in external file(s).");
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   434
  in thy' end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   435
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   436
end; (*struct*)