| author | traytel | 
| Sun, 09 Mar 2014 21:40:41 +0100 | |
| changeset 56012 | 158dc03db8be | 
| parent 55757 | 9fc71814b8c1 | 
| child 56069 | 451d5b73f8cf | 
| permissions | -rw-r--r-- | 
| 39401 | 1 | (* Title: Tools/Code/code_runtime.ML | 
| 28054 | 2 | Author: Florian Haftmann, TU Muenchen | 
| 3 | ||
| 34028 
1e6206763036
split off evaluation mechanisms in separte module Code_Eval
 haftmann parents: 
33992diff
changeset | 4 | Runtime services building on code generation into implementation language SML. | 
| 28054 | 5 | *) | 
| 6 | ||
| 39401 | 7 | signature CODE_RUNTIME = | 
| 28054 | 8 | sig | 
| 34028 
1e6206763036
split off evaluation mechanisms in separte module Code_Eval
 haftmann parents: 
33992diff
changeset | 9 | val target: string | 
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 10 | val value: Proof.context -> | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
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: 
39816diff
changeset | 12 | string * string -> 'a | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 13 | type 'a cookie = (Proof.context -> unit -> 'a) * ((unit -> 'a) -> Proof.context -> Proof.context) * string | 
| 55757 | 14 | val dynamic_value: 'a cookie -> Proof.context -> string option | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 15 | -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a option | 
| 55757 | 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: 
39422diff
changeset | 17 | -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a | 
| 55757 | 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: 
39422diff
changeset | 19 | -> ((term -> term) -> 'a -> 'a) -> term -> string list -> 'a Exn.result | 
| 55757 | 20 | val static_value: 'a cookie -> Proof.context -> string option | 
| 21 | -> ((term -> term) -> 'a -> 'a) -> string list -> Proof.context -> term -> 'a option | |
| 22 | val static_value_strict: 'a cookie -> Proof.context -> string option | |
| 23 | -> ((term -> term) -> 'a -> 'a) -> string list -> Proof.context -> term -> 'a | |
| 24 | val static_value_exn: 'a cookie -> Proof.context -> string option | |
| 25 | -> ((term -> term) -> 'a -> 'a) -> string list -> Proof.context -> term -> 'a Exn.result | |
| 26 | val dynamic_holds_conv: Proof.context -> conv | |
| 27 | val static_holds_conv: Proof.context -> string list -> Proof.context -> conv | |
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 28 | 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: 
40320diff
changeset | 29 | -> string option -> theory -> theory | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 30 | datatype truth = Holds | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 31 | val put_truth: (unit -> truth) -> Proof.context -> Proof.context | 
| 40150 | 32 | val trace: bool Unsynchronized.ref | 
| 39816 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 33 | val polyml_as_definition: (binding * typ) list -> Path.T list -> theory -> theory | 
| 28054 | 34 | end; | 
| 35 | ||
| 39401 | 36 | structure Code_Runtime : CODE_RUNTIME = | 
| 28054 | 37 | struct | 
| 38 | ||
| 55150 | 39 | open Basic_Code_Symbol; | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 40 | open Basic_Code_Thingol; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 41 | |
| 39404 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 42 | (** evaluation **) | 
| 33992 | 43 | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 44 | (* technical prerequisites *) | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 45 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 46 | val this = "Code_Runtime"; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 47 | val s_truth = Long_Name.append this "truth"; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 48 | val s_Holds = Long_Name.append this "Holds"; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 49 | |
| 34028 
1e6206763036
split off evaluation mechanisms in separte module Code_Eval
 haftmann parents: 
