| author | krauss | 
| Tue, 17 Jul 2007 14:38:00 +0200 | |
| changeset 23829 | 41014a878a7d | 
| parent 23824 | 8ad7131dbfcf | 
| child 23937 | 66e1f24d655d | 
| 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  | 
|
| 18958 | 23  | 
val bound_vars: (string * typ) list -> term -> term  | 
| 20202 | 24  | 
val variant_abs: string * typ * term -> string * term  | 
| 2698 | 25  | 
val variant_abs': string * typ * term -> string * term  | 
26  | 
end;  | 
|
| 548 | 27  | 
|
28  | 
signature SYN_TRANS1 =  | 
|
| 2698 | 29  | 
sig  | 
| 548 | 30  | 
include SYN_TRANS0  | 
| 14647 | 31  | 
val non_typed_tr': (term list -> term) -> bool -> typ -> term list -> term  | 
32  | 
  val non_typed_tr'': ('a -> term list -> term) -> 'a -> bool -> typ -> term list -> term
 | 
|
| 1511 | 33  | 
val constrainAbsC: string  | 
34  | 
val pure_trfuns:  | 
|
35  | 
(string * (Ast.ast list -> Ast.ast)) list *  | 
|
| 548 | 36  | 
(string * (term list -> term)) list *  | 
37  | 
(string * (term list -> term)) list *  | 
|
| 1511 | 38  | 
(string * (Ast.ast list -> Ast.ast)) list  | 
| 4148 | 39  | 
val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list  | 
| 14697 | 40  | 
val struct_trfuns: string list ->  | 
41  | 
(string * (Ast.ast list -> Ast.ast)) list *  | 
|
42  | 
(string * (term list -> term)) list *  | 
|
43  | 
(string * (bool -> typ -> term list -> term)) list *  | 
|
44  | 
(string * (Ast.ast list -> Ast.ast)) list  | 
|
| 2698 | 45  | 
end;  | 
| 548 | 46  | 
|
47  | 
signature SYN_TRANS =  | 
|
| 2698 | 48  | 
sig  | 
| 548 | 49  | 
include SYN_TRANS1  | 
| 1511 | 50  | 
val abs_tr': term -> term  | 
| 4148 | 51  | 
val prop_tr': term -> term  | 
| 1511 | 52  | 
val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast  | 
53  | 
val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast  | 
|
| 21773 | 54  | 
val pts_to_asts: Proof.context ->  | 
55  | 
(string -> (Proof.context -> Ast.ast list -> Ast.ast) option) ->  | 
|
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
56  | 
Parser.parsetree list -> Ast.ast list  | 
| 21773 | 57  | 
val asts_to_terms: Proof.context ->  | 
58  | 
(string -> (Proof.context -> term list -> term) option) -> Ast.ast list -> term list  | 
|
| 2698 | 59  | 
end;  | 
| 548 | 60  | 
|
| 2698 | 61  | 
structure SynTrans: SYN_TRANS =  | 
| 548 | 62  | 
struct  | 
| 2698 | 63  | 
|
64  | 
||
| 548 | 65  | 
(** parse (ast) translations **)  | 
66  | 
||
| 11491 | 67  | 
(* constify *)  | 
68  | 
||
69  | 
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c  | 
|
70  | 
  | constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts);
 | 
|
71  | 
||
72  | 
||
| 548 | 73  | 
(* application *)  | 
74  | 
||
| 5690 | 75  | 
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args)  | 
76  | 
  | 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
 | 
77  | 
|
| 5690 | 78  | 
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args)  | 
79  | 
  | applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts);
 | 
|
| 548 | 80  | 
|
81  | 
||
82  | 
(* abstraction *)  | 
|
83  | 
||
| 17788 | 84  | 
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant "_constrain", x, ty]  | 
| 5690 | 85  | 
  | idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
 | 
| 548 | 86  | 
|
| 17788 | 87  | 
fun idtypdummy_ast_tr (*"_idtypdummy"*) [ty] =  | 
88  | 
Ast.Appl [Ast.Constant "_constrain", Ast.Constant "_idtdummy", ty]  | 
|
89  | 
  | idtypdummy_ast_tr (*"_idtypdummy"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
 | 
|
90  | 
||
| 
3691
 
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
 
wenzelm 
parents: 
2698 
diff
changeset
 | 
91  | 
fun lambda_ast_tr (*"_lambda"*) [pats, body] =  | 
| 5690 | 92  | 
Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body)  | 
93  | 
  | lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts);
 | 
