src/Tools/Code/code_runtime.ML
author haftmann
Sat, 18 Feb 2017 19:49:29 +0100
changeset 65034 1846c4551153
parent 65005 3278831c226d
child 65043 fd753468786f
permissions -rw-r--r--
more complete program generation in presence of dictionaries
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
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
    31
  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
    32
    -> string option -> theory -> theory
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    33
  datatype truth = Holds
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    34
  val put_truth: (unit -> truth) -> Proof.context -> Proof.context
64987
haftmann
parents: 64959
diff changeset
    35
  val mount_computation: Proof.context -> (string * typ) list -> typ
64988
93aaff2b0ae0 computations and partiality
haftmann
parents: 64987
diff changeset
    36
    -> (term -> 'ml) -> ((term -> term) -> 'ml option -> 'a) -> Proof.context -> term -> 'a
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
    37
  val mount_computation_conv: Proof.context -> (string * typ) list -> typ
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
    38
    -> (term -> 'ml) -> ('ml -> conv) -> Proof.context -> conv
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
    39
  val mount_computation_check: Proof.context -> (string * typ) list
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
    40
    -> (term -> truth) -> Proof.context -> conv
64987
haftmann
parents: 64959
diff changeset
    41
  val polyml_as_definition: (binding * typ) list -> Path.T list -> theory -> theory
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    42
  val trace: bool Config.T
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    43
end;
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    44
39401
887f4218a39a code_eval renamed to code_runtime
haftmann
parents: 39388
diff changeset
    45
structure Code_Runtime : CODE_RUNTIME =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    46
struct
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    47
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    48
open Basic_Code_Symbol;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    49
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
    50
(** ML compiler as evaluation environment **)
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
    51
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    52
(* technical prerequisites *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    53
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
    54
val thisN = "Code_Runtime";
64987
haftmann
parents: 64959
diff changeset
    55
val prefix_this = Long_Name.append thisN;
haftmann
parents: 64959
diff changeset
    56
val truthN = prefix_this "truth";
haftmann
parents: 64959
diff changeset
    57
val HoldsN = prefix_this "Holds";
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    58
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
    59
val target = "Eval";
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
    60
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    61
datatype truth = Holds;
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
    62
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
    63
val _ = Theory.setup
59104
a14475f044b2 allow multiple inheritance of targets
haftmann
parents: 58645
diff changeset
    64
  (Code_Target.add_derived_target (target, [(Code_ML.target_SML, I)])
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    65
  #> Code_Target.set_printings (Type_Constructor (@{type_name prop},
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
    66
    [(target, SOME (0, (K o K o K) (Code_Printer.str truthN)))]))
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
    67
  #> Code_Target.set_printings (Constant (@{const_name Code_Generator.holds},
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
    68
    [(target, SOME (Code_Printer.plain_const_syntax HoldsN))]))
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
    69
  #> Code_Target.add_reserved target thisN
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
    70
  #> 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
    71
       (*avoid further pervasive infix names*)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    72
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
    73
val trace = Attrib.setup_config_bool @{binding "code_runtime_trace"} (K false);
40150
1348d4982a17 Code_Runtime.trace
haftmann
parents: 39913
diff changeset
    74
63163
b561284a4214 clarified internal interfaces
haftmann
parents: 63160
diff changeset
    75
fun compile_ML verbose code context =
b561284a4214 clarified internal interfaces
haftmann
parents: 63160
diff changeset
    76
 (if Config.get_generic context trace then tracing code else ();
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63163
diff changeset
    77
  Code_Preproc.timed "compiling ML" Context.proof_of
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63163
diff changeset
    78
    (ML_Context.exec (fn () => ML_Compiler0.ML ML_Env.context
63163
b561284a4214 clarified internal interfaces
haftmann
parents: 63160
diff changeset
    79
    {line = 0, file = "generated code", verbose = verbose,
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63163
diff changeset
    80
       debug = false} code)) context);
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    81
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    82
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
    83
  let
62889
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    84
    val code =
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    85
      prelude ^ "\nval _ = Context.put_generic_context (SOME (Context.map_proof (" ^
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
    86
      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
    87
    val ctxt' = ctxt
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
    88
      |> put (fn () => error ("Bad compilation for " ^ quote put_ml))
63163
b561284a4214 clarified internal interfaces
haftmann
parents: 63160
diff changeset
    89
      |> Context.proof_map (compile_ML false code);
63164
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63163
diff changeset
    90
    val computator = get ctxt';
72aaf69328fc optional timing for code generator conversions
haftmann
parents: 63163
diff changeset
    91
  in Code_Preproc.timed_exec "running ML" computator ctxt' end;
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
    92
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    93
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
    94