33992diff
changeset | 50 | val target = "Eval"; | 
| 44663 | 51 | val structure_generated = "Generated_Code"; | 
| 28054 | 52 | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 53 | datatype truth = Holds; | 
| 39422 | 54 | |
| 53171 | 55 | val _ = Theory.setup | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
53171diff
changeset | 56 | (Code_Target.extend_target (target, (Code_ML.target_SML, I)) | 
| 55150 | 57 |   #> Code_Target.set_printings (Type_Constructor (@{type_name prop},
 | 
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
52434diff
changeset | 58 | [(target, SOME (0, (K o K o K) (Code_Printer.str s_truth)))])) | 
| 55150 | 59 |   #> Code_Target.set_printings (Constant (@{const_name Code_Generator.holds},
 | 
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
52434diff
changeset | 60 | [(target, SOME (Code_Printer.plain_const_syntax s_Holds))])) | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 61 | #> Code_Target.add_reserved target this | 
| 53171 | 62 | #> 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: 
39482diff
changeset | 63 | (*avoid further pervasive infix names*) | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 64 | |
| 40150 | 65 | val trace = Unsynchronized.ref false; | 
| 66 | ||
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 67 | fun exec verbose code = | 
| 40150 | 68 | (if ! trace then tracing code else (); | 
| 40257 | 69 | ML_Context.exec (fn () => Secure.use_text ML_Env.local_context (0, "generated code") verbose code)); | 
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 70 | |
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 71 | 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: 
39816diff
changeset | 72 | let | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 73 | val code = (prelude | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 74 |       ^ "\nval _ = Context.set_thread_data (SOME (Context.map_proof (" ^ put_ml
 | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 75 | ^ " (fn () => " ^ value ^ ")) (ML_Context.the_generic_context ())))"); | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 76 | val ctxt' = ctxt | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 77 |       |> put (fn () => error ("Bad evaluation for " ^ quote put_ml))
 | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 78 | |> Context.proof_map (exec false code); | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 79 | in get ctxt' () end; | 
| 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 80 | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 81 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 82 | (* evaluation into target language values *) | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 83 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 84 | 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: 
39422diff
changeset | 85 | |
| 55757 | 86 | fun reject_vars ctxt t = | 
| 87 | ((Sign.no_frees ctxt o Sign.no_vars ctxt o map_types (K dummyT)) t; t); | |
| 39605 | 88 | |
| 55757 | 89 | fun obtain_evaluator ctxt some_target program consts = | 
| 90 | let | |
| 91 | val evaluator' = Code_Target.evaluator ctxt (the_default target some_target) program consts false; | |
| 92 | in | |
| 93 | evaluator' | |
| 94 | #> apfst (fn ml_modules => space_implode "\n\n" (map snd ml_modules)) | |
| 95 | end; | |
| 39485 
f7270a5e2550
closures preserve static serializer context for static evaluation; tuned
 haftmann parents: 
39482diff
changeset | 96 | |
| 55757 | 97 | fun evaluation cookie ctxt evaluator vs_t args = | 
| 39404 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 98 | let | 
| 41347 
064133cb4ef6
evaluator separating static and dynamic operations
 haftmann parents: 
41343diff
changeset | 99 | val (program_code, value_name) = evaluator vs_t; | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 100 | val value_code = space_implode " " | 
| 41347 
064133cb4ef6
evaluator separating static and dynamic operations
 haftmann parents: 