|
| 548 | 94  | 
|
95  | 
val constrainAbsC = "_constrainAbs";  | 
|
96  | 
||
| 21773 | 97  | 
fun absfree_proper (x, T, t) =  | 
98  | 
  if can Name.dest_internal x then error ("Illegal internal variable in abstraction: " ^ quote x)
 | 
|
99  | 
else Term.absfree (x, T, t);  | 
|
100  | 
||
101  | 
fun abs_tr (*"_abs"*) [Free (x, T), t] = absfree_proper (x, T, t)  | 
|
| 17788 | 102  | 
  | abs_tr (*"_abs"*) [Const ("_idtdummy", T), t] = Term.absdummy (T, t)
 | 
103  | 
  | abs_tr (*"_abs"*) [Const ("_constrain", _) $ Free (x, T) $ tT, t] =
 | 
|
| 21773 | 104  | 
Lexicon.const constrainAbsC $ absfree_proper (x, T, t) $ tT  | 
| 17788 | 105  | 
  | abs_tr (*"_abs"*) [Const ("_constrain", _) $ Const ("_idtdummy", T) $ tT, t] =
 | 
106  | 
Lexicon.const constrainAbsC $ Term.absdummy (T, t) $ tT  | 
|
| 3777 | 107  | 
  | abs_tr (*"_abs"*) ts = raise TERM ("abs_tr", ts);
 | 
| 548 | 108  | 
|
109  | 
||
110  | 
(* binder *)  | 
|
111  | 
||
| 21535 | 112  | 
fun mk_binder_tr (syn, name) =  | 
| 548 | 113  | 
let  | 
| 21773 | 114  | 
fun tr (Free (x, T), t) = Lexicon.const name $ absfree_proper (x, T, t)  | 
| 17788 | 115  | 
      | tr (Const ("_idtdummy", T), t) = Lexicon.const name $ Term.absdummy (T, t)
 | 
116  | 
      | tr (Const ("_constrain", _) $ Free (x, T) $ tT, t) =
 | 
|
| 21773 | 117  | 
Lexicon.const name $ (Lexicon.const constrainAbsC $ absfree_proper (x, T, t) $ tT)  | 
| 17788 | 118  | 
      | tr (Const ("_constrain", _) $ Const ("_idtdummy", T) $ tT, t) =
 | 
| 
18342
 
1b7109c10b7b
asts_to_terms: builtin free_fixed translation makes local binders work properly;
 
wenzelm 
parents: 
18212 
diff
changeset
 | 
119  | 
Lexicon.const name $ (Lexicon.const constrainAbsC $ Term.absdummy (T, t) $ tT)  | 
| 548 | 120  | 
      | tr (Const ("_idts", _) $ idt $ idts, t) = tr (idt, tr (idts, t))
 | 
| 3777 | 121  | 
      | tr (t1, t2) = raise TERM ("binder_tr", [t1, t2]);
 | 
| 548 | 122  | 
|
| 21535 | 123  | 
fun binder_tr [idts, body] = tr (idts, body)  | 
124  | 
      | binder_tr ts = raise TERM ("binder_tr", ts);
 | 
|
125  | 
in (syn, binder_tr) end;  | 
|
| 548 | 126  | 
|
127  | 
||
128  | 
(* meta propositions *)  | 
|
129  | 
||
| 17788 | 130  | 
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const "_constrain" $ t $ Lexicon.const "prop"  | 
| 3777 | 131  | 
  | aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts);
 | 
| 548 | 132  | 
|
133  | 
fun ofclass_tr (*"_ofclass"*) [ty, cls] =  | 
|
| 17788 | 134  | 
cls $ (Lexicon.const "_constrain" $ Lexicon.const "TYPE" $  | 
| 5690 | 135  | 
(Lexicon.const "itself" $ ty))  | 
| 3777 | 136  | 
  | ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts);
 | 
| 548 | 137  | 
|
138  | 
||
139  | 
(* meta implication *)  | 
|
140  | 
||
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
141  | 
fun bigimpl_ast_tr (*"_bigimpl"*) (asts as [asms, concl]) =  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
142  | 
let val prems =  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
143  | 
(case Ast.unfold_ast_p "_asms" asms of  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
144  | 
(asms', Ast.Appl [Ast.Constant "_asm", asm']) => asms' @ [asm']  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
145  | 
        | _ => raise Ast.AST ("bigimpl_ast_tr", asts))
 | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
146  | 
in Ast.fold_ast_p "==>" (prems, concl) end  | 
| 
15421
 
fcf747c0b6b8
Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
 
schirmer 
parents: 
14981 
diff
changeset
 | 
147  | 
  | bigimpl_ast_tr (*"_bigimpl"*) asts = raise Ast.AST ("bigimpl_ast_tr", asts);
 | 
