author | haftmann |
Sat, 02 Apr 2022 17:03:35 +0000 | |
changeset 75399 | cdf84288d93c |
parent 75397 | e852c776a455 |
child 77231 | 04571037ed33 |
permissions | -rw-r--r-- |
37744 | 1 |
(* Title: Tools/Code/code_thingol.ML |
24219 | 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 `$$; |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
11 |
infixr 3 `->; |
31724 | 12 |
infixr 3 `|=>; |
13 |
infixr 3 `|==>; |
|
24219 | 14 |
|
15 |
signature BASIC_CODE_THINGOL = |
|
16 |
sig |
|
17 |
type vname = string; |
|
18 |
datatype dict = |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
19 |
Dict of (class * class) list * plain_dict |
41118
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
20 |
and plain_dict = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
21 |
Dict_Const of (string * class) * dict list list |
63303 | 22 |
| Dict_Var of { var: vname, index: int, length: int, class: class, unique: bool }; |
24219 | 23 |
datatype itype = |
24 |
`%% of string * itype list |
|
25 |
| ITyVar of vname; |
|
55150 | 26 |
type const = { sym: Code_Symbol.T, typargs: itype list, dicts: dict list list, |
58397 | 27 |
dom: itype list, annotation: itype option }; |
24219 | 28 |
datatype iterm = |
24591 | 29 |
IConst of const |
31889 | 30 |
| IVar of vname option |
24219 | 31 |
| `$ of iterm * iterm |
31888 | 32 |
| `|=> of (vname option * itype) * iterm |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
33 |
| ICase of { term: iterm, typ: itype, clauses: (iterm * iterm) list, primitive: iterm }; |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
34 |
val `-> : itype * itype -> itype; |
24219 | 35 |
val `$$ : iterm * iterm list -> iterm; |
31888 | 36 |
val `|==> : (vname option * itype) list * iterm -> iterm; |
24219 | 37 |
type typscheme = (vname * sort) list * itype; |
38 |
end; |
|
39 |
||
40 |
signature CODE_THINGOL = |
|
41 |
sig |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
42 |
include BASIC_CODE_THINGOL |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
43 |
val unfoldl: ('a -> ('a * 'b) option) -> 'a -> 'a * 'b list |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
44 |
val unfoldr: ('a -> ('b * 'a) option) -> 'a -> 'b list * 'a |
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
45 |
val unfold_fun: itype -> itype list * itype |
37640 | 46 |
val unfold_fun_n: int -> itype -> itype list * itype |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
47 |
val unfold_app: iterm -> iterm * iterm list |
31888 | 48 |
val unfold_abs: iterm -> (vname option * itype) list * iterm |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
49 |
val split_let: iterm -> (((iterm * itype) * iterm) * iterm) option |
65483
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
50 |
val split_let_no_pat: iterm -> (((string option * itype) * iterm) * iterm) option |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
51 |
val unfold_let: iterm -> ((iterm * itype) * iterm) list * iterm |
65483
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
52 |
val unfold_let_no_pat: iterm -> ((string option * itype) * iterm) list * iterm |
31889 | 53 |
val split_pat_abs: iterm -> ((iterm * itype) * iterm) option |
54 |
val unfold_pat_abs: iterm -> (iterm * itype) list * iterm |
|
31049 | 55 |
val unfold_const_app: iterm -> (const * iterm list) option |
75318 | 56 |
val map_terms_bottom_up: (iterm -> iterm) -> iterm -> iterm |
32909 | 57 |
val is_IVar: iterm -> bool |
41782 | 58 |
val is_IAbs: iterm -> bool |
31049 | 59 |
val eta_expand: int -> const * iterm list -> iterm |
41100
6c0940392fb4
dictionary constants must permit explicit weakening of classes;
haftmann
parents:
40844
diff
changeset
|
60 |
val contains_dict_var: iterm -> bool |
63303 | 61 |
val unambiguous_dictss: dict list list -> bool |
55150 | 62 |
val add_constsyms: iterm -> Code_Symbol.T list -> Code_Symbol.T list |
32917 | 63 |
val add_tyconames: iterm -> string list -> string list |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
64 |
val fold_varnames: (string -> 'a -> 'a) -> iterm -> 'a -> 'a |
75356 | 65 |
val add_varnames: iterm -> string list -> string list |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
66 |
|
24918 | 67 |
datatype stmt = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
68 |
NoStmt |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
69 |
| Fun of (typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
70 |
| Datatype of vname list * |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
71 |
((string * vname list (*type argument wrt. canonical order*)) * itype list) list |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
72 |
| Datatypecons of string |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
73 |
| Class of vname * ((class * class) list * (string * itype) list) |
24219 | 74 |
| Classrel of class * class |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
75 |
| Classparam of class |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
76 |
| Classinst of { class: string, tyco: string, vs: (vname * sort) list, |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
77 |
superinsts: (class * dict list list) list, |
52519
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
78 |
inst_params: ((string * (const * int)) * (thm * bool)) list, |
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
79 |
superinst_params: ((string * (const * int)) * (thm * bool)) list }; |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
80 |
type program = stmt Code_Symbol.Graph.T |
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
81 |
val unimplemented: program -> string list |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
82 |
val implemented_deps: program -> string list |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
83 |
val map_terms_stmt: (iterm -> iterm) -> stmt -> stmt |
55150 | 84 |
val is_constr: program -> Code_Symbol.T -> bool |
37440
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
85 |
val is_case: stmt -> bool |
55757 | 86 |
val group_stmts: Proof.context -> program |
55150 | 87 |
-> ((Code_Symbol.T * stmt) list * (Code_Symbol.T * stmt) list |
88 |
* ((Code_Symbol.T * stmt) list * (Code_Symbol.T * stmt) list)) list |
|
24219 | 89 |
|
55757 | 90 |
val read_const_exprs: Proof.context -> string list -> string list |
63159 | 91 |
val consts_program: Proof.context -> string list -> program |
55757 | 92 |
val dynamic_conv: Proof.context -> (program |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
93 |
-> typscheme * iterm -> Code_Symbol.T list -> conv) |
38672
f1f64375f662
preliminary versions of static_eval_conv(_simple)
haftmann
parents:
38669
diff
changeset
|
94 |
-> conv |
55757 | 95 |
val dynamic_value: Proof.context -> ((term -> term) -> 'a -> 'a) -> (program |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
96 |
-> term -> typscheme * iterm -> Code_Symbol.T list -> 'a) |
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
97 |
-> term -> 'a |
63156 | 98 |
val static_conv_thingol: { ctxt: Proof.context, consts: string list } |
56973
62da80041afd
syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents:
56969
diff
changeset
|
99 |
-> ({ program: program, deps: string list } |
62da80041afd
syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents:
56969
diff
changeset
|
100 |
-> Proof.context -> typscheme * iterm -> Code_Symbol.T list -> conv) |
55757 | 101 |
-> Proof.context -> conv |
63156 | 102 |
val static_conv_isa: { ctxt: Proof.context, consts: string list } |
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
103 |
-> (program -> Proof.context -> term -> conv) |
55757 | 104 |
-> Proof.context -> conv |
56973
62da80041afd
syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents:
56969
diff
changeset
|
105 |
val static_value: { ctxt: Proof.context, lift_postproc: ((term -> term) -> 'a -> 'a), consts: string list } |
62da80041afd
syntactic means to prevent accidental mixup of static and dynamic context
haftmann
parents:
56969
diff
changeset
|
106 |
-> ({ program: program, deps: string list } |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
107 |
-> Proof.context -> term -> typscheme * iterm -> Code_Symbol.T list -> 'a) |
55757 | 108 |
-> Proof.context -> term -> 'a |
24219 | 109 |
end; |
110 |
||
63160 | 111 |
structure Code_Thingol : CODE_THINGOL = |
24219 | 112 |
struct |
113 |
||
55150 | 114 |
open Basic_Code_Symbol; |
115 |
||
24219 | 116 |
(** auxiliary **) |
117 |
||
118 |
fun unfoldl dest x = |
|
119 |
case dest x |
|
120 |
of NONE => (x, []) |
|
121 |
| SOME (x1, x2) => |
|
122 |
let val (x', xs') = unfoldl dest x1 in (x', xs' @ [x2]) end; |
|
123 |
||
124 |
fun unfoldr dest x = |
|
125 |
case dest x |
|
126 |
of NONE => ([], x) |
|
127 |
| SOME (x1, x2) => |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
128 |
let val (xs', x') = unfoldr dest x2 in (x1 :: xs', x') end; |
24219 | 129 |
|
130 |
||
29962
bd4dc7fa742d
tuned comments, stripped ID, deleted superfluous code
haftmann
parents:
29952
diff
changeset
|
131 |
(** language core - types, terms **) |
24219 | 132 |
|
133 |
type vname = string; |
|
134 |
||
135 |
datatype dict = |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
136 |
Dict of (class * class) list * plain_dict |
41118
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
137 |
and plain_dict = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
138 |
Dict_Const of (string * class) * dict list list |
63303 | 139 |
| Dict_Var of { var: vname, index: int, length: int, class: class, unique: bool }; |
24219 | 140 |
|
141 |
datatype itype = |
|
142 |
`%% of string * itype list |
|
143 |
| ITyVar of vname; |
|
144 |
||
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
145 |
fun ty1 `-> ty2 = "fun" `%% [ty1, ty2]; |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
146 |
|
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
147 |
val unfold_fun = unfoldr |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
148 |
(fn "fun" `%% [ty1, ty2] => SOME (ty1, ty2) |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
149 |
| _ => NONE); |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
150 |
|
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
151 |
fun unfold_fun_n n ty = |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
152 |
let |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
153 |
val (tys1, ty1) = unfold_fun ty; |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
154 |
val (tys3, tys2) = chop n tys1; |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
155 |
val ty3 = Library.foldr (op `->) (tys2, ty1); |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
156 |
in (tys3, ty3) end; |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
157 |
|
55150 | 158 |
type const = { sym: Code_Symbol.T, typargs: itype list, dicts: dict list list, |
58397 | 159 |
dom: itype list, annotation: itype option }; |
24591 | 160 |
|
24219 | 161 |
datatype iterm = |
24591 | 162 |
IConst of const |
31889 | 163 |
| IVar of vname option |
24219 | 164 |
| `$ of iterm * iterm |
31888 | 165 |
| `|=> of (vname option * itype) * iterm |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
166 |
| ICase of { term: iterm, typ: itype, clauses: (iterm * iterm) list, primitive: iterm }; |
24219 | 167 |
(*see also signature*) |
168 |
||
32909 | 169 |
fun is_IVar (IVar _) = true |
170 |
| is_IVar _ = false; |
|
171 |
||
41782 | 172 |
fun is_IAbs (_ `|=> _) = true |
173 |
| is_IAbs _ = false; |
|
174 |
||
24219 | 175 |
val op `$$ = Library.foldl (op `$); |
31724 | 176 |
val op `|==> = Library.foldr (op `|=>); |
24219 | 177 |
|
178 |
val unfold_app = unfoldl |
|
179 |
(fn op `$ t => SOME t |
|
180 |
| _ => NONE); |
|
181 |
||
31874 | 182 |
val unfold_abs = unfoldr |
183 |
(fn op `|=> t => SOME t |
|
24219 | 184 |
| _ => NONE); |
185 |
||
186 |
val split_let = |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
187 |
(fn ICase { term = t, typ = ty, clauses = [(p, body)], ... } => SOME (((p, ty), t), body) |
24219 | 188 |
| _ => NONE); |
189 |
||
65483
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
190 |
val split_let_no_pat = |
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
191 |
(fn ICase { term = t, typ = ty, clauses = [(IVar v, body)], ... } => SOME (((v, ty), t), body) |
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
192 |
| _ => NONE); |
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
193 |
|
24219 | 194 |
val unfold_let = unfoldr split_let; |
195 |
||
65483
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
196 |
val unfold_let_no_pat = unfoldr split_let_no_pat; |
1cb9fd58d55e
for generated Haskell code, never use let-binds with pattern matching: irrefutable patterns destroy partial correctness
haftmann
parents:
64957
diff
changeset
|
197 |
|
24219 | 198 |
fun unfold_const_app t = |
199 |
case unfold_app t |
|
200 |
of (IConst c, ts) => SOME (c, ts) |
|
201 |
| _ => NONE; |
|
202 |
||
32917 | 203 |
fun fold_constexprs f = |
204 |
let |
|
205 |
fun fold' (IConst c) = f c |
|
206 |
| fold' (IVar _) = I |
|
207 |
| fold' (t1 `$ t2) = fold' t1 #> fold' t2 |
|
208 |
| fold' (_ `|=> t) = fold' t |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
209 |
| fold' (ICase { term = t, clauses = clauses, ... }) = fold' t |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
210 |
#> fold (fn (p, body) => fold' p #> fold' body) clauses |
32917 | 211 |
in fold' end; |
212 |
||
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
213 |
val add_constsyms = fold_constexprs (fn { sym, ... } => insert (op =) sym); |
32917 | 214 |
|
215 |
fun add_tycos (tyco `%% tys) = insert (op =) tyco #> fold add_tycos tys |
|
216 |
| add_tycos (ITyVar _) = I; |
|
217 |
||
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
218 |
val add_tyconames = fold_constexprs (fn { typargs = tys, ... } => fold add_tycos tys); |
24219 | 219 |
|
220 |
fun fold_varnames f = |
|
221 |
let |
|
59541 | 222 |
fun fold_aux add_vars f = |
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
223 |
let |
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
224 |
fun fold_term _ (IConst _) = I |
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
225 |
| 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
|
226 |
| fold_term _ (IVar NONE) = I |
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
227 |
| 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
|
228 |
| 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
|
229 |
| fold_term vs ((NONE, _) `|=> t) = fold_term vs t |
59541 | 230 |
| fold_term vs (ICase { term = t, clauses = clauses, ... }) = |
231 |
fold_term vs t #> fold (fold_clause vs) clauses |
|
232 |
and fold_clause vs (p, t) = fold_term (add_vars p vs) t; |
|
233 |
in fold_term [] end |
|
234 |
fun add_vars t = fold_aux add_vars (insert (op =)) t; |
|
235 |
in fold_aux add_vars f end; |
|
24219 | 236 |
|
75356 | 237 |
val add_varnames = fold_varnames (insert (op =)); |
238 |
||
239 |
val declare_varnames = fold_varnames Name.declare; |
|
240 |
||
31935
3896169e6ff9
cleaned up fundamental iml term functions; nested patterns
haftmann
parents:
31892
diff
changeset
|
241 |
fun exists_var t v = fold_varnames (fn w => fn b => v = w orelse b) t false; |
31874 | 242 |
|
31889 | 243 |
fun split_pat_abs ((NONE, ty) `|=> t) = SOME ((IVar NONE, ty), t) |
31888 | 244 |
| split_pat_abs ((SOME v, ty) `|=> t) = SOME (case t |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
245 |
of ICase { term = IVar (SOME w), clauses = [(p, body)], ... } => |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
246 |
if v = w andalso (exists_var p v orelse not (exists_var body v)) |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
247 |
then ((p, ty), body) |
31889 | 248 |
else ((IVar (SOME v), ty), t) |
249 |
| _ => ((IVar (SOME v), ty), t)) |
|
31888 | 250 |
| split_pat_abs _ = NONE; |
31874 | 251 |
|
252 |
val unfold_pat_abs = unfoldr split_pat_abs; |
|
24219 | 253 |
|
31890
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
254 |
fun unfold_abs_eta [] t = ([], t) |
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
255 |
| unfold_abs_eta (_ :: tys) (v_ty `|=> t) = |
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
256 |
let |
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
257 |
val (vs_tys, t') = unfold_abs_eta tys t; |
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
258 |
in (v_ty :: vs_tys, t') end |
31892 | 259 |
| unfold_abs_eta tys t = |
31890
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
260 |
let |
75356 | 261 |
val ctxt = Name.build_context (declare_varnames t); |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43326
diff
changeset
|
262 |
val vs_tys = (map o apfst) SOME (Name.invent_names ctxt "a" tys); |
31890
e943b039f0ac
an intermediate step towards a refined translation of cases
haftmann
parents:
31889
diff
changeset
|
263 |
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
|
264 |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
265 |
fun eta_expand k (const as { dom = tys, ... }, ts) = |
24219 | 266 |
let |
267 |
val j = length ts; |
|
268 |
val l = k - j; |
|
37841 | 269 |
val _ = if l > length tys |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
270 |
then error "Impossible eta-expansion" else (); |
75356 | 271 |
val vars = Name.build_context (fold declare_varnames ts); |
31889 | 272 |
val vs_tys = (map o apfst) SOME |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
273 |
(Name.invent_names vars "a" ((take l o drop j) tys)); |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
274 |
in vs_tys `|==> IConst const `$$ ts @ map (IVar o fst) vs_tys end; |
24219 | 275 |
|
75318 | 276 |
fun map_terms_bottom_up f (t as IConst _) = f t |
277 |
| map_terms_bottom_up f (t as IVar _) = f t |
|
278 |
| map_terms_bottom_up f (t1 `$ t2) = f |
|
279 |
(map_terms_bottom_up f t1 `$ map_terms_bottom_up f t2) |
|
280 |
| map_terms_bottom_up f ((v, ty) `|=> t) = f |
|
281 |
((v, ty) `|=> map_terms_bottom_up f t) |
|
282 |
| map_terms_bottom_up f (ICase { term = t, typ = ty, clauses = clauses, primitive = t0 }) = f |
|
283 |
(ICase { term = map_terms_bottom_up f t, typ = ty, |
|
284 |
clauses = (map o apply2) (map_terms_bottom_up f) clauses, |
|
285 |
primitive = map_terms_bottom_up f t0 }); |
|
286 |
||
75358 | 287 |
fun distill_minimized_clause tys t = |
75355 | 288 |
let |
75360 | 289 |
fun restrict_vars_to vs = |
290 |
map_terms_bottom_up (fn IVar (SOME v) => |
|
291 |
IVar (if member (op =) vs v then SOME v else NONE) | t => t); |
|
292 |
fun purge_unused_vars_in t = |
|
293 |
restrict_vars_to (build (add_varnames t)); |
|
294 |
fun distill' vs_map pat_args v i clauses = |
|
295 |
let |
|
75391 | 296 |
val pat_vs = build (fold add_varnames (nth_drop i pat_args)); |
75360 | 297 |
fun varnames_disjunctive pat = |
75391 | 298 |
null (inter (op =) pat_vs (build (add_varnames pat))); |
75360 | 299 |
in |
300 |
if forall (fn (pat', body') => varnames_disjunctive pat' |
|
301 |
(*prevent mingled scopes resulting in duplicated variables in pattern arguments*) |
|
302 |
andalso (exists_var pat' v (*reducible if shadowed by pattern*) |
|
303 |
orelse not (exists_var body' v))) clauses (*reducible if absent in body*) |
|
304 |
then clauses |
|
305 |
|> maps (fn (pat', body') => |
|
306 |
distill vs_map |
|
307 |
(nth_map i (K pat') pat_args |> map (purge_unused_vars_in body')) |
|
308 |
body') |
|
309 |
|> SOME |
|
310 |
else NONE |
|
311 |
end |
|
312 |
and distill vs_map pat_args |
|
75355 | 313 |
(body as ICase { term = IVar (SOME v), clauses = clauses, ... }) = |
75360 | 314 |
(case AList.lookup (op =) vs_map v |
315 |
of SOME i => distill' (AList.delete (op =) v vs_map) pat_args v i clauses |
|
316 |
|> the_default [(pat_args, body)] |
|
317 |
| NONE => [(pat_args, body)]) |
|
75355 | 318 |
| distill vs_map pat_args body = [(pat_args, body)]; |
75359 | 319 |
val (vTs, body) = unfold_abs_eta tys t; |
320 |
val vs = map fst vTs; |
|
75355 | 321 |
val vs_map = |
75359 | 322 |
build (fold_index (fn (i, SOME v) => cons (v, i) | _ => I) vs); |
323 |
in distill vs_map (map IVar vs) body end; |
|
75325 | 324 |
|
63303 | 325 |
fun exists_dict_var f (Dict (_, d)) = exists_plain_dict_var_pred f d |
326 |
and exists_plain_dict_var_pred f (Dict_Const (_, dss)) = exists_dictss_var f dss |
|
327 |
| exists_plain_dict_var_pred f (Dict_Var x) = f x |
|
328 |
and exists_dictss_var f dss = (exists o exists) (exists_dict_var f) dss; |
|
329 |
||
330 |
fun contains_dict_var (IConst { dicts = dss, ... }) = exists_dictss_var (K true) dss |
|
331 |
| contains_dict_var (IVar _) = false |
|
332 |
| contains_dict_var (t1 `$ t2) = contains_dict_var t1 orelse contains_dict_var t2 |
|
333 |
| contains_dict_var (_ `|=> t) = contains_dict_var t |
|
334 |
| contains_dict_var (ICase { primitive = t, ... }) = contains_dict_var t; |
|
335 |
||
336 |
val unambiguous_dictss = not o exists_dictss_var (fn { unique, ... } => not unique); |
|
25621 | 337 |
|
338 |
||
27103 | 339 |
(** statements, abstract programs **) |
24219 | 340 |
|
341 |
type typscheme = (vname * sort) list * itype; |
|
37447
ad3e04f289b6
transitive superclasses were also only a misunderstanding
haftmann
parents:
37446
diff
changeset
|
342 |
datatype stmt = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
343 |
NoStmt |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
344 |
| Fun of (typscheme * ((iterm list * iterm) * (thm option * bool)) list) * thm option |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
345 |
| Datatype of vname list * ((string * vname list) * itype list) list |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
346 |
| Datatypecons of string |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
347 |
| Class of vname * ((class * class) list * (string * itype) list) |
24219 | 348 |
| Classrel of class * class |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
349 |
| Classparam of class |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
350 |
| Classinst of { class: string, tyco: string, vs: (vname * sort) list, |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
351 |
superinsts: (class * dict list list) list, |
52519
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
352 |
inst_params: ((string * (const * int)) * (thm * bool)) list, |
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
353 |
superinst_params: ((string * (const * int)) * (thm * bool)) list }; |
24219 | 354 |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
355 |
type program = stmt Code_Symbol.Graph.T; |
24219 | 356 |
|
75353 | 357 |
val unimplemented = |
358 |
build o Code_Symbol.Graph.fold (fn (Constant c, (NoStmt, _)) => cons c | _ => I); |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
359 |
|
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
360 |
fun implemented_deps program = |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
361 |
Code_Symbol.Graph.keys program |
55150 | 362 |
|> subtract (op =) (Code_Symbol.Graph.all_preds program (map Constant (unimplemented program))) |
363 |
|> map_filter (fn Constant c => SOME c | _ => NONE); |
|
24219 | 364 |
|
37448
3bd4b3809bee
explicit type variable arguments for constructors
haftmann
parents:
37447
diff
changeset
|
365 |
fun map_classparam_instances_as_term f = |
52519
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
366 |
(map o apfst o apsnd o apfst) (fn const => case f (IConst const) of IConst const' => const') |
37448
3bd4b3809bee
explicit type variable arguments for constructors
haftmann
parents:
37447
diff
changeset
|
367 |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
368 |
fun map_terms_stmt f NoStmt = NoStmt |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
369 |
| map_terms_stmt f (Fun ((tysm, eqs), case_cong)) = Fun ((tysm, (map o apfst) |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
370 |
(fn (ts, t) => (map f ts, f t)) eqs), case_cong) |
27711 | 371 |
| map_terms_stmt f (stmt as Datatype _) = stmt |
372 |
| map_terms_stmt f (stmt as Datatypecons _) = stmt |
|
373 |
| map_terms_stmt f (stmt as Class _) = stmt |
|
374 |
| map_terms_stmt f (stmt as Classrel _) = stmt |
|
375 |
| map_terms_stmt f (stmt as Classparam _) = stmt |
|
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
376 |
| map_terms_stmt f (Classinst { class, tyco, vs, superinsts, |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
377 |
inst_params, superinst_params }) = |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
378 |
Classinst { class = class, tyco = tyco, vs = vs, superinsts = superinsts, |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
379 |
inst_params = map_classparam_instances_as_term f inst_params, |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
380 |
superinst_params = map_classparam_instances_as_term f superinst_params }; |
27711 | 381 |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
382 |
fun is_constr program sym = case Code_Symbol.Graph.get_node program sym |
24219 | 383 |
of Datatypecons _ => true |
384 |
| _ => false; |
|
385 |
||
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
386 |
fun is_case (Fun (_, SOME _)) = true |
37440
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
387 |
| is_case _ = false; |
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
388 |
|
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
389 |
fun linear_stmts program = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
390 |
rev (Code_Symbol.Graph.strong_conn program) |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
391 |
|> map (AList.make (Code_Symbol.Graph.get_node program)); |
37440
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
392 |
|
55757 | 393 |
fun group_stmts ctxt program = |
32895 | 394 |
let |
395 |
fun is_fun (_, Fun _) = true | is_fun _ = false; |
|
396 |
fun is_datatypecons (_, Datatypecons _) = true | is_datatypecons _ = false; |
|
397 |
fun is_datatype (_, Datatype _) = true | is_datatype _ = false; |
|
398 |
fun is_class (_, Class _) = true | is_class _ = false; |
|
399 |
fun is_classrel (_, Classrel _) = true | is_classrel _ = false; |
|
400 |
fun is_classparam (_, Classparam _) = true | is_classparam _ = false; |
|
401 |
fun is_classinst (_, Classinst _) = true | is_classinst _ = false; |
|
402 |
fun group stmts = |
|
403 |
if forall (is_datatypecons orf is_datatype) stmts |
|
404 |
then (filter is_datatype stmts, [], ([], [])) |
|
405 |
else if forall (is_class orf is_classrel orf is_classparam) stmts |
|
406 |
then ([], filter is_class stmts, ([], [])) |
|
407 |
else if forall (is_fun orf is_classinst) stmts |
|
408 |
then ([], [], List.partition is_fun stmts) |
|
52138
e21426f244aa
bookkeeping and input syntax for exact specification of names of symbols in generated code
haftmann
parents:
51685
diff
changeset
|
409 |
else error ("Illegal mutual dependencies: " ^ (commas |
55757 | 410 |
o map (Code_Symbol.quote ctxt o fst)) stmts); |
32895 | 411 |
in |
37440
a5d44161ba2a
maintain cong rules for case combinators; more precise permissiveness
haftmann
parents:
37437
diff
changeset
|
412 |
linear_stmts program |
32895 | 413 |
|> map group |
414 |
end; |
|
415 |
||
24219 | 416 |
|
27103 | 417 |
(** translation kernel **) |
24219 | 418 |
|
28724 | 419 |
(* generic mechanisms *) |
420 |
||
55190 | 421 |
fun ensure_stmt symbolize generate x (deps, program) = |
24219 | 422 |
let |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
423 |
val sym = symbolize x; |
55190 | 424 |
val add_dep = case deps of [] => I |
425 |
| dep :: _ => Code_Symbol.Graph.add_edge (dep, sym); |
|
47576 | 426 |
in |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
427 |
if can (Code_Symbol.Graph.get_node program) sym |
47576 | 428 |
then |
429 |
program |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
430 |
|> add_dep |
55190 | 431 |
|> pair deps |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
432 |
|> pair x |
47576 | 433 |
else |
434 |
program |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
435 |
|> Code_Symbol.Graph.default_node (sym, NoStmt) |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
436 |
|> add_dep |
55190 | 437 |
|> curry generate (sym :: deps) |
47576 | 438 |
||> snd |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
439 |
|-> (fn stmt => (Code_Symbol.Graph.map_node sym) (K stmt)) |
55190 | 440 |
|> pair deps |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
441 |
|> pair x |
24219 | 442 |
end; |
443 |
||
36272
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
444 |
exception PERMISSIVE of unit; |
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
445 |
|
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
446 |
fun translation_error ctxt permissive some_thm deps msg sub_msg = |
36272
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
447 |
if permissive |
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
448 |
then raise PERMISSIVE () |
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
449 |
else |
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
450 |
let |
55190 | 451 |
val thm_msg = |
61268 | 452 |
Option.map (fn thm => "in code equation " ^ Thm.string_of_thm ctxt thm) some_thm; |
55190 | 453 |
val dep_msg = if null (tl deps) then NONE |
454 |
else SOME ("with dependency " |
|
455 |
^ space_implode " -> " (map (Code_Symbol.quote ctxt) (rev deps))); |
|
456 |
val thm_dep_msg = case (thm_msg, dep_msg) |
|
457 |
of (SOME thm_msg, SOME dep_msg) => "\n(" ^ thm_msg ^ ",\n" ^ dep_msg ^ ")" |
|
458 |
| (SOME thm_msg, NONE) => "\n(" ^ thm_msg ^ ")" |
|
459 |
| (NONE, SOME dep_msg) => "\n(" ^ dep_msg ^ ")" |
|
460 |
| (NONE, NONE) => "" |
|
461 |
in error (msg ^ thm_dep_msg ^ ":\n" ^ sub_msg) end; |
|
37698 | 462 |
|
48074 | 463 |
fun maybe_permissive f prgrm = |
464 |
f prgrm |>> SOME handle PERMISSIVE () => (NONE, prgrm); |
|
465 |
||
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
466 |
fun not_wellsorted ctxt permissive some_thm deps ty sort e = |
37698 | 467 |
let |
61262
7bd1eb4b056e
tuned signature: eliminated pointless type Context.pretty;
wenzelm
parents:
60697
diff
changeset
|
468 |
val err_class = Sorts.class_error (Context.Proof ctxt) e; |
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
469 |
val err_typ = |
55757 | 470 |
"Type " ^ Syntax.string_of_typ ctxt ty ^ " not of sort " ^ |
471 |
Syntax.string_of_sort ctxt sort; |
|
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
472 |
in |
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
473 |
translation_error ctxt permissive some_thm deps |
55190 | 474 |
"Wellsortedness error" (err_typ ^ "\n" ^ err_class) |
42385
b46b47775cbe
simplified Sorts.class_error: plain Proof.context;
wenzelm
parents:
42383
diff
changeset
|
475 |
end; |
26972 | 476 |
|
47555 | 477 |
|
44790
c13fdf710a40
adding type inference for disambiguation annotations in code equation
bulwahn
parents:
44789
diff
changeset
|
478 |
(* inference of type annotations for disambiguation with type classes *) |
c13fdf710a40
adding type inference for disambiguation annotations in code equation
bulwahn
parents:
44789
diff
changeset
|
479 |
|
45000
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
480 |
fun mk_tagged_type (true, T) = Type ("", [T]) |
47555 | 481 |
| mk_tagged_type (false, T) = T; |
45000
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
482 |
|
44998
f12ef61ea76e
determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents:
44997
diff
changeset
|
483 |
fun dest_tagged_type (Type ("", [T])) = (true, T) |
47555 | 484 |
| dest_tagged_type T = (false, T); |
44998
f12ef61ea76e
determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents:
44997
diff
changeset
|
485 |
|
75399
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
486 |
val fastype_of_tagged_term = fastype_of o map_types (snd o dest_tagged_type); |
44998
f12ef61ea76e
determining the fastype of a case-pattern but ignoring dummy type constructors that were added as markers for type annotations
bulwahn
parents:
44997
diff
changeset
|
487 |
|
45000
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
488 |
fun tag_term (proj_sort, _) eqngr = |
44997 | 489 |
let |
47555 | 490 |
val has_sort_constraints = exists (not o null) o map proj_sort o Code_Preproc.sortargs eqngr; |
47576 | 491 |
fun tag (Const (_, T')) (Const (c, T)) = |
45000
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
492 |
Const (c, |
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
493 |
mk_tagged_type (not (null (Term.add_tvarsT T' [])) andalso has_sort_constraints c, T)) |
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
494 |
| tag (t1 $ u1) (t $ u) = tag t1 t $ tag u1 u |
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
495 |
| tag (Abs (_, _, t1)) (Abs (x, T, t)) = Abs (x, T, tag t1 t) |
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
496 |
| tag (Free _) (t as Free _) = t |
0febe2089425
adding abstraction layer; more precise function names
bulwahn
parents:
44999
diff
changeset
|
497 |
| tag (Var _) (t as Var _) = t |
47555 | 498 |
| tag (Bound _) (t as Bound _) = t; |
55757 | 499 |
in tag end |
44790
c13fdf710a40
adding type inference for disambiguation annotations in code equation
bulwahn
parents:
44789
diff
changeset
|
500 |
|
55757 | 501 |
fun annotate ctxt algbr eqngr (c, ty) args rhs = |
44790
c13fdf710a40
adding type inference for disambiguation annotations in code equation
bulwahn
parents:
44789
diff
changeset
|
502 |
let |
55757 | 503 |
val erase = map_types (fn _ => Type_Infer.anyT []); |
504 |
val reinfer = singleton (Type_Infer_Context.infer_types ctxt); |
|
505 |
val lhs = list_comb (Const (c, ty), map (map_types Type.strip_sorts o fst) args); |
|
506 |
val reinferred_rhs = snd (Logic.dest_equals (reinfer (Logic.mk_equals (lhs, erase rhs)))); |
|
507 |
in tag_term algbr eqngr reinferred_rhs rhs end |
|
508 |
||
509 |
fun annotate_eqns ctxt algbr eqngr (c, ty) eqns = |
|
510 |
let |
|
511 |
val ctxt' = ctxt |> Proof_Context.theory_of |> Proof_Context.init_global |
|
512 |
|> Config.put Type_Infer_Context.const_sorts false; |
|
513 |
(*avoid spurious fixed variables: there is no eigen context for equations*) |
|
44790
c13fdf710a40
adding type inference for disambiguation annotations in code equation
bulwahn
parents:
44789
diff
changeset
|
514 |
in |
55757 | 515 |
map (apfst (fn (args, (rhs, some_abs)) => (args, |
516 |
(annotate ctxt' algbr eqngr (c, ty) args rhs, some_abs)))) eqns |
|
517 |
end; |
|
47555 | 518 |
|
75324 | 519 |
|
55189 | 520 |
(* abstract dictionary construction *) |
521 |
||
522 |
datatype typarg_witness = |
|
523 |
Weakening of (class * class) list * plain_typarg_witness |
|
524 |
and plain_typarg_witness = |
|
525 |
Global of (string * class) * typarg_witness list list |
|
63303 | 526 |
| Local of { var: string, index: int, sort: sort, unique: bool }; |
527 |
||
528 |
fun brand_unique unique (w as Global _) = w |
|
529 |
| brand_unique unique (Local { var, index, sort, unique = _ }) = |
|
530 |
Local { var = var, index = index, sort = sort, unique = unique }; |
|
55189 | 531 |
|
55757 | 532 |
fun construct_dictionaries ctxt (proj_sort, algebra) permissive some_thm (ty, sort) (deps, program) = |
55189 | 533 |
let |
63303 | 534 |
fun class_relation unique (Weakening (classrels, x), sub_class) super_class = |
535 |
Weakening ((sub_class, super_class) :: classrels, brand_unique unique x); |
|
55189 | 536 |
fun type_constructor (tyco, _) dss class = |
537 |
Weakening ([], Global ((tyco, class), (map o map) fst dss)); |
|
538 |
fun type_variable (TFree (v, sort)) = |
|
539 |
let |
|
540 |
val sort' = proj_sort sort; |
|
63303 | 541 |
in map_index (fn (n, class) => (Weakening ([], Local |
542 |
{ var = v, index = n, sort = sort', unique = true }), class)) sort' |
|
543 |
end; |
|
55189 | 544 |
val typarg_witnesses = Sorts.of_sort_derivation algebra |
63303 | 545 |
{class_relation = fn _ => fn unique => |
546 |
Sorts.classrel_derivation algebra (class_relation unique), |
|
55189 | 547 |
type_constructor = type_constructor, |
548 |
type_variable = type_variable} (ty, proj_sort sort) |
|
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
549 |
handle Sorts.CLASS_ERROR e => not_wellsorted ctxt permissive some_thm deps ty sort e; |
55190 | 550 |
in (typarg_witnesses, (deps, program)) end; |
55189 | 551 |
|
552 |
||
28724 | 553 |
(* translation *) |
554 |
||
75397
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
555 |
fun is_undefined_clause ctxt (_, IConst { sym = Constant c, ... }) = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
556 |
Code.is_undefined (Proof_Context.theory_of ctxt) c |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
557 |
| is_undefined_clause ctxt _ = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
558 |
false; |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
559 |
|
55757 | 560 |
fun ensure_tyco ctxt algbr eqngr permissive tyco = |
30932 | 561 |
let |
55757 | 562 |
val thy = Proof_Context.theory_of ctxt; |
40726
16dcfedc4eb7
keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents:
40711
diff
changeset
|
563 |
val ((vs, cos), _) = Code.get_type thy tyco; |
30932 | 564 |
val stmt_datatype = |
55757 | 565 |
fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs |
48003
1d11af40b106
dropped sort constraints on datatype specifications
haftmann
parents:
47576
diff
changeset
|
566 |
#>> map fst |
40726
16dcfedc4eb7
keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents:
40711
diff
changeset
|
567 |
##>> fold_map (fn (c, (vs, tys)) => |
55757 | 568 |
ensure_const ctxt algbr eqngr permissive c |
40726
16dcfedc4eb7
keep type variable arguments of datatype constructors in bookkeeping
haftmann
parents:
40711
diff
changeset
|
569 |
##>> pair (map (unprefix "'" o fst) vs) |
55757 | 570 |
##>> fold_map (translate_typ ctxt algbr eqngr permissive) tys) cos |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
571 |
#>> Datatype; |
55150 | 572 |
in ensure_stmt Type_Constructor stmt_datatype tyco end |
55757 | 573 |
and ensure_const ctxt algbr eqngr permissive c = |
30932 | 574 |
let |
55757 | 575 |
val thy = Proof_Context.theory_of ctxt; |
30932 | 576 |
fun stmt_datatypecons tyco = |
55757 | 577 |
ensure_tyco ctxt algbr eqngr permissive tyco |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
578 |
#>> Datatypecons; |
30932 | 579 |
fun stmt_classparam class = |
55757 | 580 |
ensure_class ctxt algbr eqngr permissive class |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
581 |
#>> Classparam; |
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
582 |
fun stmt_fun cert = case Code.equations_of_cert thy cert |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
583 |
of (_, NONE) => pair NoStmt |
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
584 |
| ((vs, ty), SOME eqns) => |
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
585 |
let |
55757 | 586 |
val eqns' = annotate_eqns ctxt algbr eqngr (c, ty) eqns |
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
587 |
val some_case_cong = Code.get_case_cong thy c; |
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
588 |
in |
55757 | 589 |
fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs |
590 |
##>> translate_typ ctxt algbr eqngr permissive ty |
|
591 |
##>> translate_eqns ctxt algbr eqngr permissive eqns' |
|
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
592 |
#>> |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
593 |
(fn (_, NONE) => NoStmt |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
594 |
| (tyscm, SOME eqns) => Fun ((tyscm, eqns), some_case_cong)) |
54889
4121d64fde90
explicit distinction between empty code equations and no code equations, including convenient declaration attributes
haftmann
parents:
52801
diff
changeset
|
595 |
end; |
35299
4f4d5bf4ea08
proper distinction of code datatypes and abstypes
haftmann
parents:
35226
diff
changeset
|
596 |
val stmt_const = case Code.get_type_of_constr_or_abstr thy c |
35226 | 597 |
of SOME (tyco, _) => stmt_datatypecons tyco |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51658
diff
changeset
|
598 |
| NONE => (case Axclass.class_of_param thy c |
30932 | 599 |
of SOME class => stmt_classparam class |
34891
99b9a6290446
code certificates as integral part of code generation
haftmann
parents:
34251
diff
changeset
|
600 |
| NONE => stmt_fun (Code_Preproc.cert eqngr c)) |
55150 | 601 |
in ensure_stmt Constant stmt_const c end |
55757 | 602 |
and ensure_class ctxt (algbr as (_, algebra)) eqngr permissive class = |
24918 | 603 |
let |
55757 | 604 |
val thy = Proof_Context.theory_of ctxt; |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
605 |
val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51658
diff
changeset
|
606 |
val cs = #params (Axclass.get_info thy class); |
24918 | 607 |
val stmt_class = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
608 |
fold_map (fn super_class => |
55757 | 609 |
ensure_classrel ctxt algbr eqngr permissive (class, super_class)) super_classes |
610 |
##>> fold_map (fn (c, ty) => ensure_const ctxt algbr eqngr permissive c |
|
611 |
##>> translate_typ ctxt algbr eqngr permissive ty) cs |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
612 |
#>> (fn info => Class (unprefix "'" Name.aT, info)) |
55150 | 613 |
in ensure_stmt Type_Class stmt_class class end |
55757 | 614 |
and ensure_classrel ctxt algbr eqngr permissive (sub_class, super_class) = |
24918 | 615 |
let |
616 |
val stmt_classrel = |
|
55757 | 617 |
ensure_class ctxt algbr eqngr permissive sub_class |
618 |
##>> ensure_class ctxt algbr eqngr permissive super_class |
|
24918 | 619 |
#>> Classrel; |
55150 | 620 |
in ensure_stmt Class_Relation stmt_classrel (sub_class, super_class) end |
55757 | 621 |
and ensure_inst ctxt (algbr as (_, algebra)) eqngr permissive (tyco, class) = |
24918 | 622 |
let |
55757 | 623 |
val thy = Proof_Context.theory_of ctxt; |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
624 |
val super_classes = (Sorts.minimize_sort algebra o Sorts.super_classes algebra) class; |
51685
385ef6706252
more standard module name Axclass (according to file name);
wenzelm
parents:
51658
diff
changeset
|
625 |
val these_class_params = these o try (#params o Axclass.get_info thy); |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
626 |
val class_params = these_class_params class; |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
627 |
val superclass_params = maps these_class_params |
37448
3bd4b3809bee
explicit type variable arguments for constructors
haftmann
parents:
37447
diff
changeset
|
628 |
((Sorts.complete_sort algebra o Sorts.super_classes algebra) class); |
43329
84472e198515
tuned signature: Name.invent and Name.invent_names;
wenzelm
parents:
43326
diff
changeset
|
629 |
val vs = Name.invent_names Name.context "'a" (Sorts.mg_domain algebra tyco [class]); |
24918 | 630 |
val sorts' = Sorts.mg_domain (Sign.classes_of thy) tyco [class]; |
631 |
val vs' = map2 (fn (v, sort1) => fn sort2 => (v, |
|
632 |
Sorts.inter_sort (Sign.classes_of thy) (sort1, sort2))) vs sorts'; |
|
633 |
val arity_typ = Type (tyco, map TFree vs); |
|
634 |
val arity_typ' = Type (tyco, map (fn (v, sort) => TVar ((v, 0), sort)) vs'); |
|
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
635 |
fun translate_super_instance super_class = |
55757 | 636 |
ensure_class ctxt algbr eqngr permissive super_class |
637 |
##>> translate_dicts ctxt algbr eqngr permissive NONE (arity_typ, [super_class]) |
|
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
638 |
#>> (fn (super_class, [Dict ([], Dict_Const (_, dss))]) => (super_class, dss)); |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
639 |
fun translate_classparam_instance (c, ty) = |
24918 | 640 |
let |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
641 |
val raw_const = Const (c, map_type_tfree (K arity_typ') ty); |
52519
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
642 |
val dom_length = length (fst (strip_type ty)) |
63073
413184c7a2a2
clarified context, notably for internal use of Simplifier;
wenzelm
parents:
62539
diff
changeset
|
643 |
val thm = Axclass.unoverload_conv ctxt (Thm.cterm_of ctxt raw_const); |
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
644 |
val const = (apsnd Logic.unvarifyT_global o dest_Const o snd |
24918 | 645 |
o Logic.dest_equals o Thm.prop_of) thm; |
646 |
in |
|
55757 | 647 |
ensure_const ctxt algbr eqngr permissive c |
648 |
##>> translate_const ctxt algbr eqngr permissive (SOME thm) (const, NONE) |
|
52519
598addf65209
explicit hint for domain of class parameters in instance statements
haftmann
parents:
52161
diff
changeset
|
649 |
#>> (fn (c, IConst const') => ((c, (const', dom_length)), (thm, true))) |
24918 | 650 |
end; |
651 |
val stmt_inst = |
|
55757 | 652 |
ensure_class ctxt algbr eqngr permissive class |
653 |
##>> ensure_tyco ctxt algbr eqngr permissive tyco |
|
654 |
##>> fold_map (translate_tyvar_sort ctxt algbr eqngr permissive) vs |
|
37384
5aba26803073
more consistent naming aroud type classes and instances
haftmann
parents:
37216
diff
changeset
|
655 |
##>> fold_map translate_super_instance super_classes |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
656 |
##>> fold_map translate_classparam_instance class_params |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
657 |
##>> fold_map translate_classparam_instance superclass_params |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
658 |
#>> (fn (((((class, tyco), vs), superinsts), inst_params), superinst_params) => |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
659 |
Classinst { class = class, tyco = tyco, vs = vs, |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
660 |
superinsts = superinsts, inst_params = inst_params, superinst_params = superinst_params }); |
55150 | 661 |
in ensure_stmt Class_Instance stmt_inst (tyco, class) end |
55757 | 662 |
and translate_typ ctxt algbr eqngr permissive (TFree (v, _)) = |
30932 | 663 |
pair (ITyVar (unprefix "'" v)) |
55757 | 664 |
| translate_typ ctxt algbr eqngr permissive (Type (tyco, tys)) = |
665 |
ensure_tyco ctxt algbr eqngr permissive tyco |
|
666 |
##>> fold_map (translate_typ ctxt algbr eqngr permissive) tys |
|
30932 | 667 |
#>> (fn (tyco, tys) => tyco `%% tys) |
55757 | 668 |
and translate_term ctxt algbr eqngr permissive some_thm (Const (c, ty), some_abs) = |
669 |
translate_app ctxt algbr eqngr permissive some_thm (((c, ty), []), some_abs) |
|
670 |
| translate_term ctxt algbr eqngr permissive some_thm (Free (v, _), some_abs) = |
|
31889 | 671 |
pair (IVar (SOME v)) |
55757 | 672 |
| translate_term ctxt algbr eqngr permissive some_thm (Abs (v, ty, t), some_abs) = |
24918 | 673 |
let |
74525
c960bfcb91db
discontinued Term.dest_abs / Logic.dest_all, which are officially superseded by Variable.dest_abs etc., but there are also Term.dest_abs_global to recover existing tools easily;
wenzelm
parents:
74447
diff
changeset
|
674 |
val ((v', _), t') = Term.dest_abs_global (Abs (Name.desymbolize (SOME false) v, ty, t)); |
74446 | 675 |
val v'' = if Term.used_free v' t' then SOME v' else NONE |
24918 | 676 |
in |
55757 | 677 |
translate_typ ctxt algbr eqngr permissive ty |
678 |
##>> translate_term ctxt algbr eqngr permissive some_thm (t', some_abs) |
|
32273 | 679 |
#>> (fn (ty, t) => (v'', ty) `|=> t) |
24918 | 680 |
end |
55757 | 681 |
| translate_term ctxt algbr eqngr permissive some_thm (t as _ $ _, some_abs) = |
24918 | 682 |
case strip_comb t |
683 |
of (Const (c, ty), ts) => |
|
55757 | 684 |
translate_app ctxt algbr eqngr permissive some_thm (((c, ty), ts), some_abs) |
24918 | 685 |
| (t', ts) => |
55757 | 686 |
translate_term ctxt algbr eqngr permissive some_thm (t', some_abs) |
687 |
##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm o rpair NONE) ts |
|
24918 | 688 |
#>> (fn (t, ts) => t `$$ ts) |
55757 | 689 |
and translate_eqn ctxt algbr eqngr permissive ((args, (rhs, some_abs)), (some_thm, proper)) = |
690 |
fold_map (translate_term ctxt algbr eqngr permissive some_thm) args |
|
691 |
##>> translate_term ctxt algbr eqngr permissive some_thm (rhs, some_abs) |
|
35226 | 692 |
#>> rpair (some_thm, proper) |
55757 | 693 |
and translate_eqns ctxt algbr eqngr permissive eqns = |
694 |
maybe_permissive (fold_map (translate_eqn ctxt algbr eqngr permissive) eqns) |
|
695 |
and translate_const ctxt algbr eqngr permissive some_thm ((c, ty), some_abs) (deps, program) = |
|
30932 | 696 |
let |
55757 | 697 |
val thy = Proof_Context.theory_of ctxt; |
37698 | 698 |
val _ = if (case some_abs of NONE => true | SOME abs => not (c = abs)) |
35226 | 699 |
andalso Code.is_abstr thy c |
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
700 |
then translation_error ctxt permissive some_thm deps |
37698 | 701 |
"Abstraction violation" ("constant " ^ Code.string_of_const thy c) |
702 |
else () |
|
55757 | 703 |
in translate_const_proper ctxt algbr eqngr permissive some_thm (c, ty) (deps, program) end |
704 |
and translate_const_proper ctxt algbr eqngr permissive some_thm (c, ty) = |
|
55190 | 705 |
let |
55757 | 706 |
val thy = Proof_Context.theory_of ctxt; |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
707 |
val (annotate, ty') = dest_tagged_type ty; |
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
708 |
val typargs = Sign.const_typargs thy (c, ty'); |
32873 | 709 |
val sorts = Code_Preproc.sortargs eqngr c; |
48072
ace701efe203
prefer records with speaking labels over deeply nested tuples
haftmann
parents:
48003
diff
changeset
|
710 |
val (dom, range) = Term.strip_type ty'; |
26972 | 711 |
in |
55757 | 712 |
ensure_const ctxt algbr eqngr permissive c |
713 |
##>> fold_map (translate_typ ctxt algbr eqngr permissive) typargs |
|
714 |
##>> fold_map (translate_dicts ctxt algbr eqngr permissive some_thm) (typargs ~~ sorts) |
|
58397 | 715 |
##>> fold_map (translate_typ ctxt algbr eqngr permissive) (ty' :: dom) |
716 |
#>> (fn (((c, typargs), dss), annotation :: dom) => |
|
55150 | 717 |
IConst { sym = Constant c, typargs = typargs, dicts = dss, |
58397 | 718 |
dom = dom, annotation = |
719 |
if annotate then SOME annotation else NONE }) |
|
26972 | 720 |
end |
55757 | 721 |
and translate_app_const ctxt algbr eqngr permissive some_thm ((c_ty, ts), some_abs) = |
722 |
translate_const ctxt algbr eqngr permissive some_thm (c_ty, some_abs) |
|
723 |
##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm o rpair NONE) ts |
|
24918 | 724 |
#>> (fn (t, ts) => t `$$ ts) |
75397
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
725 |
and translate_case ctxt algbr eqngr permissive some_thm (t_pos, []) (c_ty, ts) = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
726 |
let |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
727 |
fun project_term xs = nth xs t_pos; |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
728 |
val project_clause = the_single o nth_drop t_pos; |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
729 |
val ty_case = project_term (binder_types (snd c_ty)); |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
730 |
fun distill_clauses ty_case t = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
731 |
map (fn ([pat], body) => (pat, body)) (distill_minimized_clause [ty_case] t) |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
732 |
in |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
733 |
translate_const ctxt algbr eqngr permissive some_thm (c_ty, NONE) |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
734 |
##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm o rpair NONE) ts |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
735 |
##>> translate_typ ctxt algbr eqngr permissive ty_case |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
736 |
#>> (fn ((t_app, ts), ty_case) => |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
737 |
ICase { term = project_term ts, typ = ty_case, |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
738 |
clauses = (filter_out (is_undefined_clause ctxt) o distill_clauses ty_case o project_clause) ts, |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
739 |
primitive = t_app `$$ ts }) |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
740 |
end |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
741 |
| translate_case ctxt algbr eqngr permissive some_thm (t_pos, case_pats) (c_ty, ts) = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
742 |
let |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
743 |
fun project_term xs = nth xs t_pos; |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
744 |
fun project_cases xs = |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
745 |
xs |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
746 |
|> nth_drop t_pos |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
747 |
|> curry (op ~~) case_pats |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
748 |
|> map_filter (fn (NONE, _) => NONE | (SOME _, x) => SOME x); |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
749 |
val ty_case = project_term (binder_types (snd c_ty)); |
75399
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
750 |
val constrs = map_filter I case_pats ~~ project_cases ts |
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
751 |
|> map (fn ((c, n), t) => |
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
752 |
((c, (take n o binder_types o fastype_of_tagged_term) t ---> ty_case), n)); |
75397
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
753 |
fun distill_clauses constrs ts_clause = |
75392 | 754 |
maps (fn ((constr as IConst { dom = tys, ... }, n), t) => |
755 |
map (fn (pat_args, body) => (constr `$$ pat_args, body)) |
|
756 |
(distill_minimized_clause (take n tys) t)) |
|
757 |
(constrs ~~ ts_clause); |
|
75397
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
758 |
in |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
759 |
translate_const ctxt algbr eqngr permissive some_thm (c_ty, NONE) |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
760 |
##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm o rpair NONE) ts |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
761 |
##>> translate_typ ctxt algbr eqngr permissive ty_case |
75399
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
762 |
##>> fold_map (fn (c_ty, n) => |
cdf84288d93c
pass constructor arity as part of case certficiate
haftmann
parents:
75397
diff
changeset
|
763 |
translate_const ctxt algbr eqngr permissive some_thm (c_ty, NONE) #>> rpair n) constrs |
75397
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
764 |
#>> (fn (((t_app, ts), ty_case), constrs) => |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
765 |
ICase { term = project_term ts, typ = ty_case, |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
766 |
clauses = (filter_out (is_undefined_clause ctxt) o distill_clauses constrs o project_cases) ts, |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
767 |
primitive = t_app `$$ ts }) |
e852c776a455
tuned, centralizing case distinction at one place at the cost of modest duplication
haftmann
parents:
75392
diff
changeset
|
768 |
end |
75319 | 769 |
and translate_app_case ctxt algbr eqngr permissive some_thm (num_args, pattern_schema) ((c, ty), ts) = |
29973 | 770 |
if length ts < num_args then |
771 |
let |
|
772 |
val k = length ts; |
|
33957 | 773 |
val tys = (take (num_args - k) o drop k o fst o strip_type) ty; |
74411 | 774 |
val names = Name.build_context (ts |> (fold o fold_aterms) Term.declare_term_frees); |
55757 | 775 |
val vs = Name.invent_names names "a" tys; |
29973 | 776 |
in |
55757 | 777 |
fold_map (translate_typ ctxt algbr eqngr permissive) tys |
75319 | 778 |
##>> translate_case ctxt algbr eqngr permissive some_thm pattern_schema ((c, ty), ts @ map Free vs) |
31888 | 779 |
#>> (fn (tys, t) => map2 (fn (v, _) => pair (SOME v)) vs tys `|==> t) |
29973 | 780 |
end |
781 |
else if length ts > num_args then |
|
75319 | 782 |
translate_case ctxt algbr eqngr permissive some_thm pattern_schema ((c, ty), take num_args ts) |
55757 | 783 |
##>> fold_map (translate_term ctxt algbr eqngr permissive some_thm o rpair NONE) (drop num_args ts) |
29973 | 784 |
#>> (fn (t, ts) => t `$$ ts) |
785 |
else |
|
75319 | 786 |
translate_case ctxt algbr eqngr permissive some_thm pattern_schema ((c, ty), ts) |
55757 | 787 |
and translate_app ctxt algbr eqngr permissive some_thm (c_ty_ts as ((c, _), _), some_abs) = |
66189
23917e861eaa
treat "undefined" constants internally as special form of case combinators
haftmann
parents:
65483
diff
changeset
|
788 |
case Code.get_case_schema (Proof_Context.theory_of ctxt) c |
23917e861eaa
treat "undefined" constants internally as special form of case combinators
haftmann
parents:
65483
diff
changeset
|
789 |
of SOME case_schema => translate_app_case ctxt algbr eqngr permissive some_thm case_schema c_ty_ts |
55757 | 790 |
| NONE => translate_app_const ctxt algbr eqngr permissive some_thm (c_ty_ts, some_abs) |
791 |
and translate_tyvar_sort ctxt (algbr as (proj_sort, _)) eqngr permissive (v, sort) = |
|
792 |
fold_map (ensure_class ctxt algbr eqngr permissive) (proj_sort sort) |
|
30932 | 793 |
#>> (fn sort => (unprefix "'" v, sort)) |
55757 | 794 |
and translate_dicts ctxt algbr eqngr permissive some_thm (ty, sort) = |
30932 | 795 |
let |
63303 | 796 |
fun mk_dict (Weakening (classrels, d)) = |
55757 | 797 |
fold_map (ensure_classrel ctxt algbr eqngr permissive) classrels |
63303 | 798 |
##>> mk_plain_dict d |
41118
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
799 |
#>> Dict |
b290841cd3b0
separated dictionary weakning into separate type
haftmann
parents:
41100
diff
changeset
|
800 |
and mk_plain_dict (Global (inst, dss)) = |
55757 | 801 |
ensure_inst ctxt algbr eqngr permissive inst |
41100
6c0940392fb4
dictionary constants must permit explicit weakening of classes;
haftmann
parents:
40844
diff
changeset
|
802 |
##>> (fold_map o fold_map) mk_dict dss |
63303 | 803 |
#>> Dict_Const |
804 |
| mk_plain_dict (Local { var, index, sort, unique }) = |
|
805 |
ensure_class ctxt algbr eqngr permissive (nth sort index) |
|
806 |
#>> (fn class => Dict_Var { var = unprefix "'" var, index = index, |
|
807 |
length = length sort, class = class, unique = unique }) |
|
55189 | 808 |
in |
55757 | 809 |
construct_dictionaries ctxt algbr permissive some_thm (ty, sort) |
55189 | 810 |
#-> (fn typarg_witnesses => fold_map mk_dict typarg_witnesses) |
811 |
end; |
|
24918 | 812 |
|
25969 | 813 |
|
27103 | 814 |
(* store *) |
815 |
||
34173
458ced35abb8
reduced code generator cache to the baremost minimum
haftmann
parents:
34084
diff
changeset
|
816 |
structure Program = Code_Data |
27103 | 817 |
( |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
818 |
type T = program; |
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
819 |
val empty = Code_Symbol.Graph.empty; |
27103 | 820 |
); |
821 |
||
63160 | 822 |
fun invoke_generation ignore_cache ctxt generate thing = |
63159 | 823 |
Program.change_yield |
824 |
(if ignore_cache then NONE else SOME (Proof_Context.theory_of ctxt)) |
|
55190 | 825 |
(fn program => ([], program) |
63160 | 826 |
|> generate thing |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
827 |
|-> (fn thing => fn (_, program) => (thing, program))); |
36272
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
828 |
|
27103 | 829 |
|
830 |
(* program generation *) |
|
831 |
||
63175
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
832 |
fun check_abstract_constructors thy consts = |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
833 |
case filter (Code.is_abstr thy) consts of |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
834 |
[] => () |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
835 |
| abstrs => error ("Cannot export abstract constructor(s): " |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
836 |
^ commas (map (Code.string_of_const thy) abstrs)); |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
837 |
|
63164 | 838 |
fun invoke_generation_for_consts ctxt { ignore_cache, permissive } { algebra, eqngr } consts = |
63175
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
839 |
let |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
840 |
val thy = Proof_Context.theory_of ctxt; |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
841 |
val _ = if permissive then () |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
842 |
else check_abstract_constructors thy consts; |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
843 |
in |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
844 |
Code_Preproc.timed "translating program" #ctxt |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
845 |
(fn { ctxt, algebra, eqngr, consts } => invoke_generation ignore_cache ctxt |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
846 |
(fold_map (ensure_const ctxt algebra eqngr permissive)) consts) |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
847 |
{ ctxt = ctxt, algebra = algebra, eqngr = eqngr, consts = consts } |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
848 |
end; |
63160 | 849 |
|
850 |
fun invoke_generation_for_consts' ctxt ignore_cache_and_permissive consts = |
|
851 |
invoke_generation_for_consts ctxt |
|
852 |
{ ignore_cache = ignore_cache_and_permissive, permissive = ignore_cache_and_permissive } |
|
63164 | 853 |
(Code_Preproc.obtain ignore_cache_and_permissive |
854 |
{ ctxt = ctxt, consts = consts, terms = []}) consts |
|
63160 | 855 |
|> snd; |
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
856 |
|
63160 | 857 |
fun invoke_generation_for_consts'' ctxt algebra_eqngr = |
858 |
invoke_generation_for_consts ctxt |
|
859 |
{ ignore_cache = true, permissive = false } |
|
860 |
algebra_eqngr |
|
861 |
#> (fn (deps, program) => { deps = deps, program = program }); |
|
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
862 |
|
63160 | 863 |
fun consts_program_permissive ctxt = |
864 |
invoke_generation_for_consts' ctxt true; |
|
865 |
||
866 |
fun consts_program ctxt consts = |
|
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
867 |
let |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
868 |
fun project program = Code_Symbol.Graph.restrict |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
869 |
(member (op =) (Code_Symbol.Graph.all_succs program |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
870 |
(map Constant consts))) program; |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
871 |
in |
63160 | 872 |
invoke_generation_for_consts' ctxt false consts |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
873 |
|> project |
27103 | 874 |
end; |
875 |
||
876 |
||
877 |
(* value evaluation *) |
|
25969 | 878 |
|
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
879 |
fun ensure_value ctxt algbr eqngr t = |
24918 | 880 |
let |
881 |
val ty = fastype_of t; |
|
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
882 |
val vs = fold_term_types (K (fold_atyps (insert (eq_fst op =) |
24918 | 883 |
o dest_TFree))) t []; |
69593 | 884 |
val t' = annotate ctxt algbr eqngr (\<^const_name>\<open>Pure.dummy_pattern\<close>, ty) [] t; |
885 |
val dummy_constant = Constant \<^const_name>\<open>Pure.dummy_pattern\<close>; |
|
24918 | 886 |
val stmt_value = |
55757 | 887 |
fold_map (translate_tyvar_sort ctxt algbr eqngr false) vs |
888 |
##>> translate_typ ctxt algbr eqngr false ty |
|
889 |
##>> translate_term ctxt algbr eqngr false NONE (t', NONE) |
|
28663
bd8438543bf2
code identifier namings are no longer imperative
haftmann
parents:
28423
diff
changeset
|
890 |
#>> (fn ((vs, ty), t) => Fun |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
891 |
(((vs, ty), [(([], t), (NONE, true))]), NONE)); |
56920
d651b944c67e
normalizing of type variables before evaluation with explicit resubstitution function: make nbe work with funny type variables like \<AA>;
haftmann
parents:
56811
diff
changeset
|
892 |
fun term_value (_, program1) = |
25969 | 893 |
let |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
894 |
val Fun ((vs_ty, [(([], t), _)]), _) = |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
895 |
Code_Symbol.Graph.get_node program1 dummy_constant; |
55190 | 896 |
val deps' = Code_Symbol.Graph.immediate_succs program1 dummy_constant; |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
897 |
val program2 = Code_Symbol.Graph.del_node dummy_constant program1; |
55190 | 898 |
val deps_all = Code_Symbol.Graph.all_succs program2 deps'; |
55147
bce3dbc11f95
prefer explicit code symbol type over ad-hoc name mangling
haftmann
parents:
54932
diff
changeset
|
899 |
val program3 = Code_Symbol.Graph.restrict (member (op =) deps_all) program2; |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
900 |
in ((program3, ((vs_ty, t), deps')), (deps', program2)) end; |
26011 | 901 |
in |
69593 | 902 |
ensure_stmt Constant stmt_value \<^const_name>\<open>Pure.dummy_pattern\<close> |
26011 | 903 |
#> snd |
31063
88aaab83b6fc
dropped explicit suppport for frees in evaluation conversion stack
haftmann
parents:
31054
diff
changeset
|
904 |
#> term_value |
26011 | 905 |
end; |
24219 | 906 |
|
64957 | 907 |
fun dynamic_evaluation comp ctxt algebra eqngr t = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
908 |
let |
56969
7491932da574
dropped obsolete hand-waving adjustion of type variables: safely done in preprocessor
haftmann
parents:
56920
diff
changeset
|
909 |
val ((program, (vs_ty_t', deps)), _) = |
63164 | 910 |
Code_Preproc.timed "translating term" #ctxt |
911 |
(fn { ctxt, algebra, eqngr, t } => |
|
912 |
invoke_generation false ctxt (ensure_value ctxt algebra eqngr) t) |
|
913 |
{ ctxt = ctxt, algebra = algebra, eqngr = eqngr, t = t }; |
|
64957 | 914 |
in comp program t vs_ty_t' deps end; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
915 |
|
55757 | 916 |
fun dynamic_conv ctxt conv = |
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
917 |
Code_Preproc.dynamic_conv ctxt |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
918 |
(dynamic_evaluation (fn program => fn _ => conv program) ctxt); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
919 |
|
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
920 |
fun dynamic_value ctxt postproc comp = |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
921 |
Code_Preproc.dynamic_value ctxt postproc |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
922 |
(dynamic_evaluation comp ctxt); |
41365 | 923 |
|
63160 | 924 |
fun static_evaluation ctxt consts algebra_eqngr static_eval = |
925 |
static_eval (invoke_generation_for_consts'' ctxt algebra_eqngr consts); |
|
926 |
||
927 |
fun static_evaluation_thingol ctxt consts (algebra_eqngr as { algebra, eqngr }) static_eval = |
|
41365 | 928 |
let |
63160 | 929 |
fun evaluation program dynamic_eval ctxt t = |
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
930 |
let |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
931 |
val ((_, ((vs_ty', t'), deps)), _) = |
63164 | 932 |
Code_Preproc.timed "translating term" #ctxt |
933 |
(fn { ctxt, t } => |
|
934 |
ensure_value ctxt algebra eqngr t ([], program)) |
|
935 |
{ ctxt = ctxt, t = t }; |
|
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
936 |
in dynamic_eval ctxt t (vs_ty', t') deps end; |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
937 |
in |
63160 | 938 |
static_evaluation ctxt consts algebra_eqngr (fn program_deps => |
939 |
evaluation (#program program_deps) (static_eval program_deps)) |
|
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
940 |
end; |
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
941 |
|
63160 | 942 |
fun static_evaluation_isa ctxt consts algebra_eqngr static_eval = |
943 |
static_evaluation ctxt consts algebra_eqngr (fn program_deps => |
|
944 |
(static_eval (#program program_deps))); |
|
39487
80b2cf3b0779
proper closures for static evaluation; no need for FIXMEs any longer
haftmann
parents:
39475
diff
changeset
|
945 |
|
63156 | 946 |
fun static_conv_thingol (ctxt_consts as { ctxt, consts }) conv = |
63160 | 947 |
Code_Preproc.static_conv ctxt_consts (fn algebra_eqngr => |
948 |
static_evaluation_thingol ctxt consts algebra_eqngr |
|
949 |
(fn program_deps => |
|
950 |
let |
|
951 |
val static_conv = conv program_deps; |
|
952 |
in |
|
953 |
fn ctxt => fn _ => fn vs_ty => fn deps => static_conv ctxt vs_ty deps |
|
954 |
end)); |
|
38672
f1f64375f662
preliminary versions of static_eval_conv(_simple)
haftmann
parents:
38669
diff
changeset
|
955 |
|
63156 | 956 |
fun static_conv_isa (ctxt_consts as { ctxt, consts }) conv = |
63160 | 957 |
Code_Preproc.static_conv ctxt_consts (fn algebra_eqngr => |
958 |
static_evaluation_isa ctxt consts algebra_eqngr conv); |
|
38672
f1f64375f662
preliminary versions of static_eval_conv(_simple)
haftmann
parents:
38669
diff
changeset
|
959 |
|
63157
65a81a4ef7f8
clarified naming conventions and code for code evaluation sandwiches
haftmann
parents:
63156
diff
changeset
|
960 |
fun static_value (ctxt_postproc_consts as { ctxt, consts, ... }) comp = |
63160 | 961 |
Code_Preproc.static_value ctxt_postproc_consts (fn algebra_eqngr => |
962 |
static_evaluation_thingol ctxt consts algebra_eqngr comp); |
|
39487
80b2cf3b0779
proper closures for static evaluation; no need for FIXMEs any longer
haftmann
parents:
39475
diff
changeset
|
963 |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
964 |
|
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
965 |
(** constant expressions **) |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
966 |
|
55757 | 967 |
fun read_const_exprs_internal ctxt = |
31036 | 968 |
let |
55757 | 969 |
val thy = Proof_Context.theory_of ctxt; |
68482 | 970 |
fun this_theory name = |
971 |
if Context.theory_name thy = name then thy |
|
972 |
else Context.get_theory {long = false} thy name; |
|
973 |
||
56062 | 974 |
fun consts_of thy' = |
975 |
fold (fn (c, (_, NONE)) => cons c | _ => I) |
|
63175
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
976 |
(#constants (Consts.dest (Sign.consts_of thy'))) [] |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
977 |
|> filter_out (Code.is_abstr thy); |
36272
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
978 |
fun belongs_here thy' c = forall |
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
979 |
(fn thy'' => not (Sign.declared_const thy'' c)) (Theory.parents_of thy'); |
4d358c582ffb
optionally ignore errors during translation of equations; tuned representation of abstraction points
haftmann
parents:
36210
diff
changeset
|
980 |
fun consts_of_select thy' = filter (belongs_here thy') (consts_of thy'); |
52801 | 981 |
fun read_const_expr str = |
59795 | 982 |
(case Syntax.parse_input ctxt (K NONE) (K Markup.empty) (SOME o Symbol_Pos.implode o #1) str of |
52801 | 983 |
SOME "_" => ([], consts_of thy) |
984 |
| SOME s => |
|
69645 | 985 |
(case try (unsuffix "._") s of |
986 |
SOME name => ([], consts_of_select (this_theory name)) |
|
987 |
| NONE => ([Code.read_const thy str], [])) |
|
52801 | 988 |
| NONE => ([Code.read_const thy str], [])); |
59058
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
wenzelm
parents:
58893
diff
changeset
|
989 |
in apply2 flat o split_list o map read_const_expr end; |
31036 | 990 |
|
55757 | 991 |
fun read_const_exprs_all ctxt = op @ o read_const_exprs_internal ctxt; |
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
992 |
|
55757 | 993 |
fun read_const_exprs ctxt const_exprs = |
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
994 |
let |
63159 | 995 |
val (consts, consts_permissive) = |
996 |
read_const_exprs_internal ctxt const_exprs; |
|
63175
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
997 |
val consts' = |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
998 |
consts_program_permissive ctxt consts_permissive |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
999 |
|> implemented_deps |
d191892b1c23
explicit check that abstract constructors cannot be part of official interface
haftmann
parents:
63164
diff
changeset
|
1000 |
|> filter_out (Code.is_abstr (Proof_Context.theory_of ctxt)); |
55188
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
1001 |
in union (op =) consts' consts end; |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
1002 |
|
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
1003 |
|
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
1004 |
(** diagnostic commands **) |
7ca0204ece66
reduced prominence of "permissive code generation"
haftmann
parents:
55150
diff
changeset
|
1005 |
|
55757 | 1006 |
fun code_depgr ctxt consts = |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1007 |
let |
63164 | 1008 |
val { eqngr, ... } = Code_Preproc.obtain true |
1009 |
{ ctxt = ctxt, consts = consts, terms = [] }; |
|
34173
458ced35abb8
reduced code generator cache to the baremost minimum
haftmann
parents:
34084
diff
changeset
|
1010 |
val all_consts = Graph.all_succs eqngr consts; |
46614
165886a4fe64
clarified Graph.restrict (formerly Graph.subgraph) based on public graph operations;
wenzelm
parents:
45987
diff
changeset
|
1011 |
in Graph.restrict (member (op =) all_consts) eqngr end; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1012 |
|
55757 | 1013 |
fun code_thms ctxt = Pretty.writeln o Code_Preproc.pretty ctxt o code_depgr ctxt; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1014 |
|
60203
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1015 |
fun coalesce_strong_conn gr = |
59208
2486d625878b
for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents:
59207
diff
changeset
|
1016 |
let |
2486d625878b
for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents:
59207
diff
changeset
|
1017 |
val xss = Graph.strong_conn gr; |
60203
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1018 |
val xss_ys = map (fn xs => (xs, commas xs)) xss; |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1019 |
val y_for = the o AList.lookup (op =) (maps (fn (xs, y) => map (fn x => (x, y)) xs) xss_ys); |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1020 |
fun coalesced_succs_for xs = maps (Graph.immediate_succs gr) xs |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1021 |
|> subtract (op =) xs |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1022 |
|> map y_for |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1023 |
|> distinct (op =); |
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1024 |
val succs = map (fn (xs, _) => (xs, coalesced_succs_for xs)) xss_ys; |
59208
2486d625878b
for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents:
59207
diff
changeset
|
1025 |
in |
60204
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1026 |
map (fn (xs, y) => ((y, xs), (maps (Graph.get_node gr) xs, (the o AList.lookup (op =) succs) xs))) xss_ys |
59208
2486d625878b
for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents:
59207
diff
changeset
|
1027 |
end; |
2486d625878b
for graph display, prefer graph data structure over list with dependencies;
wenzelm
parents:
59207
diff
changeset
|
1028 |
|
55757 | 1029 |
fun code_deps ctxt consts = |
27103 | 1030 |
let |
55757 | 1031 |
val thy = Proof_Context.theory_of ctxt; |
60204
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1032 |
fun mk_entry ((name, consts), (ps, deps)) = |
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1033 |
let |
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1034 |
val label = commas (map (Code.string_of_const thy) consts); |
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1035 |
in ((name, Graph_Display.content_node label (Pretty.str label :: ps)), deps) end; |
59210
8658b4290aed
clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents:
59208
diff
changeset
|
1036 |
in |
8658b4290aed
clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents:
59208
diff
changeset
|
1037 |
code_depgr ctxt consts |
60204
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1038 |
|> Graph.map (K (Code.pretty_cert thy o snd)) |
60203
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1039 |
|> coalesce_strong_conn |
60204
137b3fc46bb3
code equations as displayable content in code dependency graph
wenzelm
parents:
60203
diff
changeset
|
1040 |
|> map mk_entry |
60203
add72fdadd0b
filtering of reflexive dependencies avoids problems with state-of-the-art graph browser;
wenzelm
parents:
60097
diff
changeset
|
1041 |
|> Graph_Display.display_graph |
59210
8658b4290aed
clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents:
59208
diff
changeset
|
1042 |
end; |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1043 |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1044 |
local |
27103 | 1045 |
|
55757 | 1046 |
fun code_thms_cmd ctxt = code_thms ctxt o read_const_exprs_all ctxt; |
1047 |
fun code_deps_cmd ctxt = code_deps ctxt o read_const_exprs_all ctxt; |
|
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1048 |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1049 |
in |
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1050 |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1051 |
val _ = |
69593 | 1052 |
Outer_Syntax.command \<^command_keyword>\<open>code_thms\<close> |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46665
diff
changeset
|
1053 |
"print system of code equations for code" |
52801 | 1054 |
(Scan.repeat1 Parse.term >> (fn cs => |
60097
d20ca79d50e4
discontinued pointless warnings: commands are only defined inside a theory context;
wenzelm
parents:
60089
diff
changeset
|
1055 |
Toplevel.keep (fn st => code_thms_cmd (Toplevel.context_of st) cs))); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1056 |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1057 |
val _ = |
69593 | 1058 |
Outer_Syntax.command \<^command_keyword>\<open>code_deps\<close> |
46961
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
wenzelm
parents:
46665
diff
changeset
|
1059 |
"visualize dependencies of code equations for code" |
52801 | 1060 |
(Scan.repeat1 Parse.term >> (fn cs => |
59210
8658b4290aed
clarified Graph_Display.graph etc.: sort_graph determines order from structure (and names);
wenzelm
parents:
59208
diff
changeset
|
1061 |
Toplevel.keep (fn st => code_deps_cmd (Toplevel.context_of st) cs))); |
30942
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1062 |
|
1e246776f876
diagnostic commands now in code_thingol; tuned code of funny continuations
haftmann
parents:
30932
diff
changeset
|
1063 |
end; |
27103 | 1064 |
|
24219 | 1065 |
end; (*struct*) |
1066 |
||
1067 |
||
28054 | 1068 |
structure Basic_Code_Thingol: BASIC_CODE_THINGOL = Code_Thingol; |