src/Pure/Syntax/syn_trans.ML
author wenzelm
Fri, 03 Sep 2010 23:54:48 +0200
changeset 39128 93a7365fb4ee
parent 37216 3165bc303f66
child 39163 4d701c0388c3
permissions -rw-r--r--
turned eta_contract into proper configuration option;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/Syntax/syn_trans.ML
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     2
    Author:     Tobias Nipkow and Markus Wenzel, TU Muenchen
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     3
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     4
Syntax translation functions.
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     5
*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     6
12208de7edfe added this file;
wenzelm
parents:
diff changeset
     7
signature SYN_TRANS0 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
     8
sig
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
     9
  val eta_contract_default: bool Unsynchronized.ref
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
    10
  val eta_contract_value: Config.value Config.T
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
    11
  val eta_contract: bool Config.T
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
    12
  val atomic_abs_tr': string * typ * term -> term * term
32120
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
    13
  val preserve_binder_abs_tr': string -> string -> string * (term list -> term)
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
    14
  val preserve_binder_abs2_tr': string -> string -> string * (term list -> term)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    15
  val mk_binder_tr: string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    16
  val mk_binder_tr': string * string -> string * (term list -> term)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    17
  val dependent_tr': string * string -> term list -> term
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    18
  val antiquote_tr: string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    19
  val quote_tr: string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    20
  val quote_antiquote_tr: string -> string -> string -> string * (term list -> term)
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    21
  val antiquote_tr': string -> term -> term
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
    22
  val quote_tr': string -> term -> term
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
    23
  val quote_antiquote_tr': string -> string -> string -> string * (term list -> term)
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
    24
  val update_name_tr': term -> term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    25
  val mark_bound: string -> term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    26
  val mark_boundT: string * typ -> term
18958
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
    27
  val bound_vars: (string * typ) list -> term -> term