| 
 
fcf747c0b6b8
Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
 
schirmer 
parents: 
14981 
diff
changeset
 | 
148  | 
|
| 548 | 149  | 
|
| 
23824
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
150  | 
(* meta conjunction *)  | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
151  | 
|
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
152  | 
fun conjunction_tr [t, u] = Lexicon.const "ProtoPure.conjunction" $ t $ u  | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
153  | 
  | conjunction_tr ts = raise TERM ("conjunction_tr", ts);
 | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
154  | 
|
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
155  | 
|
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
156  | 
(* type/term reflection *)  | 
| 4148 | 157  | 
|
158  | 
fun type_tr (*"_TYPE"*) [ty] =  | 
|
| 17788 | 159  | 
Lexicon.const "_constrain" $ Lexicon.const "TYPE" $ (Lexicon.const "itself" $ ty)  | 
| 4148 | 160  | 
  | type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts);
 | 
161  | 
||
| 
23824
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
162  | 
fun term_tr [t] = Lexicon.const "ProtoPure.term" $ t  | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
163  | 
  | term_tr ts = raise TERM ("term_tr", ts);
 | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
164  | 
|
| 548 | 165  | 
|
| 6761 | 166  | 
(* dddot *)  | 
167  | 
||
| 8595 | 168  | 
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var SynExt.dddot_indexname, ts);  | 
| 6761 | 169  | 
|
170  | 
||
| 5084 | 171  | 
(* quote / antiquote *)  | 
172  | 
||
| 8577 | 173  | 
fun antiquote_tr name =  | 
174  | 
let  | 
|
175  | 
fun tr i ((t as Const (c, _)) $ u) =  | 
|
176  | 
if c = name then tr i u $ Bound i  | 
|
177  | 
else tr i t $ tr i u  | 
|
178  | 
| tr i (t $ u) = tr i t $ tr i u  | 
|
179  | 
| tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t)  | 
|
180  | 
| tr _ a = a;  | 
|
181  | 
in tr 0 end;  | 
|
182  | 
||
183  | 
fun quote_tr name t = Abs ("s", dummyT, antiquote_tr name (Term.incr_boundvars 1 t));
 | 
|
184  | 
||
| 5084 | 185  | 
fun quote_antiquote_tr quoteN antiquoteN name =  | 
186  | 
let  | 
|
| 8577 | 187  | 
fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t  | 
188  | 
      | tr ts = raise TERM ("quote_tr", ts);
 | 
|
189  | 
in (quoteN, tr) end;  | 
|
| 5084 | 190  | 
|
191  | 
||
| 14697 | 192  | 
(* indexed syntax *)  | 
193  | 
||
194  | 
fun struct_ast_tr (*"_struct"*) [Ast.Appl [Ast.Constant "_index", ast]] = ast  | 
|
195  | 
| struct_ast_tr (*"_struct"*) asts = Ast.mk_appl (Ast.Constant "_struct") asts;  | 
|
196  | 
||
197  | 
fun index_ast_tr ast =  | 
|
198  | 
Ast.mk_appl (Ast.Constant "_index") [Ast.mk_appl (Ast.Constant "_struct") [ast]];  | 
|
199  | 
||
200  | 
fun indexdefault_ast_tr (*"_indexdefault"*) [] =  | 
|
201  | 
index_ast_tr (Ast.Constant "_indexdefault")  | 
|
202  | 
| indexdefault_ast_tr (*"_indexdefault"*) asts =  | 
|
203  | 
      raise Ast.AST ("indexdefault_ast_tr", asts);
 | 
|
204  | 
||
205  | 
fun indexnum_ast_tr (*"_indexnum"*) [ast] =  | 
|
206  | 
index_ast_tr (Ast.mk_appl (Ast.Constant "_indexnum") [ast])  | 
|
207  | 
  | indexnum_ast_tr (*"_indexnum"*) asts = raise Ast.AST ("indexnum_ast_tr", asts);
 | 
|
| 12122 | 208  | 
|
| 14697 | 209  | 
fun indexvar_ast_tr (*"_indexvar"*) [] =  | 
210  | 
Ast.mk_appl (Ast.Constant "_index") [Ast.Variable "some_index"]  | 
|
211  | 
  | indexvar_ast_tr (*"_indexvar"*) asts = raise Ast.AST ("indexvar_ast_tr", asts);
 | 
|
212  | 
||
213  | 
fun index_tr (*"_index"*) [t] = t  | 
|
214  | 
  | index_tr (*"_index"*) ts = raise TERM ("index_tr", ts);
 | 
