| author | wenzelm |
| Thu, 23 Jul 2009 18:44:09 +0200 | |
| changeset 32149 | ef59550a55d3 |
| parent 32131 | 7913823f14e3 |
| child 32273 | 3c395fc7ec5e |
| permissions | -rw-r--r-- |
| 24219 | 1 |
(* Title: Tools/code/code_thingol.ML |
2 |
Author: Florian Haftmann, TU Muenchen |
|
3 |
||
4 |
Intermediate language ("Thin-gol") representing executable code.
|
|
| 24918 | 5 |
Representation and translation. |
| 24219 | 6 |
*) |
7 |
||
8 |
infix 8 `%%; |
|
9 |
infix 4 `$; |
|
10 |
infix 4 `$$; |
|
| 31724 | 11 |
infixr 3 `|=>; |
12 |
infixr 3 `|==>; |
|
| 24219 | 13 |
|
14 |
signature BASIC_CODE_THINGOL = |
|
15 |
sig |
|
16 |
type vname = string; |
|
17 |
datatype dict = |
|
18 |
DictConst of string * dict list list |
|
19 |
| DictVar of string list * (vname * (int * int)); |
|
20 |
datatype itype = |
|
21 |
`%% of string * itype list |
|
22 |
| ITyVar of vname; |
|
| 31049 | 23 |
type const = string * ((itype list * dict list list) * itype list (*types of arguments*)) |
| 24219 | 24 |
datatype iterm = |
| 24591 | 25 |
IConst of const |
| 31889 | 26 |
| IVar of vname option |
| 24219 | 27 |
| `$ of iterm * iterm |
| 31888 | 28 |
| `|=> of (vname option * itype) * iterm |
| 24219 | 29 |
| ICase of ((iterm * itype) * (iterm * iterm) list) * iterm; |
30 |
(*((term, type), [(selector pattern, body term )]), primitive term)*) |
|
31 |
val `$$ : iterm * iterm list -> iterm; |
|
| 31888 | 32 |
val `|==> : (vname option * itype) list * iterm -> iterm; |
| 24219 | 33 |
type typscheme = (vname * sort) list * itype; |
34 |
end; |
|
35 |
||
36 |
signature CODE_THINGOL = |
|
37 |
sig |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
38 |
include BASIC_CODE_THINGOL |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
39 |
val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
40 |
val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
41 |
val unfold_fun: itype -> itype list * itype |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
42 |
val unfold_app: iterm -> iterm * iterm list |
| 31888 | 43 |
val unfold_abs: iterm -> (vname option * itype) list * iterm |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
44 |
val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
45 |
val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm |
| 31889 | 46 |
val split_pat_abs: iterm -> ((iterm * itype) * iterm) option |
47 |
val unfold_pat_abs: iterm -> (iterm * itype) list * iterm |
|
| 31049 | 48 |
val unfold_const_app: iterm -> (const * iterm list) option |
49 |
val eta_expand: int -> const * iterm list -> iterm |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
50 |
val contains_dictvar: iterm -> bool |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
51 |
val locally_monomorphic: iterm -> bool |
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
52 |
val add_constnames: iterm -> string list -> string list |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
53 |
val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
54 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
55 |
type naming |
| 28706 | 56 |
val empty_naming: naming |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
57 |
val lookup_class: naming -> class -> string option |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
58 |
val lookup_classrel: naming -> class * class -> string option |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
59 |
val lookup_tyco: naming -> string -> string option |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
60 |
val lookup_instance: naming -> class * string -> string option |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
61 |
val lookup_const: naming -> string -> string option |
| 31054 | 62 |
val ensure_declared_const: theory -> string -> naming -> string * naming |
| 24219 | 63 |
|
| 24918 | 64 |
datatype stmt = |
| 27024 | 65 |
NoStmt |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
66 |
| Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
67 |
| Datatype of string * ((vname * sort) list * (string * itype list) list) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
68 |
| Datatypecons of string * string |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
69 |
| Class of class * (vname * ((class * string) list * (string * itype) list)) |
| 24219 | 70 |
| Classrel of class * class |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
71 |
| Classparam of string * class |
| 24219 | 72 |
| Classinst of (class * (string * (vname * sort) list)) |
73 |
* ((class * (string * (string * dict list list))) list |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
74 |
* ((string * const) * (thm * bool)) list) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
75 |
type program = stmt Graph.T |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
76 |
val empty_funs: program -> string list |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
77 |
val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
78 |
val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
79 |
val is_cons: program -> string -> bool |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
80 |
val contr_classparam_typs: program -> string -> itype option list |
| 24219 | 81 |
|
| 31036 | 82 |
val read_const_exprs: theory -> string list -> string list * string list |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
83 |
val consts_program: theory -> string list -> string list * (naming * program) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
84 |
val cached_program: theory -> naming * program |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
31962
diff
changeset
|
85 |
val eval_conv: theory |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
86 |
-> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> cterm -> thm) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
87 |
-> cterm -> thm |
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
31962
diff
changeset
|
88 |
val eval: theory -> ((term -> term) -> 'a -> 'a) |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
89 |
-> (naming -> program -> ((string * sort) list * typscheme) * iterm -> string list -> 'a) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
90 |
-> term -> 'a |
| 24219 | 91 |
end; |
92 |
||
| 28054 | 93 |
structure Code_Thingol: CODE_THINGOL = |
| 24219 | 94 |
struct |
95 |
||
96 |
(** auxiliary **) |
|
97 |
||
98 |
fun unfoldl dest x = |
|
99 |
case dest x |
|
100 |
of NONE => (x, []) |
|
101 |
| SOME (x1, x2) => |
|
102 |
let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end; |
|
103 |
||
104 |
fun unfoldr dest x = |
|
105 |
case dest x |
|
106 |
of NONE => ([], x) |
|
107 |
| SOME (x1, x2) => |
|
108 |
let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end; |
|
109 |
||
110 |
||
|
29962
bd4dc7fa742d
tuned comments, stripped ID, deleted superfluous code
haftmann
parents:
29952
diff
changeset
|
111 |
(** language core - types, terms **) |
| 24219 | 112 |
|
113 |
type vname = string; |
|
114 |
||
115 |
datatype dict = |
|
116 |
DictConst of string * dict list list |
|
117 |
| DictVar of string list * (vname * (int * int)); |
|
118 |
||
119 |
datatype itype = |
|
120 |
`%% of string * itype list |
|
121 |
| ITyVar of vname; |
|
122 |
||
| 31049 | 123 |
type const = string * ((itype list * dict list list) * itype list (*types of arguments*)) |
| 24591 | 124 |
|
| 24219 | 125 |
datatype iterm = |
| 24591 | 126 |
IConst of const |
| 31889 | 127 |
| IVar of vname option |
| 24219 | 128 |
| `$ of iterm * iterm |
| 31888 | 129 |
| `|=> of (vname option * itype) * iterm |
| 24219 | 130 |
| ICase of ((iterm * itype) * (iterm * iterm) list) * iterm; |
131 |
(*see also signature*) |
|
132 |
||
133 |
val op `$$ = Library.foldl (op `$); |
|
| 31724 | 134 |
val op `|==> = Library.foldr (op `|=>); |
| 24219 | 135 |
|
136 |
val unfold_app = unfoldl |
|
137 |
(fn op `$ t => SOME t |
|
138 |
| _ => NONE); |
|
139 |
||
| 31874 | 140 |
val unfold_abs = unfoldr |
141 |
(fn op `|=> t => SOME t |
|
| 24219 | 142 |
| _ => NONE); |
143 |
||
144 |
val split_let = |
|
145 |
(fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t) |
|
146 |
| _ => NONE); |
|
147 |
||
148 |
val unfold_let = unfoldr split_let; |
|
149 |
||
150 |
fun unfold_const_app t = |
|
151 |
case unfold_app t |
|
152 |
of (IConst c, ts) => SOME (c, ts) |
|
153 |
| _ => NONE; |
|
154 |
||
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
155 |
fun add_constnames (IConst (c, _)) = insert (op =) c |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
156 |
| add_constnames (IVar _) = I |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
157 |
| add_constnames (t1 `$ t2) = add_constnames t1 #> add_constnames t2 |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
158 |
| add_constnames (_ `|=> t) = add_constnames t |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
159 |
| add_constnames (ICase (((t, _), ds), _)) = add_constnames t |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
160 |
#> fold (fn (pat, body) => add_constnames pat #> add_constnames body) ds; |
| 24219 | 161 |
|
162 |
fun fold_varnames f = |
|
163 |
let |
|
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
164 |
fun fold_aux add f = |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
165 |
let |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
166 |
fun fold_term _ (IConst _) = I |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
167 |
| fold_term vs (IVar (SOME v)) = if member (op =) vs v then I else f v |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
168 |
| fold_term _ (IVar NONE) = I |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
169 |
| fold_term vs (t1 `$ t2) = fold_term vs t1 #> fold_term vs t2 |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
170 |
| fold_term vs ((SOME v, _) `|=> t) = fold_term (insert (op =) v vs) t |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
171 |
| fold_term vs ((NONE, _) `|=> t) = fold_term vs t |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
172 |
| fold_term vs (ICase (((t, _), ds), _)) = fold_term vs t #> fold (fold_case vs) ds |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
173 |
and fold_case vs (p, t) = fold_term (add p vs) t; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
174 |
in fold_term [] end; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
175 |
fun add t = fold_aux add (insert (op =)) t; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
176 |
in fold_aux add f end; |
| 24219 | 177 |
|
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
178 |
fun exists_var t v = fold_varnames (fn w => fn b => v = w orelse b) t false; |
| 31874 | 179 |
|
| 31889 | 180 |
fun split_pat_abs ((NONE, ty) `|=> t) = SOME ((IVar NONE, ty), t) |
| 31888 | 181 |
| split_pat_abs ((SOME v, ty) `|=> t) = SOME (case t |
| 31889 | 182 |
of ICase (((IVar (SOME w), _), [(p, t')]), _) => |
| 31888 | 183 |
if v = w andalso (exists_var p v orelse not (exists_var t' v)) |
| 31889 | 184 |
then ((p, ty), t') |
185 |
else ((IVar (SOME v), ty), t) |
|
186 |
| _ => ((IVar (SOME v), ty), t)) |
|
| 31888 | 187 |
| split_pat_abs _ = NONE; |
| 31874 | 188 |
|
189 |
val unfold_pat_abs = unfoldr split_pat_abs; |
|
| 24219 | 190 |
|
|
31890
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
191 |
fun unfold_abs_eta [] t = ([], t) |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
192 |
| unfold_abs_eta (_ :: tys) (v_ty `|=> t) = |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
193 |
let |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
194 |
val (vs_tys, t') = unfold_abs_eta tys t; |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
195 |
in (v_ty :: vs_tys, t') end |
| 31892 | 196 |
| unfold_abs_eta tys t = |
|
31890
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
197 |
let |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
198 |
val ctxt = fold_varnames Name.declare t Name.context; |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
199 |
val vs_tys = (map o apfst) SOME (Name.names ctxt "a" tys); |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
200 |
in (vs_tys, t `$$ map (IVar o fst) vs_tys) end; |
|
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
201 |
|
| 27711 | 202 |
fun eta_expand k (c as (_, (_, tys)), ts) = |
| 24219 | 203 |
let |
204 |
val j = length ts; |
|
205 |
val l = k - j; |
|
206 |
val ctxt = (fold o fold_varnames) Name.declare ts Name.context; |
|
| 31889 | 207 |
val vs_tys = (map o apfst) SOME |
208 |
(Name.names ctxt "a" ((curry Library.take l o curry Library.drop j) tys)); |
|
209 |
in vs_tys `|==> IConst c `$$ ts @ map (IVar o fst) vs_tys end; |
|
| 24219 | 210 |
|
|
24662
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
211 |
fun contains_dictvar t = |
|
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
212 |
let |
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
213 |
fun cont_dict (DictConst (_, dss)) = (exists o exists) cont_dict dss |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
214 |
| cont_dict (DictVar _) = true; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
215 |
fun cont_term (IConst (_, ((_, dss), _))) = (exists o exists) cont_dict dss |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
216 |
| cont_term (IVar _) = false |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
217 |
| cont_term (t1 `$ t2) = cont_term t1 orelse cont_term t2 |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
218 |
| cont_term (_ `|=> t) = cont_term t |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
219 |
| cont_term (ICase (_, t)) = cont_term t; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
220 |
in cont_term t end; |
|
24662
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
221 |
|
| 25621 | 222 |
fun locally_monomorphic (IConst _) = false |
223 |
| locally_monomorphic (IVar _) = true |
|
224 |
| locally_monomorphic (t `$ _) = locally_monomorphic t |
|
| 31724 | 225 |
| locally_monomorphic (_ `|=> t) = locally_monomorphic t |
| 25621 | 226 |
| locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds; |
227 |
||
228 |
||
| 28688 | 229 |
(** namings **) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
230 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
231 |
(* policies *) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
232 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
233 |
local |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
234 |
fun thyname_of thy f x = the (AList.lookup (op =) (f x) Markup.theory_nameN); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
235 |
fun thyname_of_class thy = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
236 |
thyname_of thy (ProofContext.query_class (ProofContext.init thy)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
237 |
fun thyname_of_tyco thy = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
238 |
thyname_of thy (Type.the_tags (Sign.tsig_of thy)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
239 |
fun thyname_of_instance thy inst = case AxClass.arity_property thy inst Markup.theory_nameN |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
240 |
of [] => error ("no such instance: " ^ quote (snd inst ^ " :: " ^ fst inst))
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
241 |
| thyname :: _ => thyname; |
| 28706 | 242 |
fun thyname_of_const thy c = case AxClass.class_of_param thy c |
243 |
of SOME class => thyname_of_class thy class |
|
244 |
| NONE => (case Code.get_datatype_of_constr thy c |
|
245 |
of SOME dtco => thyname_of_tyco thy dtco |
|
246 |
| NONE => thyname_of thy (Consts.the_tags (Sign.consts_of thy)) c); |
|
| 31036 | 247 |
fun purify_base "op &" = "and" |
248 |
| purify_base "op |" = "or" |
|
249 |
| purify_base "op -->" = "implies" |
|
250 |
| purify_base "op :" = "member" |
|
251 |
| purify_base "op =" = "eq" |
|
252 |
| purify_base "*" = "product" |
|
253 |
| purify_base "+" = "sum" |
|
254 |
| purify_base s = Name.desymbolize false s; |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
255 |
fun namify thy get_basename get_thyname name = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
256 |
let |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
257 |
val prefix = get_thyname thy name; |
| 31036 | 258 |
val base = (purify_base o get_basename) name; |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
259 |
in Long_Name.append prefix base end; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
260 |
in |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
261 |
|
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
262 |
fun namify_class thy = namify thy Long_Name.base_name thyname_of_class; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
263 |
fun namify_classrel thy = namify thy (fn (class1, class2) => |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
264 |
Long_Name.base_name class2 ^ "_" ^ Long_Name.base_name class1) (fn thy => thyname_of_class thy o fst); |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
265 |
(*order fits nicely with composed projections*) |
| 28688 | 266 |
fun namify_tyco thy "fun" = "Pure.fun" |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
267 |
| namify_tyco thy tyco = namify thy Long_Name.base_name thyname_of_tyco tyco; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
268 |
fun namify_instance thy = namify thy (fn (class, tyco) => |
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
269 |
Long_Name.base_name class ^ "_" ^ Long_Name.base_name tyco) thyname_of_instance; |
|
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
270 |
fun namify_const thy = namify thy Long_Name.base_name thyname_of_const; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
271 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
272 |
end; (* local *) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
273 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
274 |
|
| 28688 | 275 |
(* data *) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
276 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
277 |
datatype naming = Naming of {
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
278 |
class: class Symtab.table * Name.context, |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
279 |
classrel: string Symreltab.table * Name.context, |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
280 |
tyco: string Symtab.table * Name.context, |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
281 |
instance: string Symreltab.table * Name.context, |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
282 |
const: string Symtab.table * Name.context |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
283 |
} |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
284 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
285 |
fun dest_Naming (Naming naming) = naming; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
286 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
287 |
val empty_naming = Naming {
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
288 |
class = (Symtab.empty, Name.context), |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
289 |
classrel = (Symreltab.empty, Name.context), |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
290 |
tyco = (Symtab.empty, Name.context), |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
291 |
instance = (Symreltab.empty, Name.context), |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
292 |
const = (Symtab.empty, Name.context) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
293 |
}; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
294 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
295 |
local |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
296 |
fun mk_naming (class, classrel, tyco, instance, const) = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
297 |
Naming { class = class, classrel = classrel,
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
298 |
tyco = tyco, instance = instance, const = const }; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
299 |
fun map_naming f (Naming { class, classrel, tyco, instance, const }) =
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
300 |
mk_naming (f (class, classrel, tyco, instance, const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
301 |
in |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
302 |
fun map_class f = map_naming |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
303 |
(fn (class, classrel, tyco, inst, const) => |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
304 |
(f class, classrel, tyco, inst, const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
305 |
fun map_classrel f = map_naming |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
306 |
(fn (class, classrel, tyco, inst, const) => |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
307 |
(class, f classrel, tyco, inst, const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
308 |
fun map_tyco f = map_naming |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
309 |
(fn (class, classrel, tyco, inst, const) => |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
310 |
(class, classrel, f tyco, inst, const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
311 |
fun map_instance f = map_naming |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
312 |
(fn (class, classrel, tyco, inst, const) => |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
313 |
(class, classrel, tyco, f inst, const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
314 |
fun map_const f = map_naming |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
315 |
(fn (class, classrel, tyco, inst, const) => |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
316 |
(class, classrel, tyco, inst, f const)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
317 |
end; (*local*) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
318 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
319 |
fun add_variant update (thing, name) (tab, used) = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
320 |
let |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
321 |
val (name', used') = yield_singleton Name.variants name used; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
322 |
val tab' = update (thing, name') tab; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
323 |
in (tab', used') end; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
324 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
325 |
fun declare thy mapp lookup update namify thing = |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
326 |
mapp (add_variant update (thing, namify thy thing)) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
327 |
#> `(fn naming => the (lookup naming thing)); |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
328 |
|
| 28688 | 329 |
|
330 |
(* lookup and declare *) |
|
331 |
||
332 |
local |
|
333 |
||
334 |
val suffix_class = "class"; |
|
335 |
val suffix_classrel = "classrel" |
|
336 |
val suffix_tyco = "tyco"; |
|
337 |
val suffix_instance = "inst"; |
|
338 |
val suffix_const = "const"; |
|
339 |
||
340 |
fun add_suffix nsp NONE = NONE |
|
|
30364
577edc39b501
moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents:
30280
diff
changeset
|
341 |
| add_suffix nsp (SOME name) = SOME (Long_Name.append name nsp); |
| 28688 | 342 |
|
343 |
in |
|
344 |
||
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
345 |
val lookup_class = add_suffix suffix_class |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
346 |
oo Symtab.lookup o fst o #class o dest_Naming; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
347 |
val lookup_classrel = add_suffix suffix_classrel |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
348 |
oo Symreltab.lookup o fst o #classrel o dest_Naming; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
349 |
val lookup_tyco = add_suffix suffix_tyco |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
350 |
oo Symtab.lookup o fst o #tyco o dest_Naming; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
351 |
val lookup_instance = add_suffix suffix_instance |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
352 |
oo Symreltab.lookup o fst o #instance o dest_Naming; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
353 |
val lookup_const = add_suffix suffix_const |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
354 |
oo Symtab.lookup o fst o #const o dest_Naming; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
355 |
|
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
356 |
fun declare_class thy = declare thy map_class |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
357 |
lookup_class Symtab.update_new namify_class; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
358 |
fun declare_classrel thy = declare thy map_classrel |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
359 |
lookup_classrel Symreltab.update_new namify_classrel; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
360 |
fun declare_tyco thy = declare thy map_tyco |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
361 |
lookup_tyco Symtab.update_new namify_tyco; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
362 |
fun declare_instance thy = declare thy map_instance |
|
30648
17365ef082f3
clarified relationship of modules Code_Name and Code_Printer
haftmann
parents:
30364
diff
changeset
|
363 |
lookup_instance Symreltab.update_new namify_instance; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
364 |
fun declare_const thy = declare thy map_const |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
365 |
lookup_const Symtab.update_new namify_const; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
366 |
|
| 31054 | 367 |
fun ensure_declared_const thy const naming = |
368 |
case lookup_const naming const |
|
369 |
of SOME const' => (const', naming) |
|
370 |
| NONE => declare_const thy const naming; |
|
371 |
||
| 28688 | 372 |
val unfold_fun = unfoldr |
373 |
(fn "Pure.fun.tyco" `%% [ty1, ty2] => SOME (ty1, ty2) |
|
374 |
| _ => NONE); (*depends on suffix_tyco and namify_tyco!*) |
|
375 |
||
376 |
end; (* local *) |
|
377 |
||
| 24219 | 378 |
|
| 27103 | 379 |
(** statements, abstract programs **) |
| 24219 | 380 |
|
381 |
type typscheme = (vname * sort) list * itype; |
|
| 24918 | 382 |
datatype stmt = |
| 27024 | 383 |
NoStmt |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
384 |
| Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
385 |
| Datatype of string * ((vname * sort) list * (string * itype list) list) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
386 |
| Datatypecons of string * string |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
387 |
| Class of class * (vname * ((class * string) list * (string * itype) list)) |
| 24219 | 388 |
| Classrel of class * class |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
389 |
| Classparam of string * class |
| 24219 | 390 |
| Classinst of (class * (string * (vname * sort) list)) |
391 |
* ((class * (string * (string * dict list list))) list |
|
| 28350 | 392 |
* ((string * const) * (thm * bool)) list); |
| 24219 | 393 |
|
| 27103 | 394 |
type program = stmt Graph.T; |
| 24219 | 395 |
|
| 27103 | 396 |
fun empty_funs program = |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
397 |
Graph.fold (fn (name, (Fun (c, (_, [])), _)) => cons c |
| 27103 | 398 |
| _ => I) program []; |
| 24219 | 399 |
|
| 27711 | 400 |
fun map_terms_bottom_up f (t as IConst _) = f t |
401 |
| map_terms_bottom_up f (t as IVar _) = f t |
|
402 |
| map_terms_bottom_up f (t1 `$ t2) = f |
|
403 |
(map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2) |
|
| 31724 | 404 |
| map_terms_bottom_up f ((v, ty) `|=> t) = f |
405 |
((v, ty) `|=> map_terms_bottom_up f t) |
|
| 27711 | 406 |
| map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f |
407 |
(ICase (((map_terms_bottom_up f t, ty), (map o pairself) |
|
408 |
(map_terms_bottom_up f) ps), map_terms_bottom_up f t0)); |
|
409 |
||
410 |
fun map_terms_stmt f NoStmt = NoStmt |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
411 |
| map_terms_stmt f (Fun (c, (tysm, eqs))) = Fun (c, (tysm, (map o apfst) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
412 |
(fn (ts, t) => (map f ts, f t)) eqs)) |
| 27711 | 413 |
| map_terms_stmt f (stmt as Datatype _) = stmt |
414 |
| map_terms_stmt f (stmt as Datatypecons _) = stmt |
|
415 |
| map_terms_stmt f (stmt as Class _) = stmt |
|
416 |
| map_terms_stmt f (stmt as Classrel _) = stmt |
|
417 |
| map_terms_stmt f (stmt as Classparam _) = stmt |
|
418 |
| map_terms_stmt f (Classinst (arity, (superarities, classparms))) = |
|
419 |
Classinst (arity, (superarities, (map o apfst o apsnd) (fn const => |
|
420 |
case f (IConst const) of IConst const' => const') classparms)); |
|
421 |
||
| 27103 | 422 |
fun is_cons program name = case Graph.get_node program name |
| 24219 | 423 |
of Datatypecons _ => true |
424 |
| _ => false; |
|
425 |
||
| 27103 | 426 |
fun contr_classparam_typs program name = case Graph.get_node program name |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
427 |
of Classparam (_, class) => let |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
428 |
val Class (_, (_, (_, params))) = Graph.get_node program class; |
| 25621 | 429 |
val SOME ty = AList.lookup (op =) params name; |
430 |
val (tys, res_ty) = unfold_fun ty; |
|
431 |
fun no_tyvar (_ `%% tys) = forall no_tyvar tys |
|
432 |
| no_tyvar (ITyVar _) = false; |
|
433 |
in if no_tyvar res_ty |
|
434 |
then map (fn ty => if no_tyvar ty then NONE else SOME ty) tys |
|
435 |
else [] |
|
436 |
end |
|
437 |
| _ => []; |
|
438 |
||
| 24219 | 439 |
|
| 27103 | 440 |
(** translation kernel **) |
| 24219 | 441 |
|
| 28724 | 442 |
(* generic mechanisms *) |
443 |
||
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
444 |
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) = |
| 24219 | 445 |
let |
| 28706 | 446 |
fun add_dep name = case dep of NONE => I |
447 |
| SOME dep => Graph.add_edge (dep, name); |
|
448 |
val (name, naming') = case lookup naming thing |
|
449 |
of SOME name => (name, naming) |
|
450 |
| NONE => declare thing naming; |
|
451 |
in case try (Graph.get_node program) name |
|
452 |
of SOME stmt => program |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
453 |
|> add_dep name |
| 28706 | 454 |
|> pair naming' |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
455 |
|> pair dep |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
456 |
|> pair name |
| 28706 | 457 |
| NONE => program |
458 |
|> Graph.default_node (name, NoStmt) |
|
459 |
|> add_dep name |
|
460 |
|> pair naming' |
|
461 |
|> curry generate (SOME name) |
|
462 |
||> snd |
|
463 |
|-> (fn stmt => (apsnd o Graph.map_node name) (K stmt)) |
|
464 |
|> pair dep |
|
465 |
|> pair name |
|
| 24219 | 466 |
end; |
467 |
||
| 26972 | 468 |
fun not_wellsorted thy thm ty sort e = |
469 |
let |
|
470 |
val err_class = Sorts.class_error (Syntax.pp_global thy) e; |
|
471 |
val err_thm = case thm |
|
|
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:
31962
diff
changeset
|
472 |
of SOME thm => "\n(in code equation " ^ Display.string_of_thm_global thy thm ^ ")" | NONE => ""; |
| 26972 | 473 |
val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort " |
474 |
^ Syntax.string_of_sort_global thy sort; |
|
475 |
in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end;
|
|
476 |
||
| 28724 | 477 |
|
478 |
(* translation *) |
|
479 |
||
| 30932 | 480 |
fun ensure_tyco thy algbr funcgr tyco = |
481 |
let |
|
482 |
val stmt_datatype = |
|
483 |
let |
|
484 |
val (vs, cos) = Code.get_datatype thy tyco; |
|
485 |
in |
|
486 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
|
487 |
##>> fold_map (fn (c, tys) => |
|
488 |
ensure_const thy algbr funcgr c |
|
489 |
##>> fold_map (translate_typ thy algbr funcgr) tys) cos |
|
490 |
#>> (fn info => Datatype (tyco, info)) |
|
491 |
end; |
|
492 |
in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end |
|
493 |
and ensure_const thy algbr funcgr c = |
|
494 |
let |
|
495 |
fun stmt_datatypecons tyco = |
|
496 |
ensure_tyco thy algbr funcgr tyco |
|
497 |
#>> (fn tyco => Datatypecons (c, tyco)); |
|
498 |
fun stmt_classparam class = |
|
499 |
ensure_class thy algbr funcgr class |
|
500 |
#>> (fn class => Classparam (c, class)); |
|
501 |
fun stmt_fun ((vs, ty), raw_thms) = |
|
502 |
let |
|
503 |
val thms = if null (Term.add_tfreesT ty []) orelse (null o fst o strip_type) ty |
|
504 |
then raw_thms |
|
| 31156 | 505 |
else (map o apfst) (Code.expand_eta thy 1) raw_thms; |
| 30932 | 506 |
in |
507 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
|
508 |
##>> translate_typ thy algbr funcgr ty |
|
509 |
##>> fold_map (translate_eq thy algbr funcgr) thms |
|
510 |
#>> (fn info => Fun (c, info)) |
|
511 |
end; |
|
512 |
val stmt_const = case Code.get_datatype_of_constr thy c |
|
513 |
of SOME tyco => stmt_datatypecons tyco |
|
514 |
| NONE => (case AxClass.class_of_param thy c |
|
515 |
of SOME class => stmt_classparam class |
|
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31088
diff
changeset
|
516 |
| NONE => stmt_fun (Code_Preproc.typ funcgr c, Code_Preproc.eqns funcgr c)) |
| 30932 | 517 |
in ensure_stmt lookup_const (declare_const thy) stmt_const c end |
518 |
and ensure_class thy (algbr as (_, algebra)) funcgr class = |
|
| 24918 | 519 |
let |
|
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
520 |
val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
| 24969 | 521 |
val cs = #params (AxClass.get_info thy class); |
| 24918 | 522 |
val stmt_class = |
523 |
fold_map (fn superclass => ensure_class thy algbr funcgr superclass |
|
524 |
##>> ensure_classrel thy algbr funcgr (class, superclass)) superclasses |
|
525 |
##>> fold_map (fn (c, ty) => ensure_const thy algbr funcgr c |
|
| 28688 | 526 |
##>> translate_typ thy algbr funcgr ty) cs |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
527 |
#>> (fn info => Class (class, (unprefix "'" Name.aT, info))) |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
528 |
in ensure_stmt lookup_class (declare_class thy) stmt_class class end |
| 24918 | 529 |
and ensure_classrel thy algbr funcgr (subclass, superclass) = |
530 |
let |
|
531 |
val stmt_classrel = |
|
532 |
ensure_class thy algbr funcgr subclass |
|
533 |
##>> ensure_class thy algbr funcgr superclass |
|
534 |
#>> Classrel; |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
535 |
in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (subclass, superclass) end |
| 26972 | 536 |
and ensure_inst thy (algbr as (_, algebra)) funcgr (class, tyco) = |
| 24918 | 537 |
let |
|
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
538 |
val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
| 24969 | 539 |
val classparams = these (try (#params o AxClass.get_info thy) class); |
| 24918 | 540 |
val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]); |
541 |
val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class]; |
|
542 |
val vs' = map2 (fn (v, sort1) => fn sort2 => (v, |
|
543 |
Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts'; |
|
544 |
val arity_typ = Type (tyco, map TFree vs); |
|
545 |
val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs'); |
|
| 28688 | 546 |
fun translate_superarity superclass = |
| 24918 | 547 |
ensure_class thy algbr funcgr superclass |
548 |
##>> ensure_classrel thy algbr funcgr (class, superclass) |
|
| 28688 | 549 |
##>> translate_dicts thy algbr funcgr NONE (arity_typ, [superclass]) |
| 24918 | 550 |
#>> (fn ((superclass, classrel), [DictConst (inst, dss)]) => |
551 |
(superclass, (classrel, (inst, dss)))); |
|
| 28688 | 552 |
fun translate_classparam_inst (c, ty) = |
| 24918 | 553 |
let |
554 |
val c_inst = Const (c, map_type_tfree (K arity_typ') ty); |
|
|
25597
34860182b250
moved instance parameter management from class.ML to axclass.ML
haftmann
parents:
25485
diff
changeset
|
555 |
val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst); |
| 24918 | 556 |
val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd |
557 |
o Logic.dest_equals o Thm.prop_of) thm; |
|
558 |
in |
|
559 |
ensure_const thy algbr funcgr c |
|
| 28688 | 560 |
##>> translate_const thy algbr funcgr (SOME thm) c_ty |
| 28350 | 561 |
#>> (fn (c, IConst c_inst) => ((c, c_inst), (thm, true))) |
| 24918 | 562 |
end; |
563 |
val stmt_inst = |
|
564 |
ensure_class thy algbr funcgr class |
|
565 |
##>> ensure_tyco thy algbr funcgr tyco |
|
| 28688 | 566 |
##>> fold_map (translate_tyvar_sort thy algbr funcgr) vs |
567 |
##>> fold_map translate_superarity superclasses |
|
568 |
##>> fold_map translate_classparam_inst classparams |
|
| 24918 | 569 |
#>> (fn ((((class, tyco), arity), superarities), classparams) => |
570 |
Classinst ((class, (tyco, arity)), (superarities, classparams))); |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
571 |
in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end |
| 30932 | 572 |
and translate_typ thy algbr funcgr (TFree (v, _)) = |
573 |
pair (ITyVar (unprefix "'" v)) |
|
574 |
| translate_typ thy algbr funcgr (Type (tyco, tys)) = |
|
| 24918 | 575 |
ensure_tyco thy algbr funcgr tyco |
| 30932 | 576 |
##>> fold_map (translate_typ thy algbr funcgr) tys |
577 |
#>> (fn (tyco, tys) => tyco `%% tys) |
|
| 28688 | 578 |
and translate_term thy algbr funcgr thm (Const (c, ty)) = |
579 |
translate_app thy algbr funcgr thm ((c, ty), []) |
|
580 |
| translate_term thy algbr funcgr thm (Free (v, _)) = |
|
| 31889 | 581 |
pair (IVar (SOME v)) |
| 28688 | 582 |
| translate_term thy algbr funcgr thm (Abs (abs as (_, ty, _))) = |
| 24918 | 583 |
let |
584 |
val (v, t) = Syntax.variant_abs abs; |
|
| 31888 | 585 |
val v' = if member (op =) (Term.add_free_names t []) v |
586 |
then SOME v else NONE |
|
| 24918 | 587 |
in |
| 28688 | 588 |
translate_typ thy algbr funcgr ty |
589 |
##>> translate_term thy algbr funcgr thm t |
|
| 31888 | 590 |
#>> (fn (ty, t) => (v', ty) `|=> t) |
| 24918 | 591 |
end |
| 28688 | 592 |
| translate_term thy algbr funcgr thm (t as _ $ _) = |
| 24918 | 593 |
case strip_comb t |
594 |
of (Const (c, ty), ts) => |
|
| 28688 | 595 |
translate_app thy algbr funcgr thm ((c, ty), ts) |
| 24918 | 596 |
| (t', ts) => |
| 28688 | 597 |
translate_term thy algbr funcgr thm t' |
598 |
##>> fold_map (translate_term thy algbr funcgr thm) ts |
|
| 24918 | 599 |
#>> (fn (t, ts) => t `$$ ts) |
| 31088 | 600 |
and translate_eq thy algbr funcgr (thm, proper) = |
| 30932 | 601 |
let |
602 |
val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals |
|
603 |
o Logic.unvarify o prop_of) thm; |
|
604 |
in |
|
605 |
fold_map (translate_term thy algbr funcgr (SOME thm)) args |
|
606 |
##>> translate_term thy algbr funcgr (SOME thm) rhs |
|
| 31088 | 607 |
#>> rpair (thm, proper) |
| 30932 | 608 |
end |
| 28688 | 609 |
and translate_const thy algbr funcgr thm (c, ty) = |
| 26972 | 610 |
let |
611 |
val tys = Sign.const_typargs thy (c, ty); |
|
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31088
diff
changeset
|
612 |
val sorts = (map snd o fst o Code_Preproc.typ funcgr) c; |
| 26972 | 613 |
val tys_args = (fst o Term.strip_type) ty; |
614 |
in |
|
615 |
ensure_const thy algbr funcgr c |
|
| 31049 | 616 |
##>> fold_map (translate_typ thy algbr funcgr) tys |
| 28688 | 617 |
##>> fold_map (translate_dicts thy algbr funcgr thm) (tys ~~ sorts) |
618 |
##>> fold_map (translate_typ thy algbr funcgr) tys_args |
|
| 31049 | 619 |
#>> (fn (((c, tys), iss), tys_args) => IConst (c, ((tys, iss), tys_args))) |
| 26972 | 620 |
end |
| 29973 | 621 |
and translate_app_const thy algbr funcgr thm (c_ty, ts) = |
| 28688 | 622 |
translate_const thy algbr funcgr thm c_ty |
623 |
##>> fold_map (translate_term thy algbr funcgr thm) ts |
|
| 24918 | 624 |
#>> (fn (t, ts) => t `$$ ts) |
|
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
625 |
and translate_case thy algbr funcgr thm (num_args, (t_pos, case_pats)) (c_ty, ts) = |
| 24918 | 626 |
let |
| 31892 | 627 |
fun arg_types num_args ty = (fst o chop num_args o fst o strip_type) ty; |
628 |
val tys = arg_types num_args (snd c_ty); |
|
|
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
629 |
val ty = nth tys t_pos; |
| 31957 | 630 |
fun mk_constr c t = let val n = Code.args_number thy c |
631 |
in ((c, arg_types n (fastype_of t) ---> ty), n) end; |
|
| 31892 | 632 |
val constrs = if null case_pats then [] |
633 |
else map2 mk_constr case_pats (nth_drop t_pos ts); |
|
634 |
fun casify naming constrs ty ts = |
|
| 24918 | 635 |
let |
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
636 |
val undefineds = map_filter (lookup_const naming) (Code.undefineds thy); |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
637 |
fun collapse_clause vs_map ts body = |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
638 |
let |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
639 |
in case body |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
640 |
of IConst (c, _) => if member (op =) undefineds c |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
641 |
then [] |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
642 |
else [(ts, body)] |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
643 |
| ICase (((IVar (SOME v), _), subclauses), _) => |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
644 |
if forall (fn (pat', body') => exists_var pat' v |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
645 |
orelse not (exists_var body' v)) subclauses |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
646 |
then case AList.lookup (op =) vs_map v |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
647 |
of SOME i => maps (fn (pat', body') => |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
648 |
collapse_clause (AList.delete (op =) v vs_map) |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
649 |
(nth_map i (K pat') ts) body') subclauses |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
650 |
| NONE => [(ts, body)] |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
651 |
else [(ts, body)] |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
652 |
| _ => [(ts, body)] |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
653 |
end; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
654 |
fun mk_clause mk tys t = |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
655 |
let |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
656 |
val (vs, body) = unfold_abs_eta tys t; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
657 |
val vs_map = fold_index (fn (i, (SOME v, _)) => cons (v, i) | _ => I) vs []; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
658 |
val ts = map (IVar o fst) vs; |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
659 |
in map mk (collapse_clause vs_map ts body) end; |
| 31892 | 660 |
val t = nth ts t_pos; |
661 |
val ts_clause = nth_drop t_pos ts; |
|
|
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
662 |
val clauses = if null case_pats |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
663 |
then mk_clause (fn ([t], body) => (t, body)) [ty] (the_single ts_clause) |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
664 |
else maps (fn ((constr as IConst (_, (_, tys)), n), t) => |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
665 |
mk_clause (fn (ts, body) => (constr `$$ ts, body)) (curry Library.take n tys) t) |
|
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
666 |
(constrs ~~ ts_clause); |
| 31892 | 667 |
in ((t, ty), clauses) end; |
| 24918 | 668 |
in |
|
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
669 |
translate_const thy algbr funcgr thm c_ty |
| 31892 | 670 |
##>> fold_map (fn (constr, n) => translate_const thy algbr funcgr thm constr #>> rpair n) constrs |
|
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
671 |
##>> translate_typ thy algbr funcgr ty |
| 31892 | 672 |
##>> fold_map (translate_term thy algbr funcgr thm) ts |
673 |
#-> (fn (((t, constrs), ty), ts) => |
|
674 |
`(fn (_, (naming, _)) => ICase (casify naming constrs ty ts, t `$$ ts))) |
|
| 24918 | 675 |
end |
| 29973 | 676 |
and translate_app_case thy algbr funcgr thm (case_scheme as (num_args, _)) ((c, ty), ts) = |
677 |
if length ts < num_args then |
|
678 |
let |
|
679 |
val k = length ts; |
|
680 |
val tys = (curry Library.take (num_args - k) o curry Library.drop k o fst o strip_type) ty; |
|
681 |
val ctxt = (fold o fold_aterms) Term.declare_term_frees ts Name.context; |
|
682 |
val vs = Name.names ctxt "a" tys; |
|
683 |
in |
|
684 |
fold_map (translate_typ thy algbr funcgr) tys |
|
685 |
##>> translate_case thy algbr funcgr thm case_scheme ((c, ty), ts @ map Free vs) |
|
| 31888 | 686 |
#>> (fn (tys, t) => map2 (fn (v, _) => pair (SOME v)) vs tys `|==> t) |
| 29973 | 687 |
end |
688 |
else if length ts > num_args then |
|
689 |
translate_case thy algbr funcgr thm case_scheme ((c, ty), Library.take (num_args, ts)) |
|
690 |
##>> fold_map (translate_term thy algbr funcgr thm) (Library.drop (num_args, ts)) |
|
691 |
#>> (fn (t, ts) => t `$$ ts) |
|
692 |
else |
|
693 |
translate_case thy algbr funcgr thm case_scheme ((c, ty), ts) |
|
694 |
and translate_app thy algbr funcgr thm (c_ty_ts as ((c, _), _)) = |
|
695 |
case Code.get_case_scheme thy c |
|
|
30023
55954f726043
permissive check for pattern discipline in case schemes
haftmann
parents:
30009
diff
changeset
|
696 |
of SOME case_scheme => translate_app_case thy algbr funcgr thm case_scheme c_ty_ts |
| 30932 | 697 |
| NONE => translate_app_const thy algbr funcgr thm c_ty_ts |
698 |
and translate_tyvar_sort thy (algbr as (proj_sort, _)) funcgr (v, sort) = |
|
699 |
fold_map (ensure_class thy algbr funcgr) (proj_sort sort) |
|
700 |
#>> (fn sort => (unprefix "'" v, sort)) |
|
701 |
and translate_dicts thy (algbr as (proj_sort, algebra)) funcgr thm (ty, sort) = |
|
702 |
let |
|
703 |
val pp = Syntax.pp_global thy; |
|
704 |
datatype typarg = |
|
705 |
Global of (class * string) * typarg list list |
|
706 |
| Local of (class * class) list * (string * (int * sort)); |
|
707 |
fun class_relation (Global ((_, tyco), yss), _) class = |
|
708 |
Global ((class, tyco), yss) |
|
709 |
| class_relation (Local (classrels, v), subclass) superclass = |
|
710 |
Local ((subclass, superclass) :: classrels, v); |
|
711 |
fun type_constructor tyco yss class = |
|
712 |
Global ((class, tyco), (map o map) fst yss); |
|
713 |
fun type_variable (TFree (v, sort)) = |
|
714 |
let |
|
715 |
val sort' = proj_sort sort; |
|
716 |
in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end; |
|
717 |
val typargs = Sorts.of_sort_derivation pp algebra |
|
718 |
{class_relation = class_relation, type_constructor = type_constructor,
|
|
719 |
type_variable = type_variable} (ty, proj_sort sort) |
|
720 |
handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e; |
|
721 |
fun mk_dict (Global (inst, yss)) = |
|
722 |
ensure_inst thy algbr funcgr inst |
|
723 |
##>> (fold_map o fold_map) mk_dict yss |
|
724 |
#>> (fn (inst, dss) => DictConst (inst, dss)) |
|
| 31962 | 725 |
| mk_dict (Local (classrels, (v, (n, sort)))) = |
| 30932 | 726 |
fold_map (ensure_classrel thy algbr funcgr) classrels |
| 31962 | 727 |
#>> (fn classrels => DictVar (classrels, (unprefix "'" v, (n, length sort)))) |
| 30932 | 728 |
in fold_map mk_dict typargs end; |
| 24918 | 729 |
|
| 25969 | 730 |
|
| 27103 | 731 |
(* store *) |
732 |
||
| 31962 | 733 |
structure Program = Code_Data_Fun |
| 27103 | 734 |
( |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
735 |
type T = naming * program; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
736 |
val empty = (empty_naming, Graph.empty); |
| 28706 | 737 |
fun purge thy cs (naming, program) = |
| 27609 | 738 |
let |
| 28706 | 739 |
val names_delete = cs |
740 |
|> map_filter (lookup_const naming) |
|
741 |
|> filter (can (Graph.get_node program)) |
|
742 |
|> Graph.all_preds program; |
|
743 |
val program' = Graph.del_nodes names_delete program; |
|
744 |
in (naming, program') end; |
|
| 27103 | 745 |
); |
746 |
||
747 |
val cached_program = Program.get; |
|
| 25969 | 748 |
|
|
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
749 |
fun invoke_generation thy (algebra, funcgr) f name = |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
750 |
Program.change_yield thy (fn naming_program => (NONE, naming_program) |
|
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
751 |
|> f thy algebra funcgr name |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
752 |
|-> (fn name => fn (_, naming_program) => (name, naming_program))); |
| 27103 | 753 |
|
754 |
||
755 |
(* program generation *) |
|
756 |
||
757 |
fun consts_program thy cs = |
|
758 |
let |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
759 |
fun project_consts cs (naming, program) = |
| 27103 | 760 |
let |
761 |
val cs_all = Graph.all_succs program cs; |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
762 |
in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end; |
| 27103 | 763 |
fun generate_consts thy algebra funcgr = |
764 |
fold_map (ensure_const thy algebra funcgr); |
|
765 |
in |
|
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31088
diff
changeset
|
766 |
invoke_generation thy (Code_Preproc.obtain thy cs []) generate_consts cs |
| 27103 | 767 |
|-> project_consts |
768 |
end; |
|
769 |
||
770 |
||
771 |
(* value evaluation *) |
|
| 25969 | 772 |
|
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
773 |
fun ensure_value thy algbr funcgr t = |
| 24918 | 774 |
let |
775 |
val ty = fastype_of t; |
|
776 |
val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =) |
|
777 |
o dest_TFree))) t []; |
|
778 |
val stmt_value = |
|
| 28688 | 779 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
780 |
##>> translate_typ thy algbr funcgr ty |
|
781 |
##>> translate_term thy algbr funcgr NONE t |
|
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
782 |
#>> (fn ((vs, ty), t) => Fun |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
783 |
(Term.dummy_patternN, ((vs, ty), [(([], t), (Drule.dummy_thm, true))]))); |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
784 |
fun term_value (dep, (naming, program1)) = |
| 25969 | 785 |
let |
| 30947 | 786 |
val Fun (_, (vs_ty, [(([], t), _)])) = |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
787 |
Graph.get_node program1 Term.dummy_patternN; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
788 |
val deps = Graph.imm_succs program1 Term.dummy_patternN; |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
789 |
val program2 = Graph.del_nodes [Term.dummy_patternN] program1; |
| 27103 | 790 |
val deps_all = Graph.all_succs program2 deps; |
791 |
val program3 = Graph.subgraph (member (op =) deps_all) program2; |
|
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
792 |
in (((naming, program3), ((vs_ty, t), deps)), (dep, (naming, program2))) end; |
| 26011 | 793 |
in |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
794 |
ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN |
| 26011 | 795 |
#> snd |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
796 |
#> term_value |
| 26011 | 797 |
end; |
| 24219 | 798 |
|
| 30947 | 799 |
fun base_evaluator thy evaluator algebra funcgr vs t = |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
800 |
let |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
801 |
val (((naming, program), (((vs', ty'), t'), deps)), _) = |
|
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
802 |
invoke_generation thy (algebra, funcgr) ensure_value t; |
| 30947 | 803 |
val vs'' = map (fn (v, _) => (v, (the o AList.lookup (op =) vs o prefix "'") v)) vs'; |
|
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
804 |
in evaluator naming program ((vs'', (vs', ty')), t') deps end; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
805 |
|
|
32123
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
31962
diff
changeset
|
806 |
fun eval_conv thy = Code_Preproc.eval_conv thy o base_evaluator thy; |
|
8bac9ee4b28d
integrated add_triv_classes into evaluation stack
haftmann
parents:
31962
diff
changeset
|
807 |
fun eval thy postproc = Code_Preproc.eval thy postproc o base_evaluator thy; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
808 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
809 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
810 |
(** diagnostic commands **) |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
811 |
|
| 31036 | 812 |
fun read_const_exprs thy = |
813 |
let |
|
814 |
fun consts_of some_thyname = |
|
815 |
let |
|
816 |
val thy' = case some_thyname |
|
817 |
of SOME thyname => ThyInfo.the_theory thyname thy |
|
818 |
| NONE => thy; |
|
819 |
val cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I) |
|
820 |
((snd o #constants o Consts.dest o #consts o Sign.rep_sg) thy') []; |
|
821 |
fun belongs_here c = |
|
822 |
not (exists (fn thy'' => Sign.declared_const thy'' c) (Theory.parents_of thy')) |
|
823 |
in case some_thyname |
|
824 |
of NONE => cs |
|
825 |
| SOME thyname => filter belongs_here cs |
|
826 |
end; |
|
827 |
fun read_const_expr "*" = ([], consts_of NONE) |
|
828 |
| read_const_expr s = if String.isSuffix ".*" s |
|
829 |
then ([], consts_of (SOME (unsuffix ".*" s))) |
|
| 31156 | 830 |
else ([Code.read_const thy s], []); |
| 31036 | 831 |
in pairself flat o split_list o map read_const_expr end; |
832 |
||
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
833 |
fun code_depgr thy consts = |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
834 |
let |
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31088
diff
changeset
|
835 |
val (_, eqngr) = Code_Preproc.obtain thy consts []; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
836 |
val select = Graph.all_succs eqngr consts; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
837 |
in |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
838 |
eqngr |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
839 |
|> not (null consts) ? Graph.subgraph (member (op =) select) |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
840 |
|> Graph.map_nodes ((apsnd o map o apfst) (AxClass.overload thy)) |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
841 |
end; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
842 |
|
|
31125
80218ee73167
transferred code generator preprocessor into separate module
haftmann
parents:
31088
diff
changeset
|
843 |
fun code_thms thy = Pretty.writeln o Code_Preproc.pretty thy o code_depgr thy; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
844 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
845 |
fun code_deps thy consts = |
| 27103 | 846 |
let |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
847 |
val eqngr = code_depgr thy consts; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
848 |
val constss = Graph.strong_conn eqngr; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
849 |
val mapping = Symtab.empty |> fold (fn consts => fold (fn const => |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
850 |
Symtab.update (const, consts)) consts) constss; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
851 |
fun succs consts = consts |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
852 |
|> maps (Graph.imm_succs eqngr) |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
853 |
|> subtract (op =) consts |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
854 |
|> map (the o Symtab.lookup mapping) |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
855 |
|> distinct (op =); |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
856 |
val conn = [] |> fold (fn consts => cons (consts, succs consts)) constss; |
| 31156 | 857 |
fun namify consts = map (Code.string_of_const thy) consts |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
858 |
|> commas; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
859 |
val prgr = map (fn (consts, constss) => |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
860 |
{ name = namify consts, ID = namify consts, dir = "", unfold = true,
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
861 |
path = "", parents = map namify constss }) conn; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
862 |
in Present.display_graph prgr end; |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
863 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
864 |
local |
| 27103 | 865 |
|
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
866 |
structure P = OuterParse |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
867 |
and K = OuterKeyword |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
868 |
|
| 31036 | 869 |
fun code_thms_cmd thy = code_thms thy o op @ o read_const_exprs thy; |
870 |
fun code_deps_cmd thy = code_deps thy o op @ o read_const_exprs thy; |
|
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
871 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
872 |
in |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
873 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
874 |
val _ = |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
875 |
OuterSyntax.improper_command "code_thms" "print system of code equations for code" OuterKeyword.diag |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
876 |
(Scan.repeat P.term_group |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
877 |
>> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
878 |
o Toplevel.keep ((fn thy => code_thms_cmd thy cs) o Toplevel.theory_of))); |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
879 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
880 |
val _ = |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
881 |
OuterSyntax.improper_command "code_deps" "visualize dependencies of code equations for code" OuterKeyword.diag |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
882 |
(Scan.repeat P.term_group |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
883 |
>> (fn cs => Toplevel.no_timing o Toplevel.unknown_theory |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
884 |
o Toplevel.keep ((fn thy => code_deps_cmd thy cs) o Toplevel.theory_of))); |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
885 |
|
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
886 |
end; |
| 27103 | 887 |
|
| 24219 | 888 |
end; (*struct*) |
889 |
||
890 |
||
| 28054 | 891 |
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol; |