41343diff
changeset | 101 |       (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: 
40150diff
changeset | 102 | 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: 
39422diff
changeset | 103 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 104 | fun partiality_as_none e = SOME (Exn.release e) | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 105 | handle General.Match => NONE | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 106 | | General.Bind => NONE | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 107 | | General.Fail _ => NONE; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 108 | |
| 55757 | 109 | 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: 
39422diff
changeset | 110 | let | 
| 55757 | 111 | val _ = reject_vars ctxt t; | 
| 41099 | 112 | val _ = if ! trace | 
| 55757 | 113 |       then tracing ("Evaluation of term " ^ quote (Syntax.string_of_term ctxt t))
 | 
| 41099 | 114 | else () | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
53171diff
changeset | 115 | fun evaluator program ((_, vs_ty), t) deps = | 
| 55757 | 116 | evaluation cookie ctxt (obtain_evaluator ctxt some_target program deps) (vs_ty, t) args; | 
| 117 | in Code_Thingol.dynamic_value ctxt (Exn.map_result o postproc) evaluator t end; | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 118 | |
| 55757 | 119 | fun dynamic_value_strict cookie ctxt some_target postproc t args = | 
| 120 | 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: 
39422diff
changeset | 121 | |
| 55757 | 122 | fun dynamic_value cookie ctxt some_target postproc t args = | 
| 123 | 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: 
39422diff
changeset | 124 | |
| 55757 | 125 | fun static_evaluator cookie ctxt some_target program consts' = | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 126 | let | 
| 55757 | 127 | val evaluator = obtain_evaluator ctxt some_target program (map Constant consts'); | 
| 128 | val evaluation' = evaluation cookie ctxt evaluator; | |
| 129 | in fn _ => fn ((_, vs_ty), t) => fn _ => evaluation' (vs_ty, t) [] end; | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 130 | |
| 55757 | 131 | fun static_value_exn cookie ctxt some_target postproc consts = | 
| 132 | let | |
| 133 | val evaluator = Code_Thingol.static_value ctxt (Exn.map_result o postproc) consts | |
| 134 | (static_evaluator cookie ctxt some_target); | |
| 135 | in fn ctxt' => evaluator ctxt' o reject_vars ctxt' end; | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 136 | |
| 55757 | 137 | fun static_value_strict cookie ctxt some_target postproc consts = | 
| 138 | Exn.release oo static_value_exn cookie ctxt some_target postproc consts; | |
| 41347 
064133cb4ef6
evaluator separating static and dynamic operations
 haftmann parents: 
41343diff
changeset | 139 | |
| 
064133cb4ef6
evaluator separating static and dynamic operations
 haftmann parents: 
41343diff
changeset | 140 | fun static_value cookie thy some_target postproc consts = | 
| 55757 | 141 | partiality_as_none oo static_value_exn cookie thy some_target postproc consts; | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 142 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 143 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 144 | (* evaluation for truth or nothing *) | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 145 | |
| 39820 | 146 | structure Truth_Result = Proof_Data | 
| 147 | ( | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 148 | type T = unit -> truth | 
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41376diff
changeset | 149 | (* FIXME avoid user error with non-user text *) | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 150 | fun init _ () = error "Truth_Result" | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 151 | ); | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 152 | val put_truth = Truth_Result.put; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 153 | val truth_cookie = (Truth_Result.get, put_truth, Long_Name.append this "put_truth"); | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 154 | |
| 55757 | 155 | val reject_vars = fn ctxt => tap (reject_vars ctxt o Thm.term_of); | 
| 39605 | 156 | |
| 41349 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 157 | local | 
| 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 158 | |
| 55757 | 159 | fun check_holds ctxt evaluator vs_t ct = | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 160 | let | 
| 55757 | 161 | val thy = Proof_Context.theory_of ctxt; | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 162 | val t = Thm.term_of ct; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 163 | val _ = if fastype_of t <> propT | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 164 |       then error ("Not a proposition: " ^ Syntax.string_of_term_global thy t)
 | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 165 | else (); | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 166 |     val iff = Thm.cterm_of thy (Term.Const ("==", propT --> propT --> propT));
 | 
| 55757 | 167 | val result = case partiality_as_none (evaluation truth_cookie ctxt evaluator vs_t []) | 
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 168 | of SOME Holds => true | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 169 | | _ => false; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 170 | in | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 171 |     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: 
39422diff
changeset | 172 | end; | 
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 173 | |
| 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 174 | val (_, raw_check_holds_oracle) = Context.>>> (Context.map_theory_result | 
| 43619 
3803869014aa
proper @{binding} antiquotations (relevant for formal references);
 wenzelm parents: 
43560diff
changeset | 175 |   (Thm.add_oracle (@{binding holds_by_evaluation},
 | 
| 55757 | 176 | 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: 
39422diff
changeset | 177 | |
| 55757 | 178 | fun check_holds_oracle ctxt evaluator ((_, vs_ty), t) deps ct = | 
| 179 | raw_check_holds_oracle (ctxt, evaluator, (vs_ty, t), ct); | |
| 41349 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 180 | |
| 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 181 | in | 
| 39485 
f7270a5e2550
closures preserve static serializer context for static evaluation; tuned
 haftmann parents: 
39482diff
changeset | 182 | |
| 55757 | 183 | fun dynamic_holds_conv ctxt = Code_Thingol.dynamic_conv ctxt | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
53171diff
changeset | 184 | (fn program => fn vs_t => fn deps => | 
| 55757 | 185 | check_holds_oracle ctxt (obtain_evaluator ctxt NONE program deps) vs_t deps) | 
| 186 | o reject_vars ctxt; | |
| 39473 
33638f4883ac
dynamic and static value computation; built-in evaluation of propositions
 haftmann parents: 
39422diff
changeset | 187 | |
| 55757 | 188 | fun static_holds_conv ctxt consts = | 
| 189 | Code_Thingol.static_conv ctxt consts (fn program => fn consts' => | |
| 190 | let | |
| 191 | val evaluator' = obtain_evaluator ctxt NONE program (map Constant consts') | |
| 192 | in | |
| 193 | fn ctxt' => fn vs_t => fn deps => check_holds_oracle ctxt' evaluator' vs_t deps o reject_vars ctxt' | |
| 194 | end); | |
| 195 | ||
| 196 | (* o reject_vars ctxt'*) | |
| 41349 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 197 | |
| 
0e2a3f22f018
evaluator separating static and dynamic operations
 haftmann parents: 
41348diff
changeset | 198 | end; (*local*) | 
| 39404 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 199 | |
| 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 200 | |
| 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 201 | (** instrumentalization **) | 
| 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 202 | |
| 55757 | 203 | fun evaluation_code ctxt module_name tycos consts = | 
| 33992 | 204 | let | 
| 55757 | 205 | val thy = Proof_Context.theory_of ctxt; | 
| 55188 
7ca0204ece66
reduced prominence of "permissive code generation"
 haftmann parents: 
55150diff
changeset | 206 | val program = Code_Thingol.consts_program thy consts; | 
| 48568 | 207 | val (ml_modules, target_names) = | 
| 55757 | 208 | Code_Target.produce_code_for ctxt | 
| 55683 | 209 | target NONE module_name [] program false (map Constant consts @ map Type_Constructor tycos); | 
| 48568 | 210 | 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: 
53171diff
changeset | 211 | val (consts', tycos') = chop (length consts) target_names; | 
| 42359 | 212 | val consts_map = map2 (fn const => | 
| 213 | fn NONE => | |
| 214 |           error ("Constant " ^ (quote o Code.string_of_const thy) const ^
 | |
| 215 | "\nhas a user-defined serialization") | |
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
53171diff
changeset | 216 | | SOME const' => (const, const')) consts consts' | 
| 42359 | 217 | val tycos_map = map2 (fn tyco => | 
| 218 | fn NONE => | |
| 55304 | 219 |           error ("Type " ^ quote (Proof_Context.markup_type ctxt tyco) ^
 | 
| 42359 | 220 | "\nhas a user-defined serialization") | 
| 55147 
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
 haftmann parents: 
53171diff
changeset | 221 | | SOME tyco' => (tyco, tyco')) tycos tycos'; | 
| 34028 
1e6206763036
split off evaluation mechanisms in separte module Code_Eval
 haftmann parents: 
33992diff
changeset | 222 | in (ml_code, (tycos_map, consts_map)) end; | 
| 28054 | 223 | |
| 224 | ||
| 39404 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 225 | (* by antiquotation *) | 
| 28054 | 226 | |
| 227 | local | |
| 228 | ||
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 229 | structure Code_Antiq_Data = Proof_Data | 
| 28054 | 230 | ( | 
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 231 | type T = (string list * string list) * (bool | 
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 232 | * (string * (string * string) list) lazy); | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 233 |   fun init _ = (([], []), (true, (Lazy.value ("", []))));
 | 
| 28054 | 234 | ); | 
| 235 | ||
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 236 | val is_first_occ = fst o snd o Code_Antiq_Data.get; | 
| 28054 | 237 | |
| 30962 | 238 | fun register_code new_tycos new_consts ctxt = | 
| 28054 | 239 | let | 
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 240 | val ((tycos, consts), _) = Code_Antiq_Data.get ctxt; | 
| 30962 | 241 | val tycos' = fold (insert (op =)) new_tycos tycos; | 
| 242 | val consts' = fold (insert (op =)) new_consts consts; | |
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 243 | val acc_code = Lazy.lazy (fn () => | 
| 55757 | 244 | evaluation_code ctxt structure_generated tycos' consts' | 
| 40422 
d425d1ed82af
corrected slip: must keep constant map, not type map; tuned code
 haftmann parents: 
40421diff
changeset | 245 | |> apsnd snd); | 
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 246 | in Code_Antiq_Data.put ((tycos', consts'), (false, acc_code)) ctxt end; | 
| 30962 | 247 | |
| 248 | fun register_const const = register_code [] [const]; | |
| 28054 | 249 | |
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 250 | fun print_code is_first const ctxt = | 
| 30962 | 251 | let | 
| 38930 
072363be3fd9
modernized; avoid pointless tinkering with structure names
 haftmann parents: 
38929diff
changeset | 252 | val (_, (_, acc_code)) = Code_Antiq_Data.get ctxt; | 
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 253 | val (ml_code, consts_map) = Lazy.force acc_code; | 
| 40422 
d425d1ed82af
corrected slip: must keep constant map, not type map; tuned code
 haftmann parents: 
40421diff
changeset | 254 | val ml_code = if is_first then ml_code else ""; | 
| 41486 
82c1e348bc18
reverted 08240feb69c7 -- breaks positions of reports;
 wenzelm parents: 
41472diff
changeset | 255 | val body = "Isabelle." ^ the (AList.lookup (op =) consts_map const); | 
| 41376 
08240feb69c7
more robust ML antiquotations -- allow original tokens without adjacent whitespace;
 wenzelm parents: 
41349diff
changeset | 256 | in (ml_code, body) end; | 
| 28054 | 257 | |
| 258 | in | |
| 259 | ||
| 53169 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 260 | fun ml_code_antiq context raw_const = | 
| 28054 | 261 | let | 
| 53169 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 262 | val ctxt = Context.the_proof context; | 
| 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 263 | 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: 
52435diff
changeset | 264 | |
| 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 265 | val const = Code.check_const thy raw_const; | 
| 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 266 | val is_first = is_first_occ ctxt; | 
| 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 267 | val ctxt' = register_const const ctxt; | 
| 
e2d31807cbf6
clarified type ML_Context.antiq: context parser maintains compilation context, declaration is applied to final context;
 wenzelm parents: 
52435diff
changeset | 268 | in (Context.Proof ctxt', print_code is_first const) end; | 
| 30962 | 269 | |
| 28054 | 270 | end; (*local*) | 
| 271 | ||
| 272 | ||
| 39404 
a8c337299bc1
Code_Runtime.value, corresponding to ML_Context.value; tuned
 haftmann parents: 
39401diff
changeset | 273 | (* reflection support *) | 
| 36470 | 274 | |
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 275 | fun check_datatype thy tyco some_consts = | 
| 36470 | 276 | let | 
| 40726 
16dcfedc4eb7
keep type variable arguments of datatype constructors in bookkeeping
 haftmann parents: 
40711diff
changeset | 277 | val constrs = (map fst o snd o fst o Code.get_type thy) tyco; | 
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 278 | val _ = case some_consts | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 279 | of SOME consts => | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 280 | let | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 281 | val missing_constrs = subtract (op =) consts constrs; | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 282 | val _ = if null missing_constrs then [] | 
| 45430 | 283 |               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: 
40320diff
changeset | 284 | ^ " for datatype " ^ quote tyco); | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 285 | val false_constrs = subtract (op =) constrs consts; | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 286 | val _ = if null false_constrs then [] | 
| 45430 | 287 |               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: 
40320diff
changeset | 288 | ^ " for datatype " ^ quote tyco) | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 289 | in () end | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 290 | | NONE => (); | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 291 | in (tyco, constrs) end; | 
| 36470 | 292 | |
| 293 | fun add_eval_tyco (tyco, tyco') thy = | |
| 294 | let | |
| 295 | val k = Sign.arity_number thy tyco; | |
| 40421 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 296 | fun pr pr' _ [] = tyco' | 
| 
b41aabb629ce
constructors to datatypes in code_reflect can be globbed; dropped unused code
 haftmann parents: 
40320diff
changeset | 297 | | pr pr' _ [ty] = | 
| 36470 | 298 | 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: 
40320diff
changeset | 299 | | pr pr' _ tys = | 
| 36470 | 300 |           Code_Printer.concat [Code_Printer.enum "," "(" ")" (map (pr' Code_Printer.BR) tys), tyco']
 | 
| 301 | in | |
| 302 | thy | |
| 55150 | 303 | |> Code_Target.set_printings (Type_Constructor (tyco, [(target, SOME (k, pr))])) | 
| 36470 | 304 | end; | 
| 305 | ||
| 36514 | 306 | fun add_eval_constr (const, const') thy = | 
| 307 | let | |
| 308 | val k = Code.args_number thy const; | |
| 309 | fun pr pr' fxy ts = Code_Printer.brackify fxy | |
| 38922 | 310 | (const' :: the_list (Code_Printer.tuplify pr' Code_Printer.BR (map fst ts))); | 
| 36514 | 311 | in | 
| 312 | thy | |
| 55150 | 313 | |> 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: 
52434diff
changeset | 314 | [(target, SOME (Code_Printer.simple_const_syntax (k, pr)))])) | 
| 36514 | 315 | end; | 
| 316 | ||
| 55150 | 317 | 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: 
52434diff
changeset | 318 | (const, [(target, SOME (Code_Printer.simple_const_syntax (0, (K o K o K) const')))])); | 
| 36470 | 319 | |
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 320 | 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: 
38933diff
changeset | 321 | thy | 
| 
2cf3d8305b47
corrected misbehaved additional qualification of generated names
 haftmann parents: 
38933diff
changeset | 322 | |> Code_Target.add_reserved target module_name | 
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 323 | |> Context.theory_map (exec true code) | 
| 38935 
2cf3d8305b47
corrected misbehaved additional qualification of generated names
 haftmann parents: 
38933diff
changeset | 324 | |> fold (add_eval_tyco o apsnd Code_Printer.str) tyco_map | 
| 
2cf3d8305b47
corrected misbehaved additional qualification of generated names
 haftmann parents: 
38933diff
changeset | 325 | |> fold (add_eval_constr o apsnd Code_Printer.str) constr_map | 
| 
2cf3d8305b47
corrected misbehaved additional qualification of generated names
 haftmann parents: 
38933diff
changeset | 326 | |> 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: 
39816diff
changeset | 327 | | process_reflection (code, _) _ (SOME file_name) thy = | 
| 36470 | 328 | let | 
| 37950 
bc285d91041e
moved basic thy file name operations from Thy_Load to Thy_Header;
 wenzelm parents: 
37744diff
changeset | 329 | val preamble = | 
| 46737 | 330 | "(* Generated from " ^ | 
| 331 | Path.implode (Thy_Load.thy_path (Path.basic (Context.theory_name thy))) ^ | |
| 332 | "; DO NOT EDIT! *)"; | |
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 333 | val _ = File.write (Path.explode file_name) (preamble ^ "\n\n" ^ code); | 
| 36470 | 334 | in | 
| 335 | thy | |
| 336 | end; | |
| 337 | ||
| 338 | fun gen_code_reflect prep_type prep_const raw_datatypes raw_functions module_name some_file thy = | |
| 339 | let | |
| 55757 | 340 | val ctxt = Proof_Context.init_global thy; | 
| 36470 | 341 | val datatypes = map (fn (raw_tyco, raw_cos) => | 
| 55757 | 342 | (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: 
40320diff
changeset | 343 | 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: 
40320diff
changeset | 344 | |> apsnd flat; | 
| 36470 | 345 | val functions = map (prep_const thy) raw_functions; | 
| 55757 | 346 | val result = evaluation_code ctxt module_name tycos (constrs @ functions) | 
| 36514 | 347 | |> (apsnd o apsnd) (chop (length constrs)); | 
| 36470 | 348 | in | 
| 349 | thy | |
| 39485 
f7270a5e2550
closures preserve static serializer context for static evaluation; tuned
 haftmann parents: 
39482diff
changeset | 350 | |> process_reflection result module_name some_file | 
| 36470 | 351 | end; | 
| 352 | ||
| 39422 | 353 | val code_reflect = gen_code_reflect Code_Target.cert_tyco (K I); | 
| 36470 | 354 | val code_reflect_cmd = gen_code_reflect Code_Target.read_tyco Code.read_const; | 
| 355 | ||
| 356 | ||
| 28054 | 357 | (** Isar setup **) | 
| 358 | ||
| 53171 | 359 | val _ = Theory.setup | 
| 360 |   (ML_Context.add_antiq @{binding code}
 | |
| 361 | (Scan.depend (fn context => Scan.pass context Args.term >> ml_code_antiq context))); | |
| 28054 | 362 | |
| 36470 | 363 | local | 
| 364 | ||
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36610diff
changeset | 365 | val parse_datatype = | 
| 46949 | 366 |   Parse.name --| @{keyword "="} --
 | 
| 40711 
81bc73585eec
globbing constant expressions use more idiomatic underscore rather than star
 haftmann parents: 
40422diff
changeset | 367 | (((Parse.sym_ident || Parse.string) >> (fn "_" => NONE | _ => Scan.fail ())) | 
| 46949 | 368 |     || ((Parse.term ::: (Scan.repeat (@{keyword "|"} |-- Parse.term))) >> SOME));
 | 
| 36470 | 369 | |
| 370 | in | |
| 371 | ||
| 372 | val _ = | |
| 46961 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 wenzelm parents: 
46949diff
changeset | 373 |   Outer_Syntax.command @{command_spec "code_reflect"}
 | 
| 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 wenzelm parents: 
46949diff
changeset | 374 | "enrich runtime environment with generated code" | 
| 52434 | 375 |     (Parse.name -- Scan.optional (@{keyword "datatypes"} |-- Parse.!!!  (parse_datatype
 | 
| 46949 | 376 |       ::: Scan.repeat (@{keyword "and"} |-- parse_datatype))) []
 | 
| 52434 | 377 |     -- Scan.optional (@{keyword "functions"} |-- Parse.!!!  (Scan.repeat1 Parse.name)) []
 | 
| 378 |     -- 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: 
46949diff
changeset | 379 | >> (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: 
46949diff
changeset | 380 | (code_reflect_cmd raw_datatypes raw_functions module_name some_file))); | 
| 36470 | 381 | |
| 382 | end; (*local*) | |
| 383 | ||
| 39816 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 384 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 385 | (** 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: 
39605diff
changeset | 386 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 387 | local | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 388 | |
| 39820 | 389 | structure Loaded_Values = Theory_Data | 
| 390 | ( | |
| 39816 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 391 | type T = string list | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 392 | val empty = [] | 
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41376diff
changeset | 393 | val extend = I | 
| 39820 | 394 | 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: 
39605diff
changeset | 395 | ); | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 396 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 397 | fun notify_val (string, value) = | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 398 | let | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 399 | val _ = #enterVal ML_Env.name_space (string, value); | 
| 53171 | 400 | 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: 
39605diff
changeset | 401 | in () end; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 402 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 403 | 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: 
39605diff
changeset | 404 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 405 | val notifying_context : use_context = | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 406 |  {tune_source = #tune_source ML_Env.local_context,
 | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 407 | name_space = | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 408 |    {lookupVal    = #lookupVal ML_Env.name_space,
 | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 409 | lookupType = #lookupType ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 410 | lookupFix = #lookupFix ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 411 | lookupStruct = #lookupStruct ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 412 | lookupSig = #lookupSig ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 413 | lookupFunct = #lookupFunct ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 414 | enterVal = notify_val, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 415 | enterType = abort, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 416 | enterFix = abort, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 417 | enterStruct = abort, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 418 | enterSig = abort, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 419 | enterFunct = abort, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 420 | allVal = #allVal ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 421 | allType = #allType ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 422 | allFix = #allFix ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 423 | allStruct = #allStruct ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 424 | allSig = #allSig ML_Env.name_space, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 425 | allFunct = #allFunct ML_Env.name_space}, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 426 | str_of_pos = #str_of_pos ML_Env.local_context, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 427 | print = #print ML_Env.local_context, | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 428 | error = #error ML_Env.local_context}; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 429 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 430 | in | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 431 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 432 | fun use_file filepath thy = | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 433 | let | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 434 | val thy' = Loaded_Values.put [] thy; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 435 | val _ = Context.set_thread_data ((SOME o Context.Theory) thy'); | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 436 | val _ = Secure.use_text notifying_context | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 437 | (0, Path.implode filepath) false (File.read filepath); | 
| 45268 | 438 | val thy'' = Context.the_theory (Context.the_thread_data ()); | 
| 39912 
2ffe7060ca75
avoid antiquotation processing for code_reflect; moved ML_Context.value to Code_Runtime
 haftmann parents: 
39816diff
changeset | 439 | val names = Loaded_Values.get thy''; | 
| 40320 
abc52faa7761
polyml_as_definition does not require explicit dependencies on external ML files
 haftmann parents: 
40257diff
changeset | 440 | in (names, thy'') end; | 
| 39816 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 441 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 442 | end; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 443 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 444 | 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: 
39605diff
changeset | 445 | thy | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 446 | |> Code_Target.add_reserved target ml_name | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 447 | |> Specification.axiomatization [(b, SOME T, NoSyn)] [] | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 448 | |-> (fn ([Const (const, _)], _) => | 
| 55150 | 449 | 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: 
52434diff
changeset | 450 | [(target, SOME (Code_Printer.simple_const_syntax (0, (K o K o K o Code_Printer.str) ml_name)))])) | 
| 55757 | 451 | #> tap (fn thy => Code_Target.produce_code (Proof_Context.init_global thy) false [const] target NONE structure_generated [])); | 
| 39816 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 452 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 453 | 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: 
39605diff
changeset | 454 | let | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 455 | 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: 
39605diff
changeset | 456 | 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: 
39605diff
changeset | 457 | val _ = if null superfluous then () | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 458 |       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: 
41486diff
changeset | 459 | ^ " 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: 
39605diff
changeset | 460 | ^ " 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: 
39605diff
changeset | 461 | 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: 
39605diff
changeset | 462 | 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: 
39605diff
changeset | 463 | 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: 
39605diff
changeset | 464 | in (definienda', thy'') end; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 465 | |
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 466 | 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: 
39605diff
changeset | 467 | let | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 468 | 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: 
39605diff
changeset | 469 | 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: 
39605diff
changeset | 470 | val _ = if null remaining then () | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 471 |       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: 
39605diff
changeset | 472 | ^ " 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: 
39605diff
changeset | 473 | in thy' end; | 
| 
c7cec137c48a
added polyml_as_definition -- using external SML files as substitute for proper definitions -- only for polyml!
 haftmann parents: 
39605diff
changeset | 474 | |
| 28054 | 475 | end; (*struct*) |