|
215  | 
||
216  | 
||
217  | 
(* implicit structures *)  | 
|
218  | 
||
219  | 
fun the_struct structs i =  | 
|
| 15570 | 220  | 
if 1 <= i andalso i <= length structs then List.nth (structs, i - 1)  | 
| 18678 | 221  | 
  else raise error ("Illegal reference to implicit structure #" ^ string_of_int i);
 | 
| 14697 | 222  | 
|
223  | 
fun struct_tr structs (*"_struct"*) [Const ("_indexdefault", _)] =
 | 
|
224  | 
Lexicon.free (the_struct structs 1)  | 
|
225  | 
  | struct_tr structs (*"_struct"*) [t as (Const ("_indexnum", _) $ Const (s, _))] =
 | 
|
226  | 
Lexicon.free (the_struct structs  | 
|
| 15531 | 227  | 
        (case Lexicon.read_nat s of SOME n => n | NONE => raise TERM ("struct_tr", [t])))
 | 
| 14697 | 228  | 
  | struct_tr _ (*"_struct"*) ts = raise TERM ("struct_tr", ts);
 | 
| 12122 | 229  | 
|
230  | 
||
| 5084 | 231  | 
|
| 548 | 232  | 
(** print (ast) translations **)  | 
233  | 
||
| 14647 | 234  | 
(* types *)  | 
235  | 
||
236  | 
fun non_typed_tr' f _ _ ts = f ts;  | 
|
237  | 
fun non_typed_tr'' f x _ _ ts = f x ts;  | 
|
238  | 
||
239  | 
||
| 548 | 240  | 
(* application *)  | 
241  | 
||
| 5690 | 242  | 
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f])
 | 
243  | 
| appl_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_appl", f, Ast.fold_ast "_args" args];  | 
|
| 548 | 244  | 
|
| 5690 | 245  | 
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f])
 | 
246  | 
| 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
 | 
247  | 
|
| 548 | 248  | 
|
249  | 
(* abstraction *)  | 
|
250  | 
||
| 19311 | 251  | 
fun mark_boundT (x, T) = Const ("_bound", T --> T) $ Free (x, T);
 | 
| 2698 | 252  | 
fun mark_bound x = mark_boundT (x, dummyT);  | 
253  | 
||
| 18958 | 254  | 
fun bound_vars vars body =  | 
255  | 
subst_bounds (map mark_boundT (Term.rename_wrt_term body vars), body);  | 
|
256  | 
||
| 548 | 257  | 
fun strip_abss vars_of body_of tm =  | 
258  | 
let  | 
|
259  | 
val vars = vars_of tm;  | 
|
260  | 
val body = body_of tm;  | 
|
261  | 
val rev_new_vars = rename_wrt_term body vars;  | 
|
| 21750 | 262  | 
fun subst (x, T) b =  | 
263  | 
if can Name.dest_internal x andalso not (Term.loose_bvar1 (b, 0))  | 
|
264  | 
      then (Const ("_idtdummy", T), incr_boundvars ~1 b)
 | 
|
265  | 
else (mark_boundT (x, T), Term.subst_bound (mark_bound x, b));  | 
|
266  | 
val (rev_vars', body') = fold_map subst rev_new_vars body;  | 
|
267  | 
in (rev rev_vars', body') end;  | 
|
| 548 | 268  | 
|
| 
3928
 
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
 
wenzelm 
parents: 
3777 
diff
changeset
 | 
269  | 
|
| 548 | 270  | 
(*do (partial) eta-contraction before printing*)  | 
271  | 
||
| 1326 | 272  | 
val eta_contract = ref true;  | 
| 548 | 273  | 
|
274  | 
fun eta_contr tm =  | 
|
275  | 
let  | 
|
| 
3928
 
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
 
wenzelm 
parents: 
3777 
diff
changeset
 | 
276  | 
    fun is_aprop (Const ("_aprop", _)) = true
 | 
| 
 
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
 
wenzelm 
parents: 
3777 
diff
changeset
 | 
277  | 
| is_aprop _ = false;  | 
| 
 
787d2659ce4a
no longer tries bogus eta-contract involving aprops;
 
wenzelm 
parents: 
3777 
diff
changeset
 | 