(* evaluation into ML language values *)
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    95
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
    96
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
    97
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    98
fun reject_vars ctxt t =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
    99
  ((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
   100
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   101
fun build_compilation_text ctxt some_target program consts =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   102
  Code_Target.compilation_text ctxt (the_default target some_target) program consts false
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   103
  #>> (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
   104
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   105
fun run_compilation_text cookie ctxt comp vs_t args =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   106
  let
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   107
    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
   108
    val value_code = space_implode " "
41347
064133cb4ef6 evaluator separating static and dynamic operations
haftmann
parents: 41343
diff changeset
   109
      (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
   110
  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
   111
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   112
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
   113
  handle General.Match => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   114
    | General.Bind => NONE
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   115
    | General.Fail _ => NONE;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   116
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   117
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
   118
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   119
    val _ = reject_vars ctxt t;
57435
312660c1a70a modernized diagnostic options
haftmann
parents: 56973
diff changeset
   120
    val _ = if Config.get ctxt trace
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   121
      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
   122
      else ()
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   123
    fun comp program _ vs_ty_t deps =
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   124
      run_compilation_text cookie ctxt (build_compilation_text ctxt some_target program deps) vs_ty_t args;
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   125
  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
   126
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   127
fun dynamic_value_strict cookie ctxt some_target postproc t args =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   128
  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
   129
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   130
fun dynamic_value cookie ctxt some_target postproc t args =
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   131
  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
   132
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   133
fun static_value_exn cookie { ctxt, target, lift_postproc, consts } =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   134
  let
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   135
    fun compilation' { program, deps } =
63157
65a81a4ef7f8 clarified naming conventions and code for code evaluation sandwiches
haftmann
parents: 63156
diff changeset
   136
      let
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   137
        val compilation'' = run_compilation_text cookie ctxt
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   138
          (build_compilation_text ctxt target program (map Constant deps));
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   139
      in fn _ => fn _ => fn vs_ty_t => fn _ => compilation'' vs_ty_t [] end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   140
    val compilation = 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
   141
      lift_postproc = Exn.map_res o lift_postproc, consts = consts }
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   142
      compilation';
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   143
  in fn ctxt' => compilation ctxt' o reject_vars ctxt' end;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   144
64928
18a6b96f8b00 corrected static scope: multi-argument composition does not apply partially
haftmann
parents: 63184
diff changeset
   145
fun static_value_strict cookie x = Exn.release oo static_value_exn cookie x;
41347
064133cb4ef6 evaluator separating static and dynamic operations
haftmann
parents: 41343
diff changeset
   146
64928
18a6b96f8b00 corrected static scope: multi-argument composition does not apply partially
haftmann
parents: 63184
diff changeset
   147
fun static_value cookie x = partiality_as_none oo static_value_exn cookie x;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   148
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   149
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   150
(* evaluation for truth or nothing *)
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   151
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   152
structure Truth_Result = Proof_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   153
(
59155
wenzelm
parents: 59151
diff changeset
   154
  type T = unit -> truth;
wenzelm
parents: 59151
diff changeset
   155
  val empty: T = fn () => raise Fail "Truth_Result";
wenzelm
parents: 59151
diff changeset
   156
  fun init _ = empty;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   157
);
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   158
val put_truth = Truth_Result.put;
64987
haftmann
parents: 64959
diff changeset
   159
val truth_cookie = (Truth_Result.get, put_truth, prefix_this "put_truth");
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   160
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   161
local
39605
6dc866b9c548 reject term variables explicitly
haftmann
parents: 39537
diff changeset
   162
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   163
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
   164
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   165
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
   166
  let
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   167
    val t = Thm.term_of ct;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   168
    val _ = if fastype_of t <> propT
59633
a372513af1e2 clarified context;
wenzelm
parents: 59621
diff changeset
   169
      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
   170
      else ();
59633
a372513af1e2 clarified context;
wenzelm
parents: 59621
diff changeset
   171
    val iff = Thm.cterm_of ctxt (Term.Const (@{const_name Pure.eq}, propT --> propT --> propT));
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   172
    val result = case partiality_as_none (run_compilation_text truth_cookie ctxt evaluator vs_t [])
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   173
     of SOME Holds => true
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   174
      | _ => false;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   175
  in
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   176
    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
   177
  end;
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   178
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   179
val (_, raw_check_holds_oracle) = Context.>>> (Context.map_theory_result
43619
3803869014aa proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents: 43560
diff changeset
   180
  (Thm.add_oracle (@{binding holds_by_evaluation},
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   181
  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
   182
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
   183
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
   184
  raw_check_holds_oracle (ctxt, evaluator, vs_ty_t, ct);
41349
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   185
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   186
in
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   187
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   188
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
   189
  (fn program => fn vs_t => fn deps =>
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   190
    check_holds_oracle ctxt (build_compilation_text ctxt NONE program deps) vs_t)
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   191
      o reject_vars ctxt;
39473
33638f4883ac dynamic and static value computation; built-in evaluation of propositions
haftmann
parents: 39422
diff changeset
   192
56973
62da80041afd syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents: 56969
diff changeset
   193
fun static_holds_conv (ctxt_consts as { ctxt, ... }) =
63156
3cb84e4469a7 clarified names of variants
haftmann
parents: 63064
diff changeset
   194
  Code_Thingol.static_conv_thingol ctxt_consts (fn { program, deps } => fn ctxt' => fn vs_t =>
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   195
    K (check_holds_oracle ctxt' (build_compilation_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
   196
0e2a3f22f018 evaluator separating static and dynamic operations
haftmann
parents: 41348
diff changeset
   197
end; (*local*)
39404
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   198
a8c337299bc1 Code_Runtime.value, corresponding to ML_Context.value; tuned
haftmann
parents: 39401
diff changeset
   199
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   200
(** generator for computations -- partial implementations of the universal morphism from Isabelle to ML terms **)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   201
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   202
(* auxiliary *)
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   203
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   204
val generated_computationN = "Generated_Computation";
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   205
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   206
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   207
(* possible type signatures of constants *)
64943
c5618df67c2a explicit a-priori detection of unsuitable terms for computations
haftmann
parents: 64940
diff changeset
   208
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   209
fun typ_signatures' T =
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   210
  let
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   211
    val (Ts, T') = strip_type T;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   212
  in map_range (fn n => (drop n Ts ---> T', take n Ts)) (length Ts + 1) end;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   213
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   214
fun typ_signatures cTs =
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   215
  let
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   216
    fun add (c, T) =
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   217
      fold (fn (T, Ts) => Typtab.map_default (T, []) (cons (c, Ts)))
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   218
        (typ_signatures' T);
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   219
  in
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   220
    Typtab.empty
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   221
    |> fold add cTs
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   222
    |> Typtab.lookup_list
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   223
  end;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   224
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   225
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   226
(* name mangling *)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   227
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   228
local
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   229
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   230
fun tycos_of (Type (tyco, Ts)) = maps tycos_of Ts @ [tyco]
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   231
  | tycos_of _ = [];
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   232
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   233
val ml_name_of = Name.desymbolize NONE o Long_Name.base_name;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   234
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   235
in
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   236
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   237
val covered_constsN = "covered_consts";
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   238
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   239
fun of_term_for_typ Ts =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   240
  let
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   241
    val names = Ts
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   242
      |> map (suffix "_of_term" o space_implode "_" o map ml_name_of o tycos_of)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   243
      |> Name.variant_list [];
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   244
  in the o AList.lookup (op =) (Ts ~~ names) end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   245
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   246
fun eval_for_const ctxt cTs =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   247
  let
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   248
    fun symbol_list (c, T) = c :: maps tycos_of (Sign.const_typargs (Proof_Context.theory_of ctxt) (c, T))
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   249
    val names = cTs
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   250
      |> map (prefix "eval_" o space_implode "_" o map ml_name_of o symbol_list)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   251
      |> Name.variant_list [];
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   252
  in the o AList.lookup (op =) (cTs ~~ names) end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   253
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   254
end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   255
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   256
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   257
(* checks for input terms *)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   258
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   259
fun monomorphic T = fold_atyps ((K o K) false) T true;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   260
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   261
fun check_typ ctxt T t =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   262
  Syntax.check_term ctxt (Type.constraint T t);
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   263
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   264
fun check_computation_input ctxt cTs t =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   265
  let
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   266
    fun check t = check_comb (strip_comb t)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   267
    and check_comb (t as Abs _, _) =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   268
          error ("Bad term, contains abstraction: " ^ Syntax.string_of_term ctxt t)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   269
      | check_comb (t as Const (cT as (c, T)), ts) =
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   270
          let
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   271
            val _ = if not (member (op =) cTs cT)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   272
              then error ("Bad term, computation cannot proceed on constant " ^ Syntax.string_of_term ctxt t)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   273
              else ();
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   274
            val _ = if not (monomorphic T)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   275
              then error ("Bad term, contains polymorphic constant " ^ Syntax.string_of_term ctxt t)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   276
              else ();
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   277
            val _ = map check ts;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   278
          in () end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   279
    val _ = check t;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   280
  in t end;
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   281
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   282
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   283
(* code generation for of the universal morphism *)
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   284
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   285
val print_const = ML_Syntax.print_pair ML_Syntax.print_string ML_Syntax.print_typ;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   286
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   287
fun print_of_term_funs { typ_signatures_for, eval_for_const, of_term_for_typ } Ts =
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   288
  let
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   289
    val var_names = map_range (fn n => "t" ^ string_of_int (n + 1));
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   290
    fun print_lhs c xs = "Const (" ^ quote c ^ ", _)"
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   291
      |> fold (fn x => fn s => s ^ " $ " ^ x) xs
64943
c5618df67c2a explicit a-priori detection of unsuitable terms for computations
haftmann
parents: 64940
diff changeset
   292
      |> enclose "(" ")";
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   293
    fun print_rhs c Ts T xs = eval_for_const (c, Ts ---> T)
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   294
      |> fold2 (fn T' => fn x => fn s =>
64943
c5618df67c2a explicit a-priori detection of unsuitable terms for computations
haftmann
parents: 64940
diff changeset
   295
         s ^ (" (" ^ of_term_for_typ T' ^ " " ^ x ^ ")")) Ts xs
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   296
    fun print_eq T (c, Ts) =
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   297
      let
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   298
        val xs = var_names (length Ts);
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   299
      in print_lhs c xs ^ " = " ^ print_rhs c Ts T xs end;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   300
    fun print_eqs T =
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   301
      let
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   302
        val typ_signs = typ_signatures_for T;
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   303
        val name = of_term_for_typ T;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   304
      in
64943
c5618df67c2a explicit a-priori detection of unsuitable terms for computations
haftmann
parents: 64940
diff changeset
   305
        map (print_eq T) typ_signs
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   306
        |> map (prefix (name ^ " "))
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   307
        |> space_implode "\n  | "
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   308
      end;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   309
  in
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   310
    map print_eqs Ts
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   311
    |> space_implode "\nand "
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   312
    |> prefix "fun "
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   313
  end;
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   314
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   315
fun print_computation_code ctxt compiled_value [] requested_Ts =
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   316
      if null requested_Ts then ("", [])
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   317
      else error ("No equation available for requested type "
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   318
        ^ Syntax.string_of_typ ctxt (hd requested_Ts))
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   319
  | print_computation_code ctxt compiled_value cTs requested_Ts =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   320
      let
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   321
        val proper_cTs = map_filter I cTs;
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   322
        val typ_signatures_for = typ_signatures proper_cTs;
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   323
        fun add_typ T Ts =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   324
          if member (op =) Ts T
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   325
          then Ts
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   326
          else case typ_signatures_for T of
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   327
            [] => error ("No equation available for requested type "
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   328
              ^ Syntax.string_of_typ ctxt T)
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   329
          | typ_signs =>
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   330
              Ts
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   331
              |> cons T
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   332
              |> fold (fold add_typ o snd) typ_signs;
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   333
        val required_Ts = fold add_typ requested_Ts [];
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   334
        val of_term_for_typ' = of_term_for_typ required_Ts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   335
        val eval_for_const' = eval_for_const ctxt proper_cTs;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   336
        val eval_for_const'' = the_default "_" o Option.map eval_for_const';
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   337
        val eval_tuple = enclose "(" ")" (commas (map eval_for_const' proper_cTs));
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   338
        fun mk_abs s = "fn " ^ s ^ " => ";
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   339
        val eval_abs = space_implode ""
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   340
          (map (mk_abs o eval_for_const'') cTs);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   341
        val of_term_code = print_of_term_funs {
64990
c6a7de505796 more explicit errors in pathological cases
haftmann
parents: 64989
diff changeset
   342
          typ_signatures_for = typ_signatures_for,
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   343
          eval_for_const = eval_for_const',
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   344
          of_term_for_typ = of_term_for_typ' } required_Ts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   345
        val of_term_names = map (Long_Name.append generated_computationN
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   346
          o of_term_for_typ') requested_Ts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   347
      in
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   348
        cat_lines [
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   349
          "structure " ^ generated_computationN ^ " =",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   350
          "struct",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   351
          "",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   352
          "val " ^ covered_constsN ^ " = " ^ ML_Syntax.print_list print_const proper_cTs ^ ";",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   353
          "",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   354
          "val " ^ eval_tuple ^ " = " ^ compiled_value ^ " ()",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   355
          "  (" ^ eval_abs,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   356
          "    " ^ eval_tuple ^ ");",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   357
          "",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   358
          of_term_code,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   359
          "",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   360
          "end"
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   361
        ] |> rpair of_term_names
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   362
      end;
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   363
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   364
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   365
(* dedicated preprocessor for computations *)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   366
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   367
structure Computation_Preproc_Data = Theory_Data
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   368
(
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   369
  type T = thm list;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   370
  val empty = [];
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   371
  val extend = I;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   372
  val merge = Library.merge Thm.eq_thm_prop;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   373
);
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   374
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   375
local
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   376
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   377
fun add thm thy =
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   378
  let
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   379
    val thms = Simplifier.mksimps (Proof_Context.init_global thy) thm;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   380
  in
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   381
    thy
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   382
    |> Computation_Preproc_Data.map (union Thm.eq_thm_prop thms)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   383
  end;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   384
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   385
fun get ctxt = Computation_Preproc_Data.get (Proof_Context.theory_of ctxt);
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   386
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   387
in
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   388
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   389
fun preprocess_conv { ctxt } = 
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   390
  let
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   391
    val rules = get ctxt;
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   392
  in fn ctxt' => Raw_Simplifier.rewrite ctxt' false rules end;
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   393
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   394
fun preprocess_term { ctxt } =
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   395
  let
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   396
    val rules = map (Logic.dest_equals o Thm.plain_prop_of) (get ctxt);
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   397
  in fn ctxt' => Pattern.rewrite_term (Proof_Context.theory_of ctxt') rules [] end;
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   398
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   399
val _ = Theory.setup
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   400
  (Attrib.setup @{binding code_computation_unfold}
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   401
    (Scan.succeed (Thm.declaration_attribute (fn thm => Context.mapping (add thm) I)))
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   402
    "preprocessing equations for computation");
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   403
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   404
end;
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   405
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   406
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   407
(* mounting computations *)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   408
64991
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   409
fun prechecked_computation T raw_computation ctxt =
64987
haftmann
parents: 64959
diff changeset
   410
  check_typ ctxt T
haftmann
parents: 64959
diff changeset
   411
  #> reject_vars ctxt
64991
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   412
  #> raw_computation ctxt;
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   413
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   414
fun prechecked_conv T raw_conv ctxt =
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   415
  tap (check_typ ctxt T o reject_vars ctxt o Thm.term_of)
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   416
  #> raw_conv ctxt;
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   417
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   418
fun checked_computation cTs raw_computation ctxt =
d2c79b16e133 variables and type must be checked before entering evaluation sandwich
haftmann
parents: 64990
diff changeset
   419
  check_computation_input ctxt cTs
65005
3278831c226d only intercept regular exceptions
haftmann
parents: 64995
diff changeset
   420
  #> Exn.interruptible_capture raw_computation
64988
93aaff2b0ae0 computations and partiality
haftmann
parents: 64987
diff changeset
   421
  #> partiality_as_none;
64987
haftmann
parents: 64959
diff changeset
   422
64957
3faa9b31ff78 tuned structure and terminology
haftmann
parents: 64956
diff changeset
   423
fun mount_computation ctxt cTs T raw_computation lift_postproc =
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   424
  let
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   425
    val preprocess = preprocess_term { ctxt = ctxt };
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   426
    val computation = prechecked_computation T (Code_Preproc.static_value
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   427
      { ctxt = ctxt, lift_postproc = lift_postproc, consts = [] }
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   428
      (K (checked_computation cTs raw_computation)));
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   429
  in fn ctxt' => preprocess ctxt' #> computation ctxt' end;
64943
c5618df67c2a explicit a-priori detection of unsuitable terms for computations
haftmann
parents: 64940
diff changeset
   430
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   431
fun mount_computation_conv ctxt cTs T raw_computation conv =
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   432
  let
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   433
    val preprocess = preprocess_conv { ctxt = ctxt };
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   434
    val computation_conv = prechecked_conv T (Code_Preproc.static_conv
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   435
      { ctxt = ctxt, consts = [] }
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   436
      (K (fn ctxt' => fn t =>
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   437
        case checked_computation cTs raw_computation ctxt' t of
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   438
          SOME x => conv x
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   439
        | NONE => Conv.all_conv)));
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   440
  in fn ctxt' => preprocess ctxt' then_conv computation_conv ctxt' end;
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   441
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   442
local
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   443
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   444
fun holds ct = Thm.mk_binop @{cterm "Pure.eq :: prop \<Rightarrow> prop \<Rightarrow> prop"}
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   445
  ct @{cprop "PROP Code_Generator.holds"};
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   446
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   447
val (_, holds_oracle) = Context.>>> (Context.map_theory_result
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   448
  (Thm.add_oracle (@{binding holds}, holds)));
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   449
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   450
in
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   451
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   452
fun mount_computation_check ctxt cTs raw_computation =
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   453
  mount_computation_conv ctxt cTs @{typ prop} raw_computation
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   454
    (K holds_oracle);
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   455
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   456
end;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   457
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   458
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   459
(** variants of universal runtime code generation **)
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   460
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   461
(*FIXME consolidate variants*)
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   462
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   463
fun runtime_code'' ctxt module_name program tycos consts =
33992
bf22ff4f3d19 signatures for generated code; tuned
haftmann
parents: 33636
diff changeset
   464
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   465
    val thy = Proof_Context.theory_of ctxt;
48568
084cd758a8ab evaluation: allow multiple code modules
haftmann
parents: 47609
diff changeset
   466
    val (ml_modules, target_names) =
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   467
      Code_Target.produce_code_for ctxt
55683
5732a55b9232 explicit option for "open" code generation
haftmann
parents: 55304
diff changeset
   468
        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
   469
    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
   470
    val (consts', tycos') = chop (length consts) target_names;
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   471
    val consts_map = map2 (fn const =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   472
      fn NONE =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   473
          error ("Constant " ^ (quote o Code.string_of_const thy) const ^
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   474
            "\nhas a user-defined serialization")
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 53171
diff changeset
   475
       | SOME const' => (const, const')) consts consts'
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   476
    val tycos_map = map2 (fn tyco =>
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   477
      fn NONE =>
55304
55ac31bc08a4 more formal markup;
wenzelm
parents: 55188
diff changeset
   478
          error ("Type " ^ quote (Proof_Context.markup_type ctxt tyco) ^
42359
6ca5407863ed prefer local name spaces;
wenzelm
parents: 41944
diff changeset
   479
            "\nhas a user-defined serialization")
55147
bce3dbc11f95 prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents: 53171
diff changeset
   480
        | SOME tyco' => (tyco, tyco')) tycos tycos';
34028
1e6206763036 split off evaluation mechanisms in separte module Code_Eval
haftmann
parents: 33992
diff changeset
   481
  in (ml_code, (tycos_map, consts_map)) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   482
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   483
fun runtime_code' ctxt some_module_name named_tycos named_consts computation_Ts program evals vs_ty_evals deps =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   484
  let
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   485
    val thy = Proof_Context.theory_of ctxt;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   486
    fun the_const (Const cT) = cT
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   487
      | the_const t = error ("No constant after preprocessing: " ^ Syntax.string_of_term ctxt t)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   488
    val raw_computation_cTs = case evals of
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   489
        Abs (_, _, t) => (map the_const o snd o strip_comb) t
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   490
      | _ => error ("Bad term after preprocessing: " ^ Syntax.string_of_term ctxt evals);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   491
    val computation_cTs = fold_rev (fn cT => fn cTs =>
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   492
      (if member (op =) cTs (SOME cT) then NONE else SOME cT) :: cTs) raw_computation_cTs [];
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   493
    val consts' = fold (fn NONE => I | SOME (c, _) => insert (op =) c)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   494
      computation_cTs named_consts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   495
    val program' = Code_Thingol.consts_program ctxt consts';
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   496
      (*FIXME insufficient interfaces require double invocation of code generator*)
65034
1846c4551153 more complete program generation in presence of dictionaries
haftmann
parents: 65005
diff changeset
   497
    val program'' = Code_Symbol.Graph.merge (K true) (program, program');
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   498
    val ((ml_modules, compiled_value), deresolve) =
65034
1846c4551153 more complete program generation in presence of dictionaries
haftmann
parents: 65005
diff changeset
   499
      Code_Target.compilation_text' ctxt target some_module_name program''
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   500
        (map Code_Symbol.Type_Constructor named_tycos @ map Code_Symbol.Constant consts' @ deps) true vs_ty_evals;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   501
        (*FIXME constrain signature*)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   502
    fun deresolve_const c = case (deresolve o Code_Symbol.Constant) c of
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   503
          NONE => error ("Constant " ^ (quote o Code.string_of_const thy) c ^
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   504
            "\nhas a user-defined serialization")
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   505
        | SOME c' => c';
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   506
    fun deresolve_tyco tyco = case (deresolve o Code_Symbol.Type_Constructor) tyco of
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   507
          NONE => error ("Type " ^ quote (Proof_Context.markup_type ctxt tyco) ^
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   508
            "\nhas a user-defined serialization")
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   509
        | SOME c' => c';
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   510
    val tyco_names =  map deresolve_const named_tycos;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   511
    val const_names = map deresolve_const named_consts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   512
    val generated_code = space_implode "\n\n" (map snd ml_modules);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   513
    val (of_term_code, of_term_names) =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   514
      print_computation_code ctxt compiled_value computation_cTs computation_Ts;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   515
    val compiled_computation = generated_code ^ "\n" ^ of_term_code;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   516
  in
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   517
    compiled_computation
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   518
    |> rpair { tyco_map = named_tycos ~~ tyco_names,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   519
      const_map = named_consts ~~ const_names,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   520
      of_term_map = computation_Ts ~~ of_term_names }
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   521
  end;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   522
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   523
fun funs_of_maps { tyco_map, const_map, of_term_map } =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   524
  { name_for_tyco = the o AList.lookup (op =) tyco_map,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   525
    name_for_const = the o AList.lookup (op =) const_map,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   526
    of_term_for_typ = the o AList.lookup (op =) of_term_map };
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   527
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   528
fun runtime_code ctxt some_module_name named_tycos named_consts computation_Ts program evals vs_ty_evals deps =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   529
  runtime_code' ctxt some_module_name named_tycos named_consts computation_Ts program evals vs_ty_evals deps
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   530
  ||> funs_of_maps;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   531
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   532
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   533
(** code and computation antiquotations **)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   534
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   535
local
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   536
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   537
val mount_computationN = prefix_this "mount_computation";
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   538
val mount_computation_convN = prefix_this "mount_computation_conv";
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   539
val mount_computation_checkN = prefix_this "mount_computation_check";
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   540
38930
072363be3fd9 modernized; avoid pointless tinkering with structure names
haftmann
parents: 38929
diff changeset
   541
structure Code_Antiq_Data = Proof_Data
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   542
(
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   543
  type T = { named_consts: string list,
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   544
    computation_Ts: typ list, computation_cTs: (string * typ) list,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   545
    position_index: int,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   546
    generated_code: (string * {
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   547
      name_for_tyco: string -> string,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   548
      name_for_const: string -> string,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   549
      of_term_for_typ: typ -> string
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   550
    }) lazy
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   551
  };
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   552
  val empty: T = { named_consts = [],
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   553
    computation_Ts = [], computation_cTs = [],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   554
    position_index = 0,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   555
    generated_code = Lazy.lazy (fn () => raise Fail "empty")
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   556
  };
59150
wenzelm
parents: 59127
diff changeset
   557
  fun init _ = empty;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   558
);
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   559
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   560
val current_position_index = #position_index o Code_Antiq_Data.get;
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   561
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   562
fun register { named_consts, computation_Ts, computation_cTs } ctxt =
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   563
  let
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   564
    val data = Code_Antiq_Data.get ctxt;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   565
    val named_consts' = union (op =) named_consts (#named_consts data);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   566
    val computation_Ts' = union (op =) computation_Ts (#computation_Ts data);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   567
    val computation_cTs' = union (op =) computation_cTs (#computation_cTs data);
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   568
    val position_index' = #position_index data + 1;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   569
    fun generated_code' () =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   570
      let
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   571
        val evals = Abs ("eval", map snd computation_cTs' --->
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   572
          TFree (Name.aT, []), list_comb (Bound 0, map Const computation_cTs'))
64995
a7af4045f873 preprocessing rules must always stem from static context
haftmann
parents: 64993
diff changeset
   573
          |> preprocess_term { ctxt = ctxt } ctxt
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   574
      in Code_Thingol.dynamic_value ctxt
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   575
        (K I) (runtime_code ctxt NONE [] named_consts' computation_Ts') evals
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   576
      end;
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   577
  in
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   578
    ctxt
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   579
    |> Code_Antiq_Data.put { 
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   580
        named_consts = named_consts',
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   581
        computation_Ts = computation_Ts',
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   582
        computation_cTs = computation_cTs',
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   583
        position_index = position_index',
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   584
        generated_code = Lazy.lazy generated_code'
64955
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   585
      }
25281bee02ac tuned data structure
haftmann
parents: 64954
diff changeset
   586
  end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   587
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   588
fun register_const const =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   589
  register { named_consts = [const],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   590
    computation_Ts = [],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   591
    computation_cTs = [] };
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   592
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   593
fun register_computation cTs T =
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   594
  register { named_consts = [],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   595
    computation_Ts = [T],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   596
    computation_cTs = cTs };
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   597
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   598
fun print body_code_for ctxt ctxt' =
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   599
  let
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   600
    val position_index = current_position_index ctxt;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   601
    val (code, name_ofs) = (Lazy.force o #generated_code o Code_Antiq_Data.get) ctxt';
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   602
    val context_code = if position_index = 0 then code else "";
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   603
    val body_code = body_code_for name_ofs (ML_Context.struct_name ctxt');
64958
haftmann
parents: 64957
diff changeset
   604
  in (context_code, body_code) end;
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   605
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   606
fun print_code ctxt const =
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   607
  print (fn { name_for_const, ... } => fn prfx =>
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   608
    Long_Name.append prfx (name_for_const const)) ctxt;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   609
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   610
fun print_computation kind ctxt T =
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   611
  print (fn { of_term_for_typ, ... } => fn prfx =>
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   612
    space_implode " " [
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   613
      kind,
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   614
      "(Context.proof_of (Context.the_generic_context ()))",
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   615
      Long_Name.implode [prfx, generated_computationN, covered_constsN],
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   616
      (ML_Syntax.atomic o ML_Syntax.print_typ) T,
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   617
      Long_Name.append prfx (of_term_for_typ T)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   618
    ]) ctxt;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   619
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   620
fun print_computation_check ctxt =
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   621
  print (fn { of_term_for_typ, ... } => fn prfx =>
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   622
    space_implode " " [
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   623
      mount_computation_checkN,
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   624
      "(Context.proof_of (Context.the_generic_context ()))",
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   625
      Long_Name.implode [prfx, generated_computationN, covered_constsN],
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   626
      Long_Name.append prfx (of_term_for_typ @{typ prop})
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   627
    ]) ctxt;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   628
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   629
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   630
fun add_all_constrs ctxt (dT as Type (tyco, Ts)) =
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   631
  let
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   632
    val ((vs, constrs), _) = Code.get_type (Proof_Context.theory_of ctxt) tyco;
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   633
    val subst_TFree = the o AList.lookup (op =) (map fst vs ~~ Ts);
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   634
    val cs = map (fn (c, (_, Ts')) =>
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   635
      (c, (map o map_atyps) (fn TFree (v, _) => subst_TFree v) Ts'
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   636
        ---> dT)) constrs;
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   637
  in
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   638
    union (op =) cs
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   639
    #> fold (add_all_constrs ctxt) Ts
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   640
  end;
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   641
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   642
fun prep_spec ctxt (raw_ts, raw_dTs) =
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   643
  let
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   644
    val ts = map (Syntax.check_term ctxt) raw_ts;
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   645
    val dTs = map (Syntax.check_typ ctxt) raw_dTs;
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   646
  in
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   647
    []
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   648
    |> (fold o fold_aterms)
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   649
      (fn (t as Const (cT as (_, T))) =>
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   650
        if not (monomorphic T) then error ("Polymorphic constant: " ^ Syntax.string_of_term ctxt t)
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   651
        else insert (op =) cT | _ => I) ts
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   652
    |> fold (fn dT =>
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   653
        if not (monomorphic dT) then error ("Polymorphic datatype: " ^ Syntax.string_of_typ ctxt dT)
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   654
        else add_all_constrs ctxt dT) dTs
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   655
  end;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   656
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   657
in
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   658
56069
451d5b73f8cf simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents: 55757
diff changeset
   659
fun ml_code_antiq raw_const ctxt =
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   660
  let
53169
e2d31807cbf6 clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
wenzelm
parents: 52435
diff changeset
   661
    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
   662
    val const = Code.check_const thy raw_const;
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   663
  in (print_code ctxt const, register_const const ctxt) end;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   664
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   665
fun gen_ml_computation_antiq kind (raw_T, raw_spec) ctxt =
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   666
  let
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   667
    val cTs = prep_spec ctxt raw_spec;
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   668
    val T = Syntax.check_typ ctxt raw_T;
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   669
    val _ = if not (monomorphic T)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   670
      then error ("Polymorphic type: " ^ Syntax.string_of_typ ctxt T)
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   671
      else ();
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   672
  in (print_computation kind ctxt T, register_computation cTs T ctxt) end;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   673
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   674
val ml_computation_antiq = gen_ml_computation_antiq mount_computationN;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   675
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   676
val ml_computation_conv_antiq = gen_ml_computation_antiq mount_computation_convN;
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   677
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   678
fun ml_computation_check_antiq raw_spec ctxt =
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   679
  let
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   680
    val cTs = insert (op =) (dest_Const @{const holds}) (prep_spec ctxt raw_spec);
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   681
  in (print_computation_check ctxt, register_computation cTs @{typ prop} ctxt) end;
30962
f5fd07c558f9 code_datatype antiquotation; tuned
haftmann
parents: 30947
diff changeset
   682
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   683
end; (*local*)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   684
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   685
58558
30cc7ee5ac10 basic support for fully static evaluator generation without dynamic compiler invocation
haftmann
parents: 58557
diff changeset
   686
(** reflection support **)
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   687
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   688
fun check_datatype thy tyco some_consts =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   689
  let
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   690
    val declared_constrs = (map fst o snd o fst o Code.get_type thy) tyco;
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   691
    val constrs = case some_consts
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   692
     of SOME [] => []
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   693
      | SOME consts =>
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   694
          let
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   695
            val missing_constrs = subtract (op =) consts declared_constrs;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   696
            val _ = if null missing_constrs then []
45430
b8eb7a791dac misc tuning;
wenzelm
parents: 45268
diff changeset
   697
              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
   698
                ^ " for datatype " ^ quote tyco);
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   699
            val false_constrs = subtract (op =) declared_constrs consts;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   700
            val _ = if null false_constrs then []
45430
b8eb7a791dac misc tuning;
wenzelm
parents: 45268
diff changeset
   701
              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
   702
                ^ " for datatype " ^ quote tyco)
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   703
          in consts end
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   704
      | NONE => declared_constrs;
40421
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   705
  in (tyco, constrs) end;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   706
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   707
fun add_eval_tyco (tyco, tyco') thy =
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   708
  let
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   709
    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
   710
    fun pr pr' _ [] = tyco'
b41aabb629ce constructors to datatypes in code_reflect can be globbed; dropped unused code
haftmann
parents: 40320
diff changeset
   711
      | pr pr' _ [ty] =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   712
          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
   713
      | pr pr' _ tys =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   714
          Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   715
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   716
    thy
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   717
    |> Code_Target.set_printings (Type_Constructor (tyco, [(target, SOME (k, pr))]))
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   718
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   719
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   720
fun add_eval_constr (const, const') thy =
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   721
  let
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   722
    val k = Code.args_number thy const;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   723
    fun pr pr' fxy ts = Code_Printer.brackify fxy
38922
ec2a8efd8990 Code_Printer.tuplify
haftmann
parents: 38921
diff changeset
   724
      (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
   725
  in
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   726
    thy
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   727
    |> 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
   728
      [(target, SOME (Code_Printer.simple_const_syntax (k, pr)))]))
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   729
  end;
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   730
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   731
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
   732
  (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
   733
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   734
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
   735
      thy
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   736
      |> Code_Target.add_reserved target module_name
63163
b561284a4214 clarified internal interfaces
haftmann
parents: 63160
diff changeset
   737
      |> Context.theory_map (compile_ML true code)
38935
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   738
      |> fold (add_eval_tyco o apsnd Code_Printer.str) tyco_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   739
      |> fold (add_eval_constr o apsnd Code_Printer.str) constr_map
2cf3d8305b47 corrected misbehaved additional qualification of generated names
haftmann
parents: 38933
diff changeset
   740
      |> 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
   741
  | process_reflection (code, _) _ (SOME file_name) thy =
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   742
      let
37950
bc285d91041e moved basic thy file name operations from Thy_Load to Thy_Header;
wenzelm
parents: 37744
diff changeset
   743
        val preamble =
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 45430
diff changeset
   744
          "(* Generated from " ^
56208
06cc31dff138 clarifed module name;
wenzelm
parents: 56205
diff changeset
   745
            Path.implode (Resources.thy_path (Path.basic (Context.theory_name thy))) ^
46737
09ab89658a5d clarified module Thy_Load;
wenzelm
parents: 45430
diff changeset
   746
          "; DO NOT EDIT! *)";
39912
2ffe7060ca75 avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
haftmann
parents: 39816
diff changeset
   747
        val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   748
      in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   749
        thy
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   750
      end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   751
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   752
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
   753
  let
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   754
    val ctxt = Proof_Context.init_global thy;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   755
    val datatypes = map (fn (raw_tyco, raw_cos) =>
55757
9fc71814b8c1 prefer proof context over background theory
haftmann
parents: 55684
diff changeset
   756
      (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
   757
    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
   758
      |> apsnd flat;
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   759
    val functions = map (prep_const thy) raw_functions;
58557
fea97f7be494 split dynamic from static context
haftmann
parents: 57435
diff changeset
   760
    val consts = constrs @ functions;
63159
84c6dd947b75 clarified proof context vs. background theory
haftmann
parents: 63157
diff changeset
   761
    val program = Code_Thingol.consts_program ctxt consts;
64959
9ca021bd718d ML antiquotation for generated computations
haftmann
parents: 64958
diff changeset
   762
    val result = runtime_code'' ctxt module_name program tycos consts
36514
3971cd55c869 take into account tupled constructors
haftmann
parents: 36470
diff changeset
   763
      |> (apsnd o apsnd) (chop (length constrs));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   764
  in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   765
    thy
39485
f7270a5e2550 closures preserve static serializer context for static evaluation; tuned
haftmann
parents: 39482
diff changeset
   766
    |> process_reflection result module_name some_file
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   767
  end;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   768
39422
9019b6afaa4a proper interface for code_reflect
haftmann
parents: 39404
diff changeset
   769
val code_reflect = gen_code_reflect Code_Target.cert_tyco (K I);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   770
val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const;
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   771
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   772
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   773
(** Isar setup **)
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   774
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   775
local
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   776
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   777
val parse_consts_spec =
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   778
  Scan.optional (Scan.lift (Args.$$$ "terms" -- Args.colon) |-- Scan.repeat1 Args.term) []
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   779
  -- Scan.optional (Scan.lift (Args.$$$ "datatypes"  -- Args.colon) |-- Scan.repeat1 Args.typ) [];
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   780
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   781
in
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   782
64993
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   783
val _ = Theory.setup
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   784
  (ML_Antiquotation.declaration @{binding code}
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   785
    Args.term (K ml_code_antiq)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   786
  #> ML_Antiquotation.declaration @{binding computation}
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   787
    (Args.typ -- parse_consts_spec) (K ml_computation_antiq)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   788
  #> ML_Antiquotation.declaration @{binding computation_conv}
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   789
    (Args.typ -- parse_consts_spec) (K ml_computation_conv_antiq)
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   790
  #> ML_Antiquotation.declaration @{binding computation_check}
4fb84597ec5a dedicated preprocessor for computations
haftmann
parents: 64992
diff changeset
   791
    parse_consts_spec (K ml_computation_check_antiq));
64989
40c36a4aee1f more computation antiquotations
haftmann
parents: 64988
diff changeset
   792
64992
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   793
end;
41e2c3617582 extended syntax allows to include datatype constructors directly in computations
haftmann
parents: 64991
diff changeset
   794
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   795
local
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   796
36960
01594f816e3a prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
wenzelm
parents: 36610
diff changeset
   797
val parse_datatype =
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   798
  Parse.name -- Scan.optional (@{keyword "="} |--
40711
81bc73585eec globbing constant expressions use more idiomatic underscore rather than star
haftmann
parents: 40422
diff changeset
   799
    (((Parse.sym_ident || Parse.string) >> (fn "_" => NONE | _ => Scan.fail ()))
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   800
    || ((Parse.term ::: (Scan.repeat (@{keyword "|"} |-- Parse.term))) >> SOME))) (SOME []);
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   801
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   802
in
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   803
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   804
val _ =
59936
b8ffc3dc9e24 @{command_spec} is superseded by @{command_keyword};
wenzelm
parents: 59633
diff changeset
   805
  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
   806
    "enrich runtime environment with generated code"
63174
57c0d60e491c do not export abstract constructors in code_reflect
haftmann
parents: 63164
diff changeset
   807
    (Parse.name -- Scan.optional (@{keyword "datatypes"} |-- Parse.!!! (parse_datatype
46949
94aa7b81bcf6 prefer formally checked @{keyword} parser;
wenzelm
parents: 46947
diff changeset
   808
      ::: Scan.repeat (@{keyword "and"} |-- parse_datatype))) []
52434
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 48568
diff changeset
   809
    -- Scan.optional (@{keyword "functions"} |-- Parse.!!!  (Scan.repeat1 Parse.name)) []
cbb94074682b more appropriate cutting of input syntax
haftmann
parents: 48568
diff changeset
   810
    -- 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
   811
    >> (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
   812
      (code_reflect_cmd raw_datatypes raw_functions module_name some_file)));
36470
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   813
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   814
end; (*local*)
ed9be131a4ec added code_reflect command
haftmann
parents: 36271
diff changeset
   815
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   817
(** 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
   818
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   819
local
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   820
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   821
structure Loaded_Values = Theory_Data
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   822
(
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   823
  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
   824
  val empty = []
41472
f6ab14e61604 misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents: 41376
diff changeset
   825
  val extend = I
39820
cd691e2c7a1a made SML/NJ happy;
wenzelm
parents: 39816
diff changeset
   826
  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
   827
);
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   828
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   829
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
   830
  let
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   831
    val _ = #enterVal ML_Env.name_space (string, value);
53171
a5e54d4d9081 added Theory.setup convenience;
wenzelm
parents: 53169
diff changeset
   832
    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
   833
  in () end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   834
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   835
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
   836
62494
b90109b2487c clarified modules;
wenzelm
parents: 62493
diff changeset
   837
val notifying_context : ML_Compiler0.context =
62354
fdd6989cc8a0 SML/NJ is no longer supported;
wenzelm
parents: 61077
diff changeset
   838
 {name_space =
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   839
   {lookupVal    = #lookupVal ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   840
    lookupType   = #lookupType ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   841
    lookupFix    = #lookupFix ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   842
    lookupStruct = #lookupStruct ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   843
    lookupSig    = #lookupSig ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   844
    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
   845
    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
   846
    enterType    = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   847
    enterFix     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   848
    enterStruct  = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   849
    enterSig     = abort,
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   850
    enterFunct   = abort,
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   851
    allVal       = #allVal ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   852
    allType      = #allType ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   853
    allFix       = #allFix ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   854
    allStruct    = #allStruct ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   855
    allSig       = #allSig ML_Env.name_space,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   856
    allFunct     = #allFunct ML_Env.name_space},
62716
d80b9f4990e4 explicit print_depth for the sake of Spec_Check.determine_type;
wenzelm
parents: 62607
diff changeset
   857
  print_depth = NONE,
62495
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   858
  here = #here ML_Env.context,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   859
  print = #print ML_Env.context,
83db706d7771 tuned signature;
wenzelm
parents: 62494
diff changeset
   860
  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
   861
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   862
in
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   863
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   864
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
   865
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   866
    val thy' = Loaded_Values.put [] thy;
62889
99c7f31615c2 clarified modules;
wenzelm
parents: 62876
diff changeset
   867
    val _ = Context.put_generic_context ((SOME o Context.Theory) thy');
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   868
    val _ =
62902
3c0f53eae166 more conventional theory syntax for ML bootstrap, with 'ML_file' instead of 'use';
wenzelm
parents: 62889
diff changeset
   869
      ML_Compiler0.ML notifying_context
60956
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   870
        {line = 0, file = Path.implode filepath, verbose = false, debug = false}
10d463883dc2 explicit debug flag for ML compiler;
wenzelm
parents: 59936
diff changeset
   871
        (File.read filepath);
62876
507c90523113 clarified modules -- simplified bootstrap;
wenzelm
parents: 62716
diff changeset
   872
    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
   873
    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
   874
  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
   875
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   876
end;
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   877
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   878
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
   879
  thy
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   880
  |> Code_Target.add_reserved target ml_name
63178
b9e1d53124f5 clarified 'axiomatization';
wenzelm
parents: 63164
diff changeset
   881
  |> 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
   882
  |-> (fn ([Const (const, _)], _) =>
55150
0940309ed8f1 less clumsy namespace
haftmann
parents: 55147
diff changeset
   883
    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
   884
      [(target, SOME (Code_Printer.simple_const_syntax (0, (K o K o K o Code_Printer.str) ml_name)))]))
64940
19ca3644ec46 experimental computations: use arbitrary generated code for RHSs, not just constants
haftmann
parents: 64928
diff changeset
   885
  #> tap (fn thy => Code_Target.produce_code (Proof_Context.init_global thy) false [const] target NONE Code_Target.generatedN []));
39816
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   886
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   887
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
   888
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   889
    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
   890
    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
   891
    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
   892
      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
   893
        ^ " 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
   894
        ^ " 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
   895
    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
   896
    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
   897
    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
   898
  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
   899
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   900
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
   901
  let
c7cec137c48a added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
haftmann
parents: 39605
diff changeset
   902
    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
   903
    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
   904
    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
   905
      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
   906
        ^ " 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
   907
  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
   908
28054
2b84d34c5d02 restructured and split code serializer module
haftmann
parents:
diff changeset
   909
end; (*struct*)