author | blanchet |
Tue, 10 Jul 2012 23:36:03 +0200 | |
changeset 48226 | 76759312b0b4 |
parent 48072 | ace701efe203 |
child 51685 | 385ef6706252 |
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 |
|
41247 | 9 |
val dynamic_conv: theory -> conv |
41184 | 10 |
val dynamic_value: theory -> term -> term |
11 |
val static_conv: theory -> string list -> conv |
|
12 |
val static_value: theory -> string list -> term -> term |
|
25101 | 13 |
|
25204 | 14 |
datatype Univ = |
26064 | 15 |
Const of int * Univ list (*named (uninterpreted) constants*) |
25924 | 16 |
| DFree of string * int (*free (uninterpreted) dictionary parameters*) |
24155 | 17 |
| BVar of int * Univ list |
28350 | 18 |
| Abs of (int * (Univ list -> Univ)) * Univ list |
25924 | 19 |
val apps: Univ -> Univ list -> Univ (*explicit applications*) |
25944 | 20 |
val abss: int -> (Univ list -> Univ) -> Univ |
28337 | 21 |
(*abstractions as closures*) |
41037
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
22 |
val same: Univ * Univ -> bool |
24155 | 23 |
|
39388
fdbb2c55ffc2
replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents:
39290
diff
changeset
|
24 |
val put_result: (unit -> Univ list -> Univ list) -> Proof.context -> Proof.context |
32740 | 25 |
val trace: bool Unsynchronized.ref |
25924 | 26 |
|
26747
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
haftmann
parents:
26739
diff
changeset
|
27 |
val setup: theory -> theory |
32544 | 28 |
val add_const_alias: thm -> theory -> theory |
24155 | 29 |
end; |
30 |
||
31 |
structure Nbe: NBE = |
|
32 |
struct |
|
33 |
||
34 |
(* generic non-sense *) |
|
35 |
||
32740 | 36 |
val trace = Unsynchronized.ref false; |
32544 | 37 |
fun traced f x = if !trace then (tracing (f x); x) else x; |
24155 | 38 |
|
39 |
||
32544 | 40 |
(** certificates and oracle for "trivial type classes" **) |
41 |
||
33522 | 42 |
structure Triv_Class_Data = Theory_Data |
32544 | 43 |
( |
44 |
type T = (class * thm) list; |
|
45 |
val empty = []; |
|
46 |
val extend = I; |
|
33522 | 47 |
fun merge data : T = AList.merge (op =) (K true) data; |
32544 | 48 |
); |
49 |
||
50 |
fun add_const_alias thm thy = |
|
51 |
let |
|
52 |
val (ofclass, eqn) = case try Logic.dest_equals (Thm.prop_of thm) |
|
53 |
of SOME ofclass_eq => ofclass_eq |
|
54 |
| _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm); |
|
55 |
val (T, class) = case try Logic.dest_of_class ofclass |
|
56 |
of SOME T_class => T_class |
|
57 |
| _ => error ("Bad certificate: " ^ Display.string_of_thm_global thy thm); |
|
58 |
val tvar = case try Term.dest_TVar T |
|
59 |
of SOME (tvar as (_, sort)) => if null (filter (can (AxClass.get_info thy)) sort) |
|
60 |
then tvar |
|
61 |
else error ("Bad sort: " ^ Display.string_of_thm_global thy thm) |
|
62 |
| _ => error ("Bad type: " ^ Display.string_of_thm_global thy thm); |
|
63 |
val _ = if Term.add_tvars eqn [] = [tvar] then () |
|
64 |
else error ("Inconsistent type: " ^ Display.string_of_thm_global thy thm); |
|
65 |
val lhs_rhs = case try Logic.dest_equals eqn |
|
66 |
of SOME lhs_rhs => lhs_rhs |
|
67 |
| _ => error ("Not an equation: " ^ Syntax.string_of_term_global thy eqn); |
|
40362
82a066bff182
Code.check_const etc.: reject too specific types
haftmann
parents:
39911
diff
changeset
|
68 |
val c_c' = case try (pairself (AxClass.unoverload_const thy o dest_Const)) lhs_rhs |
32544 | 69 |
of SOME c_c' => c_c' |
70 |
| _ => error ("Not an equation with two constants: " |
|
71 |
^ Syntax.string_of_term_global thy eqn); |
|
72 |
val _ = if the_list (AxClass.class_of_param thy (snd c_c')) = [class] then () |
|
73 |
else error ("Inconsistent class: " ^ Display.string_of_thm_global thy thm); |
|
74 |
in Triv_Class_Data.map (AList.update (op =) (class, thm)) thy end; |
|
75 |
||
76 |
local |
|
77 |
||
78 |
val get_triv_classes = map fst o Triv_Class_Data.get; |
|
79 |
||
80 |
val (_, triv_of_class) = Context.>>> (Context.map_theory_result |
|
43619
3803869014aa
proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents:
43329
diff
changeset
|
81 |
(Thm.add_oracle (@{binding triv_of_class}, fn (thy, T, class) => |
32544 | 82 |
Thm.cterm_of thy (Logic.mk_of_class (T, class))))); |
83 |
||
84 |
in |
|
85 |
||
86 |
fun lift_triv_classes_conv thy conv ct = |
|
87 |
let |
|
88 |
val algebra = Sign.classes_of thy; |
|
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
89 |
val certT = Thm.ctyp_of thy; |
32544 | 90 |
val triv_classes = get_triv_classes thy; |
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
91 |
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:
36960
diff
changeset
|
92 |
fun mk_entry (v, sort) = |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
93 |
let |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
94 |
val T = TFree (v, sort); |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
95 |
val cT = certT T; |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
96 |
val triv_sort = additional_classes sort; |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
97 |
in |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
98 |
(v, (Sorts.inter_sort algebra (sort, triv_sort), |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
99 |
(cT, AList.make (fn class => Thm.of_class (cT, class)) sort |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
100 |
@ 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:
36960
diff
changeset
|
101 |
end; |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
102 |
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:
36960
diff
changeset
|
103 |
fun instantiate thm = |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
104 |
let |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
105 |
val cert_tvars = map (certT o TVar) (Term.add_tvars |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
106 |
((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:
36960
diff
changeset
|
107 |
val instantiation = |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
108 |
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:
36960
diff
changeset
|
109 |
in Thm.instantiate (instantiation, []) thm end; |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
110 |
fun of_class (TFree (v, _), class) = |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
111 |
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:
36960
diff
changeset
|
112 |
| of_class (T, _) = error ("Bad type " ^ Syntax.string_of_typ_global thy T); |
32544 | 113 |
fun strip_of_class thm = |
114 |
let |
|
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
115 |
val prems_of_class = Thm.prop_of thm |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
116 |
|> Logic.strip_imp_prems |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
117 |
|> map (Logic.dest_of_class #> of_class); |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
118 |
in fold Thm.elim_implies prems_of_class thm end; |
36770
c3a04614c710
reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
wenzelm
parents:
36768
diff
changeset
|
119 |
in |
c3a04614c710
reactivated Thm.legacy_unconstrainT for Nbe.lift_triv_classes_conv;
wenzelm
parents:
36768
diff
changeset
|
120 |
ct |
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
121 |
|> (Drule.cterm_fun o map_types o map_type_tfree) |
47609 | 122 |
(fn (v, _) => TFree (v, (fst o the o AList.lookup (op =) vs_tab) v)) |
32544 | 123 |
|> conv |
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
124 |
|> 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:
35500
diff
changeset
|
125 |
|> Thm.varifyT_global |
36982
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
126 |
|> Thm.unconstrainT |
1d4478a797c2
new version of triv_of_class machinery without legacy_unconstrain
haftmann
parents:
36960
diff
changeset
|
127 |
|> instantiate |
32544 | 128 |
|> strip_of_class |
129 |
end; |
|
130 |
||
131 |
fun lift_triv_classes_rew thy rew t = |
|
132 |
let |
|
133 |
val algebra = Sign.classes_of thy; |
|
134 |
val triv_classes = get_triv_classes thy; |
|
135 |
val vs = Term.add_tfrees t []; |
|
136 |
in t |
|
137 |
|> (map_types o map_type_tfree) |
|
138 |
(fn (v, sort) => TFree (v, Sorts.inter_sort algebra (sort, triv_classes))) |
|
139 |
|> rew |
|
140 |
|> (map_types o map_type_tfree) |
|
141 |
(fn (v, _) => TFree (v, the (AList.lookup (op =) vs v))) |
|
142 |
end; |
|
143 |
||
144 |
end; |
|
145 |
||
146 |
||
147 |
(** the semantic universe **) |
|
24155 | 148 |
|
149 |
(* |
|
150 |
Functions are given by their semantical function value. To avoid |
|
151 |
trouble with the ML-type system, these functions have the most |
|
152 |
generic type, that is "Univ list -> Univ". The calling convention is |
|
153 |
that the arguments come as a list, the last argument first. In |
|
154 |
other words, a function call that usually would look like |
|
155 |
||
156 |
f x_1 x_2 ... x_n or f(x_1,x_2, ..., x_n) |
|
157 |
||
158 |
would be in our convention called as |
|
159 |
||
160 |
f [x_n,..,x_2,x_1] |
|
161 |
||
162 |
Moreover, to handle functions that are still waiting for some |
|
163 |
arguments we have additionally a list of arguments collected to far |
|
164 |
and the number of arguments we're still waiting for. |
|
165 |
*) |
|
166 |
||
25204 | 167 |
datatype Univ = |
26064 | 168 |
Const of int * Univ list (*named (uninterpreted) constants*) |
25924 | 169 |
| DFree of string * int (*free (uninterpreted) dictionary parameters*) |
27499 | 170 |
| BVar of int * Univ list (*bound variables, named*) |
24155 | 171 |
| Abs of (int * (Univ list -> Univ)) * Univ list |
27499 | 172 |
(*abstractions as closures*); |
24155 | 173 |
|
35371 | 174 |
|
24155 | 175 |
(* constructor functions *) |
176 |
||
25944 | 177 |
fun abss n f = Abs ((n, f), []); |
25924 | 178 |
fun apps (Abs ((n, f), xs)) ys = let val k = n - length ys in |
27499 | 179 |
case int_ord (k, 0) |
180 |
of EQUAL => f (ys @ xs) |
|
181 |
| LESS => let val (zs, ws) = chop (~ k) ys in apps (f (ws @ xs)) zs end |
|
182 |
| GREATER => Abs ((k, f), ys @ xs) (*note: reverse convention also for apps!*) |
|
183 |
end |
|
25924 | 184 |
| apps (Const (name, xs)) ys = Const (name, ys @ xs) |
27499 | 185 |
| apps (BVar (n, xs)) ys = BVar (n, ys @ xs); |
24155 | 186 |
|
41037
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
187 |
fun same (Const (k, xs), Const (l, ys)) = k = l andalso eq_list same (xs, ys) |
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
188 |
| same (DFree (s, k), DFree (t, l)) = s = t andalso k = l |
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
189 |
| same (BVar (k, xs), BVar (l, ys)) = k = l andalso eq_list same (xs, ys) |
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
190 |
| same _ = false; |
40730
2aa0390a2da7
nbe decides equality of abstractions by extensionality
haftmann
parents:
40564
diff
changeset
|
191 |
|
24155 | 192 |
|
193 |
(** assembling and compiling ML code from terms **) |
|
194 |
||
195 |
(* abstract ML syntax *) |
|
196 |
||
197 |
infix 9 `$` `$$`; |
|
198 |
fun e1 `$` e2 = "(" ^ e1 ^ " " ^ e2 ^ ")"; |
|
25101 | 199 |
fun e `$$` [] = e |
200 |
| e `$$` es = "(" ^ e ^ " " ^ space_implode " " es ^ ")"; |
|
24590 | 201 |
fun ml_abs v e = "(fn " ^ v ^ " => " ^ e ^ ")"; |
24155 | 202 |
|
203 |
fun ml_cases t cs = |
|
204 |
"(case " ^ t ^ " of " ^ space_implode " | " (map (fn (p, t) => p ^ " => " ^ t) cs) ^ ")"; |
|
25944 | 205 |
fun ml_Let d e = "let\n" ^ d ^ " in " ^ e ^ " end"; |
28337 | 206 |
fun ml_as v t = "(" ^ v ^ " as " ^ t ^ ")"; |
24155 | 207 |
|
28350 | 208 |
fun ml_and [] = "true" |
209 |
| ml_and [x] = x |
|
210 |
| ml_and xs = "(" ^ space_implode " andalso " xs ^ ")"; |
|
211 |
fun ml_if b x y = "(if " ^ b ^ " then " ^ x ^ " else " ^ y ^ ")"; |
|
212 |
||
24155 | 213 |
fun ml_list es = "[" ^ commas es ^ "]"; |
214 |
||
215 |
fun ml_fundefs ([(name, [([], e)])]) = |
|
216 |
"val " ^ name ^ " = " ^ e ^ "\n" |
|
217 |
| ml_fundefs (eqs :: eqss) = |
|
218 |
let |
|
219 |
fun fundef (name, eqs) = |
|
220 |
let |
|
221 |
fun eqn (es, e) = name ^ " " ^ space_implode " " es ^ " = " ^ e |
|
222 |
in space_implode "\n | " (map eqn eqs) end; |
|
223 |
in |
|
224 |
(prefix "fun " o fundef) eqs :: map (prefix "and " o fundef) eqss |
|
26931 | 225 |
|> cat_lines |
24155 | 226 |
|> suffix "\n" |
227 |
end; |
|
228 |
||
35371 | 229 |
|
25944 | 230 |
(* nbe specific syntax and sandbox communication *) |
231 |
||
41472
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents:
41346
diff
changeset
|
232 |
structure Univs = Proof_Data |
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents:
41346
diff
changeset
|
233 |
( |
39388
fdbb2c55ffc2
replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents:
39290
diff
changeset
|
234 |
type T = unit -> Univ list -> Univ list |
41472
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
wenzelm
parents:
41346
diff
changeset
|
235 |
(* FIXME avoid user error with non-user text *) |
39399 | 236 |
fun init _ () = error "Univs" |
39388
fdbb2c55ffc2
replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents:
39290
diff
changeset
|
237 |
); |
fdbb2c55ffc2
replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents:
39290
diff
changeset
|
238 |
val put_result = Univs.put; |
24155 | 239 |
|
240 |
local |
|
41068 | 241 |
val prefix = "Nbe."; |
242 |
val name_put = prefix ^ "put_result"; |
|
243 |
val name_const = prefix ^ "Const"; |
|
244 |
val name_abss = prefix ^ "abss"; |
|
245 |
val name_apps = prefix ^ "apps"; |
|
246 |
val name_same = prefix ^ "same"; |
|
24155 | 247 |
in |
248 |
||
39388
fdbb2c55ffc2
replaced ML_Context.evaluate by ML_Context.value -- using context data instead of bare metal references
haftmann
parents:
39290
diff
changeset
|
249 |
val univs_cookie = (Univs.get, put_result, name_put); |
25944 | 250 |
|
28337 | 251 |
fun nbe_fun 0 "" = "nbe_value" |
252 |
| nbe_fun i c = "c_" ^ translate_string (fn "." => "_" | c => c) c ^ "_" ^ string_of_int i; |
|
25101 | 253 |
fun nbe_dict v n = "d_" ^ v ^ "_" ^ string_of_int n; |
24155 | 254 |
fun nbe_bound v = "v_" ^ v; |
31888 | 255 |
fun nbe_bound_optional NONE = "_" |
35500 | 256 |
| nbe_bound_optional (SOME v) = nbe_bound v; |
28337 | 257 |
fun nbe_default v = "w_" ^ v; |
24155 | 258 |
|
25924 | 259 |
(*note: these three are the "turning spots" where proper argument order is established!*) |
260 |
fun nbe_apps t [] = t |
|
261 |
| nbe_apps t ts = name_apps `$$` [t, ml_list (rev ts)]; |
|
28337 | 262 |
fun nbe_apps_local i c ts = nbe_fun i c `$` ml_list (rev ts); |
263 |
fun nbe_apps_constr idx_of c ts = |
|
264 |
let |
|
265 |
val c' = if !trace then string_of_int (idx_of c) ^ " (*" ^ c ^ "*)" |
|
266 |
else string_of_int (idx_of c); |
|
267 |
in name_const `$` ("(" ^ c' ^ ", " ^ ml_list (rev ts) ^ ")") end; |
|
25924 | 268 |
|
24155 | 269 |
fun nbe_abss 0 f = f `$` ml_list [] |
25944 | 270 |
| nbe_abss n f = name_abss `$$` [string_of_int n, f]; |
24155 | 271 |
|
41037
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
272 |
fun nbe_same (v1, v2) = "(" ^ name_same ^ " (" ^ nbe_bound v1 ^ ", " ^ nbe_bound v2 ^ "))"; |
28350 | 273 |
|
24155 | 274 |
end; |
275 |
||
28054 | 276 |
open Basic_Code_Thingol; |
24155 | 277 |
|
35371 | 278 |
|
25865 | 279 |
(* code generation *) |
24155 | 280 |
|
26064 | 281 |
fun assemble_eqnss idx_of deps eqnss = |
25944 | 282 |
let |
283 |
fun prep_eqns (c, (vs, eqns)) = |
|
25924 | 284 |
let |
25944 | 285 |
val dicts = maps (fn (v, sort) => map_index (nbe_dict v o fst) sort) vs; |
28337 | 286 |
val num_args = length dicts + ((length o fst o hd) eqns); |
25944 | 287 |
in (c, (num_args, (dicts, eqns))) end; |
288 |
val eqnss' = map prep_eqns eqnss; |
|
289 |
||
290 |
fun assemble_constapp c dss ts = |
|
291 |
let |
|
41118
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
292 |
val ts' = (maps o map) assemble_dict dss @ ts; |
25944 | 293 |
in case AList.lookup (op =) eqnss' c |
28337 | 294 |
of SOME (num_args, _) => if num_args <= length ts' |
295 |
then let val (ts1, ts2) = chop num_args ts' |
|
296 |
in nbe_apps (nbe_apps_local 0 c ts1) ts2 |
|
297 |
end else nbe_apps (nbe_abss num_args (nbe_fun 0 c)) ts' |
|
25944 | 298 |
| NONE => if member (op =) deps c |
28337 | 299 |
then nbe_apps (nbe_fun 0 c) ts' |
300 |
else nbe_apps_constr idx_of c ts' |
|
25924 | 301 |
end |
41100
6c0940392fb4
dictionary constants must permit explicit weakening of classes;
haftmann
parents:
41068
diff
changeset
|
302 |
and assemble_classrels classrels = |
6c0940392fb4
dictionary constants must permit explicit weakening of classes;
haftmann
parents:
41068
diff
changeset
|
303 |
fold_rev (fn classrel => assemble_constapp classrel [] o single) classrels |
41118
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
304 |
and assemble_dict (Dict (classrels, x)) = |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
305 |
assemble_classrels classrels (assemble_plain_dict x) |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
306 |
and assemble_plain_dict (Dict_Const (inst, dss)) = |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
307 |
assemble_constapp inst dss [] |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
308 |
| assemble_plain_dict (Dict_Var (v, (n, _))) = |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
309 |
nbe_dict v n |
25924 | 310 |
|
28350 | 311 |
fun assemble_iterm constapp = |
24155 | 312 |
let |
28350 | 313 |
fun of_iterm match_cont t = |
25944 | 314 |
let |
28054 | 315 |
val (t', ts) = Code_Thingol.unfold_app t |
28350 | 316 |
in of_iapp match_cont t' (fold_rev (cons o of_iterm NONE) ts []) end |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
317 |
and of_iapp match_cont (IConst { name = c, dicts = dss, ... }) ts = constapp c dss ts |
31889 | 318 |
| of_iapp match_cont (IVar v) ts = nbe_apps (nbe_bound_optional v) ts |
31724 | 319 |
| of_iapp match_cont ((v, _) `|=> t) ts = |
31888 | 320 |
nbe_apps (nbe_abss 1 (ml_abs (ml_list [nbe_bound_optional v]) (of_iterm NONE t))) ts |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
321 |
| of_iapp match_cont (ICase { term = t, clauses = clauses, primitive = t0, ... }) ts = |
28350 | 322 |
nbe_apps (ml_cases (of_iterm NONE t) |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
323 |
(map (fn (p, t) => (of_iterm NONE p, of_iterm match_cont t)) clauses |
28350 | 324 |
@ [("_", case match_cont of SOME s => s | NONE => of_iterm NONE t0)])) ts |
25944 | 325 |
in of_iterm end; |
24155 | 326 |
|
28350 | 327 |
fun subst_nonlin_vars args = |
328 |
let |
|
329 |
val vs = (fold o Code_Thingol.fold_varnames) |
|
33002 | 330 |
(fn v => AList.map_default (op =) (v, 0) (Integer.add 1)) args []; |
28350 | 331 |
val names = Name.make_context (map fst vs); |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43323
diff
changeset
|
332 |
fun declare v k ctxt = |
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43323
diff
changeset
|
333 |
let val vs = Name.invent ctxt v k |
28350 | 334 |
in (vs, fold Name.declare vs ctxt) end; |
335 |
val (vs_renames, _) = fold_map (fn (v, k) => if k > 1 |
|
336 |
then declare v (k - 1) #>> (fn vs => (v, vs)) |
|
337 |
else pair (v, [])) vs names; |
|
338 |
val samepairs = maps (fn (v, vs) => map (pair v) vs) vs_renames; |
|
339 |
fun subst_vars (t as IConst _) samepairs = (t, samepairs) |
|
31889 | 340 |
| subst_vars (t as IVar NONE) samepairs = (t, samepairs) |
341 |
| subst_vars (t as IVar (SOME v)) samepairs = (case AList.lookup (op =) samepairs v |
|
342 |
of SOME v' => (IVar (SOME v'), AList.delete (op =) v samepairs) |
|
28350 | 343 |
| NONE => (t, samepairs)) |
344 |
| subst_vars (t1 `$ t2) samepairs = samepairs |
|
345 |
|> subst_vars t1 |
|
346 |
||>> subst_vars t2 |
|
347 |
|>> (op `$) |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
348 |
| subst_vars (ICase { primitive = t, ... }) samepairs = subst_vars t samepairs; |
28350 | 349 |
val (args', _) = fold_map subst_vars args samepairs; |
350 |
in (samepairs, args') end; |
|
351 |
||
28337 | 352 |
fun assemble_eqn c dicts default_args (i, (args, rhs)) = |
353 |
let |
|
354 |
val is_eval = (c = ""); |
|
355 |
val default_rhs = nbe_apps_local (i+1) c (dicts @ default_args); |
|
356 |
val match_cont = if is_eval then NONE else SOME default_rhs; |
|
28350 | 357 |
val assemble_arg = assemble_iterm |
358 |
(fn c => fn _ => fn ts => nbe_apps_constr idx_of c ts) NONE; |
|
35371 | 359 |
val assemble_rhs = assemble_iterm assemble_constapp match_cont; |
28350 | 360 |
val (samepairs, args') = subst_nonlin_vars args; |
361 |
val s_args = map assemble_arg args'; |
|
362 |
val s_rhs = if null samepairs then assemble_rhs rhs |
|
41037
6d6f23b3a879
removed experimental equality checking of closures; acknowledge underapproximation of equality in function name
haftmann
parents:
40730
diff
changeset
|
363 |
else ml_if (ml_and (map nbe_same samepairs)) |
28350 | 364 |
(assemble_rhs rhs) default_rhs; |
28337 | 365 |
val eqns = if is_eval then |
28350 | 366 |
[([ml_list (rev (dicts @ s_args))], s_rhs)] |
28337 | 367 |
else |
28350 | 368 |
[([ml_list (rev (dicts @ map2 ml_as default_args s_args))], s_rhs), |
28337 | 369 |
([ml_list (rev (dicts @ default_args))], default_rhs)] |
370 |
in (nbe_fun i c, eqns) end; |
|
371 |
||
25944 | 372 |
fun assemble_eqns (c, (num_args, (dicts, eqns))) = |
373 |
let |
|
28337 | 374 |
val default_args = map nbe_default |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43323
diff
changeset
|
375 |
(Name.invent Name.context "a" (num_args - length dicts)); |
28337 | 376 |
val eqns' = map_index (assemble_eqn c dicts default_args) eqns |
377 |
@ (if c = "" then [] else [(nbe_fun (length eqns) c, |
|
378 |
[([ml_list (rev (dicts @ default_args))], |
|
379 |
nbe_apps_constr idx_of c (dicts @ default_args))])]); |
|
380 |
in (eqns', nbe_abss num_args (nbe_fun 0 c)) end; |
|
24155 | 381 |
|
25944 | 382 |
val (fun_vars, fun_vals) = map_split assemble_eqns eqnss'; |
28337 | 383 |
val deps_vars = ml_list (map (nbe_fun 0) deps); |
384 |
in ml_abs deps_vars (ml_Let (ml_fundefs (flat fun_vars)) (ml_list fun_vals)) end; |
|
25944 | 385 |
|
35371 | 386 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
387 |
(* compile equations *) |
25944 | 388 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
389 |
fun compile_eqnss thy nbe_program raw_deps [] = [] |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
390 |
| compile_eqnss thy nbe_program raw_deps eqnss = |
24155 | 391 |
let |
42361 | 392 |
val ctxt = Proof_Context.init_global thy; |
26064 | 393 |
val (deps, deps_vals) = split_list (map_filter |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
394 |
(fn dep => Option.map (fn univ => (dep, univ)) (fst ((Graph.get_node nbe_program dep)))) raw_deps); |
26064 | 395 |
val idx_of = raw_deps |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
396 |
|> map (fn dep => (dep, snd (Graph.get_node nbe_program dep))) |
26064 | 397 |
|> AList.lookup (op =) |
398 |
|> (fn f => the o f); |
|
399 |
val s = assemble_eqnss idx_of deps eqnss; |
|
24155 | 400 |
val cs = map fst eqnss; |
25944 | 401 |
in |
402 |
s |
|
32544 | 403 |
|> traced (fn s => "\n--- code to be evaluated:\n" ^ s) |
38931
5e84c11c4b8a
evaluate takes ml context and ml expression parameter
haftmann
parents:
38676
diff
changeset
|
404 |
|> pair "" |
39911 | 405 |
|> Code_Runtime.value ctxt univs_cookie |
25944 | 406 |
|> (fn f => f deps_vals) |
407 |
|> (fn univs => cs ~~ univs) |
|
408 |
end; |
|
25190 | 409 |
|
30672
beaadd5af500
more systematic type use_context, with particular values ML_Parse.global_context and ML_Context.local_context;
wenzelm
parents:
30288
diff
changeset
|
410 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
411 |
(* extract equations from statements *) |
24155 | 412 |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
413 |
fun dummy_const c dss = |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
414 |
IConst { name = c, typargs = [], dicts = dss, |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
415 |
dom = [], range = ITyVar "", annotate = false }; |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
416 |
|
37437 | 417 |
fun eqns_of_stmt (_, Code_Thingol.Fun (_, ((_, []), _))) = |
25101 | 418 |
[] |
37437 | 419 |
| eqns_of_stmt (const, Code_Thingol.Fun (_, (((vs, _), eqns), _))) = |
25101 | 420 |
[(const, (vs, map fst eqns))] |
28054 | 421 |
| eqns_of_stmt (_, Code_Thingol.Datatypecons _) = |
25101 | 422 |
[] |
28054 | 423 |
| eqns_of_stmt (_, Code_Thingol.Datatype _) = |
25101 | 424 |
[] |
37447
ad3e04f289b6
transitive superclasses were also only a misunderstanding
haftmann
parents:
37446
diff
changeset
|
425 |
| eqns_of_stmt (class, Code_Thingol.Class (_, (v, (super_classes, classparams)))) = |
25101 | 426 |
let |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37146
diff
changeset
|
427 |
val names = map snd super_classes @ map fst classparams; |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43323
diff
changeset
|
428 |
val params = Name.invent Name.context "d" (length names); |
25101 | 429 |
fun mk (k, name) = |
430 |
(name, ([(v, [])], |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
431 |
[([dummy_const class [] `$$ map (IVar o SOME) params], |
31889 | 432 |
IVar (SOME (nth params k)))])); |
25101 | 433 |
in map_index mk names end |
28054 | 434 |
| eqns_of_stmt (_, Code_Thingol.Classrel _) = |
25101 | 435 |
[] |
28054 | 436 |
| eqns_of_stmt (_, Code_Thingol.Classparam _) = |
25101 | 437 |
[] |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
438 |
| eqns_of_stmt (inst, Code_Thingol.Classinst { class, vs, superinsts, inst_params, ... }) = |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
439 |
[(inst, (vs, [([], dummy_const class [] `$$ |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
440 |
map (fn (_, (_, (inst, dss))) => dummy_const inst dss) superinsts |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
47609
diff
changeset
|
441 |
@ map (IConst o snd o fst) inst_params)]))]; |
24155 | 442 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
443 |
|
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
444 |
(* compile whole programs *) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
445 |
|
39399 | 446 |
fun ensure_const_idx name (nbe_program, (maxidx, idx_tab)) = |
447 |
if can (Graph.get_node nbe_program) name |
|
448 |
then (nbe_program, (maxidx, idx_tab)) |
|
449 |
else (Graph.new_node (name, (NONE, maxidx)) nbe_program, |
|
450 |
(maxidx + 1, Inttab.update_new (maxidx, name) idx_tab)); |
|
451 |
||
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
452 |
fun compile_stmts thy stmts_deps = |
25101 | 453 |
let |
454 |
val names = map (fst o fst) stmts_deps; |
|
455 |
val names_deps = map (fn ((name, _), deps) => (name, deps)) stmts_deps; |
|
456 |
val eqnss = maps (eqns_of_stmt o fst) stmts_deps; |
|
26064 | 457 |
val refl_deps = names_deps |
25190 | 458 |
|> maps snd |
459 |
|> distinct (op =) |
|
26064 | 460 |
|> fold (insert (op =)) names; |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
461 |
fun compile nbe_program = eqnss |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
462 |
|> compile_eqnss thy nbe_program refl_deps |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
463 |
|> rpair nbe_program; |
25101 | 464 |
in |
39399 | 465 |
fold ensure_const_idx refl_deps |
26064 | 466 |
#> apfst (fold (fn (name, deps) => fold (curry Graph.add_edge name) deps) names_deps |
467 |
#> compile |
|
468 |
#-> fold (fn (name, univ) => (Graph.map_node name o apfst) (K (SOME univ)))) |
|
25101 | 469 |
end; |
24155 | 470 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
471 |
fun compile_program thy program = |
25101 | 472 |
let |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
473 |
fun add_stmts names (nbe_program, (maxidx, idx_tab)) = if exists ((can o Graph.get_node) nbe_program) names |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
474 |
then (nbe_program, (maxidx, idx_tab)) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
475 |
else (nbe_program, (maxidx, idx_tab)) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
476 |
|> compile_stmts thy (map (fn name => ((name, Graph.get_node program name), |
44338
700008399ee5
refined Graph implementation: more abstract/scalable Graph.Keys instead of plain lists -- order of adjacency is now standardized wrt. Key.ord;
wenzelm
parents:
43619
diff
changeset
|
477 |
Graph.immediate_succs program name)) names); |
28706 | 478 |
in |
479 |
fold_rev add_stmts (Graph.strong_conn program) |
|
480 |
end; |
|
24155 | 481 |
|
25944 | 482 |
|
483 |
(** evaluation **) |
|
484 |
||
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
485 |
(* term evaluation by compilation *) |
25944 | 486 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
487 |
fun compile_term thy nbe_program deps (vs : (string * sort) list, t) = |
25924 | 488 |
let |
489 |
val dict_frees = maps (fn (v, sort) => map_index (curry DFree v o fst) sort) vs; |
|
490 |
in |
|
31064 | 491 |
("", (vs, [([], t)])) |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
492 |
|> singleton (compile_eqnss thy nbe_program deps) |
25924 | 493 |
|> snd |
31064 | 494 |
|> (fn t => apps t (rev dict_frees)) |
25924 | 495 |
end; |
24155 | 496 |
|
35371 | 497 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
498 |
(* reconstruction *) |
24155 | 499 |
|
30947 | 500 |
fun typ_of_itype program vs (ityco `%% itys) = |
501 |
let |
|
502 |
val Code_Thingol.Datatype (tyco, _) = Graph.get_node program ityco; |
|
503 |
in Type (tyco, map (typ_of_itype program vs) itys) end |
|
504 |
| typ_of_itype program vs (ITyVar v) = |
|
505 |
let |
|
506 |
val sort = (the o AList.lookup (op =) vs) v; |
|
507 |
in TFree ("'" ^ v, sort) end; |
|
508 |
||
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
509 |
fun term_of_univ thy program idx_tab t = |
24155 | 510 |
let |
25101 | 511 |
fun take_until f [] = [] |
512 |
| 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:
28423
diff
changeset
|
513 |
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:
28423
diff
changeset
|
514 |
of Code_Thingol.Class _ => true |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
515 |
| Code_Thingol.Classrel _ => true |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
516 |
| Code_Thingol.Classinst _ => true |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
517 |
| _ => false) |
25101 | 518 |
| is_dict (DFree _) = true |
519 |
| is_dict _ = false; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
520 |
fun const_of_idx idx = (case (Graph.get_node program o the o Inttab.lookup idx_tab) idx |
35371 | 521 |
of Code_Thingol.Fun (c, _) => c |
522 |
| Code_Thingol.Datatypecons (c, _) => c |
|
523 |
| Code_Thingol.Classparam (c, _) => c); |
|
24155 | 524 |
fun of_apps bounds (t, ts) = |
525 |
fold_map (of_univ bounds) ts |
|
526 |
#>> (fn ts' => list_comb (t, rev ts')) |
|
26064 | 527 |
and of_univ bounds (Const (idx, ts)) typidx = |
24155 | 528 |
let |
25101 | 529 |
val ts' = take_until is_dict ts; |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
530 |
val c = const_of_idx idx; |
31957 | 531 |
val T = map_type_tvar (fn ((v, i), _) => |
37145
01aa36932739
renamed structure TypeInfer to Type_Infer, keeping the old name as legacy alias for some time;
wenzelm
parents:
36982
diff
changeset
|
532 |
Type_Infer.param typidx (v ^ string_of_int i, [])) |
31957 | 533 |
(Sign.the_const_type thy c); |
30022
1d8b8fa19074
maintain order of constructors in datatypes; clarified conventions for type schemes
haftmann
parents:
29272
diff
changeset
|
534 |
val typidx' = typidx + 1; |
31957 | 535 |
in of_apps bounds (Term.Const (c, T), ts') typidx' end |
27499 | 536 |
| of_univ bounds (BVar (n, ts)) typidx = |
537 |
of_apps bounds (Bound (bounds - n - 1), ts) typidx |
|
24155 | 538 |
| of_univ bounds (t as Abs _) typidx = |
539 |
typidx |
|
25924 | 540 |
|> of_univ (bounds + 1) (apps t [BVar (bounds, [])]) |
24155 | 541 |
|-> (fn t' => pair (Term.Abs ("u", dummyT, t'))) |
542 |
in of_univ 0 t 0 |> fst end; |
|
543 |
||
35371 | 544 |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
545 |
(* evaluation with type reconstruction *) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
546 |
|
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
547 |
fun eval_term thy program (nbe_program, idx_tab) ((vs0, (vs, ty)), t) deps = |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
548 |
let |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
549 |
val ctxt = Syntax.init_pretty_global thy; |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
550 |
val string_of_term = Syntax.string_of_term (Config.put show_types true ctxt); |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
551 |
val ty' = typ_of_itype program vs0 ty; |
42405
13ecdb3057d8
split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents:
42361
diff
changeset
|
552 |
fun type_infer t = |
13ecdb3057d8
split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents:
42361
diff
changeset
|
553 |
Syntax.check_term (Config.put Type_Infer_Context.const_sorts false ctxt) |
13ecdb3057d8
split Type_Infer into early and late part, after Proof_Context;
wenzelm
parents:
42361
diff
changeset
|
554 |
(Type.constraint ty' t); |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
555 |
fun check_tvars t = |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
556 |
if null (Term.add_tvars t []) then t |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
557 |
else error ("Illegal schematic type variables in normalized term: " ^ string_of_term t); |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
558 |
in |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
559 |
compile_term thy nbe_program deps (vs, t) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
560 |
|> term_of_univ thy program idx_tab |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
561 |
|> traced (fn t => "Normalized:\n" ^ string_of_term t) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
562 |
|> type_infer |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
563 |
|> traced (fn t => "Types inferred:\n" ^ string_of_term t) |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
564 |
|> check_tvars |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
565 |
|> traced (fn _ => "---\n") |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
566 |
end; |
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
567 |
|
39436 | 568 |
|
25101 | 569 |
(* function store *) |
570 |
||
34173
458ced35abb8
reduced code generator cache to the baremost minimum
haftmann
parents:
33522
diff
changeset
|
571 |
structure Nbe_Functions = Code_Data |
25101 | 572 |
( |
35500 | 573 |
type T = (Univ option * int) Graph.T * (int * string Inttab.table); |
574 |
val empty = (Graph.empty, (0, Inttab.empty)); |
|
25101 | 575 |
); |
576 |
||
39399 | 577 |
fun compile ignore_cache thy program = |
24155 | 578 |
let |
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
579 |
val (nbe_program, (_, idx_tab)) = |
39399 | 580 |
Nbe_Functions.change (if ignore_cache then NONE else SOME thy) |
581 |
(compile_program thy program); |
|
39392
7a0fcee7a2a3
more clear separation of static compilation and dynamic evaluation
haftmann
parents:
39388
diff
changeset
|
582 |
in (nbe_program, idx_tab) end; |
24155 | 583 |
|
32544 | 584 |
|
47572 | 585 |
(* evaluation oracle *) |
24155 | 586 |
|
30947 | 587 |
fun mk_equals thy lhs raw_rhs = |
26747
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
haftmann
parents:
26739
diff
changeset
|
588 |
let |
30947 | 589 |
val ty = Thm.typ_of (Thm.ctyp_of_term lhs); |
590 |
val eq = Thm.cterm_of thy (Term.Const ("==", ty --> ty --> propT)); |
|
591 |
val rhs = Thm.cterm_of thy raw_rhs; |
|
592 |
in Thm.mk_binop eq lhs rhs end; |
|
26747
f32fa5f5bdd1
moved 'trivial classes' to foundation of code generator
haftmann
parents:
26739
diff
changeset
|
593 |
|
38669
9ff76d0f0610
refined and unified naming convention for dynamic code evaluation techniques
haftmann
parents:
37449
diff
changeset
|
594 |
val (_, raw_oracle) = Context.>>> (Context.map_theory_result |
43619
3803869014aa
proper @{binding} antiquotations (relevant for formal references);
wenzelm
parents:
43329
diff
changeset
|
595 |
(Thm.add_oracle (@{binding normalization_by_evaluation}, |
39399 | 596 |
fn (thy, program, nbe_program_idx_tab, vsp_ty_t, deps, ct) => |
597 |
mk_equals thy ct (eval_term thy program nbe_program_idx_tab vsp_ty_t deps)))); |
|
31064 | 598 |
|
39399 | 599 |
fun oracle thy program nbe_program_idx_tab vsp_ty_t deps ct = |
600 |
raw_oracle (thy, program, nbe_program_idx_tab, vsp_ty_t, deps, ct); |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30672
diff
changeset
|
601 |
|
41247 | 602 |
fun dynamic_conv thy = lift_triv_classes_conv thy (Code_Thingol.dynamic_conv thy |
603 |
(K (fn program => oracle thy program (compile false thy program)))); |
|
24155 | 604 |
|
41184 | 605 |
fun dynamic_value thy = lift_triv_classes_rew thy |
606 |
(Code_Thingol.dynamic_value thy I |
|
39606
7af0441a3a47
no_frees_* is subsumed by new framework mechanisms in Code_Preproc
haftmann
parents:
39475
diff
changeset
|
607 |
(K (fn program => eval_term thy program (compile false thy program)))); |
39399 | 608 |
|
41184 | 609 |
fun static_conv thy consts = |
610 |
lift_triv_classes_conv thy (Code_Thingol.static_conv thy consts |
|
47573
6244475356ba
corrected Nbe.static_value: ignore cached compilations;
haftmann
parents:
47572
diff
changeset
|
611 |
(K (fn program => fn _ => oracle thy program (compile true thy program)))); |
24839 | 612 |
|
41184 | 613 |
fun static_value thy consts = lift_triv_classes_rew thy |
614 |
(Code_Thingol.static_value thy I consts |
|
47573
6244475356ba
corrected Nbe.static_value: ignore cached compilations;
haftmann
parents:
47572
diff
changeset
|
615 |
(K (fn program => fn _ => eval_term thy program (compile true thy program)))); |
41184 | 616 |
|
35371 | 617 |
|
39396 | 618 |
(** setup **) |
24155 | 619 |
|
42361 | 620 |
val setup = Value.add_evaluator ("nbe", dynamic_value o Proof_Context.theory_of); |
24155 | 621 |
|
622 |
end; |
|
28337 | 623 |