author | kleing |
Mon, 21 Jun 2004 10:25:57 +0200 | |
changeset 14981 | e73f8140af78 |
parent 14868 | 617e4b19a2e5 |
child 15421 | fcf747c0b6b8 |
permissions | -rw-r--r-- |
548 | 1 |
(* Title: Pure/Syntax/syn_trans.ML |
2 |
ID: $Id$ |
|
3 |
Author: Tobias Nipkow and Markus Wenzel, TU Muenchen |
|
4 |
||
5 |
Syntax translation functions. |
|
6 |
*) |
|
7 |
||
8 |
signature SYN_TRANS0 = |
|
2698 | 9 |
sig |
548 | 10 |
val eta_contract: bool ref |
13762 | 11 |
val atomic_abs_tr': string * typ * term -> term * term |
548 | 12 |
val mk_binder_tr: string * string -> string * (term list -> term) |
13 |
val mk_binder_tr': string * string -> string * (term list -> term) |
|
14 |
val dependent_tr': string * string -> term list -> term |
|
8577 | 15 |
val antiquote_tr: string -> term -> term |
16 |
val quote_tr: string -> term -> term |
|
5084 | 17 |
val quote_antiquote_tr: string -> string -> string -> string * (term list -> term) |
8577 | 18 |
val antiquote_tr': string -> term -> term |
19 |
val quote_tr': string -> term -> term |
|
5084 | 20 |
val quote_antiquote_tr': string -> string -> string -> string * (term list -> term) |
2698 | 21 |
val mark_bound: string -> term |
22 |
val mark_boundT: string * typ -> term |
|
23 |
val variant_abs': string * typ * term -> string * term |
|
24 |
end; |
|
548 | 25 |
|
26 |
signature SYN_TRANS1 = |
|
2698 | 27 |
sig |
548 | 28 |
include SYN_TRANS0 |
14647 | 29 |
val non_typed_tr': (term list -> term) -> bool -> typ -> term list -> term |
30 |
val non_typed_tr'': ('a -> term list -> term) -> 'a -> bool -> typ -> term list -> term |
|
1511 | 31 |
val constrainAbsC: string |
32 |
val pure_trfuns: |
|
33 |
(string * (Ast.ast list -> Ast.ast)) list * |
|
548 | 34 |
(string * (term list -> term)) list * |
35 |
(string * (term list -> term)) list * |
|
1511 | 36 |
(string * (Ast.ast list -> Ast.ast)) list |
4148 | 37 |
val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list |
14697 | 38 |
val struct_trfuns: string list -> |
39 |
(string * (Ast.ast list -> Ast.ast)) list * |
|
40 |
(string * (term list -> term)) list * |
|
41 |
(string * (bool -> typ -> term list -> term)) list * |
|
42 |
(string * (Ast.ast list -> Ast.ast)) list |
|
2698 | 43 |
end; |
548 | 44 |
|
45 |
signature SYN_TRANS = |
|
2698 | 46 |
sig |
548 | 47 |
include SYN_TRANS1 |
1511 | 48 |
val abs_tr': term -> term |
4148 | 49 |
val prop_tr': term -> term |
1511 | 50 |
val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast |
51 |
val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast |
|
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
52 |
val pts_to_asts: (string -> (Ast.ast list -> Ast.ast) option) -> Parser.parsetree list -> Ast.ast list |
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
53 |
val asts_to_terms: (string -> (term list -> term) option) -> Ast.ast list -> term list |
2698 | 54 |
end; |
548 | 55 |
|
2698 | 56 |
structure SynTrans: SYN_TRANS = |
548 | 57 |
struct |
2698 | 58 |
|
59 |
||
548 | 60 |
(** parse (ast) translations **) |
61 |
||
11491 | 62 |
(* constify *) |
63 |
||
64 |
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c |
|
65 |
| constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts); |
|
66 |
||
67 |
||
548 | 68 |
(* application *) |
69 |
||
5690 | 70 |
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args) |
71 |
| appl_ast_tr asts = raise Ast.AST ("appl_ast_tr", asts); |
|
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
639
diff
changeset
|
72 |
|
5690 | 73 |
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args) |
74 |
| applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts); |
|
548 | 75 |
|
76 |
||
77 |
(* abstraction *) |
|
78 |
||
5690 | 79 |
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant SynExt.constrainC, x, ty] |
80 |
| idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts); |
|
548 | 81 |
|
3691
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents:
2698
diff
changeset
|
82 |
fun lambda_ast_tr (*"_lambda"*) [pats, body] = |
5690 | 83 |
Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body) |
84 |
| lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts); |
|
548 | 85 |
|
86 |
val constrainAbsC = "_constrainAbs"; |
|
87 |
||
5690 | 88 |
fun abs_tr (*"_abs"*) [Free (x, T), body] = Term.absfree (x, T, body) |
548 | 89 |
| abs_tr (*"_abs"*) (ts as [Const (c, _) $ Free (x, T) $ tT, body]) = |
5690 | 90 |
if c = SynExt.constrainC |
91 |
then Lexicon.const constrainAbsC $ Term.absfree (x, T, body) $ tT |
|
3777 | 92 |
else raise TERM ("abs_tr", ts) |
93 |
| abs_tr (*"_abs"*) ts = raise TERM ("abs_tr", ts); |
|
548 | 94 |
|
95 |
||
96 |
(* nondependent abstraction *) |
|
97 |
||
5690 | 98 |
fun k_tr (*"_K"*) [t] = Abs ("uu", dummyT, Term.incr_boundvars 1 t) |
3777 | 99 |
| k_tr (*"_K"*) ts = raise TERM ("k_tr", ts); |
548 | 100 |
|
101 |
||
102 |
(* binder *) |
|
103 |
||
104 |
fun mk_binder_tr (sy, name) = |
|
105 |
let |
|
5690 | 106 |
fun tr (Free (x, T), t) = Lexicon.const name $ Term.absfree (x, T, t) |
548 | 107 |
| tr (Const ("_idts", _) $ idt $ idts, t) = tr (idt, tr (idts, t)) |
108 |
| tr (t1 as Const (c, _) $ Free (x, T) $ tT, t) = |
|
5690 | 109 |
if c = SynExt.constrainC then |
110 |
Lexicon.const name $ (Lexicon.const constrainAbsC $ Term.absfree (x, T, t) $ tT) |
|
3777 | 111 |
else raise TERM ("binder_tr", [t1, t]) |
112 |
| tr (t1, t2) = raise TERM ("binder_tr", [t1, t2]); |
|
548 | 113 |
|
114 |
fun binder_tr (*sy*) [idts, body] = tr (idts, body) |
|
3777 | 115 |
| binder_tr (*sy*) ts = raise TERM ("binder_tr", ts); |
548 | 116 |
in |
117 |
(sy, binder_tr) |
|
118 |
end; |
|
119 |
||
120 |
||
121 |
(* meta propositions *) |
|
122 |
||
5690 | 123 |
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const SynExt.constrainC $ t $ Lexicon.const "prop" |
3777 | 124 |
| aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts); |
548 | 125 |
|
126 |
fun ofclass_tr (*"_ofclass"*) [ty, cls] = |
|
5690 | 127 |
cls $ (Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $ |
128 |
(Lexicon.const "itself" $ ty)) |
|
3777 | 129 |
| ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts); |
548 | 130 |
|
131 |
||
132 |
(* meta implication *) |
|
133 |
||
134 |
fun bigimpl_ast_tr (*"_bigimpl"*) [asms, concl] = |
|
5690 | 135 |
Ast.fold_ast_p "==>" (Ast.unfold_ast "_asms" asms, concl) |
136 |
| bigimpl_ast_tr (*"_bigimpl"*) asts = raise Ast.AST ("bigimpl_ast_tr", asts); |
|
548 | 137 |
|
138 |
||
4148 | 139 |
(* type reflection *) |
140 |
||
141 |
fun type_tr (*"_TYPE"*) [ty] = |
|
5690 | 142 |
Lexicon.const SynExt.constrainC $ Lexicon.const "TYPE" $ (Lexicon.const "itself" $ ty) |
4148 | 143 |
| type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts); |
144 |
||
548 | 145 |
|
6761 | 146 |
(* dddot *) |
147 |
||
8595 | 148 |
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var SynExt.dddot_indexname, ts); |
6761 | 149 |
|
150 |
||
5084 | 151 |
(* quote / antiquote *) |
152 |
||
8577 | 153 |
fun antiquote_tr name = |
154 |
let |
|
155 |
fun tr i ((t as Const (c, _)) $ u) = |
|
156 |
if c = name then tr i u $ Bound i |
|
157 |
else tr i t $ tr i u |
|
158 |
| tr i (t $ u) = tr i t $ tr i u |
|
159 |
| tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t) |
|
160 |
| tr _ a = a; |
|
161 |
in tr 0 end; |
|
162 |
||
163 |
fun quote_tr name t = Abs ("s", dummyT, antiquote_tr name (Term.incr_boundvars 1 t)); |
|
164 |
||
5084 | 165 |
fun quote_antiquote_tr quoteN antiquoteN name = |
166 |
let |
|
8577 | 167 |
fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t |
168 |
| tr ts = raise TERM ("quote_tr", ts); |
|
169 |
in (quoteN, tr) end; |
|
5084 | 170 |
|
171 |
||
14697 | 172 |
(* indexed syntax *) |
173 |
||
174 |
fun struct_ast_tr (*"_struct"*) [Ast.Appl [Ast.Constant "_index", ast]] = ast |
|
175 |
| struct_ast_tr (*"_struct"*) asts = Ast.mk_appl (Ast.Constant "_struct") asts; |
|
176 |
||
177 |
fun index_ast_tr ast = |
|
178 |
Ast.mk_appl (Ast.Constant "_index") [Ast.mk_appl (Ast.Constant "_struct") [ast]]; |
|
179 |
||
180 |
fun indexdefault_ast_tr (*"_indexdefault"*) [] = |
|
181 |
index_ast_tr (Ast.Constant "_indexdefault") |
|
182 |
| indexdefault_ast_tr (*"_indexdefault"*) asts = |
|
183 |
raise Ast.AST ("indexdefault_ast_tr", asts); |
|
184 |
||
185 |
fun indexnum_ast_tr (*"_indexnum"*) [ast] = |
|
186 |
index_ast_tr (Ast.mk_appl (Ast.Constant "_indexnum") [ast]) |
|
187 |
| indexnum_ast_tr (*"_indexnum"*) asts = raise Ast.AST ("indexnum_ast_tr", asts); |
|
12122 | 188 |
|
14697 | 189 |
fun indexvar_ast_tr (*"_indexvar"*) [] = |
190 |
Ast.mk_appl (Ast.Constant "_index") [Ast.Variable "some_index"] |
|
191 |
| indexvar_ast_tr (*"_indexvar"*) asts = raise Ast.AST ("indexvar_ast_tr", asts); |
|
192 |
||
193 |
fun index_tr (*"_index"*) [t] = t |
|
194 |
| index_tr (*"_index"*) ts = raise TERM ("index_tr", ts); |
|
195 |
||
196 |
||
197 |
(* implicit structures *) |
|
198 |
||
199 |
fun the_struct structs i = |
|
200 |
if 1 <= i andalso i <= length structs then Library.nth_elem (i - 1, structs) |
|
201 |
else raise ERROR_MESSAGE ("Illegal reference to implicit structure #" ^ string_of_int i); |
|
202 |
||
203 |
fun struct_tr structs (*"_struct"*) [Const ("_indexdefault", _)] = |
|
204 |
Lexicon.free (the_struct structs 1) |
|
205 |
| struct_tr structs (*"_struct"*) [t as (Const ("_indexnum", _) $ Const (s, _))] = |
|
206 |
Lexicon.free (the_struct structs |
|
207 |
(case Lexicon.read_nat s of Some n => n | None => raise TERM ("struct_tr", [t]))) |
|
208 |
| struct_tr _ (*"_struct"*) ts = raise TERM ("struct_tr", ts); |
|
12122 | 209 |
|
210 |
||
5084 | 211 |
|
548 | 212 |
(** print (ast) translations **) |
213 |
||
14647 | 214 |
(* types *) |
215 |
||
216 |
fun non_typed_tr' f _ _ ts = f ts; |
|
217 |
fun non_typed_tr'' f x _ _ ts = f x ts; |
|
218 |
||
219 |
||
548 | 220 |
(* application *) |
221 |
||
5690 | 222 |
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f]) |
223 |
| appl_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_appl", f, Ast.fold_ast "_args" args]; |
|
548 | 224 |
|
5690 | 225 |
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f]) |
226 |
| applC_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_applC", f, Ast.fold_ast "_cargs" args]; |
|
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
639
diff
changeset
|
227 |
|
548 | 228 |
|
229 |
(* abstraction *) |
|
230 |
||
5690 | 231 |
fun mark_boundT x_T = Lexicon.const "_bound" $ Free x_T; |
2698 | 232 |
fun mark_bound x = mark_boundT (x, dummyT); |
233 |
||
548 | 234 |
fun strip_abss vars_of body_of tm = |
235 |
let |
|
236 |
val vars = vars_of tm; |
|
237 |
val body = body_of tm; |
|
238 |
val rev_new_vars = rename_wrt_term body vars; |
|
239 |
in |
|
2698 | 240 |
(map mark_boundT (rev rev_new_vars), |
241 |
subst_bounds (map (mark_bound o #1) rev_new_vars, body)) |
|
548 | 242 |
end; |
243 |
||
3928
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
wenzelm
parents:
3777
diff
changeset
|
244 |
|
548 | 245 |
(*do (partial) eta-contraction before printing*) |
246 |
||
1326 | 247 |
val eta_contract = ref true; |
548 | 248 |
|
249 |
fun eta_contr tm = |
|
250 |
let |
|
3928
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
wenzelm
parents:
3777
diff
changeset
|
251 |
fun is_aprop (Const ("_aprop", _)) = true |
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
wenzelm
parents:
3777
diff
changeset
|
252 |
| is_aprop _ = false; |
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
wenzelm
parents:
3777
diff
changeset
|
253 |
|
548 | 254 |
fun eta_abs (Abs (a, T, t)) = |
255 |
(case eta_abs t of |
|
256 |
t' as f $ u => |
|
257 |
(case eta_abs u of |
|
258 |
Bound 0 => |
|
5084 | 259 |
if Term.loose_bvar1 (f, 0) orelse is_aprop f then Abs (a, T, t') |
3928
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
wenzelm
parents:
3777
diff
changeset
|
260 |
else incr_boundvars ~1 f |
548 | 261 |
| _ => Abs (a, T, t')) |
262 |
| t' => Abs (a, T, t')) |
|
263 |
| eta_abs t = t; |
|
264 |
in |
|
265 |
if ! eta_contract then eta_abs tm else tm |
|
266 |
end; |
|
267 |
||
268 |
||
269 |
fun abs_tr' tm = |
|
5690 | 270 |
foldr (fn (x, t) => Lexicon.const "_abs" $ x $ t) |
548 | 271 |
(strip_abss strip_abs_vars strip_abs_body (eta_contr tm)); |
272 |
||
14697 | 273 |
fun atomic_abs_tr' (x, T, t) = |
274 |
let val [xT] = rename_wrt_term t [(x, T)] |
|
275 |
in (mark_boundT xT, subst_bound (mark_bound (fst xT), t)) end; |
|
13762 | 276 |
|
548 | 277 |
fun abs_ast_tr' (*"_abs"*) asts = |
5690 | 278 |
(case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of |
279 |
([], _) => raise Ast.AST ("abs_ast_tr'", asts) |
|
280 |
| (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]); |
|
548 | 281 |
|
282 |
||
283 |
(* binder *) |
|
284 |
||
285 |
fun mk_binder_tr' (name, sy) = |
|
286 |
let |
|
287 |
fun mk_idts [] = raise Match (*abort translation*) |
|
288 |
| mk_idts [idt] = idt |
|
5690 | 289 |
| mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts; |
548 | 290 |
|
291 |
fun tr' t = |
|
292 |
let |
|
293 |
val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t; |
|
5690 | 294 |
in Lexicon.const sy $ mk_idts xs $ bd end; |
548 | 295 |
|
5690 | 296 |
fun binder_tr' (*name*) (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts) |
548 | 297 |
| binder_tr' (*name*) [] = raise Match; |
298 |
in |
|
299 |
(name, binder_tr') |
|
300 |
end; |
|
301 |
||
302 |
||
3691
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents:
2698
diff
changeset
|
303 |
(* idtyp constraints *) |
548 | 304 |
|
5690 | 305 |
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant c, x, ty], xs] = |
306 |
if c = SynExt.constrainC then |
|
307 |
Ast.Appl [ Ast.Constant a, Ast.Appl [Ast.Constant "_idtyp", x, ty], xs] |
|
548 | 308 |
else raise Match |
3691
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents:
2698
diff
changeset
|
309 |
| idtyp_ast_tr' _ _ = raise Match; |
548 | 310 |
|
311 |
||
312 |
(* meta propositions *) |
|
313 |
||
4148 | 314 |
fun prop_tr' tm = |
548 | 315 |
let |
5690 | 316 |
fun aprop t = Lexicon.const "_aprop" $ t; |
548 | 317 |
|
2698 | 318 |
fun is_prop Ts t = |
319 |
fastype_of1 (Ts, t) = propT handle TERM _ => false; |
|
548 | 320 |
|
321 |
fun tr' _ (t as Const _) = t |
|
2698 | 322 |
| tr' _ (t as Free (x, T)) = |
5690 | 323 |
if T = propT then aprop (Lexicon.free x) else t |
2698 | 324 |
| tr' _ (t as Var (xi, T)) = |
5690 | 325 |
if T = propT then aprop (Lexicon.var xi) else t |
2698 | 326 |
| tr' Ts (t as Bound _) = |
327 |
if is_prop Ts t then aprop t else t |
|
328 |
| tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t) |
|
329 |
| tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) = |
|
4148 | 330 |
if is_prop Ts t then Const ("_mk_ofclass", T) $ tr' Ts t1 |
2698 | 331 |
else tr' Ts t1 $ tr' Ts t2 |
332 |
| tr' Ts (t as t1 $ t2) = |
|
5690 | 333 |
(if is_Const (Term.head_of t) orelse not (is_prop Ts t) |
2698 | 334 |
then I else aprop) (tr' Ts t1 $ tr' Ts t2); |
548 | 335 |
in |
336 |
tr' [] tm |
|
337 |
end; |
|
338 |
||
4148 | 339 |
fun mk_ofclass_tr' show_sorts (*"_mk_ofclass"*) T [t] = |
5690 | 340 |
Lexicon.const "_ofclass" $ TypeExt.term_of_typ show_sorts T $ t |
4148 | 341 |
| mk_ofclass_tr' _ (*"_mk_ofclass"*) T ts = raise TYPE ("mk_ofclass_tr'", [T], ts); |
2698 | 342 |
|
343 |
||
548 | 344 |
(* meta implication *) |
345 |
||
346 |
fun impl_ast_tr' (*"==>"*) asts = |
|
10572 | 347 |
if TypeExt.no_brackets () then raise Match |
348 |
else |
|
349 |
(case Ast.unfold_ast_p "==>" (Ast.Appl (Ast.Constant "==>" :: asts)) of |
|
350 |
(asms as _ :: _ :: _, concl) |
|
351 |
=> Ast.Appl [Ast.Constant "_bigimpl", Ast.fold_ast "_asms" asms, concl] |
|
352 |
| _ => raise Match); |
|
548 | 353 |
|
354 |
||
12150 | 355 |
(* meta conjunction *) |
356 |
||
357 |
fun meta_conjunction_tr' (*"all"*) |
|
358 |
[Abs (_, _, Const ("==>", _) $ |
|
359 |
(Const ("==>", _) $ A $ (Const ("==>", _) $ B $ (Const ("_aprop", _) $ Bound 0))) $ |
|
360 |
(Const ("_aprop", _) $ Bound 0))] = |
|
361 |
if 0 mem_int Term.loose_bnos A orelse 0 mem_int Term.loose_bnos B then raise Match |
|
362 |
else Lexicon.const "_meta_conjunction" $ A $ B |
|
363 |
| meta_conjunction_tr' (*"all"*) ts = raise Match; |
|
364 |
||
365 |
||
4148 | 366 |
(* type reflection *) |
367 |
||
368 |
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts = |
|
5690 | 369 |
Term.list_comb (Lexicon.const "_TYPE" $ TypeExt.term_of_typ show_sorts T, ts) |
4148 | 370 |
| type_tr' _ _ _ = raise Match; |
371 |
||
372 |
||
548 | 373 |
(* dependent / nondependent quantifiers *) |
374 |
||
2698 | 375 |
fun variant_abs' (x, T, B) = |
376 |
let val x' = variant (add_term_names (B, [])) x in |
|
377 |
(x', subst_bound (mark_boundT (x', T), B)) |
|
378 |
end; |
|
379 |
||
548 | 380 |
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) = |
5084 | 381 |
if Term.loose_bvar1 (B, 0) then |
2698 | 382 |
let val (x', B') = variant_abs' (x, dummyT, B); |
5690 | 383 |
in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end |
384 |
else Term.list_comb (Lexicon.const r $ A $ B, ts) |
|
548 | 385 |
| dependent_tr' _ _ = raise Match; |
386 |
||
387 |
||
5084 | 388 |
(* quote / antiquote *) |
389 |
||
8577 | 390 |
fun antiquote_tr' name = |
391 |
let |
|
392 |
fun tr' i (t $ u) = |
|
393 |
if u = Bound i then Lexicon.const name $ tr' i t |
|
394 |
else tr' i t $ tr' i u |
|
395 |
| tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t) |
|
396 |
| tr' i a = if a = Bound i then raise Match else a; |
|
397 |
in tr' 0 end; |
|
398 |
||
399 |
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t) |
|
400 |
| quote_tr' _ _ = raise Match; |
|
401 |
||
5084 | 402 |
fun quote_antiquote_tr' quoteN antiquoteN name = |
403 |
let |
|
8577 | 404 |
fun tr' (t :: ts) = Term.list_comb (Lexicon.const quoteN $ quote_tr' antiquoteN t, ts) |
405 |
| tr' _ = raise Match; |
|
406 |
in (name, tr') end; |
|
5084 | 407 |
|
408 |
||
14697 | 409 |
(* indexed syntax *) |
548 | 410 |
|
14697 | 411 |
fun index_ast_tr' (*"_index"*) [Ast.Appl [Ast.Constant "_struct", ast]] = ast |
412 |
| index_ast_tr' _ = raise Match; |
|
413 |
||
414 |
||
415 |
(* implicit structures *) |
|
416 |
||
417 |
fun the_struct' structs s = |
|
418 |
[(case Lexicon.read_nat s of |
|
419 |
Some i => Ast.Variable (the_struct structs i handle ERROR_MESSAGE _ => raise Match) |
|
420 |
| None => raise Match)] |> Ast.mk_appl (Ast.Constant "_free"); |
|
421 |
; |
|
422 |
||
423 |
fun struct_ast_tr' structs (*"_struct"*) [Ast.Constant "_indexdefault"] = |
|
424 |
the_struct' structs "1" |
|
425 |
| struct_ast_tr' structs (*"_struct"*) [Ast.Appl [Ast.Constant "_indexnum", Ast.Constant s]] = |
|
426 |
the_struct' structs s |
|
427 |
| struct_ast_tr' _ _ = raise Match; |
|
428 |
||
429 |
||
430 |
||
431 |
(** Pure translations **) |
|
548 | 432 |
|
433 |
val pure_trfuns = |
|
11491 | 434 |
([("_constify", constify_ast_tr), ("_appl", appl_ast_tr), ("_applC", applC_ast_tr), |
12122 | 435 |
("_lambda", lambda_ast_tr), ("_idtyp", idtyp_ast_tr), ("_bigimpl", bigimpl_ast_tr), |
14697 | 436 |
("_indexdefault", indexdefault_ast_tr), ("_indexnum", indexnum_ast_tr), |
437 |
("_indexvar", indexvar_ast_tr), ("_struct", struct_ast_tr)], |
|
922
196ca0973a6d
added CPure (curried functions) and ProtoPure (ancestor of Pure and CPure)
clasohm
parents:
639
diff
changeset
|
438 |
[("_abs", abs_tr), ("_aprop", aprop_tr), ("_ofclass", ofclass_tr), |
14697 | 439 |
("_TYPE", type_tr), ("_DDDOT", dddot_tr), ("_K", k_tr), |
440 |
("_index", index_tr)], |
|
12150 | 441 |
[("all", meta_conjunction_tr')], |
3691
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents:
2698
diff
changeset
|
442 |
[("_abs", abs_ast_tr'), ("_idts", idtyp_ast_tr' "_idts"), |
14697 | 443 |
("_pttrns", idtyp_ast_tr' "_pttrns"), ("==>", impl_ast_tr'), |
444 |
("_index", index_ast_tr')]); |
|
548 | 445 |
|
2698 | 446 |
val pure_trfunsT = |
4148 | 447 |
[("_mk_ofclass", mk_ofclass_tr'), ("TYPE", type_tr')]; |
2698 | 448 |
|
14697 | 449 |
fun struct_trfuns structs = |
450 |
([], [("_struct", struct_tr structs)], [], [("_struct", struct_ast_tr' structs)]); |
|
451 |
||
548 | 452 |
|
453 |
||
14868 | 454 |
(** pts_to_asts **) |
548 | 455 |
|
14868 | 456 |
exception TRANSLATION of string * exn; |
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
457 |
|
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
458 |
fun pts_to_asts trf pts = |
548 | 459 |
let |
460 |
fun trans a args = |
|
461 |
(case trf a of |
|
5690 | 462 |
None => Ast.mk_appl (Ast.Constant a) args |
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
463 |
| Some f => f args handle exn => raise TRANSLATION (a, exn)); |
548 | 464 |
|
987 | 465 |
(*translate pt bottom-up*) |
5690 | 466 |
fun ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts) |
467 |
| ast_of (Parser.Tip tok) = Ast.Variable (Lexicon.str_of_token tok); |
|
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
468 |
|
14868 | 469 |
val exn_results = map (capture ast_of) pts; |
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
470 |
val exns = mapfilter get_exn exn_results; |
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
471 |
val results = mapfilter get_result exn_results |
548 | 472 |
in |
14868 | 473 |
(case (results, exns) of |
474 |
([], TRANSLATION (a, exn) :: _) => |
|
475 |
(writeln ("Error in parse ast translation for " ^ quote a); raise exn) |
|
476 |
| _ => results) |
|
548 | 477 |
end; |
478 |
||
479 |
||
480 |
||
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
481 |
(** asts_to_terms **) |
548 | 482 |
|
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
483 |
fun asts_to_terms trf asts = |
548 | 484 |
let |
485 |
fun trans a args = |
|
486 |
(case trf a of |
|
5690 | 487 |
None => Term.list_comb (Lexicon.const a, args) |
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
488 |
| Some f => f args handle exn => raise TRANSLATION (a, exn)); |
548 | 489 |
|
5690 | 490 |
fun term_of (Ast.Constant a) = trans a [] |
491 |
| term_of (Ast.Variable x) = Lexicon.read_var x |
|
492 |
| term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) = |
|
548 | 493 |
trans a (map term_of asts) |
5690 | 494 |
| term_of (Ast.Appl (ast :: (asts as _ :: _))) = |
495 |
Term.list_comb (term_of ast, map term_of asts) |
|
496 |
| term_of (ast as Ast.Appl _) = raise Ast.AST ("ast_to_term: malformed ast", [ast]); |
|
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
497 |
|
14868 | 498 |
val exn_results = map (capture term_of) asts; |
14798
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
499 |
val exns = mapfilter get_exn exn_results; |
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents:
14697
diff
changeset
|
500 |
val results = mapfilter get_result exn_results |
548 | 501 |
in |
14868 | 502 |
(case (results, exns) of |
503 |
([], TRANSLATION (a, exn) :: _) => |
|
504 |
(writeln ("Error in parse translation for " ^ quote a); raise exn) |
|
505 |
| _ => results) |
|
548 | 506 |
end; |
507 |
||
508 |
end; |