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