20202
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
    28
  val variant_abs: string * typ * term -> string * term
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    29
  val variant_abs': string * typ * term -> string * term
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    30
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    31
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    32
signature SYN_TRANS1 =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    33
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    34
  include SYN_TRANS0
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    35
  val non_typed_tr': (term list -> term) -> bool -> typ -> term list -> term
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
    36
  val non_typed_tr'': ('a -> term list -> term) -> 'a -> bool -> typ -> term list -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    37
  val constrainAbsC: string
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    38
  val pure_trfuns:
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    39
    (string * (Ast.ast list -> Ast.ast)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    40
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    41
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    42
    (string * (Ast.ast list -> Ast.ast)) list
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    43
  val pure_trfunsT: (string * (bool -> typ -> term list -> term)) list
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
    44
  val struct_trfuns: string list ->
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    45
    (string * (Ast.ast list -> Ast.ast)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    46
    (string * (term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    47
    (string * (bool -> typ -> term list -> term)) list *
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
    48
    (string * (Ast.ast list -> Ast.ast)) list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    49
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    50
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    51
signature SYN_TRANS =
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    52
sig
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    53
  include SYN_TRANS1
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
    54
  val abs_tr': Proof.context -> term -> term
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
    55
  val prop_tr': term -> term
1511
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    56
  val appl_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
09354d37a5ab Elimination of fully-functorial style.
paulson
parents: 1326
diff changeset
    57
  val applC_ast_tr': Ast.ast * Ast.ast list -> Ast.ast
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
    58
  val pts_to_asts: Proof.context ->
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
    59
    (string -> (Proof.context -> Ast.ast list -> Ast.ast) option) ->
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
    60
    Parser.parsetree list -> Ast.ast list
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
    61
  val asts_to_terms: Proof.context ->
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
    62
    (string -> (Proof.context -> term list -> term) option) -> Ast.ast list -> term list
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    63
end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    64
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
    65
structure Syn_Trans: SYN_TRANS =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    66
struct
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    67
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
    68
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    69
(** parse (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    70
11491
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    71
(* constify *)
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    72
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    73
fun constify_ast_tr [Ast.Variable c] = Ast.Constant c
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    74
  | constify_ast_tr asts = raise Ast.AST ("constify_ast_tr", asts);
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    75
085a0d2857e8 added constify_ast_tr;
wenzelm
parents: 10572
diff changeset
    76
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    77
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    78
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    79
fun appl_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_args" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    80
  | 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
    81
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    82
fun applC_ast_tr [f, args] = Ast.Appl (f :: Ast.unfold_ast "_cargs" args)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    83
  | applC_ast_tr asts = raise Ast.AST ("applC_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    84
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    85
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    86
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    87
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    88
fun idtyp_ast_tr (*"_idtyp"*) [x, ty] = Ast.Appl [Ast.Constant "_constrain", x, ty]
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    89
  | idtyp_ast_tr (*"_idtyp"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    90
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    91
fun idtypdummy_ast_tr (*"_idtypdummy"*) [ty] =
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    92
      Ast.Appl [Ast.Constant "_constrain", Ast.Constant "_idtdummy", ty]
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    93
  | idtypdummy_ast_tr (*"_idtypdummy"*) asts = raise Ast.AST ("idtyp_ast_tr", asts);
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
    94
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
    95
fun lambda_ast_tr (*"_lambda"*) [pats, body] =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    96
      Ast.fold_ast_p "_abs" (Ast.unfold_ast "_pttrns" pats, body)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
    97
  | lambda_ast_tr (*"_lambda"*) asts = raise Ast.AST ("lambda_ast_tr", asts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    98
12208de7edfe added this file;
wenzelm
parents:
diff changeset
    99
val constrainAbsC = "_constrainAbs";
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   100
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   101
fun absfree_proper (x, T, t) =
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   102
  if can Name.dest_internal x then error ("Illegal internal variable in abstraction: " ^ quote x)
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   103
  else Term.absfree (x, T, t);
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   104
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   105
fun abs_tr (*"_abs"*) [Free (x, T), t] = absfree_proper (x, T, t)
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   106
  | abs_tr (*"_abs"*) [Const ("_idtdummy", T), t] = Term.absdummy (T, t)
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   107
  | abs_tr (*"_abs"*) [Const ("_constrain", _) $ Free (x, T) $ tT, t] =
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   108
      Lexicon.const constrainAbsC $ absfree_proper (x, T, t) $ tT
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   109
  | abs_tr (*"_abs"*) [Const ("_constrain", _) $ Const ("_idtdummy", T) $ tT, t] =
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   110
      Lexicon.const constrainAbsC $ Term.absdummy (T, t) $ tT
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   111
  | abs_tr (*"_abs"*) ts = raise TERM ("abs_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   112
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   113
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   114
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   115
21535
wenzelm
parents: 20202
diff changeset
   116
fun mk_binder_tr (syn, name) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   117
  let
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   118
    fun tr (Free (x, T), t) = Lexicon.const name $ absfree_proper (x, T, t)
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   119
      | tr (Const ("_idtdummy", T), t) = Lexicon.const name $ Term.absdummy (T, t)
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   120
      | tr (Const ("_constrain", _) $ Free (x, T) $ tT, t) =
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   121
          Lexicon.const name $ (Lexicon.const constrainAbsC $ absfree_proper (x, T, t) $ tT)
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   122
      | 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
   123
          Lexicon.const name $ (Lexicon.const constrainAbsC $ Term.absdummy (T, t) $ tT)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   124
      | tr (Const ("_idts", _) $ idt $ idts, t) = tr (idt, tr (idts, t))
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   125
      | tr (t1, t2) = raise TERM ("binder_tr", [t1, t2]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   126
21535
wenzelm
parents: 20202
diff changeset
   127
    fun binder_tr [idts, body] = tr (idts, body)
wenzelm
parents: 20202
diff changeset
   128
      | binder_tr ts = raise TERM ("binder_tr", ts);
wenzelm
parents: 20202
diff changeset
   129
  in (syn, binder_tr) end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   130
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   131
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   132
(* type propositions *)
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   133
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   134
fun mk_type ty =
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   135
  Lexicon.const "_constrain" $
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   136
    Lexicon.const "\\<^const>TYPE" $ (Lexicon.const "\\<^type>itself" $ ty);
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   137
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   138
fun ofclass_tr (*"_ofclass"*) [ty, cls] = cls $ mk_type ty
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   139
  | ofclass_tr (*"_ofclass"*) ts = raise TERM ("ofclass_tr", ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   140
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   141
fun sort_constraint_tr (*"_sort_constraint"*) [ty] =
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   142
      Lexicon.const "\\<^const>Pure.sort_constraint" $ mk_type ty
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   143
  | sort_constraint_tr (*"_sort_constraint"*) ts = raise TERM ("sort_constraint_tr", ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   144
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   145
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   146
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   147
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   148
fun aprop_tr (*"_aprop"*) [t] = Lexicon.const "_constrain" $ t $ Lexicon.const "\\<^type>prop"
3777
434d875f4661 eliminated raise_ast, raise_term, raise_typ;
wenzelm
parents: 3700
diff changeset
   149
  | aprop_tr (*"_aprop"*) ts = raise TERM ("aprop_tr", ts);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   150
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   151
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   152
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   153
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   154
fun bigimpl_ast_tr (*"_bigimpl"*) (asts as [asms, concl]) =
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   155
      let val prems =
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   156
        (case Ast.unfold_ast_p "_asms" asms of
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   157
          (asms', Ast.Appl [Ast.Constant "_asm", asm']) => asms' @ [asm']
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   158
        | _ => raise Ast.AST ("bigimpl_ast_tr", asts))
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   159
      in Ast.fold_ast_p "\\<^const>==>" (prems, concl) end
15421
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   160
  | 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
   161
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   162
23824
8ad7131dbfcf moved print_translations from Pure.thy to Syntax/syn_trans.ML;
wenzelm
parents: 21773
diff changeset
   163
(* type/term reflection *)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   164
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   165
fun type_tr (*"_TYPE"*) [ty] = mk_type ty
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   166
  | type_tr (*"_TYPE"*) ts = raise TERM ("type_tr", ts);
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   167
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   168
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   169
(* dddot *)
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   170
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   171
fun dddot_tr (*"_DDDOT"*) ts = Term.list_comb (Lexicon.var Syn_Ext.dddot_indexname, ts);
6761
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   172
aa71a04f4b93 added dddot_tr;
wenzelm
parents: 5690
diff changeset
   173
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   174
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   175
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   176
fun antiquote_tr name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   177
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   178
    fun tr i ((t as Const (c, _)) $ u) =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   179
          if c = name then tr i u $ Bound i
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   180
          else tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   181
      | tr i (t $ u) = tr i t $ tr i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   182
      | tr i (Abs (x, T, t)) = Abs (x, T, tr (i + 1) t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   183
      | tr _ a = a;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   184
  in tr 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   185
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   186
fun quote_tr name t = Abs ("s", dummyT, antiquote_tr name (Term.incr_boundvars 1 t));
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   187
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   188
fun quote_antiquote_tr quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   189
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   190
    fun tr [t] = Lexicon.const name $ quote_tr antiquoteN t
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   191
      | tr ts = raise TERM ("quote_tr", ts);
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   192
  in (quoteN, tr) end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   193
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   194
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   195
(* corresponding updates *)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   196
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   197
fun update_name_tr (Free (x, T) :: ts) = list_comb (Free (suffix "_update" x, T), ts)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   198
  | update_name_tr (Const (x, T) :: ts) = list_comb (Const (suffix "_update" x, T), ts)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   199
  | update_name_tr (((c as Const ("_constrain", _)) $ t $ ty) :: ts) =
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   200
      list_comb (c $ update_name_tr [t] $
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   201
        (Lexicon.const "\\<^type>fun" $ ty $ Lexicon.const "\\<^type>dummy"), ts)
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   202
  | update_name_tr ts = raise TERM ("update_name_tr", ts);
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   203
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   204
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   205
(* indexed syntax *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   206
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   207
fun struct_ast_tr (*"_struct"*) [Ast.Appl [Ast.Constant "_index", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   208
  | struct_ast_tr (*"_struct"*) asts = Ast.mk_appl (Ast.Constant "_struct") asts;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   209
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   210
fun index_ast_tr ast =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   211
  Ast.mk_appl (Ast.Constant "_index") [Ast.mk_appl (Ast.Constant "_struct") [ast]];
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   212
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   213
fun indexdefault_ast_tr (*"_indexdefault"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   214
      index_ast_tr (Ast.Constant "_indexdefault")
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   215
  | indexdefault_ast_tr (*"_indexdefault"*) asts =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   216
      raise Ast.AST ("indexdefault_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   217
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   218
fun indexnum_ast_tr (*"_indexnum"*) [ast] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   219
      index_ast_tr (Ast.mk_appl (Ast.Constant "_indexnum") [ast])
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   220
  | indexnum_ast_tr (*"_indexnum"*) asts = raise Ast.AST ("indexnum_ast_tr", asts);
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   221
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   222
fun indexvar_ast_tr (*"_indexvar"*) [] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   223
      Ast.mk_appl (Ast.Constant "_index") [Ast.Variable "some_index"]
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   224
  | indexvar_ast_tr (*"_indexvar"*) asts = raise Ast.AST ("indexvar_ast_tr", asts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   225
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   226
fun index_tr (*"_index"*) [t] = t
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   227
  | index_tr (*"_index"*) ts = raise TERM ("index_tr", ts);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   228
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   229
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   230
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   231
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   232
fun the_struct structs i =
30146
a77fc0209723 eliminated NJ's List.nth;
wenzelm
parents: 29276
diff changeset
   233
  if 1 <= i andalso i <= length structs then nth structs (i - 1)
31542
3371a3c19bb1 reraise exceptions to preserve position information;
wenzelm
parents: 30146
diff changeset
   234
  else error ("Illegal reference to implicit structure #" ^ string_of_int i);
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   235
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   236
fun struct_tr structs (*"_struct"*) [Const ("_indexdefault", _)] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   237
      Lexicon.free (the_struct structs 1)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   238
  | struct_tr structs (*"_struct"*) [t as (Const ("_indexnum", _) $ Const (s, _))] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   239
      Lexicon.free (the_struct structs
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   240
        (case Lexicon.read_nat s of SOME n => n | NONE => raise TERM ("struct_tr", [t])))
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   241
  | struct_tr _ (*"_struct"*) ts = raise TERM ("struct_tr", ts);
12122
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   242
7f8d88ed4f21 indexvar_ast_tr (for \<index> placeholder);
wenzelm
parents: 11491
diff changeset
   243
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   244
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   245
(** print (ast) translations **)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   246
14647
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   247
(* types *)
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   248
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   249
fun non_typed_tr' f _ _ ts = f ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   250
fun non_typed_tr'' f x _ _ ts = f x ts;
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   251
3f9d3d5cd0cd non_typed_tr';
wenzelm
parents: 13762
diff changeset
   252
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   253
(* application *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   254
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   255
fun appl_ast_tr' (f, []) = raise Ast.AST ("appl_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   256
  | appl_ast_tr' (f, args) = Ast.Appl [Ast.Constant "_appl", f, Ast.fold_ast "_args" args];
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   257
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   258
fun applC_ast_tr' (f, []) = raise Ast.AST ("applC_ast_tr'", [f])
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   259
  | 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
   260
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   261
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   262
(* abstraction *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   263
19311
e3d48fa3908e mark_boundT: produce well-typed term;
wenzelm
parents: 19131
diff changeset
   264
fun mark_boundT (x, T) = Const ("_bound", T --> T) $ Free (x, T);
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   265
fun mark_bound x = mark_boundT (x, dummyT);
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   266
18958
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   267
fun bound_vars vars body =
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   268
  subst_bounds (map mark_boundT (Term.rename_wrt_term body vars), body);
9151a29d2864 added bound_vars;
wenzelm
parents: 18857
diff changeset
   269
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   270
fun strip_abss vars_of body_of tm =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   271
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   272
    val vars = vars_of tm;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   273
    val body = body_of tm;
29276
94b1ffec9201 qualified Term.rename_wrt_term;
wenzelm
parents: 28856
diff changeset
   274
    val rev_new_vars = Term.rename_wrt_term body vars;
21750
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   275
    fun subst (x, T) b =
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   276
      if can Name.dest_internal x andalso not (Term.loose_bvar1 (b, 0))
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   277
      then (Const ("_idtdummy", T), incr_boundvars ~1 b)
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   278
      else (mark_boundT (x, T), Term.subst_bound (mark_bound x, b));
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   279
    val (rev_vars', body') = fold_map subst rev_new_vars body;
41986849fee0 abs/binder_tr': support printing of idtdummy;
wenzelm
parents: 21535
diff changeset
   280
  in (rev rev_vars', body') end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   281
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   282
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   283
(*do (partial) eta-contraction before printing*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   284
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   285
val eta_contract_default = Unsynchronized.ref true;
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   286
val eta_contract_value =
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   287
  Config.declare "eta_contract" (fn _ => Config.Bool (! eta_contract_default));
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   288
val eta_contract = Config.bool eta_contract_value;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   289
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   290
fun eta_contr ctxt tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   291
  let
3928
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   292
    fun is_aprop (Const ("_aprop", _)) = true
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   293
      | is_aprop _ = false;
787d2659ce4a no longer tries bogus eta-contract involving aprops;
wenzelm
parents: 3777
diff changeset
   294
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   295
    fun eta_abs (Abs (a, T, t)) =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   296
          (case eta_abs t of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   297
            t' as f $ u =>
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   298
              (case eta_abs u of
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   299
                Bound 0 =>
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   300
                  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
   301
                  else  incr_boundvars ~1 f
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   302
              | _ => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   303
          | t' => Abs (a, T, t'))
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   304
      | eta_abs t = t;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   305
  in
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   306
    if Config.get ctxt eta_contract then eta_abs tm else tm
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   307
  end;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   308
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   309
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   310
fun abs_tr' ctxt tm =
19473
wenzelm
parents: 19311
diff changeset
   311
  uncurry (fold_rev (fn x => fn t => Lexicon.const "_abs" $ x $ t))
39128
93a7365fb4ee turned eta_contract into proper configuration option;
wenzelm
parents: 37216
diff changeset
   312
    (strip_abss strip_abs_vars strip_abs_body (eta_contr ctxt tm));
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   313
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   314
fun atomic_abs_tr' (x, T, t) =
29276
94b1ffec9201 qualified Term.rename_wrt_term;
wenzelm
parents: 28856
diff changeset
   315
  let val [xT] = Term.rename_wrt_term t [(x, T)]
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   316
  in (mark_boundT xT, subst_bound (mark_bound (fst xT), t)) end;
13762
9dd78dab72bc *** empty log message ***
nipkow
parents: 12785
diff changeset
   317
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   318
fun abs_ast_tr' (*"_abs"*) asts =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   319
  (case Ast.unfold_ast_p "_abs" (Ast.Appl (Ast.Constant "_abs" :: asts)) of
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   320
    ([], _) => raise Ast.AST ("abs_ast_tr'", asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   321
  | (xs, body) => Ast.Appl [Ast.Constant "_lambda", Ast.fold_ast "_pttrns" xs, body]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   322
32120
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   323
fun preserve_binder_abs_tr' name syn = (name, fn (Abs abs :: ts) =>
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   324
  let val (x, t) = atomic_abs_tr' abs
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   325
  in list_comb (Lexicon.const syn $ x $ t, ts) end);
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   326
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   327
fun preserve_binder_abs2_tr' name syn = (name, fn (A :: Abs abs :: ts) =>
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   328
  let val (x, t) = atomic_abs_tr' abs
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   329
  in list_comb (Lexicon.const syn $ x $ A $ t, ts) end);
53a21a5e6889 attempt for more concise setup of non-etacontracting binders
haftmann
parents: 31542
diff changeset
   330
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   331
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   332
(* binder *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   333
21535
wenzelm
parents: 20202
diff changeset
   334
fun mk_binder_tr' (name, syn) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   335
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   336
    fun mk_idts [] = raise Match    (*abort translation*)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   337
      | mk_idts [idt] = idt
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   338
      | mk_idts (idt :: idts) = Lexicon.const "_idts" $ idt $ mk_idts idts;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   339
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   340
    fun tr' t =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   341
      let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   342
        val (xs, bd) = strip_abss (strip_qnt_vars name) (strip_qnt_body name) t;
21535
wenzelm
parents: 20202
diff changeset
   343
      in Lexicon.const syn $ mk_idts xs $ bd end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   344
21535
wenzelm
parents: 20202
diff changeset
   345
    fun binder_tr' (t :: ts) = Term.list_comb (tr' (Lexicon.const name $ t), ts)
wenzelm
parents: 20202
diff changeset
   346
      | binder_tr' [] = raise Match;
wenzelm
parents: 20202
diff changeset
   347
  in (name, binder_tr') end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   348
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   349
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   350
(* idtyp constraints *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   351
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   352
fun idtyp_ast_tr' a [Ast.Appl [Ast.Constant c, x, ty], xs] =
17788
86c46583670f added idtypdummy_ast_tr;
wenzelm
parents: 17364
diff changeset
   353
      if c = "_constrain" then
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   354
        Ast.Appl [Ast.Constant a, Ast.Appl [Ast.Constant "_idtyp", x, ty], xs]
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   355
      else raise Match
3691
f0396ac63e12 tuned lambda_ast_tr, idtyp_ast_tr' to accomodate fix of idt/idts
wenzelm
parents: 2698
diff changeset
   356
  | idtyp_ast_tr' _ _ = raise Match;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   357
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   358
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   359
(* type propositions *)
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   360
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   361
fun type_prop_tr' _ (*"_type_prop"*) T [Const ("\\<^const>Pure.sort_constraint", _)] =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   362
      Lexicon.const "_sort_constraint" $ Type_Ext.term_of_typ true T
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   363
  | type_prop_tr' show_sorts (*"_type_prop"*) T [t] =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   364
      Lexicon.const "_ofclass" $ Type_Ext.term_of_typ show_sorts T $ t
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   365
  | type_prop_tr' _ (*"_type_prop"*) T ts = raise TYPE ("type_prop_tr'", [T], ts);
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   366
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   367
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   368
(* meta propositions *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   369
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   370
fun prop_tr' tm =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   371
  let
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   372
    fun aprop t = Lexicon.const "_aprop" $ t;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   373
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   374
    fun is_prop Ts t =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   375
      fastype_of1 (Ts, t) = propT handle TERM _ => false;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   376
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   377
    fun is_term (Const ("Pure.term", _) $ _) = true
19848
a525275d36df improved treatment of TERM TYPE syntax;
wenzelm
parents: 19577
diff changeset
   378
      | is_term _ = false;
a525275d36df improved treatment of TERM TYPE syntax;
wenzelm
parents: 19577
diff changeset
   379
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   380
    fun tr' _ (t as Const _) = t
18478
29a5070b517c prop_tr': proper handling of aprop marked as bound;
wenzelm
parents: 18342
diff changeset
   381
      | tr' Ts (t as Const ("_bound", _) $ u) =
29a5070b517c prop_tr': proper handling of aprop marked as bound;
wenzelm
parents: 18342
diff changeset
   382
          if is_prop Ts u then aprop t else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   383
      | tr' _ (t as Free (x, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   384
          if T = propT then aprop (Lexicon.free x) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   385
      | tr' _ (t as Var (xi, T)) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   386
          if T = propT then aprop (Lexicon.var xi) else t
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   387
      | tr' Ts (t as Bound _) =
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   388
          if is_prop Ts t then aprop t else t
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   389
      | tr' Ts (Abs (x, T, t)) = Abs (x, T, tr' (T :: Ts) t)
35429
afa8cf9e63d8 authentic syntax for classes and type constructors;
wenzelm
parents: 35255
diff changeset
   390
      | tr' Ts (t as t1 $ (t2 as Const ("TYPE", Type ("itself", [T])))) =
28628
06737d425249 added translations for SORT_CONSTRAINT
wenzelm
parents: 26424
diff changeset
   391
          if is_prop Ts t andalso not (is_term t) then Const ("_type_prop", T) $ tr' Ts t1
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   392
          else tr' Ts t1 $ tr' Ts t2
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   393
      | tr' Ts (t as t1 $ t2) =
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   394
          (if is_Const (Term.head_of t) orelse not (is_prop Ts t)
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   395
            then I else aprop) (tr' Ts t1 $ tr' Ts t2);
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   396
  in tr' [] tm end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   397
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   398
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   399
(* meta implication *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   400
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   401
fun impl_ast_tr' (*"==>"*) asts =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   402
  if Type_Ext.no_brackets () then raise Match
10572
b070825579b8 no_brackets mode;
wenzelm
parents: 8595
diff changeset
   403
  else
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   404
    (case Ast.unfold_ast_p "\\<^const>==>" (Ast.Appl (Ast.Constant "\\<^const>==>" :: asts)) of
16612
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   405
      (prems as _ :: _ :: _, concl) =>
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   406
        let
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   407
          val (asms, asm) = split_last prems;
48be8ef738df transform_failure in translation functions: TRANSLATION_FAIL;
wenzelm
parents: 15570
diff changeset
   408
          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
   409
        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
   410
    | _ => raise Match);
fcf747c0b6b8 Syntax: last premise of "_bigimpl" is wrapped with "_asm", to have a hook for
schirmer
parents: 14981
diff changeset
   411
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   412
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   413
(* type reflection *)
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   414
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   415
fun type_tr' show_sorts (*"TYPE"*) (Type ("itself", [T])) ts =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   416
      Term.list_comb (Lexicon.const "_TYPE" $ Type_Ext.term_of_typ show_sorts T, ts)
4148
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   417
  | type_tr' _ _ _ = raise Match;
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   418
e0e5a2820ac1 adapted pure_trfunsT;
wenzelm
parents: 3928
diff changeset
   419
19577
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   420
(* type constraints *)
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   421
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   422
fun type_constraint_tr' show_sorts (*"_type_constraint_"*) (Type ("fun", [T, _])) (t :: ts) =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 36502
diff changeset
   423
      Term.list_comb (Lexicon.const Syn_Ext.constrainC $ t $ Type_Ext.term_of_typ show_sorts T, ts)
19577
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   424
  | type_constraint_tr' _ _ _ = raise Match;
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   425
fdb3642feb49 added syntax for _type_constraint_;
wenzelm
parents: 19482
diff changeset
   426
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   427
(* dependent / nondependent quantifiers *)
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   428
20202
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   429
fun var_abs mark (x, T, b) =
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   430
  let val ([x'], _) = Name.variants [x] (Term.declare_term_names b Name.context)
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   431
  in (x', subst_bound (mark (x', T), b)) end;
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   432
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   433
val variant_abs = var_abs Free;
87205ea2af06 added variant_abs (from term.ML);
wenzelm
parents: 20146
diff changeset
   434
val variant_abs' = var_abs mark_boundT;
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   435
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   436
fun dependent_tr' (q, r) (A :: Abs (x, T, B) :: ts) =
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   437
      if Term.loose_bvar1 (B, 0) then
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   438
        let val (x', B') = variant_abs' (x, dummyT, B);
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   439
        in Term.list_comb (Lexicon.const q $ mark_boundT (x', T) $ A $ B', ts) end
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   440
      else Term.list_comb (Lexicon.const r $ A $ B, ts)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   441
  | dependent_tr' _ _ = raise Match;
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   442
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   443
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   444
(* quote / antiquote *)
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   445
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   446
fun antiquote_tr' name =
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   447
  let
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   448
    fun tr' i (t $ u) =
18139
wenzelm
parents: 17788
diff changeset
   449
      if u aconv Bound i then Lexicon.const name $ tr' i t
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   450
      else tr' i t $ tr' i u
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   451
      | tr' i (Abs (x, T, t)) = Abs (x, T, tr' (i + 1) t)
18139
wenzelm
parents: 17788
diff changeset
   452
      | tr' i a = if a aconv Bound i then raise Match else a;
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   453
  in tr' 0 end;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   454
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   455
fun quote_tr' name (Abs (_, _, t)) = Term.incr_boundvars ~1 (antiquote_tr' name t)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   456
  | quote_tr' _ _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   457
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   458
fun quote_antiquote_tr' quoteN antiquoteN name =
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   459
  let
8577
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   460
    fun tr' (t :: ts) = Term.list_comb (Lexicon.const quoteN $ quote_tr' antiquoteN t, ts)
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   461
      | tr' _ = raise Match;
4a3cdf01531b improved (anti)quote_tr(');
wenzelm
parents: 8575
diff changeset
   462
  in (name, tr') end;
5084
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   463
a676ada3b380 tuned loose bound vars check;
wenzelm
parents: 4700
diff changeset
   464
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   465
(* corresponding updates *)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   466
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   467
fun upd_tr' (x_upd, T) =
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   468
  (case try (unsuffix "_update") x_upd of
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   469
    SOME x => (x, if T = dummyT then T else Term.domain_type T)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   470
  | NONE => raise Match);
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   471
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   472
fun update_name_tr' (Free x) = Free (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   473
  | update_name_tr' ((c as Const ("_free", _)) $ Free x) = c $ Free (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   474
  | update_name_tr' (Const x) = Const (upd_tr' x)
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   475
  | update_name_tr' _ = raise Match;
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   476
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   477
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   478
(* indexed syntax *)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   479
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   480
fun index_ast_tr' (*"_index"*) [Ast.Appl [Ast.Constant "_struct", ast]] = ast
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   481
  | index_ast_tr' _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   482
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   483
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   484
(* implicit structures *)
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   485
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   486
fun the_struct' structs s =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   487
  [(case Lexicon.read_nat s of
18678
dd0c569fa43d sane ERROR handling;
wenzelm
parents: 18478
diff changeset
   488
    SOME i => Ast.Variable (the_struct structs i handle ERROR _ => raise Match)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   489
  | NONE => raise Match)] |> Ast.mk_appl (Ast.Constant "_free");
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   490
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   491
fun struct_ast_tr' structs (*"_struct"*) [Ast.Constant "_indexdefault"] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   492
      the_struct' structs "1"
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   493
  | struct_ast_tr' structs (*"_struct"*) [Ast.Appl [Ast.Constant "_indexnum", Ast.Constant s]] =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   494
      the_struct' structs s
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   495
  | struct_ast_tr' _ _ = raise Match;
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   496
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   497
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   498
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   499
(** Pure translations **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   500
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   501
val pure_trfuns =
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   502
  ([("_constify", constify_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   503
    ("_appl", appl_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   504
    ("_applC", applC_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   505
    ("_lambda", lambda_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   506
    ("_idtyp", idtyp_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   507
    ("_idtypdummy", idtypdummy_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   508
    ("_bigimpl", bigimpl_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   509
    ("_indexdefault", indexdefault_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   510
    ("_indexnum", indexnum_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   511
    ("_indexvar", indexvar_ast_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   512
    ("_struct", struct_ast_tr)],
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   513
   [("_abs", abs_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   514
    ("_aprop", aprop_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   515
    ("_ofclass", ofclass_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   516
    ("_sort_constraint", sort_constraint_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   517
    ("_TYPE", type_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   518
    ("_DDDOT", dddot_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   519
    ("_update_name", update_name_tr),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   520
    ("_index", index_tr)],
35198
f95c6440c1c7 made SML/NJ happy (again);
wenzelm
parents: 35145
diff changeset
   521
   ([]: (string * (term list -> term)) list),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   522
   [("_abs", abs_ast_tr'),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   523
    ("_idts", idtyp_ast_tr' "_idts"),
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   524
    ("_pttrns", idtyp_ast_tr' "_pttrns"),
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   525
    ("\\<^const>==>", impl_ast_tr'),
35145
f132a4fd8679 moved generic update_name to Pure syntax -- not specific to HOL/record;
wenzelm
parents: 32786
diff changeset
   526
    ("_index", index_ast_tr')]);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   527
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   528
val pure_trfunsT =
35255
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   529
 [("_type_prop", type_prop_tr'),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   530
  ("\\<^const>TYPE", type_tr'),
2cb27605301f authentic syntax for *all* term constants;
wenzelm
parents: 35198
diff changeset
   531
  ("_type_constraint_", type_constraint_tr')];
2698
8bccb3ab4ca4 added mark_bound(T), variant_abs';
wenzelm
parents: 1511
diff changeset
   532
14697
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   533
fun struct_trfuns structs =
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   534
  ([], [("_struct", struct_tr structs)], [], [("_struct", struct_ast_tr' structs)]);
5ad13d05049b improved indexed syntax / implicit structures;
wenzelm
parents: 14647
diff changeset
   535
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   536
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   537
14868
617e4b19a2e5 tuned exeption handling (capture/release);
wenzelm
parents: 14798
diff changeset
   538
(** pts_to_asts **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   539
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   540
fun pts_to_asts ctxt trf pts =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   541
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   542
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   543
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   544
        NONE => Ast.mk_appl (Ast.Constant a) args
23937
66e1f24d655d eliminated transform_failure (to avoid critical section for main transactions);
wenzelm
parents: 23824
diff changeset
   545
      | SOME f => f ctxt args);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   546
987
32bb5a8d5aab changed translation of _applC
clasohm
parents: 922
diff changeset
   547
    (*translate pt bottom-up*)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   548
    fun ast_of (Parser.Node (a, pts)) = trans a (map ast_of pts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   549
      | 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
   550
23963
c2ee97a963db moved exception capture/release to structure Exn;
wenzelm
parents: 23937
diff changeset
   551
    val exn_results = map (Exn.capture ast_of) pts;
c2ee97a963db moved exception capture/release to structure Exn;
wenzelm
parents: 23937
diff changeset
   552
    val exns = map_filter Exn.get_exn exn_results;
c2ee97a963db moved exception capture/release to structure Exn;
wenzelm
parents: 23937
diff changeset
   553
    val results = map_filter Exn.get_result exn_results
31542
3371a3c19bb1 reraise exceptions to preserve position information;
wenzelm
parents: 30146
diff changeset
   554
  in (case (results, exns) of ([], exn :: _) => reraise exn | _ => results) end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   555
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   556
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   557
14798
702cb4859cab Modified functions pt_to_ast and ast_to_term to improve handling
berghofe
parents: 14697
diff changeset
   558
(** asts_to_terms **)
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   559
21773
0038f5fc2065 advanced translation functions: Proof.context;
wenzelm
parents: 21750
diff changeset
   560
fun asts_to_terms ctxt trf asts =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   561
  let
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   562
    fun trans a args =
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   563
      (case trf a of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15421
diff changeset
   564
        NONE => Term.list_comb (Lexicon.const a, args)
23937
66e1f24d655d eliminated transform_failure (to avoid critical section for main transactions);
wenzelm
parents: 23824
diff changeset
   565
      | SOME f => f ctxt args);
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   566
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   567
    fun term_of (Ast.Constant a) = trans a []
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   568
      | term_of (Ast.Variable x) = Lexicon.read_var x
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   569
      | term_of (Ast.Appl (Ast.Constant a :: (asts as _ :: _))) =
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   570
          trans a (map term_of asts)
5690
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   571
      | term_of (Ast.Appl (ast :: (asts as _ :: _))) =
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   572
          Term.list_comb (term_of ast, map term_of asts)
4b056ee5435c no open;
wenzelm
parents: 5288
diff changeset
   573
      | 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
   574
36502
586af36cf3cc uniform decoding of fixed/const syntax entities, allows to pass "\<^fixed>foo__" through the syntax layer (supersedes 1b7109c10b7b);
wenzelm
parents: 35429
diff changeset
   575
    val exn_results = map (Exn.capture term_of) asts;
23963
c2ee97a963db moved exception capture/release to structure Exn;
wenzelm
parents: 23937
diff changeset
   576
    val exns = map_filter Exn.get_exn exn_results;
c2ee97a963db moved exception capture/release to structure Exn;
wenzelm
parents: 23937
diff changeset
   577
    val results = map_filter Exn.get_result exn_results
31542
3371a3c19bb1 reraise exceptions to preserve position information;
wenzelm
parents: 30146
diff changeset
   578
  in (case (results, exns) of ([], exn :: _) => reraise exn | _ => results) end;
548
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   579
12208de7edfe added this file;
wenzelm
parents:
diff changeset
   580
end;