| author | wenzelm | 
| Mon, 24 May 2010 23:01:51 +0200 | |
| changeset 37072 | 9105c8237c7a | 
| parent 36982 | 1d4478a797c2 | 
| child 37145 | 01aa36932739 | 
| permissions | -rw-r--r-- | 
| 24590 | 1 | (* Title: Tools/nbe.ML | 
| 24155 | 2 | Authors: Klaus Aehlig, LMU Muenchen; Tobias Nipkow, Florian Haftmann, TU Muenchen | 
| 3 | ||
| 24839 | 4 | Normalization by evaluation, based on generic code generator. | 
| 24155 | 5 | *) | 
| 6 | ||
| 7 | signature NBE = | |
| 8 | sig | |
| 25101 | 9 | val norm_conv: cterm -> thm | 
| 30970 
3fe2e418a071
generic postprocessing scheme for term evaluations
 haftmann parents: 
30947diff
changeset | 10 | val norm: theory -> term -> term | 
| 25101 | 11 | |
| 25204 | 12 | datatype Univ = | 
| 26064 | 13 | Const of int * Univ list (*named (uninterpreted) constants*) | 
| 25924 | 14 | | DFree of string * int (*free (uninterpreted) dictionary parameters*) | 
| 24155 | 15 | | BVar of int * Univ list | 
| 28350 | 16 | | Abs of (int * (Univ list -> Univ)) * Univ list | 
| 25924 | 17 | val apps: Univ -> Univ list -> Univ (*explicit applications*) | 
| 25944 | 18 | val abss: int -> (Univ list -> Univ) -> Univ | 
| 28337 | 19 | (*abstractions as closures*) | 
| 28350 | 20 | val same: Univ -> Univ -> bool | 
| 24155 | 21 | |
| 32740 | 22 | val univs_ref: (unit -> Univ list -> Univ list) option Unsynchronized.ref | 
| 23 | val trace: bool Unsynchronized.ref | |
| 25924 | 24 | |
| 26747 
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
 haftmann parents: 
26739diff
changeset | 25 | val setup: theory -> theory | 
| 32544 | 26 | val add_const_alias: thm -> theory -> theory | 
| 24155 | 27 | end; | 
| 28 | ||
| 29 | structure Nbe: NBE = | |
| 30 | struct | |
| 31 | ||
| 32 | (* generic non-sense *) | |
| 33 | ||
| 32740 | 34 | val trace = Unsynchronized.ref false; | 
| 32544 | 35 | fun traced f x = if !trace then (tracing (f x); x) else x; | 
| 24155 | 36 | |
| 37 | ||
| 32544 | 38 | (** certificates and oracle for "trivial type classes" **) | 
| 39 | ||
| 33522 | 40 | structure Triv_Class_Data = Theory_Data | 
| 32544 | 41 | ( | 
| 42 | type T = (class * thm) list; | |
| 43 | val empty = []; | |
| 44 | val extend = I; | |
| 33522 | 45 | fun merge data : T = AList.merge (op =) (K true) data; | 
| 32544 | 46 | ); | 
| 47 | ||
| 48 | fun add_const_alias thm thy = | |
| 49 | let | |
| 50 | val (ofclass, eqn) = case try Logic.dest_equals (Thm.prop_of thm) | |
| 51 | of SOME ofclass_eq => ofclass_eq | |
| 52 |       | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
 | |
| 53 | val (T, class) = case try Logic.dest_of_class ofclass | |
| 54 | of SOME T_class => T_class | |
| 55 |       | _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm);
 | |
| 56 | val tvar = case try Term.dest_TVar T | |
| 57 | of SOME (tvar as (_, sort)) => if null (filter (can (AxClass.get_info thy)) sort) | |
| 58 | then tvar | |
| 59 |           else error ("Bad sort: " ^ Display.string_of_thm_global thy thm)
 | |
| 60 |       | _ => error ("Bad type: " ^ Display.string_of_thm_global thy thm);
 | |
| 61 | val _ = if Term.add_tvars eqn [] = [tvar] then () | |
| 62 |       else error ("Inconsistent type: " ^ Display.string_of_thm_global thy thm);
 | |
| 63 | val lhs_rhs = case try Logic.dest_equals eqn | |
| 64 | of SOME lhs_rhs => lhs_rhs | |
| 65 |       | _ => error ("Not an equation: " ^ Syntax.string_of_term_global thy eqn);
 | |
