haftmann@24219
|
1 |
(* Title: Pure/Isar/code.ML
|
haftmann@24219
|
2 |
ID: $Id$
|
haftmann@24219
|
3 |
Author: Florian Haftmann, TU Muenchen
|
haftmann@24219
|
4 |
|
haftmann@24219
|
5 |
Abstract executable content of theory. Management of data dependent on
|
haftmann@25485
|
6 |
executable content. Cache assumes non-concurrent processing of a single theory.
|
haftmann@24219
|
7 |
*)
|
haftmann@24219
|
8 |
|
haftmann@24219
|
9 |
signature CODE =
|
haftmann@24219
|
10 |
sig
|
haftmann@24624
|
11 |
val add_func: thm -> theory -> theory
|
haftmann@28350
|
12 |
val add_nonlinear_func: thm -> theory -> theory
|
haftmann@24624
|
13 |
val add_liberal_func: thm -> theory -> theory
|
haftmann@24624
|
14 |
val add_default_func: thm -> theory -> theory
|
haftmann@24624
|
15 |
val add_default_func_attr: Attrib.src
|
haftmann@24219
|
16 |
val del_func: thm -> theory -> theory
|
haftmann@26021
|
17 |
val del_funcs: string -> theory -> theory
|
haftmann@28350
|
18 |
val add_funcl: string * (thm * bool) list Susp.T -> theory -> theory
|
haftmann@27557
|
19 |
val map_pre: (MetaSimplifier.simpset -> MetaSimplifier.simpset) -> theory -> theory
|
haftmann@27557
|
20 |
val map_post: (MetaSimplifier.simpset -> MetaSimplifier.simpset) -> theory -> theory
|
haftmann@24219
|
21 |
val add_inline: thm -> theory -> theory
|
haftmann@24219
|
22 |
val del_inline: thm -> theory -> theory
|
haftmann@24219
|
23 |
val add_post: thm -> theory -> theory
|
haftmann@24219
|
24 |
val del_post: thm -> theory -> theory
|
haftmann@27609
|
25 |
val add_functrans: string * (theory -> thm list -> thm list option) -> theory -> theory
|
haftmann@27557
|
26 |
val del_functrans: string -> theory -> theory
|
haftmann@24423
|
27 |
val add_datatype: (string * typ) list -> theory -> theory
|
haftmann@24423
|
28 |
val add_datatype_cmd: string list -> theory -> theory
|
haftmann@25485
|
29 |
val type_interpretation:
|
haftmann@25485
|
30 |
(string * ((string * sort) list * (string * typ list) list)
|
haftmann@25485
|
31 |
-> theory -> theory) -> theory -> theory
|
haftmann@24844
|
32 |
val add_case: thm -> theory -> theory
|
haftmann@24844
|
33 |
val add_undefined: string -> theory -> theory
|
haftmann@27675
|
34 |
val purge_data: theory -> theory
|
haftmann@24219
|
35 |
|
haftmann@24219
|
36 |
val coregular_algebra: theory -> Sorts.algebra
|
haftmann@24219
|
37 |
val operational_algebra: theory -> (sort -> sort) * Sorts.algebra
|
haftmann@28350
|
38 |
val these_funcs: theory -> string -> (thm * bool) list
|
haftmann@24219
|
39 |
val get_datatype: theory -> string -> ((string * sort) list * (string * typ list) list)
|
haftmann@24423
|
40 |
val get_datatype_of_constr: theory -> string -> string option
|
haftmann@24844
|
41 |
val get_case_data: theory -> string -> (int * string list) option
|
haftmann@24844
|
42 |
val is_undefined: theory -> string -> bool
|
haftmann@26970
|
43 |
val default_typ: theory -> string -> (string * sort) list * typ
|
haftmann@24219
|
44 |
|
haftmann@24219
|
45 |
val preprocess_conv: cterm -> thm
|
haftmann@24837
|
46 |
val preprocess_term: theory -> term -> term
|
haftmann@24219
|
47 |
val postprocess_conv: cterm -> thm
|
haftmann@24837
|
48 |
val postprocess_term: theory -> term -> term
|
haftmann@24219
|
49 |
|
haftmann@24219
|
50 |
val add_attribute: string * (Args.T list -> attribute * Args.T list) -> theory -> theory
|
haftmann@24219
|
51 |
|
haftmann@24219
|
52 |
val print_codesetup: theory -> unit
|
haftmann@24219
|
53 |
end;
|
haftmann@24219
|
54 |
|
haftmann@24219
|
55 |
signature CODE_DATA_ARGS =
|
haftmann@24219
|
56 |
sig
|
haftmann@24219
|
57 |
type T
|
haftmann@24219
|
58 |
val empty: T
|
haftmann@27609
|
59 |
val purge: theory -> string list -> T -> T
|
haftmann@24219
|
60 |
end;
|
haftmann@24219
|
61 |
|
haftmann@24219
|
62 |
signature CODE_DATA =
|
haftmann@24219
|
63 |
sig
|
haftmann@24219
|
64 |
type T
|
haftmann@24219
|
65 |
val get: theory -> T
|
haftmann@24219
|
66 |
val change: theory -> (T -> T) -> T
|
haftmann@24219
|
67 |
val change_yield: theory -> (T -> 'a * T) -> 'a * T
|
haftmann@24219
|
68 |
end;
|
haftmann@24219
|
69 |
|
haftmann@24219
|
70 |
signature PRIVATE_CODE =
|
haftmann@24219
|
71 |
sig
|
haftmann@24219
|
72 |
include CODE
|
haftmann@27609
|
73 |
val declare_data: Object.T -> (theory -> string list -> Object.T -> Object.T)
|
haftmann@27609
|
74 |
-> serial
|
haftmann@24219
|
75 |
val get_data: serial * ('a -> Object.T) * (Object.T -> 'a)
|
haftmann@24219
|
76 |
-> theory -> 'a
|
haftmann@24219
|
77 |
val change_data: serial * ('a -> Object.T) * (Object.T -> 'a)
|
haftmann@24219
|
78 |
-> theory -> ('a -> 'a) -> 'a
|
haftmann@24219
|
79 |
val change_yield_data: serial * ('a -> Object.T) * (Object.T -> 'a)
|
haftmann@24219
|
80 |
-> theory -> ('a -> 'b * 'a) -> 'b * 'a
|
haftmann@24219
|
81 |
end;
|
haftmann@24219
|
82 |
|
haftmann@24219
|
83 |
structure Code : PRIVATE_CODE =
|
haftmann@24219
|
84 |
struct
|
haftmann@24219
|
85 |
|
haftmann@25312
|
86 |
(** code attributes **)
|
haftmann@25312
|
87 |
|
haftmann@25312
|
88 |
structure CodeAttr = TheoryDataFun (
|
haftmann@25312
|
89 |
type T = (string * (Args.T list -> attribute * Args.T list)) list;
|
haftmann@25312
|
90 |
val empty = [];
|
haftmann@25312
|
91 |
val copy = I;
|
haftmann@25312
|
92 |
val extend = I;
|
haftmann@26970
|
93 |
fun merge _ = AList.merge (op = : string * string -> bool) (K true);
|
haftmann@25312
|
94 |
);
|
haftmann@24219
|
95 |
|
haftmann@25312
|
96 |
fun add_attribute (attr as (name, _)) =
|
haftmann@25312
|
97 |
let
|
haftmann@25312
|
98 |
fun add_parser ("", parser) attrs = attrs @ [("", parser)]
|
haftmann@25312
|
99 |
| add_parser (name, parser) attrs = (name, Args.$$$ name |-- parser) :: attrs;
|
haftmann@25312
|
100 |
fun error "" = error ("Code attribute already declared")
|
haftmann@25312
|
101 |
| error name = error ("Code attribute " ^ name ^ " already declared")
|
haftmann@25312
|
102 |
in CodeAttr.map (fn attrs => if AList.defined (op =) attrs name
|
haftmann@25312
|
103 |
then error name else add_parser attr attrs)
|
haftmann@25312
|
104 |
end;
|
haftmann@25312
|
105 |
|
haftmann@25312
|
106 |
val _ =
|
haftmann@25312
|
107 |
let
|
haftmann@25312
|
108 |
val code_attr = Attrib.syntax (Scan.peek (fn context =>
|
haftmann@25312
|
109 |
List.foldr op || Scan.fail (map snd (CodeAttr.get (Context.theory_of context)))));
|
haftmann@25312
|
110 |
in
|
wenzelm@26463
|
111 |
Context.>> (Context.map_theory
|
wenzelm@26463
|
112 |
(Attrib.add_attributes
|
wenzelm@26463
|
113 |
[("code", code_attr, "declare theorems for code generation")]))
|
haftmann@25312
|
114 |
end;
|
haftmann@25312
|
115 |
|
haftmann@25312
|
116 |
|
haftmann@28143
|
117 |
(** logical and syntactical specification of executable code **)
|
haftmann@24219
|
118 |
|
haftmann@28350
|
119 |
(* defining equations with linear flag, default flag and lazy theorems *)
|
haftmann@24219
|
120 |
|
haftmann@24219
|
121 |
fun pretty_lthms ctxt r = case Susp.peek r
|
haftmann@28350
|
122 |
of SOME thms => map (ProofContext.pretty_thm ctxt o fst) thms
|
haftmann@24219
|
123 |
| NONE => [Pretty.str "[...]"];
|
haftmann@24219
|
124 |
|
haftmann@24219
|
125 |
fun certificate thy f r =
|
haftmann@24219
|
126 |
case Susp.peek r
|
haftmann@28350
|
127 |
of SOME thms => (Susp.value o burrow_fst (f thy)) thms
|
haftmann@24844
|
128 |
| NONE => let
|
haftmann@24844
|
129 |
val thy_ref = Theory.check_thy thy;
|
haftmann@28350
|
130 |
in Susp.delay (fn () => (burrow_fst (f (Theory.deref thy_ref)) o Susp.force) r) end;
|
haftmann@24219
|
131 |
|
haftmann@28350
|
132 |
fun add_drop_redundant (thm, linear) thms =
|
haftmann@24219
|
133 |
let
|
haftmann@24219
|
134 |
val thy = Thm.theory_of_thm thm;
|
haftmann@24219
|
135 |
val args_of = snd o strip_comb o fst o Logic.dest_equals o Thm.plain_prop_of;
|
haftmann@24219
|
136 |
val args = args_of thm;
|
haftmann@28350
|
137 |
fun matches_args args' = length args <= length args' andalso
|
haftmann@28350
|
138 |
Pattern.matchess thy (args, curry Library.take (length args) args');
|
haftmann@28350
|
139 |
fun drop (thm', _) = if matches_args (args_of thm') then
|
haftmann@28350
|
140 |
(warning ("Code generator: dropping redundant defining equation\n" ^ Display.string_of_thm thm'); true)
|
haftmann@28350
|
141 |
else false;
|
haftmann@28350
|
142 |
in (thm, linear) :: filter_out drop thms end;
|
haftmann@24219
|
143 |
|
haftmann@28350
|
144 |
fun add_thm _ thm (false, thms) = (false, Susp.map_force (add_drop_redundant thm) thms)
|
haftmann@28350
|
145 |
| add_thm true thm (true, thms) = (true, Susp.map_force (fn thms => thms @ [thm]) thms)
|
haftmann@28143
|
146 |
| add_thm false thm (true, thms) = (false, Susp.value [thm]);
|
haftmann@24219
|
147 |
|
haftmann@28143
|
148 |
fun add_lthms lthms _ = (false, lthms);
|
haftmann@25312
|
149 |
|
haftmann@28350
|
150 |
fun del_thm thm = (apsnd o Susp.map_force) (remove (eq_fst Thm.eq_thm_prop) (thm, true));
|
haftmann@25312
|
151 |
|
haftmann@28143
|
152 |
fun merge_defthms ((true, _), defthms2) = defthms2
|
haftmann@28143
|
153 |
| merge_defthms (defthms1 as (false, _), (true, _)) = defthms1
|
haftmann@28143
|
154 |
| merge_defthms ((false, _), defthms2 as (false, _)) = defthms2;
|
haftmann@24219
|
155 |
|
haftmann@24219
|
156 |
|
haftmann@28143
|
157 |
(* syntactic datatypes *)
|
haftmann@24219
|
158 |
|
haftmann@24219
|
159 |
val eq_string = op = : string * string -> bool;
|
haftmann@28143
|
160 |
|
haftmann@24219
|
161 |
fun eq_dtyp ((vs1, cs1), (vs2, cs2)) =
|
haftmann@24219
|
162 |
gen_eq_set (eq_pair eq_string (gen_eq_set eq_string)) (vs1, vs2)
|
haftmann@24423
|
163 |
andalso gen_eq_set (eq_fst eq_string) (cs1, cs2);
|
haftmann@28143
|
164 |
|
haftmann@27582
|
165 |
fun merge_dtyps (tabs as (tab1, tab2)) =
|
haftmann@24219
|
166 |
let
|
haftmann@27582
|
167 |
fun join _ (cos as (_, cos2)) = if eq_dtyp cos then raise Symtab.SAME else cos2;
|
haftmann@27582
|
168 |
in Symtab.join join tabs end;
|
haftmann@24219
|
169 |
|
haftmann@28143
|
170 |
|
haftmann@28143
|
171 |
(* specification data *)
|
haftmann@28143
|
172 |
|
haftmann@24219
|
173 |
datatype spec = Spec of {
|
haftmann@28350
|
174 |
funcs: (bool * (thm * bool) list Susp.T) Symtab.table,
|
haftmann@24844
|
175 |
dtyps: ((string * sort) list * (string * typ list) list) Symtab.table,
|
haftmann@24844
|
176 |
cases: (int * string list) Symtab.table * unit Symtab.table
|
haftmann@24219
|
177 |
};
|
haftmann@24219
|
178 |
|
haftmann@24844
|
179 |
fun mk_spec (funcs, (dtyps, cases)) =
|
haftmann@24844
|
180 |
Spec { funcs = funcs, dtyps = dtyps, cases = cases };
|
haftmann@24844
|
181 |
fun map_spec f (Spec { funcs = funcs, dtyps = dtyps, cases = cases }) =
|
haftmann@24844
|
182 |
mk_spec (f (funcs, (dtyps, cases)));
|
haftmann@27609
|
183 |
fun merge_spec (Spec { funcs = funcs1, dtyps = dtyps1, cases = (cases1, undefs1) },
|
haftmann@27609
|
184 |
Spec { funcs = funcs2, dtyps = dtyps2, cases = (cases2, undefs2) }) =
|
haftmann@24219
|
185 |
let
|
haftmann@28143
|
186 |
val funcs = Symtab.join (K merge_defthms) (funcs1, funcs2);
|
haftmann@27582
|
187 |
val dtyps = merge_dtyps (dtyps1, dtyps2);
|
haftmann@27609
|
188 |
val cases = (Symtab.merge (K true) (cases1, cases2),
|
haftmann@27609
|
189 |
Symtab.merge (K true) (undefs1, undefs2));
|
haftmann@27557
|
190 |
in mk_spec (funcs, (dtyps, cases)) end;
|
haftmann@24219
|
191 |
|
haftmann@25312
|
192 |
|
haftmann@25312
|
193 |
(* pre- and postprocessor *)
|
haftmann@25312
|
194 |
|
haftmann@25312
|
195 |
datatype thmproc = Thmproc of {
|
haftmann@27557
|
196 |
pre: MetaSimplifier.simpset,
|
haftmann@27557
|
197 |
post: MetaSimplifier.simpset,
|
haftmann@27609
|
198 |
functrans: (string * (serial * (theory -> thm list -> thm list option))) list
|
haftmann@25312
|
199 |
};
|
haftmann@25312
|
200 |
|
haftmann@27557
|
201 |
fun mk_thmproc ((pre, post), functrans) =
|
haftmann@27557
|
202 |
Thmproc { pre = pre, post = post, functrans = functrans };
|
haftmann@27557
|
203 |
fun map_thmproc f (Thmproc { pre, post, functrans }) =
|
haftmann@27557
|
204 |
mk_thmproc (f ((pre, post), functrans));
|
haftmann@27557
|
205 |
fun merge_thmproc (Thmproc { pre = pre1, post = post1, functrans = functrans1 },
|
haftmann@27557
|
206 |
Thmproc { pre = pre2, post = post2, functrans = functrans2 }) =
|
haftmann@25312
|
207 |
let
|
haftmann@27557
|
208 |
val pre = MetaSimplifier.merge_ss (pre1, pre2);
|
haftmann@27557
|
209 |
val post = MetaSimplifier.merge_ss (post1, post2);
|
haftmann@27557
|
210 |
val functrans = AList.merge (op =) (eq_fst (op =)) (functrans1, functrans2);
|
haftmann@27557
|
211 |
in mk_thmproc ((pre, post), functrans) end;
|
haftmann@25312
|
212 |
|
haftmann@24219
|
213 |
datatype exec = Exec of {
|
haftmann@24219
|
214 |
thmproc: thmproc,
|
haftmann@24219
|
215 |
spec: spec
|
haftmann@24219
|
216 |
};
|
haftmann@24219
|
217 |
|
haftmann@28143
|
218 |
|
haftmann@28143
|
219 |
(* code setup data *)
|
haftmann@28143
|
220 |
|
haftmann@24219
|
221 |
fun mk_exec (thmproc, spec) =
|
haftmann@24219
|
222 |
Exec { thmproc = thmproc, spec = spec };
|
haftmann@24219
|
223 |
fun map_exec f (Exec { thmproc = thmproc, spec = spec }) =
|
haftmann@24219
|
224 |
mk_exec (f (thmproc, spec));
|
haftmann@27557
|
225 |
fun merge_exec (Exec { thmproc = thmproc1, spec = spec1 },
|
haftmann@24219
|
226 |
Exec { thmproc = thmproc2, spec = spec2 }) =
|
haftmann@24219
|
227 |
let
|
haftmann@27557
|
228 |
val thmproc = merge_thmproc (thmproc1, thmproc2);
|
haftmann@27557
|
229 |
val spec = merge_spec (spec1, spec2);
|
haftmann@27557
|
230 |
in mk_exec (thmproc, spec) end;
|
haftmann@27557
|
231 |
val empty_exec = mk_exec (mk_thmproc ((MetaSimplifier.empty_ss, MetaSimplifier.empty_ss), []),
|
haftmann@24844
|
232 |
mk_spec (Symtab.empty, (Symtab.empty, (Symtab.empty, Symtab.empty))));
|
haftmann@24219
|
233 |
|
haftmann@25312
|
234 |
fun the_thmproc (Exec { thmproc = Thmproc x, ...}) = x;
|
haftmann@24219
|
235 |
fun the_spec (Exec { spec = Spec x, ...}) = x;
|
haftmann@24219
|
236 |
val the_funcs = #funcs o the_spec;
|
haftmann@24219
|
237 |
val the_dtyps = #dtyps o the_spec;
|
haftmann@24844
|
238 |
val the_cases = #cases o the_spec;
|
haftmann@24219
|
239 |
val map_thmproc = map_exec o apfst o map_thmproc;
|
haftmann@24219
|
240 |
val map_funcs = map_exec o apsnd o map_spec o apfst;
|
haftmann@24844
|
241 |
val map_dtyps = map_exec o apsnd o map_spec o apsnd o apfst;
|
haftmann@24844
|
242 |
val map_cases = map_exec o apsnd o map_spec o apsnd o apsnd;
|
haftmann@24219
|
243 |
|
haftmann@24219
|
244 |
|
haftmann@24219
|
245 |
(* data slots dependent on executable content *)
|
haftmann@24219
|
246 |
|
haftmann@24219
|
247 |
(*private copy avoids potential conflict of table exceptions*)
|
haftmann@24219
|
248 |
structure Datatab = TableFun(type key = int val ord = int_ord);
|
haftmann@24219
|
249 |
|
haftmann@24219
|
250 |
local
|
haftmann@24219
|
251 |
|
haftmann@24219
|
252 |
type kind = {
|
haftmann@24219
|
253 |
empty: Object.T,
|
haftmann@27609
|
254 |
purge: theory -> string list -> Object.T -> Object.T
|
haftmann@24219
|
255 |
};
|
haftmann@24219
|
256 |
|
haftmann@24219
|
257 |
val kinds = ref (Datatab.empty: kind Datatab.table);
|
haftmann@24219
|
258 |
val kind_keys = ref ([]: serial list);
|
haftmann@24219
|
259 |
|
haftmann@24219
|
260 |
fun invoke f k = case Datatab.lookup (! kinds) k
|
haftmann@24219
|
261 |
of SOME kind => f kind
|
haftmann@24219
|
262 |
| NONE => sys_error "Invalid code data identifier";
|
haftmann@24219
|
263 |
|
haftmann@24219
|
264 |
in
|
haftmann@24219
|
265 |
|
haftmann@27609
|
266 |
fun declare_data empty purge =
|
haftmann@24219
|
267 |
let
|
haftmann@24219
|
268 |
val k = serial ();
|
haftmann@27609
|
269 |
val kind = {empty = empty, purge = purge};
|
haftmann@24219
|
270 |
val _ = change kinds (Datatab.update (k, kind));
|
haftmann@24219
|
271 |
val _ = change kind_keys (cons k);
|
haftmann@24219
|
272 |
in k end;
|
haftmann@24219
|
273 |
|
haftmann@27609
|
274 |
fun invoke_init k = invoke (fn kind => #empty kind) k;
|
haftmann@24219
|
275 |
|
haftmann@27609
|
276 |
fun invoke_purge_all thy cs =
|
haftmann@24219
|
277 |
fold (fn k => Datatab.map_entry k
|
haftmann@27609
|
278 |
(invoke (fn kind => #purge kind thy cs) k)) (! kind_keys);
|
haftmann@24219
|
279 |
|
haftmann@24219
|
280 |
end; (*local*)
|
haftmann@24219
|
281 |
|
haftmann@24219
|
282 |
|
haftmann@25312
|
283 |
(** theory store **)
|
haftmann@24219
|
284 |
|
haftmann@24219
|
285 |
local
|
haftmann@24219
|
286 |
|
haftmann@24219
|
287 |
type data = Object.T Datatab.table;
|
haftmann@27609
|
288 |
val empty_data = Datatab.empty : data;
|
haftmann@24219
|
289 |
|
haftmann@24219
|
290 |
structure CodeData = TheoryDataFun
|
haftmann@24219
|
291 |
(
|
haftmann@24219
|
292 |
type T = exec * data ref;
|
haftmann@27609
|
293 |
val empty = (empty_exec, ref empty_data);
|
haftmann@24219
|
294 |
fun copy (exec, data) = (exec, ref (! data));
|
haftmann@24219
|
295 |
val extend = copy;
|
haftmann@24219
|
296 |
fun merge pp ((exec1, data1), (exec2, data2)) =
|
haftmann@27609
|
297 |
(merge_exec (exec1, exec2), ref empty_data);
|
haftmann@24219
|
298 |
);
|
haftmann@24219
|
299 |
|
wenzelm@26463
|
300 |
val _ = Context.>> (Context.map_theory CodeData.init);
|
haftmann@24219
|
301 |
|
haftmann@24219
|
302 |
fun thy_data f thy = f ((snd o CodeData.get) thy);
|
haftmann@24219
|
303 |
|
haftmann@24219
|
304 |
fun get_ensure_init kind data_ref =
|
haftmann@24219
|
305 |
case Datatab.lookup (! data_ref) kind
|
haftmann@24219
|
306 |
of SOME x => x
|
haftmann@27609
|
307 |
| NONE => let val y = invoke_init kind
|
haftmann@24219
|
308 |
in (change data_ref (Datatab.update (kind, y)); y) end;
|
haftmann@24219
|
309 |
|
haftmann@24219
|
310 |
in
|
haftmann@24219
|
311 |
|
haftmann@24219
|
312 |
(* access to executable content *)
|
haftmann@24219
|
313 |
|
haftmann@24844
|
314 |
val the_exec = fst o CodeData.get;
|
haftmann@24219
|
315 |
|
haftmann@27983
|
316 |
fun complete_class_params thy cs =
|
haftmann@27983
|
317 |
fold (fn c => case AxClass.inst_of_param thy c
|
haftmann@27983
|
318 |
of NONE => insert (op =) c
|
haftmann@27983
|
319 |
| SOME (c', _) => insert (op =) c' #> insert (op =) c) cs [];
|
haftmann@27983
|
320 |
|
haftmann@24219
|
321 |
fun map_exec_purge touched f thy =
|
haftmann@27609
|
322 |
CodeData.map (fn (exec, data) => (f exec, ref (case touched
|
haftmann@27983
|
323 |
of SOME cs => invoke_purge_all thy (complete_class_params thy cs) (! data)
|
haftmann@27609
|
324 |
| NONE => empty_data))) thy;
|
haftmann@24219
|
325 |
|
haftmann@27675
|
326 |
val purge_data = (CodeData.map o apsnd) (K (ref empty_data));
|
haftmann@27675
|
327 |
|
haftmann@24219
|
328 |
|
haftmann@24219
|
329 |
(* access to data dependent on abstract executable content *)
|
haftmann@24219
|
330 |
|
haftmann@24219
|
331 |
fun get_data (kind, _, dest) = thy_data (get_ensure_init kind #> dest);
|
haftmann@24219
|
332 |
|
haftmann@24219
|
333 |
fun change_data (kind, mk, dest) =
|
haftmann@24219
|
334 |
let
|
haftmann@24219
|
335 |
fun chnge data_ref f =
|
haftmann@24219
|
336 |
let
|
haftmann@24219
|
337 |
val data = get_ensure_init kind data_ref;
|
haftmann@24219
|
338 |
val data' = f (dest data);
|
haftmann@24219
|
339 |
in (change data_ref (Datatab.update (kind, mk data')); data') end;
|
haftmann@24219
|
340 |
in thy_data chnge end;
|
haftmann@24219
|
341 |
|
haftmann@24219
|
342 |
fun change_yield_data (kind, mk, dest) =
|
haftmann@24219
|
343 |
let
|
haftmann@24219
|
344 |
fun chnge data_ref f =
|
haftmann@24219
|
345 |
let
|
haftmann@24219
|
346 |
val data = get_ensure_init kind data_ref;
|
haftmann@24219
|
347 |
val (x, data') = f (dest data);
|
haftmann@24219
|
348 |
in (x, (change data_ref (Datatab.update (kind, mk data')); data')) end;
|
haftmann@24219
|
349 |
in thy_data chnge end;
|
haftmann@24219
|
350 |
|
haftmann@24219
|
351 |
end; (*local*)
|
haftmann@24219
|
352 |
|
haftmann@24219
|
353 |
|
haftmann@24219
|
354 |
(* print executable content *)
|
haftmann@24219
|
355 |
|
haftmann@24219
|
356 |
fun print_codesetup thy =
|
haftmann@24219
|
357 |
let
|
haftmann@24219
|
358 |
val ctxt = ProofContext.init thy;
|
haftmann@24844
|
359 |
val exec = the_exec thy;
|
haftmann@28143
|
360 |
fun pretty_func (s, (_, lthms)) =
|
haftmann@24219
|
361 |
(Pretty.block o Pretty.fbreaks) (
|
haftmann@28143
|
362 |
Pretty.str s :: pretty_lthms ctxt lthms
|
haftmann@24219
|
363 |
);
|
haftmann@24219
|
364 |
fun pretty_dtyp (s, []) =
|
haftmann@24219
|
365 |
Pretty.str s
|
haftmann@24219
|
366 |
| pretty_dtyp (s, cos) =
|
haftmann@24219
|
367 |
(Pretty.block o Pretty.breaks) (
|
haftmann@24219
|
368 |
Pretty.str s
|
haftmann@24219
|
369 |
:: Pretty.str "="
|
haftmann@24219
|
370 |
:: separate (Pretty.str "|") (map (fn (c, []) => Pretty.str c
|
haftmann@24219
|
371 |
| (c, tys) =>
|
haftmann@24219
|
372 |
(Pretty.block o Pretty.breaks)
|
haftmann@28054
|
373 |
(Pretty.str (Code_Unit.string_of_const thy c)
|
wenzelm@26947
|
374 |
:: Pretty.str "of"
|
wenzelm@26947
|
375 |
:: map (Pretty.quote o Syntax.pretty_typ_global thy) tys)) cos)
|
haftmann@24219
|
376 |
);
|
haftmann@27557
|
377 |
val pre = (#pre o the_thmproc) exec;
|
haftmann@27557
|
378 |
val post = (#post o the_thmproc) exec;
|
haftmann@27557
|
379 |
val functrans = (map fst o #functrans o the_thmproc) exec;
|
haftmann@27609
|
380 |
val funcs = the_funcs exec
|
haftmann@24423
|
381 |
|> Symtab.dest
|
haftmann@28054
|
382 |
|> (map o apfst) (Code_Unit.string_of_const thy)
|
haftmann@24219
|
383 |
|> sort (string_ord o pairself fst);
|
haftmann@24219
|
384 |
val dtyps = the_dtyps exec
|
haftmann@24219
|
385 |
|> Symtab.dest
|
wenzelm@26947
|
386 |
|> map (fn (dtco, (vs, cos)) =>
|
wenzelm@26947
|
387 |
(Syntax.string_of_typ_global thy (Type (dtco, map TFree vs)), cos))
|
haftmann@24219
|
388 |
|> sort (string_ord o pairself fst)
|
haftmann@24219
|
389 |
in
|
haftmann@24219
|
390 |
(Pretty.writeln o Pretty.chunks) [
|
haftmann@24219
|
391 |
Pretty.block (
|
haftmann@24219
|
392 |
Pretty.str "defining equations:"
|
haftmann@24219
|
393 |
:: Pretty.fbrk
|
haftmann@27609
|
394 |
:: (Pretty.fbreaks o map pretty_func) funcs
|
haftmann@24219
|
395 |
),
|
haftmann@27557
|
396 |
Pretty.block [
|
haftmann@27557
|
397 |
Pretty.str "preprocessing simpset:",
|
haftmann@27557
|
398 |
Pretty.fbrk,
|
haftmann@27557
|
399 |
MetaSimplifier.pretty_ss pre
|
haftmann@27557
|
400 |
],
|
haftmann@27557
|
401 |
Pretty.block [
|
haftmann@27557
|
402 |
Pretty.str "postprocessing simpset:",
|
haftmann@27557
|
403 |
Pretty.fbrk,
|
haftmann@27557
|
404 |
MetaSimplifier.pretty_ss post
|
haftmann@27557
|
405 |
],
|
haftmann@24219
|
406 |
Pretty.block (
|
haftmann@27609
|
407 |
Pretty.str "function transformers:"
|
haftmann@24219
|
408 |
:: Pretty.fbrk
|
haftmann@27557
|
409 |
:: (Pretty.fbreaks o map Pretty.str) functrans
|
haftmann@25968
|
410 |
),
|
haftmann@25968
|
411 |
Pretty.block (
|
haftmann@24219
|
412 |
Pretty.str "datatypes:"
|
haftmann@24219
|
413 |
:: Pretty.fbrk
|
haftmann@24219
|
414 |
:: (Pretty.fbreaks o map pretty_dtyp) dtyps
|
haftmann@24219
|
415 |
)
|
haftmann@24219
|
416 |
]
|
haftmann@24219
|
417 |
end;
|
haftmann@24219
|
418 |
|
haftmann@24219
|
419 |
|
haftmann@24219
|
420 |
|
haftmann@24219
|
421 |
(** theorem transformation and certification **)
|
haftmann@24219
|
422 |
|
haftmann@26970
|
423 |
fun const_of thy = dest_Const o fst o strip_comb o fst o Logic.dest_equals
|
haftmann@26970
|
424 |
o ObjectLogic.drop_judgment thy o Thm.plain_prop_of;
|
haftmann@26970
|
425 |
|
haftmann@26970
|
426 |
fun const_of_func thy = AxClass.unoverload_const thy o const_of thy;
|
haftmann@26970
|
427 |
|
haftmann@24219
|
428 |
fun common_typ_funcs [] = []
|
haftmann@24219
|
429 |
| common_typ_funcs [thm] = [thm]
|
haftmann@26970
|
430 |
| common_typ_funcs (thms as thm :: _) = (*FIXME is too general*)
|
haftmann@24219
|
431 |
let
|
haftmann@24219
|
432 |
val thy = Thm.theory_of_thm thm;
|
haftmann@24219
|
433 |
fun incr_thm thm max =
|
haftmann@24219
|
434 |
let
|
haftmann@24219
|
435 |
val thm' = incr_indexes max thm;
|
haftmann@24219
|
436 |
val max' = Thm.maxidx_of thm' + 1;
|
haftmann@24219
|
437 |
in (thm', max') end;
|
haftmann@24219
|
438 |
val (thms', maxidx) = fold_map incr_thm thms 0;
|
haftmann@26970
|
439 |
val ty1 :: tys = map (snd o const_of thy) thms';
|
haftmann@24219
|
440 |
fun unify ty env = Sign.typ_unify thy (ty1, ty) env
|
haftmann@24219
|
441 |
handle Type.TUNIFY =>
|
haftmann@24219
|
442 |
error ("Type unificaton failed, while unifying defining equations\n"
|
haftmann@24219
|
443 |
^ (cat_lines o map Display.string_of_thm) thms
|
haftmann@24219
|
444 |
^ "\nwith types\n"
|
haftmann@28054
|
445 |
^ (cat_lines o map (Code_Unit.string_of_typ thy)) (ty1 :: tys));
|
haftmann@24219
|
446 |
val (env, _) = fold unify tys (Vartab.empty, maxidx)
|
haftmann@24219
|
447 |
val instT = Vartab.fold (fn (x_i, (sort, ty)) =>
|
haftmann@24219
|
448 |
cons (Thm.ctyp_of thy (TVar (x_i, sort)), Thm.ctyp_of thy ty)) env [];
|
haftmann@24219
|
449 |
in map (Thm.instantiate (instT, [])) thms' end;
|
haftmann@24219
|
450 |
|
haftmann@24219
|
451 |
fun certify_const thy const thms =
|
haftmann@24219
|
452 |
let
|
haftmann@24423
|
453 |
fun cert thm = if const = const_of_func thy thm
|
haftmann@24219
|
454 |
then thm else error ("Wrong head of defining equation,\nexpected constant "
|
haftmann@28054
|
455 |
^ Code_Unit.string_of_const thy const ^ "\n" ^ Display.string_of_thm thm)
|
haftmann@24219
|
456 |
in map cert thms end;
|
haftmann@24219
|
457 |
|
haftmann@24219
|
458 |
|
haftmann@24219
|
459 |
|
haftmann@24219
|
460 |
(** operational sort algebra and class discipline **)
|
haftmann@24219
|
461 |
|
haftmann@24219
|
462 |
local
|
haftmann@24219
|
463 |
|
haftmann@24219
|
464 |
fun aggr_neutr f y [] = y
|
haftmann@24219
|
465 |
| aggr_neutr f y (x::xs) = aggr_neutr f (f y x) xs;
|
haftmann@24219
|
466 |
|
haftmann@24219
|
467 |
fun aggregate f [] = NONE
|
haftmann@24219
|
468 |
| aggregate f (x::xs) = SOME (aggr_neutr f x xs);
|
haftmann@24219
|
469 |
|
haftmann@25462
|
470 |
fun inter_sorts algebra =
|
haftmann@25462
|
471 |
aggregate (map2 (curry (Sorts.inter_sort algebra)));
|
haftmann@24219
|
472 |
|
haftmann@24219
|
473 |
fun specific_constraints thy (class, tyco) =
|
haftmann@24219
|
474 |
let
|
haftmann@24219
|
475 |
val vs = Name.invents Name.context "" (Sign.arity_number thy tyco);
|
wenzelm@24969
|
476 |
val classparams = (map fst o these o try (#params o AxClass.get_info thy)) class;
|
haftmann@24837
|
477 |
val funcs = classparams
|
haftmann@25597
|
478 |
|> map_filter (fn c => try (AxClass.param_of_inst thy) (c, tyco))
|
haftmann@24844
|
479 |
|> map (Symtab.lookup ((the_funcs o the_exec) thy))
|
haftmann@28350
|
480 |
|> (map o Option.map) (map fst o Susp.force o snd)
|
haftmann@24219
|
481 |
|> maps these
|
haftmann@28143
|
482 |
|> map (Thm.transfer thy);
|
haftmann@24423
|
483 |
fun sorts_of [Type (_, tys)] = map (snd o dest_TVar) tys
|
haftmann@24423
|
484 |
| sorts_of tys = map (snd o dest_TVar) tys;
|
haftmann@26970
|
485 |
val sorts = map (sorts_of o Sign.const_typargs thy o const_of thy) funcs;
|
haftmann@24219
|
486 |
in sorts end;
|
haftmann@24219
|
487 |
|
haftmann@25462
|
488 |
fun weakest_constraints thy algebra (class, tyco) =
|
haftmann@24219
|
489 |
let
|
haftmann@25462
|
490 |
val all_superclasses = Sorts.complete_sort algebra [class];
|
haftmann@25462
|
491 |
in case inter_sorts algebra (maps (fn class => specific_constraints thy (class, tyco)) all_superclasses)
|
haftmann@24219
|
492 |
of SOME sorts => sorts
|
haftmann@25462
|
493 |
| NONE => Sorts.mg_domain algebra tyco [class]
|
haftmann@24219
|
494 |
end;
|
haftmann@24219
|
495 |
|
haftmann@25462
|
496 |
fun strongest_constraints thy algebra (class, tyco) =
|
haftmann@24219
|
497 |
let
|
haftmann@24219
|
498 |
val all_subclasses = class :: Graph.all_preds ((#classes o Sorts.rep_algebra) algebra) [class];
|
haftmann@24219
|
499 |
val inst_subclasses = filter (can (Sorts.mg_domain algebra tyco) o single) all_subclasses;
|
haftmann@25462
|
500 |
in case inter_sorts algebra (maps (fn class => specific_constraints thy (class, tyco)) inst_subclasses)
|
haftmann@24219
|
501 |
of SOME sorts => sorts
|
haftmann@24219
|
502 |
| NONE => replicate
|
haftmann@25462
|
503 |
(Sign.arity_number thy tyco) (Sorts.minimize_sort algebra (Sorts.all_classes algebra))
|
haftmann@25462
|
504 |
end;
|
haftmann@25462
|
505 |
|
haftmann@25462
|
506 |
fun get_algebra thy (class, tyco) =
|
haftmann@25462
|
507 |
let
|
haftmann@25462
|
508 |
val base_algebra = Sign.classes_of thy;
|
haftmann@25462
|
509 |
in if can (Sorts.mg_domain base_algebra tyco) [class]
|
haftmann@25462
|
510 |
then base_algebra
|
haftmann@25462
|
511 |
else let
|
haftmann@25462
|
512 |
val superclasses = Sorts.super_classes base_algebra class;
|
haftmann@25462
|
513 |
val sorts = inter_sorts base_algebra
|
haftmann@25462
|
514 |
(map_filter (fn class => try (Sorts.mg_domain base_algebra tyco) [class]) superclasses)
|
haftmann@25462
|
515 |
|> the_default (replicate (Sign.arity_number thy tyco) [])
|
haftmann@25462
|
516 |
in
|
haftmann@25462
|
517 |
base_algebra
|
wenzelm@26947
|
518 |
|> Sorts.add_arities (Syntax.pp_global thy) (tyco, [(class, sorts)])
|
haftmann@25462
|
519 |
end
|
haftmann@24219
|
520 |
end;
|
haftmann@24219
|
521 |
|
haftmann@24837
|
522 |
fun gen_classparam_typ constr thy class (c, tyco) =
|
haftmann@24219
|
523 |
let
|
haftmann@25462
|
524 |
val algebra = get_algebra thy (class, tyco);
|
wenzelm@24969
|
525 |
val cs = these (try (#params o AxClass.get_info thy) class);
|
haftmann@25462
|
526 |
val SOME ty = AList.lookup (op =) cs c;
|
wenzelm@24969
|
527 |
val sort_args = Name.names (Name.declare Name.aT Name.context) Name.aT
|
haftmann@25462
|
528 |
(constr thy algebra (class, tyco));
|
haftmann@24219
|
529 |
val ty_inst = Type (tyco, map TFree sort_args);
|
haftmann@24219
|
530 |
in Logic.varifyT (map_type_tfree (K ty_inst) ty) end;
|
haftmann@24219
|
531 |
|
haftmann@24219
|
532 |
fun retrieve_algebra thy operational =
|
wenzelm@26947
|
533 |
Sorts.subalgebra (Syntax.pp_global thy) operational
|
haftmann@25462
|
534 |
(weakest_constraints thy (Sign.classes_of thy))
|
haftmann@24219
|
535 |
(Sign.classes_of thy);
|
haftmann@24219
|
536 |
|
haftmann@24219
|
537 |
in
|
haftmann@24219
|
538 |
|
haftmann@24219
|
539 |
fun coregular_algebra thy = retrieve_algebra thy (K true) |> snd;
|
haftmann@24219
|
540 |
fun operational_algebra thy =
|
haftmann@24219
|
541 |
let
|
haftmann@24219
|
542 |
fun add_iff_operational class =
|
wenzelm@24928
|
543 |
can (AxClass.get_info thy) class ? cons class;
|
haftmann@24219
|
544 |
val operational_classes = fold add_iff_operational (Sign.all_classes thy) []
|
haftmann@24219
|
545 |
in retrieve_algebra thy (member (op =) operational_classes) end;
|
haftmann@24219
|
546 |
|
haftmann@24837
|
547 |
val classparam_weakest_typ = gen_classparam_typ weakest_constraints;
|
haftmann@24837
|
548 |
val classparam_strongest_typ = gen_classparam_typ strongest_constraints;
|
haftmann@24219
|
549 |
|
haftmann@24219
|
550 |
fun assert_func_typ thm =
|
haftmann@24219
|
551 |
let
|
haftmann@24219
|
552 |
val thy = Thm.theory_of_thm thm;
|
haftmann@24837
|
553 |
fun check_typ_classparam tyco (c, thm) =
|
haftmann@24219
|
554 |
let
|
haftmann@24423
|
555 |
val SOME class = AxClass.class_of_param thy c;
|
haftmann@26970
|
556 |
val (_, ty) = const_of thy thm;
|
haftmann@24837
|
557 |
val ty_decl = classparam_weakest_typ thy class (c, tyco);
|
haftmann@24837
|
558 |
val ty_strongest = classparam_strongest_typ thy class (c, tyco);
|
haftmann@24219
|
559 |
fun constrain thm =
|
haftmann@24219
|
560 |
let
|
haftmann@24219
|
561 |
val max = Thm.maxidx_of thm + 1;
|
haftmann@24219
|
562 |
val ty_decl' = Logic.incr_tvar max ty_decl;
|
haftmann@26970
|
563 |
val (_, ty') = const_of thy thm;
|
haftmann@24219
|
564 |
val (env, _) = Sign.typ_unify thy (ty_decl', ty') (Vartab.empty, max);
|
haftmann@24219
|
565 |
val instT = Vartab.fold (fn (x_i, (sort, ty)) =>
|
haftmann@24219
|
566 |
cons (Thm.ctyp_of thy (TVar (x_i, sort)), Thm.ctyp_of thy ty)) env [];
|
haftmann@24219
|
567 |
in Thm.instantiate (instT, []) thm end;
|
haftmann@24219
|
568 |
in if Sign.typ_instance thy (ty_strongest, ty)
|
haftmann@24219
|
569 |
then if Sign.typ_instance thy (ty, ty_decl)
|
haftmann@24219
|
570 |
then thm
|
haftmann@28054
|
571 |
else (warning ("Constraining type\n" ^ Code_Unit.string_of_typ thy ty
|
haftmann@24219
|
572 |
^ "\nof defining equation\n"
|
wenzelm@26928
|
573 |
^ Display.string_of_thm thm
|
haftmann@24219
|
574 |
^ "\nto permitted most general type\n"
|
haftmann@28054
|
575 |
^ Code_Unit.string_of_typ thy ty_decl);
|
haftmann@24219
|
576 |
constrain thm)
|
haftmann@28054
|
577 |
else Code_Unit.bad_thm ("Type\n" ^ Code_Unit.string_of_typ thy ty
|
haftmann@24219
|
578 |
^ "\nof defining equation\n"
|
wenzelm@26928
|
579 |
^ Display.string_of_thm thm
|
haftmann@24219
|
580 |
^ "\nis incompatible with permitted least general type\n"
|
haftmann@28054
|
581 |
^ Code_Unit.string_of_typ thy ty_strongest)
|
haftmann@24423
|
582 |
end;
|
haftmann@24423
|
583 |
fun check_typ_fun (c, thm) =
|
haftmann@24219
|
584 |
let
|
haftmann@26970
|
585 |
val (_, ty) = const_of thy thm;
|
haftmann@24219
|
586 |
val ty_decl = Sign.the_const_type thy c;
|
haftmann@24219
|
587 |
in if Sign.typ_equiv thy (Type.strip_sorts ty_decl, Type.strip_sorts ty)
|
haftmann@24219
|
588 |
then thm
|
haftmann@28054
|
589 |
else Code_Unit.bad_thm ("Type\n" ^ Code_Unit.string_of_typ thy ty
|
haftmann@24219
|
590 |
^ "\nof defining equation\n"
|
wenzelm@26928
|
591 |
^ Display.string_of_thm thm
|
haftmann@24219
|
592 |
^ "\nis incompatible with declared function type\n"
|
haftmann@28054
|
593 |
^ Code_Unit.string_of_typ thy ty_decl)
|
haftmann@24219
|
594 |
end;
|
haftmann@24423
|
595 |
fun check_typ (c, thm) =
|
haftmann@25597
|
596 |
case AxClass.inst_of_param thy c
|
haftmann@24837
|
597 |
of SOME (c, tyco) => check_typ_classparam tyco (c, thm)
|
haftmann@24423
|
598 |
| NONE => check_typ_fun (c, thm);
|
haftmann@24423
|
599 |
in check_typ (const_of_func thy thm, thm) end;
|
haftmann@24219
|
600 |
|
haftmann@28350
|
601 |
fun mk_func linear = Code_Unit.error_thm (assert_func_typ o Code_Unit.mk_func linear);
|
haftmann@28350
|
602 |
val mk_liberal_func = Code_Unit.warning_thm (assert_func_typ o Code_Unit.mk_func true);
|
haftmann@28350
|
603 |
val mk_syntactic_func = Code_Unit.warning_thm (assert_func_typ o Code_Unit.mk_func false);
|
haftmann@28350
|
604 |
val mk_default_func = Code_Unit.try_thm (assert_func_typ o Code_Unit.mk_func true);
|
haftmann@24219
|
605 |
|
haftmann@28143
|
606 |
end; (*local*)
|
haftmann@24219
|
607 |
|
haftmann@24219
|
608 |
|
haftmann@24219
|
609 |
(** interfaces and attributes **)
|
haftmann@24219
|
610 |
|
haftmann@24624
|
611 |
fun delete_force msg key xs =
|
haftmann@24624
|
612 |
if AList.defined (op =) xs key then AList.delete (op =) key xs
|
haftmann@24624
|
613 |
else error ("No such " ^ msg ^ ": " ^ quote key);
|
haftmann@24624
|
614 |
|
haftmann@24423
|
615 |
fun get_datatype thy tyco =
|
haftmann@24844
|
616 |
case Symtab.lookup ((the_dtyps o the_exec) thy) tyco
|
haftmann@24423
|
617 |
of SOME spec => spec
|
haftmann@24423
|
618 |
| NONE => Sign.arity_number thy tyco
|
wenzelm@24848
|
619 |
|> Name.invents Name.context Name.aT
|
haftmann@24423
|
620 |
|> map (rpair [])
|
haftmann@24423
|
621 |
|> rpair [];
|
haftmann@24423
|
622 |
|
haftmann@24423
|
623 |
fun get_datatype_of_constr thy c =
|
haftmann@24423
|
624 |
case (snd o strip_type o Sign.the_const_type thy) c
|
haftmann@24423
|
625 |
of Type (tyco, _) => if member (op =)
|
haftmann@24844
|
626 |
((the_default [] o Option.map (map fst o snd) o Symtab.lookup ((the_dtyps o the_exec) thy)) tyco) c
|
haftmann@24423
|
627 |
then SOME tyco else NONE
|
haftmann@24423
|
628 |
| _ => NONE;
|
haftmann@24423
|
629 |
|
haftmann@24423
|
630 |
fun get_constr_typ thy c =
|
haftmann@24423
|
631 |
case get_datatype_of_constr thy c
|
haftmann@24423
|
632 |
of SOME tyco => let
|
haftmann@24423
|
633 |
val (vs, cos) = get_datatype thy tyco;
|
haftmann@24423
|
634 |
val SOME tys = AList.lookup (op =) cos c;
|
haftmann@24423
|
635 |
val ty = tys ---> Type (tyco, map TFree vs);
|
haftmann@24423
|
636 |
in SOME (Logic.varifyT ty) end
|
haftmann@24423
|
637 |
| NONE => NONE;
|
haftmann@24423
|
638 |
|
haftmann@24844
|
639 |
val get_case_data = Symtab.lookup o fst o the_cases o the_exec;
|
haftmann@24844
|
640 |
|
haftmann@24844
|
641 |
val is_undefined = Symtab.defined o snd o the_cases o the_exec;
|
haftmann@24844
|
642 |
|
haftmann@28350
|
643 |
fun gen_add_func linear strict default thm thy =
|
haftmann@28350
|
644 |
case (if strict then SOME o mk_func linear else mk_liberal_func) thm
|
haftmann@28143
|
645 |
of SOME func =>
|
haftmann@28143
|
646 |
let
|
haftmann@28143
|
647 |
val c = const_of_func thy func;
|
haftmann@28143
|
648 |
val _ = if strict andalso (is_some o AxClass.class_of_param thy) c
|
haftmann@28143
|
649 |
then error ("Rejected polymorphic equation for overloaded constant:\n"
|
haftmann@28143
|
650 |
^ Display.string_of_thm thm)
|
haftmann@28143
|
651 |
else ();
|
haftmann@28143
|
652 |
val _ = if strict andalso (is_some o get_datatype_of_constr thy) c
|
haftmann@28143
|
653 |
then error ("Rejected equation for datatype constructor:\n"
|
haftmann@28143
|
654 |
^ Display.string_of_thm func)
|
haftmann@28143
|
655 |
else ();
|
haftmann@28143
|
656 |
in
|
haftmann@28143
|
657 |
(map_exec_purge (SOME [c]) o map_funcs) (Symtab.map_default
|
haftmann@28350
|
658 |
(c, (true, Susp.value [])) (add_thm default (func, linear))) thy
|
haftmann@24624
|
659 |
end
|
haftmann@24624
|
660 |
| NONE => thy;
|
haftmann@24624
|
661 |
|
haftmann@28350
|
662 |
val add_func = gen_add_func true true false;
|
haftmann@28350
|
663 |
val add_liberal_func = gen_add_func true false false;
|
haftmann@28350
|
664 |
val add_default_func = gen_add_func true false true;
|
haftmann@28350
|
665 |
val add_nonlinear_func = gen_add_func false true false;
|
haftmann@24219
|
666 |
|
haftmann@28350
|
667 |
fun del_func thm thy = case mk_syntactic_func thm
|
haftmann@28143
|
668 |
of SOME func => let
|
haftmann@28143
|
669 |
val c = const_of_func thy func;
|
haftmann@28143
|
670 |
in map_exec_purge (SOME [c]) (map_funcs
|
haftmann@28143
|
671 |
(Symtab.map_entry c (del_thm func))) thy
|
haftmann@28143
|
672 |
end
|
haftmann@28143
|
673 |
| NONE => thy;
|
haftmann@24219
|
674 |
|
haftmann@28143
|
675 |
fun del_funcs c = map_exec_purge (SOME [c])
|
haftmann@28143
|
676 |
(map_funcs (Symtab.map_entry c (K (false, Susp.value []))));
|
haftmann@26021
|
677 |
|
haftmann@28143
|
678 |
fun add_funcl (c, lthms) thy =
|
haftmann@24219
|
679 |
let
|
haftmann@28143
|
680 |
val lthms' = certificate thy (fn thy => certify_const thy c) lthms;
|
haftmann@24219
|
681 |
(*FIXME must check compatibility with sort algebra;
|
haftmann@24219
|
682 |
alas, naive checking results in non-termination!*)
|
haftmann@24219
|
683 |
in
|
haftmann@28143
|
684 |
map_exec_purge (SOME [c])
|
haftmann@28143
|
685 |
(map_funcs (Symtab.map_default (c, (true, Susp.value []))
|
haftmann@28143
|
686 |
(add_lthms lthms'))) thy
|
haftmann@24219
|
687 |
end;
|
haftmann@24219
|
688 |
|
haftmann@24624
|
689 |
val add_default_func_attr = Attrib.internal (fn _ => Thm.declaration_attribute
|
haftmann@24624
|
690 |
(fn thm => Context.mapping (add_default_func thm) I));
|
haftmann@24219
|
691 |
|
haftmann@25485
|
692 |
structure TypeInterpretation = InterpretationFun(type T = string * serial val eq = eq_snd (op =) : T * T -> bool);
|
haftmann@25462
|
693 |
|
haftmann@24423
|
694 |
fun add_datatype raw_cs thy =
|
haftmann@24219
|
695 |
let
|
haftmann@25597
|
696 |
val cs = map (fn c_ty as (_, ty) => (AxClass.unoverload_const thy c_ty, ty)) raw_cs;
|
haftmann@28054
|
697 |
val (tyco, vs_cos) = Code_Unit.constrset_of_consts thy cs;
|
haftmann@25462
|
698 |
val cs' = map fst (snd vs_cos);
|
haftmann@25462
|
699 |
val purge_cs = case Symtab.lookup ((the_dtyps o the_exec) thy) tyco
|
haftmann@25462
|
700 |
of SOME (vs, cos) => if null cos then NONE else SOME (cs' @ map fst cos)
|
haftmann@24423
|
701 |
| NONE => NONE;
|
haftmann@24219
|
702 |
in
|
haftmann@24219
|
703 |
thy
|
haftmann@25462
|
704 |
|> map_exec_purge purge_cs (map_dtyps (Symtab.update (tyco, vs_cos))
|
haftmann@24423
|
705 |
#> map_funcs (fold (Symtab.delete_safe o fst) cs))
|
haftmann@25485
|
706 |
|> TypeInterpretation.data (tyco, serial ())
|
haftmann@24219
|
707 |
end;
|
haftmann@24219
|
708 |
|
haftmann@25485
|
709 |
fun type_interpretation f = TypeInterpretation.interpretation
|
haftmann@25485
|
710 |
(fn (tyco, _) => fn thy => f (tyco, get_datatype thy tyco) thy);
|
haftmann@25485
|
711 |
|
haftmann@24423
|
712 |
fun add_datatype_cmd raw_cs thy =
|
haftmann@24423
|
713 |
let
|
haftmann@28054
|
714 |
val cs = map (Code_Unit.read_bare_const thy) raw_cs;
|
haftmann@24423
|
715 |
in add_datatype cs thy end;
|
haftmann@24219
|
716 |
|
haftmann@24844
|
717 |
fun add_case thm thy =
|
haftmann@24844
|
718 |
let
|
haftmann@28054
|
719 |
val entry as (c, _) = Code_Unit.case_cert thm;
|
haftmann@24844
|
720 |
in
|
haftmann@24844
|
721 |
(map_exec_purge (SOME [c]) o map_cases o apfst) (Symtab.update entry) thy
|
haftmann@24844
|
722 |
end;
|
haftmann@24844
|
723 |
|
haftmann@24844
|
724 |
fun add_undefined c thy =
|
haftmann@24844
|
725 |
(map_exec_purge (SOME [c]) o map_cases o apsnd) (Symtab.update (c, ())) thy;
|
haftmann@24844
|
726 |
|
haftmann@27557
|
727 |
val map_pre = map_exec_purge NONE o map_thmproc o apfst o apfst;
|
haftmann@27557
|
728 |
val map_post = map_exec_purge NONE o map_thmproc o apfst o apsnd;
|
haftmann@27557
|
729 |
|
haftmann@27557
|
730 |
fun add_inline thm thy = (map_pre o MetaSimplifier.add_simp)
|
haftmann@28054
|
731 |
(Code_Unit.error_thm Code_Unit.mk_rew thm) thy;
|
haftmann@27557
|
732 |
(*fully applied in order to get right context for mk_rew!*)
|
haftmann@27557
|
733 |
|
haftmann@27557
|
734 |
fun del_inline thm thy = (map_pre o MetaSimplifier.del_simp)
|
haftmann@28054
|
735 |
(Code_Unit.error_thm Code_Unit.mk_rew thm) thy;
|
haftmann@27557
|
736 |
(*fully applied in order to get right context for mk_rew!*)
|
haftmann@24219
|
737 |
|
haftmann@27557
|
738 |
fun add_post thm thy = (map_post o MetaSimplifier.add_simp)
|
haftmann@28054
|
739 |
(Code_Unit.error_thm Code_Unit.mk_rew thm) thy;
|
haftmann@27557
|
740 |
(*fully applied in order to get right context for mk_rew!*)
|
haftmann@24219
|
741 |
|
haftmann@27557
|
742 |
fun del_post thm thy = (map_post o MetaSimplifier.del_simp)
|
haftmann@28054
|
743 |
(Code_Unit.error_thm Code_Unit.mk_rew thm) thy;
|
haftmann@27557
|
744 |
(*fully applied in order to get right context for mk_rew!*)
|
haftmann@27557
|
745 |
|
haftmann@27557
|
746 |
fun add_functrans (name, f) =
|
haftmann@27557
|
747 |
(map_exec_purge NONE o map_thmproc o apsnd)
|
haftmann@24219
|
748 |
(AList.update (op =) (name, (serial (), f)));
|
haftmann@24219
|
749 |
|
haftmann@27557
|
750 |
fun del_functrans name =
|
haftmann@24219
|
751 |
(map_exec_purge NONE o map_thmproc o apsnd)
|
haftmann@27609
|
752 |
(delete_force "function transformer" name);
|
haftmann@24219
|
753 |
|
wenzelm@26463
|
754 |
val _ = Context.>> (Context.map_theory
|
haftmann@24219
|
755 |
(let
|
haftmann@24219
|
756 |
fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I);
|
haftmann@24219
|
757 |
fun add_simple_attribute (name, f) =
|
haftmann@24219
|
758 |
add_attribute (name, Scan.succeed (mk_attribute f));
|
haftmann@24219
|
759 |
fun add_del_attribute (name, (add, del)) =
|
haftmann@24219
|
760 |
add_attribute (name, Args.del |-- Scan.succeed (mk_attribute del)
|
haftmann@24219
|
761 |
|| Scan.succeed (mk_attribute add))
|
haftmann@24219
|
762 |
in
|
haftmann@25462
|
763 |
TypeInterpretation.init
|
haftmann@25462
|
764 |
#> add_del_attribute ("func", (add_func, del_func))
|
haftmann@28350
|
765 |
#> add_simple_attribute ("nbe", add_nonlinear_func)
|
haftmann@24219
|
766 |
#> add_del_attribute ("inline", (add_inline, del_inline))
|
haftmann@24219
|
767 |
#> add_del_attribute ("post", (add_post, del_post))
|
wenzelm@26463
|
768 |
end));
|
haftmann@24219
|
769 |
|
haftmann@24219
|
770 |
|
haftmann@24219
|
771 |
(** post- and preprocessing **)
|
haftmann@24219
|
772 |
|
haftmann@24219
|
773 |
local
|
haftmann@24219
|
774 |
|
haftmann@27609
|
775 |
fun apply_functrans thy [] = []
|
haftmann@27609
|
776 |
| apply_functrans thy (thms as thm :: _) =
|
haftmann@24219
|
777 |
let
|
haftmann@24423
|
778 |
val const = const_of_func thy thm;
|
haftmann@27609
|
779 |
val functrans = (map (fn (_, (_, f)) => f thy) o #functrans
|
haftmann@27609
|
780 |
o the_thmproc o the_exec) thy;
|
haftmann@27609
|
781 |
val thms' = perhaps (perhaps_loop (perhaps_apply functrans)) thms;
|
haftmann@24219
|
782 |
in certify_const thy const thms' end;
|
haftmann@24219
|
783 |
|
haftmann@24219
|
784 |
fun rhs_conv conv thm =
|
haftmann@24219
|
785 |
let
|
haftmann@24219
|
786 |
val thm' = (conv o Thm.rhs_of) thm;
|
haftmann@24219
|
787 |
in Thm.transitive thm thm' end
|
haftmann@24219
|
788 |
|
haftmann@24837
|
789 |
fun term_of_conv thy f =
|
haftmann@24837
|
790 |
Thm.cterm_of thy
|
haftmann@24837
|
791 |
#> f
|
haftmann@24837
|
792 |
#> Thm.prop_of
|
haftmann@24837
|
793 |
#> Logic.dest_equals
|
haftmann@24837
|
794 |
#> snd;
|
haftmann@24837
|
795 |
|
haftmann@24219
|
796 |
in
|
haftmann@24219
|
797 |
|
haftmann@24219
|
798 |
fun preprocess thy thms =
|
haftmann@27582
|
799 |
let
|
haftmann@27582
|
800 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc o the_exec) thy;
|
haftmann@27582
|
801 |
in
|
haftmann@27582
|
802 |
thms
|
haftmann@27609
|
803 |
|> apply_functrans thy
|
haftmann@28054
|
804 |
|> map (Code_Unit.rewrite_func pre)
|
haftmann@28350
|
805 |
(*FIXME - must check here: rewrite rule, defining equation, proper constant *)
|
haftmann@27582
|
806 |
|> map (AxClass.unoverload thy)
|
haftmann@27582
|
807 |
|> common_typ_funcs
|
haftmann@27582
|
808 |
end;
|
haftmann@26970
|
809 |
|
haftmann@24219
|
810 |
|
haftmann@24219
|
811 |
fun preprocess_conv ct =
|
haftmann@24219
|
812 |
let
|
haftmann@24219
|
813 |
val thy = Thm.theory_of_cterm ct;
|
haftmann@27582
|
814 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc o the_exec) thy;
|
haftmann@24219
|
815 |
in
|
haftmann@24219
|
816 |
ct
|
haftmann@27582
|
817 |
|> Simplifier.rewrite pre
|
haftmann@25597
|
818 |
|> rhs_conv (AxClass.unoverload_conv thy)
|
haftmann@24219
|
819 |
end;
|
haftmann@24219
|
820 |
|
haftmann@24837
|
821 |
fun preprocess_term thy = term_of_conv thy preprocess_conv;
|
haftmann@24837
|
822 |
|
haftmann@24219
|
823 |
fun postprocess_conv ct =
|
haftmann@24219
|
824 |
let
|
haftmann@24219
|
825 |
val thy = Thm.theory_of_cterm ct;
|
haftmann@27582
|
826 |
val post = (Simplifier.theory_context thy o #post o the_thmproc o the_exec) thy;
|
haftmann@24219
|
827 |
in
|
haftmann@24219
|
828 |
ct
|
haftmann@25597
|
829 |
|> AxClass.overload_conv thy
|
haftmann@27582
|
830 |
|> rhs_conv (Simplifier.rewrite post)
|
haftmann@24219
|
831 |
end;
|
haftmann@24219
|
832 |
|
haftmann@24837
|
833 |
fun postprocess_term thy = term_of_conv thy postprocess_conv;
|
haftmann@24837
|
834 |
|
haftmann@24219
|
835 |
end; (*local*)
|
haftmann@24219
|
836 |
|
haftmann@25597
|
837 |
fun default_typ_proto thy c = case AxClass.inst_of_param thy c
|
haftmann@24837
|
838 |
of SOME (c, tyco) => classparam_weakest_typ thy ((the o AxClass.class_of_param thy) c)
|
haftmann@24423
|
839 |
(c, tyco) |> SOME
|
haftmann@24423
|
840 |
| NONE => (case AxClass.class_of_param thy c
|
haftmann@24423
|
841 |
of SOME class => SOME (Term.map_type_tvar
|
wenzelm@24848
|
842 |
(K (TVar ((Name.aT, 0), [class]))) (Sign.the_const_type thy c))
|
haftmann@24423
|
843 |
| NONE => get_constr_typ thy c);
|
haftmann@24219
|
844 |
|
haftmann@24219
|
845 |
local
|
haftmann@24219
|
846 |
|
haftmann@24219
|
847 |
fun get_funcs thy const =
|
haftmann@24844
|
848 |
Symtab.lookup ((the_funcs o the_exec) thy) const
|
haftmann@28143
|
849 |
|> Option.map (Susp.force o snd)
|
haftmann@24219
|
850 |
|> these
|
haftmann@28350
|
851 |
|> (map o apfst) (Thm.transfer thy);
|
haftmann@24219
|
852 |
|
haftmann@24219
|
853 |
in
|
haftmann@24219
|
854 |
|
haftmann@24219
|
855 |
fun these_funcs thy const =
|
haftmann@24219
|
856 |
let
|
haftmann@24219
|
857 |
fun drop_refl thy = filter_out (is_equal o Term.fast_term_ord o Logic.dest_equals
|
haftmann@28350
|
858 |
o ObjectLogic.drop_judgment thy o Thm.plain_prop_of o fst);
|
haftmann@24219
|
859 |
in
|
haftmann@24219
|
860 |
get_funcs thy const
|
haftmann@28350
|
861 |
|> burrow_fst (preprocess thy)
|
haftmann@24219
|
862 |
|> drop_refl thy
|
haftmann@24219
|
863 |
end;
|
haftmann@24219
|
864 |
|
haftmann@24423
|
865 |
fun default_typ thy c = case default_typ_proto thy c
|
haftmann@28054
|
866 |
of SOME ty => Code_Unit.typscheme thy (c, ty)
|
haftmann@24423
|
867 |
| NONE => (case get_funcs thy c
|
haftmann@28350
|
868 |
of (thm, _) :: _ => snd (Code_Unit.head_func (AxClass.unoverload thy thm))
|
haftmann@28054
|
869 |
| [] => Code_Unit.typscheme thy (c, Sign.the_const_type thy c));
|
haftmann@24219
|
870 |
|
haftmann@24219
|
871 |
end; (*local*)
|
haftmann@24219
|
872 |
|
haftmann@24219
|
873 |
end; (*struct*)
|
haftmann@24219
|
874 |
|
haftmann@24219
|
875 |
|
haftmann@24219
|
876 |
(** type-safe interfaces for data depedent on executable content **)
|
haftmann@24219
|
877 |
|
haftmann@24219
|
878 |
functor CodeDataFun(Data: CODE_DATA_ARGS): CODE_DATA =
|
haftmann@24219
|
879 |
struct
|
haftmann@24219
|
880 |
|
haftmann@24219
|
881 |
type T = Data.T;
|
haftmann@24219
|
882 |
exception Data of T;
|
haftmann@24219
|
883 |
fun dest (Data x) = x
|
haftmann@24219
|
884 |
|
haftmann@24219
|
885 |
val kind = Code.declare_data (Data Data.empty)
|
haftmann@27609
|
886 |
(fn thy => fn cs => fn Data x => Data (Data.purge thy cs x));
|
haftmann@24219
|
887 |
|
haftmann@24219
|
888 |
val data_op = (kind, Data, dest);
|
haftmann@24219
|
889 |
|
haftmann@24219
|
890 |
val get = Code.get_data data_op;
|
haftmann@24219
|
891 |
val change = Code.change_data data_op;
|
haftmann@24219
|
892 |
fun change_yield thy = Code.change_yield_data data_op thy;
|
haftmann@24219
|
893 |
|
haftmann@24219
|
894 |
end;
|
haftmann@24219
|
895 |
|
haftmann@28143
|
896 |
structure Code : CODE = struct open Code; end;
|