author | haftmann |
Thu, 22 Oct 2009 13:48:06 +0200 | |
changeset 33063 | 4d462963a7db |
parent 32873 | 333945c9ac6a |
child 33522 | 737589bb9bb8 |
permissions | -rw-r--r-- |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
1 |
(* Title: Tools/code/code_preproc.ML |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
2 |
Author: Florian Haftmann, TU Muenchen |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
3 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
4 |
Preprocessing code equations into a well-sorted system |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
5 |
in a graph with explicit dependencies. |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
6 |
*) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
7 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
8 |
signature CODE_PREPROC = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
9 |
sig |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
10 |
val map_pre: (simpset -> simpset) -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
11 |
val map_post: (simpset -> simpset) -> theory -> theory |
32072 | 12 |
val add_unfold: thm -> theory -> theory |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
13 |
val add_functrans: string * (theory -> (thm * bool) list -> (thm * bool) list option) -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
14 |
val del_functrans: string -> theory -> theory |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
15 |
val simple_functrans: (theory -> thm list -> thm list option) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
16 |
-> theory -> (thm * bool) list -> (thm * bool) list option |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
17 |
val print_codeproc: theory -> unit |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
18 |
|
30947 | 19 |
type code_algebra |
20 |
type code_graph |
|
21 |
val eqns: code_graph -> string -> (thm * bool) list |
|
32873 | 22 |
val sortargs: code_graph -> string -> sort list |
30947 | 23 |
val all: code_graph -> string list |
24 |
val pretty: theory -> code_graph -> Pretty.T |
|
25 |
val obtain: theory -> string list -> term list -> code_algebra * code_graph |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
26 |
val eval_conv: theory |
30947 | 27 |
-> (code_algebra -> code_graph -> (string * sort) list -> term -> cterm -> thm) -> cterm -> thm |
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
28 |
val eval: theory -> ((term -> term) -> 'a -> 'a) |
30947 | 29 |
-> (code_algebra -> code_graph -> (string * sort) list -> term -> 'a) -> term -> 'a |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
30 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
31 |
val setup: theory -> theory |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
32 |
end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
33 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
34 |
structure Code_Preproc : CODE_PREPROC = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
35 |
struct |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
36 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
37 |
(** preprocessor administration **) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
38 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
39 |
(* theory data *) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
40 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
41 |
datatype thmproc = Thmproc of { |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
42 |
pre: simpset, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
43 |
post: simpset, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
44 |
functrans: (string * (serial * (theory -> (thm * bool) list -> (thm * bool) list option))) list |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
45 |
}; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
46 |
|
31599 | 47 |
fun make_thmproc ((pre, post), functrans) = |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
48 |
Thmproc { pre = pre, post = post, functrans = functrans }; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
49 |
fun map_thmproc f (Thmproc { pre, post, functrans }) = |
31599 | 50 |
make_thmproc (f ((pre, post), functrans)); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
51 |
fun merge_thmproc (Thmproc { pre = pre1, post = post1, functrans = functrans1 }, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
52 |
Thmproc { pre = pre2, post = post2, functrans = functrans2 }) = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
53 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
54 |
val pre = Simplifier.merge_ss (pre1, pre2); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
55 |
val post = Simplifier.merge_ss (post1, post2); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
56 |
val functrans = AList.merge (op =) (eq_fst (op =)) (functrans1, functrans2); |
31599 | 57 |
in make_thmproc ((pre, post), functrans) end; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
58 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
59 |
structure Code_Preproc_Data = TheoryDataFun |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
60 |
( |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
61 |
type T = thmproc; |
31599 | 62 |
val empty = make_thmproc ((Simplifier.empty_ss, Simplifier.empty_ss), []); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
63 |
fun copy spec = spec; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
64 |
val extend = copy; |
32873 | 65 |
fun merge _ = merge_thmproc; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
66 |
); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
67 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
68 |
fun the_thmproc thy = case Code_Preproc_Data.get thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
69 |
of Thmproc x => x; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
70 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
71 |
fun delete_force msg key xs = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
72 |
if AList.defined (op =) xs key then AList.delete (op =) key xs |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
73 |
else error ("No such " ^ msg ^ ": " ^ quote key); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
74 |
|
32544 | 75 |
fun map_data f = Code.purge_data |
76 |
#> (Code_Preproc_Data.map o map_thmproc) f; |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
77 |
|
32072 | 78 |
val map_pre_post = map_data o apfst; |
79 |
val map_pre = map_pre_post o apfst; |
|
80 |
val map_post = map_pre_post o apsnd; |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
81 |
|
32072 | 82 |
val add_unfold = map_pre o MetaSimplifier.add_simp; |
83 |
val del_unfold = map_pre o MetaSimplifier.del_simp; |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
84 |
val add_post = map_post o MetaSimplifier.add_simp; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
85 |
val del_post = map_post o MetaSimplifier.del_simp; |
32072 | 86 |
|
87 |
fun add_unfold_post raw_thm thy = |
|
88 |
let |
|
89 |
val thm = LocalDefs.meta_rewrite_rule (ProofContext.init thy) raw_thm; |
|
90 |
val thm_sym = Thm.symmetric thm; |
|
91 |
in |
|
92 |
thy |> map_pre_post (fn (pre, post) => |
|
93 |
(pre |> MetaSimplifier.add_simp thm, post |> MetaSimplifier.del_simp thm_sym)) |
|
94 |
end; |
|
95 |
||
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
96 |
fun add_functrans (name, f) = (map_data o apsnd) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
97 |
(AList.update (op =) (name, (serial (), f))); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
98 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
99 |
fun del_functrans name = (map_data o apsnd) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
100 |
(delete_force "function transformer" name); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
101 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
102 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
103 |
(* post- and preprocessing *) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
104 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
105 |
fun apply_functrans thy c _ [] = [] |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
106 |
| apply_functrans thy c [] eqns = eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
107 |
| apply_functrans thy c functrans eqns = eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
108 |
|> perhaps (perhaps_loop (perhaps_apply functrans)) |
32349 | 109 |
|> Code.assert_eqns_const thy c |
110 |
(*FIXME in future, the check here should be more accurate wrt. type schemes |
|
111 |
-- perhaps by means of upcoming code certificates with a corresponding |
|
112 |
preprocessor protocol*); |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
113 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
114 |
fun rhs_conv conv thm = Thm.transitive thm ((conv o Thm.rhs_of) thm); |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
115 |
|
31957 | 116 |
fun eqn_conv conv = |
117 |
let |
|
118 |
fun lhs_conv ct = if can Thm.dest_comb ct |
|
119 |
then Conv.combination_conv lhs_conv conv ct |
|
120 |
else Conv.all_conv ct; |
|
121 |
in Conv.combination_conv (Conv.arg_conv lhs_conv) conv end; |
|
122 |
||
123 |
val rewrite_eqn = Conv.fconv_rule o eqn_conv o Simplifier.rewrite; |
|
124 |
||
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
125 |
fun term_of_conv thy f = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
126 |
Thm.cterm_of thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
127 |
#> f |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
128 |
#> Thm.prop_of |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
129 |
#> Logic.dest_equals |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
130 |
#> snd; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
131 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
132 |
fun preprocess thy c eqns = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
133 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
134 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
135 |
val functrans = (map (fn (_, (_, f)) => f thy) o #functrans |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
136 |
o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
137 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
138 |
eqns |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
139 |
|> apply_functrans thy c functrans |
31957 | 140 |
|> (map o apfst) (rewrite_eqn pre) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
141 |
|> (map o apfst) (AxClass.unoverload thy) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
142 |
|> map (Code.assert_eqn thy) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
143 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
144 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
145 |
fun preprocess_conv thy ct = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
146 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
147 |
val pre = (Simplifier.theory_context thy o #pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
148 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
149 |
ct |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
150 |
|> Simplifier.rewrite pre |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
151 |
|> rhs_conv (AxClass.unoverload_conv thy) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
152 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
153 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
154 |
fun postprocess_conv thy ct = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
155 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
156 |
val post = (Simplifier.theory_context thy o #post o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
157 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
158 |
ct |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
159 |
|> AxClass.overload_conv thy |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
160 |
|> rhs_conv (Simplifier.rewrite post) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
161 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
162 |
|
32544 | 163 |
fun postprocess_term thy = term_of_conv thy (postprocess_conv thy); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
164 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
165 |
fun print_codeproc thy = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
166 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
167 |
val ctxt = ProofContext.init thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
168 |
val pre = (#pre o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
169 |
val post = (#post o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
170 |
val functrans = (map fst o #functrans o the_thmproc) thy; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
171 |
in |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
172 |
(Pretty.writeln o Pretty.chunks) [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
173 |
Pretty.block [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
174 |
Pretty.str "preprocessing simpset:", |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
175 |
Pretty.fbrk, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
176 |
Simplifier.pretty_ss ctxt pre |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
177 |
], |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
178 |
Pretty.block [ |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
179 |
Pretty.str "postprocessing simpset:", |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
180 |
Pretty.fbrk, |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
181 |
Simplifier.pretty_ss ctxt post |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
182 |
], |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
183 |
Pretty.block ( |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
184 |
Pretty.str "function transformers:" |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
185 |
:: Pretty.fbrk |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
186 |
:: (Pretty.fbreaks o map Pretty.str) functrans |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
187 |
) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
188 |
] |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
189 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
190 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
191 |
fun simple_functrans f thy eqns = case f thy (map fst eqns) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
192 |
of SOME thms' => SOME (map (rpair (forall snd eqns)) thms') |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
193 |
| NONE => NONE; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
194 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
195 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
196 |
(** sort algebra and code equation graph types **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
197 |
|
30947 | 198 |
type code_algebra = (sort -> sort) * Sorts.algebra; |
32873 | 199 |
type code_graph = ((string * sort) list * (thm * bool) list) Graph.T; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
200 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
201 |
fun eqns eqngr = these o Option.map snd o try (Graph.get_node eqngr); |
32873 | 202 |
fun sortargs eqngr = map snd o fst o Graph.get_node eqngr |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
203 |
fun all eqngr = Graph.keys eqngr; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
204 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
205 |
fun pretty thy eqngr = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
206 |
AList.make (snd o Graph.get_node eqngr) (Graph.keys eqngr) |
31156 | 207 |
|> (map o apfst) (Code.string_of_const thy) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
208 |
|> sort (string_ord o pairself fst) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
209 |
|> map (fn (s, thms) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
210 |
(Pretty.block o Pretty.fbreaks) ( |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
211 |
Pretty.str s |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32072
diff
changeset
|
212 |
:: map (Display.pretty_thm_global thy o fst) thms |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
213 |
)) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
214 |
|> Pretty.chunks; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
215 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
216 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
217 |
(** the Waisenhaus algorithm **) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
218 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
219 |
(* auxiliary *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
220 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
221 |
fun is_proper_class thy = can (AxClass.get_info thy); |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
222 |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
223 |
fun complete_proper_sort thy = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
224 |
Sign.complete_sort thy #> filter (is_proper_class thy); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
225 |
|
30029 | 226 |
fun inst_params thy tyco = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
227 |
map (fn (c, _) => AxClass.param_of_inst thy (c, tyco)) |
30029 | 228 |
o maps (#params o AxClass.get_info thy); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
229 |
|
32873 | 230 |
fun typscheme_rhss thy c eqns = |
231 |
let |
|
232 |
val tyscm = Code.typscheme_eqns thy c (map fst eqns); |
|
233 |
val rhss = [] |> (fold o fold o fold_aterms) |
|
234 |
(fn Const (c, ty) => insert (op =) (c, Sign.const_typargs thy (c, Logic.unvarifyT ty)) | _ => I) |
|
235 |
(map (op :: o swap o apfst (snd o strip_comb) o Logic.dest_equals o Thm.plain_prop_of o fst) eqns); |
|
236 |
in (tyscm, rhss) end; |
|
237 |
||
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
238 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
239 |
(* data structures *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
240 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
241 |
datatype const = Fun of string | Inst of class * string; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
242 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
243 |
fun const_ord (Fun c1, Fun c2) = fast_string_ord (c1, c2) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
244 |
| const_ord (Inst class_tyco1, Inst class_tyco2) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
245 |
prod_ord fast_string_ord fast_string_ord (class_tyco1, class_tyco2) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
246 |
| const_ord (Fun _, Inst _) = LESS |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
247 |
| const_ord (Inst _, Fun _) = GREATER; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
248 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
249 |
type var = const * int; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
250 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
251 |
structure Vargraph = |
31971
8c1b845ed105
renamed functor TableFun to Table, and GraphFun to Graph;
wenzelm
parents:
31962
diff
changeset
|
252 |
Graph(type key = var val ord = prod_ord const_ord int_ord); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
253 |
|
30054 | 254 |
datatype styp = Tyco of string * styp list | Var of var | Free; |
255 |
||
256 |
fun styp_of c_lhs (Type (tyco, tys)) = Tyco (tyco, map (styp_of c_lhs) tys) |
|
257 |
| styp_of c_lhs (TFree (v, _)) = case c_lhs |
|
258 |
of SOME (c, lhs) => Var (Fun c, find_index (fn (v', _) => v = v') lhs) |
|
259 |
| NONE => Free; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
260 |
|
30054 | 261 |
type vardeps_data = ((string * styp list) list * class list) Vargraph.T |
262 |
* (((string * sort) list * (thm * bool) list) Symtab.table |
|
263 |
* (class * string) list); |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
264 |
|
30054 | 265 |
val empty_vardeps_data : vardeps_data = |
266 |
(Vargraph.empty, (Symtab.empty, [])); |
|
267 |
||
30876 | 268 |
|
30054 | 269 |
(* retrieving equations and instances from the background context *) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
270 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
271 |
fun obtain_eqns thy eqngr c = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
272 |
case try (Graph.get_node eqngr) c |
32873 | 273 |
of SOME (lhs, eqns) => ((lhs, []), []) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
274 |
| NONE => let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
275 |
val eqns = Code.these_eqns thy c |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
276 |
|> preprocess thy c; |
32873 | 277 |
val ((lhs, _), rhss) = typscheme_rhss thy c eqns; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
278 |
in ((lhs, rhss), eqns) end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
279 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
280 |
fun obtain_instance thy arities (inst as (class, tyco)) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
281 |
case AList.lookup (op =) arities inst |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
282 |
of SOME classess => (classess, ([], [])) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
283 |
| NONE => let |
30029 | 284 |
val all_classes = complete_proper_sort thy [class]; |
285 |
val superclasses = remove (op =) class all_classes |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
286 |
val classess = map (complete_proper_sort thy) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
287 |
(Sign.arity_sorts thy tyco [class]); |
30029 | 288 |
val inst_params = inst_params thy tyco all_classes; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
289 |
in (classess, (superclasses, inst_params)) end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
290 |
|
30054 | 291 |
|
292 |
(* computing instantiations *) |
|
293 |
||
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
294 |
fun add_classes thy arities eqngr c_k new_classes vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
295 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
296 |
val (styps, old_classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
297 |
val diff_classes = new_classes |> subtract (op =) old_classes; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
298 |
in if null diff_classes then vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
299 |
else let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
300 |
val c_ks = Vargraph.imm_succs (fst vardeps_data) c_k |> insert (op =) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
301 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
302 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
303 |
|> (apfst o Vargraph.map_node c_k o apsnd) (append diff_classes) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
304 |
|> fold (fn styp => fold (ensure_typmatch_inst thy arities eqngr styp) new_classes) styps |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
305 |
|> fold (fn c_k => add_classes thy arities eqngr c_k diff_classes) c_ks |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
306 |
end end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
307 |
and add_styp thy arities eqngr c_k tyco_styps vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
308 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
309 |
val (old_styps, classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
310 |
in if member (op =) old_styps tyco_styps then vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
311 |
else |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
312 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
313 |
|> (apfst o Vargraph.map_node c_k o apfst) (cons tyco_styps) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
314 |
|> fold (ensure_typmatch_inst thy arities eqngr tyco_styps) classes |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
315 |
end |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
316 |
and add_dep thy arities eqngr c_k c_k' vardeps_data = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
317 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
318 |
val (_, classes) = Vargraph.get_node (fst vardeps_data) c_k; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
319 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
320 |
vardeps_data |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
321 |
|> add_classes thy arities eqngr c_k' classes |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
322 |
|> apfst (Vargraph.add_edge (c_k, c_k')) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
323 |
end |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
324 |
and ensure_typmatch_inst thy arities eqngr (tyco, styps) class vardeps_data = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
325 |
if can (Sign.arity_sorts thy tyco) [class] |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
326 |
then vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
327 |
|> ensure_inst thy arities eqngr (class, tyco) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
328 |
|> fold_index (fn (k, styp) => |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
329 |
ensure_typmatch thy arities eqngr styp (Inst (class, tyco), k)) styps |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
330 |
else vardeps_data (*permissive!*) |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
331 |
and ensure_inst thy arities eqngr (inst as (class, tyco)) (vardeps_data as (_, (_, insts))) = |
30054 | 332 |
if member (op =) insts inst then vardeps_data |
333 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
334 |
val (classess, (superclasses, inst_params)) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
335 |
obtain_instance thy arities inst; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
336 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
337 |
vardeps_data |
30054 | 338 |
|> (apsnd o apsnd) (insert (op =) inst) |
30083 | 339 |
|> fold_index (fn (k, _) => |
340 |
apfst (Vargraph.new_node ((Inst (class, tyco), k), ([] ,[])))) classess |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
341 |
|> fold (fn superclass => ensure_inst thy arities eqngr (superclass, tyco)) superclasses |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
342 |
|> fold (ensure_fun thy arities eqngr) inst_params |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
343 |
|> fold_index (fn (k, classes) => |
30075 | 344 |
add_classes thy arities eqngr (Inst (class, tyco), k) classes |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
345 |
#> fold (fn superclass => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
346 |
add_dep thy arities eqngr (Inst (superclass, tyco), k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
347 |
(Inst (class, tyco), k)) superclasses |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
348 |
#> fold (fn inst_param => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
349 |
add_dep thy arities eqngr (Fun inst_param, k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
350 |
(Inst (class, tyco), k) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
351 |
) inst_params |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
352 |
) classess |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
353 |
end |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
354 |
and ensure_typmatch thy arities eqngr (Tyco tyco_styps) c_k vardeps_data = |
30054 | 355 |
vardeps_data |
356 |
|> add_styp thy arities eqngr c_k tyco_styps |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
357 |
| ensure_typmatch thy arities eqngr (Var c_k') c_k vardeps_data = |
30054 | 358 |
vardeps_data |
359 |
|> add_dep thy arities eqngr c_k c_k' |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
360 |
| ensure_typmatch thy arities eqngr Free c_k vardeps_data = |
30054 | 361 |
vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
362 |
and ensure_rhs thy arities eqngr (c', styps) vardeps_data = |
30054 | 363 |
vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
364 |
|> ensure_fun thy arities eqngr c' |
30054 | 365 |
|> fold_index (fn (k, styp) => |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
366 |
ensure_typmatch thy arities eqngr styp (Fun c', k)) styps |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
367 |
and ensure_fun thy arities eqngr c (vardeps_data as (_, (eqntab, _))) = |
30054 | 368 |
if Symtab.defined eqntab c then vardeps_data |
369 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
370 |
val ((lhs, rhss), eqns) = obtain_eqns thy eqngr c; |
30054 | 371 |
val rhss' = (map o apsnd o map) (styp_of (SOME (c, lhs))) rhss; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
372 |
in |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
373 |
vardeps_data |
30054 | 374 |
|> (apsnd o apfst) (Symtab.update_new (c, (lhs, eqns))) |
30083 | 375 |
|> fold_index (fn (k, _) => |
376 |
apfst (Vargraph.new_node ((Fun c, k), ([] ,[])))) lhs |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
377 |
|> fold_index (fn (k, (_, sort)) => |
30083 | 378 |
add_classes thy arities eqngr (Fun c, k) (complete_proper_sort thy sort)) lhs |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
379 |
|> fold (ensure_rhs thy arities eqngr) rhss' |
30054 | 380 |
end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
381 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
382 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
383 |
(* applying instantiations *) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
384 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
385 |
fun dicts_of thy (proj_sort, algebra) (T, sort) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
386 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
387 |
fun class_relation (x, _) _ = x; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
388 |
fun type_constructor tyco xs class = |
30054 | 389 |
inst_params thy tyco (Sorts.complete_sort algebra [class]) |
390 |
@ (maps o maps) fst xs; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
391 |
fun type_variable (TFree (_, sort)) = map (pair []) (proj_sort sort); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
392 |
in |
32795 | 393 |
flat (Sorts.of_sort_derivation algebra |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
394 |
{ class_relation = class_relation, type_constructor = type_constructor, |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
395 |
type_variable = type_variable } (T, proj_sort sort) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
396 |
handle Sorts.CLASS_ERROR _ => [] (*permissive!*)) |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
397 |
end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
398 |
|
31957 | 399 |
fun inst_thm thy tvars' thm = |
400 |
let |
|
401 |
val tvars = (Term.add_tvars o Thm.prop_of) thm []; |
|
402 |
val inter_sort = Sorts.inter_sort (Sign.classes_of thy); |
|
403 |
fun mk_inst (tvar as (v, sort)) = case Vartab.lookup tvars' v |
|
404 |
of SOME sort' => SOME (pairself (Thm.ctyp_of thy o TVar) |
|
405 |
(tvar, (v, inter_sort (sort, sort')))) |
|
406 |
| NONE => NONE; |
|
407 |
val insts = map_filter mk_inst tvars; |
|
408 |
in Thm.instantiate (insts, []) thm end; |
|
409 |
||
30054 | 410 |
fun add_arity thy vardeps (class, tyco) = |
33063 | 411 |
AList.default (op =) ((class, tyco), |
412 |
map_range (fn k => (snd o Vargraph.get_node vardeps) (Inst (class, tyco), k)) (Sign.arity_number thy tyco)); |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
413 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
414 |
fun add_eqs thy vardeps (c, (proto_lhs, proto_eqns)) (rhss, eqngr) = |
30058 | 415 |
if can (Graph.get_node eqngr) c then (rhss, eqngr) |
416 |
else let |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
417 |
val lhs = map_index (fn (k, (v, _)) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
418 |
(v, snd (Vargraph.get_node vardeps (Fun c, k)))) proto_lhs; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
419 |
val inst_tab = Vartab.empty |> fold (fn (v, sort) => |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
420 |
Vartab.update ((v, 0), sort)) lhs; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
421 |
val eqns = proto_eqns |
31957 | 422 |
|> (map o apfst) (inst_thm thy inst_tab); |
32873 | 423 |
val ((vs, _), rhss') = typscheme_rhss thy c eqns; |
424 |
val eqngr' = Graph.new_node (c, (vs, eqns)) eqngr; |
|
30054 | 425 |
in (map (pair c) rhss' @ rhss, eqngr') end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
426 |
|
32873 | 427 |
fun extend_arities_eqngr thy cs ts (arities, (eqngr : code_graph)) = |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
428 |
let |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
429 |
val cs_rhss = (fold o fold_aterms) (fn Const (c_ty as (c, _)) => |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
430 |
insert (op =) (c, (map (styp_of NONE) o Sign.const_typargs thy) c_ty) | _ => I) ts []; |
30054 | 431 |
val (vardeps, (eqntab, insts)) = empty_vardeps_data |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
432 |
|> fold (ensure_fun thy arities eqngr) cs |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
433 |
|> fold (ensure_rhs thy arities eqngr) cs_rhss; |
30054 | 434 |
val arities' = fold (add_arity thy vardeps) insts arities; |
30064 | 435 |
val pp = Syntax.pp_global thy; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
436 |
val algebra = Sorts.subalgebra pp (is_proper_class thy) |
30064 | 437 |
(AList.lookup (op =) arities') (Sign.classes_of thy); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
438 |
val (rhss, eqngr') = Symtab.fold (add_eqs thy vardeps) eqntab ([], eqngr); |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
439 |
fun deps_of (c, rhs) = c :: maps (dicts_of thy algebra) |
32873 | 440 |
(rhs ~~ sortargs eqngr' c); |
30054 | 441 |
val eqngr'' = fold (fn (c, rhs) => fold |
442 |
(curry Graph.add_edge c) (deps_of rhs)) rhss eqngr'; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
443 |
in (algebra, (arities', eqngr'')) end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
444 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
445 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
446 |
(** store for preprocessed arities and code equations **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
447 |
|
31962 | 448 |
structure Wellsorted = Code_Data_Fun |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
449 |
( |
30947 | 450 |
type T = ((string * class) * sort list) list * code_graph; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
451 |
val empty = ([], Graph.empty); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
452 |
fun purge thy cs (arities, eqngr) = |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
453 |
let |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
454 |
val del_cs = ((Graph.all_preds eqngr |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
455 |
o filter (can (Graph.get_node eqngr))) cs); |
30050
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
456 |
val del_arities = del_cs |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
457 |
|> map_filter (AxClass.inst_of_param thy) |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
458 |
|> maps (fn (c, tyco) => |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
459 |
(map (rpair tyco) o Sign.complete_sort thy o the_list |
916a8427f65a
first attempt to solve evaluation bootstrap problem
haftmann
parents:
30029
diff
changeset
|
460 |
o AxClass.class_of_param thy) c); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
461 |
val arities' = fold (AList.delete (op =)) del_arities arities; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
462 |
val eqngr' = Graph.del_nodes del_cs eqngr; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
463 |
in (arities', eqngr') end; |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
464 |
); |
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
465 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
466 |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
467 |
(** retrieval and evaluation interfaces **) |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
468 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
469 |
fun obtain thy cs ts = apsnd snd |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
470 |
(Wellsorted.change_yield thy (extend_arities_eqngr thy cs ts)); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
471 |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
472 |
fun gen_eval thy cterm_of conclude_evaluation evaluator proto_ct = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
473 |
let |
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
474 |
val pp = Syntax.pp_global thy; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
475 |
val ct = cterm_of proto_ct; |
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31036
diff
changeset
|
476 |
val _ = (Sign.no_frees pp o map_types (K dummyT) o Sign.no_vars pp) |
30947 | 477 |
(Thm.term_of ct); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
478 |
val thm = preprocess_conv thy ct; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
479 |
val ct' = Thm.rhs_of thm; |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
480 |
val t' = Thm.term_of ct'; |
30947 | 481 |
val vs = Term.add_tfrees t' []; |
482 |
val consts = fold_aterms |
|
483 |
(fn Const (c, _) => insert (op =) c | _ => I) t' []; |
|
32544 | 484 |
val (algebra', eqngr') = obtain thy consts [t']; |
485 |
in conclude_evaluation (evaluator algebra' eqngr' vs t' ct') thm end; |
|
30947 | 486 |
|
487 |
fun simple_evaluator evaluator algebra eqngr vs t ct = |
|
488 |
evaluator algebra eqngr vs t; |
|
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
489 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
490 |
fun eval_conv thy = |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
491 |
let |
30947 | 492 |
fun conclude_evaluation thm2 thm1 = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
493 |
let |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
494 |
val thm3 = postprocess_conv thy (Thm.rhs_of thm2); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
495 |
in |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
496 |
Thm.transitive thm1 (Thm.transitive thm2 thm3) handle THM _ => |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
497 |
error ("could not construct evaluation proof:\n" |
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
32072
diff
changeset
|
498 |
^ (cat_lines o map (Display.string_of_thm_global thy)) [thm1, thm2, thm3]) |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30876
diff
changeset
|
499 |
end; |
30947 | 500 |
in gen_eval thy I conclude_evaluation end; |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
501 |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
502 |
fun eval thy postproc evaluator = gen_eval thy (Thm.cterm_of thy) |
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
32072
diff
changeset
|
503 |
(K o postproc (postprocess_term thy)) (simple_evaluator evaluator); |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
504 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
505 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
506 |
(** setup **) |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
507 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
508 |
val setup = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
509 |
let |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
510 |
fun mk_attribute f = Thm.declaration_attribute (fn thm => Context.mapping (f thm) I); |
32072 | 511 |
fun add_del_attribute_parser add del = |
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
512 |
Attrib.add_del (mk_attribute add) (mk_attribute del); |
32072 | 513 |
fun both f g thm = f thm #> g thm; |
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
514 |
in |
32072 | 515 |
Attrib.setup @{binding code_unfold} (add_del_attribute_parser |
516 |
(both Codegen.add_unfold add_unfold) (both Codegen.del_unfold del_unfold)) |
|
517 |
"preprocessing equations for code generators" |
|
518 |
#> Attrib.setup @{binding code_inline} (add_del_attribute_parser add_unfold del_unfold) |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
519 |
"preprocessing equations for code generator" |
32072 | 520 |
#> Attrib.setup @{binding code_post} (add_del_attribute_parser add_post del_post) |
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31977
diff
changeset
|
521 |
"postprocessing equations for code generator" |
32072 | 522 |
#> Attrib.setup @{binding code_unfold_post} (Scan.succeed (mk_attribute add_unfold_post)) |
523 |
"pre- and postprocessing equations for code generator" |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
524 |
end; |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
525 |
|
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
526 |
val _ = |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
527 |
OuterSyntax.improper_command "print_codeproc" "print code preprocessor setup" |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
528 |
OuterKeyword.diag (Scan.succeed |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
529 |
(Toplevel.no_timing o Toplevel.unknown_theory o Toplevel.keep |
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31089
diff
changeset
|
530 |
(print_codeproc o Toplevel.theory_of))); |
30010
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
531 |
|
862fc7751a15
tuned and incremental version of wellsorting algorithm
haftmann
parents:
diff
changeset
|
532 |
end; (*struct*) |