author | wenzelm |
Thu, 05 Mar 2009 12:08:00 +0100 | |
changeset 30280 | eb98b49ef835 |
parent 30242 | aea5d7fa7ef5 |
child 30364 | 577edc39b501 |
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 `$$; |
|
11 |
infixr 3 `|->; |
|
12 |
infixr 3 `|-->; |
|
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; |
|
24591 | 23 |
type const = string * (dict list list * itype list (*types of arguments*)) |
24219 | 24 |
datatype iterm = |
24591 | 25 |
IConst of const |
24219 | 26 |
| IVar of vname |
27 |
| `$ of iterm * iterm |
|
28 |
| `|-> of (vname * itype) * iterm |
|
29 |
| ICase of ((iterm * itype) * (iterm * iterm) list) * iterm; |
|
30 |
(*((term, type), [(selector pattern, body term )]), primitive term)*) |
|
31 |
val `$$ : iterm * iterm list -> iterm; |
|
32 |
val `|--> : (vname * itype) list * iterm -> iterm; |
|
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 |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
43 |
val split_abs: iterm -> (((vname * iterm option) * itype) * iterm) option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
44 |
val unfold_abs: iterm -> ((vname * iterm option) * itype) list * iterm |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
45 |
val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
46 |
val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm |
24219 | 47 |
val unfold_const_app: iterm -> |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
48 |
((string * (dict list list * itype list)) * iterm list) option |
24219 | 49 |
val collapse_let: ((vname * itype) * iterm) * iterm |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
50 |
-> (iterm * itype) * (iterm * iterm) list |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
51 |
val eta_expand: int -> (string * (dict list list * itype list)) * iterm list -> iterm |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
52 |
val contains_dictvar: iterm -> bool |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
53 |
val locally_monomorphic: iterm -> bool |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
54 |
val fold_constnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
55 |
val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
56 |
val fold_unbound_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
57 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
58 |
type naming |
28706 | 59 |
val empty_naming: naming |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
60 |
val lookup_class: naming -> class -> string option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
61 |
val lookup_classrel: naming -> class * class -> string option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
62 |
val lookup_tyco: naming -> string -> string option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
63 |
val lookup_instance: naming -> class * string -> string option |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
64 |
val lookup_const: naming -> string -> string option |
24219 | 65 |
|
24918 | 66 |
datatype stmt = |
27024 | 67 |
NoStmt |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
68 |
| Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
69 |
| Datatype of string * ((vname * sort) list * (string * itype list) list) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
70 |
| Datatypecons of string * string |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
71 |
| Class of class * (vname * ((class * string) list * (string * itype) list)) |
24219 | 72 |
| Classrel of class * class |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
73 |
| Classparam of string * class |
24219 | 74 |
| Classinst of (class * (string * (vname * sort) list)) |
75 |
* ((class * (string * (string * dict list list))) list |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
76 |
* ((string * const) * (thm * bool)) list) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
77 |
type program = stmt Graph.T |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
78 |
val empty_funs: program -> string list |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
79 |
val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
80 |
val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
81 |
val is_cons: program -> string -> bool |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
82 |
val contr_classparam_typs: program -> string -> itype option list |
24219 | 83 |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
84 |
val consts_program: theory -> string list -> string list * (naming * program) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
85 |
val cached_program: theory -> naming * program |
27103 | 86 |
val eval_conv: theory |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
87 |
-> (term -> term * (naming -> program -> typscheme * iterm -> string list -> thm)) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
88 |
-> cterm -> thm |
27103 | 89 |
val eval_term: theory |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
90 |
-> (term -> term * (naming -> program -> typscheme * iterm -> string list -> 'a)) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
91 |
-> term -> 'a |
24219 | 92 |
end; |
93 |
||
28054 | 94 |
structure Code_Thingol: CODE_THINGOL = |
24219 | 95 |
struct |
96 |
||
97 |
(** auxiliary **) |
|
98 |
||
99 |
fun unfoldl dest x = |
|
100 |
case dest x |
|
101 |
of NONE => (x, []) |
|
102 |
| SOME (x1, x2) => |
|
103 |
let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end; |
|
104 |
||
105 |
fun unfoldr dest x = |
|
106 |
case dest x |
|
107 |
of NONE => ([], x) |
|
108 |
| SOME (x1, x2) => |
|
109 |
let val (xs', x') = unfoldr dest x2 in (x1::xs', x') end; |
|
110 |
||
111 |
||
29962
bd4dc7fa742d
tuned comments, stripped ID, deleted superfluous code
haftmann
parents:
29952
diff
changeset
|
112 |
(** language core - types, terms **) |
24219 | 113 |
|
114 |
type vname = string; |
|
115 |
||
116 |
datatype dict = |
|
117 |
DictConst of string * dict list list |
|
118 |
| DictVar of string list * (vname * (int * int)); |
|
119 |
||
120 |
datatype itype = |
|
121 |
`%% of string * itype list |
|
122 |
| ITyVar of vname; |
|
123 |
||
24591 | 124 |
type const = string * (dict list list * itype list (*types of arguments*)) |
125 |
||
24219 | 126 |
datatype iterm = |
24591 | 127 |
IConst of const |
24219 | 128 |
| IVar of vname |
129 |
| `$ of iterm * iterm |
|
130 |
| `|-> of (vname * itype) * iterm |
|
131 |
| ICase of ((iterm * itype) * (iterm * iterm) list) * iterm; |
|
132 |
(*see also signature*) |
|
133 |
||
134 |
val op `$$ = Library.foldl (op `$); |
|
135 |
val op `|--> = Library.foldr (op `|->); |
|
136 |
||
137 |
val unfold_app = unfoldl |
|
138 |
(fn op `$ t => SOME t |
|
139 |
| _ => NONE); |
|
140 |
||
141 |
val split_abs = |
|
142 |
(fn (v, ty) `|-> (t as ICase (((IVar w, _), [(p, t')]), _)) => |
|
143 |
if v = w then SOME (((v, SOME p), ty), t') else SOME (((v, NONE), ty), t) |
|
144 |
| (v, ty) `|-> t => SOME (((v, NONE), ty), t) |
|
145 |
| _ => NONE); |
|
146 |
||
147 |
val unfold_abs = unfoldr split_abs; |
|
148 |
||
149 |
val split_let = |
|
150 |
(fn ICase (((td, ty), [(p, t)]), _) => SOME (((p, ty), td), t) |
|
151 |
| _ => NONE); |
|
152 |
||
153 |
val unfold_let = unfoldr split_let; |
|
154 |
||
155 |
fun unfold_const_app t = |
|
156 |
case unfold_app t |
|
157 |
of (IConst c, ts) => SOME (c, ts) |
|
158 |
| _ => NONE; |
|
159 |
||
160 |
fun fold_aiterms f (t as IConst _) = f t |
|
161 |
| fold_aiterms f (t as IVar _) = f t |
|
162 |
| fold_aiterms f (t1 `$ t2) = fold_aiterms f t1 #> fold_aiterms f t2 |
|
163 |
| fold_aiterms f (t as _ `|-> t') = f t #> fold_aiterms f t' |
|
164 |
| fold_aiterms f (ICase (_, t)) = fold_aiterms f t; |
|
165 |
||
166 |
fun fold_constnames f = |
|
167 |
let |
|
168 |
fun add (IConst (c, _)) = f c |
|
169 |
| add _ = I; |
|
170 |
in fold_aiterms add end; |
|
171 |
||
172 |
fun fold_varnames f = |
|
173 |
let |
|
174 |
fun add (IVar v) = f v |
|
175 |
| add ((v, _) `|-> _) = f v |
|
176 |
| add _ = I; |
|
177 |
in fold_aiterms add end; |
|
178 |
||
179 |
fun fold_unbound_varnames f = |
|
180 |
let |
|
181 |
fun add _ (IConst _) = I |
|
182 |
| add vs (IVar v) = if not (member (op =) vs v) then f v else I |
|
183 |
| add vs (t1 `$ t2) = add vs t1 #> add vs t2 |
|
184 |
| add vs ((v, _) `|-> t) = add (insert (op =) v vs) t |
|
185 |
| add vs (ICase (_, t)) = add vs t; |
|
186 |
in add [] end; |
|
187 |
||
188 |
fun collapse_let (((v, ty), se), be as ICase (((IVar w, _), ds), _)) = |
|
189 |
let |
|
190 |
fun exists_v t = fold_unbound_varnames (fn w => fn b => |
|
191 |
b orelse v = w) t false; |
|
192 |
in if v = w andalso forall (fn (t1, t2) => |
|
193 |
exists_v t1 orelse not (exists_v t2)) ds |
|
194 |
then ((se, ty), ds) |
|
195 |
else ((se, ty), [(IVar v, be)]) |
|
196 |
end |
|
197 |
| collapse_let (((v, ty), se), be) = |
|
198 |
((se, ty), [(IVar v, be)]) |
|
199 |
||
27711 | 200 |
fun eta_expand k (c as (_, (_, tys)), ts) = |
24219 | 201 |
let |
202 |
val j = length ts; |
|
203 |
val l = k - j; |
|
204 |
val ctxt = (fold o fold_varnames) Name.declare ts Name.context; |
|
205 |
val vs_tys = Name.names ctxt "a" ((curry Library.take l o curry Library.drop j) tys); |
|
206 |
in vs_tys `|--> IConst c `$$ ts @ map (fn (v, _) => IVar v) vs_tys end; |
|
207 |
||
24662
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
208 |
fun contains_dictvar t = |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
209 |
let |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
210 |
fun contains (DictConst (_, dss)) = (fold o fold) contains dss |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
211 |
| contains (DictVar _) = K true; |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
212 |
in |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
213 |
fold_aiterms |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
214 |
(fn IConst (_, (dss, _)) => (fold o fold) contains dss | _ => I) t false |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
215 |
end; |
f79f6061525c
more precise treatment of free dictionary parameters for evaluation
haftmann
parents:
24591
diff
changeset
|
216 |
|
25621 | 217 |
fun locally_monomorphic (IConst _) = false |
218 |
| locally_monomorphic (IVar _) = true |
|
219 |
| locally_monomorphic (t `$ _) = locally_monomorphic t |
|
220 |
| locally_monomorphic (_ `|-> t) = locally_monomorphic t |
|
221 |
| locally_monomorphic (ICase ((_, ds), _)) = exists (locally_monomorphic o snd) ds; |
|
222 |
||
223 |
||
28688 | 224 |
(** namings **) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
225 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
226 |
(* policies *) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
227 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
228 |
local |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
229 |
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
|
230 |
fun thyname_of_class thy = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
231 |
thyname_of thy (ProofContext.query_class (ProofContext.init thy)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
232 |
fun thyname_of_tyco thy = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
233 |
thyname_of thy (Type.the_tags (Sign.tsig_of thy)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
234 |
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
|
235 |
of [] => error ("no such instance: " ^ quote (snd inst ^ " :: " ^ fst inst)) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
236 |
| thyname :: _ => thyname; |
28706 | 237 |
fun thyname_of_const thy c = case AxClass.class_of_param thy c |
238 |
of SOME class => thyname_of_class thy class |
|
239 |
| NONE => (case Code.get_datatype_of_constr thy c |
|
240 |
of SOME dtco => thyname_of_tyco thy dtco |
|
241 |
| NONE => thyname_of thy (Consts.the_tags (Sign.consts_of thy)) c); |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
242 |
fun namify thy get_basename get_thyname name = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
243 |
let |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
244 |
val prefix = get_thyname thy name; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
245 |
val base = (Code_Name.purify_base true o get_basename) name; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
246 |
in NameSpace.append prefix base end; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
247 |
in |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
248 |
|
30280 | 249 |
fun namify_class thy = namify thy NameSpace.base_name thyname_of_class; |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
250 |
fun namify_classrel thy = namify thy (fn (class1, class2) => |
30280 | 251 |
NameSpace.base_name class2 ^ "_" ^ NameSpace.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
|
252 |
(*order fits nicely with composed projections*) |
28688 | 253 |
fun namify_tyco thy "fun" = "Pure.fun" |
30280 | 254 |
| namify_tyco thy tyco = namify thy NameSpace.base_name thyname_of_tyco tyco; |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
255 |
fun namify_instance thy = namify thy (fn (class, tyco) => |
30280 | 256 |
NameSpace.base_name class ^ "_" ^ NameSpace.base_name tyco) thyname_of_instance; |
257 |
fun namify_const thy = namify thy NameSpace.base_name thyname_of_const; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
258 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
259 |
end; (* local *) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
260 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
261 |
|
28688 | 262 |
(* data *) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
263 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
264 |
structure StringPairTab = Code_Name.StringPairTab; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
265 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
266 |
datatype naming = Naming of { |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
267 |
class: class Symtab.table * Name.context, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
268 |
classrel: string StringPairTab.table * Name.context, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
269 |
tyco: string Symtab.table * Name.context, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
270 |
instance: string StringPairTab.table * Name.context, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
271 |
const: string Symtab.table * Name.context |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
272 |
} |
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 |
fun dest_Naming (Naming naming) = naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
275 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
276 |
val empty_naming = Naming { |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
277 |
class = (Symtab.empty, Name.context), |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
278 |
classrel = (StringPairTab.empty, Name.context), |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
279 |
tyco = (Symtab.empty, Name.context), |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
280 |
instance = (StringPairTab.empty, Name.context), |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
281 |
const = (Symtab.empty, Name.context) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
282 |
}; |
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 |
local |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
285 |
fun mk_naming (class, classrel, tyco, instance, const) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
286 |
Naming { class = class, classrel = classrel, |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
287 |
tyco = tyco, instance = instance, const = const }; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
288 |
fun map_naming f (Naming { class, classrel, tyco, instance, const }) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
289 |
mk_naming (f (class, classrel, tyco, instance, const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
290 |
in |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
291 |
fun map_class f = map_naming |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
292 |
(fn (class, classrel, tyco, inst, const) => |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
293 |
(f class, classrel, tyco, inst, const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
294 |
fun map_classrel f = map_naming |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
295 |
(fn (class, classrel, tyco, inst, const) => |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
296 |
(class, f classrel, tyco, inst, const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
297 |
fun map_tyco f = map_naming |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
298 |
(fn (class, classrel, tyco, inst, const) => |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
299 |
(class, classrel, f tyco, inst, const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
300 |
fun map_instance f = map_naming |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
301 |
(fn (class, classrel, tyco, inst, const) => |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
302 |
(class, classrel, tyco, f inst, const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
303 |
fun map_const f = map_naming |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
304 |
(fn (class, classrel, tyco, inst, const) => |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
305 |
(class, classrel, tyco, inst, f const)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
306 |
end; (*local*) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
307 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
308 |
fun add_variant update (thing, name) (tab, used) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
309 |
let |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
310 |
val (name', used') = yield_singleton Name.variants name used; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
311 |
val tab' = update (thing, name') tab; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
312 |
in (tab', used') end; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
313 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
314 |
fun declare thy mapp lookup update namify thing = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
315 |
mapp (add_variant update (thing, namify thy thing)) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
316 |
#> `(fn naming => the (lookup naming thing)); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
317 |
|
28688 | 318 |
|
319 |
(* lookup and declare *) |
|
320 |
||
321 |
local |
|
322 |
||
323 |
val suffix_class = "class"; |
|
324 |
val suffix_classrel = "classrel" |
|
325 |
val suffix_tyco = "tyco"; |
|
326 |
val suffix_instance = "inst"; |
|
327 |
val suffix_const = "const"; |
|
328 |
||
329 |
fun add_suffix nsp NONE = NONE |
|
330 |
| add_suffix nsp (SOME name) = SOME (NameSpace.append name nsp); |
|
331 |
||
332 |
in |
|
333 |
||
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
334 |
val lookup_class = add_suffix suffix_class |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
335 |
oo Symtab.lookup o fst o #class o dest_Naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
336 |
val lookup_classrel = add_suffix suffix_classrel |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
337 |
oo StringPairTab.lookup o fst o #classrel o dest_Naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
338 |
val lookup_tyco = add_suffix suffix_tyco |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
339 |
oo Symtab.lookup o fst o #tyco o dest_Naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
340 |
val lookup_instance = add_suffix suffix_instance |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
341 |
oo StringPairTab.lookup o fst o #instance o dest_Naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
342 |
val lookup_const = add_suffix suffix_const |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
343 |
oo Symtab.lookup o fst o #const o dest_Naming; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
344 |
|
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
345 |
fun declare_class thy = declare thy map_class |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
346 |
lookup_class Symtab.update_new namify_class; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
347 |
fun declare_classrel thy = declare thy map_classrel |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
348 |
lookup_classrel StringPairTab.update_new namify_classrel; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
349 |
fun declare_tyco thy = declare thy map_tyco |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
350 |
lookup_tyco Symtab.update_new namify_tyco; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
351 |
fun declare_instance thy = declare thy map_instance |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
352 |
lookup_instance StringPairTab.update_new namify_instance; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
353 |
fun declare_const thy = declare thy map_const |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
354 |
lookup_const Symtab.update_new namify_const; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
355 |
|
28688 | 356 |
val unfold_fun = unfoldr |
357 |
(fn "Pure.fun.tyco" `%% [ty1, ty2] => SOME (ty1, ty2) |
|
358 |
| _ => NONE); (*depends on suffix_tyco and namify_tyco!*) |
|
359 |
||
360 |
end; (* local *) |
|
361 |
||
24219 | 362 |
|
27103 | 363 |
(** statements, abstract programs **) |
24219 | 364 |
|
365 |
type typscheme = (vname * sort) list * itype; |
|
24918 | 366 |
datatype stmt = |
27024 | 367 |
NoStmt |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
368 |
| Fun of string * (typscheme * ((iterm list * iterm) * (thm * bool)) list) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
369 |
| Datatype of string * ((vname * sort) list * (string * itype list) list) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
370 |
| Datatypecons of string * string |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
371 |
| Class of class * (vname * ((class * string) list * (string * itype) list)) |
24219 | 372 |
| Classrel of class * class |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
373 |
| Classparam of string * class |
24219 | 374 |
| Classinst of (class * (string * (vname * sort) list)) |
375 |
* ((class * (string * (string * dict list list))) list |
|
28350 | 376 |
* ((string * const) * (thm * bool)) list); |
24219 | 377 |
|
27103 | 378 |
type program = stmt Graph.T; |
24219 | 379 |
|
27103 | 380 |
fun empty_funs program = |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
381 |
Graph.fold (fn (name, (Fun (c, (_, [])), _)) => cons c |
27103 | 382 |
| _ => I) program []; |
24219 | 383 |
|
27711 | 384 |
fun map_terms_bottom_up f (t as IConst _) = f t |
385 |
| map_terms_bottom_up f (t as IVar _) = f t |
|
386 |
| map_terms_bottom_up f (t1 `$ t2) = f |
|
387 |
(map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2) |
|
388 |
| map_terms_bottom_up f ((v, ty) `|-> t) = f |
|
389 |
((v, ty) `|-> map_terms_bottom_up f t) |
|
390 |
| map_terms_bottom_up f (ICase (((t, ty), ps), t0)) = f |
|
391 |
(ICase (((map_terms_bottom_up f t, ty), (map o pairself) |
|
392 |
(map_terms_bottom_up f) ps), map_terms_bottom_up f t0)); |
|
393 |
||
394 |
fun map_terms_stmt f NoStmt = NoStmt |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
395 |
| 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
|
396 |
(fn (ts, t) => (map f ts, f t)) eqs)) |
27711 | 397 |
| map_terms_stmt f (stmt as Datatype _) = stmt |
398 |
| map_terms_stmt f (stmt as Datatypecons _) = stmt |
|
399 |
| map_terms_stmt f (stmt as Class _) = stmt |
|
400 |
| map_terms_stmt f (stmt as Classrel _) = stmt |
|
401 |
| map_terms_stmt f (stmt as Classparam _) = stmt |
|
402 |
| map_terms_stmt f (Classinst (arity, (superarities, classparms))) = |
|
403 |
Classinst (arity, (superarities, (map o apfst o apsnd) (fn const => |
|
404 |
case f (IConst const) of IConst const' => const') classparms)); |
|
405 |
||
27103 | 406 |
fun is_cons program name = case Graph.get_node program name |
24219 | 407 |
of Datatypecons _ => true |
408 |
| _ => false; |
|
409 |
||
27103 | 410 |
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
|
411 |
of Classparam (_, class) => let |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
412 |
val Class (_, (_, (_, params))) = Graph.get_node program class; |
25621 | 413 |
val SOME ty = AList.lookup (op =) params name; |
414 |
val (tys, res_ty) = unfold_fun ty; |
|
415 |
fun no_tyvar (_ `%% tys) = forall no_tyvar tys |
|
416 |
| no_tyvar (ITyVar _) = false; |
|
417 |
in if no_tyvar res_ty |
|
418 |
then map (fn ty => if no_tyvar ty then NONE else SOME ty) tys |
|
419 |
else [] |
|
420 |
end |
|
421 |
| _ => []; |
|
422 |
||
24219 | 423 |
|
27103 | 424 |
(** translation kernel **) |
24219 | 425 |
|
28724 | 426 |
(* generic mechanisms *) |
427 |
||
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
428 |
fun ensure_stmt lookup declare generate thing (dep, (naming, program)) = |
24219 | 429 |
let |
28706 | 430 |
fun add_dep name = case dep of NONE => I |
431 |
| SOME dep => Graph.add_edge (dep, name); |
|
432 |
val (name, naming') = case lookup naming thing |
|
433 |
of SOME name => (name, naming) |
|
434 |
| NONE => declare thing naming; |
|
435 |
in case try (Graph.get_node program) name |
|
436 |
of SOME stmt => program |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
437 |
|> add_dep name |
28706 | 438 |
|> pair naming' |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
439 |
|> pair dep |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
440 |
|> pair name |
28706 | 441 |
| NONE => program |
442 |
|> Graph.default_node (name, NoStmt) |
|
443 |
|> add_dep name |
|
444 |
|> pair naming' |
|
445 |
|> curry generate (SOME name) |
|
446 |
||> snd |
|
447 |
|-> (fn stmt => (apsnd o Graph.map_node name) (K stmt)) |
|
448 |
|> pair dep |
|
449 |
|> pair name |
|
24219 | 450 |
end; |
451 |
||
26972 | 452 |
fun not_wellsorted thy thm ty sort e = |
453 |
let |
|
454 |
val err_class = Sorts.class_error (Syntax.pp_global thy) e; |
|
455 |
val err_thm = case thm |
|
30023
55954f726043
permissive check for pattern discipline in case schemes
haftmann
parents:
30009
diff
changeset
|
456 |
of SOME thm => "\n(in code equation " ^ Display.string_of_thm thm ^ ")" | NONE => ""; |
26972 | 457 |
val err_typ = "Type " ^ Syntax.string_of_typ_global thy ty ^ " not of sort " |
458 |
^ Syntax.string_of_sort_global thy sort; |
|
459 |
in error ("Wellsortedness error" ^ err_thm ^ ":\n" ^ err_typ ^ "\n" ^ err_class) end; |
|
460 |
||
28724 | 461 |
|
462 |
(* translation *) |
|
463 |
||
26972 | 464 |
fun ensure_class thy (algbr as (_, algebra)) funcgr class = |
24918 | 465 |
let |
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
466 |
val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
24969 | 467 |
val cs = #params (AxClass.get_info thy class); |
24918 | 468 |
val stmt_class = |
469 |
fold_map (fn superclass => ensure_class thy algbr funcgr superclass |
|
470 |
##>> ensure_classrel thy algbr funcgr (class, superclass)) superclasses |
|
471 |
##>> fold_map (fn (c, ty) => ensure_const thy algbr funcgr c |
|
28688 | 472 |
##>> translate_typ thy algbr funcgr ty) cs |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
473 |
#>> (fn info => Class (class, (unprefix "'" Name.aT, info))) |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
474 |
in ensure_stmt lookup_class (declare_class thy) stmt_class class end |
24918 | 475 |
and ensure_classrel thy algbr funcgr (subclass, superclass) = |
476 |
let |
|
477 |
val stmt_classrel = |
|
478 |
ensure_class thy algbr funcgr subclass |
|
479 |
##>> ensure_class thy algbr funcgr superclass |
|
480 |
#>> Classrel; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
481 |
in ensure_stmt lookup_classrel (declare_classrel thy) stmt_classrel (subclass, superclass) end |
28688 | 482 |
and ensure_tyco thy algbr funcgr tyco = |
483 |
let |
|
484 |
val stmt_datatype = |
|
24918 | 485 |
let |
28688 | 486 |
val (vs, cos) = Code.get_datatype thy tyco; |
487 |
in |
|
488 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
|
489 |
##>> fold_map (fn (c, tys) => |
|
490 |
ensure_const thy algbr funcgr c |
|
491 |
##>> fold_map (translate_typ thy algbr funcgr) tys) cos |
|
492 |
#>> (fn info => Datatype (tyco, info)) |
|
493 |
end; |
|
494 |
in ensure_stmt lookup_tyco (declare_tyco thy) stmt_datatype tyco end |
|
495 |
and translate_tyvar_sort thy (algbr as (proj_sort, _)) funcgr (v, sort) = |
|
24918 | 496 |
fold_map (ensure_class thy algbr funcgr) (proj_sort sort) |
497 |
#>> (fn sort => (unprefix "'" v, sort)) |
|
30009 | 498 |
and translate_typ thy algbr funcgr (TFree (v, _)) = |
499 |
pair (ITyVar (unprefix "'" v)) |
|
28688 | 500 |
| translate_typ thy algbr funcgr (Type (tyco, tys)) = |
24918 | 501 |
ensure_tyco thy algbr funcgr tyco |
28688 | 502 |
##>> fold_map (translate_typ thy algbr funcgr) tys |
24918 | 503 |
#>> (fn (tyco, tys) => tyco `%% tys) |
28688 | 504 |
and translate_dicts thy (algbr as (proj_sort, algebra)) funcgr thm (ty, sort) = |
24918 | 505 |
let |
26939
1035c89b4c02
moved global pretty/string_of functions from Sign to Syntax;
wenzelm
parents:
26011
diff
changeset
|
506 |
val pp = Syntax.pp_global thy; |
24918 | 507 |
datatype typarg = |
508 |
Global of (class * string) * typarg list list |
|
509 |
| Local of (class * class) list * (string * (int * sort)); |
|
510 |
fun class_relation (Global ((_, tyco), yss), _) class = |
|
511 |
Global ((class, tyco), yss) |
|
512 |
| class_relation (Local (classrels, v), subclass) superclass = |
|
513 |
Local ((subclass, superclass) :: classrels, v); |
|
514 |
fun type_constructor tyco yss class = |
|
29962
bd4dc7fa742d
tuned comments, stripped ID, deleted superfluous code
haftmann
parents:
29952
diff
changeset
|
515 |
Global ((class, tyco), (map o map) fst yss); |
24918 | 516 |
fun type_variable (TFree (v, sort)) = |
517 |
let |
|
518 |
val sort' = proj_sort sort; |
|
519 |
in map_index (fn (n, class) => (Local ([], (v, (n, sort'))), class)) sort' end; |
|
520 |
val typargs = Sorts.of_sort_derivation pp algebra |
|
521 |
{class_relation = class_relation, type_constructor = type_constructor, |
|
26972 | 522 |
type_variable = type_variable} (ty, proj_sort sort) |
523 |
handle Sorts.CLASS_ERROR e => not_wellsorted thy thm ty sort e; |
|
24918 | 524 |
fun mk_dict (Global (inst, yss)) = |
525 |
ensure_inst thy algbr funcgr inst |
|
526 |
##>> (fold_map o fold_map) mk_dict yss |
|
527 |
#>> (fn (inst, dss) => DictConst (inst, dss)) |
|
528 |
| mk_dict (Local (classrels, (v, (k, sort)))) = |
|
529 |
fold_map (ensure_classrel thy algbr funcgr) classrels |
|
530 |
#>> (fn classrels => DictVar (classrels, (unprefix "'" v, (k, length sort)))) |
|
27422 | 531 |
in fold_map mk_dict typargs end |
28688 | 532 |
and translate_eq thy algbr funcgr (thm, linear) = |
24918 | 533 |
let |
534 |
val (args, rhs) = (apfst (snd o strip_comb) o Logic.dest_equals |
|
535 |
o Logic.unvarify o prop_of) thm; |
|
536 |
in |
|
28688 | 537 |
fold_map (translate_term thy algbr funcgr (SOME thm)) args |
538 |
##>> translate_term thy algbr funcgr (SOME thm) rhs |
|
28350 | 539 |
#>> rpair (thm, linear) |
24918 | 540 |
end |
26972 | 541 |
and ensure_inst thy (algbr as (_, algebra)) funcgr (class, tyco) = |
24918 | 542 |
let |
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
543 |
val superclasses = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
24969 | 544 |
val classparams = these (try (#params o AxClass.get_info thy) class); |
24918 | 545 |
val vs = Name.names Name.context "'a" (Sorts.mg_domain algebra tyco [class]); |
546 |
val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class]; |
|
547 |
val vs' = map2 (fn (v, sort1) => fn sort2 => (v, |
|
548 |
Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts'; |
|
549 |
val arity_typ = Type (tyco, map TFree vs); |
|
550 |
val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs'); |
|
28688 | 551 |
fun translate_superarity superclass = |
24918 | 552 |
ensure_class thy algbr funcgr superclass |
553 |
##>> ensure_classrel thy algbr funcgr (class, superclass) |
|
28688 | 554 |
##>> translate_dicts thy algbr funcgr NONE (arity_typ, [superclass]) |
24918 | 555 |
#>> (fn ((superclass, classrel), [DictConst (inst, dss)]) => |
556 |
(superclass, (classrel, (inst, dss)))); |
|
28688 | 557 |
fun translate_classparam_inst (c, ty) = |
24918 | 558 |
let |
559 |
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
|
560 |
val thm = AxClass.unoverload_conv thy (Thm.cterm_of thy c_inst); |
24918 | 561 |
val c_ty = (apsnd Logic.unvarifyT o dest_Const o snd |
562 |
o Logic.dest_equals o Thm.prop_of) thm; |
|
563 |
in |
|
564 |
ensure_const thy algbr funcgr c |
|
28688 | 565 |
##>> translate_const thy algbr funcgr (SOME thm) c_ty |
28350 | 566 |
#>> (fn (c, IConst c_inst) => ((c, c_inst), (thm, true))) |
24918 | 567 |
end; |
568 |
val stmt_inst = |
|
569 |
ensure_class thy algbr funcgr class |
|
570 |
##>> ensure_tyco thy algbr funcgr tyco |
|
28688 | 571 |
##>> fold_map (translate_tyvar_sort thy algbr funcgr) vs |
572 |
##>> fold_map translate_superarity superclasses |
|
573 |
##>> fold_map translate_classparam_inst classparams |
|
24918 | 574 |
#>> (fn ((((class, tyco), arity), superarities), classparams) => |
575 |
Classinst ((class, (tyco, arity)), (superarities, classparams))); |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
576 |
in ensure_stmt lookup_instance (declare_instance thy) stmt_inst (class, tyco) end |
26972 | 577 |
and ensure_const thy algbr funcgr c = |
24918 | 578 |
let |
579 |
fun stmt_datatypecons tyco = |
|
580 |
ensure_tyco thy algbr funcgr tyco |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
581 |
#>> (fn tyco => Datatypecons (c, tyco)); |
24918 | 582 |
fun stmt_classparam class = |
583 |
ensure_class thy algbr funcgr class |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
584 |
#>> (fn class => Classparam (c, class)); |
30023
55954f726043
permissive check for pattern discipline in case schemes
haftmann
parents:
30009
diff
changeset
|
585 |
fun stmt_fun ((vs, ty), raw_thms) = |
24918 | 586 |
let |
29272 | 587 |
val thms = if null (Term.add_tfreesT ty []) orelse (null o fst o strip_type) ty |
24918 | 588 |
then raw_thms |
28423 | 589 |
else (map o apfst) (Code_Unit.expand_eta thy 1) raw_thms; |
24918 | 590 |
in |
28688 | 591 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
592 |
##>> translate_typ thy algbr funcgr ty |
|
593 |
##>> fold_map (translate_eq thy algbr funcgr) thms |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
594 |
#>> (fn info => Fun (c, info)) |
24918 | 595 |
end; |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
596 |
val stmt_const = case Code.get_datatype_of_constr thy c |
24918 | 597 |
of SOME tyco => stmt_datatypecons tyco |
598 |
| NONE => (case AxClass.class_of_param thy c |
|
599 |
of SOME class => stmt_classparam class |
|
30202
2775062fd3a9
reduced confusion code_funcgr vs. code_wellsorted
haftmann
parents:
30023
diff
changeset
|
600 |
| NONE => stmt_fun (Code_Wellsorted.typ funcgr c, Code_Wellsorted.eqns funcgr c)) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
601 |
in ensure_stmt lookup_const (declare_const thy) stmt_const c end |
28688 | 602 |
and translate_term thy algbr funcgr thm (Const (c, ty)) = |
603 |
translate_app thy algbr funcgr thm ((c, ty), []) |
|
604 |
| translate_term thy algbr funcgr thm (Free (v, _)) = |
|
24918 | 605 |
pair (IVar v) |
28688 | 606 |
| translate_term thy algbr funcgr thm (Abs (abs as (_, ty, _))) = |
24918 | 607 |
let |
608 |
val (v, t) = Syntax.variant_abs abs; |
|
609 |
in |
|
28688 | 610 |
translate_typ thy algbr funcgr ty |
611 |
##>> translate_term thy algbr funcgr thm t |
|
24918 | 612 |
#>> (fn (ty, t) => (v, ty) `|-> t) |
613 |
end |
|
28688 | 614 |
| translate_term thy algbr funcgr thm (t as _ $ _) = |
24918 | 615 |
case strip_comb t |
616 |
of (Const (c, ty), ts) => |
|
28688 | 617 |
translate_app thy algbr funcgr thm ((c, ty), ts) |
24918 | 618 |
| (t', ts) => |
28688 | 619 |
translate_term thy algbr funcgr thm t' |
620 |
##>> fold_map (translate_term thy algbr funcgr thm) ts |
|
24918 | 621 |
#>> (fn (t, ts) => t `$$ ts) |
28688 | 622 |
and translate_const thy algbr funcgr thm (c, ty) = |
26972 | 623 |
let |
624 |
val tys = Sign.const_typargs thy (c, ty); |
|
30202
2775062fd3a9
reduced confusion code_funcgr vs. code_wellsorted
haftmann
parents:
30023
diff
changeset
|
625 |
val sorts = (map snd o fst o Code_Wellsorted.typ funcgr) c; |
26972 | 626 |
val tys_args = (fst o Term.strip_type) ty; |
627 |
in |
|
628 |
ensure_const thy algbr funcgr c |
|
28688 | 629 |
##>> fold_map (translate_dicts thy algbr funcgr thm) (tys ~~ sorts) |
630 |
##>> fold_map (translate_typ thy algbr funcgr) tys_args |
|
26972 | 631 |
#>> (fn ((c, iss), tys) => IConst (c, (iss, tys))) |
632 |
end |
|
29973 | 633 |
and translate_app_const thy algbr funcgr thm (c_ty, ts) = |
28688 | 634 |
translate_const thy algbr funcgr thm c_ty |
635 |
##>> fold_map (translate_term thy algbr funcgr thm) ts |
|
24918 | 636 |
#>> (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
|
637 |
and translate_case thy algbr funcgr thm (num_args, (t_pos, case_pats)) (c_ty, ts) = |
24918 | 638 |
let |
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
639 |
val (tys, _) = (chop num_args o fst o strip_type o snd) c_ty; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
640 |
val t = nth ts t_pos; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
641 |
val ty = nth tys t_pos; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
642 |
val ts_clause = nth_drop t_pos ts; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
643 |
fun mk_clause (co, num_co_args) t = |
24918 | 644 |
let |
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
645 |
val (vs, body) = Term.strip_abs_eta num_co_args t; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
646 |
val not_undefined = case body |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
647 |
of (Const (c, _)) => not (Code.is_undefined thy c) |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
648 |
| _ => true; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
649 |
val pat = list_comb (Const (co, map snd vs ---> ty), map Free vs); |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
650 |
in (not_undefined, (pat, body)) end; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
651 |
val clauses = if null case_pats then let val ([v_ty], body) = |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
652 |
Term.strip_abs_eta 1 (the_single ts_clause) |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
653 |
in [(true, (Free v_ty, body))] end |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
654 |
else map (uncurry mk_clause) |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
655 |
(AList.make (Code_Unit.no_args thy) case_pats ~~ ts_clause); |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
656 |
fun retermify ty (_, (IVar x, body)) = |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
657 |
(x, ty) `|-> body |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
658 |
| retermify _ (_, (pat, body)) = |
24918 | 659 |
let |
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
660 |
val (IConst (_, (_, tys)), ts) = unfold_app pat; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
661 |
val vs = map2 (fn IVar x => fn ty => (x, ty)) ts tys; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
662 |
in vs `|--> body end; |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
663 |
fun mk_icase const t ty clauses = |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
664 |
let |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
665 |
val (ts1, ts2) = chop t_pos (map (retermify ty) clauses); |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
666 |
in |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
667 |
ICase (((t, ty), map_filter (fn (b, d) => if b then SOME d else NONE) clauses), |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
668 |
const `$$ (ts1 @ t :: ts2)) |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
669 |
end; |
24918 | 670 |
in |
29952
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
671 |
translate_const thy algbr funcgr thm c_ty |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
672 |
##>> translate_term thy algbr funcgr thm t |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
673 |
##>> translate_typ thy algbr funcgr ty |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
674 |
##>> fold_map (fn (b, (pat, body)) => translate_term thy algbr funcgr thm pat |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
675 |
##>> translate_term thy algbr funcgr thm body |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
676 |
#>> pair b) clauses |
9aed85067721
unified variable names in case expressions; no exponential fork in translation of case expressions
haftmann
parents:
29277
diff
changeset
|
677 |
#>> (fn (((const, t), ty), ds) => mk_icase const t ty ds) |
24918 | 678 |
end |
29973 | 679 |
and translate_app_case thy algbr funcgr thm (case_scheme as (num_args, _)) ((c, ty), ts) = |
680 |
if length ts < num_args then |
|
681 |
let |
|
682 |
val k = length ts; |
|
683 |
val tys = (curry Library.take (num_args - k) o curry Library.drop k o fst o strip_type) ty; |
|
684 |
val ctxt = (fold o fold_aterms) Term.declare_term_frees ts Name.context; |
|
685 |
val vs = Name.names ctxt "a" tys; |
|
686 |
in |
|
687 |
fold_map (translate_typ thy algbr funcgr) tys |
|
688 |
##>> translate_case thy algbr funcgr thm case_scheme ((c, ty), ts @ map Free vs) |
|
689 |
#>> (fn (tys, t) => map2 (fn (v, _) => pair v) vs tys `|--> t) |
|
690 |
end |
|
691 |
else if length ts > num_args then |
|
692 |
translate_case thy algbr funcgr thm case_scheme ((c, ty), Library.take (num_args, ts)) |
|
693 |
##>> fold_map (translate_term thy algbr funcgr thm) (Library.drop (num_args, ts)) |
|
694 |
#>> (fn (t, ts) => t `$$ ts) |
|
695 |
else |
|
696 |
translate_case thy algbr funcgr thm case_scheme ((c, ty), ts) |
|
697 |
and translate_app thy algbr funcgr thm (c_ty_ts as ((c, _), _)) = |
|
698 |
case Code.get_case_scheme thy c |
|
30023
55954f726043
permissive check for pattern discipline in case schemes
haftmann
parents:
30009
diff
changeset
|
699 |
of SOME case_scheme => translate_app_case thy algbr funcgr thm case_scheme c_ty_ts |
29973 | 700 |
| NONE => translate_app_const thy algbr funcgr thm c_ty_ts; |
24918 | 701 |
|
25969 | 702 |
|
27103 | 703 |
(* store *) |
704 |
||
705 |
structure Program = CodeDataFun |
|
706 |
( |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
707 |
type T = naming * program; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
708 |
val empty = (empty_naming, Graph.empty); |
28706 | 709 |
fun purge thy cs (naming, program) = |
27609 | 710 |
let |
28706 | 711 |
val names_delete = cs |
712 |
|> map_filter (lookup_const naming) |
|
713 |
|> filter (can (Graph.get_node program)) |
|
714 |
|> Graph.all_preds program; |
|
715 |
val program' = Graph.del_nodes names_delete program; |
|
716 |
in (naming, program') end; |
|
27103 | 717 |
); |
718 |
||
719 |
val cached_program = Program.get; |
|
25969 | 720 |
|
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
721 |
fun invoke_generation thy (algebra, funcgr) f name = |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
722 |
Program.change_yield thy (fn naming_program => (NONE, naming_program) |
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
723 |
|> f thy algebra funcgr name |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
724 |
|-> (fn name => fn (_, naming_program) => (name, naming_program))); |
27103 | 725 |
|
726 |
||
727 |
(* program generation *) |
|
728 |
||
729 |
fun consts_program thy cs = |
|
730 |
let |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
731 |
fun project_consts cs (naming, program) = |
27103 | 732 |
let |
733 |
val cs_all = Graph.all_succs program cs; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
734 |
in (cs, (naming, Graph.subgraph (member (op =) cs_all) program)) end; |
27103 | 735 |
fun generate_consts thy algebra funcgr = |
736 |
fold_map (ensure_const thy algebra funcgr); |
|
737 |
in |
|
30202
2775062fd3a9
reduced confusion code_funcgr vs. code_wellsorted
haftmann
parents:
30023
diff
changeset
|
738 |
invoke_generation thy (Code_Wellsorted.make thy cs) generate_consts cs |
27103 | 739 |
|-> project_consts |
740 |
end; |
|
741 |
||
742 |
||
743 |
(* value evaluation *) |
|
25969 | 744 |
|
24918 | 745 |
fun ensure_value thy algbr funcgr t = |
746 |
let |
|
747 |
val ty = fastype_of t; |
|
748 |
val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =) |
|
749 |
o dest_TFree))) t []; |
|
750 |
val stmt_value = |
|
28688 | 751 |
fold_map (translate_tyvar_sort thy algbr funcgr) vs |
752 |
##>> translate_typ thy algbr funcgr ty |
|
753 |
##>> translate_term thy algbr funcgr NONE t |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
754 |
#>> (fn ((vs, ty), t) => Fun |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
755 |
(Term.dummy_patternN, ((vs, ty), [(([], t), (Drule.dummy_thm, true))]))); |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
756 |
fun term_value (dep, (naming, program1)) = |
25969 | 757 |
let |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
758 |
val Fun (_, ((vs, ty), [(([], t), _)])) = |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
759 |
Graph.get_node program1 Term.dummy_patternN; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
760 |
val deps = Graph.imm_succs program1 Term.dummy_patternN; |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
761 |
val program2 = Graph.del_nodes [Term.dummy_patternN] program1; |
27103 | 762 |
val deps_all = Graph.all_succs program2 deps; |
763 |
val program3 = Graph.subgraph (member (op =) deps_all) program2; |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
764 |
in (((naming, program3), (((vs, ty), t), deps)), (dep, (naming, program2))) end; |
26011 | 765 |
in |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
766 |
ensure_stmt ((K o K) NONE) pair stmt_value Term.dummy_patternN |
26011 | 767 |
#> snd |
768 |
#> term_value |
|
769 |
end; |
|
24219 | 770 |
|
28724 | 771 |
fun eval thy evaluator t = |
27103 | 772 |
let |
28724 | 773 |
val (t', evaluator'') = evaluator t; |
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
774 |
fun evaluator' algebra funcgr = |
27103 | 775 |
let |
28924
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
776 |
val (((naming, program), (vs_ty_t, deps)), _) = |
5c8781b7d6a4
code_funcgr interface includes also sort algebra
haftmann
parents:
28724
diff
changeset
|
777 |
invoke_generation thy (algebra, funcgr) ensure_value t'; |
28724 | 778 |
in evaluator'' naming program vs_ty_t deps end; |
779 |
in (t', evaluator') end |
|
27103 | 780 |
|
30202
2775062fd3a9
reduced confusion code_funcgr vs. code_wellsorted
haftmann
parents:
30023
diff
changeset
|
781 |
fun eval_conv thy = Code_Wellsorted.eval_conv thy o eval thy; |
2775062fd3a9
reduced confusion code_funcgr vs. code_wellsorted
haftmann
parents:
30023
diff
changeset
|
782 |
fun eval_term thy = Code_Wellsorted.eval_term thy o eval thy; |
27103 | 783 |
|
24219 | 784 |
end; (*struct*) |
785 |
||
786 |
||
28054 | 787 |
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol; |