| 66 | val c_c' = case try (pairself (Code.check_const thy)) lhs_rhs | |
| 67 | of SOME c_c' => c_c' | |
| 68 |       | _ => error ("Not an equation with two constants: "
 | |
| 69 | ^ Syntax.string_of_term_global thy eqn); | |
| 70 | val _ = if the_list (AxClass.class_of_param thy (snd c_c')) = [class] then () | |
| 71 |       else error ("Inconsistent class: " ^ Display.string_of_thm_global thy thm);
 | |
| 72 | in Triv_Class_Data.map (AList.update (op =) (class, thm)) thy end; | |
| 73 | ||
| 74 | local | |
| 75 | ||
| 76 | val get_triv_classes = map fst o Triv_Class_Data.get; | |
| 77 | ||
| 78 | val (_, triv_of_class) = Context.>>> (Context.map_theory_result | |
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 79 | (Thm.add_oracle (Binding.name "triv_of_class", fn (thy, T, class) => | 
| 32544 | 80 | Thm.cterm_of thy (Logic.mk_of_class (T, class))))); | 
| 81 | ||
| 82 | in | |
| 83 | ||
| 84 | fun lift_triv_classes_conv thy conv ct = | |
| 85 | let | |
| 86 | val algebra = Sign.classes_of thy; | |
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 87 | val certT = Thm.ctyp_of thy; | 
| 32544 | 88 | val triv_classes = get_triv_classes thy; | 
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 89 | fun additional_classes sort = filter_out (fn class => Sorts.sort_le algebra (sort, [class])) triv_classes; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 90 | fun mk_entry (v, sort) = | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 91 | let | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 92 | val T = TFree (v, sort); | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 93 | val cT = certT T; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 94 | val triv_sort = additional_classes sort; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 95 | in | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 96 | (v, (Sorts.inter_sort algebra (sort, triv_sort), | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 97 | (cT, AList.make (fn class => Thm.of_class (cT, class)) sort | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 98 | @ AList.make (fn class => triv_of_class (thy, T, class)) triv_sort))) | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 99 | end; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 100 | val vs_tab = map mk_entry (Term.add_tfrees (Thm.term_of ct) []); | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 101 | fun instantiate thm = | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 102 | let | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 103 | val cert_tvars = map (certT o TVar) (Term.add_tvars | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 104 | ((fst o Logic.dest_equals o Logic.strip_imp_concl o Thm.prop_of) thm) []); | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 105 | val instantiation = | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 106 | map2 (fn cert_tvar => fn (_, (_, (cT, _))) => (cert_tvar, cT)) cert_tvars vs_tab; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 107 | in Thm.instantiate (instantiation, []) thm end; | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 108 | fun of_class (TFree (v, _), class) = | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 109 | the (AList.lookup (op =) ((snd o snd o the o AList.lookup (op =) vs_tab) v) class) | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 110 |       | of_class (T, _) = error ("Bad type " ^ Syntax.string_of_typ_global thy T);
 | 
| 32544 | 111 | fun strip_of_class thm = | 
| 112 | let | |
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 113 | val prems_of_class = Thm.prop_of thm | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 114 | |> Logic.strip_imp_prems | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 115 | |> map (Logic.dest_of_class #> of_class); | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 116 | in fold Thm.elim_implies prems_of_class thm end; | 
| 36770 
c3a04614c710
reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
 wenzelm parents: 
36768diff
changeset | 117 | in | 
| 
c3a04614c710
reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
 wenzelm parents: 
36768diff
changeset | 118 | ct | 
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 119 | |> (Drule.cterm_fun o map_types o map_type_tfree) | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 120 | (fn (v, sort) => TFree (v, (fst o the o AList.lookup (op =) vs_tab) v)) | 
| 32544 | 121 | |> conv | 
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 122 | |> Thm.strip_shyps | 
| 35845 
e5980f0ad025
renamed varify/unvarify operations to varify_global/unvarify_global to emphasize that these only work in a global situation;
 wenzelm parents: 
35500diff
changeset | 123 | |> Thm.varifyT_global | 
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 124 | |> Thm.unconstrainT | 
| 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 125 | |> instantiate | 
| 32544 | 126 | |> strip_of_class | 
| 127 | end; | |
| 128 | ||
| 129 | fun lift_triv_classes_rew thy rew t = | |
| 130 | let | |
| 131 | val algebra = Sign.classes_of thy; | |
| 132 | val triv_classes = get_triv_classes thy; | |
| 133 | val vs = Term.add_tfrees t []; | |
| 134 | in t | |
| 135 | |> (map_types o map_type_tfree) | |
| 136 | (fn (v, sort) => TFree (v, Sorts.inter_sort algebra (sort, triv_classes))) | |
| 137 | |> rew | |
| 138 | |> (map_types o map_type_tfree) | |
| 139 | (fn (v, _) => TFree (v, the (AList.lookup (op =) vs v))) | |
| 140 | end; | |
| 141 | ||
| 142 | end; | |
| 143 | ||
| 144 | ||
| 145 | (** the semantic universe **) | |
| 24155 | 146 | |
| 147 | (* | |
| 148 | Functions are given by their semantical function value. To avoid | |
| 149 | trouble with the ML-type system, these functions have the most | |
| 150 | generic type, that is "Univ list -> Univ". The calling convention is | |
| 151 | that the arguments come as a list, the last argument first. In | |
| 152 | other words, a function call that usually would look like | |
| 153 | ||
| 154 | f x_1 x_2 ... x_n or f(x_1,x_2, ..., x_n) | |
| 155 | ||
| 156 | would be in our convention called as | |
| 157 | ||
| 158 | f [x_n,..,x_2,x_1] | |
| 159 | ||
| 160 | Moreover, to handle functions that are still waiting for some | |
| 161 | arguments we have additionally a list of arguments collected to far | |
| 162 | and the number of arguments we're still waiting for. | |
| 163 | *) | |
| 164 | ||
| 25204 | 165 | datatype Univ = | 
| 26064 | 166 | Const of int * Univ list (*named (uninterpreted) constants*) | 
| 25924 | 167 | | DFree of string * int (*free (uninterpreted) dictionary parameters*) | 
| 27499 | 168 | | BVar of int * Univ list (*bound variables, named*) | 
| 24155 | 169 | | Abs of (int * (Univ list -> Univ)) * Univ list | 
| 27499 | 170 | (*abstractions as closures*); | 
| 24155 | 171 | |
| 28350 | 172 | fun same (Const (k, xs)) (Const (l, ys)) = k = l andalso sames xs ys | 
| 173 | | same (DFree (s, k)) (DFree (t, l)) = s = t andalso k = l | |
| 174 | | same (BVar (k, xs)) (BVar (l, ys)) = k = l andalso sames xs ys | |
| 175 | | same _ _ = false | |
| 176 | and sames xs ys = length xs = length ys andalso forall (uncurry same) (xs ~~ ys); | |
| 177 | ||
| 35371 | 178 | |
| 24155 | 179 | (* constructor functions *) | 
| 180 | ||
| 25944 | 181 | fun abss n f = Abs ((n, f), []); | 
| 25924 | 182 | fun apps (Abs ((n, f), xs)) ys = let val k = n - length ys in | 
| 27499 | 183 | case int_ord (k, 0) | 
| 184 | of EQUAL => f (ys @ xs) | |
| 185 | | LESS => let val (zs, ws) = chop (~ k) ys in apps (f (ws @ xs)) zs end | |
| 186 | | GREATER => Abs ((k, f), ys @ xs) (*note: reverse convention also for apps!*) | |
| 187 | end | |
| 25924 | 188 | | apps (Const (name, xs)) ys = Const (name, ys @ xs) | 
| 27499 | 189 | | apps (BVar (n, xs)) ys = BVar (n, ys @ xs); | 
| 24155 | 190 | |
| 191 | ||
| 192 | (** assembling and compiling ML code from terms **) | |
| 193 | ||
| 194 | (* abstract ML syntax *) | |
| 195 | ||
| 196 | infix 9 `$` `$$`; | |
| 197 | fun e1 `$` e2 = "(" ^ e1 ^ " " ^ e2 ^ ")";
 | |
| 25101 | 198 | fun e `$$` [] = e | 
| 199 |   | e `$$` es = "(" ^ e ^ " " ^ space_implode " " es ^ ")";
 | |
| 24590 | 200 | fun ml_abs v e = "(fn " ^ v ^ " => " ^ e ^ ")"; | 
| 24155 | 201 | |
| 202 | fun ml_cases t cs = | |
| 203 | "(case " ^ t ^ " of " ^ space_implode " | " (map (fn (p, t) => p ^ " => " ^ t) cs) ^ ")"; | |
| 25944 | 204 | fun ml_Let d e = "let\n" ^ d ^ " in " ^ e ^ " end"; | 
| 28337 | 205 | fun ml_as v t = "(" ^ v ^ " as " ^ t ^ ")";
 | 
| 24155 | 206 | |
| 28350 | 207 | fun ml_and [] = "true" | 
| 208 | | ml_and [x] = x | |
| 209 |   | ml_and xs = "(" ^ space_implode " andalso " xs ^ ")";
 | |
| 210 | fun ml_if b x y = "(if " ^ b ^ " then " ^ x ^ " else " ^ y ^ ")"; | |
| 211 | ||
| 24155 | 212 | fun ml_list es = "[" ^ commas es ^ "]"; | 
| 213 | ||
| 214 | fun ml_fundefs ([(name, [([], e)])]) = | |
| 215 | "val " ^ name ^ " = " ^ e ^ "\n" | |
| 216 | | ml_fundefs (eqs :: eqss) = | |
| 217 | let | |
| 218 | fun fundef (name, eqs) = | |
| 219 | let | |
| 220 | fun eqn (es, e) = name ^ " " ^ space_implode " " es ^ " = " ^ e | |
| 221 | in space_implode "\n | " (map eqn eqs) end; | |
| 222 | in | |
| 223 | (prefix "fun " o fundef) eqs :: map (prefix "and " o fundef) eqss | |
| 26931 | 224 | |> cat_lines | 
| 24155 | 225 | |> suffix "\n" | 
| 226 | end; | |
| 227 | ||
| 35371 | 228 | |
| 25944 | 229 | (* nbe specific syntax and sandbox communication *) | 
| 230 | ||
| 32740 | 231 | val univs_ref = Unsynchronized.ref (NONE : (unit -> Univ list -> Univ list) option); | 
| 24155 | 232 | |
| 233 | local | |
| 28350 | 234 | val prefix = "Nbe."; | 
| 235 | val name_ref = prefix ^ "univs_ref"; | |
| 236 | val name_const = prefix ^ "Const"; | |
| 237 | val name_abss = prefix ^ "abss"; | |
| 238 | val name_apps = prefix ^ "apps"; | |
| 239 | val name_same = prefix ^ "same"; | |
| 24155 | 240 | in | 
| 241 | ||
| 25944 | 242 | val univs_cookie = (name_ref, univs_ref); | 
| 243 | ||
| 28337 | 244 | fun nbe_fun 0 "" = "nbe_value" | 
| 245 | | nbe_fun i c = "c_" ^ translate_string (fn "." => "_" | c => c) c ^ "_" ^ string_of_int i; | |
| 25101 | 246 | fun nbe_dict v n = "d_" ^ v ^ "_" ^ string_of_int n; | 
| 24155 | 247 | fun nbe_bound v = "v_" ^ v; | 
| 31888 | 248 | fun nbe_bound_optional NONE = "_" | 
| 35500 | 249 | | nbe_bound_optional (SOME v) = nbe_bound v; | 
| 28337 | 250 | fun nbe_default v = "w_" ^ v; | 
| 24155 | 251 | |
| 25924 | 252 | (*note: these three are the "turning spots" where proper argument order is established!*) | 
| 253 | fun nbe_apps t [] = t | |
| 254 | | nbe_apps t ts = name_apps `$$` [t, ml_list (rev ts)]; | |
| 28337 | 255 | fun nbe_apps_local i c ts = nbe_fun i c `$` ml_list (rev ts); | 
| 256 | fun nbe_apps_constr idx_of c ts = | |
| 257 | let | |
| 258 | val c' = if !trace then string_of_int (idx_of c) ^ " (*" ^ c ^ "*)" | |
| 259 | else string_of_int (idx_of c); | |
| 260 |   in name_const `$` ("(" ^ c' ^ ", " ^ ml_list (rev ts) ^ ")") end;
 | |
| 25924 | 261 | |
| 24155 | 262 | fun nbe_abss 0 f = f `$` ml_list [] | 
| 25944 | 263 | | nbe_abss n f = name_abss `$$` [string_of_int n, f]; | 
| 24155 | 264 | |
| 28350 | 265 | fun nbe_same v1 v2 = "(" ^ name_same ^ " " ^ nbe_bound v1 ^ " " ^ nbe_bound v2 ^ ")";
 | 
| 266 | ||
| 24155 | 267 | end; | 
| 268 | ||
| 28054 | 269 | open Basic_Code_Thingol; | 
| 24155 | 270 | |
| 35371 | 271 | |
| 25865 | 272 | (* code generation *) | 
| 24155 | 273 | |
| 26064 | 274 | fun assemble_eqnss idx_of deps eqnss = | 
| 25944 | 275 | let | 
| 276 | fun prep_eqns (c, (vs, eqns)) = | |
| 25924 | 277 | let | 
| 25944 | 278 | val dicts = maps (fn (v, sort) => map_index (nbe_dict v o fst) sort) vs; | 
| 28337 | 279 | val num_args = length dicts + ((length o fst o hd) eqns); | 
| 25944 | 280 | in (c, (num_args, (dicts, eqns))) end; | 
| 281 | val eqnss' = map prep_eqns eqnss; | |
| 282 | ||
| 283 | fun assemble_constapp c dss ts = | |
| 284 | let | |
| 285 | val ts' = (maps o map) assemble_idict dss @ ts; | |
| 286 | in case AList.lookup (op =) eqnss' c | |
| 28337 | 287 | of SOME (num_args, _) => if num_args <= length ts' | 
| 288 | then let val (ts1, ts2) = chop num_args ts' | |
| 289 | in nbe_apps (nbe_apps_local 0 c ts1) ts2 | |
| 290 | end else nbe_apps (nbe_abss num_args (nbe_fun 0 c)) ts' | |
| 25944 | 291 | | NONE => if member (op =) deps c | 
| 28337 | 292 | then nbe_apps (nbe_fun 0 c) ts' | 
| 293 | else nbe_apps_constr idx_of c ts' | |
| 25924 | 294 | end | 
| 25944 | 295 | and assemble_idict (DictConst (inst, dss)) = | 
| 296 | assemble_constapp inst dss [] | |
| 297 | | assemble_idict (DictVar (supers, (v, (n, _)))) = | |
| 298 | fold_rev (fn super => assemble_constapp super [] o single) supers (nbe_dict v n); | |
| 25924 | 299 | |
| 28350 | 300 | fun assemble_iterm constapp = | 
| 24155 | 301 | let | 
| 28350 | 302 | fun of_iterm match_cont t = | 
| 25944 | 303 | let | 
| 28054 | 304 | val (t', ts) = Code_Thingol.unfold_app t | 
| 28350 | 305 | in of_iapp match_cont t' (fold_rev (cons o of_iterm NONE) ts []) end | 
| 31049 | 306 | and of_iapp match_cont (IConst (c, ((_, dss), _))) ts = constapp c dss ts | 
| 31889 | 307 | | of_iapp match_cont (IVar v) ts = nbe_apps (nbe_bound_optional v) ts | 
| 31724 | 308 | | of_iapp match_cont ((v, _) `|=> t) ts = | 
| 31888 | 309 | nbe_apps (nbe_abss 1 (ml_abs (ml_list [nbe_bound_optional v]) (of_iterm NONE t))) ts | 
| 28350 | 310 | | of_iapp match_cont (ICase (((t, _), cs), t0)) ts = | 
| 311 | nbe_apps (ml_cases (of_iterm NONE t) | |
| 312 | (map (fn (p, t) => (of_iterm NONE p, of_iterm match_cont t)) cs | |
| 313 |                   @ [("_", case match_cont of SOME s => s | NONE => of_iterm NONE t0)])) ts
 | |
| 25944 | 314 | in of_iterm end; | 
| 24155 | 315 | |
| 28350 | 316 | fun subst_nonlin_vars args = | 
| 317 | let | |
| 318 | val vs = (fold o Code_Thingol.fold_varnames) | |
| 33002 | 319 | (fn v => AList.map_default (op =) (v, 0) (Integer.add 1)) args []; | 
| 28350 | 320 | val names = Name.make_context (map fst vs); | 
| 321 | fun declare v k ctxt = let val vs = Name.invents ctxt v k | |
| 322 | in (vs, fold Name.declare vs ctxt) end; | |
| 323 | val (vs_renames, _) = fold_map (fn (v, k) => if k > 1 | |
| 324 | then declare v (k - 1) #>> (fn vs => (v, vs)) | |
| 325 | else pair (v, [])) vs names; | |
| 326 | val samepairs = maps (fn (v, vs) => map (pair v) vs) vs_renames; | |
| 327 | fun subst_vars (t as IConst _) samepairs = (t, samepairs) | |
| 31889 | 328 | | subst_vars (t as IVar NONE) samepairs = (t, samepairs) | 
| 329 | | subst_vars (t as IVar (SOME v)) samepairs = (case AList.lookup (op =) samepairs v | |
| 330 | of SOME v' => (IVar (SOME v'), AList.delete (op =) v samepairs) | |
| 28350 | 331 | | NONE => (t, samepairs)) | 
| 332 | | subst_vars (t1 `$ t2) samepairs = samepairs | |
| 333 | |> subst_vars t1 | |
| 334 | ||>> subst_vars t2 | |
| 335 | |>> (op `$) | |
| 336 | | subst_vars (ICase (_, t)) samepairs = subst_vars t samepairs; | |
| 337 | val (args', _) = fold_map subst_vars args samepairs; | |
| 338 | in (samepairs, args') end; | |
| 339 | ||
| 28337 | 340 | fun assemble_eqn c dicts default_args (i, (args, rhs)) = | 
| 341 | let | |
| 342 | val is_eval = (c = ""); | |
| 343 | val default_rhs = nbe_apps_local (i+1) c (dicts @ default_args); | |
| 344 | val match_cont = if is_eval then NONE else SOME default_rhs; | |
| 28350 | 345 | val assemble_arg = assemble_iterm | 
| 346 | (fn c => fn _ => fn ts => nbe_apps_constr idx_of c ts) NONE; | |
| 35371 | 347 | val assemble_rhs = assemble_iterm assemble_constapp match_cont; | 
| 28350 | 348 | val (samepairs, args') = subst_nonlin_vars args; | 
| 349 | val s_args = map assemble_arg args'; | |
| 350 | val s_rhs = if null samepairs then assemble_rhs rhs | |
| 351 | else ml_if (ml_and (map (uncurry nbe_same) samepairs)) | |
| 352 | (assemble_rhs rhs) default_rhs; | |
| 28337 | 353 | val eqns = if is_eval then | 
| 28350 | 354 | [([ml_list (rev (dicts @ s_args))], s_rhs)] | 
| 28337 | 355 | else | 
| 28350 | 356 | [([ml_list (rev (dicts @ map2 ml_as default_args s_args))], s_rhs), | 
| 28337 | 357 | ([ml_list (rev (dicts @ default_args))], default_rhs)] | 
| 358 | in (nbe_fun i c, eqns) end; | |
| 359 | ||
| 25944 | 360 | fun assemble_eqns (c, (num_args, (dicts, eqns))) = | 
| 361 | let | |
| 28337 | 362 | val default_args = map nbe_default | 
| 363 | (Name.invent_list [] "a" (num_args - length dicts)); | |
| 364 | val eqns' = map_index (assemble_eqn c dicts default_args) eqns | |
| 365 | @ (if c = "" then [] else [(nbe_fun (length eqns) c, | |
| 366 | [([ml_list (rev (dicts @ default_args))], | |
| 367 | nbe_apps_constr idx_of c (dicts @ default_args))])]); | |
| 368 | in (eqns', nbe_abss num_args (nbe_fun 0 c)) end; | |
| 24155 | 369 | |
| 25944 | 370 | val (fun_vars, fun_vals) = map_split assemble_eqns eqnss'; | 
| 28337 | 371 | val deps_vars = ml_list (map (nbe_fun 0) deps); | 
| 372 | in ml_abs deps_vars (ml_Let (ml_fundefs (flat fun_vars)) (ml_list fun_vals)) end; | |
| 25944 | 373 | |
| 35371 | 374 | |
| 25944 | 375 | (* code compilation *) | 
| 376 | ||
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 377 | fun compile_eqnss ctxt gr raw_deps [] = [] | 
| 28274 
9873697fa411
ML_Context.evaluate: proper context (for ML environment);
 wenzelm parents: 
28227diff
changeset | 378 | | compile_eqnss ctxt gr raw_deps eqnss = | 
| 24155 | 379 | let | 
| 26064 | 380 | val (deps, deps_vals) = split_list (map_filter | 
| 381 | (fn dep => Option.map (fn univ => (dep, univ)) (fst ((Graph.get_node gr dep)))) raw_deps); | |
| 382 | val idx_of = raw_deps | |
| 383 | |> map (fn dep => (dep, snd (Graph.get_node gr dep))) | |
| 384 | |> AList.lookup (op =) | |
| 385 | |> (fn f => the o f); | |
| 386 | val s = assemble_eqnss idx_of deps eqnss; | |
| 24155 | 387 | val cs = map fst eqnss; | 
| 25944 | 388 | in | 
| 389 | s | |
| 32544 | 390 | |> traced (fn s => "\n--- code to be evaluated:\n" ^ s) | 
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30288diff
changeset | 391 | |> ML_Context.evaluate ctxt (!trace) univs_cookie | 
| 25944 | 392 | |> (fn f => f deps_vals) | 
| 393 | |> (fn univs => cs ~~ univs) | |
| 394 | end; | |
| 25190 | 395 | |
| 30672 
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
 wenzelm parents: 
30288diff
changeset | 396 | |
| 25944 | 397 | (* preparing function equations *) | 
| 24155 | 398 | |
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 399 | fun eqns_of_stmt (_, Code_Thingol.Fun (_, (_, []))) = | 
| 25101 | 400 | [] | 
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 401 | | eqns_of_stmt (const, Code_Thingol.Fun (_, ((vs, _), eqns))) = | 
| 25101 | 402 | [(const, (vs, map fst eqns))] | 
| 28054 | 403 | | eqns_of_stmt (_, Code_Thingol.Datatypecons _) = | 
| 25101 | 404 | [] | 
| 28054 | 405 | | eqns_of_stmt (_, Code_Thingol.Datatype _) = | 
| 25101 | 406 | [] | 
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 407 | | eqns_of_stmt (class, Code_Thingol.Class (_, (v, (superclasses, classops)))) = | 
| 25101 | 408 | let | 
| 409 | val names = map snd superclasses @ map fst classops; | |
| 410 | val params = Name.invent_list [] "d" (length names); | |
| 411 | fun mk (k, name) = | |
| 412 | (name, ([(v, [])], | |
| 31889 | 413 | [([IConst (class, (([], []), [])) `$$ map (IVar o SOME) params], | 
| 414 | IVar (SOME (nth params k)))])); | |
| 25101 | 415 | in map_index mk names end | 
| 28054 | 416 | | eqns_of_stmt (_, Code_Thingol.Classrel _) = | 
| 25101 | 417 | [] | 
| 28054 | 418 | | eqns_of_stmt (_, Code_Thingol.Classparam _) = | 
| 25101 | 419 | [] | 
| 28054 | 420 | | eqns_of_stmt (inst, Code_Thingol.Classinst ((class, (_, arities)), (superinsts, instops))) = | 
| 31049 | 421 | [(inst, (arities, [([], IConst (class, (([], []), [])) `$$ | 
| 422 | map (fn (_, (_, (inst, dicts))) => IConst (inst, (([], dicts), []))) superinsts | |
| 25101 | 423 | @ map (IConst o snd o fst) instops)]))]; | 
| 24155 | 424 | |
| 28274 
9873697fa411
ML_Context.evaluate: proper context (for ML environment);
 wenzelm parents: 
28227diff
changeset | 425 | fun compile_stmts ctxt stmts_deps = | 
| 25101 | 426 | let | 
| 427 | val names = map (fst o fst) stmts_deps; | |
| 428 | val names_deps = map (fn ((name, _), deps) => (name, deps)) stmts_deps; | |
| 429 | val eqnss = maps (eqns_of_stmt o fst) stmts_deps; | |
| 26064 | 430 | val refl_deps = names_deps | 
| 25190 | 431 | |> maps snd | 
| 432 | |> distinct (op =) | |
| 26064 | 433 | |> fold (insert (op =)) names; | 
| 434 | fun new_node name (gr, (maxidx, idx_tab)) = if can (Graph.get_node gr) name | |
| 435 | then (gr, (maxidx, idx_tab)) | |
| 436 | else (Graph.new_node (name, (NONE, maxidx)) gr, | |
| 437 | (maxidx + 1, Inttab.update_new (maxidx, name) idx_tab)); | |
| 25190 | 438 | fun compile gr = eqnss | 
| 28274 
9873697fa411
ML_Context.evaluate: proper context (for ML environment);
 wenzelm parents: 
28227diff
changeset | 439 | |> compile_eqnss ctxt gr refl_deps | 
| 25190 | 440 | |> rpair gr; | 
| 25101 | 441 | in | 
| 26064 | 442 | fold new_node refl_deps | 
| 443 | #> apfst (fold (fn (name, deps) => fold (curry Graph.add_edge name) deps) names_deps | |
| 444 | #> compile | |
| 445 | #-> fold (fn (name, univ) => (Graph.map_node name o apfst) (K (SOME univ)))) | |
| 25101 | 446 | end; | 
| 24155 | 447 | |
| 35500 | 448 | fun ensure_stmts ctxt program = | 
| 25101 | 449 | let | 
| 26064 | 450 | fun add_stmts names (gr, (maxidx, idx_tab)) = if exists ((can o Graph.get_node) gr) names | 
| 451 | then (gr, (maxidx, idx_tab)) | |
| 452 | else (gr, (maxidx, idx_tab)) | |
| 28274 
9873697fa411
ML_Context.evaluate: proper context (for ML environment);
 wenzelm parents: 
28227diff
changeset | 453 | |> compile_stmts ctxt (map (fn name => ((name, Graph.get_node program name), | 
| 27103 | 454 | Graph.imm_succs program name)) names); | 
| 28706 | 455 | in | 
| 456 | fold_rev add_stmts (Graph.strong_conn program) | |
| 457 | end; | |
| 24155 | 458 | |
| 25944 | 459 | |
| 460 | (** evaluation **) | |
| 461 | ||
| 462 | (* term evaluation *) | |
| 463 | ||
| 30947 | 464 | fun eval_term ctxt gr deps (vs : (string * sort) list, t) = | 
| 25924 | 465 | let | 
| 466 | val dict_frees = maps (fn (v, sort) => map_index (curry DFree v o fst) sort) vs; | |
| 467 | in | |
| 31064 | 468 |     ("", (vs, [([], t)]))
 | 
| 28274 
9873697fa411
ML_Context.evaluate: proper context (for ML environment);
 wenzelm parents: 
28227diff
changeset | 469 | |> singleton (compile_eqnss ctxt gr deps) | 
| 25924 | 470 | |> snd | 
| 31064 | 471 | |> (fn t => apps t (rev dict_frees)) | 
| 25924 | 472 | end; | 
| 24155 | 473 | |
| 35371 | 474 | |
| 24839 | 475 | (* reification *) | 
| 24155 | 476 | |
| 30947 | 477 | fun typ_of_itype program vs (ityco `%% itys) = | 
| 478 | let | |
| 479 | val Code_Thingol.Datatype (tyco, _) = Graph.get_node program ityco; | |
| 480 | in Type (tyco, map (typ_of_itype program vs) itys) end | |
| 481 | | typ_of_itype program vs (ITyVar v) = | |
| 482 | let | |
| 483 | val sort = (the o AList.lookup (op =) vs) v; | |
| 484 |       in TFree ("'" ^ v, sort) end;
 | |
| 485 | ||
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 486 | fun term_of_univ thy program idx_tab t = | 
| 24155 | 487 | let | 
| 25101 | 488 | fun take_until f [] = [] | 
| 489 | | take_until f (x::xs) = if f x then [] else x :: take_until f xs; | |
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 490 | fun is_dict (Const (idx, _)) = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx | 
| 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 491 | of Code_Thingol.Class _ => true | 
| 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 492 | | Code_Thingol.Classrel _ => true | 
| 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 493 | | Code_Thingol.Classinst _ => true | 
| 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 494 | | _ => false) | 
| 25101 | 495 | | is_dict (DFree _) = true | 
| 496 | | is_dict _ = false; | |
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 497 | fun const_of_idx idx = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx | 
| 35371 | 498 | of Code_Thingol.Fun (c, _) => c | 
| 499 | | Code_Thingol.Datatypecons (c, _) => c | |
| 500 | | Code_Thingol.Classparam (c, _) => c); | |
| 24155 | 501 | fun of_apps bounds (t, ts) = | 
| 502 | fold_map (of_univ bounds) ts | |
| 503 | #>> (fn ts' => list_comb (t, rev ts')) | |
| 26064 | 504 | and of_univ bounds (Const (idx, ts)) typidx = | 
| 24155 | 505 | let | 
| 25101 | 506 | val ts' = take_until is_dict ts; | 
| 28663 
bd8438543bf2
code identifier namings are no longer imperative
 haftmann parents: 
28423diff
changeset | 507 | val c = const_of_idx idx; | 
| 31957 | 508 | val T = map_type_tvar (fn ((v, i), _) => | 
| 509 | TypeInfer.param typidx (v ^ string_of_int i, [])) | |
| 510 | (Sign.the_const_type thy c); | |
| 30022 
1d8b8fa19074
maintain order of constructors in datatypes; clarified conventions for type schemes
 haftmann parents: 
29272diff
changeset | 511 | val typidx' = typidx + 1; | 
| 31957 | 512 | in of_apps bounds (Term.Const (c, T), ts') typidx' end | 
| 27499 | 513 | | of_univ bounds (BVar (n, ts)) typidx = | 
| 514 | of_apps bounds (Bound (bounds - n - 1), ts) typidx | |
| 24155 | 515 | | of_univ bounds (t as Abs _) typidx = | 
| 516 | typidx | |
| 25924 | 517 | |> of_univ (bounds + 1) (apps t [BVar (bounds, [])]) | 
| 24155 | 518 |           |-> (fn t' => pair (Term.Abs ("u", dummyT, t')))
 | 
| 519 | in of_univ 0 t 0 |> fst end; | |
| 520 | ||
| 35371 | 521 | |
| 25101 | 522 | (* function store *) | 
| 523 | ||
| 34173 
458ced35abb8
reduced code generator cache to the baremost minimum
 haftmann parents: 
33522diff
changeset | 524 | structure Nbe_Functions = Code_Data | 
| 25101 | 525 | ( | 
| 35500 | 526 | type T = (Univ option * int) Graph.T * (int * string Inttab.table); | 
| 527 | val empty = (Graph.empty, (0, Inttab.empty)); | |
| 25101 | 528 | ); | 
| 529 | ||
| 35371 | 530 | |
| 25101 | 531 | (* compilation, evaluation and reification *) | 
| 532 | ||
| 35500 | 533 | fun compile_eval thy program vs_t deps = | 
| 26064 | 534 | let | 
| 36610 
bafd82950e24
renamed ProofContext.init to ProofContext.init_global to emphasize that this is not the real thing;
 wenzelm parents: 
35845diff
changeset | 535 | val ctxt = ProofContext.init_global thy; | 
| 35500 | 536 | val (gr, (_, idx_tab)) = | 
| 537 | Nbe_Functions.change thy (ensure_stmts ctxt program); | |
| 26064 | 538 | in | 
| 30947 | 539 | vs_t | 
| 34251 | 540 | |> eval_term ctxt gr deps | 
| 541 | |> term_of_univ thy program idx_tab | |
| 26064 | 542 | end; | 
| 25101 | 543 | |
| 35371 | 544 | |
| 24155 | 545 | (* evaluation with type reconstruction *) | 
| 546 | ||
| 35500 | 547 | fun normalize thy program ((vs0, (vs, ty)), t) deps = | 
| 24155 | 548 | let | 
| 30947 | 549 | val ty' = typ_of_itype program vs0 ty; | 
| 27264 | 550 | fun type_infer t = | 
| 551 | singleton (TypeInfer.infer_types (Syntax.pp_global thy) (Sign.tsig_of thy) I | |
| 552 | (try (Type.strip_sorts o Sign.the_const_type thy)) (K NONE) Name.context 0) | |
| 30947 | 553 | (TypeInfer.constrain ty' t); | 
| 29272 | 554 | fun check_tvars t = if null (Term.add_tvars t []) then t else | 
| 24155 | 555 |       error ("Illegal schematic type variables in normalized term: "
 | 
| 32966 
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
 wenzelm parents: 
32740diff
changeset | 556 | ^ setmp_CRITICAL show_types true (Syntax.string_of_term_global thy) t); | 
| 
5b21661fe618
indicate CRITICAL nature of various setmp combinators;
 wenzelm parents: 
32740diff
changeset | 557 | val string_of_term = setmp_CRITICAL show_types true (Syntax.string_of_term_global thy); | 
| 24155 | 558 | in | 
| 35500 | 559 | compile_eval thy program (vs, t) deps | 
| 32544 | 560 | |> traced (fn t => "Normalized:\n" ^ string_of_term t) | 
| 26739 | 561 | |> type_infer | 
| 32544 | 562 | |> traced (fn t => "Types inferred:\n" ^ string_of_term t) | 
| 26739 | 563 | |> check_tvars | 
| 36982 
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
 haftmann parents: 
36960diff
changeset | 564 | |> traced (fn _ => "---\n") | 
| 24155 | 565 | end; | 
| 566 | ||
| 32544 | 567 | |
| 24155 | 568 | (* evaluation oracle *) | 
| 569 | ||
| 30947 | 570 | fun mk_equals thy lhs raw_rhs = | 
| 26747 
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
 haftmann parents: 
26739diff
changeset | 571 | let | 
| 30947 | 572 | val ty = Thm.typ_of (Thm.ctyp_of_term lhs); | 
| 573 |     val eq = Thm.cterm_of thy (Term.Const ("==", ty --> ty --> propT));
 | |
| 574 | val rhs = Thm.cterm_of thy raw_rhs; | |
| 575 | in Thm.mk_binop eq lhs rhs end; | |
| 26747 
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
 haftmann parents: 
26739diff
changeset | 576 | |
| 30942 
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
 haftmann parents: 
30672diff
changeset | 577 | val (_, raw_norm_oracle) = Context.>>> (Context.map_theory_result | 
| 35500 | 578 | (Thm.add_oracle (Binding.name "norm", fn (thy, program, vsp_ty_t, deps, ct) => | 
| 579 | mk_equals thy ct (normalize thy program vsp_ty_t deps)))); | |
| 31064 | 580 | |
| 35500 | 581 | fun norm_oracle thy program vsp_ty_t deps ct = | 
| 582 | raw_norm_oracle (thy, program, vsp_ty_t, deps, ct); | |
| 30942 
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
 haftmann parents: 
30672diff
changeset | 583 | |
| 31064 | 584 | fun no_frees_conv conv ct = | 
| 585 | let | |
| 586 | val frees = Thm.add_cterm_frees ct []; | |
| 587 | fun apply_beta free thm = Thm.combination thm (Thm.reflexive free) | |
| 588 | |> Conv.fconv_rule (Conv.arg_conv (Conv.try_conv (Thm.beta_conversion false))) | |
| 589 | |> Conv.fconv_rule (Conv.arg1_conv (Thm.beta_conversion false)); | |
| 590 | in | |
| 591 | ct | |
| 592 | |> fold_rev Thm.cabs frees | |
| 593 | |> conv | |
| 594 | |> fold apply_beta frees | |
| 595 | end; | |
| 30942 
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
 haftmann parents: 
30672diff
changeset | 596 | |
| 31064 | 597 | fun no_frees_rew rew t = | 
| 598 | let | |
| 599 | val frees = map Free (Term.add_frees t []); | |
| 600 | in | |
| 601 | t | |
| 602 | |> fold_rev lambda frees | |
| 603 | |> rew | |
| 604 | |> (fn t' => Term.betapplys (t', frees)) | |
| 605 | end; | |
| 606 | ||
| 607 | val norm_conv = no_frees_conv (fn ct => | |
| 24155 | 608 | let | 
| 609 | val thy = Thm.theory_of_cterm ct; | |
| 35500 | 610 | in lift_triv_classes_conv thy (Code_Thingol.eval_conv thy (K (norm_oracle thy))) ct end); | 
| 24155 | 611 | |
| 35500 | 612 | fun norm thy = lift_triv_classes_rew thy (no_frees_rew (Code_Thingol.eval thy I (K (normalize thy)))); | 
| 24839 | 613 | |
| 35371 | 614 | |
| 24155 | 615 | (* evaluation command *) | 
| 616 | ||
| 617 | fun norm_print_term ctxt modes t = | |
| 618 | let | |
| 619 | val thy = ProofContext.theory_of ctxt; | |
| 30970 
3fe2e418a071
generic postprocessing scheme for term evaluations
 haftmann parents: 
30947diff
changeset | 620 | val t' = norm thy t; | 
| 24839 | 621 | val ty' = Term.type_of t'; | 
| 26952 
df36f4c52ee8
command 'normal_form': proper context via Variable.auto_fixes;
 wenzelm parents: 
26931diff
changeset | 622 | val ctxt' = Variable.auto_fixes t ctxt; | 
| 24634 | 623 | val p = PrintMode.with_modes modes (fn () => | 
| 26952 
df36f4c52ee8
command 'normal_form': proper context via Variable.auto_fixes;
 wenzelm parents: 
26931diff
changeset | 624 | Pretty.block [Pretty.quote (Syntax.pretty_term ctxt' t'), Pretty.fbrk, | 
| 
df36f4c52ee8
command 'normal_form': proper context via Variable.auto_fixes;
 wenzelm parents: 
26931diff
changeset | 625 | Pretty.str "::", Pretty.brk 1, Pretty.quote (Syntax.pretty_typ ctxt' ty')]) (); | 
| 24155 | 626 | in Pretty.writeln p end; | 
| 627 | ||
| 628 | ||
| 629 | (** Isar setup **) | |
| 630 | ||
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24493diff
changeset | 631 | fun norm_print_term_cmd (modes, s) state = | 
| 24155 | 632 | let val ctxt = Toplevel.context_of state | 
| 24508 
c8b82fec6447
replaced ProofContext.read_term/prop by general Syntax.read_term/prop;
 wenzelm parents: 
24493diff
changeset | 633 | in norm_print_term ctxt modes (Syntax.read_term ctxt s) end; | 
| 24155 | 634 | |
| 30970 
3fe2e418a071
generic postprocessing scheme for term evaluations
 haftmann parents: 
30947diff
changeset | 635 | val setup = Value.add_evaluator ("nbe", norm o ProofContext.theory_of);
 | 
| 24155 | 636 | |
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36770diff
changeset | 637 | val opt_modes = | 
| 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36770diff
changeset | 638 |   Scan.optional (Parse.$$$ "(" |-- Parse.!!! (Scan.repeat1 Parse.xname --| Parse.$$$ ")")) [];
 | 
| 24155 | 639 | |
| 24867 | 640 | val _ = | 
| 36960 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36770diff
changeset | 641 | Outer_Syntax.improper_command "normal_form" "normalize term by evaluation" Keyword.diag | 
| 
01594f816e3a
prefer structure Keyword, Parse, Parse_Spec, Outer_Syntax;
 wenzelm parents: 
36770diff
changeset | 642 | (opt_modes -- Parse.term >> (Toplevel.keep o norm_print_term_cmd)); | 
| 24155 | 643 | |
| 644 | end; | |
| 28337 | 645 |