278  | 
|
| 548 | 279  | 
fun eta_abs (Abs (a, T, t)) =  | 
280  | 
(case eta_abs t of  | 
|
281  | 
t' as f $ u =>  | 
|
282  | 
(case eta_abs u of  | 
|
283  | 
Bound 0 =>  | 
|
| 5084 | 284  | 
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
 | 
285  | 
else incr_boundvars ~1 f  | 
| 548 | 286  | 
| _ => Abs (a, T, t'))  | 
287  | 
| t' => Abs (a, T, t'))  | 
|
288  | 
| eta_abs t = t;  | 
|
289  | 
in  | 
|
290  | 
if ! eta_contract then eta_abs tm else tm  | 
|
291  | 
end;  | 
|
292  | 
||
293  | 
||
294  | 
fun abs_tr' tm =  | 
|
| 19473 | 295  | 
uncurry (fold_rev (fn x => fn t => Lexicon.const "_abs" $ x $ t))  | 
| 548 | 296  | 
(strip_abss strip_abs_vars strip_abs_body (eta_contr tm));  | 
297  | 
||
| 14697 | 298  | 
fun atomic_abs_tr' (x, T, t) =  | 
299  | 
let val [xT] = rename_wrt_term t [(x, T)]  | 
|
300  | 
in (mark_boundT xT, subst_bound (mark_bound (fst xT), t)) end;  | 
|
| 13762 | 301  | 
|
| 548 | 302  | 
fun abs_ast_tr' (*"_abs"*) asts =  | 
| 5690 | 303  | 
(case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of  | 
304  | 
    ([], _) => raise Ast.AST ("abs_ast_tr'", asts)
 | 
|
305  | 
| (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]);  | 
|
| 548 | 306  | 
|
307  | 
||
308  | 
(* binder *)  | 
|
309  | 
||
| 21535 | 310  | 
fun mk_binder_tr' (name, syn) =  | 
| 548 | 311  | 
let  | 
312  | 
fun mk_idts [] = raise Match (*abort translation*)  | 
|
313  | 
| mk_idts [idt] = idt  | 
|
| 5690 | 314  | 
| mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts;  | 
| 548 | 315  | 
|
316  | 
fun tr' t =  | 
|
317  | 
let  | 
|
318  | 
val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t;  | 
|
| 21535 | 319  | 
in Lexicon.const syn $ mk_idts xs $ bd end;  | 
| 548 | 320  | 
|
| 21535 | 321  | 
fun binder_tr' (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts)  | 
322  | 
| binder_tr' [] = raise Match;  | 
|
323  | 
in (name, binder_tr') end;  | 
|
| 548 | 324  | 
|
325  | 
||
| 
3691
 
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
 
wenzelm 
parents: 
2698 
diff
changeset
 | 
326  | 
(* idtyp constraints *)  | 
| 548 | 327  | 
|
| 5690 | 328  | 
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant c, x, ty], xs] =  | 
| 17788 | 329  | 
if c = "_constrain" then  | 
| 5690 | 330  | 
Ast.Appl [ Ast.Constant a, Ast.Appl [Ast.Constant "_idtyp", x, ty], xs]  | 
| 548 | 331  | 
else raise Match  | 
| 
3691
 
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
 
wenzelm 
parents: 
2698 
diff
changeset
 | 
332  | 
| idtyp_ast_tr' _ _ = raise Match;  | 
| 548 | 333  | 
|
334  | 
||
335  | 
(* meta propositions *)  | 
|
336  | 
||
| 4148 | 337  | 
fun prop_tr' tm =  | 
| 548 | 338  | 
let  | 
| 5690 | 339  | 
fun aprop t = Lexicon.const "_aprop" $ t;  | 
| 548 | 340  | 
|
| 2698 | 341  | 
fun is_prop Ts t =  | 
342  | 
fastype_of1 (Ts, t) = propT handle TERM _ => false;  | 
|
| 548 | 343  | 
|
| 19848 | 344  | 
    fun is_term (Const ("ProtoPure.term", _) $ _) = true
 | 
345  | 
| is_term _ = false;  | 
|
346  | 
||
| 548 | 347  | 
fun tr' _ (t as Const _) = t  | 
| 
18478
 
29a5070b517c
prop_tr': proper handling of aprop marked as bound;
 
wenzelm 
parents: 
18342 
diff
changeset
 | 
348  | 
      | tr' Ts (t as Const ("_bound", _) $ u) =
 | 
| 
 
29a5070b517c
prop_tr': proper handling of aprop marked as bound;
 
wenzelm 
parents: 
18342 
diff
changeset
 | 
349  | 
if is_prop Ts u then aprop t else t  | 
| 2698 | 350  | 
| tr' _ (t as Free (x, T)) =  | 
| 5690 | 351  | 
if T = propT then aprop (Lexicon.free x) else t  | 
| 2698 | 352  | 
| tr' _ (t as Var (xi, T)) =  | 
| 5690 | 353  | 
if T = propT then aprop (Lexicon.var xi) else t  | 
| 2698 | 354  | 
| tr' Ts (t as Bound _) =  | 
355  | 
if is_prop Ts t then aprop t else t  | 
|
356  | 
| tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t)  | 
|
357  | 
      | tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) =
 | 
