src/Pure/Isar/code_unit.ML
author haftmann
Fri, 24 Aug 2007 14:14:20 +0200
changeset 24423 ae9cd0e92423
parent 24219 e558fe311376
child 24624 b8383b1bbae3
permissions -rw-r--r--
overloaded definitions accompanied by explicit constants
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     1
(*  Title:      Pure/Isar/code_unit.ML
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     2
    ID:         $Id$
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     3
    Author:     Florian Haftmann, TU Muenchen
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     4
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
     5
Basic units of code generation.  Auxiliary.
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     6
*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     7
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     8
signature CODE_UNIT =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
     9
sig
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    10
  val string_of_typ: theory -> typ -> string
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    11
  val string_of_const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    12
  val no_args: theory -> string -> int
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    13
  val read_bare_const: theory -> string -> string * typ
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    14
  val read_const: theory -> string -> string
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    15
  val read_const_exprs: theory -> (string list -> string list)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    16
    -> string list -> bool * string list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    17
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    18
  val constrset_of_consts: theory -> (string * typ) list
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    19
    -> string * ((string * sort) list * (string * typ list) list)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    20
  val typ_sort_inst: Sorts.algebra -> typ * sort
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    21
    -> sort Vartab.table -> sort Vartab.table
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    22
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    23
  val assert_rew: thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    24
  val mk_rew: thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    25
  val mk_func: thm -> thm
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    26
  val head_func: thm -> string * typ
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    27
  val bad_thm: string -> 'a
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    28
  val error_thm: (thm -> thm) -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    29
  val warning_thm: (thm -> thm) -> thm -> thm option
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    30
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    31
  val inst_thm: sort Vartab.table -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    32
  val expand_eta: int -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    33
  val rewrite_func: thm list -> thm -> thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    34
  val norm_args: thm list -> thm list 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    35
  val norm_varnames: (string -> string) -> (string -> string) -> thm list -> thm list 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    36
end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    37
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    38
structure CodeUnit: CODE_UNIT =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    39
struct
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    40
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    41
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    42
(* auxiliary *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    43
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    44
exception BAD_THM of string;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    45
fun bad_thm msg = raise BAD_THM msg;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    46
fun error_thm f thm = f thm handle BAD_THM msg => error msg;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    47
fun warning_thm f thm = SOME (f thm) handle BAD_THM msg
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    48
  => (warning ("code generator: " ^ msg); NONE);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    49
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    50
fun string_of_typ thy = setmp show_sorts true (Sign.string_of_typ thy);
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    51
fun string_of_const thy c = case Class.param_const thy c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    52
 of SOME (c, tyco) => Sign.extern_const thy c ^ " " ^ enclose "[" "]" (Sign.extern_type thy tyco)
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    53
  | NONE => Sign.extern_const thy c;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    54
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    55
fun no_args thy = length o fst o strip_type o Sign.the_const_type thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    56
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    57
(* reading constants as terms and wildcards pattern *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    58
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    59
fun read_bare_const thy raw_t =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    60
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    61
    val t = Sign.read_term thy raw_t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    62
  in case try dest_Const t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    63
   of SOME c_ty => c_ty
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    64
    | NONE => error ("Not a constant: " ^ Sign.string_of_term thy t)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    65
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    66
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    67
fun read_const thy = Class.unoverload_const thy o read_bare_const thy;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    68
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    69
local
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    70
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    71
fun consts_of thy some_thyname =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    72
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    73
    val this_thy = Option.map theory some_thyname |> the_default thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    74
    val cs = Symtab.fold (fn (c, (_, NONE)) => cons c | _ => I)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    75
      ((snd o #constants o Consts.dest o #consts o Sign.rep_sg) this_thy) [];
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    76
    fun belongs_here thyname c =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    77
          not (exists (fn thy' => Sign.declared_const thy' c) (Theory.parents_of this_thy))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    78
  in case some_thyname
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    79
   of NONE => cs
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    80
    | SOME thyname => filter (belongs_here thyname) cs
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    81
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    82
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    83
fun read_const_expr thy "*" = ([], consts_of thy NONE)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    84
  | read_const_expr thy s = if String.isSuffix ".*" s
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    85
      then ([], consts_of thy (SOME (unsuffix ".*" s)))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    86
      else ([read_const thy s], []);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    87
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    88
in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    89
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    90
fun read_const_exprs thy select exprs =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    91
  case (pairself flat o split_list o map (read_const_expr thy)) exprs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    92
   of (consts, []) => (false, consts)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    93
    | (consts, consts') => (true, consts @ select consts');
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    94
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    95
end; (*local*)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    96
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    97
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
    98
(* constructor sets *)
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
    99
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   100
fun constrset_of_consts thy cs =
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   101
  let
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   102
    fun no_constr (c, ty) = error ("Not a datatype constructor: " ^ string_of_const thy c
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   103
      ^ " :: " ^ string_of_typ thy ty);
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   104
    fun last_typ c_ty ty =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   105
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   106
        val frees = typ_tfrees ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   107
        val (tyco, vs) = ((apsnd o map) (dest_TFree) o dest_Type o snd o strip_type) ty
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   108
          handle TYPE _ => no_constr c_ty
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   109
        val _ = if has_duplicates (eq_fst (op =)) vs then no_constr c_ty else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   110
        val _ = if length frees <> length vs then no_constr c_ty else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   111
      in (tyco, vs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   112
    fun ty_sorts (c, ty) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   113
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   114
        val ty_decl = (Logic.unvarifyT o Sign.the_const_type thy) c;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   115
        val (tyco, vs_decl) = last_typ (c, ty) ty_decl;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   116
        val (_, vs) = last_typ (c, ty) ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   117
      in ((tyco, map snd vs), (c, (map fst vs, ty_decl))) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   118
    fun add ((tyco', sorts'), c) ((tyco, sorts), cs) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   119
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   120
        val _ = if tyco' <> tyco
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   121
          then error "Different type constructors in constructor set"
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   122
          else ();
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   123
        val sorts'' = map2 (curry (Sorts.inter_sort (Sign.classes_of thy))) sorts' sorts
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   124
      in ((tyco, sorts), c :: cs) end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   125
    fun inst vs' (c, (vs, ty)) =
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   126
      let
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   127
        val the_v = the o AList.lookup (op =) (vs ~~ vs');
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   128
        val ty' = map_atyps (fn TFree (v, _) => TFree (the_v v)) ty;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   129
      in (c, (fst o strip_type) ty') end;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   130
    val c' :: cs' = map ty_sorts cs;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   131
    val ((tyco, sorts), cs'') = fold add cs' (apsnd single c');
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   132
    val vs = Name.names Name.context "'a" sorts;
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   133
    val cs''' = map (inst vs) cs'';
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   134
  in (tyco, (vs, cs''')) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   135
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   136
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   137
(* dictionary values *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   138
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   139
fun typ_sort_inst algebra =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   140
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   141
    val inters = Sorts.inter_sort algebra;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   142
    fun match _ [] = I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   143
      | match (TVar (v, S)) S' = Vartab.map_default (v, []) (fn S'' => inters (S, inters (S', S'')))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   144
      | match (Type (a, Ts)) S =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   145
          fold2 match Ts (Sorts.mg_domain algebra a S)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   146
  in uncurry match end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   147
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   148
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   149
(* making rewrite theorems *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   150
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   151
fun assert_rew thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   152
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   153
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   154
      handle TERM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   155
          | THM _ => bad_thm ("Not an equation: " ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   156
    fun vars_of t = fold_aterms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   157
     (fn Var (v, _) => insert (op =) v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   158
       | Free _ => bad_thm ("Illegal free variable in rewrite theorem\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   159
           ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   160
       | _ => I) t [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   161
    fun tvars_of t = fold_term_types
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   162
     (fn _ => fold_atyps (fn TVar (v, _) => insert (op =) v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   163
                          | TFree _ => bad_thm 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   164
      ("Illegal free type variable in rewrite theorem\n" ^ Display.string_of_thm thm))) t [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   165
    val lhs_vs = vars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   166
    val rhs_vs = vars_of rhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   167
    val lhs_tvs = tvars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   168
    val rhs_tvs = tvars_of lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   169
    val _ = if null (subtract (op =) lhs_vs rhs_vs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   170
      then ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   171
      else bad_thm ("Free variables on right hand side of rewrite theorem\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   172
        ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   173
    val _ = if null (subtract (op =) lhs_tvs rhs_tvs)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   174
      then ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   175
      else bad_thm ("Free type variables on right hand side of rewrite theorem\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   176
        ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   177
  in thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   178
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   179
fun mk_rew thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   180
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   181
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   182
    val ctxt = ProofContext.init thy;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   183
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   184
    thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   185
    |> LocalDefs.meta_rewrite_rule ctxt
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   186
    |> assert_rew
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   187
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   188
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   189
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   190
(* making defining equations *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   191
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   192
fun assert_func thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   193
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   194
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   195
    val (head, args) = (strip_comb o fst o Logic.dest_equals
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   196
      o ObjectLogic.drop_judgment thy o Thm.plain_prop_of) thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   197
    val _ = case head of Const _ => () | _ =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   198
      bad_thm ("Equation not headed by constant\n" ^ Display.string_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   199
    val _ =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   200
      if has_duplicates (op =)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   201
        ((fold o fold_aterms) (fn Var (v, _) => cons v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   202
          | _ => I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   203
        ) args [])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   204
      then bad_thm ("Duplicated variables on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   205
        ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   206
      else ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   207
    fun check _ (Abs _) = bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   208
          ("Abstraction on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   209
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   210
      | check 0 (Var _) = ()
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   211
      | check _ (Var _) = bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   212
          ("Variable with application on left hand side of defining equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   213
            ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   214
      | check n (t1 $ t2) = (check (n+1) t1; check 0 t2)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   215
      | check n (Const (_, ty)) = if n <> (length o fst o strip_type) ty
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   216
          then bad_thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   217
            ("Partially applied constant on left hand side of equation\n"
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   218
               ^ Display.string_of_thm thm)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   219
          else ();
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   220
    val _ = map (check 0) args;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   221
  in thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   222
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   223
val mk_func = assert_func o mk_rew;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   224
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   225
fun head_func thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   226
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   227
    val thy = Thm.theory_of_thm thm;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   228
    val Const (c, ty) = (fst o strip_comb o fst o Logic.dest_equals
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   229
      o ObjectLogic.drop_judgment thy o Thm.plain_prop_of) thm;
24423
ae9cd0e92423 overloaded definitions accompanied by explicit constants
haftmann
parents: 24219
diff changeset
   230
  in (c, ty) end;
24219
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   231
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   232
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   233
(* utilities *)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   234
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   235
fun inst_thm tvars' thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   236
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   237
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   238
    val tvars = (Term.add_tvars o Thm.prop_of) thm [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   239
    fun mk_inst (tvar as (v, _)) = case Vartab.lookup tvars' v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   240
     of SOME sort => SOME (pairself (Thm.ctyp_of thy o TVar) (tvar, (v, sort)))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   241
      | NONE => NONE;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   242
    val insts = map_filter mk_inst tvars;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   243
  in Thm.instantiate (insts, []) thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   244
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   245
fun expand_eta k thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   246
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   247
    val thy = Thm.theory_of_thm thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   248
    val (lhs, rhs) = (Logic.dest_equals o Thm.plain_prop_of) thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   249
    val (head, args) = strip_comb lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   250
    val l = if k = ~1
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   251
      then (length o fst o strip_abs) rhs
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   252
      else Int.max (0, k - length args);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   253
    val used = Name.make_context (map (fst o fst) (Term.add_vars lhs []));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   254
    fun get_name _ 0 used = ([], used)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   255
      | get_name (Abs (v, ty, t)) k used =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   256
          used
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   257
          |> Name.variants [v]
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   258
          ||>> get_name t (k - 1)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   259
          |>> (fn ([v'], vs') => (v', ty) :: vs')
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   260
      | get_name t k used = 
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   261
          let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   262
            val (tys, _) = (strip_type o fastype_of) t
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   263
          in case tys
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   264
           of [] => raise TERM ("expand_eta", [t])
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   265
            | ty :: _ =>
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   266
                used
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   267
                |> Name.variants [""]
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   268
                |-> (fn [v] => get_name (t $ Var ((v, 0), ty)) (k - 1)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   269
                #>> (fn vs' => (v, ty) :: vs'))
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   270
          end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   271
    val (vs, _) = get_name rhs l used;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   272
    val vs_refl = map (fn (v, ty) => Thm.reflexive (Thm.cterm_of thy (Var ((v, 0), ty)))) vs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   273
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   274
    thm
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   275
    |> fold (fn refl => fn thm => Thm.combination thm refl) vs_refl
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   276
    |> Conv.fconv_rule Drule.beta_eta_conversion
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   277
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   278
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   279
fun rewrite_func rewrites thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   280
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   281
    val rewrite = MetaSimplifier.rewrite false rewrites;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   282
    val (ct_eq, [ct_lhs, ct_rhs]) = (Drule.strip_comb o Thm.cprop_of) thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   283
    val Const ("==", _) = Thm.term_of ct_eq;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   284
    val (ct_f, ct_args) = Drule.strip_comb ct_lhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   285
    val rhs' = rewrite ct_rhs;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   286
    val args' = map rewrite ct_args;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   287
    val lhs' = Thm.symmetric (fold (fn th1 => fn th2 => Thm.combination th2 th1)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   288
      args' (Thm.reflexive ct_f));
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   289
  in Thm.transitive (Thm.transitive lhs' thm) rhs' end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   290
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   291
fun norm_args thms =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   292
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   293
    val num_args_of = length o snd o strip_comb o fst o Logic.dest_equals;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   294
    val k = fold (curry Int.max o num_args_of o Thm.plain_prop_of) thms 0;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   295
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   296
    thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   297
    |> map (expand_eta k)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   298
    |> map (Conv.fconv_rule Drule.beta_eta_conversion)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   299
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   300
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   301
fun canonical_tvars purify_tvar thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   302
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   303
    val ctyp = Thm.ctyp_of (Thm.theory_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   304
    fun tvars_subst_for thm = (fold_types o fold_atyps)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   305
      (fn TVar (v_i as (v, _), sort) => let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   306
            val v' = purify_tvar v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   307
          in if v = v' then I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   308
          else insert (op =) (v_i, (v', sort)) end
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   309
        | _ => I) (prop_of thm) [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   310
    fun mk_inst (v_i, (v', sort)) (maxidx, acc) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   311
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   312
        val ty = TVar (v_i, sort)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   313
      in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   314
        (maxidx + 1, (ctyp ty, ctyp (TVar ((v', maxidx), sort))) :: acc)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   315
      end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   316
    val maxidx = Thm.maxidx_of thm + 1;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   317
    val (_, inst) = fold mk_inst (tvars_subst_for thm) (maxidx + 1, []);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   318
  in Thm.instantiate (inst, []) thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   319
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   320
fun canonical_vars purify_var thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   321
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   322
    val cterm = Thm.cterm_of (Thm.theory_of_thm thm);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   323
    fun vars_subst_for thm = fold_aterms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   324
      (fn Var (v_i as (v, _), ty) => let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   325
            val v' = purify_var v
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   326
          in if v = v' then I
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   327
          else insert (op =) (v_i, (v', ty)) end
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   328
        | _ => I) (prop_of thm) [];
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   329
    fun mk_inst (v_i as (v, i), (v', ty)) (maxidx, acc) =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   330
      let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   331
        val t = Var (v_i, ty)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   332
      in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   333
        (maxidx + 1, (cterm t, cterm (Var ((v', maxidx), ty))) :: acc)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   334
      end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   335
    val maxidx = Thm.maxidx_of thm + 1;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   336
    val (_, inst) = fold mk_inst (vars_subst_for thm) (maxidx + 1, []);
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   337
  in Thm.instantiate ([], inst) thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   338
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   339
fun canonical_absvars purify_var thm =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   340
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   341
    val t = Thm.plain_prop_of thm;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   342
    val t' = Term.map_abs_vars purify_var t;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   343
  in Thm.rename_boundvars t t' thm end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   344
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   345
fun norm_varnames purify_tvar purify_var thms =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   346
  let
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   347
    fun burrow_thms f [] = []
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   348
      | burrow_thms f thms =
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   349
          thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   350
          |> Conjunction.intr_balanced
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   351
          |> f
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   352
          |> Conjunction.elim_balanced (length thms)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   353
  in
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   354
    thms
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   355
    |> burrow_thms (canonical_tvars purify_tvar)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   356
    |> map (canonical_vars purify_var)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   357
    |> map (canonical_absvars purify_var)
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   358
    |> map Drule.zero_var_indexes
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   359
  end;
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   360
e558fe311376 new structure for code generator modules
haftmann
parents:
diff changeset
   361
end;