src/Tools/Code/code_runtime.ML
author haftmann
Thu, 26 May 2016 15:27:50 +0200
changeset 63160 80a91e0e236e
parent 63159 84c6dd947b75
child 63163 b561284a4214
permissions -rw-r--r--
corrected closure scope of static_conv_thingol; clarified implementation and names
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
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    10
  val value: Proof.context ->
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    11
    (Proof.context -> unit -> 'a) * ((unit -> 'a) -> Proof.context -> Proof.context) * string ->
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    12
    string * string -> 'a
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    13
  type 'a cookie = (Proof.context -> unit -> 'a) * ((unit -> 'a) -> Proof.context -> Proof.context) * string
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    14
  val dynamic_value: 'a cookie -> Proof.context -> string option
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    15
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a option
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    16
  val dynamic_value_strict: 'a cookie -> Proof.context -> string option
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    17
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    18
  val dynamic_value_exn: 'a cookie -> Proof.context -> string option
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    19
    -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a Exn.result
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    20
  val static_value: 'a cookie -> { ctxt: Proof.context, target: string option,
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    21
    lift_postproc: (term -> term) -> 'a -> 'a, consts: string list }
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    22
    -> Proof.context -> term -> 'a option
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    23
  val static_value_strict: 'a cookie -> { ctxt: Proof.context, target: string option,
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    24
    lift_postproc: (term -> term) -> 'a -> 'a, consts: string list }
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    25
    -> Proof.context -> term -> 'a
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    26
  val static_value_exn: 'a cookie -> { ctxt: Proof.context, target: string option,
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    27
    lift_postproc: (term -> term) -> 'a -> 'a, consts: string list }
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    28
    -> Proof.context -> term -> 'a Exn.result
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    29
  val dynamic_holds_conv: Proof.context -> conv
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
    30
  val static_holds_conv: { ctxt: Proof.context, consts: string list } -> Proof.context -> conv
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
    31
  val fully_static_value: (Proof.context -> term -> 'a) cookie
58643
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    32
    -> { ctxt: Proof.context, lift_postproc: (term -> term) -> 'a -> 'a,
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    33
           consts: (string * typ) list, T: typ }
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    34
    -> Proof.context -> term -> 'a option (*EXPERIMENTAL!*)
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
    35
  val fully_static_value_strict: (Proof.context -> term -> 'a) cookie
58643
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    36
    -> { ctxt: Proof.context, lift_postproc: (term -> term) -> 'a -> 'a,
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    37
           consts: (string * typ) list, T: typ }
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
    38
    -> Proof.context -> term -> 'a (*EXPERIMENTAL!*)
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
    39
  val fully_static_value_exn: (Proof.context -> term -> 'a) cookie
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
    40
    -> { ctxt: Proof.context, lift_postproc: (term -> term) -> 'a -> 'a,
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
    41
           consts: (string * typ) list, T: typ }
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
    42
    -> Proof.context -> term -> 'a Exn.result (*EXPERIMENTAL!*)
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
    43
  val code_reflect: (string * string list option) list -> string list -> string
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
    44
    -> string option -> theory -> theory
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    45
  datatype truth = Holds
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    46
  val put_truth: (unit -> truth) -> Proof.context -> Proof.context
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    47
  val trace: bool Config.T
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
    48
  val polyml_as_definition: (binding * typ) list -> Path.T list -> theory -> theory
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    49
end;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    50
39401
887f4218a39a code_eval renamed to code_runtime
haftmann
parents: 39388
diff changeset
    51
structure Code_Runtime : CODE_RUNTIME =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    52
struct
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    53
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    54
open Basic_Code_Symbol;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    55
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
    56
(** computation **)
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    57
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    58
(* technical prerequisites *)
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
val this = "Code_Runtime";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    61
val s_truth = Long_Name.append this "truth";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    62
val s_Holds = Long_Name.append this "Holds";
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    63
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    64
val target = "Eval";
44663
3bc39cfe27fe avoid "Code" as structure name
haftmann
parents: 43619
diff changeset
    65
val structure_generated = "Generated_Code";
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    66
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    67
datatype truth = Holds;
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
    68
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
    69
val _ = Theory.setup
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 58645
diff changeset
    70
  (Code_Target.add_derived_target (target, [(Code_ML.target_SML, I)])
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    71
  #> Code_Target.set_printings (Type_Constructor (@{type_name prop},
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52434
diff changeset
    72
    [(target, SOME (0, (K o K o K) (Code_Printer.str s_truth)))]))
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    73
  #> Code_Target.set_printings (Constant (@{const_name Code_Generator.holds},
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52434
diff changeset
    74
    [(target, 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
    75
  #> Code_Target.add_reserved target this
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
    76
  #> fold (Code_Target.add_reserved target) ["oo", "ooo", "oooo", "upto", "downto", "orf", "andf"]);
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
    77
       (*avoid further pervasive infix names*)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    78
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    79
val trace = Attrib.setup_config_bool @{binding "code_runtime_trace"} (K false);
40150
1348d4982a17 Code_Runtime.trace
haftmann
parents: 39913
diff changeset
    80
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    81
fun exec ctxt verbose code =
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
    82
 (if Config.get ctxt trace then tracing code else ();
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
    83
  ML_Context.exec (fn () =>
62902
3c0f53eae166 more conventional theory syntax for ML bootstrap, with 'ML_file' instead of 'use';
wenzelm
parents: 62889
diff changeset
    84
    ML_Compiler0.ML ML_Env.context
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
    85
      {line = 0, file = "generated code", verbose = verbose, debug = false} code));
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    86
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    87
fun value ctxt (get, put, put_ml) (prelude, value) =
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    88
  let
62889
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    89
    val code =
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    90
      prelude ^ "\nval _ = Context.put_generic_context (SOME (Context.map_proof (" ^
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    91
      put_ml ^ " (fn () => " ^ value ^ ")) (Context.the_generic_context ())))";
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    92
    val ctxt' = ctxt
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
    93
      |> put (fn () => error ("Bad computation for " ^ quote put_ml))
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    94
      |> Context.proof_map (exec ctxt false code);
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    95
  in get ctxt' () end;
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    96
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    97
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
    98
(* computation as evaluation into ML language values *)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    99
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   100
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
   101
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   102
fun reject_vars ctxt t =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   103
  ((Sign.no_frees ctxt o Sign.no_vars ctxt o map_types (K dummyT)) t; t);
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   104
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   105
fun build_computation_text ctxt some_target program consts =
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   106
  Code_Target.computation_text ctxt (the_default target some_target) program consts false
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   107
  #>> (fn ml_modules => space_implode "\n\n" (map snd ml_modules));
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   108
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   109
fun run_computation_text cookie ctxt comp vs_t args =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   110
  let
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   111
    val (program_code, value_name) = comp vs_t;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   112
    val value_code = space_implode " "
41347
064133cb4ef6 evaluator separating static and dynamic operations
haftmann
parents: 41343
diff changeset
   113
      (value_name :: "()" :: map (enclose "(" ")") args);
40235
87998864284e use Exn.interruptible_capture to keep user-code interruptible (Exn.capture not immediately followed by Exn.release here);
wenzelm
parents: 40150
diff changeset
   114
  in Exn.interruptible_capture (value ctxt cookie) (program_code, value_code) end;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   115
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   116
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
   117
  handle General.Match => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   118
    | General.Bind => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   119
    | General.Fail _ => NONE;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   120
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   121
fun dynamic_value_exn cookie ctxt some_target postproc t args =
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   122
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   123
    val _ = reject_vars ctxt t;
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
   124
    val _ = if Config.get ctxt trace
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   125
      then tracing ("Evaluation of term " ^ quote (Syntax.string_of_term ctxt t))
41099
5cf62cefbbb4 tracing of term to be evaluated
haftmann
parents: 40726
diff changeset
   126
      else ()
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   127
    fun comp program _ vs_ty_t deps =
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   128
      run_computation_text cookie ctxt (build_computation_text ctxt some_target program deps) vs_ty_t args;
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   129
  in Code_Thingol.dynamic_value ctxt (Exn.map_res o postproc) comp t end;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   130
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   131
fun dynamic_value_strict cookie ctxt some_target postproc t args =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   132
  Exn.release (dynamic_value_exn cookie ctxt some_target postproc t args);
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   133
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   134
fun dynamic_value cookie ctxt some_target postproc t args =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   135
  partiality_as_none (dynamic_value_exn cookie ctxt some_target postproc t args);
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   136
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   137
fun static_value_exn cookie { ctxt, target, lift_postproc, consts } =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   138
  let
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   139
    fun computation' { program, deps } =
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   140
      let
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   141
        val computation'' = run_computation_text cookie ctxt
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   142
          (build_computation_text ctxt target program (map Constant deps));
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   143
      in fn _ => fn _ => fn vs_ty_t => fn _ => computation'' vs_ty_t [] end;
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   144
    val computation = Code_Thingol.static_value { ctxt = ctxt,
61077
06cca32aa519 thread context for exceptions from forks, e.g. relevant when printing errors;
wenzelm
parents: 60956
diff changeset
   145
      lift_postproc = Exn.map_res o lift_postproc, consts = consts }
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   146
      computation';
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   147
  in fn ctxt' => computation ctxt' o reject_vars ctxt' end;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   148
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   149
fun static_value_strict cookie = Exn.release ooo static_value_exn cookie;
41347
064133cb4ef6 evaluator separating static and dynamic operations
haftmann
parents: 41343
diff changeset
   150
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   151
fun static_value cookie = partiality_as_none ooo static_value_exn cookie;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   152
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   153
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   154
(* evaluation for truth or nothing *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   155
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   156
structure Truth_Result = Proof_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   157
(
59155
wenzelm
parents: 59151
diff changeset
   158
  type T = unit -> truth;
wenzelm
parents: 59151
diff changeset
   159
  val empty: T = fn () => raise Fail "Truth_Result";
wenzelm
parents: 59151
diff changeset
   160
  fun init _ = empty;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   161
);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   162
val put_truth = Truth_Result.put;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   163
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
   164
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   165
local
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   166
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   167
val reject_vars = fn ctxt => tap (reject_vars ctxt o Thm.term_of);
41349
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   168
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   169
fun check_holds ctxt evaluator vs_t ct =
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   170
  let
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   171
    val t = Thm.term_of ct;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   172
    val _ = if fastype_of t <> propT
59633
a372513af1e2 clarified context;
wenzelm
parents: 59621
diff changeset
   173
      then error ("Not a proposition: " ^ Syntax.string_of_term ctxt t)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   174
      else ();
59633
a372513af1e2 clarified context;
wenzelm
parents: 59621
diff changeset
   175
    val iff = Thm.cterm_of ctxt (Term.Const (@{const_name Pure.eq}, propT --> propT --> propT));
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   176
    val result = case partiality_as_none (run_computation_text truth_cookie ctxt evaluator vs_t [])
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   177
     of SOME Holds => true
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   178
      | _ => false;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   179
  in
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   180
    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
   181
  end;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   182
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   183
val (_, raw_check_holds_oracle) = Context.>>> (Context.map_theory_result
43619
3803869014aa proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents: 43560
diff changeset
   184
  (Thm.add_oracle (@{binding holds_by_evaluation},
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   185
  fn (ctxt, evaluator, vs_t, ct) => check_holds ctxt evaluator vs_t ct)));
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   186
56920
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56618
diff changeset
   187
fun check_holds_oracle ctxt evaluator vs_ty_t ct =
d651b944c67e normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents: 56618
diff changeset
   188
  raw_check_holds_oracle (ctxt, evaluator, vs_ty_t, ct);
41349
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   189
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   190
in
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   191
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   192
fun dynamic_holds_conv ctxt = Code_Thingol.dynamic_conv ctxt
56969
7491932da574 dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents: 56920
diff changeset
   193
  (fn program => fn vs_t => fn deps =>
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   194
    check_holds_oracle ctxt (build_computation_text ctxt NONE program deps) vs_t)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   195
      o reject_vars ctxt;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   196
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   197
fun static_holds_conv (ctxt_consts as { ctxt, ... }) =
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63064
diff changeset
   198
  Code_Thingol.static_conv_thingol ctxt_consts (fn { program, deps } => fn ctxt' => fn vs_t =>
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   199
    K (check_holds_oracle ctxt' (build_computation_text ctxt NONE program (map Constant deps)) vs_t o reject_vars ctxt'));
41349
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   200
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   201
end; (*local*)
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   202
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   203
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   204
(** fully static evaluation -- still with limited coverage! **)
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   205
58557
fea97f7be494 split dynamic from static context
haftmann
parents: 57435
diff changeset
   206
fun evaluation_code ctxt module_name program tycos consts =
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   207
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   208
    val thy = Proof_Context.theory_of ctxt;
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 47609
diff changeset
   209
    val (ml_modules, target_names) =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   210
      Code_Target.produce_code_for ctxt
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55304
diff changeset
   211
        target NONE module_name [] program false (map Constant consts @ map Type_Constructor tycos);
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 47609
diff changeset
   212
    val ml_code = space_implode "\n\n" (map snd ml_modules);
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 53171
diff changeset
   213
    val (consts', tycos') = chop (length consts) target_names;
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   214
    val consts_map = map2 (fn const =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   215
      fn NONE =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   216
          error ("Constant " ^ (quote o Code.string_of_const thy) const ^
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   217
            "\nhas a user-defined serialization")
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 53171
diff changeset
   218
       | SOME const' => (const, const')) consts consts'
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   219
    val tycos_map = map2 (fn tyco =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   220
      fn NONE =>
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 55188
diff changeset
   221
          error ("Type " ^ quote (Proof_Context.markup_type ctxt tyco) ^
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   222
            "\nhas a user-defined serialization")
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 53171
diff changeset
   223
        | SOME tyco' => (tyco, tyco')) tycos tycos';
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   224
  in (ml_code, (tycos_map, consts_map)) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   225
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   226
fun typ_signatures_for T =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   227
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   228
    val (Ts, T') = strip_type T;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   229
  in map_range (fn n => (drop n Ts ---> T', take n Ts)) (length Ts + 1) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   230
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   231
fun typ_signatures cTs =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   232
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   233
    fun add (c, T) =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   234
      fold (fn (T, Ts) => Typtab.map_default (T, []) (cons (c, Ts)))
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   235
        (typ_signatures_for T);
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   236
  in
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   237
    Typtab.empty
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   238
    |> fold add cTs
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   239
    |> Typtab.lookup_list
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   240
  end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   241
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   242
fun print_of_term_funs { typ_sign_for, ml_name_for_const, ml_name_for_typ } Ts =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   243
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   244
    val var_names = map_range (fn n => "t" ^ string_of_int (n + 1));
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   245
    fun print_lhs c xs = "Const (" ^ quote c ^ ", _)"
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   246
      |> fold (fn x => fn s => s ^ " $ " ^ x) xs
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   247
      |> enclose "(" ")"
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   248
      |> prefix "ctxt ";
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   249
    fun print_rhs c Ts xs = ml_name_for_const c
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   250
      |> fold2 (fn T => fn x => fn s =>
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   251
         s ^ (" (" ^ ml_name_for_typ T ^ " ctxt " ^ x ^ ")")) Ts xs
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   252
    fun print_eq (c, Ts) =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   253
      let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   254
        val xs = var_names (length Ts);
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   255
      in print_lhs c xs ^ " = " ^ print_rhs c Ts xs end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   256
    val err_eq =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   257
      "ctxt t = error (" ^ quote "Bad term: " ^ " ^ Syntax.string_of_term ctxt t)";
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   258
    fun print_eqs T =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   259
      let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   260
        val typ_signs = typ_sign_for T;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   261
        val name = ml_name_for_typ T;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   262
      in
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   263
        (map print_eq typ_signs @ [err_eq])
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   264
        |> map (prefix (name ^ " "))
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   265
        |> space_implode "\n  | "
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   266
      end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   267
  in
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   268
    map print_eqs Ts
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   269
    |> space_implode "\nand "
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   270
    |> prefix "fun "
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   271
    |> pair (map ml_name_for_typ Ts)
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   272
  end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   273
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   274
fun print_of_term ctxt ml_name_for_const T cTs =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   275
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   276
    val typ_sign_for = typ_signatures cTs;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   277
    fun add_typ T Ts =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   278
      if member (op =) Ts T
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   279
      then Ts
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   280
      else Ts
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   281
        |> cons T
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   282
        |> fold (fold add_typ o snd) (typ_sign_for T);
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   283
    val Ts = add_typ T [];
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   284
    fun tycos_of (Type (tyco, Ts)) = maps tycos_of Ts @ [tyco]
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   285
      | tycos_of _ = [];
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   286
    val ml_name_of = Name.desymbolize NONE o Long_Name.base_name;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   287
    val ml_names = map (suffix "_of_term" o space_implode "_" o map ml_name_of o tycos_of) Ts
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   288
      |> Name.variant_list [];
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   289
    val ml_name_for_typ = the o AList.lookup (op =) (Ts ~~ ml_names);
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   290
  in
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   291
    print_of_term_funs { typ_sign_for = typ_sign_for,
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   292
      ml_name_for_const = ml_name_for_const,
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   293
      ml_name_for_typ = ml_name_for_typ } Ts
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   294
  end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   295
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   296
fun compile_computation cookie ctxt cs_code cTs T { program, deps } =
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   297
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   298
    val (context_code, (_, const_map)) =
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   299
      evaluation_code ctxt structure_generated program [] cs_code;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   300
    val ml_name_for_const = the o AList.lookup (op =) const_map;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   301
    val (ml_names, of_term_code) = print_of_term ctxt ml_name_for_const T cTs
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   302
    val of_term = value ctxt cookie (context_code ^ "\n" ^ of_term_code, List.last ml_names);
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   303
  in fn ctxt' => fn t => fn _ => fn _ => Exn.interruptible_capture (of_term ctxt') t end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   304
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   305
fun fully_static_value_exn cookie { ctxt, lift_postproc, consts, T } =
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   306
  let
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   307
    val thy = Proof_Context.theory_of ctxt;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   308
    val cs_code = map (Axclass.unoverload_const thy) consts;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   309
    val cTs = map2 (fn (_, T) => fn c => (c, T)) consts cs_code;
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   310
    val computation = Code_Thingol.static_value { ctxt = ctxt,
61077
06cca32aa519 thread context for exceptions from forks, e.g. relevant when printing errors;
wenzelm
parents: 60956
diff changeset
   311
      lift_postproc = Exn.map_res o lift_postproc, consts = cs_code }
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   312
      (compile_computation cookie ctxt cs_code cTs T);
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   313
  in fn ctxt' =>
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   314
    computation ctxt' o reject_vars ctxt' o Syntax.check_term ctxt' o Type.constraint T
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   315
  end;
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   316
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   317
fun fully_static_value_strict cookie = Exn.release ooo fully_static_value_exn cookie;
58643
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
   318
63160
80a91e0e236e corrected closure scope of static_conv_thingol;
haftmann
parents: 63159
diff changeset
   319
fun fully_static_value cookie = partiality_as_none ooo fully_static_value_exn cookie;
58643
133203bd474b formally completeted set of experimental static evaluation functions
haftmann
parents: 58558
diff changeset
   320
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   321
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   322
(** code antiquotation **)
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   323
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   324
local
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   325
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   326
structure Code_Antiq_Data = Proof_Data
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   327
(
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   328
  type T = (string list * string list) * (bool
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   329
    * (string * (string * string) list) lazy);
59150
wenzelm
parents: 59127
diff changeset
   330
  val empty: T = (([], []), (true, (Lazy.value ("", []))));
wenzelm
parents: 59127
diff changeset
   331
  fun init _ = empty;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   332
);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   333
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   334
val is_first_occ = fst o snd o Code_Antiq_Data.get;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   335
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   336
fun register_code new_tycos new_consts ctxt =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   337
  let
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   338
    val ((tycos, consts), _) = Code_Antiq_Data.get ctxt;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   339
    val tycos' = fold (insert (op =)) new_tycos tycos;
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   340
    val consts' = fold (insert (op =)) new_consts consts;
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   341
    val program = Code_Thingol.consts_program ctxt consts';
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   342
    val acc_code = Lazy.lazy (fn () =>
58557
fea97f7be494 split dynamic from static context
haftmann
parents: 57435
diff changeset
   343
      evaluation_code ctxt structure_generated program tycos' consts'
40422
d425d1ed82af corrected slip: must keep constant map, not type map; tuned code
haftmann
parents: 40421
diff changeset
   344
      |> apsnd snd);
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   345
  in Code_Antiq_Data.put ((tycos', consts'), (false, acc_code)) ctxt end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   346
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   347
fun register_const const = register_code [] [const];
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   348
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   349
fun print_code is_first const ctxt =
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   350
  let
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   351
    val (_, (_, acc_code)) = Code_Antiq_Data.get ctxt;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   352
    val (ml_code, consts_map) = Lazy.force acc_code;
40422
d425d1ed82af corrected slip: must keep constant map, not type map; tuned code
haftmann
parents: 40421
diff changeset
   353
    val ml_code = if is_first then ml_code else "";
59127
723b11f8ffbf more careful handling of auxiliary environment structure -- allow nested ML evaluation;
wenzelm
parents: 59104
diff changeset
   354
    val body = ML_Context.struct_name ctxt ^ "." ^ the (AList.lookup (op =) consts_map const);
41376
08240feb69c7 more robust ML antiquotations -- allow original tokens without adjacent whitespace;
wenzelm
parents: 41349
diff changeset
   355
  in (ml_code, body) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   356
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   357
in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   358
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 55757
diff changeset
   359
fun ml_code_antiq raw_const ctxt =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   360
  let
53169
e2d31807cbf6 clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
wenzelm
parents: 52435
diff changeset
   361
    val thy = Proof_Context.theory_of ctxt;
e2d31807cbf6 clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
wenzelm
parents: 52435
diff changeset
   362
    val const = Code.check_const thy raw_const;
e2d31807cbf6 clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
wenzelm
parents: 52435
diff changeset
   363
    val is_first = is_first_occ ctxt;
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 55757
diff changeset
   364
  in (print_code is_first const, register_const const ctxt) end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   365
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   366
end; (*local*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   367
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   368
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   369
(** reflection support **)
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   370
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   371
fun check_datatype thy tyco some_consts =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   372
  let
40726
16dcfedc4eb7 keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents: 40711
diff changeset
   373
    val constrs = (map fst o snd o fst o Code.get_type thy) tyco;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   374
    val _ = case some_consts
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   375
     of SOME consts =>
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   376
          let
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   377
            val missing_constrs = subtract (op =) consts constrs;
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   378
            val _ = if null missing_constrs then []
45430
b8eb7a791dac misc tuning;
wenzelm
parents: 45268
diff changeset
   379
              else error ("Missing constructor(s) " ^ commas_quote missing_constrs
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   380
                ^ " for datatype " ^ quote tyco);
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   381
            val false_constrs = subtract (op =) constrs consts;
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   382
            val _ = if null false_constrs then []
45430
b8eb7a791dac misc tuning;
wenzelm
parents: 45268
diff changeset
   383
              else error ("Non-constructor(s) " ^ commas_quote false_constrs
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   384
                ^ " for datatype " ^ quote tyco)
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   385
          in () end
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   386
      | NONE => ();
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   387
  in (tyco, constrs) end;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   388
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   389
fun add_eval_tyco (tyco, tyco') thy =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   390
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   391
    val k = Sign.arity_number thy tyco;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   392
    fun pr pr' _ [] = tyco'
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   393
      | pr pr' _ [ty] =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   394
          Code_Printer.concat [pr' Code_Printer.BR ty, tyco']
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   395
      | pr pr' _ tys =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   396
          Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   397
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   398
    thy
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   399
    |> Code_Target.set_printings (Type_Constructor (tyco, [(target, SOME (k, pr))]))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   400
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   401
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   402
fun add_eval_constr (const, const') thy =
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   403
  let
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   404
    val k = Code.args_number thy const;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   405
    fun pr pr' fxy ts = Code_Printer.brackify fxy
38922
ec2a8efd8990 Code_Printer.tuplify
haftmann
parents: 38921
diff changeset
   406
      (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
   407
  in
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   408
    thy
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   409
    |> Code_Target.set_printings (Constant (const,
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52434
diff changeset
   410
      [(target, SOME (Code_Printer.simple_const_syntax (k, pr)))]))
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   411
  end;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   412
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   413
fun add_eval_const (const, const') = Code_Target.set_printings (Constant
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52434
diff changeset
   414
  (const, [(target, SOME (Code_Printer.simple_const_syntax (0, (K o K o K) const')))]));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   415
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   416
fun process_reflection (code, (tyco_map, (constr_map, const_map))) module_name NONE thy =
38935
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   417
      thy
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   418
      |> Code_Target.add_reserved target module_name
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
   419
      |> Context.theory_map (exec (Proof_Context.init_global thy (*FIXME*)) true code)
38935
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   420
      |> fold (add_eval_tyco o apsnd Code_Printer.str) tyco_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   421
      |> fold (add_eval_constr o apsnd Code_Printer.str) constr_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   422
      |> fold (add_eval_const o apsnd Code_Printer.str) const_map
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   423
  | process_reflection (code, _) _ (SOME file_name) thy =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   424
      let
37950
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   425
        val preamble =
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 45430
diff changeset
   426
          "(* Generated from " ^
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56205
diff changeset
   427
            Path.implode (Resources.thy_path (Path.basic (Context.theory_name thy))) ^
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 45430
diff changeset
   428
          "; DO NOT EDIT! *)";
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   429
        val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   430
      in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   431
        thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   432
      end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   433
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   434
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
   435
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   436
    val ctxt = Proof_Context.init_global thy;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   437
    val datatypes = map (fn (raw_tyco, raw_cos) =>
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   438
      (prep_type ctxt raw_tyco, (Option.map o map) (prep_const thy) raw_cos)) raw_datatypes;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   439
    val (tycos, constrs) = map_split (uncurry (check_datatype thy)) datatypes
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   440
      |> apsnd flat;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   441
    val functions = map (prep_const thy) raw_functions;
58557
fea97f7be494 split dynamic from static context
haftmann
parents: 57435
diff changeset
   442
    val consts = constrs @ functions;
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   443
    val program = Code_Thingol.consts_program ctxt consts;
58557
fea97f7be494 split dynamic from static context
haftmann
parents: 57435
diff changeset
   444
    val result = evaluation_code ctxt module_name program tycos consts
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   445
      |> (apsnd o apsnd) (chop (length constrs));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   446
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   447
    thy
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   448
    |> process_reflection result module_name some_file
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   449
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   450
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
   451
val code_reflect = gen_code_reflect Code_Target.cert_tyco (K I);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   452
val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   453
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   454
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   455
(** Isar setup **)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   456
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 55757
diff changeset
   457
val _ =
56205
ceb8a93460b7 clarified modules;
wenzelm
parents: 56069
diff changeset
   458
  Theory.setup (ML_Antiquotation.declaration @{binding code} Args.term (fn _ => ml_code_antiq));
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   459
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   460
local
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   461
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   462
val parse_datatype =
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   463
  Parse.name --| @{keyword "="} --
40711
81bc73585eec globbing constant expressions use more idiomatic underscore rather than star
haftmann
parents: 40422
diff changeset
   464
    (((Parse.sym_ident || Parse.string) >> (fn "_" => NONE | _ => Scan.fail ()))
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   465
    || ((Parse.term ::: (Scan.repeat (@{keyword "|"} |-- Parse.term))) >> SOME));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   466
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   467
in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   468
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   469
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59633
diff changeset
   470
  Outer_Syntax.command @{command_keyword code_reflect}
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   471
    "enrich runtime environment with generated code"
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 48568
diff changeset
   472
    (Parse.name -- Scan.optional (@{keyword "datatypes"} |-- Parse.!!!  (parse_datatype
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   473
      ::: Scan.repeat (@{keyword "and"} |-- parse_datatype))) []
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 48568
diff changeset
   474
    -- Scan.optional (@{keyword "functions"} |-- Parse.!!!  (Scan.repeat1 Parse.name)) []
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 48568
diff changeset
   475
    -- Scan.option (@{keyword "file"} |-- Parse.!!! Parse.name)
46961
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   476
    >> (fn (((module_name, raw_datatypes), raw_functions), some_file) => Toplevel.theory
5c6955f487e5 outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents: 46949
diff changeset
   477
      (code_reflect_cmd raw_datatypes raw_functions module_name some_file)));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   478
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   479
end; (*local*)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   480
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   481
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   482
(** 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
   483
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   484
local
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   485
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   486
structure Loaded_Values = Theory_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   487
(
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   488
  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
   489
  val empty = []
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41376
diff changeset
   490
  val extend = I
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   491
  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
   492
);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   493
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   494
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
   495
  let
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   496
    val _ = #enterVal ML_Env.name_space (string, value);
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
   497
    val _ = Theory.setup (Loaded_Values.map (insert (op =) string));
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   498
  in () end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   499
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   500
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
   501
62494
b90109b2487c clarified modules;
wenzelm
parents: 62493
diff changeset
   502
val notifying_context : ML_Compiler0.context =
62354
fdd6989cc8a0 SML/NJ is no longer supported;
wenzelm
parents: 61077
diff changeset
   503
 {name_space =
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   504
   {lookupVal    = #lookupVal ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   505
    lookupType   = #lookupType ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   506
    lookupFix    = #lookupFix ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   507
    lookupStruct = #lookupStruct ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   508
    lookupSig    = #lookupSig ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   509
    lookupFunct  = #lookupFunct ML_Env.name_space,
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   510
    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
   511
    enterType    = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   512
    enterFix     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   513
    enterStruct  = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   514
    enterSig     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   515
    enterFunct   = abort,
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   516
    allVal       = #allVal ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   517
    allType      = #allType ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   518
    allFix       = #allFix ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   519
    allStruct    = #allStruct ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   520
    allSig       = #allSig ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   521
    allFunct     = #allFunct ML_Env.name_space},
62716
d80b9f4990e4 explicit print_depth for the sake of Spec_Check.determine_type;
wenzelm
parents: 62607
diff changeset
   522
  print_depth = NONE,
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   523
  here = #here ML_Env.context,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   524
  print = #print ML_Env.context,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   525
  error = #error ML_Env.context};
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   526
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   527
in
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   528
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   529
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
   530
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   531
    val thy' = Loaded_Values.put [] thy;
62889
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
   532
    val _ = Context.put_generic_context ((SOME o Context.Theory) thy');
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   533
    val _ =
62902
3c0f53eae166 more conventional theory syntax for ML bootstrap, with 'ML_file' instead of 'use';
wenzelm
parents: 62889
diff changeset
   534
      ML_Compiler0.ML notifying_context
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   535
        {line = 0, file = Path.implode filepath, verbose = false, debug = false}
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   536
        (File.read filepath);
62876
507c90523113 clarified modules -- simplified bootstrap;
wenzelm
parents: 62716
diff changeset
   537
    val thy'' = Context.the_global_context ();
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   538
    val names = Loaded_Values.get thy'';
40320
abc52faa7761 polyml_as_definition does not require explicit dependencies on external ML files
haftmann
parents: 40257
diff changeset
   539
  in (names, thy'') end;
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   540
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   541
end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   542
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   543
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
   544
  thy
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   545
  |> Code_Target.add_reserved target ml_name
63064
2f18172214c8 support 'assumes' in specifications, e.g. 'definition', 'inductive';
wenzelm
parents: 62902
diff changeset
   546
  |> Specification.axiomatization [(b, SOME T, NoSyn)] [] []
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   547
  |-> (fn ([Const (const, _)], _) =>
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   548
    Code_Target.set_printings (Constant (const,
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52434
diff changeset
   549
      [(target, SOME (Code_Printer.simple_const_syntax (0, (K o K o K o Code_Printer.str) ml_name)))]))
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   550
  #> tap (fn thy => Code_Target.produce_code (Proof_Context.init_global thy) false [const] target NONE structure_generated []));
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   551
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   552
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
   553
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   554
    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
   555
    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
   556
    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
   557
      else error ("Value binding(s) " ^ commas_quote superfluous
41944
b97091ae583a Path.print is the official way to show file-system paths to users -- note that Path.implode often indicates violation of the abstract datatype;
wenzelm
parents: 41486
diff changeset
   558
        ^ " found in external file " ^ Path.print filepath
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   559
        ^ " 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
   560
    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
   561
    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
   562
    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
   563
  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
   564
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   565
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
   566
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   567
    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
   568
    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
   569
    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
   570
      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
   571
        ^ " 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
   572
  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
   573
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   574
end; (*struct*)