|
| 19848 | 358  | 
          if is_prop Ts t andalso not (is_term t) then Const ("_mk_ofclass", T) $ tr' Ts t1
 | 
| 2698 | 359  | 
else tr' Ts t1 $ tr' Ts t2  | 
360  | 
| tr' Ts (t as t1 $ t2) =  | 
|
| 5690 | 361  | 
(if is_Const (Term.head_of t) orelse not (is_prop Ts t)  | 
| 2698 | 362  | 
then I else aprop) (tr' Ts t1 $ tr' Ts t2);  | 
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
363  | 
in tr' [] tm end;  | 
| 548 | 364  | 
|
| 4148 | 365  | 
fun mk_ofclass_tr' show_sorts (*"_mk_ofclass"*) T [t] =  | 
| 5690 | 366  | 
Lexicon.const "_ofclass" $ TypeExt.term_of_typ show_sorts T $ t  | 
| 4148 | 367  | 
  | mk_ofclass_tr' _ (*"_mk_ofclass"*) T ts = raise TYPE ("mk_ofclass_tr'", [T], ts);
 | 
| 2698 | 368  | 
|
369  | 
||
| 548 | 370  | 
(* meta implication *)  | 
371  | 
||
372  | 
fun impl_ast_tr' (*"==>"*) asts =  | 
|
| 10572 | 373  | 
if TypeExt.no_brackets () then raise Match  | 
374  | 
else  | 
|
375  | 
(case Ast.unfold_ast_p "==>" (Ast.Appl (Ast.Constant "==>" :: asts)) of  | 
|
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
376  | 
(prems as _ :: _ :: _, concl) =>  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
377  | 
let  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
378  | 
val (asms, asm) = split_last prems;  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
379  | 
val asms' = Ast.fold_ast_p "_asms" (asms, Ast.Appl [Ast.Constant "_asm", asm]);  | 
| 
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
380  | 
in Ast.Appl [Ast.Constant "_bigimpl", asms', concl] end  | 
| 
15421
 
fcf747c0b6b8
Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
 
schirmer 
parents: 
14981 
diff
changeset
 | 
381  | 
| _ => raise Match);  | 
| 
 
fcf747c0b6b8
Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
 
schirmer 
parents: 
14981 
diff
changeset
 | 
382  | 
|
| 548 | 383  | 
|
| 4148 | 384  | 
(* type reflection *)  | 
385  | 
||
386  | 
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts =
 | 
|
| 5690 | 387  | 
Term.list_comb (Lexicon.const "_TYPE" $ TypeExt.term_of_typ show_sorts T, ts)  | 
| 4148 | 388  | 
| type_tr' _ _ _ = raise Match;  | 
389  | 
||
390  | 
||
| 19577 | 391  | 
(* type constraints *)  | 
392  | 
||
393  | 
fun type_constraint_tr' show_sorts (*"_type_constraint_"*) (Type ("fun", [T, _])) (t :: ts) =
 | 
|
394  | 
Term.list_comb (Lexicon.const SynExt.constrainC $ t $ TypeExt.term_of_typ show_sorts T, ts)  | 
|
395  | 
| type_constraint_tr' _ _ _ = raise Match;  | 
|
396  | 
||
397  | 
||
| 548 | 398  | 
(* dependent / nondependent quantifiers *)  | 
399  | 
||
| 20202 | 400  | 
fun var_abs mark (x, T, b) =  | 
401  | 
let val ([x'], _) = Name.variants [x] (Term.declare_term_names b Name.context)  | 
|
402  | 
in (x', subst_bound (mark (x', T), b)) end;  | 
|
403  | 
||
404  | 
val variant_abs = var_abs Free;  | 
|
405  | 
val variant_abs' = var_abs mark_boundT;  | 
|
| 2698 | 406  | 
|
| 548 | 407  | 
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) =  | 
| 5084 | 408  | 
if Term.loose_bvar1 (B, 0) then  | 
| 2698 | 409  | 
let val (x', B') = variant_abs' (x, dummyT, B);  | 
| 5690 | 410  | 
in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end  | 
411  | 
else Term.list_comb (Lexicon.const r $ A $ B, ts)  | 
|
| 548 | 412  | 
| dependent_tr' _ _ = raise Match;  | 
413  | 
||
414  | 
||
| 5084 | 415  | 
(* quote / antiquote *)  | 
416  | 
||
| 8577 | 417  | 
fun antiquote_tr' name =  | 
418  | 
let  | 
|
419  | 
fun tr' i (t $ u) =  | 
|
| 18139 | 420  | 
if u aconv Bound i then Lexicon.const name $ tr' i t  | 
| 8577 | 421  | 
else tr' i t $ tr' i u  | 
422  | 
| tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t)  | 
|
| 18139 | 423  | 
| tr' i a = if a aconv Bound i then raise Match else a;  | 
| 8577 | 424  | 
in tr' 0 end;  | 
425  | 
||
426  | 
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t)  | 
|
427  | 
| quote_tr' _ _ = raise Match;  | 
|
428  | 
||
| 5084 | 429  | 
fun quote_antiquote_tr' quoteN antiquoteN name =  | 
430  | 
let  | 
|
| 8577 | 431  | 
fun tr' (t :: ts) = Term.list_comb (Lexicon.const quoteN $ quote_tr' antiquoteN t, ts)  | 
432  | 
| tr' _ = raise Match;  | 
|
433  | 
in (name, tr') end;  | 
|
| 5084 | 434  | 
|
435  | 
||
| 14697 | 436  | 
(* indexed syntax *)  | 
| 548 | 437  | 
|
| 14697 | 438  | 
fun index_ast_tr' (*"_index"*) [Ast.Appl [Ast.Constant "_struct", ast]] = ast  | 
439  | 
| index_ast_tr' _ = raise Match;  | 
|
440  | 
||
441  | 
||
442  | 
(* implicit structures *)  | 
|
443  | 
||
444  | 
fun the_struct' structs s =  | 
|
445  | 
[(case Lexicon.read_nat s of  | 
|
| 18678 | 446  | 
SOME i => Ast.Variable (the_struct structs i handle ERROR _ => raise Match)  | 
| 15531 | 447  | 
| NONE => raise Match)] |> Ast.mk_appl (Ast.Constant "_free");  | 
| 14697 | 448  | 
|
449  | 
fun struct_ast_tr' structs (*"_struct"*) [Ast.Constant "_indexdefault"] =  | 
|
450  | 
the_struct' structs "1"  | 
|
451  | 
| struct_ast_tr' structs (*"_struct"*) [Ast.Appl [Ast.Constant "_indexnum", Ast.Constant s]] =  | 
|
452  | 
the_struct' structs s  | 
|
453  | 
| struct_ast_tr' _ _ = raise Match;  | 
|
454  | 
||
455  | 
||
456  | 
||
457  | 
(** Pure translations **)  | 
|
| 548 | 458  | 
|
459  | 
val pure_trfuns =  | 
|
| 11491 | 460  | 
 ([("_constify", constify_ast_tr), ("_appl", appl_ast_tr), ("_applC", applC_ast_tr),
 | 
| 17788 | 461  | 
   ("_lambda", lambda_ast_tr), ("_idtyp", idtyp_ast_tr), ("_idtypdummy", idtypdummy_ast_tr),
 | 
462  | 
   ("_bigimpl", bigimpl_ast_tr), ("_indexdefault", indexdefault_ast_tr),
 | 
|
463  | 
   ("_indexnum", indexnum_ast_tr), ("_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
 | 
464  | 
  [("_abs", abs_tr), ("_aprop", aprop_tr), ("_ofclass", ofclass_tr),
 | 
| 
23824
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
465  | 
   ("\\<^fixed>meta_conjunction", conjunction_tr), ("_TYPE", type_tr),
 | 
| 
 
8ad7131dbfcf
moved print_translations from Pure.thy to Syntax/syn_trans.ML;
 
wenzelm 
parents: 
21773 
diff
changeset
 | 
466  | 
   ("\\<^fixed>meta_term", term_tr), ("_DDDOT", dddot_tr), ("_index", index_tr)],
 | 
| 19131 | 467  | 
([]: (string * (term list -> term)) list),  | 
| 
3691
 
f0396ac63e12
tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
 
wenzelm 
parents: 
2698 
diff
changeset
 | 
468  | 
  [("_abs", abs_ast_tr'), ("_idts", idtyp_ast_tr' "_idts"),
 | 
| 14697 | 469  | 
   ("_pttrns", idtyp_ast_tr' "_pttrns"), ("==>", impl_ast_tr'),
 | 
470  | 
   ("_index", index_ast_tr')]);
 | 
|
| 548 | 471  | 
|
| 2698 | 472  | 
val pure_trfunsT =  | 
| 19577 | 473  | 
  [("_mk_ofclass", mk_ofclass_tr'), ("TYPE", type_tr'),
 | 
474  | 
   ("_type_constraint_", type_constraint_tr')];
 | 
|
| 2698 | 475  | 
|
| 14697 | 476  | 
fun struct_trfuns structs =  | 
477  | 
  ([], [("_struct", struct_tr structs)], [], [("_struct", struct_ast_tr' structs)]);
 | 
|
478  | 
||
| 548 | 479  | 
|
480  | 
||
| 14868 | 481  | 
(** pts_to_asts **)  | 
| 548 | 482  | 
|
| 21773 | 483  | 
fun pts_to_asts ctxt trf pts =  | 
| 548 | 484  | 
let  | 
485  | 
fun trans a args =  | 
|
486  | 
(case trf a of  | 
|
| 15531 | 487  | 
NONE => Ast.mk_appl (Ast.Constant a) args  | 
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
488  | 
| SOME f => transform_failure (fn exn =>  | 
| 17364 | 489  | 
EXCEPTION (exn, "Error in parse ast translation for " ^ quote a))  | 
| 21773 | 490  | 
(fn () => f ctxt args) ());  | 
| 548 | 491  | 
|
| 987 | 492  | 
(*translate pt bottom-up*)  | 
| 5690 | 493  | 
fun ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts)  | 
494  | 
| 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
 | 
495  | 
|
| 14868 | 496  | 
val exn_results = map (capture ast_of) pts;  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
497  | 
val exns = map_filter get_exn exn_results;  | 
| 
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
498  | 
val results = map_filter get_result exn_results  | 
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
499  | 
in (case (results, exns) of ([], exn :: _) => raise exn | _ => results) end;  | 
| 548 | 500  | 
|
501  | 
||
502  | 
||
| 
14798
 
702cb4859cab
Modified functions pt_to_ast and ast_to_term to improve handling
 
berghofe 
parents: 
14697 
diff
changeset
 | 
503  | 
(** asts_to_terms **)  | 
| 548 | 504  | 
|
| 21773 | 505  | 
fun asts_to_terms ctxt trf asts =  | 
| 548 | 506  | 
let  | 
507  | 
fun trans a args =  | 
|
508  | 
(case trf a of  | 
|
| 15531 | 509  | 
NONE => Term.list_comb (Lexicon.const a, args)  | 
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
510  | 
| SOME f => transform_failure (fn exn =>  | 
| 17364 | 511  | 
EXCEPTION (exn, "Error in parse translation for " ^ quote a))  | 
| 21773 | 512  | 
(fn () => f ctxt args) ());  | 
| 548 | 513  | 
|
| 5690 | 514  | 
fun term_of (Ast.Constant a) = trans a []  | 
515  | 
| term_of (Ast.Variable x) = Lexicon.read_var x  | 
|
516  | 
| term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) =  | 
|
| 548 | 517  | 
trans a (map term_of asts)  | 
| 5690 | 518  | 
| term_of (Ast.Appl (ast :: (asts as _ :: _))) =  | 
519  | 
Term.list_comb (term_of ast, map term_of asts)  | 
|
520  | 
      | 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
 | 
521  | 
|
| 19005 | 522  | 
val free_fixed = Term.map_aterms  | 
523  | 
(fn t as Const (c, T) =>  | 
|
524  | 
(case try (unprefix Lexicon.fixedN) c of  | 
|
525  | 
NONE => t  | 
|
| 
18342
 
1b7109c10b7b
asts_to_terms: builtin free_fixed translation makes local binders work properly;
 
wenzelm 
parents: 
18212 
diff
changeset
 | 
526  | 
| SOME x => Free (x, T))  | 
| 19005 | 527  | 
| t => t);  | 
| 
18342
 
1b7109c10b7b
asts_to_terms: builtin free_fixed translation makes local binders work properly;
 
wenzelm 
parents: 
18212 
diff
changeset
 | 
528  | 
|
| 
 
1b7109c10b7b
asts_to_terms: builtin free_fixed translation makes local binders work properly;
 
wenzelm 
parents: 
18212 
diff
changeset
 | 
529  | 
val exn_results = map (capture (term_of #> free_fixed)) asts;  | 
| 
19482
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
530  | 
val exns = map_filter get_exn exn_results;  | 
| 
 
9f11af8f7ef9
tuned basic list operators (flat, maps, map_filter);
 
wenzelm 
parents: 
19473 
diff
changeset
 | 
531  | 
val results = map_filter get_result exn_results  | 
| 
16612
 
48be8ef738df
transform_failure in translation functions: TRANSLATION_FAIL;
 
wenzelm 
parents: 
15570 
diff
changeset
 | 
532  | 
in (case (results, exns) of ([], exn :: _) => raise exn | _ => results) end;  | 
| 548 | 533  | 
|
534  | 
end;  |